blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3211cc3172155942cffddc73e793f26f92e05288 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH15/EX15.2/example2_sce.sce | e458dbc1e0e11787b2a6966152e65123bb748032 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 248 | sce | example2_sce.sce | //chapter 15
//example 15.2
//page 648
printf("\n")
printf("given")
R2=1*10^6;Acl=4.5;
R1=R2/Acl
R1=220*10^3;//use standard value
R3=(R1*R2)/(R1+R2)
Cf=((R1*30*10^-12)/(R1+R2))*10^12;
printf(" suitable value of capacitor is %3.2fpF\n",Cf) |
c96b1fd76f5adbcee37f002a02dcc4629ec35982 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/rssq/rssq2.sce | 72d859988044b59372ef067939e497f6b7871949 | [] | 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 | 130 | sce | rssq2.sce | //check the o/p when i/p is a matrix
x=[1 2 3;2 7 4;4 2 5];
r=rssq(x);
disp(r);
//output
// 4.5825757 7.5498344 7.0710678
|
84094c9265daa70c9912715e309c5b8e074a623a | 6b85d1958ff11075634ed9e0f6dbef2de9548f1b | /ANN_Toolbox/demos/enc838_m.sci | 6213c12a4d750b5272c6f6a877684ddb3856882b | [
"Unlicense"
] | permissive | ademarazn/REDES_NEURAIS | 8a048c13aab33daa4068f52e18b263cc8325884f | a9a35744476d1f7e8405df04d5e4a9f8e4ed4595 | refs/heads/master | 2021-05-06T13:09:56.514632 | 2018-04-25T18:49:30 | 2018-04-25T18:49:30 | 113,248,743 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 829 | sci | enc838_m.sci | // Tight 8-3-8 encoder
// on a backpropagation ANN with biases and momentum
rand('seed',0);
// network def.
// - neurons per layer, including input
N = [8,3,8];
// inputs
x = [1,0,0,0,0,0,0,0;
0,1,0,0,0,0,0,0;
0,0,1,0,0,0,0,0;
0,0,0,1,0,0,0,0;
0,0,0,0,1,0,0,0;
0,0,0,0,0,1,0,0;
0,0,0,0,0,0,1,0;
0,0,0,0,0,0,0,1]';
// targets, at training stage is acts as identity network
t = x;
// learning parameter
lp = [1.5, 0.07, 0.8, 0.1];
// init randomize weights between:
r = [-10,15];
rb = r;
W = ann_FF_init(N,r,rb);
Delta_W_old = hypermat(size(W)');
// 500 epochs are enough to ilustrate
T = 500;
[W,Delta_W_old] = ann_FF_Mom_online(x,t,N,W,lp,T,Delta_W_old);
// full run
ann_FF_run(x,N,W)
// encoder
encoder = ann_FF_run(x,N,W,[2,2])
// decoder
decoder = ann_FF_run(encoder,N,W,[3,3])
|
7eea4552c0d1427f3d99d8d0f7f2d1dcb64f6a8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /716/CH6/EX6.12.d/Solved_Ex_6_12d.sce | b8a6a906e95d40da05c7e415593ef44ca54470fd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 342 | sce | Solved_Ex_6_12d.sce | //Test the Given systems for linearity,y(n)=Ax(n)+B
clc;
clear;
function x=f1(n),x=n; ,endfunction//x function of t
function y=f(n,x), y=2*x+5; ,endfunction//y function of y and t
n=-5:1:5;
x1=f1(n);
x2=f1(n);
x3=x1+x2;
if f(n,x3)==(f(n,x1)+f(n,x2));
disp('system is linear');
else
disp('system is non linear');
end
|
41acc604b1fdd867c9402ec040ce8a82b34e5df9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1868/CH3/EX3.9/Ch03Ex9.sce | d36ca9f48f5073d5b5d199cbc3d0dc8faf81eab8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 466 | sce | Ch03Ex9.sce | // Scilab code Ex3.9: Pg 96 (2005)
clc; clear;
M = 1.99e+30; // Mass of sun, kg
R_s = 6.37e+06; // Radius of earth, m
G = 6.67e-11; // Gravitational constant, Nm^2/kg^2
lamda = 300e-09; // Wavelength, m
c = 3e+08; // Velocity of light, m/s
delta_lamda = lamda*((G*M)/(R_s*c^2)); // Gravitational redshift, angstrom
printf("\nGravitational redshift = %3.1f angstrom", delta_lamda*1e+10);
// Result
// Gravitational redshift = 0.7 angstrom
|
6531c697bee7df1f28827531380b2c5b52789a68 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1301/CH2/EX2.4/ex2_4.sce | a2316f600c9fe36d5c0c0c3888dcc1b96a4e7860 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 162 | sce | ex2_4.sce | clc;
disp(270/4.5,"Velocity in min/hr = "); //using v=s/t
disp(60*7,"Distance in mile = "); //using v=s/t
disp(300/60,"Time in hr = "); //using t=s/v |
b15f3d07b3412f2a91ed97bebd22a5ebe80bf97e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1106/CH6/EX6.6/ex6_6.sce | 5f44f82ea47208156d79e405083545f8c63188b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 409 | sce | ex6_6.sce | // Example 6.6, Page No-276
clear
clc
N=2
fh=2000
C=0.1*10^-6
R=1/(2*%pi*fh*C)
Rkohm=R/1000
printf('R= %.1f kohm', Rkohm)
alpha1=0.765
alpha2=1.848
A1=3-alpha1
A2=3-alpha2
Rf1byRi1=A1-1
Rf2byRi2=A2-1
printf('\nRf1/Ri1= %.3f', Rf1byRi1)
printf('\nHence, take Rf1=12.35 kohm and Ri1=10 kohm')
printf('\nRf2/Ri2= %.3f', Rf2byRi2)
printf('\nHence, take Rf2=15.2 kohm and Ri2=100 kohm')
|
b33e2d192076d5455c6299c242013e71910225a0 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/scicos/do_xsetech.sci | ad32768c49c5d32826736241ee3a231cbbc128e6 | [
"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 | 174 | sci | do_xsetech.sci | function do_xsetech(wdm)
// Copyright INRIA
xset('alufunction',3);xbasc();xselect();
xsetech([-1 -1 8 8]/6,[wdm(3),wdm(4),wdm(3)+wdm(5),wdm(4)+wdm(6)])
xset('alufunction',6)
|
efaf4d2a9494e0f819b1db569469d064186ea617 | b28d322423f92a98c5f668a83528993b114fd3f3 | /macros/intfmincon.sci | cd234de957758a769117bdc7b6b2d171c1ace201 | [] | no_license | FOSSEE/FOSSEE-Optim-toolbox-development | 6757ca00f521032feb7177531a5143b021ea2fad | c43f04d302bfe9c4b7d11f6af1712dda1c8b38c2 | refs/heads/master | 2020-08-05T13:24:20.604620 | 2016-10-07T11:51:01 | 2016-10-07T11:51:01 | 67,248,229 | 0 | 2 | null | 2016-10-07T11:51:02 | 2016-09-02T19:09:26 | HTML | UTF-8 | Scilab | false | false | 21,065 | sci | intfmincon.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: Harpreet Singh, Pranav Deshpande and Akshay Miterani
// Organization: FOSSEE, IIT Bombay
// Email: toolbox@scilab.in
function [xopt,fopt,exitflag,gradient,hessian] = intfmincon (varargin)
// Solves a constrainted multi-variable mixed integer non linear programming problem
//
// Calling Sequence
// xopt = intfmincon(f,x0,intcon,A,b)
// xopt = intfmincon(f,x0,intcon,A,b,Aeq,beq)
// xopt = intfmincon(f,x0,intcon,A,b,Aeq,beq,lb,ub)
// xopt = intfmincon(f,x0,intcon,A,b,Aeq,beq,lb,ub,nlc)
// xopt = intfmincon(f,x0,intcon,A,b,Aeq,beq,lb,ub,nlc,options)
// [xopt,fopt] = intfmincon(.....)
// [xopt,fopt,exitflag]= intfmincon(.....)
// [xopt,fopt,exitflag,gradient]=intfmincon(.....)
// [xopt,fopt,exitflag,gradient,hessian]=intfmincon(.....)
//
// Parameters
// f : a function, representing the objective function of the problem
// x0 : a vector of doubles, containing the starting values of variables.
// intcon : a vector of integers, represents which variables are constrained to be integers
// A : a matrix of double, represents the linear coefficients in the inequality constraints A⋅x ≤ b.
// b : a vector of double, represents the linear coefficients in the inequality constraints A⋅x ≤ b.
// Aeq : a matrix of double, represents the linear coefficients in the equality constraints Aeq⋅x = beq.
// beq : a vector of double, represents the linear coefficients in the equality constraints Aeq⋅x = beq.
// lb : Lower bounds, specified as a vector or array of double. lb represents the lower bounds elementwise in lb ≤ x ≤ ub.
// ub : Upper bounds, specified as a vector or array of double. ub represents the upper bounds elementwise in lb ≤ x ≤ ub.
// nlc : a function, representing the Non-linear Constraints functions(both Equality and Inequality) of the problem. It is declared in such a way that non-linear inequality constraints are defined first as a single row vector (c), followed by non-linear equality constraints as another single row vector (ceq). Refer Example for definition of Constraint function.
// options : a list, containing the option for user to specify. See below for details.
// xopt : a vector of doubles, containing the the computed solution of the optimization problem.
// fopt : a scalar of double, containing the the function value at x.
// exitflag : a scalar of integer, containing the flag which denotes the reason for termination of algorithm. See below for details.
// gradient : a vector of doubles, containing the Objective's gradient of the solution.
// hessian : a matrix of doubles, containing the Objective's hessian of the solution.
//
// Description
// Search the minimum of a mixed integer constrained optimization problem specified by :
// Find the minimum of f(x) such that
//
// <latex>
// \begin{eqnarray}
// &\mbox{min}_{x}
// & f(x) \\
// & \text{subject to} & A*x \leq b \\
// & & Aeq*x \ = beq\\
// & & c(x) \leq 0\\
// & & ceq(x) \ = 0\\
// & & lb \leq x \leq ub \\
// & & x_i \in \!\, \mathbb{Z}, i \in \!\, I
// \end{eqnarray}
// </latex>
//
// The routine calls Bonmin for solving the Bounded Optimization problem, Bonmin is a library written in C++.
//
// The options allows the user to set various parameters of the Optimization problem.
// It should be defined as type "list" and contains the following fields.
// <itemizedlist>
// <listitem>Syntax : options= list("IntegerTolerance", [---], "MaxNodes",[---], "MaxIter", [---], "AllowableGap",[---] "CpuTime", [---],"gradobj", "off", "hessian", "off" );</listitem>
// <listitem>IntegerTolerance : a Scalar, a number with that value of an integer is considered integer..</listitem>
// <listitem>MaxNodes : a Scalar, containing the Maximum Number of Nodes that the solver should search.</listitem>
// <listitem>CpuTime : a Scalar, containing the Maximum amount of CPU Time that the solver should take.</listitem>
// <listitem>AllowableGap : a Scalar, to stop the tree search when the gap between the objective value of the best known solution is reached.</listitem>
// <listitem>MaxIter : a Scalar, containing the Maximum Number of Iteration that the solver should take.</listitem>
// <listitem>gradobj : a string, to turn on or off the user supplied objective gradient.</listitem>
// <listitem>hessian : a Scalar, to turn on or off the user supplied objective hessian.</listitem>
// <listitem>Default Values : options = list('integertolerance',1d-06,'maxnodes',2147483647,'cputime',1d10,'allowablegap',0,'maxiter',2147483647,'gradobj',"off",'hessian',"off")</listitem>
// </itemizedlist>
//
// The exitflag allows to know the status of the optimization which is given back by Ipopt.
// <itemizedlist>
// <listitem>exitflag=0 : Optimal Solution Found </listitem>
// <listitem>exitflag=1 : InFeasible Solution.</listitem>
// <listitem>exitflag=2 : Objective Function is Continuous Unbounded.</listitem>
// <listitem>exitflag=3 : Limit Exceeded.</listitem>
// <listitem>exitflag=4 : User Interrupt.</listitem>
// <listitem>exitflag=5 : MINLP Error.</listitem>
// </itemizedlist>
//
// For more details on exitflag see the Bonmin documentation, go to http://www.coin-or.org/Bonmin
//
// Examples
// //Find x in R^2 such that it minimizes:
// //f(x)= -x1 -x2/3
// //x0=[0,0]
// //constraint-1 (c1): x1 + x2 <= 2
// //constraint-2 (c2): x1 + x2/4 <= 1
// //constraint-3 (c3): x1 - x2 <= 2
// //constraint-4 (c4): -x1/4 - x2 <= 1
// //constraint-5 (c5): -x1 - x2 <= -1
// //constraint-6 (c6): -x1 + x2 <= 2
// //constraint-7 (c7): x1 + x2 = 2
// //Objective function to be minimised
// function [y,dy]=f(x)
// y=-x(1)-x(2)/3;
// dy= [-1,-1/3];
// endfunction
// //Starting point, linear constraints and variable bounds
// x0=[0 , 0];
// intcon = [1]
// A=[1,1 ; 1,1/4 ; 1,-1 ; -1/4,-1 ; -1,-1 ; -1,1];
// b=[2;1;2;1;-1;2];
// Aeq=[1,1];
// beq=[2];
// lb=[];
// ub=[];
// nlc=[];
// //Options
// options=list("GradObj", "on");
// //Calling Ipopt
// [x,fval,exitflag,grad,hessian] =intfmincon(f, x0,intcon,A,b,Aeq,beq,lb,ub,nlc,options)
// // Press ENTER to continue
//
// Examples
// //Find x in R^3 such that it minimizes:
// //f(x)= x1*x2 + x2*x3
// //x0=[0.1 , 0.1 , 0.1]
// //constraint-1 (c1): x1^2 - x2^2 + x3^2 <= 2
// //constraint-2 (c2): x1^2 + x2^2 + x3^2 <= 10
// //Objective function to be minimised
// function [y,dy]=f(x)
// y=x(1)*x(2)+x(2)*x(3);
// dy= [x(2),x(1)+x(3),x(2)];
// endfunction
// //Starting point, linear constraints and variable bounds
// x0=[0.1 , 0.1 , 0.1];
// intcon = [2]
// A=[];
// b=[];
// Aeq=[];
// beq=[];
// lb=[];
// ub=[];
// //Nonlinear constraints
// function [c,ceq,cg,cgeq]=nlc(x)
// c = [x(1)^2 - x(2)^2 + x(3)^2 - 2 , x(1)^2 + x(2)^2 + x(3)^2 - 10];
// ceq = [];
// cg=[2*x(1) , -2*x(2) , 2*x(3) ; 2*x(1) , 2*x(2) , 2*x(3)];
// cgeq=[];
// endfunction
// //Options
// options=list("MaxIter", [1500], "CpuTime", [500], "GradObj", "on","GradCon", "on");
// //Calling Ipopt
// [x,fval,exitflag,output] =intfmincon(f, x0,intcon,A,b,Aeq,beq,lb,ub,nlc,options)
// // Press ENTER to continue
//
// Examples
// //The below problem is an unbounded problem:
// //Find x in R^3 such that it minimizes:
// //f(x)= -(x1^2 + x2^2 + x3^2)
// //x0=[0.1 , 0.1 , 0.1]
// // x1 <= 0
// // x2 <= 0
// // x3 <= 0
// //Objective function to be minimised
// function y=f(x)
// y=-(x(1)^2+x(2)^2+x(3)^2);
// endfunction
// //Starting point, linear constraints and variable bounds
// x0=[0.1 , 0.1 , 0.1];
// intcon = [3]
// A=[];
// b=[];
// Aeq=[];
// beq=[];
// lb=[];
// ub=[0,0,0];
// //Options
// options=list("MaxIter", [1500], "CpuTime", [500]);
// //Calling Ipopt
// [x,fval,exitflag,grad,hessian] =intfmincon(f, x0,intcon,A,b,Aeq,beq,lb,ub,[],options)
// // Press ENTER to continue
//
// Examples
// //The below problem is an infeasible problem:
// //Find x in R^3 such that in minimizes:
// //f(x)=x1*x2 + x2*x3
// //x0=[1,1,1]
// //constraint-1 (c1): x1^2 <= 1
// //constraint-2 (c2): x1^2 + x2^2 <= 1
// //constraint-3 (c3): x3^2 <= 1
// //constraint-4 (c4): x1^3 = 0.5
// //constraint-5 (c5): x2^2 + x3^2 = 0.75
// // 0 <= x1 <=0.6
// // 0.2 <= x2 <= inf
// // -inf <= x3 <= 1
// //Objective function to be minimised
// function [y,dy]=f(x)
// y=x(1)*x(2)+x(2)*x(3);
// dy= [x(2),x(1)+x(3),x(2)];
// endfunction
// //Starting point, linear constraints and variable bounds
// x0=[1,1,1];
// intcon = [2]
// A=[];
// b=[];
// Aeq=[];
// beq=[];
// lb=[0 0.2,-%inf];
// ub=[0.6 %inf,1];
// //Nonlinear constraints
// function [c,ceq,cg,cgeq]=nlc(x)
// c=[x(1)^2-1,x(1)^2+x(2)^2-1,x(3)^2-1];
// ceq=[x(1)^3-0.5,x(2)^2+x(3)^2-0.75];
// cg = [2*x(1),0,0;2*x(1),2*x(2),0;0,0,2*x(3)];
// cgeq = [3*x(1)^2,0,0;0,2*x(2),2*x(3)];
// endfunction
// //Options
// options=list("MaxIter", [1500], "CpuTime", [500], "GradObj", "on","GradCon", "on");
// //Calling Ipopt
// [x,fval,exitflag,grad,hessian] =intfmincon(f, x0,intcon,A,b,Aeq,beq,lb,ub,nlc,options)
// // Press ENTER to continue
// Authors
// Harpreet Singh
//To check the number of input and output arguments
[lhs , rhs] = argn();
//To check the number of arguments given by the user
if ( rhs<4 | rhs>11 ) then
errmsg = msprintf(gettext("%s: Unexpected number of input arguments : %d provided while should be int [4 5] "), "intfmincon", rhs);
error(errmsg);
end
//Storing the Input Parameters
fun = varargin(1);
x0 = varargin(2);
intcon = varargin(3);
A = varargin(4);
b = varargin(5);
Aeq = [];
beq = [];
lb = [];
ub = [];
nlc = [];
if (rhs>5) then
Aeq = varargin(6);
beq = varargin(7);
end
if (rhs>7) then
lb = varargin(8);
ub = varargin(9);
end
if (rhs>9) then
nlc = varargin(10);
end
param = list();
//To check whether options has been entered by user
if ( rhs> 10) then
param =varargin(11);
end
//To check whether the Input arguments
Checktype("intfmincon", fun, "fun", 1, "function");
Checktype("intfmincon", x0, "x0", 2, "constant");
Checktype("intfmincon", intcon, "intcon", 3, "constant");
Checktype("intfmincon", A, "A", 4, "constant");
Checktype("intfmincon", b, "b", 5, "constant");
Checktype("intfmincon", Aeq, "Aeq", 6, "constant");
Checktype("intfmincon", beq, "beq", 7, "constant");
Checktype("intfmincon", lb, "lb", 8, "constant");
Checktype("intfmincon", ub, "ub", 9, "constant");
Checktype("intfmincon", nlc, "nlc", 10, ["constant","function"]);
Checktype("intfmincon", param, "options", 11, "list");
nbVar = size(x0,"*");
if(nbVar==0) then
errmsg = msprintf(gettext("%s: x0 cannot be an empty"), "intfmincon");
error(errmsg);
end
if(size(lb,"*")==0) then
lb = repmat(-%inf,nbVar,1);
end
if(size(ub,"*")==0) then
ub = repmat(%inf,nbVar,1);
end
//////////////// To Check linear constraints /////////
//To check for correct size of A(3rd paramter)
if(size(A,2)~=nbVar & size(A,2)~=0) then
errmsg = msprintf(gettext("%s: Expected Matrix of size (No of linear inequality constraints X No of Variables) or an Empty Matrix for Linear Inequality Constraint coefficient Matrix A"), intfmincon);
error(errmsg);
end
nbConInEq=size(A,"r");
//To check for the correct size of Aeq (5th paramter)
if(size(Aeq,2)~=nbVar & size(Aeq,2)~=0) then
errmsg = msprintf(gettext("%s: Expected Matrix of size (No of linear equality constraints X No of Variables) or an Empty Matrix for Linear Equality Constraint coefficient Matrix Aeq"), intfmincon);
error(errmsg);
end
nbConEq=size(Aeq,"r");
///////////////// To check vectors /////////////////
Checkvector("intfmincon", x0, "x0", 2, nbVar);
x0 = x0(:);
if(size(intcon,"*")) then
Checkvector("intfmincon", intcon, "intcon", 3, size(intcon,"*"))
intcon = intcon(:);
end
if(nbConInEq) then
Checkvector("intfmincon", b, "b", 5, nbConInEq);
b = b(:);
end
if(nbConEq) then
Checkvector("intfmincon", beq, "beq", 7, nbConEq);
beq = beq(:);
end
Checkvector("intfmincon", lb, "lb", 8, nbVar);
lb = lb(:);
Checkvector("intfmincon", ub, "ub", 9, nbVar);
ub = ub(:);
/////////////// To check integer //////////////////////
for i=1:size(intcon,1)
if(intcon(i)>nbVar) then
errmsg = msprintf(gettext("%s: The values inside intcon should be less than the number of variables"), "intfmincon");
error(errmsg);
end
if (intcon(i)<0) then
errmsg = msprintf(gettext("%s: The values inside intcon should be greater than 0 "), "intfmincon");
error(errmsg);
end
if(modulo(intcon(i),1)) then
errmsg = msprintf(gettext("%s: The values inside intcon should be an integer "), "intfmincon");
error(errmsg);
end
end
options = list('integertolerance',1d-06,'maxnodes',2147483647,'cputime',1d10,'allowablegap',0,'maxiter',2147483647,'gradobj',"off",'hessian',"off",'gradcon',"off")
//Pushing param into default value
for i = 1:(size(param))/2
select convstr(param(2*i-1),'l')
case 'integertolerance' then
Checktype("intfmincon_options", param(2*i), param(2*i-1), 2*i, "constant");
options(2) = param(2*i);
case 'maxnodes' then
Checktype("intfmincon_options", param(2*i), param(2*i-1), 2*i, "constant");
options(4) = param(2*i);
case 'cputime' then
Checktype("intfmincon_options", param(2*i), param(2*i-1), 2*i, "constant");
options(6) = param(2*i);
case 'allowablegap' then
Checktype("intfmincon_options", param(2*i), param(2*i-1), 2*i, "constant");
options(8) = param(2*i);
case 'maxiter' then
Checktype("intfmincon_options", param(2*i), param(2*i-1), 2*i, "constant");
options(10) = param(2*i);
case 'gradobj' then
Checktype("intfmincon_options", param(2*i), param(2*i-1), 2*i, "string");
if(convstr(param(2*i),'l') == "on") then
options(12) = "on"
elseif(convstr(param(2*i),'l') == "off") then
options(12) = "off"
else
error(999, 'Unknown string passed in gradobj.');
end
case 'hessian' then
Checktype("intfmincon_options", param(2*i), param(2*i-1), 2*i, "function");
options(14) = param(2*i);
case 'gradcon' then
Checktype("intfmincon_options", param(2*i), param(2*i-1), 2*i, "string");
if(convstr(param(2*i),'l') == "on") then
options(16) = "on"
elseif(convstr(param(2*i),'l') == "off") then
options(16) = "off"
else
error(999, 'Unknown string passed in gradcon.');
end
else
error(999, 'Unknown string argument passed.');
end
end
///////////////// Functions Check /////////////////
//To check the match between f (1st Parameter) and x0 (2nd Parameter)
if(execstr('init=fun(x0)','errcatch')==21) then
errmsg = msprintf(gettext("%s: Objective function and x0 did not match"), "intfmincon");
error(errmsg);
end
if(options(12) == "on") then
if(execstr('[grad_y,grad_dy]=fun(x0)','errcatch')==59) then
errmsg = msprintf(gettext("%s: Gradient of objective function is not provided"), "intfmincon");
error(errmsg);
end
if(grad_dy<>[]) then
Checkvector("intfmincon_options", grad_dy, "dy", 12, nbVar);
end
end
if(options(14) == "on") then
if(execstr('[hessian_y,hessian_dy,hessian]=fun(x0)','errcatch')==59) then
errmsg = msprintf(gettext("%s: Gradient of objective function is not provided"), "intfmincon");
error(errmsg);
end
if ( ~isequal(size(hessian) == [nbVar nbVar]) ) then
errmsg = msprintf(gettext("%s: Size of hessian should be nbVar X nbVar"), "intfmincon");
error(errmsg);
end
end
numNlic = 0;
numNlec = 0;
numNlc = 0;
if (type(nlc) == 13 | type(nlc) == 11) then
[sample_c,sample_ceq] = nlc(x0);
if(execstr('[sample_c,sample_ceq] = nlc(x0)','errcatch')==21) then
errmsg = msprintf(gettext("%s: Non-Linear Constraint function and x0 did not match"), intfmincon);
error(errmsg);
end
numNlic = size(sample_c,"*");
numNlec = size(sample_ceq,"*");
numNlc = numNlic + numNlec;
end
/////////////// Creating conLb and conUb ////////////////////////
conLb = [repmat(-%inf,numNlic,1);repmat(0,numNlec,1);repmat(-%inf,nbConInEq,1);beq;]
conUb = [repmat(0,numNlic,1);repmat(0,numNlec,1);b;beq;]
//Converting the User defined Objective function into Required form (Error Detectable)
function [y,check] = _f(x)
try
y=fun(x)
[y,check] = checkIsreal(y)
catch
y=0;
check=1;
end
endfunction
//Defining an inbuilt Objective gradient function
function [dy,check] = _gradf(x)
if (options(12) =="on") then
try
[y,dy]=fun(x)
[dy,check] = checkIsreal(dy)
catch
dy = 0;
check=1;
end
else
try
dy=numderivative(fun,x)
[dy,check] = checkIsreal(dy)
catch
dy=0;
check=1;
end
end
endfunction
function [y,check] = _addnlc(x)
x= x(:)
c = []
ceq = []
try
if((type(nlc) == 13 | type(nlc) == 11) & numNlc~=0) then
[c,ceq]=nlc(x)
end
ylin = [A*x;Aeq*x];
y = [c(:);ceq(:);ylin(:);];
[y,check] = checkIsreal(y)
catch
y=0;
check=1;
end
endfunction
//Defining an inbuilt jacobian of constraints function
function [dy,check] = _gradnlc(x)
if (options(16) =="on") then
try
[y1,y2,dy1,dy2]=nlc(x)
//Adding derivative of Linear Constraint
dylin = [A;Aeq]
dy = [dy1;dy2;dylin];
[dy,check] = checkIsreal(dy)
catch
dy = 0;
check=1;
end
else
try
dy=numderivative(_addnlc,x)
[dy,check] = checkIsreal(dy)
catch
dy=0;
check=1;
end
end
endfunction
//Defining a function to calculate Hessian if the respective user entry is OFF
function [hessy,check]=_gradhess(x,obj_factor,lambda)
x=x(:);
if (type(options(14)) == "function") then
try
[obj,dy,hessy] = fun(x,obj_factor,lambda)
[hessy,check] = checkIsreal(hessy)
catch
hessy = 0;
check=1;
end
else
try
[dy,hessfy]=numderivative(_f,x)
hessfy = matrix(hessfy,nbVar,nbVar)
if((type(nlc) == 13 | type(nlc) == 11) & numNlc~=0) then
[dy,hessny]=numderivative(nlc,x)
end
hessianc = []
for i = 1:numNlc
hessianc = hessianc + lambda(i)*matrix(hessny(i,:),nbVar,nbVar)
end
hessy = obj_factor*hessfy + hessianc;
[hessy,check] = checkIsreal(hessy)
catch
hessy=0;
check=1;
end
end
endfunction
intconsize = size(intcon,"*")
[xopt,fopt,exitflag] = inter_fmincon(_f,_gradf,_addnlc,_gradnlc,_gradhess,x0,lb,ub,conLb,conUb,intcon,options,nbConInEq+nbConEq);
//In the cases of the problem not being solved, return NULL to the output matrices
if( exitflag~=0 & exitflag~=3 ) then
gradient = [];
hessian = [];
else
[ gradient, hessian] = numderivative(_f, xopt)
end
//To print output message
select exitflag
case 0 then
printf("\nOptimal Solution Found.\n");
case 1 then
printf("\nInFeasible Solution.\n");
case 2 then
printf("\nObjective Function is Continuous Unbounded.\n");
case 3 then
printf("\Limit Exceeded.\n");
case 4 then
printf("\nUser Interrupt.\n");
case 5 then
printf("\nMINLP Error.\n");
else
printf("\nInvalid status returned. Notify the Toolbox authors\n");
break;
end
endfunction
function [y, check] = checkIsreal(x)
if ((~isreal(x))) then
y = 0
check=1;
else
y = x;
check=0;
end
endfunction
|
6897b763a9b853e9d310bd0daaf034fbaf6a5dd0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2873/CH4/EX4.9/Ex4_9.sce | 0a48c093465d18e7e55bb0f2b7758ca393ba0b54 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,467 | sce | Ex4_9.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Engineering Thermodynamics by Onkar Singh Chapter 4 Example 9")
T1=1100;//temperature of high temperature reservoir in K
T4=300;//temperature of low temperature reservoir in K
disp("here W1:W2:W3=3:2:1")
disp("efficiency of engine,HE1,")
disp("W1/Q1=(1-(T2/1100))")
disp("so Q1=(1100*W1)/(1100-T2)")
disp("for HE2 engine,W2/Q2=(1-(T3/T2))")
disp("for HE3 engine,W3/Q3=(1-(300/T3))")
disp("from energy balance on engine,HE1")
disp("Q1=W1+Q2=>Q2=Q1-W1")
disp("above gives,Q1=(((1100*W1)/(1100-T2))-W1)=W1*(T2/(1100-T2))")
disp("substituting Q2 in efficiency of HE2")
disp("W2/(W1*(T2/(1100-T2)))=1-(T3/T2)")
disp("W2/W1=(T2/(1100-T2))*(T2-T3)/T2=((T2-T3)/(1100-T2))")
disp("2/3=(T2-T3)/(1100-T2)")
disp("2200-2*T2=3*T2-3*T3")
disp("5*T2-3*T3=2200")
disp("now energy balance on engine HE2 gives,Q2=W2+Q3")
disp("substituting in efficiency of HE2,")
disp("W2/(W2+Q3)=(T2-T3)/T2")
disp("W2*T2=(W2+Q3)*(T2-T3)")
disp("Q3=(W2*T3)/(T2-T3)")
disp("substituting Q3 in efficiency of HE3,")
disp("W3/((W2*T3)/(T2-T3))=(T3-300)/T3")
disp("W3/W2=(T3/(T2-T3))*(T3-300)/T3")
disp("1/2=(T3-300)/(T2-T3)")
disp("3*T3-T2=600")
disp("solving equations of T2 and T3,")
disp("we get,T3=(600+(2200/5))/(3-(3/5))in K")
T3=(600+(2200/5))/(3-(3/5))
disp("and by eq 5,T2 in K")
T2=(2200+3*T3)/5
disp("so intermediate temperature are 700 K and 433.33 K")
|
5c63916a3fd23f999a6a5f3ceaf054c8d695fd2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH2/EX2.9/2_9.sce | 3b1fee06224e39ebc9cd705c08f5d709e4bb3ddd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 816 | sce | 2_9.sce | clc,clear
printf('Example 2.9\n\n')
V=250
R_a=0.3,R_sh=200 //resistance of armature and shunt field winding
R_x=150 //additional resistance added in series to field winding
I_L1=22
I_sh1=V/R_sh //initial shunt current before adding 150 ohms resistance
I_a1 = I_L1 - I_sh1 //initial armature current before adding 150 ohms resistance
N_1=1500 //initial speed before adding 150 ohms resistance
//T (prop.) phi*I_a (prop.) I_sh*I_a and T_1=T_2 and simplifying further
I_sh2=V/(R_sh + R_x) //new shunt current
I_a2= I_sh1*I_a1/I_sh2 //New armature current
E_b1=V - I_a1*R_a //induced emf before adding 150 ohms resistance
E_b2=V - I_a2*R_a //new emf
N_2 = N_1 * (E_b2/E_b1) * (I_sh1/I_sh2) //new speed
printf('New armature current and speed are %.4f A and %.2f r.p.m respectively',I_a2,N_2)
|
8543493e66001f391316e845b93ba82f68c276d0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /476/CH3/EX3.4/Example_3_4.sce | 3670fd9646e032d712508fcd4c6b929950a3d627 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,667 | sce | Example_3_4.sce | //A Textbook of Chemical Engineering Thermodynamics
//Chapter 3
//P-V-T Behaviour and Heat Effects
//Example 4
clear;
clc;
//Given:
R = 8.314; //ideal gas constant
Cp = 30; //specific heat at constant pressure(J/mol K)
//To calculate change in internal energy change in enthalpy work done and heat supplied
//(a): Gas is expanded isothermally
T = 600; //temperature in K
P1 = 5; //initial pressure in bar
P2 = 4; //final pressure in bar
U1 = 0; //since the process is isothermal
H1 = 0; //since the process is isothermal
W1 = (R*T*log(P1/P2)); //work done during the process
Q1 = W1; //heat supplied during the process
mprintf('When gas is expanded isothermally');
mprintf('\nChange in internal energy in isothermal process is %i',U1);
mprintf('\nChange in enthalpy in isothermal process is %i',H1);
mprintf("\nWork done during the process is %f kJ/kmol",W1);
mprintf('\nHeat supplied during the process is %f kJ/kmol',Q1);
//(b): Gas is heated at constant volume
V = 0.1; //volume (m^3)
P1 = 1; //initial pressure(bar)
T1 = 298; //initial temperature(K)
T2 = 400; //final temperature(K)
n = ((P1*V*10^5)/(R*T1)); //number of moles of gas
Cv = Cp-R; //specific heat at constant volume(J/mol K)
U2 = n*Cv*(T2-T1); //change in internal energy(J)
H2 = n*Cp*(T2-T1); //change in enthalpy(J)
W2 = 0; //isochoric process
Q2 = U2+W2; //heat supplied(J)
mprintf('\n\nWhen gas is heated at constant volume');
mprintf('\nChange in internal energy is %f J',U2);
mprintf('\nChange in enthalpy is %f J',H2);
mprintf('\nWork done during the process is %i ', W2);
mprintf('\nHeat supplied during the process is %f J',Q2);
//end |
445724e66fa588e28c0e7bd7122105f7d26bf35d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2123/CH4/EX4.5/Exa_4_5.sce | c66d557148b1c1b78582ea24757133b2be1ea9b6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 531 | sce | Exa_4_5.sce | //Example No. 4.5
clc;
clear;
close;
format('v',6);
//Given Data :
theta1=20;//degreeC
theta2=28;//degreeC
dthetaBYdt1=0.08;//degreeC/min
dthetaBYdt2=0.06;//degreeC/min
//theta=theta_f-(theta_f-theta1)*exp(-t/T)
//dtheta/dt=(theta_f-theta)/T
//dthetaBYdt1/dthetaBYdt2=(theta_f-theta1)/(theta_f-theta2)
theta_f=(theta2*dthetaBYdt1-theta1*dthetaBYdt2)/(dthetaBYdt1-dthetaBYdt2)
disp(theta_f,"Final temperature rise in degree C : ");
T=(theta_f-theta1)/dthetaBYdt1;//min
disp(T,"Heating time constant in min : ");
|
3c9453edb220227c246a620b94b4a30b5fdaf635 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3785/CH5/EX5.4/Ex5_4.sce | 3683741714e703dd228ccc55b1821b12b03dc243 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 448 | sce | Ex5_4.sce | // Example 5_4
clc;funcprot(0);
// Given data
Q=150;// The water stream volume flow rate in gal/min
D=1;// The nozzle exit diameter in inch
rho=1*10^3;// The density of water in kg/m^3
// Calculation
Q=(Q*3.785*10^-3)/60;// The water stream volume flow rate in m^3/s
V_out=(4*Q)/(%pi*(D*2.54*10^-2)^2);// The velocity in m/s
F_e=rho*Q*V_out;// The force in N
F_e=F_e/4.448;// The force in lbf
printf("\nThe force,F_e=%2.2f lbf",F_e);
|
e89e1cc3e8ad4f1d6d532c07716c3c27b0408724 | 2f7b1fa044c246ffe96b7e6e7b96aa95f9031cdf | /Anul 2/Anul_2/Metode_Numerice/Laborator/MN rezolvari/MN_Lab/lab3_spline.sce | f4c552266bb6d5a16d0f65063d8fc2b9ab2ffda6 | [] | no_license | stickyrst/automatica | 1f902091376c0f65c08a66721de3185a70f88d26 | 2ac48ae78f45b787724fa90c0e7acd8052e6725c | refs/heads/master | 2020-06-11T18:39:23.768638 | 2018-05-30T19:55:38 | 2018-05-30T19:55:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 907 | sce | lab3_spline.sce |
n=10;
m=50;
x=[1 2 3 4 5 6 7 8 9 10];
y=[9 8 5 8 4 6 2 3 5 1];
k=2;
for i=1:n
if(i>1)
p1(i)=(y(i)-y(i-1))/(x(i)-x(i-1))
else
p1(i)=(y(i+1)-y(i))/(x(i+1)-x(i))
end
if(i<n)
p2(i)=(y(i+1)-y(i))/(x(i+1)-x(i))
else
p2(i)=(y(i)-y(i-1))/(x(i)-x(i-1))
end
alfa1(i)=atan(p1(i));
alfa2(i)=atan(p2(i));
alfa(i)=(alfa1(i)+alfa2(i))/2;
xd(i)=k*cos(alfa(i));
yd(i)=k*sin(alfa(i));
end
for i=1:n-1
ax=-2*x(i+1)+xd(i+1)+xd(i)+2*x(i);
bx=3*x(i+1)-xd(i+1)-2*xd(i)-3*x(i);
cx=xd(i);
dx=x(i);
ay=-2*y(i+1)+yd(i+1)+yd(i)+2*y(i);
by=3*y(i+1)-yd(i+1)-2*yd(i)-3*y(i);
cy=yd(i);
dy=y(i);
for j=1:50
t=j/50;
xt(j)=ax*t^3+bx*t^2 +cx*t+dx;
yt(j)=ay*t^3+by*t^2 +cy*t+dy;
end
plot(x,y,'b-o');
plot(xt,yt,'*r');
end
|
7258700d875b1f01f4fb22586e804cf2c5b57781 | 449d555969bfd7befe906877abab098c6e63a0e8 | /374/CH5/EX5.4.a/54a.sci | 85612bfc9fd3215416a2cd22895a351a10b8005c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 476 | sci | 54a.sci | //chapter 5 exmaple 4a//
clc
clear
//number of longitudnal modes=K,refractive index=n1,length of the cavity in the laser=L,wavelength of the device=l,seperation wavelength between two modes=dl//
K=1700;
n1=3.6;
l=0.85*(10^-6);//in mts//
L=((K*l)/(2*n1))*(10^6);
printf("\n length of the cavity in the laser=%f micro meters\n",L)
dl=((l^2)/(2*n1*L))*(10^15);//seperation wavelength between modes//
printf("\n seperation wavelength between modes=%f micro meters\n",dl) |
b0d1258123fce2650dbe4d3ac8aeb4fc2c5506d7 | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /AkarPersamaan/scilab/test_secant_01.sce | 67adac5aeda679693fd244a4a37aa6a5a45a5693 | [] | no_license | f-fathurrahman/ffr-MetodeNumerik | ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327 | e3a9da224c0fd5b32e671708e890018a3c4104c4 | refs/heads/master | 2023-07-19T22:29:38.810143 | 2023-07-07T10:02:34 | 2023-07-07T10:02:34 | 107,272,110 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sce | test_secant_01.sce | exec("secant.sce", 0)
function f = fun1(x)
f = x^3 - 10*x^2 + 5
endfunction
root = secant( fun1, 0.7 )
if getscilabmode() ~= "STD"
quit()
end |
e5504cc396c1cc496a908f791aa7acc60acd889c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2409/CH13/EX13.3/Ex13_3.sce | f4a931791865d5b9c098b2505ce4fce72011c672 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 509 | sce | Ex13_3.sce |
//Variable Declaration
CIR1=27.53 //Carrier to interference ratio from Example 13.1(dB)
CIR2=23.53 //Carrier to interference ratio from Example 13.2(dB)
//Calculation
ICRu=10**(-CIR1/10) //Interferece to carrier ratio for uplink
ICRd=10**(-CIR2/10) //Interferece to carrier ratio for downlink
ICRant=ICRu+ICRd //Overall Interferece to carrier ratio
CIRant=-10*log10(ICRant)//Overall Carrier to interference ratio (dB)
//Result
printf("The overall carrier to interference ratio is %.2f dB",CIRant)
|
ca8273ccf62d26fe1e5bcb59e134379e5b7cc257 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH13/EX13.1/ex_13_1.sce | 5f0e6447e3d17119b895cc89f726933dc2efc907 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 190 | sce | ex_13_1.sce | ////Ex 13.1
clc;
clear;
close;
format('v',6);
deltaVin=4;//V
deltaVout=0.4;//V
Vout=20;//V
LR=(deltaVout/Vout)*100/deltaVin;//%/V(Line Regulation)
disp(LR,"Line Regulation(%/V)");
|
9956a086af49e9d1f9be47a251d5c3fa1f43d471 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH3/EX3.5/3_5.sce | 7bf5e0c071511461c885aedb0c83ca6f6bdee2ef | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,537 | sce | 3_5.sce | clear;
clc;
//Example - 3.5
//Page number - 86
printf("Example - 3.5 and Page number - 86\n\n");
//Given
T = 300;//[K] - Temperature
P1 = 1;//[bar] - Initial pressure
P1 = P1*10^(5);//[N/m^(2)]
P2 = 8;//[bar] - Final pressure
P2 = P2*10^(5);//[N/m^(2)]
R = 8.314;//[J/mol*K] - Universal gas constant
y1 = 0.21;// Mole fraction of component 1 (oxygen)
y2 = 0.79;// Mole fraction of component 1 (nitroen)
// For component 1 (Oxygen)
Tc_1 = 154.6;//[K]
Pc_1 = 50.43*10^(5);//[N/m^(2)]
Vc_1 = 73.4;//[cm^(3)/mol]
Zc_1 = 0.288;
w_1 = 0.022;
//For component 2 (Nitrogen)
Tc_2 = 126.2;//[K]
Pc_2 = 34*10^(5);//[N/m^(2)]
Vc_2 = 89.2;//[cm^(3)/mol]
Zc_2 = 0.289;
w_2 = 0.038;
//For component 1
Tr_1 = T/Tc_1;//Reduced temperature
//At reduced temperature
B1_0 = 0.083 - (0.422/(Tr_1)^(1.6));
B1_1 = 0.139 - (0.172/(Tr_1)^(4.2));
// We know,(B*Pc)/(R*Tc) = B_0+(w*B_1)
B_11 = ((B1_0+(w_1*B1_1))*(R*Tc_1))/Pc_1;//[m^(3)/mol]
// Similarly for component 2
Tr_2 = T/Tc_2;//Reduced temperature
// At reduced temperature Tr_2,
B2_0 = 0.083 - (0.422/(Tr_2)^(1.6));
B2_1 = 0.139 - (0.172/(Tr_2)^(4.2));
B_22 = ((B2_0 + (w_2*B2_1))*(R*Tc_2))/Pc_2;//[m^(3)/mol]
//For cross coeffcient
Tc_12 = (Tc_1*Tc_2)^(1/2);//[K]
w_12 = (w_1 + w_2)/2;
Zc_12 = (Zc_1+Zc_2)/2;
Vc_12 = (((Vc_1)^(1/3)+(Vc_2)^(1/3))/2)^(3);//[cm^(3)/mol]
Vc_12 = Vc_12*10^(-6);//[m^(3)/mol]
Pc_12 = (Zc_12*R*Tc_12)/Vc_12;//[N/m^(2)]
// Now we have,(B_12*Pc_12)/(R*Tc_12) = B_0 + (w_12*B_1)
// where B_0 and B_1 are to be evaluated at Tr_12
Tr_12 = T/Tc_12;
// At reduced temperature Tr_12
B_0 = 0.083 - (0.422/(Tr_12)^(1.6));
B_1 = 0.139 - (0.172/(Tr_12)^(4.2));
B_12 = ((B_0+(w_12*B_1))*R*Tc_12)/Pc_12;//[m^(3)/mol]
// For the mixture
B = y1^(2)*B_11 + 2*y1*y2*B_12+y2^(2)*B_22;//[m^(3)/mol]
// Now we have to calculate molar volume i.eV1 and V2 at given conditions
// At state 1,
deff('[y]=f(V)','y=V^(2)-(R*T/P1)*V-(B*R*T)/P1');
V_1=fsolve(-1,f);
V_2=fsolve(1,f);
// We will take root near to (R*T)/P, i.e V_2
V1 = V_2;//[m^(3)/mol]
// At state 2,
deff('[y]=f1(V)','y=V^(2)-(R*T/P2)*V-(B*R*T)/P2');
V_3=fsolve(-1,f1);
V_4=fsolve(1,f1);
V2 = V_4;//[m^(3)/mol]
// Work done per mole of air is given by, w=integral(Pdv)
// Z = 1 + (B/V)
// (P*V)/(R*T) = 1 +( B/V)
// P = (R*T)/V+(B*R*T)/V^(2)
// w = integrate('(R*T/V)+(B*R*T)/V^(2)','V',V1,V2)
// Under isothermal conditions,
w = R*T*log(V2/V1)-B*R*T*((1/V2)-(1/V1));
w = w*10^(-3);//[kJ/mol]
printf(" The work done is %f kJ/mol",w);
|
06ee8bb5c325dd29d69d2af246c7f88af98cb14e | 449d555969bfd7befe906877abab098c6e63a0e8 | /122/CH7/EX7.5/exa7_5.sce | 307f1d35612f4f8417c4589f8a67d4aa0a272a51 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 650 | sce | exa7_5.sce | // Example 7-5
// Bode Plot in rad/s
clear; clc;
xdel(winsid()); //close all windows
s = %s;
num = 25;
den = s^2 + 4*s + 25;
G = syslin('c',num,den);
bode(G);
xtitle('Bode plot of G(s) = 25 / s^2 + 4*s + 25');
// Note, bode plots in Sci-Lab use the frequency in Hz and not in
// rad/s . If we wish to get the plot with rad/s we can...
omega = logspace(-2,2,50);
f = omega / 2 / %pi;
repf = repfreq(G,f); // calculate the frequency response
// repf is a vector of complex numbers
scf();
bode(omega,repf);
xtitle('Bode plot of G(s) = 25 / s^2 + 4*s + 25','rad/s');
a = gcf();set(a.children(1).x_label,'text','rad/s');
|
c71f17488ae330be36e8e8b8d59ab7bebb0c00e5 | bb44d6eb6adf8f21077f2a49f2eb44d2424b2a5b | /spiral_sum.sci | f1dbe90ad77759f22d3d4da037127e4e46c831c9 | [] | no_license | prasadovhal/Scilab-Codes | c8ccc49feba4243d092d8a1eba7a708eb95dc89e | 3af5566d62b1f1b6cf080ec20391c39b9d61897d | refs/heads/master | 2020-03-29T16:50:45.738023 | 2018-09-24T16:05:50 | 2018-09-24T16:05:50 | 150,130,310 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 225 | sci | spiral_sum.sci | function [summ]=spiral_diag_sum(n)
N = (2*n+1)
A = ceil(rand(N,N)*10)
disp(A)
sdiag = trace(A)
rdiag = sum(A(N:(N-1):((N*N)-1)))
C = A((N*N+1)/2)
summ = sdiag +rdiag - C
endfunction
|
1560bcc31b49fad31714c35366fcb1b3cb08a6ac | 04227b0d1bb094503d6c9ca0b21de26102c7572c | /lbp.sci | 153eb42d5e0c5c8bf402020ae0742ca49cb075d3 | [] | no_license | C-ELAzouzi/Reconnaissance-facial-matlab | be48b496aab193ec07f7aaa95cae2915ea5badfa | ee8073c77bd5fd3f9647ddd18b0115b4a9d27ae3 | refs/heads/master | 2023-06-05T16:25:23.844539 | 2021-06-16T12:46:06 | 2021-06-16T12:46:06 | 377,476,453 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,138 | sci | lbp.sci | // LBP returns the local binary pattern image or LBP histogram of an image.
// J = LBP(I,R,N,MAPPING,MODE) returns either a local binary pattern
// coded image or the local binary pattern histogram of an intensity
// image I. The LBP codes are computed using N sampling points on a
// circle of radius R and using mapping table defined by MAPPING.
// See the getmapping function for different mappings and use 0 for
// no mapping. Possible values for MODE are
// 'h' or 'hist' to get a histogram of LBP codes
// 'nh' to get a normalized histogram
// Otherwise an LBP code image is returned.
//
// J = LBP(I) returns the original (basic) LBP histogram of image I
//
// J = LBP(I,SP,MAPPING,MODE) computes the LBP codes using n sampling
// points defined in (n * 2) matrix SP. The sampling points should be
// defined around the origin (coordinates (0,0)).
//
// Examples
// --------
// I=imread('rice.png');
// mapping=getmapping(8,'u2');
// H1=LBP(I,1,8,mapping,'h'); //LBP histogram in (8,1) neighborhood
// //using uniform patterns
// subplot(2,1,1),stem(H1);
//
// H2=LBP(I);
// subplot(2,1,2),stem(H2);
//
// SP=[-1 -1; -1 0; -1 1; 0 -1; -0 1; 1 -1; 1 0; 1 1];
// I2=LBP(I,SP,0,'i'); //LBP code image using sampling points in SP
// //and no mapping. Now H2 is equal to histogram
// //of I2.
function result = lbp(varargin) // image,radius,neighbors,mapping,mode)
// Version 0.3.3
// Authors: Marko Heikkil?and Timo Ahonen
// Changelog
// Version 0.3.2: A bug fix to enable using mappings together with a
// predefined spoints array
// Version 0.3.1: Changed MAPPING input to be a struct containing the mapping
// table and the number of bins to make the function run faster with high number
// of sampling points. Lauge Sorensen is acknowledged for spotting this problem.
// Check number of input arguments.
[out, in] = argn();
if((in < 1)||(in > 5))
error('Input arguments');
end
image=varargin(1);
d_image=double(image);
if nargin==1
spoints=[-1 -1; -1 0; -1 1; 0 -1; -0 1; 1 -1; 1 0; 1 1];
neighbors=8;
mapping=0;
mode='h';
end
if (nargin == 2) && (length(varargin(2)) == 1)
error('Input arguments');
end
if (nargin > 2) && (length(varargin(2)) == 1)
radius=varargin(2);
neighbors=varargin(3);
spoints=zeros(neighbors,2);
// Angle step.
a = 2*%pi/neighbors;
for i = 1:neighbors
spoints(i,1) = -radius*sin((i-1)*a);
spoints(i,2) = radius*cos((i-1)*a);
end
if(nargin >= 4)
mapping=varargin(4);
if(isstruct(mapping) && mapping.samples ~= neighbors)
error('Incompatible mapping');
end
else
mapping=0;
end
if(nargin >= 5)
mode=varargin(5);
else
mode='h';
end
end
if (nargin > 1) && (length(varargin(2)) > 1)
spoints=varargin(2);
neighbors=size(spoints,1);
if(nargin >= 3)
mapping=varargin(3);
if(isstruct(mapping) && mapping.samples ~= neighbors)
error('Incompatible mapping');
end
else
mapping=0;
end
if(nargin >= 4)
mode=varargin(4);
else
mode='h';
end
end
// Determine the dimensions of the input image.
[ysize xsize] = size(image);
miny=min(spoints(:,1));
maxy=max(spoints(:,1));
minx=min(spoints(:,2));
maxx=max(spoints(:,2));
// Block size, each LBP code is computed within a block of size bsizey*bsizex
bsizey=ceil(max(maxy,0))-floor(min(miny,0))+1;
bsizex=ceil(max(maxx,0))-floor(min(minx,0))+1;
// Coordinates of origin (0,0) in the block
origy=1-floor(min(miny,0));
origx=1-floor(min(minx,0));
// Minimum allowed size for the input image depends
// on the radius of the used LBP operator.
if(xsize < bsizex || ysize < bsizey)
error('Too small input image. Should be at least (2*radius+1) x (2*radius+1)');
end
// Calculate dx and dy;
dx = xsize - bsizex;
dy = ysize - bsizey;
// Fill the center pixel matrix C.
C = image(origy:origy+dy,origx:origx+dx);
d_C = double(C);
bins = 2^neighbors;
// Initialize the result matrix with zeros.
result=zeros(dy+1,dx+1);
//Compute the LBP code image
for i = 1:neighbors
y = spoints(i,1)+origy;
x = spoints(i,2)+origx;
// Calculate floors, ceils and rounds for the x and y.
fy = floor(y); cy = ceil(y); ry = round(y);
fx = floor(x); cx = ceil(x); rx = round(x);
// Check if interpolation is needed.
if (abs(x - rx) < 1e-6) && (abs(y - ry) < 1e-6)
// Interpolation is not needed, use original datatypes
N = image(ry:ry+dy,rx:rx+dx);
D = N >= C;
else
// Interpolation needed, use double type images
ty = y - fy;
tx = x - fx;
// Calculate the interpolation weights.
w1 = roundn((1 - tx) * (1 - ty),-6);
w2 = roundn(tx * (1 - ty),-6);
w3 = roundn((1 - tx) * ty,-6) ;
// w4 = roundn(tx * ty,-6) ;
w4 = roundn(1 - w1 - w2 - w3, -6);
// Compute interpolated pixel values
N = w1*d_image(fy:fy+dy,fx:fx+dx) + w2*d_image(fy:fy+dy,cx:cx+dx) + ...
w3*d_image(cy:cy+dy,fx:fx+dx) + w4*d_image(cy:cy+dy,cx:cx+dx);
N = roundn(N,-4);
D = N >= d_C;
end
// Update the result matrix.
v = 2^(i-1);
result = result + v*D;
end
//Apply mapping if it is defined
if isstruct(mapping)
bins = mapping.num;
for i = 1:size(result,1)
for j = 1:size(result,2)
result(i,j) = mapping.table(result(i,j)+1);
end
end
end
if ((strcmp(mode,'h')==0) || (strcmp(mode,'hist')==0) || (strcmp(mode,'nh')==0))
// Return with LBP histogram if mode equals 'hist'.
result=histc(result(:),0:(bins-1));
if ((strcmp(mode,'nh')==0))
result=result/sum(result);
end
else
//Otherwise return a matrix of unsigned integers
if ((bins-1)<=255)
result=uint8(result);
elseif ((bins-1)<=65535)
result=uint16(result);
else
result=uint32(result);
end
end
endfunction
function x = roundn(x, n)
[out, in] = argn();
if((in ~= 2))
error('Input arguments');
end
// validateattributes(x, {'single', 'double'}, {}, 'ROUNDN', 'X')
// validateattributes(n, ...
// {'numeric'}, {'scalar', 'real', 'integer'}, 'ROUNDN', 'N')
if n < 0
p = 10 ^ -n;
x = round(p * x) / p;
elseif n > 0
p = 10 ^ n;
x = p * round(x / p);
else
x = round(x);
end
endfunction
|
382be74b0cc9f16b274345842b657a9013048143 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1598/CH2/EX2.6/ex2_6.sce | e2d7c52afcb1ae72cdd81b152537e9949212fee5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | ex2_6.sce | clc;
disp("Example 2.7");
t=0.1; //thickness in centimetre.
Y=8.75*10^11; //Young's Modulus in dyne/cm square.
R=2.654; //Density in gram/cm square.
n=(1/(2*t))*sqrt(Y/R); //calculating frequency using Young's modulus.
disp(n,"Frequency of Vibration in Hz = "); //Displaying Result. |
3f79593a93191783d0852ab5b0826244ef1a1df2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /37/CH1/EX1.3/Solved3.sci | 99b393813d53c3adfeb16fc4c5836fce41810cc9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 725 | sci | Solved3.sci | //Solved Example 5:
//Writing a name from the given structure and
//counting the number of alphabets printed
function[l]=strlen(str)
i=1;
l=0;
[j,k]=size(str)
for i=1:k
l=l+length(str(i));
end
endfunction
function[count]=writename(name)
printf("\n");
printf("%s",name.first);
printf("%c",' ');
printf("%s",name.midinit);
printf("\t");
printf("%s",name.last);
printf("\n");
a=string(name.first);
count=strlen(a);
a=string(name.midinit);
count=count+strlen(a);
a=string(name.last);
count=count+strlen(a);
disp(count,"Count is:");
endfunction
//Calling Routine
name=struct('first','praveen','midinit','rajeev','last','chauhan');
count=writename(name) |
ac08b7604fc97b6661f96f6a73dc9884d3b8acd6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3825/CH9/EX9.6/Ex9_6.sce | 0121e314918536abcc03fb4624ba6af36d5c75be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 572 | sce | Ex9_6.sce | clc
P2=4 //pressure in MPa
P1=0.1 //pressure in MPa
gama=1.4
T1=323
ro=(P2/P1)^(1/gama)
mprintf("ro=%f\n",ro)//ans vary due to roundoff error
T2=(P2*T1*(1/ro))/P1
mprintf("T2=%fK\n",T2)//ans vary due to roundoff error
q1=600
CP=1.0047
T3=(q1/CP)+T2
mprintf("T3=%fK\n",T3)//ans vary due to roundoff error
P3=P2
rc=(T3/T2)
mprintf("rc=%f\n",rc)//ans vary due to roundoff error
Eta=1-((1/(gama*ro^(gama-1)))*(((rc^gama)-1)/(rc-1)))
mprintf("Eta=%f\n",Eta)//ans vary due to roundoff error
mprintf("Work done=%fkJ/kg",Eta*q1)//ans vary due to roundoff error
|
d09b2461b790091a5808a598d6006af537f5322a | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/WM87HKL/ATWM1_Working_Memory_MEG_WM87HKL_Session2/ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | 75f741d43f9b6d8fe74ef67d8720eaeb2c8cf7b0 | [] | 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,383 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#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 = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; 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 = 369; width = 369; color = 42, 42, 42;} 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 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_124 gabor_006 gabor_085 gabor_175 gabor_124 gabor_006 gabor_085_alt gabor_175_alt "2_1_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_124_006_085_175_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_1_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_090 gabor_052 gabor_067 gabor_129 gabor_090 gabor_052 gabor_067_alt gabor_129_alt "2_2_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_090_052_067_129_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_174_framed blank blank blank blank fixation_cross_target_position_3_4 "2_2_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 1942 fixation_cross gabor_060 gabor_172 gabor_035 gabor_094 gabor_060_alt gabor_172 gabor_035 gabor_094_alt "2_3_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_060_172_035_094_target_position_1_4_retrieval_position_1" gabor_060_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_3_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_103 gabor_180 gabor_073 gabor_015 gabor_103 gabor_180_alt gabor_073 gabor_015_alt "2_4_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_103_180_073_015_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_151_framed blank blank blank blank fixation_cross_target_position_2_4 "2_4_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2042 2992 2442 fixation_cross gabor_101 gabor_012 gabor_065 gabor_081 gabor_101_alt gabor_012 gabor_065_alt gabor_081 "2_5_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_2050_3000_2450_gabor_patch_orientation_101_012_065_081_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_127_framed blank blank blank blank fixation_cross_target_position_1_3 "2_5_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_127_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2292 fixation_cross gabor_107 gabor_047 gabor_136 gabor_161 gabor_107_alt gabor_047 gabor_136_alt gabor_161 "2_6_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_107_047_136_161_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_6_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2142 fixation_cross gabor_009 gabor_133 gabor_163 gabor_024 gabor_009_alt gabor_133 gabor_163 gabor_024_alt "2_7_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_009_133_163_024_target_position_1_4_retrieval_position_1" gabor_056_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_7_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2242 fixation_cross gabor_060 gabor_121 gabor_035 gabor_004 gabor_060_alt gabor_121 gabor_035_alt gabor_004 "2_8_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_060_121_035_004_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_170_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_8_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_151 gabor_082 gabor_036 gabor_067 gabor_151_alt gabor_082 gabor_036 gabor_067_alt "2_9_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_151_082_036_067_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_067_framed blank blank blank blank fixation_cross_target_position_1_4 "2_9_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1842 2992 1992 fixation_cross gabor_041 gabor_178 gabor_155 gabor_007 gabor_041 gabor_178_alt gabor_155_alt gabor_007 "2_10_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2000_gabor_patch_orientation_041_178_155_007_target_position_2_3_retrieval_position_1" gabor_088_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_10_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_088_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2592 fixation_cross gabor_101 gabor_062 gabor_174 gabor_041 gabor_101 gabor_062 gabor_174_alt gabor_041_alt "2_11_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_101_062_174_041_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_11_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_074 gabor_129 gabor_056 gabor_099 gabor_074 gabor_129 gabor_056_alt gabor_099_alt "2_12_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_074_129_056_099_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_145_framed blank blank blank blank fixation_cross_target_position_3_4 "2_12_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2442 fixation_cross gabor_026 gabor_081 gabor_009 gabor_149 gabor_026_alt gabor_081_alt gabor_009 gabor_149 "2_13_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_026_081_009_149_target_position_1_2_retrieval_position_1" gabor_026_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_13_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_028 gabor_013 gabor_093 gabor_133 gabor_028_alt gabor_013 gabor_093_alt gabor_133 "2_14_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_028_013_093_133_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_046_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_14_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1842 2992 2342 fixation_cross gabor_174 gabor_115 gabor_059 gabor_100 gabor_174 gabor_115_alt gabor_059 gabor_100_alt "2_15_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_2350_gabor_patch_orientation_174_115_059_100_target_position_2_4_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_15_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_174_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_114 gabor_009 gabor_175 gabor_062 gabor_114 gabor_009_alt gabor_175 gabor_062_alt "2_16_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_114_009_175_062_target_position_2_4_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_16_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_061 gabor_045 gabor_179 gabor_113 gabor_061 gabor_045 gabor_179_alt gabor_113_alt "2_17_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_061_045_179_113_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_179_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_17_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_051 gabor_141 gabor_030 gabor_075 gabor_051_alt gabor_141 gabor_030 gabor_075_alt "2_18_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_051_141_030_075_target_position_1_4_retrieval_position_1" gabor_051_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_18_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1892 2992 2342 fixation_cross gabor_131 gabor_098 gabor_152 gabor_017 gabor_131 gabor_098_alt gabor_152_alt gabor_017 "2_19_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2350_gabor_patch_orientation_131_098_152_017_target_position_2_3_retrieval_position_1" gabor_131_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_19_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_007 gabor_118 gabor_055 gabor_165 gabor_007 gabor_118 gabor_055_alt gabor_165_alt "2_20_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_007_118_055_165_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_3_4 "2_20_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_064 gabor_041 gabor_131 gabor_004 gabor_064 gabor_041_alt gabor_131 gabor_004_alt "2_21_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_064_041_131_004_target_position_2_4_retrieval_position_2" gabor_circ gabor_091_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_21_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2392 fixation_cross gabor_105 gabor_173 gabor_045 gabor_153 gabor_105 gabor_173_alt gabor_045 gabor_153_alt "2_22_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_105_173_045_153_target_position_2_4_retrieval_position_2" gabor_circ gabor_124_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_22_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_018 gabor_146 gabor_058 gabor_174 gabor_018 gabor_146_alt gabor_058_alt gabor_174 "2_23_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_018_146_058_174_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_103_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_23_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2592 fixation_cross gabor_049 gabor_019 gabor_158 gabor_003 gabor_049 gabor_019_alt gabor_158_alt gabor_003 "2_24_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_049_019_158_003_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 "2_24_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 1892 fixation_cross gabor_128 gabor_094 gabor_004 gabor_071 gabor_128 gabor_094 gabor_004_alt gabor_071_alt "2_25_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_128_094_004_071_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_target_position_3_4 "2_25_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2142 2992 2042 fixation_cross gabor_078 gabor_165 gabor_002 gabor_035 gabor_078 gabor_165 gabor_002_alt gabor_035_alt "2_26_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2050_gabor_patch_orientation_078_165_002_035_target_position_3_4_retrieval_position_1" gabor_124_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_26_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_124_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_168 gabor_141 gabor_032 gabor_097 gabor_168_alt gabor_141 gabor_032 gabor_097_alt "2_27_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_168_141_032_097_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_target_position_1_4 "2_27_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2392 fixation_cross gabor_105 gabor_034 gabor_171 gabor_056 gabor_105_alt gabor_034 gabor_171_alt gabor_056 "2_28_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_105_034_171_056_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_171_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_28_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_083 gabor_044 gabor_065 gabor_014 gabor_083 gabor_044_alt gabor_065 gabor_014_alt "2_29_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_083_044_065_014_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_150_framed blank blank blank blank fixation_cross_target_position_2_4 "2_29_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2142 fixation_cross gabor_157 gabor_112 gabor_068 gabor_131 gabor_157 gabor_112 gabor_068_alt gabor_131_alt "2_30_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_157_112_068_131_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_target_position_3_4 "2_30_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_066 gabor_086 gabor_033 gabor_051 gabor_066 gabor_086 gabor_033_alt gabor_051_alt "2_31_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_066_086_033_051_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_004_framed blank blank blank blank fixation_cross_target_position_3_4 "2_31_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2242 2992 1992 fixation_cross gabor_058 gabor_137 gabor_179 gabor_018 gabor_058 gabor_137_alt gabor_179 gabor_018_alt "2_32_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2000_gabor_patch_orientation_058_137_179_018_target_position_2_4_retrieval_position_1" gabor_058_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_32_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_058_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_014 gabor_035 gabor_087 gabor_125 gabor_014_alt gabor_035 gabor_087_alt gabor_125 "2_33_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_014_035_087_125_target_position_1_3_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_33_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_125 gabor_152 gabor_174 gabor_013 gabor_125_alt gabor_152 gabor_174_alt gabor_013 "2_34_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_125_152_174_013_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_34_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2092 fixation_cross gabor_062 gabor_133 gabor_023 gabor_007 gabor_062_alt gabor_133_alt gabor_023 gabor_007 "2_35_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_062_133_023_007_target_position_1_2_retrieval_position_2" gabor_circ gabor_083_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_35_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_069 gabor_023 gabor_129 gabor_085 gabor_069 gabor_023_alt gabor_129_alt gabor_085 "2_36_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_069_023_129_085_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_175_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_36_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_180 gabor_014 gabor_147 gabor_162 gabor_180_alt gabor_014 gabor_147 gabor_162_alt "2_37_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_180_014_147_162_target_position_1_4_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_37_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2092 2992 1992 fixation_cross gabor_088 gabor_155 gabor_019 gabor_069 gabor_088 gabor_155_alt gabor_019 gabor_069_alt "2_38_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2000_gabor_patch_orientation_088_155_019_069_target_position_2_4_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_38_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_040_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_105 gabor_131 gabor_167 gabor_058 gabor_105_alt gabor_131_alt gabor_167 gabor_058 "2_39_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_105_131_167_058_target_position_1_2_retrieval_position_2" gabor_circ gabor_082_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_39_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1842 2992 2242 fixation_cross gabor_048 gabor_102 gabor_013 gabor_130 gabor_048 gabor_102_alt gabor_013_alt gabor_130 "2_40_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2250_gabor_patch_orientation_048_102_013_130_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_target_position_2_3 "2_40_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_098 gabor_019 gabor_079 gabor_164 gabor_098_alt gabor_019_alt gabor_079 gabor_164 "2_41_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_098_019_079_164_target_position_1_2_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_41_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2442 fixation_cross gabor_028 gabor_157 gabor_043 gabor_172 gabor_028 gabor_157_alt gabor_043_alt gabor_172 "2_42_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_028_157_043_172_target_position_2_3_retrieval_position_2" gabor_circ gabor_111_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_42_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_161 gabor_032 gabor_113 gabor_094 gabor_161 gabor_032_alt gabor_113_alt gabor_094 "2_43_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_161_032_113_094_target_position_2_3_retrieval_position_2" gabor_circ gabor_032_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_43_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_084 gabor_165 gabor_014 gabor_032 gabor_084 gabor_165 gabor_014_alt gabor_032_alt "2_44_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_084_165_014_032_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_149_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_44_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 1892 fixation_cross gabor_081 gabor_148 gabor_118 gabor_170 gabor_081_alt gabor_148 gabor_118 gabor_170_alt "2_45_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_081_148_118_170_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_170_framed blank blank blank blank fixation_cross_target_position_1_4 "2_45_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2092 2992 2192 fixation_cross gabor_022 gabor_104 gabor_043 gabor_083 gabor_022 gabor_104_alt gabor_043_alt gabor_083 "2_46_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_022_104_043_083_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_target_position_2_3 "2_46_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_131_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2542 fixation_cross gabor_126 gabor_141 gabor_080 gabor_021 gabor_126 gabor_141 gabor_080_alt gabor_021_alt "2_47_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_126_141_080_021_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_021_framed blank blank blank blank fixation_cross_target_position_3_4 "2_47_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2542 fixation_cross gabor_168 gabor_009 gabor_042 gabor_125 gabor_168 gabor_009_alt gabor_042_alt gabor_125 "2_48_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_168_009_042_125_target_position_2_3_retrieval_position_2" gabor_circ gabor_009_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_48_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_006 gabor_021 gabor_138 gabor_050 gabor_006 gabor_021 gabor_138_alt gabor_050_alt "2_49_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_006_021_138_050_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_050_framed blank blank blank blank fixation_cross_target_position_3_4 "2_49_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2192 fixation_cross gabor_085 gabor_131 gabor_023 gabor_041 gabor_085 gabor_131 gabor_023_alt gabor_041_alt "2_50_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_085_131_023_041_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 "2_50_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_031 gabor_079 gabor_152 gabor_096 gabor_031_alt gabor_079_alt gabor_152 gabor_096 "2_51_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_031_079_152_096_target_position_1_2_retrieval_position_1" gabor_031_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_51_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2092 fixation_cross gabor_077 gabor_058 gabor_129 gabor_013 gabor_077 gabor_058_alt gabor_129 gabor_013_alt "2_52_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_077_058_129_013_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_013_framed blank blank blank blank fixation_cross_target_position_2_4 "2_52_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1792 2992 2392 fixation_cross gabor_075 gabor_165 gabor_012 gabor_056 gabor_075_alt gabor_165 gabor_012_alt gabor_056 "2_53_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2400_gabor_patch_orientation_075_165_012_056_target_position_1_3_retrieval_position_2" gabor_circ gabor_165_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_53_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_165_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_075 gabor_043 gabor_090 gabor_120 gabor_075 gabor_043 gabor_090_alt gabor_120_alt "2_54_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_075_043_090_120_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_3_4 "2_54_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_141 gabor_103 gabor_175 gabor_014 gabor_141 gabor_103_alt gabor_175 gabor_014_alt "2_55_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_141_103_175_014_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_014_framed blank blank blank blank fixation_cross_target_position_2_4 "2_55_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_014_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 1942 fixation_cross gabor_103 gabor_171 gabor_081 gabor_143 gabor_103 gabor_171_alt gabor_081_alt gabor_143 "2_56_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_103_171_081_143_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_031_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_56_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_045 gabor_067 gabor_102 gabor_176 gabor_045_alt gabor_067 gabor_102_alt gabor_176 "2_57_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_045_067_102_176_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_102_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_57_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1742 2992 1892 fixation_cross gabor_031 gabor_002 gabor_151 gabor_071 gabor_031_alt gabor_002 gabor_151_alt gabor_071 "2_58_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_1900_gabor_patch_orientation_031_002_151_071_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_target_position_1_3 "2_58_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2042 fixation_cross gabor_170 gabor_018 gabor_155 gabor_126 gabor_170 gabor_018 gabor_155_alt gabor_126_alt "2_59_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_170_018_155_126_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_080_framed blank blank blank blank fixation_cross_target_position_3_4 "2_59_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2042 fixation_cross gabor_035 gabor_059 gabor_020 gabor_147 gabor_035_alt gabor_059 gabor_020 gabor_147_alt "2_60_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_035_059_020_147_target_position_1_4_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_60_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2242 2992 2142 fixation_cross gabor_087 gabor_055 gabor_035 gabor_168 gabor_087_alt gabor_055 gabor_035_alt gabor_168 "2_61_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_2250_3000_2150_gabor_patch_orientation_087_055_035_168_target_position_1_3_retrieval_position_2" gabor_circ gabor_055_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_61_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_055_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_120 gabor_040 gabor_099 gabor_015 gabor_120_alt gabor_040_alt gabor_099 gabor_015 "2_62_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_120_040_099_015_target_position_1_2_retrieval_position_2" gabor_circ gabor_179_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_62_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_037 gabor_147 gabor_060 gabor_165 gabor_037 gabor_147_alt gabor_060_alt gabor_165 "2_63_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_037_147_060_165_target_position_2_3_retrieval_position_2" gabor_circ gabor_147_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_63_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2342 fixation_cross gabor_047 gabor_161 gabor_134 gabor_004 gabor_047_alt gabor_161_alt gabor_134 gabor_004 "2_64_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_047_161_134_004_target_position_1_2_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_64_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_146 gabor_178 gabor_131 gabor_017 gabor_146 gabor_178 gabor_131_alt gabor_017_alt "2_65_Encoding_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_146_178_131_017_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_062_framed blank blank blank blank fixation_cross_target_position_3_4 "2_65_Retrieval_Working_Memory_MEG_P7_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 1942 fixation_cross gabor_171 gabor_109 gabor_093 gabor_023 gabor_171 gabor_109_alt gabor_093 gabor_023_alt "2_66_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_171_109_093_023_target_position_2_4_retrieval_position_2" gabor_circ gabor_109_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_66_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2092 2992 1892 fixation_cross gabor_010 gabor_145 gabor_078 gabor_123 gabor_010_alt gabor_145 gabor_078_alt gabor_123 "2_67_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_2100_3000_1900_gabor_patch_orientation_010_145_078_123_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_target_position_1_3 "2_67_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_123_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2592 fixation_cross gabor_012 gabor_092 gabor_057 gabor_172 gabor_012_alt gabor_092 gabor_057_alt gabor_172 "2_68_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_012_092_057_172_target_position_1_3_retrieval_position_1" gabor_012_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_68_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_164 gabor_124 gabor_093 gabor_051 gabor_164 gabor_124_alt gabor_093_alt gabor_051 "2_69_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_164_124_093_051_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_69_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1742 2992 2092 fixation_cross gabor_146 gabor_169 gabor_116 gabor_040 gabor_146 gabor_169_alt gabor_116_alt gabor_040 "2_70_Encoding_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_2100_gabor_patch_orientation_146_169_116_040_target_position_2_3_retrieval_position_1" gabor_146_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_70_Retrieval_Working_Memory_MEG_P7_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# 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;
}; |
508a2c965cb404a5c4d682e488ef05f1465b1f8c | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfi_e_bfa_mt_d/~BivLCM-SR-bfi_e_bfa_mt_d-PLin-VLin.tst | fbccf4eea2178fa7e630899f842d582691601a1d | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,909 | tst | ~BivLCM-SR-bfi_e_bfa_mt_d-PLin-VLin.tst |
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.519491D+00
2 -0.729398D-02 0.420253D-02
3 0.261779D-01 0.169658D-02 0.442177D+00
4 0.890442D-03 0.240198D-03 -0.569359D-02 0.372236D-02
5 0.571651D-03 0.116445D-03 0.933906D-03 0.785837D-04 0.383174D-02
6 -0.672722D-03 -0.471330D-04 0.773429D-03 -0.500859D-04 0.151296D-03
7 -0.767119D-03 -0.539878D-04 0.142790D-02 -0.795433D-04 -0.160719D-03
8 -0.346329D-03 0.277768D-04 -0.509642D-03 0.583111D-04 -0.109220D-03
9 -0.156314D+00 0.275621D-01 0.600441D-01 0.498507D-02 0.910217D-01
10 0.657443D-01 0.121244D-01 -0.529259D-02 0.212626D-02 0.169179D+00
11 -0.109184D-01 0.183117D-01 -0.202537D+00 0.102858D-01 -0.441473D-01
12 0.510251D-02 -0.274080D-01 0.754635D+00 0.224036D-01 0.311946D-01
13 -0.144312D+00 -0.551694D-02 0.471457D-01 -0.834062D-03 0.860984D-02
14 0.283329D+00 -0.773603D-02 0.102322D+00 0.114575D-02 -0.280477D-01
15 -0.985139D+00 -0.751862D-01 -0.946329D-01 0.173773D-02 -0.108578D+00
16 -0.511312D-01 -0.342725D-02 -0.183419D-01 0.181339D-02 -0.278260D-02
17 0.707653D-03 -0.586177D-03 0.160440D-02 -0.473370D-03 -0.944351D-03
18 -0.316875D+00 0.550496D-01 0.993178D+00 -0.346288D-01 -0.357764D-01
19 0.663059D-01 0.176860D-03 0.910247D-01 0.276210D-03 -0.465650D-02
20 0.690517D+00 -0.267804D-01 0.193918D+01 0.626885D-02 -0.422471D-02
21 -0.131499D+00 0.571531D-02 -0.148334D+00 0.599368D-02 0.449601D-02
22 0.461638D-02 -0.784469D-03 -0.357612D-03 -0.281512D-03 -0.110990D-03
23 -0.149476D-01 0.270069D-02 -0.202758D-01 0.115782D-01 -0.521687D-03
24 -0.634823D-04 -0.896199D-04 0.187413D-02 -0.352208D-03 -0.109443D-03
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.707736D-03
7 0.782046D-03 0.422561D-02
8 -0.178039D-03 -0.280336D-03 0.309662D-02
9 -0.145839D-01 -0.573549D-01 0.556823D-02 0.580647D+02
10 0.407612D-02 0.183273D-01 -0.755338D-02 0.290824D+01 0.244865D+02
11 0.229534D-01 0.396443D-01 0.183892D-03 -0.136466D+02 -0.171178D+01
12 0.823063D-02 0.128983D-02 0.877137D-01 0.844121D+00 0.402710D+01
13 0.524172D-01 0.138013D+00 -0.355853D-01 -0.418145D+01 0.236173D+01
14 -0.388702D-01 -0.113155D+00 0.395463D+00 0.317463D+00 0.130305D+01
15 -0.119099D-02 0.228809D-01 0.139627D-01 -0.192006D+02 -0.143847D+02
16 -0.102347D-02 -0.359198D-02 0.910968D-03 0.159348D+01 -0.531743D+00
17 0.252267D-03 0.285395D-03 0.239332D-03 -0.198447D+00 -0.347884D-01
18 -0.365207D-01 -0.891442D-01 0.346232D-01 0.122696D+02 -0.434054D+01
19 -0.880028D-02 0.678873D-02 0.563313D-02 0.206739D+01 0.352612D+00
20 0.593316D-02 0.113088D-01 -0.355703D+00 0.523007D+01 -0.312817D+01
21 0.879476D-02 -0.639134D-02 -0.100674D-01 -0.173023D+01 -0.311081D+00
22 -0.991884D-04 -0.583481D-03 -0.800543D-05 -0.328870D-01 0.622922D-02
23 -0.245771D-03 0.587200D-03 -0.121818D-02 0.180707D+00 -0.724384D-01
24 0.117848D-03 0.218563D-03 0.224732D-03 -0.684593D-01 -0.428477D-02
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.444268D+02
12 -0.229862D+01 0.167612D+03
13 -0.115737D+01 -0.197968D+01 0.152493D+02
14 -0.267946D+01 0.121133D+02 -0.816590D+01 0.113021D+03
15 0.951805D+01 -0.131726D+01 0.367357D+01 -0.969498D+01 0.619491D+03
16 -0.364048D+00 -0.773521D+00 -0.321681D+00 0.127697D-01 0.183167D+01
17 0.204174D-01 0.339883D-01 0.234260D-01 0.800838D-01 -0.257915D+01
18 -0.886181D+01 0.574593D+00 -0.260049D+01 0.604132D+01 -0.597004D+02
19 -0.683513D+00 0.192621D+01 -0.855246D+00 0.428406D+00 -0.262312D+01
20 -0.422170D+01 -0.228556D+02 0.350658D+01 -0.750899D+02 0.947605D+02
21 0.777276D+00 -0.243742D+01 0.756170D+00 -0.106838D+01 0.158022D+01
22 -0.109759D-01 0.582711D-01 -0.313056D-01 -0.849974D-02 0.384556D+00
23 -0.231209D-01 0.121484D+01 -0.257831D-01 -0.418537D+00 0.106434D+01
24 0.641974D-01 -0.156884D+00 0.498096D-02 -0.907092D-02 -0.388509D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.849396D+00
17 -0.559697D-01 0.265840D-01
18 0.827367D+00 0.387135D+00 0.423740D+03
19 0.693649D-01 0.228559D-01 0.618109D+01 0.608679D+01
20 0.134951D+01 -0.472112D+00 -0.160847D+02 0.364811D+01 0.597066D+03
21 -0.341183D-03 -0.786502D-02 0.563032D+00 -0.564535D+01 -0.477358D+01
22 0.228819D-02 -0.227211D-02 -0.180462D+01 -0.261006D-01 0.252000D+00
23 0.181716D-01 0.197909D-05 -0.114252D+01 0.337160D-01 0.630615D+01
24 -0.124424D-02 0.203023D-02 0.203867D+00 -0.174441D-01 -0.260587D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.749116D+01
22 -0.614560D-01 0.168000D-01
23 0.385649D-01 0.604066D-02 0.800334D+00
24 0.250038D-01 -0.152536D-02 -0.738157D-01 0.249262D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.156 1.000
3 0.055 0.039 1.000
4 0.020 0.061 -0.140 1.000
5 0.013 0.029 0.023 0.021 1.000
6 -0.035 -0.027 0.044 -0.031 0.092
7 -0.016 -0.013 0.033 -0.020 -0.040
8 -0.009 0.008 -0.014 0.017 -0.032
9 -0.028 0.056 0.012 0.011 0.193
10 0.018 0.038 -0.002 0.007 0.552
11 -0.002 0.042 -0.046 0.025 -0.107
12 0.001 -0.033 0.088 0.028 0.039
13 -0.051 -0.022 0.018 -0.004 0.036
14 0.037 -0.011 0.014 0.002 -0.043
15 -0.055 -0.047 -0.006 0.001 -0.070
16 -0.077 -0.057 -0.030 0.032 -0.049
17 0.006 -0.055 0.015 -0.048 -0.094
18 -0.021 0.041 0.073 -0.028 -0.028
19 0.037 0.001 0.055 0.002 -0.030
20 0.039 -0.017 0.119 0.004 -0.003
21 -0.067 0.032 -0.082 0.036 0.027
22 0.049 -0.093 -0.004 -0.036 -0.014
23 -0.023 0.047 -0.034 0.212 -0.009
24 -0.001 -0.009 0.018 -0.037 -0.011
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.452 1.000
8 -0.120 -0.077 1.000
9 -0.072 -0.116 0.013 1.000
10 0.031 0.057 -0.027 0.077 1.000
11 0.129 0.091 0.000 -0.269 -0.052
12 0.024 0.002 0.122 0.009 0.063
13 0.505 0.544 -0.164 -0.141 0.122
14 -0.137 -0.164 0.668 0.004 0.025
15 -0.002 0.014 0.010 -0.101 -0.117
16 -0.042 -0.060 0.018 0.227 -0.117
17 0.058 0.027 0.026 -0.160 -0.043
18 -0.067 -0.067 0.030 0.078 -0.043
19 -0.134 0.042 0.041 0.110 0.029
20 0.009 0.007 -0.262 0.028 -0.026
21 0.121 -0.036 -0.066 -0.083 -0.023
22 -0.029 -0.069 -0.001 -0.033 0.010
23 -0.010 0.010 -0.024 0.027 -0.016
24 0.028 0.021 0.026 -0.057 -0.005
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 -0.027 1.000
13 -0.044 -0.039 1.000
14 -0.038 0.088 -0.197 1.000
15 0.057 -0.004 0.038 -0.037 1.000
16 -0.059 -0.065 -0.089 0.001 0.080
17 0.019 0.016 0.037 0.046 -0.636
18 -0.065 0.002 -0.032 0.028 -0.117
19 -0.042 0.060 -0.089 0.016 -0.043
20 -0.026 -0.072 0.037 -0.289 0.156
21 0.043 -0.069 0.071 -0.037 0.023
22 -0.013 0.035 -0.062 -0.006 0.119
23 -0.004 0.105 -0.007 -0.044 0.048
24 0.061 -0.077 0.008 -0.005 -0.099
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.372 1.000
18 0.044 0.115 1.000
19 0.031 0.057 0.122 1.000
20 0.060 -0.119 -0.032 0.061 1.000
21 0.000 -0.018 0.010 -0.836 -0.071
22 0.019 -0.108 -0.676 -0.082 0.080
23 0.022 0.000 -0.062 0.015 0.288
24 -0.009 0.079 0.063 -0.045 -0.675
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.173 1.000
23 0.016 0.052 1.000
24 0.058 -0.075 -0.523 1.000
|
9fe26cc1e3c6fa59a66defe2f583a6f0b549a0a1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1061/CH8/EX8.25/Ex8_25.sce | b858b22a0b691f59c34d6abce2377af8d74ffb75 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 716 | sce | Ex8_25.sce | //Ex:8.25
clc;
clear;
close;
tr=25;// rediative life time in ns
tnr=90;// nonrediative life time in ns
i=3.5*10^-3;// drive current in amp
y=1.31*10^-6;// wavelength in m
h=6.625*10^-34;// plank constant
c=3*10^8;// the speed of light in m/s
e=1.6*10^-19;// charge
t=tr*tnr/(tr+tnr);// total carrier recombination lifetime ns
ni=t/tr;// internal quantam efficiency
pi=(ni*h*c*i)/(e*y);// internal power in watt
p_int=pi*10^3;// internal power in mW
P=p_int/(ni*(ni+1));// power emitted in mW
printf("The total carrier recombination lifetime =%f ns", t);
printf("\n The internal quantam efficiency =%f ", ni);
printf("\n The internal power =%f mW", p_int);
printf("\n The power emitted =%f mW", P); |
8de5c68f41e958ac66e4a61dc2e0af4a9b0a21cc | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH3/EX3.4/example_3_4.sce | 53a44d5c58733db62cb4f92a04281a51581b43a6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 133 | sce | example_3_4.sce | //laplace transform of unit impulse response is transfer function
syms s t
y=laplace(%e^(-4*t),t,s)
disp(y,"transfer function=") |
8e8c4ba5b6257108d107eda2770b876542a0ce7b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1850/CH3/EX3.7/exa_3_7.sce | 3b64cef2c90bde47c32f1aa5ec83bda16bb4e645 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 424 | sce | exa_3_7.sce | // Exa 3.7
clc;
clear;
close;
//given data
R_in= 2;// in M ohm
R_in=R_in*10^6;// in ohm
R_out=75;// in ohm
A=2*10^5;
f_o=5;// in Hz
R1=330;// in ohm (assuming)
R_f=R1;
B= R1/(R1+R_f);
A_f = -1;
disp(A_f,"Voltage gain")
R_inf= R1;
disp(R_inf,"Input Resistance in ohm")
R_outf= R_out/(A/2);// in ohm
disp(R_outf,"Output Resistance in ohm");
f_f= f_o*A/2;// in Hz
disp(f_f*10^-6,"Bandwidth in MHz");
|
42a66d62802c4c844703fd0fa69267c9252ee650 | c77ddbcdda7058406e026ed02c9f84af895dbfbc | /xtract.tst | 4f258216a90ee21eae36ac000d5abe9d426e7647 | [] | no_license | yesco/jml | b34940c44b9d6fe841742b95a9e29c9c0f54ecf4 | 64b0ba587448af0d9a06c7a2296827a9fb4656aa | refs/heads/master | 2021-10-04T08:42:39.788614 | 2021-09-25T16:09:08 | 2021-09-25T16:09:08 | 55,430,096 | 11 | 2 | null | 2018-09-15T18:53:21 | 2016-04-04T17:16:18 | C | UTF-8 | Scilab | false | false | 975 | tst | xtract.tst | === foo: FOO\n bar:BAR fie:FIE\nfum:FUM
foo => FOO
bar => BAR
foo: => FOO
foo:bar => BAR
foo:bar: => BAR
foo:fie: => FIE
fie => FIE
fum => FUM
foo:fum =>
fie:fum =>
### XPATH
=== <foo>FOO</foo>
foo => FOO
/foo => FOO
//foo => FOO
=== <foo>FOO<bar>BAR</bar>FIE</foo>
//bar => BAR
bar => BAR
=== <foo>F<fie/>OO<bar>BAR</bar>FIE</foo>
fie/ =>
fie =>
bar => BAR
/bar => ???
=== <xoo><foo>FOO<bar>BAR</bar>FIE</foo></xoo>
/foo =>
/xoo => <foo>FOO<bar>BAR</bar>FIE</foo>
foo/bar => BAR
xoo/foo/bar => BAR
/xoo/foo/bar => BAR
//xoo//bar => BAR
=== <xoo><abba>ABBA</abba>x sd <a>fds</a> sdf <foo>FOO<bar>BAR</bar>FIE</foo></xoo>
abba => ABBA
a => fds
abba/a =>
xoo/abba => ABBA
xoo/a => fds
xoo/abba/a =>
xoo/abba/foo =>
xoo/abba/foo/bar =>
xoo/foo/bar => BAR
xoo//bar
/xoo//bar
//xoo//bar
=== <xoo><abba>ABBA</abba><gurk>GURK</gurk><foo>FOO<bar>BAR</bar>FIE</foo></xoo>
xoo//bar => BAR
xoo/foo => <foo>FOO<bar>BAR</bar>FIE</foo>
xoo//foo => <foo>FOO<bar>BAR</bar>FIE</foo>
|
a47e5d786337849d044b7bf434ad298811acfc04 | a29cde11dd7c5ad8b8e1237f61c7cd379b163cbe | /unitTesting/Fforward.sci | c53c1a170486d792c5d1f9ee31d5dd8775ca2c7f | [
"ISC"
] | permissive | jrl-umi3218/jrl-dynamics | 0cab2f8fd7a7e6c8d72db0d2d91e76c85cd0c685 | acaddd0fcb6d3b3ef73e520269af242c0f861232 | refs/heads/master | 2020-05-19T08:13:43.364161 | 2015-03-17T21:56:38 | 2015-03-17T21:56:38 | 944,193 | 1 | 2 | null | 2015-03-17T21:56:38 | 2010-09-28T00:57:11 | C++ | UTF-8 | Scilab | false | false | 2,933 | sci | Fforward.sci | // Forward iteration to compute dynamics.
// Input Variables:
// ================
// i : number of the body.
// mq : articular values of the robot.
// mdq: velocities of the robot joints.
// mddq: acceleration of the robot joints.
// mw : angular velocities (local reference frame).
// mdv : linear velocities (local reference frame).
// mdw : angular velocities (local reference frame).
// mR : rotation of the joint in their parent reference frame
// this include the static rotation and the joint rotation.
// mRA : rotation of the joint in the World/Absolute reference frame.
// mRS : static rotation of the joint in their parent reference frame
// mp : position of the joint in their parent reference frame.
// Output variables:
// =================
// lR : Rotation of joint i including static and joint rotation in local reference frame.
// lRA : Rotation of joint i in the world/absolute reference frame.
// lw: angular velocity in local reference frame.
// ldw: angular acceleration in local reference frame.
// ldv: linear acceleration in local reference frame.
//
// Copyright 2010,
//
// Olivier Stasse,
//
// JRL/LAAS, CNRS/AIST
//
// This file is part of dynamicsJRLJapan.
// dynamicsJRLJapan is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// dynamicsJRLJapan is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Lesser Public License for more details.
// You should have received a copy of the GNU Lesser General Public License
// along with dynamicsJRLJapan. If not, see <http://www.gnu.org/licenses/>.
//
// Research carried out within the scope of the Associated
// International Laboratory: Joint Japanese-French Robotics
// Laboratory (JRL)
//
function [lR,lRA,lw,ldw,ldv] = forwardit(i,mq,mdq,mddq,mw,mdv,mdw,mR,mRA, mRS,mp)
// Relative rotation
lR = zeros(3,3);
// Compute the rotation matrix iRp(i)
lR([1:3],:) = mRS([(i-1)*3+1:i*3],:) * rotx(mq(i));
// Absolute rotation
lRA =zeros(3,3);
if i > 1 then
lRA = mRA([(i-2)*3+1:(i-1)*3],:) * lR;
else
lRA = lR;
end,
lR=lR';
// Compute the angular velocity.
lw = zeros(3,1);
lw = [ 1 0 0]'* mdq(i);
// Term from parent.
if i > 1 then
lw = lw + lR * mw(:,i-1);
end,
lw
// Compute the angular acceleration
ldw = zeros(3,1);
ldw = [ 1 0 0]'* mddq(i);
// Term from parent.
if i > 1
ldw = ldw + lR * mdw(:,i-1) ...
+ skew ( lR * mw(:,i-1)) * ...
[ 1 0 0]'*mdq(i);
end,
ldw
// Compute the linear acceleration
ldv = zeros(3,1);
// Term from parent.
if i > 1
ldv =lR * ( mdv(:,i-1) + skew(mdw(:,i-1))* mp(i,:)' ...
+ skew(mw(:,i-1))*skew(mw(:,i-1))* mp(i,:)') ;
end,
endfunction
|
c426905439515f3a4974bf935dc1b1620e70cdd6 | 7f8a82b193633b744689e1f194923592e656b470 | /rltoolSci/macros/old/rltool_r1.sci | 22871c99e6ee006fae1a897f0928c08166e47648 | [] | no_license | josuemoraisgh/rltoolSci | 3b5a5e8fc6a27b60bca3354af5222350cd8e8b3b | a76ad9fbfe988bb2674adfeb466847a32719474a | refs/heads/main | 2023-07-14T10:40:12.549424 | 2021-08-26T17:52:16 | 2021-08-26T17:52:16 | 385,216,740 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7,932 | sci | rltool_r1.sci | function rltool(sys)
// Construção Gráfica
dimensaoTela = get(0, "screensize_px");
main_fig = figure('layout', 'gridbag',...//plotGraph = createWindow();
'toolbar', 'figure',...
'menubar', 'figure',...
'axes_size',[800,600],...
'backgroundcolor', [1 1 1],...
'visible','off',..
'tag','main_fig');
dimensaoFig = get('main_fig','figure_size');
set('main_fig','figure_position',..
[((dimensaoTela(1)+dimensaoTela(3)-dimensaoFig(1))/2);...
((dimensaoTela(2)+dimensaoTela(4)-dimensaoFig(2))/2)]);//Coloca o tela no centro do monitor
//A tela terá 3 frames sendo cada um uma linha onde a informação será apresentada
//Organização da primeira coluna
c1Frame = uicontrol(main_fig,...
'layout', 'gridbag', ...
'style', 'frame', ...
'tag','c1Frame',..
'String','fFigure',...
'constraints', createConstraints("gridbag", [1, 1, 1, 1], [0.1, 1], "both"));
//Inserção da imagem
uicontrol(c1Frame,...
'HorizontalAlignment','center',...//Orientação do texto deste encapsulamento
'Style','text',...
'tag','fFigure',...
'constraints', createConstraints("gridbag", [1, 1, 1, 1], [1, 0.5],"both","center"), ..
'String','$\includegraphics{.\Imagens\FeedBackControl0.png}$');
c1Frame.String= 'fFigure';
datatipManagerMode(main_fig);
c11Frame = uicontrol(c1Frame,...
'layout', 'gridbag', ...
'style', 'frame', ...
'constraints', createConstraints("gridbag", [1, 2, 1, 1], [1, 1], "both"));
uicontrol(c11Frame,...
'HorizontalAlignment','center',..//Orientação do texto deste encapsulamento
'Style','text',..
'Margins', [10 10 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [1, 1, 1, 1], [0.5, 1], "horizontal", "right", [0, 0], [10 35]), ..
'String','G(s) =');
uicontrol(c11Frame,...
'Tag','tPV',..
'HorizontalAlignment','left',..//Orientação do texto deste encapsulamento
'Style','edit',..
'String',string(sys.num),..
'Margins', [10 0 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [2, 1, 1, 1], [1, 1], "horizontal", "center"));
uicontrol(c11Frame,...
'HorizontalAlignment','center',..//Orientação do texto deste encapsulamento
'Style','text',..
'Margins', [10 0 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [3, 1, 1, 1], [0.1, 1], "horizontal", "right", [0, 0], [10 35]), ..
'String','/');
uicontrol(c11Frame,...
'Tag','tPV',..
'HorizontalAlignment','left',..//Orientação do texto deste encapsulamento
'Style','edit',..
'String',string(sys.den),..
'Margins', [10 0 10 20],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [4, 1, 1, 1], [1, 1], "horizontal", "center"));
c12Frame = uicontrol(c1Frame,...
'layout', 'gridbag', ...
'style', 'frame', ...
'constraints', createConstraints("gridbag", [1, 3, 1, 1], [1, 1], "both"));
uicontrol(c12Frame,...
'HorizontalAlignment','center',..//Orientação do texto deste encapsulamento
'Style','text',..
'Margins', [10 10 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [1, 1, 1, 1], [0.5, 1], "horizontal", "right", [0, 0], [10 35]), ..
'String','C(s) =');
uicontrol(c12Frame,...
'Tag','tPV',..
'HorizontalAlignment','left',..//Orientação do texto deste encapsulamento
'Style','edit',..
'String','1',..
'Margins', [10 0 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [2, 1, 1, 1], [1, 1], "horizontal", "center"));
uicontrol(c12Frame,...
'HorizontalAlignment','center',..//Orientação do texto deste encapsulamento
'Style','text',..
'Margins', [10 0 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [3, 1, 1, 1], [0.1, 1], "horizontal", "right", [0, 0], [10 35]), ..
'String','/');
uicontrol(c12Frame,...
'Tag','tPV',..
'HorizontalAlignment','left',..//Orientação do texto deste encapsulamento
'Style','edit',..
'String','1',..
'Margins', [10 0 10 20],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [4, 1, 1, 1], [1, 1], "horizontal", "center"));
c22Frame = uicontrol(c1Frame,...
'layout', 'gridbag', ...
'style', 'frame', ...
'constraints', createConstraints("gridbag", [1, 4, 1, 1], [1, 1], "both"));
uicontrol(c22Frame,...
'HorizontalAlignment','center',..//Orientação do texto deste encapsulamento
'Style','text',..
'Margins', [10 10 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [1, 1, 1, 1], [0.5, 1], "horizontal", "right", [0, 0], [10 35]), ..
'String','H(s) =');
uicontrol(c22Frame,...
'Tag','tPV',..
'HorizontalAlignment','left',..//Orientação do texto deste encapsulamento
'Style','edit',..
'String','1',..
'Margins', [10 0 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [2, 1, 1, 1], [1, 1], "horizontal", "center"));
uicontrol(c22Frame,...
'HorizontalAlignment','center',..//Orientação do texto deste encapsulamento
'Style','text',..
'Margins', [10 0 10 0],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [3, 1, 1, 1], [0.1, 1], "horizontal", "right", [0, 0], [10 35]), ..
'String','/');
uicontrol(c22Frame,...
'Tag','tPV',..
'HorizontalAlignment','left',..//Orientação do texto deste encapsulamento
'Style','edit',..
'String','1',..
'Margins', [10 0 10 20],..//Cria um espaço em branco [top esquerda abaixo direita]
'constraints', createConstraints("gridbag", [4, 1, 1, 1], [1, 1], "horizontal", "center"));
//Organização da segunda coluna
c2Frame = uicontrol(main_fig,...
'layout', 'gridbag', ...
'style', 'frame', ...
'constraints', createConstraints("gridbag", [2, 1, 1, 1], [1, 1], "both"));
main_fig.visible = 'on';
axes = newaxes(c2Frame);
axes.auto_clear = 'off'; //Equivalente ao 'hold on' no Matlab
sca(axes)
evans(sys,1000);
sgrid('red');
datatipManagerMode(gcf);
// Post-tuning graphical elements
(axes.children)(2).children.thickness = 2;
endfunction
function Auto
global axes Gt t y u;
set('bManual','Enable','on');
set('bAuto','Enable','off');
set('tSP','Enable','on');
set('tMV','Enable','off');
endfunction
function Manual
set('bManual','Enable','off');
set('bAuto','Enable','on');
set('tSP','Enable','off');
set('tMV','Enable','on');
endfunction
|
0534899e2cd453d021b3a83f241d863510e1d83a | 0aacc4aca603f61e9ac05bdb6de5b3b783f797fe | /Mission-B3/B3_Seuillage.sci | 5f8d62c92cf532c77bc8a7a5ecde1f96c99a427f | [] | no_license | ZHamsiou/EXOLIFE-A2 | cf6001f744bf26109af2b552ecc2fe055ab8efd7 | 675a20670231c2a0a6c73333c988b1e651cab264 | refs/heads/master | 2021-04-29T19:18:23.002372 | 2018-02-16T03:22:18 | 2018-02-16T03:22:18 | 121,710,650 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 925 | sci | B3_Seuillage.sci | // Lecture de l'image
img = readpbm('B3.pbm');
// Déclaration & initialisation de 4 variables pour déterminer l'effectif
// d'un nombre de valeurs comprises dans un intervalles.
seuil1=65
seuil2=129
seuil3=193
// Affichage de texte.
disp("Les coordonnées optimal pour atterrissage robot ou fusée sont : ")
// Boucle pour parcourir l'image.
for c=1:512
for l=1:384
// Condition pour compter le nombres de pixel choisi qui possède une
// valeur daun un des intervalles ci-dessous.
if img(c,l)<seuil1
img(c,l)=64;
elseif (img(c,l)>(seuil1-1) & img(c,l) < seuil2)
img(c,l)=128;
elseif (img(c,l)>(seuil2-1) & img(c,l) < seuil3)
img(c,l)=192;
else
img(c,l)=255;
end
end
end
// Affichage de l'image modifié.
display_gray(img)
|
9dd40427eb29729e47565e289842cea18c5a28d5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1826/CH10/EX10.24/ex10_24.sce | f8123a6392923be777d6b138ffb74a0ed936e630 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 226 | sce | ex10_24.sce | // Example 10.24, page no-284
clear
clc
rho=1.54*10^-8//Ohm-m
ni=5.8*10^28//per m^3
m=9.1*10^-31//kg
e=1.6*10^-19//C
tau=m/(rho*ni*(e^2))
printf("The relaxation time of electrons in metal is %.2f*10^-14 s",tau*10^14)
|
b0798416e2196fcb0ee5672f922d6e072c1ac2ec | 449d555969bfd7befe906877abab098c6e63a0e8 | /3129/CH3/EX3.1/Ex3_1.sce | 85f279dc46aef8d21ab12ae9c4f9ed67dfe6e15b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,028 | sce | Ex3_1.sce | //Finding the Performance Parameters of a Half-Wave Rectifier
//Example 3.1 (Page No- 71)
clc
clear
Vm = 1; // Assume value of Vm
R = 1; // Assume R is 1
Vdc = (0.318*Vm)/R;
Idc = (0.318*Vm)/R;
Pdc = (0.318*Vm)^2/R;
Pac = (0.5*Vm)^2/R;
Vrms = 0.5*Vm;
Irms = (0.5*Vm)/R;
// part(a)
eta = (Pdc/Pac)*100; // efficiency
printf('Efficiency : %2.2f%% \n',eta);
//part(b)
FF = Vrms/Vdc; //Form Factor
perFF = FF*100; // % Form factor
printf('Form Factor : %1.2f or %d%% \n',FF,perFF);
//part(c)
RF = sqrt(FF^2-1); // Ripple Factor
perRF = RF*100; // % RF
printf('Ripple Factor: %1.2f of %d%% \n',RF,perRF);
//part(d);
Vs = Vm/sqrt(2);
Is = (0.5*Vm)/R;
VA = Vs*Is;
TUF = Pdc/(VA); // Transformer Utility Factor
printf('Transformer utility Factor : %0.3f \n',TUF);
//part(e)
printf('Peak Inverse Voltage (PIV) = Vm \n');
//part(f)
Is_peak=Vm/R;
Is = (0.5*Vm)/R;
CF = Is_peak/Is; // Crest Factor
printf('Crest Factor : %d \n',CF);
//part(g)
PF = Pac/VA;
printf('Input Power factor: %0.3f',PF);
|
f7491f43130ef4712e7aa3d5499aafc0d882a30f | f782561b1f8fe3d916355f7823306c0ddfcd4e1c | /Assignment 1/Encoder4To2/Encoder4To2.tst | c8548a4b0e3245a86ed8aab73de6d6007d5dc4dc | [] | no_license | rohit01010/Computer-System-Design | 17866493199ecea3e65c15558d6e598b552fd537 | 24609e7712e0f996ebc468c7d45d5cfafad0da87 | refs/heads/main | 2023-06-21T21:28:29.274768 | 2021-07-19T16:23:52 | 2021-07-19T16:23:52 | 387,509,305 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | tst | Encoder4To2.tst | load Encoder4To2.hdl;
output-file Encoder4To2.out;
output-list x0 x1 x2 x3 y1 y0;
set x0 1,set x1 0,set x2 0,set x3 0,eval,output;
set x0 0,set x1 1,set x2 0,set x3 0,eval,output;
set x0 0,set x1 0,set x2 1,set x3 0,eval,output;
set x0 0,set x1 0,set x2 0,set x3 1,eval,output;
|
b85c65d23bb6ce74636ff09f560de3bb245efd2b | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH7/EX7.22/example_7_22.sce | d52d322355e07940ae4f018523a08d1bdeb41281 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 144 | sce | example_7_22.sce | syms t s
p=poly([1 2],'s','coeff');
q=poly([0 1 2 1],'s','coeff');
T=p/q //gain FACTOR=40
R=1/s;
C=R*T;
c=ilaplace(C,s,t)
disp(c," c = ") |
c26c0831216335467d7d6a8ec83308486e290aa5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH8/EX8.7/Chapter8_example7.sce | 6f422ceeb8c5174f2e03080c3d27c95e9ec2af84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,921 | sce | Chapter8_example7.sce | clc
clear
//Input data
C=90//Percentage composition of C
H2=3.3//Percentage composition of H2
O2=3//Percentage composition of O2
N2=0.8//Percentage composition of N2
S=0.9//Percentage composition of S
Ash=2//Percentage composition of Ash
eO2=50//Percentage of excess air
mC=12//Molecular weight of carbon
mS=32//Molecular weight of sulphur
mCO2=44//Molecular weight of CO2
mO2=32//Molecular weight of O2
mSO2=64//Molecular weight of SO2
mN2=28//Molecular weight of N2
//Calculations
w1=(C/100)//Weight per kg of fuel of C in kg
w2=(H2/100)//Weight per kg of fuel of H2 in kg
w3=(S/100)//Weight per kg of fuel of S in kg
O1=(8/3)//Oxygen required per kg of constituent for C in kg
O2=8//Oxygen required per kg of constituent for H2 in kg
O3=1//Oxygen requred per kg of constituent for S in kg
O11=(w1*O1)//Oxygen required per kg of fuel for C in kg
O22=(w2*O2)//Oxygen required per kg of fuel for H2 in kg
O33=(w3*O3)//Oxygen required per kg of fuel for S in kg
T=(O11+O22+O33-(O2/100))//Total Oxygen required per kg of fuel in kg
ma=(T*(100/23))//Minimum air required in kg
aN2=(ma*((100+eO2)/100)*(77/100))//N2 in actual air supply in kg
TN2=(aN2+(N2/100))//Total N2 in kg
wt=(ma*(eO2/100)*(23/100))//Weight of air due to excess O2 in kg
TSO2=(w3*(mSO2/mS))//Total SO2 in kg
TCO2=(w1*(mCO2/mC))//Total CO2 in kg
pCO2=(TCO2/mCO2)//Parts by volume of CO2
pSO2=(TSO2/mSO2)//Parts by volume of SO2
pO2=(wt/mO2)//Parts by volume of O2
pN2=(TN2/mN2)//Parts by volume of N2
Tv=(pCO2+pSO2+pN2+pO2)//Total parts by volume
ppCO2=(pCO2/Tv)*100//Percentage volume of CO2
ppSO2=(pSO2/Tv)*100//Percenatge volume of SO2
ppO2=(pO2/Tv)*100//Percentage volume of O2
ppN2=(pN2/Tv)*100//Percentage volume of N2
//Output
printf('Percentage combustion of the dry flue gases by volume is \n CO2 %3.2f percent \n SO2 %3.2f percent \n O2 %3.1f percent \n N2 %3.2f percent',ppCO2,ppSO2,ppO2,ppN2)
|
64b222c74e9b407b292056affa054f2d72856848 | ded79447177b1df4db9bd1ad7582cd9e2ccc85b3 | /Display_n_odd_numbers.sce | ec72d920460dd2bd133f6705b8085a18ed453941 | [] | no_license | Anugya-Gogoi/Scilab-programs | 7ab352bde16c0d7c9b598af62113f12ab83fc6c6 | 40bd41b540dd5b6948e4efa4a22fc1d9f7e725f0 | refs/heads/main | 2023-02-27T09:43:40.263267 | 2021-02-10T05:19:10 | 2021-02-10T05:19:10 | 320,753,016 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 57 | sce | Display_n_odd_numbers.sce | x=input("Enter limit")
for i=1:2:10
disp(i);
end
|
53f047bf60298943de51781018ee68134f7582a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH9/EX9.a.24/Example_a_9_24.sce | 73ea8f1a7bd4aae4fc0ee84a0e92ba0ef61e37b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,431 | sce | Example_a_9_24.sce | //Example_a_9_24 page no:423
clc;
Zamag=10;
Zaang=0;
Zbmag=8;
Zbang=30;
Zcmag=5;
Zcang=45;
Vabmag=415;
Vabang=0;
Vabreal=Vabmag*cosd(Vabang);
Vabimag=Vabmag*sind(Vabang);
Vab=Vabreal+(%i*Vabimag);
Vbcmag=415;
Vbcang=-120;
Vbcreal=Vbcmag*cosd(Vbcang);
Vbcimag=Vbcmag*sind(Vbcang);
Vbc=Vbcreal+(%i*Vbcimag);
Zareal=Zamag*cosd(Zaang);
Zaimag=Zamag*sind(Zaang);
Za=Zareal+(%i*Zaimag);
Zbreal=Zbmag*cosd(Zbang);
Zbimag=Zbmag*sind(Zbang);
Zb=Zbreal+(%i*Zbimag);
Zcreal=Zcmag*cosd(Zcang);
Zcimag=Zcmag*sind(Zcang);
Zc=Zcreal+(%i*Zcimag);
Vo=((Vab/Za)-(Vbc/Zc))/((1/Za)+(1/Zb)+(1/Zc));
Voa=Vo-Vab;
Voc=Vo+Vbc;
Ia=-Voa/Za;
Ib=-Vo/Zb;
Ic=-Voc/Zc;
Iamag=-sqrt(real(Ia)^2+imag(Ia)^2);
Iaang=atand(imag(Ia)/real(Ia));
Iaang=180+Iaang;
Ibmag=-sqrt(real(Ib)^2+imag(Ib)^2);
Ibang=atand(imag(Ib)/real(Ib));
Icmag=-sqrt(real(Ic)^2+imag(Ic)^2);
Icang=atand(imag(Ic)/real(Ic));
Icang=Icang-180;
disp(Iamag,"the magnitude of current I1 is (in A)");
disp(Iaang,"the angle of current I1 is (in A)");
disp(Ibmag,"the magnitude of current I2 is (in A)");
disp(Ibang,"the angle of current I2 is (in A)");
disp(Icmag,"the magnitude of current I3 is (in A)");
disp(Icang,"the angle of current I3 is (in A)");
//the result produced in this problem varies slightly with the text book calculation because in text book the value is rounded off at every point but here values of directly simplified results are used
|
8a97a581a5db9c85e749f2464157767c3a40f9c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /773/CH10/EX10.07/10_07.sci | 3cbe40aba43f9a152865c2542e67f839d0f6d494 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | sci | 10_07.sci | //equation//
s=%s;
m=s^5+2*s^4+2*s^3+4*s^2+4*s+8
routh=routh_t(m) //This Function generates the Routh table
c=0;
for i=1:n
if (routh(i,1)<0)
c=c+1;
end
end
if(c>=1)
printf("system is unstable")
else ("system is stable")
end
|
c43b3b8948070cb03d3e40026618e6fbab0a021e | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/sci2blif_added_blocks/vdd_o.sce | 55473b98b972b4b4c946f224dbdbe8c90b1de3a3 | [] | no_license | nikhil-soraba/rasp30 | 872afa4ad0820b8ca3ea4f232c4168193acbd854 | 936c6438de595f9ac30d5619a887419c5bae2b0f | refs/heads/master | 2021-01-12T15:19:09.899590 | 2016-10-31T03:23:48 | 2016-10-31T03:23:48 | 71,756,442 | 0 | 0 | null | 2016-10-24T05:58:57 | 2016-10-24T05:58:56 | null | UTF-8 | Scilab | false | false | 486 | sce | vdd_o.sce | //************************** VDD Out (Macro block) *****************************
if(blk_name.entries(bl)=='vdd_o') then
for ss=1:scs_m.objs(bl).model.ipar(1)
mputl("#VDD_OUT "+string(bl),fd_w);
mputl(".subckt vdd_out in[0]=fb_vddout_net"+string(blk(blk_objs(bl),2))+"_"+string(ss)+" in[1]=net"+string(blk(blk_objs(bl),2))+"_"+string(ss)+" out[0]=fb_vddout_net"+string(blk(blk_objs(bl),2))+"_"+string(ss)+" #vdd_out_c =0",fd_w);
mputl(' ',fd_w);
end
end
|
70a80b590b1fa737b95893a4341b7e7c73185f5a | 623a9dd972dc78dbde5d5b8dc187acd6a1eb5910 | /TP2/crout.sci | 0238161f35db3ec8f3c95c8d881aa0f68ef42699 | [] | no_license | gtessi/CN2012-FICH | 0daad054ceb6c36636ee5e8b174a676b9e0acb9b | 4024384653b61b5af9e1c11ffb575e154025ee47 | refs/heads/master | 2020-03-27T05:53:04.684505 | 2018-08-25T03:03:15 | 2018-08-25T03:03:15 | 146,059,800 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 575 | sci | crout.sci | function [L, U] = crout(A)
n=size(A,1);
U=eye(n,n);
L=zeros(n,n);
// recorro cada fila de la matriz
for (k=1:n)
// armo la matriz L
for (i=k:n)
suma=0;
for (p=1:k-1)
suma=suma+L(i,p)*U(p,k);
end
L(i,k)=A(i,k)-suma;
end
// armo la matriz U
for (j=k+1:n)
suma=0;
for (p=1:k-1)
suma=suma+L(k,p)*U(p,j);
end
U(k,j)=(A(k,j)-suma)/L(k,k);
end
end
endfunction |
c96d140896bba8987c4923d8affb885587c820a4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /62/CH4/EX4.19/ex_4_19.sce | 00f5f044e063f671707ab406027c09eea2375e13 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 633 | sce | ex_4_19.sce | z = %z;
syms n z1;//To find out Inverse z transform z must be linear z = z1
X =z*.5/((z-(1/2))*(z-1))
X1 = denom(X);
zp = roots(X1);
X1 = z1*.5/((z1-(1/2))*(z1-1))
F1 = X1*(z1^(n-1))*(z1-zp(1));
F2 = X1*(z1^(n-1))*(z1-zp(2));
x1 = limit(F1,z1,zp(1));
disp(x1,'x1[n]=')
x2 = limit(F2,z1,zp(2));
disp(x2,'x2[n]=')
x = x1+x2;
disp(x,'x[n]=')
//a) when |z|<.5
n=-10:0;
disp(-x*'u(-n-1)',"when |z|<1/2 x[n]=")
xn=-(1-2^-n);
mprintf('x[n]={....,%.2f,%.2f,%.2f,0}',xn($-3),xn($-2),xn($-1));
//b) when |z|>1
n=0:10;
disp(x*'u(n)',"when |z|>1 x[n]=")
xn=(1-2^-n);
mprintf('x[n]={%.2f,%.2f,%.2f...}',xn(1),xn(2),xn(3)); |
f5398b8d217988c2f4dab65ee4af25492aeb4c0f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3841/CH8/EX8.1/Ex8_1.sce | 5986bfc1e63a81a509b7befa32532fb76e71b484 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 212 | sce | Ex8_1.sce | clear
//given
//find brake mean effective pressure
bhp=150.
D=8.
L=10**0.5
M=5.
N=600.
//substutting bmep
Bmep=1008000*(150./(8.*8.*5.*600.*10**0.5))
printf("\n \n brake mean effective power %.2f psi",Bmep/3.32)
|
356c136fa69ff116a4b166724c9b47f422234731 | 449d555969bfd7befe906877abab098c6e63a0e8 | /257/CH3/EX3.7/example_3_7.sce | d04966cf0a1c1aaf29d6ec57b4d00f0bfca95674 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 75 | sce | example_3_7.sce | syms s t
T=laplace(%e^(-t)*(1-cos(2*t)))
disp(T,"transfer function=") |
8dafcd871a5b1120c0044455c80cd2b9990623c0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /122/CH8/EX8.2/exa8_2.sce | db1afbde981e5020fa28d926c2cee75ad7373c50 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,200 | sce | exa8_2.sce | // Example 8-2
// Computation of Optimal solution 1
clear; clc;
xdel(winsid()); //close all windows
// please edit the path
// cd "";
// exec("plotresp.sci");
s = %s;
G = 1.2 / ( 0.36*s^3+ 1.86*s^2 + 2.5*s + 1);
K = 2.0 : 0.2 : 3.0;
a = 0.5 : 0.2 : 1.5;
t = 0:0.1:5; u = ones(1,length(t));
// lesser points for a rough check
t1 = 0:0.01:5; u1 = ones(1,length(t1));
// more points for a rigorous check
k = 0;
for i = 1:6
for j = 1:6
Gc = K(i) * (s + a(j))^2 / s;
H = G * Gc;
H = syslin('c', H /. 1);
y = csim(u,t,H);
m = max(y);
if m < 1.1 then
y = csim(u1,t1,H);
m = max(y);
if m < 1.1 then
k = k + 1;
solution(k,:) = [K(i) a(j) m];
end
end
end
end
disp(solution,'solution [K a m] = ');
// to sort the matrix
[x O] = gsort(solution(:,3),'r','i');
// re order the matrix
for i = 1:k
sortsolution(i,:) = solution( O(i) , :);
end
disp(sortsolution,'sortsolution [K a m] = ');
// Response with largest overshoot above 10%
x = sortsolution(k,:);
K = x(1); a = x(2);
Gc = K * (s + a)^2 / s;
H = G * Gc;
H = syslin('c', H /. 1);
plotresp(u1,t1,H,'Step Response with 10% overshoot');
disp(Gc,'Gc = ');
disp(H,'H = ');
|
f0a04250cea26ea0f869d7edca50fe8acf86dbf4 | 38b89b84da9fe235f5b3a099bff16349b503cb87 | /filtragem.sce | 64c2be1c62d403164b4ed84c01d564ea8cfff587 | [
"MIT"
] | permissive | matheussfarias/preditoracoes | 744c7d422786a7dc9c52ffee58030b480d9f4e1f | 101b917f5193dcd91037f332eb8dce40d867e739 | refs/heads/master | 2020-08-31T06:37:13.684274 | 2019-10-30T21:15:12 | 2019-10-30T21:15:12 | 218,625,603 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,371 | sce | filtragem.sce | // dados obtidos da ABEV3
x = [1655 1648 1615 1638 1685 1729 1754 1770 1780 1785 1800 1800 1754 1718 1716 1795 1787 1797 1751 1811 1845 1864 1809 1875 1822 1871 1867 1839 1859 1849 1819 1832 1815 1832 1832 1839 1849 1836 1723 1683 1637 1669 1659 1711 1700 1690 1666 1676 1731 1719 1700 1698 1672 1652 1699 1654 1675 1683 1682 1677 1684 1732 1744 1735 1769 1755 1725 1706 1742 1753 1705 1708 1750 1767 1772 1831 1829 1835 1847 1795 1792 1806 1765 1792 1749 1730 1701 1694 1661 1664 1649 1649 1709 1721 1721 1706 1722 1731 1726 1743 1755 1742 1735 1741 1764 1761 1765 1772 1768 1785 1764 1780 1805 1820 1845 1830 1817 1810 1805 1789 1781 1813 1887 1900 1900 1894 1902 1869 1820 1825 1810 1799 1825 1809 1799 1803 1796 1949 1980 2050 2034 2013 2042 2049 2016 2048 2063 2017 2007 1948 1938 1901 1878 1890 1911 1894 1880 1847 1833 1809 1817 1815 1855 1872 1838 1852 1880 1869 1872 1887 1882 1891 1937 1910 1915 1943 1926 1935];
xnovo = x(1:100)
// colocar a pasta dos arquivos
getd("/home/matheus/code/scilab");
Rx3 = comat(x,3);
Rx4 = comat(x,4);
Rx5 = comat(x,5);
u = 2^(-30);
l=5;
N=60;
y = LMSpredict(xnovo,l,u,N)
xplotar = [x x($)*ones(1,l)];
xd = [xnovo zeros(1,l)];
xideal = [x(1:105)]
plot([xd',y, xideal'])
//erro = y'(101:105)-xideal(101:105);
//media = (xideal(101)+xideal(102)+xideal(103)+xideal(104))/5;
//errop = abs(erro/media);
//erromedio = sum(errop)/5
|
2dbaf5cf14ac8b716885ffb94312ea8d999fc2d7 | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3913/CH12/EX12.23/Ex12_23.sce | a895a3b0da15bbf08a381fcdf9a8d7ab9e5a1b51 | [] | 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 | 276 | sce | Ex12_23.sce | //Chapter 12 : Solutions to the Exercises
//Scilab 6.0.1
//Windows 10
clear;
clc;
//Solution for 5.21
A=[1 -1 1 0;1 -1 1 1;0 1 1 -1;0 2 3 -3]
ainv=inv(A)
disp(ainv,'A^-1')
mprintf('(a,b,c,d)=\n')
mprintf(' l1(1,1,0,0)+l2(-1,-1,1,2)+l3(1,-1,1,3)+l4(0,1,-1,-3)')
|
9b68e4d7b69e04e886f3120041c187c00cdeb460 | fce47a4c482ae622563fc72d7643d824cc572edc | /_scilabTP/tp7/statFrance.sce | c5935d11eaac8bb27d6c18e9d7c83b0642fb94ae | [] | no_license | ece2lr/ece2lr.github.io | a57ff8852ef06b7cef1c734106f1badd668ebcb1 | 13479dc224e39521c6c387401b889e62a90a8d0b | refs/heads/master | 2021-01-12T12:07:37.196408 | 2017-12-16T19:25:16 | 2017-12-16T19:25:16 | 72,310,248 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,895 | sce | statFrance.sce | PIB = [2014 , 2013 , 2012 , 2011 , 2010 , 2009 , 2008 , 2007 , 2006 , 2005 , 2004 , 2003 , 2002 , 2001 , 2000 , 1999 , 1998 , 1997 , 1996 , 1995 , 1994 , 1993 , 1992 , 1991 , 1990 , 1989 , 1988 , 1987 , 1986 , 1985 , 1984 , 1983 , 1982 , 1981 , 1980 , 1979 , 1978 , 1977 , 1976 , 1975 , 1974 , 1973 , 1972 , 1971 , 1970 , 1969 , 1968 , 1967 , 1966 , 1965 , 1964 , 1963 , 1962 , 1961 , 1960 , 1959 , 1958 , 1957 , 1956 , 1955 , 1954 , 1953 , 1952 , 1951 , 1950 ; 2060872 , 2057178 , 2043761 , 2040034 , 1998481 , 1959955 , 2019351 , 2015415 , 1968919 , 1923243 , 1892812 , 1841500 , 1826531 , 1806328 , 1771701 , 1705606 , 1649409 , 1592767 , 1556389 , 1535082 , 1503728 , 1469268 , 1478325 , 1455049 , 1440085 , 1399309 , 1340935 , 1280325 , 1248156 , 1219483 , 1200004 , 1181985 , 1167320 , 1138754 , 1126612 , 1108999 , 1070885 , 1029907 , 995547 , 954373 , 963820 , 924161 , 869304 , 831539 , 789343 , 743805 , 694375 , 664566 , 633415 , 601895 , 574123 , 538337 , 506828 , 474389 , 451924 , 418500 , 407637 , 396988 , 376219 , 358329 , 340248 , 322284 , 311509 , 302109 , 285593 ]
// Source : Insee
// Comptes nationaux annuels base 2010 - Produit intérieur brut, approche produit - Total des secteurs institutionnels - Total des produits - Prix chaîné année de base (non équilibré)
chomage = [1975 , 1976 , 1977 , 1978 , 1979 , 1980 , 1981 , 1982 , 1983 , 1984 , 1985 , 1986 , 1987 , 1988 , 1989 , 1990 , 1991 , 1992 , 1993 , 1994 , 1995 , 1996 , 1997 , 1998 , 1999 , 2000 , 2001 , 2002 , 2003 , 2004 , 2005 , 2006 , 2007 , 2008 , 2009 , 2010 , 2011 , 2012 , 2013 , 2014 ; 3.3 , 3.6 , 4.1 , 4.3 , 4.8 , 5.1 , 6.0 , 6.6 , 6.9 , 8.0 , 8.5 , 8.6 , 8.7 , 8.4 , 7.8 , 7.6 , 7.8 , 8.6 , 9.6 , 10.2 , 9.6 , 10.1 , 10.3 , 9.9 , 9.6 , 8.1 , 7.4 , 7.5 , 8.1 , 8.5 , 8.5 , 8.4 , 7.7 , 7.1 , 8.7 , 8.9 , 8.8 , 9.4 , 9.9 , 9.9 ]
|
bf2a9bf41c350c523e56d6ed22395cac33031296 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2216/CH4/EX4.2/ex_4_2.sce | 8bc34fc204ce5a18fcff5713b96ca01fb80bcdca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 206 | sce | ex_4_2.sce | //Example 4.2;//frational power
clc;
clear;
close;
format('v',4)
p01=0.11;//from the graph
p11=0.347;//from the graph
disp(p01*100,"power for LP01 mode is (%) ")
disp(p11*100,"power for LP11 mode is (%)" )
|
b0eb82214b6b832ff2809199fe0586bb546e2220 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1466/CH3/EX3.1/3_1.sce | 70e15357c77bb041e6cf96e46e6eab75f2576364 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 3_1.sce |
clc
//initialisation of variables
ws= 62.4 //lbf/ft^3
V= 300 //gal
P= 20 //lb/in^2
ww= 10 //Lb
w= 62.4 //lb/ft^3
//CALCULATIONS
Ws= (V*ww)/60
Vws= Ws/w
hp= P*144*Vws/550
//RESULTS
printf (' horse power required= %.1f hp ',hp)
|
f49fdd5dd69bb4e1b8e1c09e2db7a8864fda8e57 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2414/CH2/EX2.9/Ex2_9.sce | b945c092edcb8cc19169051ecfc238ce5cf9b443 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,051 | sce | Ex2_9.sce | clc;
clear all;
//page no 54
//problem 2.9
f0=0;
f1=500; //fundamental freq.
f2=1000; f3=1500; //harmonics
//Values from ex 2.4
C=[5 8 6 3]// Values in Volts
//Values from ex 2.5
P=[5 6.4 3.6 .9]; //poweer in watts
clf;
// plot two sided linear amplitude spectrum
fHz=-1510:10^-2:1510; //x-axis matrix
//Y-axis matrix
Cn=[C(1)]
for i=2:4
Cn=[zeros(-500+10^-2:10^-2:0-10^-2) Cn zeros(0+10^-2:10^-2:500-10^-2)]
Cn=[C(i)/2 Cn C(i)/2];
end
Cn=[zeros(-10+10^-2:10^-2:0) Cn zeros(0:10^-2:10-10^-2)]
subplot(211)
plot2d(fHz,Cn,[2],rect=[-2000,0,2000,6])
xtitle('Two-sided Linear amplitude spectrum','f,Hz','Vn(V)')
xgrid
// plot two power spectrum
fHz=-1510:10^-2:1510; //x-axis matrix
//Y-axis matrix
Pn=[P(1)]
for i=2:4
Pn=[zeros(-500+10^-2:10^-2:0-10^-2) Pn zeros(0+10^-2:10^-2:500-10^-2)]
Pn=[P(i)/2 Pn P(i)/2];
end
Pn=[zeros(-10+10^-2:10^-2:0) Pn zeros(0:10^-2:10-10^-2)]
subplot(212)
plot2d(fHz,Pn,[6],rect=[-2000,0,2000,6])
xtitle('Two-sided power] spectrum','f,Hz','Pn(W)')
xgrid
|
2988ddfb3da100fafc876589a2bbe20aab832bb6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1484/CH10/EX10.2/10_2.sce | b914462983ca7fd4682bbef734417696484bf4bb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 300 | sce | 10_2.sce | clc
//initialisation of variables
s= 13.6
h= 12 //in
u= 0.04
k= 1
d= 6 //in
g= 32.2 //ft/sec^2
w= 62.4 //lbs/ft^3
//CALCULATIONS
h1= h*(s-1)/12
hf= u*h1
hn= h1-hf
Q= k*(%pi*(d/12)^2)*sqrt(2*g)*sqrt(hn)*w*60/(10*4*sqrt(15))
//RESULTS
printf ('discharge through flow= %.f ft G.P.M',Q)
|
ae9ffddbed251cd56f3aef8ca3a2c6a7e4ed9ae7 | b0ad6d728d3820b03751eab240331dd6ca86ae7e | /RestEyesClosed.sce | 7b976b5105a54c5f4564a5cd519669af7faa94c5 | [
"MIT"
] | permissive | br-bieegl/szAMPexperiment | e354cb59cea9a794725618b0a6aefa3a9c681cca | 02ceb4a50286342c3fa8d449b30c6678cadbfa85 | refs/heads/main | 2023-04-07T17:36:08.091116 | 2021-04-15T20:46:29 | 2021-04-15T20:46:29 | 358,362,424 | 1 | 0 | null | 2021-04-15T19:02:18 | 2021-04-15T18:55:30 | null | UTF-8 | Scilab | false | false | 1,089 | sce | RestEyesClosed.sce | scenario = "szAMP_resting_eyes_closed";
no_logfile = false;
default_background_color = 0,0,0;
pulse_width = 10;
write_codes = true;
default_trial_type = fixed;
begin;
picture { text { caption = "+";
font_size = 36;
font_color = 255,255,255;
};
x = 0; y = 0;} default;
trial {
stimulus_event{
nothing{};
time = 10;
duration = 1500;
code = "start recording";
port_code=254;
};
}startRecording;
trial {
stimulus_event{
nothing{};
time = 1000;
code = "rest eyes closed";
port_code=24;
};
}rest;
trial {
stimulus_event{
nothing{};
time = 1500;
duration = 20;
code = "end recording";
port_code=255;
};
}endRecording;
####PCL####
begin_pcl;
int i = 1;
startRecording.present();
wait_interval(1500);
loop
until
#As many seconds of rest as specified below
i > 180
begin
i = i+1;
rest.present();
end;
wait_interval(1500);
endRecording.present();
|
fe8151af3f25faeea7404fac0445dc124eb62872 | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/BCK/Scripts/topoview.SCI | 7c36bdc13d8b6d98add143038ca7d52c49454e00 | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | UTF-8 | Scilab | false | false | 1,448 | sci | topoview.SCI | codeblock readtextfile(ScriptDir+"\TOOLS.sci");
sf=T_scene_create;
sss=T_getscene;
myviewport=T_getviewport;
sss.ambientlightcolor=color(0.05,0.05,0.05);
rootframe=sss.Universe;
rootframe.add("sphere","radius":0.1);
rootframe.add("sphere","radius":0.1,"position":point(1,0,0),"color":color(1,0,0));
rootframe.add("sphere","radius":0.1,"position":point(0,1,0),"color":color(0,1,0));
rootframe.add("sphere","radius":0.1,"position":point(0,0,1),"color":color(0,0,1));
surf=rootframe.add("Surface","color":color(1,1,1));
surf.canbuffer=true;
#surf.CalculateEdges=false;
#surf.renderback=true;
#tx=rootframe.createtexture("mars",DataDir+"\textures\mars3.jpg");
#surf.texture=tx.name;
#break;
topo=matrix;
if false then {
filename=DataDir+"\topo\Mars_Topo_04.img";
topo.LoadFile(filename,
360*4,0,-1,
180*4,0,-1,
2);
}
if true then {
filename=DataDir+"\topo\Mars_Topo_16.img";
topo.LoadFile(filename,
360*16,1000,1200,
180*16,1000,1100,
2);
}
if false then {
filename=DataDir+"\topo\Mars_Topo_32.img";
topo.LoadFile(filename,
360*32,1000,3000,
180*32,1000,2000,
2);
}
#surf.CreateTopoSphere(topo,
# -0.25*Pi,0.25*Pi,
# -0.25*Pi,0.25*Pi,
# 0.000002,1);
surf.CreateTopoSurface(topo,
-0.5,0.5,
-0.5,0.5,
0.0000025);
surf.GenerateVertexProperty(functor("color(0.5-10*p.z,0.5-10*p.z,0.5+10*p.z)","p"),VertexPropertyColor);
while true do {
render;
}
|
16601c9a37db7f3742f9d12d31dd0eaf306ab1ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /2891/CH1/EX1.25/Ex1_25.sce | a4872165cf4f9e24751e2c94186fb39d513f5078 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | Ex1_25.sce | // Exa 1.25
clc;
clear;
close;
// given :
A_1=%i*6 // complex number A_1
A_2=1-%i*2 // complex number A_2
A=A_1-A_2
disp(A,"difference of complex numbers A_1 and A_2:")
|
614fbc90ac7bc2005e1924c6df464e9461af0c20 | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH13/EX13.5/example13_5.sce | 7c30bc4ca35081221ee893c3120df17050fe9e45 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 427 | sce | example13_5.sce | clear;
clc;
//Example13.5[The Crossed-Strings Method for View Factors]
a=12,b=5;//With od long parallel plates[cm]
c=6;//Distance between the plates
L1=a,L2=b,L3=c;
L4=sqrt((7^2)+(6^2));
L5=sqrt((5^2)+(6^2));
L6=sqrt((12^2)+(6^2));
F12_1=((L5+L6)-(L3+L4))/(2*L1);
F13=(L1+L3-L6)/(2*L1);
F14=(L1+L4+L5)/(2*L1);
F12_2=1-F13-F14;
disp(F12_1,"Therefore from two different methods F12_1=F12_2=",F13,"F13=",F14,"F14=") |
deeb65c414c0304bccd309fac496e1870d48c4db | 449d555969bfd7befe906877abab098c6e63a0e8 | /2087/CH14/EX14.22/example14_22.sce | 82afafa462bb965458b08b797e212e4d3cba3d7f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 433 | sce | example14_22.sce |
//example14.22
//calculate bed width and floor depth
clc;funcprot(0);
//given
Q=30; //discharge
V=1; //velocity of flow
A=Q/V;
//perimeter of section=30/D-D/2
//taking its derivative w.r.t to D
D=1/((1.914/30)^0.5);
//from equation of area
B=30/D-D/2;
B=round(B*10)/10;
D=round(D*100)/100;
mprintf("Width of channel section=%f m.",B);
mprintf("\nDepth of channel section=%f m.",D);
|
9d848fb8d35493ba570ee96d8c4994f443bdcf05 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/CONT/CT29HRN/ATWM1_Working_Memory_MEG_CT29HRN_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce | 0d8020653392c72955895049e882a2bd09b3ee03 | [] | 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 | 48,615 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Uncued_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 = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; 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 = 369; width = 369; color = 42, 42, 42;} 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;
44 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_073 gabor_093 gabor_163 gabor_179 gabor_073_alt gabor_093_alt gabor_163 gabor_179 "1_1_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_073_093_163_179_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_131_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_180 gabor_026 gabor_136 gabor_063 gabor_180_alt gabor_026 gabor_136 gabor_063_alt "1_2_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_180_026_136_063_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_136_framed gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_002 gabor_108 gabor_023 gabor_043 gabor_002_alt gabor_108 gabor_023 gabor_043_alt "1_3_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_002_108_023_043_target_position_2_3_retrieval_position_2" gabor_circ gabor_062_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1842 2992 1942 fixation_cross gabor_100 gabor_175 gabor_060 gabor_023 gabor_100_alt gabor_175 gabor_060_alt gabor_023 "1_4_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_100_175_060_023_target_position_2_4_retrieval_position_1" gabor_100_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_100_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_081 gabor_146 gabor_170 gabor_024 gabor_081 gabor_146 gabor_170_alt gabor_024_alt "1_5_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_081_146_170_024_target_position_1_2_retrieval_position_1" gabor_081_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2242 fixation_cross gabor_118 gabor_061 gabor_179 gabor_102 gabor_118_alt gabor_061_alt gabor_179 gabor_102 "1_6_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2250_gabor_patch_orientation_118_061_179_102_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_102_framed blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_175 gabor_034 gabor_001 gabor_119 gabor_175_alt gabor_034 gabor_001 gabor_119_alt "1_7_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_175_034_001_119_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_001_framed gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_037 gabor_117 gabor_169 gabor_060 gabor_037 gabor_117_alt gabor_169_alt gabor_060 "1_8_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_037_117_169_060_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_060_framed blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2592 fixation_cross gabor_006 gabor_135 gabor_087 gabor_166 gabor_006 gabor_135_alt gabor_087_alt gabor_166 "1_9_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_006_135_087_166_target_position_1_4_retrieval_position_1" gabor_006_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2342 fixation_cross gabor_077 gabor_118 gabor_043 gabor_163 gabor_077_alt gabor_118 gabor_043 gabor_163_alt "1_10_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_077_118_043_163_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 1892 fixation_cross gabor_073 gabor_163 gabor_009 gabor_089 gabor_073 gabor_163_alt gabor_009_alt gabor_089 "1_11_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_073_163_009_089_target_position_1_4_retrieval_position_1" gabor_118_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 1892 fixation_cross gabor_044 gabor_155 gabor_120 gabor_013 gabor_044 gabor_155_alt gabor_120 gabor_013_alt "1_12_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_044_155_120_013_target_position_1_3_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1742 2992 1992 fixation_cross gabor_094 gabor_152 gabor_109 gabor_175 gabor_094_alt gabor_152_alt gabor_109 gabor_175 "1_13_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2000_gabor_patch_orientation_094_152_109_175_target_position_3_4_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_045_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2292 fixation_cross gabor_099 gabor_143 gabor_120 gabor_015 gabor_099 gabor_143_alt gabor_120 gabor_015_alt "1_14_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_099_143_120_015_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_120_framed gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_048 gabor_177 gabor_091 gabor_063 gabor_048_alt gabor_177 gabor_091 gabor_063_alt "1_15_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_048_177_091_063_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_138_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1742 2992 2042 fixation_cross gabor_179 gabor_040 gabor_149 gabor_068 gabor_179 gabor_040_alt gabor_149_alt gabor_068 "1_16_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2050_gabor_patch_orientation_179_040_149_068_target_position_1_4_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_090_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2092 fixation_cross gabor_126 gabor_043 gabor_012 gabor_170 gabor_126 gabor_043_alt gabor_012 gabor_170_alt "1_17_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_126_043_012_170_target_position_1_3_retrieval_position_1" gabor_126_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_178 gabor_070 gabor_040 gabor_112 gabor_178 gabor_070_alt gabor_040_alt gabor_112 "1_18_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_178_070_040_112_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_160_framed blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2242 2992 2142 fixation_cross gabor_151 gabor_107 gabor_135 gabor_169 gabor_151 gabor_107_alt gabor_135 gabor_169_alt "1_19_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2150_gabor_patch_orientation_151_107_135_169_target_position_1_3_retrieval_position_2" gabor_circ gabor_062_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_062_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2142 fixation_cross gabor_110 gabor_151 gabor_046 gabor_088 gabor_110_alt gabor_151 gabor_046_alt gabor_088 "1_20_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_110_151_046_088_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_134_framed blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_134_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2192 fixation_cross gabor_039 gabor_153 gabor_115 gabor_096 gabor_039 gabor_153_alt gabor_115 gabor_096_alt "1_21_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_039_153_115_096_target_position_1_3_retrieval_position_1" gabor_174_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2342 fixation_cross gabor_063 gabor_019 gabor_151 gabor_133 gabor_063 gabor_019_alt gabor_151_alt gabor_133 "1_22_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_063_019_151_133_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_133_framed blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2092 fixation_cross gabor_071 gabor_091 gabor_042 gabor_002 gabor_071 gabor_091_alt gabor_042 gabor_002_alt "1_23_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_071_091_042_002_target_position_1_3_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_175 gabor_141 gabor_018 gabor_106 gabor_175_alt gabor_141 gabor_018_alt gabor_106 "1_24_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_175_141_018_106_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_057_framed blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1842 2992 2242 fixation_cross gabor_129 gabor_149 gabor_042 gabor_018 gabor_129 gabor_149_alt gabor_042 gabor_018_alt "1_25_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2250_gabor_patch_orientation_129_149_042_018_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_064_framed blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_064_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2592 fixation_cross gabor_165 gabor_135 gabor_110 gabor_084 gabor_165 gabor_135_alt gabor_110 gabor_084_alt "1_26_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2600_gabor_patch_orientation_165_135_110_084_target_position_1_3_retrieval_position_1" gabor_028_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2292 fixation_cross gabor_093 gabor_067 gabor_133 gabor_044 gabor_093_alt gabor_067 gabor_133 gabor_044_alt "1_27_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_093_067_133_044_target_position_2_3_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2042 fixation_cross gabor_011 gabor_126 gabor_149 gabor_165 gabor_011 gabor_126_alt gabor_149_alt gabor_165 "1_28_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_011_126_149_165_target_position_1_4_retrieval_position_1" gabor_011_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_033 gabor_101 gabor_054 gabor_172 gabor_033_alt gabor_101 gabor_054_alt gabor_172 "1_29_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_033_101_054_172_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2292 fixation_cross gabor_092 gabor_145 gabor_005 gabor_124 gabor_092_alt gabor_145_alt gabor_005 gabor_124 "1_30_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_092_145_005_124_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_075_framed blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2592 fixation_cross gabor_176 gabor_090 gabor_118 gabor_134 gabor_176_alt gabor_090 gabor_118 gabor_134_alt "1_31_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_176_090_118_134_target_position_2_3_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1842 2992 2492 fixation_cross gabor_152 gabor_134 gabor_063 gabor_017 gabor_152_alt gabor_134_alt gabor_063 gabor_017 "1_32_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2500_gabor_patch_orientation_152_134_063_017_target_position_3_4_retrieval_position_1" gabor_152_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_152_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_042 gabor_090 gabor_018 gabor_057 gabor_042 gabor_090_alt gabor_018 gabor_057_alt "1_33_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_042_090_018_057_target_position_1_3_retrieval_position_1" gabor_042_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_042_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2192 2992 2442 fixation_cross gabor_154 gabor_043 gabor_121 gabor_088 gabor_154 gabor_043_alt gabor_121_alt gabor_088 "1_34_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_154_043_121_088_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_121_framed gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_121_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_172 gabor_115 gabor_046 gabor_096 gabor_172 gabor_115 gabor_046_alt gabor_096_alt "1_35_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_172_115_046_096_target_position_1_2_retrieval_position_2" gabor_circ gabor_115_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_115_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_021 gabor_149 gabor_174 gabor_104 gabor_021_alt gabor_149_alt gabor_174 gabor_104 "1_36_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_021_149_174_104_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_104_framed blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 2542 fixation_cross gabor_102 gabor_176 gabor_045 gabor_062 gabor_102 gabor_176 gabor_045_alt gabor_062_alt "1_37_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_102_176_045_062_target_position_1_2_retrieval_position_1" gabor_151_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_151_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_052 gabor_106 gabor_142 gabor_169 gabor_052_alt gabor_106 gabor_142_alt gabor_169 "1_38_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_052_106_142_169_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_123_framed blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1892 2992 2392 fixation_cross gabor_087 gabor_172 gabor_042 gabor_017 gabor_087 gabor_172_alt gabor_042 gabor_017_alt "1_39_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2400_gabor_patch_orientation_087_172_042_017_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_017_framed blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_017_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_103 gabor_013 gabor_034 gabor_139 gabor_103 gabor_013_alt gabor_034 gabor_139_alt "1_40_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_103_013_034_139_target_position_1_3_retrieval_position_1" gabor_103_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_103_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2392 fixation_cross gabor_103 gabor_070 gabor_157 gabor_127 gabor_103 gabor_070_alt gabor_157 gabor_127_alt "1_41_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2400_gabor_patch_orientation_103_070_157_127_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_157_framed gabor_circ blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_157_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2442 fixation_cross gabor_093 gabor_004 gabor_021 gabor_051 gabor_093_alt gabor_004 gabor_021 gabor_051_alt "1_42_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_093_004_021_051_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_021_framed gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_062 gabor_013 gabor_084 gabor_125 gabor_062_alt gabor_013 gabor_084 gabor_125_alt "1_43_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_062_013_084_125_target_position_2_3_retrieval_position_2" gabor_circ gabor_149_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_032 gabor_120 gabor_079 gabor_051 gabor_032_alt gabor_120_alt gabor_079 gabor_051 "1_44_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_032_120_079_051_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_051_framed blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_051_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 2492 fixation_cross gabor_029 gabor_001 gabor_085 gabor_134 gabor_029 gabor_001_alt gabor_085_alt gabor_134 "1_45_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_029_001_085_134_target_position_1_4_retrieval_position_1" gabor_029_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_035 gabor_052 gabor_008 gabor_167 gabor_035 gabor_052_alt gabor_008_alt gabor_167 "1_46_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_035_052_008_167_target_position_1_4_retrieval_position_1" gabor_083_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2092 fixation_cross gabor_169 gabor_041 gabor_104 gabor_063 gabor_169 gabor_041 gabor_104_alt gabor_063_alt "1_47_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_169_041_104_063_target_position_1_2_retrieval_position_2" gabor_circ gabor_041_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1792 2992 1892 fixation_cross gabor_073 gabor_095 gabor_151 gabor_033 gabor_073 gabor_095 gabor_151_alt gabor_033_alt "1_48_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_1900_gabor_patch_orientation_073_095_151_033_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_016_framed gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_016_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_124 gabor_103 gabor_145 gabor_180 gabor_124 gabor_103 gabor_145_alt gabor_180_alt "1_49_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_124_103_145_180_target_position_1_2_retrieval_position_1" gabor_074_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 1942 fixation_cross gabor_109 gabor_128 gabor_044 gabor_172 gabor_109_alt gabor_128_alt gabor_044 gabor_172 "1_50_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_109_128_044_172_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_093_framed gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_093_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 2592 fixation_cross gabor_080 gabor_169 gabor_143 gabor_010 gabor_080 gabor_169_alt gabor_143 gabor_010_alt "1_51_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_080_169_143_010_target_position_1_3_retrieval_position_1" gabor_125_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2142 fixation_cross gabor_065 gabor_123 gabor_081 gabor_014 gabor_065_alt gabor_123 gabor_081 gabor_014_alt "1_52_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_065_123_081_014_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_081_framed gabor_circ blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1842 2992 1942 fixation_cross gabor_168 gabor_151 gabor_012 gabor_033 gabor_168_alt gabor_151 gabor_012 gabor_033_alt "1_53_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_168_151_012_033_target_position_2_3_retrieval_position_1" gabor_122_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_122_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2542 fixation_cross gabor_035 gabor_170 gabor_151 gabor_064 gabor_035_alt gabor_170_alt gabor_151 gabor_064 "1_54_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2550_gabor_patch_orientation_035_170_151_064_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_064_framed blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_162 gabor_013 gabor_050 gabor_077 gabor_162_alt gabor_013_alt gabor_050 gabor_077 "1_55_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_162_013_050_077_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_100_framed gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_100_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1792 2992 2342 fixation_cross gabor_064 gabor_107 gabor_137 gabor_082 gabor_064 gabor_107_alt gabor_137_alt gabor_082 "1_56_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2350_gabor_patch_orientation_064_107_137_082_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_137_framed gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_137_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_171 gabor_087 gabor_024 gabor_052 gabor_171_alt gabor_087 gabor_024_alt gabor_052 "1_57_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_171_087_024_052_target_position_2_4_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_113 gabor_071 gabor_147 gabor_025 gabor_113_alt gabor_071 gabor_147 gabor_025_alt "1_58_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_113_071_147_025_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_097_framed gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1992 2992 2242 fixation_cross gabor_148 gabor_018 gabor_074 gabor_037 gabor_148_alt gabor_018 gabor_074 gabor_037_alt "1_59_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_2250_gabor_patch_orientation_148_018_074_037_target_position_2_3_retrieval_position_1" gabor_101_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_101_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_087 gabor_167 gabor_122 gabor_011 gabor_087 gabor_167 gabor_122_alt gabor_011_alt "1_60_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_087_167_122_011_target_position_1_2_retrieval_position_1" gabor_037_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2192 fixation_cross gabor_146 gabor_162 gabor_034 gabor_102 gabor_146 gabor_162_alt gabor_034 gabor_102_alt "1_61_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_146_162_034_102_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_084_framed gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_014 gabor_061 gabor_128 gabor_041 gabor_014_alt gabor_061_alt gabor_128 gabor_041 "1_62_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_014_061_128_041_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_086_framed blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2042 fixation_cross gabor_080 gabor_049 gabor_027 gabor_009 gabor_080_alt gabor_049 gabor_027 gabor_009_alt "1_63_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_080_049_027_009_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_027_framed gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1792 2992 2392 fixation_cross gabor_041 gabor_158 gabor_024 gabor_089 gabor_041 gabor_158_alt gabor_024_alt gabor_089 "1_64_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2400_gabor_patch_orientation_041_158_024_089_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_024_framed gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_024_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_013 gabor_160 gabor_145 gabor_084 gabor_013 gabor_160_alt gabor_145_alt gabor_084 "1_65_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_013_160_145_084_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_037_framed blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2542 fixation_cross gabor_143 gabor_055 gabor_017 gabor_173 gabor_143 gabor_055 gabor_017_alt gabor_173_alt "1_66_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2550_gabor_patch_orientation_143_055_017_173_target_position_1_2_retrieval_position_1" gabor_095_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2392 fixation_cross gabor_057 gabor_166 gabor_144 gabor_079 gabor_057 gabor_166_alt gabor_144_alt gabor_079 "1_67_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_057_166_144_079_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2492 fixation_cross gabor_028 gabor_160 gabor_138 gabor_117 gabor_028 gabor_160_alt gabor_138_alt gabor_117 "1_68_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_028_160_138_117_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_117_framed blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_159 gabor_086 gabor_105 gabor_070 gabor_159 gabor_086_alt gabor_105 gabor_070_alt "1_69_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_159_086_105_070_target_position_1_3_retrieval_position_1" gabor_159_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1892 2992 2442 fixation_cross gabor_034 gabor_141 gabor_065 gabor_111 gabor_034 gabor_141_alt gabor_065 gabor_111_alt "1_70_Encoding_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_034_141_065_111_target_position_1_3_retrieval_position_2" gabor_circ gabor_141_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P8_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_141_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# 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;
}; |
d604eea62f8acd6ed0e87a6f03c876e0b5ab4621 | 449d555969bfd7befe906877abab098c6e63a0e8 | /842/CH7/EX7.5/Example7_5.sce | a3e7534fdd4db6515655a867262afe1e80d85ba4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,542 | sce | Example7_5.sce | //clear//
//Example7.5:Multirate Signal Processing:Sampling Rate Conversion
//(1)Downsampling by 4
//(2)Upsampling by 2
//(3)Upsampling by 2 and followed by downsampling by 9
clear;
close;
clc;
Wm = 2*%pi/9;//Maximum frequency of signal
Ws = 2*Wm; //Sampling frequency
N = floor(2*%pi/Ws);//period of discrete signal
//Original discrete time signal generation and Magnitude response
n = 0:0.01:N;
x = sin(Wm*n);
Wmax = 2*%pi/9;
K = 4;
k = 0:(K/1000):K;
W = k*Wmax/K;
XW = x* exp(-sqrt(-1)*n'*W);
XW_Mag = real(XW);
XW_Mag = XW_Mag/max(XW_Mag);
W = [-mtlb_fliplr(W), W(2:1001)]; // Omega from -Wmax to Wmax
XW_Mag = [mtlb_fliplr(XW_Mag), XW_Mag(2:1001)];
//(1)downsampling by 4 and corresponding magnitude response
n1 = 0:0.01:N/4;
y = x(1:4:length(x));
k1 = 0:(K/2000):K;
W1 = k1*4*Wmax/K;
XW4 = y* exp(-sqrt(-1)*n1'*W1);
XW4_Mag = real(XW4);
XW4_Mag = XW4_Mag/max(XW4_Mag);
W1 = [-mtlb_fliplr(W1), W1(2:$)]; // Omega from -Wmax to Wmax
XW4_Mag = [mtlb_fliplr(XW4_Mag), XW4_Mag(2:$)];
//(2)Upsampling by 2 and corresponding magnitude response
n2 = 0:0.01:2*N;
z = zeros(1,length(n2));
z([1:2:length(z)]) = x;
k2 = 0:(K/500):K;
W2 = k2*Wmax/(2*K);
XW2 = z* exp(-sqrt(-1)*n2'*W2);
XW2_Mag = real(XW2);
XW2_Mag = XW2_Mag/max(XW2_Mag);
W2 = [-mtlb_fliplr(W2), W2(2:$)]; // Omega from -Wmax to Wmax
XW2_Mag = [mtlb_fliplr(XW2_Mag), XW2_Mag(2:$)];
//(3)Upsampling by 2 and Downsampling by 9 corresponding magnitude response
n3 = 0:0.01:2*N/9;
g = z([1:9:length(z)]);
k3 = 0:K/(9*500):K;
W3 = k3*9*Wmax/(2*K);
XW3 = g* exp(-sqrt(-1)*n3'*W3);
XW3_Mag = real(XW3);
XW3_Mag = XW3_Mag/max(XW3_Mag);
W3 = [-mtlb_fliplr(W3), W3(2:$)]; // Omega from -Wmax to Wmax
XW3_Mag = [mtlb_fliplr(XW3_Mag), XW3_Mag(2:$)];
//
figure
subplot(2,2,1)
a = gca();
a.y_location ="origin";
a.x_location ="origin";
a.data_bounds =[-%pi,0;%pi,1.5];
plot2d(W,XW_Mag,5);
title('Spectrum of Discrete Signal X(exp(jW))')
subplot(2,2,2)
a = gca();
a.y_location ="origin";
a.x_location ="origin";
a.data_bounds =[-%pi,0;%pi,1.5];
plot2d(W1,XW4_Mag,5);
title('Spectrum of downsampled signal by 4 X(exp(jW/4))')
subplot(2,2,3)
a = gca();
a.y_location ="origin";
a.x_location ="origin";
a.data_bounds =[-%pi,0;%pi,1.5];
plot2d(W2,XW2_Mag,5);
title('Spectrum of Upsampled signal by 2 X(exp(2jW))')
subplot(2,2,4)
a = gca();
a.y_location ="origin";
a.x_location ="origin";
a.data_bounds =[-%pi,0;%pi,1.5];
plot2d(W3,XW3_Mag,5);
title('Spectrum of Upsampled by 2 and Downsampled by 9 X(exp(2jW/9))')
|
dad7ac6f6f313985143a61fc2ca537515c5b7f99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2045/CH7/EX7.7/Ex7_7.sce | e1cdc7cf3595db56ccc674e6a51aecfd4ad88c7e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 165 | sce | Ex7_7.sce | //pagenumber 7 example 7
clear
idss=1*10^-3;//ampere
pinvol=-5;//volt
tracon=(2*idss)/abs(pinvol);
disp("max transconductance = "+string((tracon))+"mho");
|
2e6e6c31b4a94f88c2c95a27bf12d03ce7527df4 | 1489f5f3f467ff75c3223c5c1defb60ccb55df3d | /tests/test_cache_3_c.tst | 4cefc7c957ec5f1673b53a29e59cfb864f5860a8 | [
"MIT"
] | permissive | ciyam/ciyam | 8e078673340b43f04e7b0d6ac81740b6cf3d78d0 | 935df95387fb140487d2e0053fabf612b0d3f9e2 | refs/heads/master | 2023-08-31T11:03:25.835641 | 2023-08-31T04:31:22 | 2023-08-31T04:31:22 | 3,124,021 | 18 | 16 | null | 2017-01-28T16:22:57 | 2012-01-07T10:55:14 | C++ | UTF-8 | Scilab | false | false | 532 | tst | test_cache_3_c.tst | total_physical_store_count = 0
total_physical_fetch_count = 65536
<cache info>
items cached: 65536/65536
regions in use: 1/1
items per region: 65536
counter: 32768
temp_read_num: 65535
temp_write_num: -1
item_req_count = 65536
item_hit_count = 0
item hit ratio = 0%
<cache region: 0-65535>
item_cost: 65536
flush_cost: 0
counter_total: 1073741824
most_recently_used: 65535
least_recently_used: 0
most_recently_changed: -1
least_recently_changed: -1
most_recently_unchanged: 65535
least_recently_unchanged: 0
|
65af7c0955aa5ae9dcd1e1c469802a11b881e0e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /122/CH7/EX7.26.2/exa7_26_2.sce | 64f5f41766bcd5981d4622f4d582d0d3e3058397 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 767 | sce | exa7_26_2.sce | // Example 7-26-2
// Evaluating Lead compensated system
clear; clc;
xdel(winsid()); //close all windows
// please edit the path
// cd "/<your code directory>/";
// exec("plotresp.sci");
s = %s;
G = 4 / (s * (s + 2));
Kc = 42.104125;
z = 4.3861167;
p = 18.467361;
Gc = Kc * (s + z)/(s + p);
GGc = G*Gc;
H = syslin('c',G /. 1);
Hc = syslin('c',GGc /. 1);
t = 0:0.05:5;
u1 = ones(1,length(t)); //step response
u2 = t; //ramp response
subplot(2,1,1);plotresp(u1,t,H,'');
plotresp(u1,t,Hc,'Unit step response');
xstring(0.65,0.55,'uncompensated system');
xstring(0.1,1.2,'compensated system');
subplot(2,1,2);plotresp(u2,t,H,'');
plotresp(u2,t,Hc,'Unit ramp response');
xstring(3.0,2.0,'uncompensated system');
xstring(0,0.5,'compensated system'); |
d9c53b969af84f34cc6514e349a6798f46b86262 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3392/CH9/EX9.10/Ex9_10.sce | d61b5d7bc177ce3a3498eec40714dceefb78053a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 494 | sce | Ex9_10.sce | clc
// initialization of variables
clear
P=11.2 //kN
E=200 //GPa
v=0.3
Ix=181.7e+03 //mm^4
k1=0.643
b1=34.7 //mm
h1=10 //mm
b2=40 //mm
h2=10 //mm
t=10 //mm
h=50 //mm
E=E*10^3
A=b1*h1+b2*h2
R=(b1*h1*35+b2*h2*60)/A
Am=b1*log(40/30)+h1*log(80/40)
G=E/(2*(1+v))
Aw=t*h
P=P*10^3
delta_P=2*P*100/(Aw*G) + 2*P/(E*3*Ix)*100^3 + P*48.4*%pi/(2*Aw*G) + P*48.4*%pi/(2*A*E) + P*16.9/(A*(48.4*16.9-A)*E)*(100^2*%pi+%pi/2*(48.4)^2+2*100*2*48.4)
printf('seperation = %.3f mm',delta_P)
|
84d832761b060dfa54dc6f7b03efdad93bf7f8f2 | c565d26060d56f516d954d4b378b8699c31a71ef | /Step-test_manual/ser_init.sce | ba6305faf550addf14bdfd6e9234a2cba5186089 | [] | no_license | rupakrokade/sbhs-manual | 26d6e458c5d6aaba858c3cb2d07ff646d90645ce | 5aad4829d5ba1cdf9cc62d72f794fab2b56dd786 | refs/heads/master | 2021-01-23T06:25:53.904684 | 2015-10-24T11:57:04 | 2015-10-24T11:57:04 | 5,258,478 | 0 | 0 | null | 2012-11-16T11:45:07 | 2012-08-01T11:36:17 | Scilab | UTF-8 | Scilab | false | false | 389 | sce | ser_init.sce | // To load the serial toolbox and open the serial port
exec loader.sce
handl = openserial(4,"9600,n,8")
//the order is : port number,"baud,parity,databits,stopbits"
// here 9 is the port number
// In the case of SBHS, stop bits = 0, so it is not specified in the function here
// Linux users should give this as ("/","9600,n,8,0")
if (ascii(handl) ~= [])
disp("COM Port Opened");
end
|
55ac87ac3c833edaa52f54bcfb5df050a693686a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1553/CH10/EX10.16/10Ex16.sce | 9b6a988d01b2dfe83ea1d2bd6b0ce384bb14fbaa | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 319 | sce | 10Ex16.sce | //chapter 10 Ex 16
clc;
clear;
close;
JtoW=40/100; JtoS=20/100; amtRemain=12000; amtRemainPercent=1-JtoW;
//let initial amount be x
amtJtoS=3*JtoS*amtRemainPercent;
bal=amtRemainPercent-amtJtoS;
amtBank=(1/2)*bal;
initialAmt=amtRemain/amtBank;
mprintf("Mr. Jones initially had Rs.%d with him",initialAmt);
|
76e95438add0368afd2eefd6a4e166167ecf366a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3428/CH12/EX6.12.15/Ex6_12_15.sce | 0013ce673da94577c12f6b628b148bd08e1fa0c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 343 | sce | Ex6_12_15.sce | //Section-6,Example-7,Page no.-P.49
//To calculate the freezing point of the given aqueous solution.
clc;
T_bbar=373
T_fbar=273
T_b=373.1
dl_H=1 //(let) dl_H=(dl_Hvap./dl_Hfus.)
dl_Tb=(T_b-T_bbar)
dl_Tf=dl_Tb*((T_fbar)^2/(T_bbar)^2)*dl_H
disp(dl_Tf,' Freezing point of the given aqueous solution')
//dl_Tf=dl_Tf*(dl_Hvap./dl_Hfus.)
|
a1164263f08e214295a0f57a502c51fea3ece852 | 658c828385a16a316f887bded6ae3cbc95459d94 | /MAS_Project/project.sce | fceaa91e61696ceb996476ee5adfa6f67400683e | [] | no_license | jacobottalam/COMP575_F2017 | 69033fda2319d75c5b93613722719544a7861686 | aef9507569f13c2912a6098655566baa6842239e | refs/heads/master | 2021-08-30T04:14:48.036193 | 2017-12-16T00:27:30 | 2017-12-16T00:27:30 | 104,828,273 | 0 | 0 | null | 2017-09-26T02:53:26 | 2017-09-26T02:53:26 | null | UTF-8 | Scilab | false | false | 689 | sce | project.sce | clear;
vel3=[174.19,269.04,341.3,398.84,927.48,931.78,1259.05,1375.94,1644.78,1832.39,2693.58,2788.35,2804.88,3268.98];
vel2=[64.15,327.2,510.33,1017.39,1597.37,1702,1714.08,1972.12,2298.67,2407.49,2892.19,3084.13];
vel1=[1140.71,1470.21,1755.45,1863.03,2689.2];
figure(1);
bar(vel1,.1,"yellow");
xtitle("Graph of Targets Collected at Velocity 0.1");
xlabel("Targets Collected");
ylabel("ROS Time");
figure(2);
bar(vel2,.1,"red");
xtitle("Graph of Targets Collected at Velocity 0.2");
xlabel("Targets Collected");
ylabel("ROS Time");
figure(3);
bar(vel3,.1,"green");
xtitle("Graph of Targets Collected at Velocity 0.3");
xlabel("Targets Collected");
ylabel("ROS Time");
|
5aeffa78e65152249b9521b65b39db50faeb97f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /887/CH11/EX11.11/11_11.sce | 15a092da254c319602a9e81228a5f2358dbc850b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 478 | sce | 11_11.sce | clc
//ex11.11
A_d=1000; //differential gain
V_d_peak=1*10^-3; //peak value of differential input signal
V_o_peak=A_d*V_d_peak; //peak output signal
V_cm=100;
V_o_cm=0.01*V_o_peak; //common mode contribution is 1% or less
A_cm=V_o_cm/V_cm; //common mode gain
CMRR=20*log(A_d/A_cm)/2.30258;
printf(" All the values in the textbook are approximated, hence the values in this code differ from those of Textbook")
disp(CMRR,'The minimum CMRR is')
|
6badc2a41d907dfc79306269007993f1de756b1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3885/CH3/EX3.9/Ex3_9.sci | 6b421b145c76d36eb0b6ed9d9455c45ced01d792 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,238 | sci | Ex3_9.sci | //control systems by Nagoor Kani A
//Edition 3
//Year of publication 2015
//Scilab version 6.0.0
//operating systems windows 10
// Example 3.9
clc;
clear;
s=poly(0,'s')
// the input is 12 unit step signal
h=syslin('c',10/(s^2+2*s+10))
disp(h,'the closed loop transfer function')
//standard form od second order system is w^2/s^2+2*zeta*w*s+w^2
//compaing h with the standard form
w=3.162//natural frequency of oscillation
disp(w,'natural frequency of oscillation in rad/sec')
zeta=2/(2*w)
disp(zeta,' damping ratio is')
mp=exp((-zeta*%pi)/sqrt(1-(zeta)^2))*100//percentage peak overshoot
disp(mp,'percentage peak overshoot in percentage')
po=(mp/100)*12//peak over shoot for 12 units
disp(po,'peak over shoot for 12 units')
tp=%pi/(w*sqrt(1-(zeta)^2))
disp(tp,'peak time in seconds')
//constructing a right angle triangle with zeta and sqrt(1-zeta^2)
theta=atan(0.866/0.5)//(1-zeta^2)/zeta
disp(theta,'the value of theta is')
tr=(%pi- theta)/(w*sqrt(1-(zeta)^2))
disp(tr,'the rise time in seconds')
t=1/(zeta*w)//time constant
ts1=3*t//settling time for 5% error
disp(ts1,'settling time for 5% error in seconds')
ts2=4*t//settling time for 2% error
disp(ts2,'settling time for 2% error in seconds')
|
3835f0b8ad0c636ec0ba82c15ac77f7ccd2a826b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2891/CH7/EX7.15/Ex7_15.sce | a2560054012db0ddbc1c8673ed22a52cc046f61f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 307 | sce | Ex7_15.sce | // Exa 7.15
clc;
clear;
close;
Lm=poly(0,'Lm')// defining Lm as lambda
D_a=8*Lm // where D_a is mouth diameter in m and Lm is wavelength in m
// formula : G_p=6.4*(D/lambda)^2
G_p=6.4*(D_a/Lm)^2 //power gain
G_p=horner(G_p,1)
G_p=10*log10(G_p) // power gain in dB
disp(G_p,"power gain in dB:")
|
67d179b0388dcfb78a5ee6197c44bd6520341d07 | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfas_ac_vrt_ind/~BivLCM-SR-bfas_ac_vrt_ind-PLin-VLin.tst | 62847c0ac16f94efce482bdd562d2ebd074b88d5 | [] | no_license | psdlab/life-in-time-values-and-personality | 35fbf5bbe4edd54b429a934caf289fbb0edfefee | 7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e | refs/heads/master | 2020-03-24T22:08:27.964205 | 2019-03-04T17:03:26 | 2019-03-04T17:03:26 | 143,070,821 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,909 | tst | ~BivLCM-SR-bfas_ac_vrt_ind-PLin-VLin.tst |
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.264114D+00
2 -0.435990D-02 0.228841D-02
3 -0.106957D+00 0.162109D-02 0.349180D+00
4 0.254371D-02 -0.858499D-03 -0.676868D-02 0.292571D-02
5 0.256290D-03 0.215700D-03 -0.253142D-02 -0.143894D-03 0.278318D-02
6 0.907303D-03 0.494328D-05 -0.520379D-04 -0.455346D-04 0.649955D-04
7 0.965358D-03 -0.943591D-05 -0.459940D-03 -0.409978D-04 -0.802099D-03
8 -0.102394D-02 -0.717379D-05 -0.330713D-03 0.816840D-04 -0.216773D-03
9 -0.497942D+00 0.251711D-01 0.466377D+00 -0.222296D-01 -0.190467D-01
10 -0.379217D+00 0.246603D-03 0.209318D+00 0.272325D-02 0.122913D+00
11 0.112158D+00 -0.301465D-01 -0.127645D+00 0.314113D-01 0.417520D-01
12 -0.281415D+00 0.129303D-01 0.227847D+00 -0.410464D-01 -0.436984D-02
13 0.163891D+00 -0.597559D-02 -0.106043D+00 -0.277016D-03 -0.352283D-01
14 -0.147751D+00 0.694291D-02 0.457018D+00 0.844197D-02 0.461068D-02
15 -0.251542D+01 0.922930D-01 0.609622D+00 -0.291391D-01 -0.481603D-01
16 0.531931D-01 -0.159855D-01 -0.585391D-02 0.347163D-02 0.119799D-03
17 -0.688126D-02 -0.533315D-03 0.178505D-02 0.316012D-03 -0.889477D-03
18 0.637087D+00 -0.691882D-02 -0.354229D+00 0.274924D-01 0.311051D-01
19 0.123063D-01 0.965968D-02 0.656425D-01 -0.854709D-03 -0.200259D-01
20 -0.373078D+00 0.177232D-01 0.214885D-01 -0.197937D-01 -0.513755D-01
21 -0.280790D-01 -0.512413D-03 -0.633482D-01 -0.514454D-02 0.237991D-01
22 0.131387D-02 0.155789D-03 -0.166590D-02 -0.474586D-03 0.731798D-04
23 0.350754D-03 -0.291664D-02 0.198411D-01 0.116624D-02 -0.791417D-03
24 -0.951165D-03 -0.294957D-03 0.498927D-03 0.653883D-03 0.718482D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.544760D-03
7 0.409537D-03 0.293102D-02
8 0.505858D-04 0.828481D-03 0.276887D-02
9 0.107719D-02 -0.530172D-01 -0.362174D-01 0.460064D+02
10 -0.687298D-02 -0.396740D-01 -0.113324D-01 -0.111694D+01 0.162280D+02
11 0.174502D-01 -0.197759D-02 -0.473570D-01 -0.103333D+02 0.120849D+01
12 -0.324007D-01 0.224798D-01 0.520675D-01 0.749343D+01 0.691726D+00
13 0.369285D-01 0.102649D+00 0.426658D-01 -0.263637D+01 -0.444090D+01
14 -0.944097D-02 -0.260280D-01 0.104016D+00 0.220141D+01 0.285290D+01
15 -0.717101D-02 0.781989D-01 0.175820D-01 0.396938D+01 -0.868982D+01
16 0.995917D-03 -0.918227D-03 -0.101531D-02 0.418660D+00 0.292356D-01
17 -0.112494D-03 -0.443398D-03 0.245837D-04 -0.126933D+00 0.383303D-01
18 -0.410297D-01 -0.122048D+00 -0.236734D-01 0.460664D+01 0.428237D+01
19 -0.488178D-02 0.161921D-01 0.503279D-02 -0.514035D+00 -0.115657D+01
20 -0.101628D-01 -0.420466D-01 -0.185605D+00 0.845566D+01 -0.464466D+00
21 0.475002D-02 -0.170744D-01 -0.678368D-02 0.600299D+00 0.128135D+01
22 0.458860D-04 0.486929D-03 0.267597D-03 0.191302D-02 -0.387269D-01
23 -0.129418D-02 -0.122193D-02 -0.629243D-03 0.167639D-01 0.496659D-01
24 0.275086D-04 -0.113472D-03 -0.187686D-03 -0.194075D-01 0.212870D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.382954D+02
12 -0.271035D+02 0.138949D+03
13 -0.143806D+01 0.142250D+01 0.125865D+02
14 0.341036D+01 0.204143D+01 -0.638591D+01 0.487832D+02
15 0.176712D+01 0.274151D+01 0.436996D+00 0.147660D-01 0.248824D+03
16 0.223018D+00 -0.261607D+00 0.232691D-01 0.143843D+00 0.184062D+01
17 0.117422D-01 -0.157779D-01 0.490441D-04 -0.130679D-01 -0.121636D+01
18 -0.136458D+01 -0.130911D+01 -0.601282D+01 0.573190D+01 -0.100263D+03
19 -0.602054D+00 0.368503D+00 0.292782D+00 -0.371389D-01 -0.359346D+00
20 0.358089D+01 0.135994D+01 -0.277533D+01 -0.254193D+02 0.401821D+02
21 0.634054D+00 -0.724344D+00 -0.428969D+00 -0.695730D-01 -0.180554D+01
22 -0.354508D-01 0.999262D-01 0.160577D-01 -0.609707D-02 0.576873D+00
23 -0.165331D+00 0.133192D+01 -0.606108D-01 0.804388D-01 0.271776D+00
24 0.569121D-01 -0.305443D+00 -0.806251D-02 0.753061D-02 -0.270325D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.508556D+00
17 -0.417482D-01 0.156548D-01
18 -0.134464D+01 0.552226D+00 0.167185D+03
19 -0.289340D+00 0.166045D-01 -0.299003D+00 0.409364D+01
20 0.551709D+00 -0.295715D+00 -0.100445D+03 -0.222057D+01 0.320613D+03
21 0.333333D-01 0.230866D-02 0.316051D+01 -0.375116D+01 -0.140837D-02
22 0.118183D-01 -0.586513D-02 -0.862832D+00 -0.950473D-02 0.518236D+00
23 0.868033D-01 -0.882883D-02 -0.104892D+01 -0.100677D+00 0.296900D+01
24 -0.886433D-02 0.385899D-02 0.549488D+00 0.635835D-02 -0.136205D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.461537D+01
22 -0.493149D-01 0.100345D-01
23 -0.181429D+00 0.158111D-01 0.526539D+00
24 0.272289D-01 -0.545767D-02 -0.539999D-01 0.143002D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.177 1.000
3 -0.352 0.057 1.000
4 0.092 -0.332 -0.212 1.000
5 0.009 0.085 -0.081 -0.050 1.000
6 0.076 0.004 -0.004 -0.036 0.053
7 0.035 -0.004 -0.014 -0.014 -0.281
8 -0.038 -0.003 -0.011 0.029 -0.078
9 -0.143 0.078 0.116 -0.061 -0.053
10 -0.183 0.001 0.088 0.012 0.578
11 0.035 -0.102 -0.035 0.094 0.128
12 -0.046 0.023 0.033 -0.064 -0.007
13 0.090 -0.035 -0.051 -0.001 -0.188
14 -0.041 0.021 0.111 0.022 0.013
15 -0.310 0.122 0.065 -0.034 -0.058
16 0.145 -0.469 -0.014 0.090 0.003
17 -0.107 -0.089 0.024 0.047 -0.135
18 0.096 -0.011 -0.046 0.039 0.046
19 0.012 0.100 0.055 -0.008 -0.188
20 -0.041 0.021 0.002 -0.020 -0.054
21 -0.025 -0.005 -0.050 -0.044 0.210
22 0.026 0.033 -0.028 -0.088 0.014
23 0.001 -0.084 0.046 0.030 -0.021
24 -0.015 -0.052 0.007 0.101 0.011
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.324 1.000
8 0.041 0.291 1.000
9 0.007 -0.144 -0.101 1.000
10 -0.073 -0.182 -0.053 -0.041 1.000
11 0.121 -0.006 -0.145 -0.246 0.048
12 -0.118 0.035 0.084 0.094 0.015
13 0.446 0.534 0.229 -0.110 -0.311
14 -0.058 -0.069 0.283 0.046 0.101
15 -0.019 0.092 0.021 0.037 -0.137
16 0.060 -0.024 -0.027 0.087 0.010
17 -0.039 -0.065 0.004 -0.150 0.076
18 -0.136 -0.174 -0.035 0.053 0.082
19 -0.103 0.148 0.047 -0.037 -0.142
20 -0.024 -0.043 -0.197 0.070 -0.006
21 0.095 -0.147 -0.060 0.041 0.148
22 0.020 0.090 0.051 0.003 -0.096
23 -0.076 -0.031 -0.016 0.003 0.017
24 0.010 -0.018 -0.030 -0.024 0.044
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 -0.372 1.000
13 -0.066 0.034 1.000
14 0.079 0.025 -0.258 1.000
15 0.018 0.015 0.008 0.000 1.000
16 0.051 -0.031 0.009 0.029 0.164
17 0.015 -0.011 0.000 -0.015 -0.616
18 -0.017 -0.009 -0.131 0.063 -0.492
19 -0.048 0.015 0.041 -0.003 -0.011
20 0.032 0.006 -0.044 -0.203 0.142
21 0.048 -0.029 -0.056 -0.005 -0.053
22 -0.057 0.085 0.045 -0.009 0.365
23 -0.037 0.156 -0.024 0.016 0.024
24 0.077 -0.217 -0.019 0.009 -0.143
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.468 1.000
18 -0.146 0.341 1.000
19 -0.201 0.066 -0.011 1.000
20 0.043 -0.132 -0.434 -0.061 1.000
21 0.022 0.009 0.114 -0.863 0.000
22 0.165 -0.468 -0.666 -0.047 0.289
23 0.168 -0.097 -0.112 -0.069 0.229
24 -0.104 0.258 0.355 0.026 -0.636
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.229 1.000
23 -0.116 0.218 1.000
24 0.106 -0.456 -0.622 1.000
|
87dcb463622833004309e4465dd21445fc854489 | 449d555969bfd7befe906877abab098c6e63a0e8 | /479/CH6/EX6.0/Chapter_6.sce | 18c0234ecf61ad3e57c5cf36fcfb78383b2281c0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 191 | sce | Chapter_6.sce | //Chemical Engineering Thermodynamics
//Chapter 6
//Thermodynamic Relations
clear;
clc;
//Given
//The chapter does not contain any example which involve numerical computation
//end |
780bec9a2badaedb601b15e037f0a852092aa582 | a716b1a783311ba8f8caeb1aaaa71fed9e8895dd | /SciLab/computation_figures.sce | b4dedf038766a36ee5590a4da45bb4149f0f1c83 | [] | no_license | AvrilWeinbach/MutualismDecline | c669bd8cf30d9183d3c609549f75693aac854d48 | ce5efa064ebcd01634f35db395445a41462bbb4a | refs/heads/main | 2023-04-14T03:47:01.000489 | 2021-10-06T10:42:49 | 2021-10-06T10:42:49 | 412,018,063 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 269 | sce | computation_figures.sce | clear()
close()
clearglobal()
getd('./functions')
alphaN = 1;
alphaP = 1;
gammaN = 1;
gammaP = 1;
e_r = 0.8;
delta = 2.5;
f_name = "test"
tic;
find_ess(alphaN,alphaP,gammaN,gammaP,delta,e_r,f_name)
compute_surface(alphaN,alphaP,gammaN,gammaP,delta,e_r,f_name)
toc
|
7bbb9106657358077ef9424c10c5e420d6631d44 | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.9_20.tst | 6236c1c8e35aadb5174ef6403796bacc2621a565 | [] | 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 | 797,911 | tst | 5.9_20.tst | 9 166:1 177:1 283:2 328:1 420:2 435:1 594:1 637:1 829:1 872:3 883:1 1096:2 1388:1 1403:1 1471:1 1493:1 1557:1 1601:1 1621:1 1797:2 1883:1 1893:1 2104:1 2105:1 2360:2 2600:1 2683:1 2702:1 2733:1 2761:1 3028:1 3032:1 3109:1 3214:1 3230:1 3322:1 3348:1 3435:1 3486:1 3532:1 3571:1 3648:2 3724:1 3819:1 3959:1 4260:1 4290:1 4365:1 4390:1 4398:1 4414:1 4455:1 4515:1 4560:2 4596:1 4751:1 4812:1 5088:1 5424:1 5546:1 5560:1 5598:1 5724:1 5773:1 5807:1 6333:1 6340:1 6380:1 6455:1 6475:1 6519:1 6523:1 6568:1 6615:1 6933:1 6944:1 6963:2 6979:2 7004:1 7105:1 7402:1 7702:1 7720:2 7787:1 7794:1 7863:1 7869:1 8000:1 8100:1 8204:1 8336:1 8460:2 8576:1 8585:1 8608:1 8633:1 8724:1 8857:1 8867:1 8868:1 9108:1 9135:1 9430:1 9513:1 9778:1 9945:1 10003:1 10043:1 10059:1 10127:1 10143:1 10246:1 10450:1 10490:1 10536:1 10554:1 10573:1 10693:1 10728:1 10744:1 10790:1 11065:1 11082:1 11116:1 11177:1 11215:1 11241:1 11279:1 11283:1 11443:1 11522:1 11561:1 11745:1 11768:1 11945:1 11972:1 11988:1 11995:1 12043:1 12103:1 12118:1 12127:1 12186:2 12460:2 12485:1 12545:1 12573:1 12667:1 12727:1 12745:1 12796:1 12915:1 13092:1 13198:1 13214:1 13741:1 13752:1 14098:1 14104:1 14115:1 14177:1 14320:1 14540:2 14825:1 15113:1 15402:1 15508:1 15544:1 15583:1 15638:1 15688:1 15778:1 15992:1 16041:1 16113:2 16311:2 16404:1 16476:1 16592:1 16616:1 17069:132 17260:1 17381:2 17691:1 17738:1 17826:1 17879:1 17927:1 17937:1 17949:1 17985:1 18349:1 18430:1 18481:1 18589:1 18806:1 18867:1 18932:1 19223:1 19283:1 19466:1 19676:1 19680:1 19693:1 19731:1 19777:1 19940:1 19941:1 19994:1 20080:1 20222:1 20381:1 20552:1 20625:2 20693:1 21064:1 21128:1 21136:1 21352:1 21504:1 21696:1 21724:1 21732:1 21844:1 21858:1 21934:1 22041:1 22277:1 22304:1 22307:1 22409:1 22428:1 22486:1 22546:1 22810:1 22841:1 22995:1 23004:1 23078:1 23089:1 23094:1 23104:1 23185:1 23249:1 23391:1 23452:1 23608:1 23616:1 23749:1 23838:1 23873:1 23908:1 24050:1 24097:1 24271:2 24845:1 24967:1 24990:1 25064:1 25147:1 25509:1 25549:1 25553:2 25590:1 25640:1 25725:1 25964:1 25965:1 26044:1 26151:1 26399:1 26451:1 26601:2 26638:1 26715:1 26720:1
9 10:1 166:1 177:1 205:1 268:1 283:2 294:1 328:1 420:2 435:1 553:1 594:1 597:1 637:1 756:1 781:1 829:1 872:3 883:1 888:1 893:1 930:1 987:1 1096:2 1195:1 1267:1 1281:1 1331:2 1332:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1437:1 1471:1 1493:1 1557:1 1561:1 1601:1 1621:1 1797:2 1883:1 1886:1 1893:1 1962:1 2104:1 2105:1 2141:1 2144:1 2165:1 2203:1 2212:1 2298:1 2360:2 2391:1 2408:1 2443:1 2480:1 2549:1 2596:1 2600:1 2683:1 2702:1 2718:1 2733:1 2756:1 2761:2 2881:1 3028:1 3032:1 3109:1 3214:1 3230:1 3293:2 3322:1 3332:1 3348:1 3435:1 3445:1 3486:1 3491:1 3525:1 3532:1 3533:1 3548:1 3571:1 3648:2 3715:1 3724:1 3725:1 3819:1 3875:1 3959:1 4034:1 4129:1 4260:1 4263:1 4264:1 4272:1 4290:1 4334:1 4365:1 4390:1 4398:1 4414:1 4448:1 4455:1 4513:1 4515:1 4560:2 4596:2 4608:1 4751:1 4765:1 4769:1 4812:1 4875:1 4898:1 4926:1 4942:1 5088:1 5091:1 5100:1 5136:1 5217:1 5304:1 5391:1 5424:1 5546:1 5560:1 5598:1 5724:1 5773:1 5805:1 5807:1 5813:1 5815:2 5928:1 6179:1 6201:1 6333:1 6340:1 6380:1 6455:1 6475:1 6519:1 6523:1 6543:1 6568:1 6615:1 6883:1 6933:1 6944:1 6963:2 6979:4 7004:1 7105:1 7169:1 7386:1 7402:1 7495:1 7500:1 7618:1 7678:1 7702:1 7720:2 7787:1 7794:1 7863:1 7869:1 7872:2 7931:1 7965:1 8000:1 8007:1 8052:1 8096:1 8100:1 8119:1 8204:1 8323:1 8336:1 8352:1 8360:1 8443:1 8460:2 8531:1 8576:1 8584:1 8585:1 8587:1 8608:1 8633:1 8649:1 8724:1 8857:1 8867:1 8868:1 9086:1 9108:1 9135:1 9142:1 9430:1 9470:1 9513:1 9605:1 9653:1 9668:1 9758:1 9778:1 9914:1 9945:1 10003:1 10023:1 10043:1 10059:1 10117:1 10127:1 10143:1 10146:1 10246:1 10251:1 10317:1 10395:1 10396:1 10450:1 10490:1 10493:1 10536:1 10554:1 10573:1 10634:1 10693:1 10728:1 10744:1 10790:1 10829:1 10862:1 10913:1 10953:1 10982:1 11062:1 11063:1 11065:1 11082:1 11115:1 11116:1 11177:1 11215:1 11241:1 11279:1 11283:1 11411:1 11443:1 11522:1 11561:1 11578:1 11590:1 11599:1 11687:1 11715:1 11745:1 11768:1 11813:1 11945:1 11949:1 11972:1 11988:1 11995:1 12027:1 12043:1 12075:1 12103:1 12118:2 12124:1 12127:1 12168:1 12186:2 12188:1 12243:1 12398:1 12460:2 12465:1 12485:1 12545:1 12573:2 12667:1 12686:1 12727:1 12745:1 12751:1 12796:1 12834:1 12883:1 12908:1 12915:1 13001:1 13092:1 13198:1 13214:1 13340:1 13563:1 13570:1 13639:1 13680:1 13700:1 13741:1 13752:1 13771:1 13856:1 13864:1 13897:1 14098:1 14103:1 14104:1 14115:1 14177:1 14290:1 14306:1 14320:1 14418:2 14533:1 14540:2 14546:1 14557:1 14669:1 14825:1 14942:1 15093:1 15113:1 15124:1 15241:1 15244:1 15272:1 15329:1 15341:1 15402:1 15410:1 15459:1 15508:1 15544:1 15578:1 15583:1 15638:1 15688:1 15697:1 15705:1 15778:2 15916:1 15963:1 15992:1 16041:1 16113:2 16195:1 16278:1 16284:1 16311:3 16317:1 16325:1 16391:1 16404:1 16476:1 16554:1 16592:1 16616:1 16682:1 16870:1 16887:1 16991:1 16998:1 17021:1 17065:1 17069:247 17260:1 17346:1 17381:2 17398:1 17449:1 17678:1 17691:1 17738:1 17807:1 17826:1 17879:1 17927:1 17937:1 17949:1 17957:1 17985:1 18011:1 18157:1 18221:1 18242:1 18349:1 18430:1 18481:1 18483:1 18510:1 18568:1 18589:1 18590:1 18806:1 18867:1 18903:1 18932:1 18937:1 19009:1 19063:1 19143:1 19216:1 19217:1 19223:1 19283:2 19365:1 19386:1 19423:1 19466:1 19676:1 19680:1 19693:1 19731:1 19777:1 19892:1 19905:1 19909:2 19920:1 19940:1 19941:1 19994:1 20025:1 20080:1 20222:1 20294:1 20305:1 20381:1 20540:1 20552:1 20564:1 20625:3 20693:1 20804:1 20853:1 21064:1 21128:1 21136:1 21190:1 21261:1 21352:1 21359:1 21402:1 21504:1 21514:1 21586:1 21696:1 21724:1 21732:1 21841:1 21844:1 21858:1 21869:1 21892:1 21934:1 21956:1 22041:1 22079:1 22112:1 22204:1 22264:1 22277:1 22283:1 22297:1 22304:1 22307:1 22323:1 22359:1 22371:1 22408:1 22409:1 22428:1 22486:1 22503:1 22546:1 22559:1 22630:1 22715:1 22723:1 22810:1 22841:1 22942:1 22995:1 23004:1 23078:1 23089:1 23094:1 23104:1 23124:2 23185:2 23249:1 23391:1 23444:1 23452:1 23460:1 23608:1 23616:1 23632:1 23645:1 23735:1 23749:1 23796:1 23838:1 23856:1 23873:1 23908:3 24050:1 24097:1 24156:1 24271:2 24293:1 24489:1 24493:1 24735:1 24756:1 24845:1 24849:1 24876:1 24967:1 24990:1 25064:1 25147:1 25198:1 25230:1 25435:1 25509:1 25541:1 25549:1 25553:2 25590:1 25640:1 25725:1 25795:1 25878:1 25946:1 25964:1 25965:2 25968:1 26035:1 26044:1 26151:1 26186:1 26241:1 26399:1 26451:1 26511:1 26556:1 26601:2 26614:1 26616:1 26638:2 26714:1 26715:1 26716:1 26720:1 26742:1 26766:1 26771:1
9 10:1 38:1 157:1 166:1 177:1 205:2 268:1 283:4 294:1 328:1 340:1 420:2 435:1 553:1 594:1 597:1 637:1 740:1 756:1 760:1 781:1 829:1 843:2 872:3 883:1 888:1 893:1 930:1 940:1 962:1 987:1 1010:1 1059:1 1096:2 1195:1 1234:1 1238:1 1267:1 1281:1 1331:2 1332:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1437:1 1471:1 1476:1 1493:1 1557:2 1561:1 1601:2 1621:1 1659:1 1797:4 1833:1 1883:1 1886:1 1893:1 1962:1 2038:1 2064:1 2104:1 2105:1 2125:1 2126:1 2141:1 2144:1 2165:1 2203:1 2212:1 2298:1 2360:2 2391:1 2408:1 2414:1 2443:1 2480:1 2549:1 2583:1 2596:2 2600:1 2683:1 2702:1 2718:1 2733:2 2756:1 2761:2 2881:1 2963:1 3028:1 3032:1 3109:1 3149:1 3214:1 3230:1 3293:2 3317:1 3322:1 3332:1 3348:1 3357:1 3435:1 3439:1 3445:1 3480:1 3486:1 3491:1 3525:1 3532:1 3533:1 3548:1 3571:1 3648:2 3715:1 3724:1 3725:1 3806:1 3819:1 3863:1 3866:1 3875:1 3925:1 3959:1 4034:1 4056:1 4129:1 4260:1 4263:1 4264:1 4272:1 4290:1 4334:1 4365:1 4390:1 4398:1 4414:1 4448:1 4455:1 4513:2 4515:1 4560:2 4596:2 4608:1 4628:1 4751:1 4765:1 4769:1 4795:1 4812:1 4875:1 4898:1 4926:1 4942:1 5047:1 5088:1 5091:1 5100:1 5136:1 5169:1 5191:1 5217:1 5278:1 5304:1 5391:1 5424:1 5546:1 5560:1 5594:1 5598:1 5685:1 5724:1 5773:1 5788:1 5804:1 5805:1 5807:1 5813:1 5815:2 5928:1 6088:1 6179:1 6201:2 6333:2 6340:1 6352:1 6380:1 6455:1 6475:1 6519:1 6523:1 6543:1 6568:1 6615:1 6671:1 6883:1 6919:1 6933:1 6944:1 6963:2 6979:5 7004:2 7010:1 7081:1 7087:1 7105:1 7169:1 7244:1 7265:1 7386:2 7388:1 7402:1 7455:1 7473:1 7495:1 7500:1 7554:1 7618:1 7660:1 7678:1 7702:1 7715:1 7720:2 7787:2 7794:1 7838:1 7863:1 7869:1 7872:2 7931:1 7965:1 7973:1 8000:1 8007:1 8052:1 8093:1 8096:2 8100:1 8119:1 8124:1 8147:1 8204:2 8215:1 8275:1 8323:1 8336:1 8352:1 8360:1 8443:1 8460:4 8493:1 8531:1 8576:1 8584:1 8585:1 8587:1 8608:1 8633:1 8649:1 8724:1 8725:1 8771:1 8790:1 8857:1 8867:1 8868:1 9086:1 9108:1 9135:1 9142:1 9215:1 9430:1 9470:1 9513:1 9605:1 9653:1 9658:1 9668:1 9682:1 9758:2 9778:1 9914:1 9945:1 10003:1 10023:1 10043:1 10059:1 10117:1 10127:1 10143:1 10146:1 10246:1 10251:1 10316:1 10317:1 10395:1 10396:1 10450:1 10490:1 10493:1 10498:1 10536:1 10554:1 10573:1 10616:1 10634:1 10668:1 10693:1 10728:1 10744:1 10790:1 10829:1 10862:1 10913:1 10953:1 10982:1 11062:1 11063:2 11065:1 11082:1 11115:1 11116:1 11177:1 11215:2 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11411:1 11438:1 11443:1 11454:1 11522:1 11561:1 11578:1 11586:1 11590:1 11599:1 11687:1 11715:1 11745:1 11768:1 11813:1 11824:1 11945:1 11949:1 11972:1 11988:1 11995:1 12027:1 12043:1 12075:1 12103:1 12118:2 12124:1 12127:1 12168:1 12186:3 12188:1 12237:1 12243:3 12284:1 12398:1 12454:1 12460:2 12465:1 12485:1 12540:1 12545:1 12565:1 12573:2 12620:1 12667:1 12686:1 12727:1 12745:1 12751:1 12796:1 12820:1 12834:1 12883:1 12908:1 12915:1 13001:1 13083:1 13092:1 13193:1 13198:1 13214:1 13340:1 13486:1 13563:2 13570:1 13639:1 13659:1 13680:1 13700:1 13741:1 13752:1 13771:1 13856:1 13864:1 13897:1 14043:1 14098:1 14103:1 14104:1 14115:1 14177:1 14290:1 14306:1 14320:1 14359:1 14418:2 14533:1 14540:3 14546:1 14557:1 14669:1 14687:1 14747:1 14782:1 14825:1 14829:1 14900:1 14942:1 15010:1 15093:1 15113:1 15124:1 15224:1 15241:1 15244:1 15272:1 15329:1 15341:1 15402:1 15410:1 15459:1 15508:1 15544:1 15578:1 15583:1 15607:1 15636:1 15638:1 15688:1 15697:1 15705:1 15778:2 15869:1 15897:1 15916:1 15963:1 15992:3 16041:3 16113:2 16153:1 16195:1 16207:1 16278:1 16284:1 16311:5 16317:1 16325:1 16355:1 16391:1 16393:1 16396:1 16404:1 16464:1 16476:1 16554:1 16557:1 16571:1 16592:1 16616:1 16637:1 16682:1 16870:2 16887:1 16991:1 16998:1 17021:1 17027:1 17053:1 17065:1 17069:342 17086:1 17150:1 17260:1 17346:1 17381:4 17398:1 17419:1 17449:1 17590:1 17641:1 17678:1 17689:1 17691:1 17723:1 17738:1 17772:1 17807:1 17826:1 17879:1 17927:1 17937:1 17949:1 17951:1 17957:1 17984:1 17985:1 18011:1 18157:1 18221:1 18242:1 18349:1 18367:1 18430:1 18470:1 18481:1 18483:1 18510:1 18568:1 18589:2 18590:2 18594:1 18806:1 18867:1 18903:1 18932:1 18937:1 19009:1 19063:1 19088:1 19102:1 19143:1 19216:1 19217:1 19223:2 19254:1 19283:2 19321:1 19365:1 19386:1 19391:1 19423:1 19466:1 19676:1 19680:1 19693:1 19731:1 19775:1 19777:1 19798:1 19836:1 19892:1 19905:1 19909:2 19920:1 19940:1 19941:1 19951:1 19994:1 20000:1 20025:1 20080:2 20184:1 20222:2 20294:1 20305:1 20381:1 20383:2 20423:1 20433:1 20434:1 20494:1 20540:1 20552:1 20564:1 20625:5 20693:1 20776:1 20804:1 20853:1 20900:1 21064:1 21115:1 21128:1 21136:1 21146:1 21190:1 21261:1 21298:1 21352:1 21359:1 21402:1 21498:1 21504:1 21514:1 21586:1 21663:1 21696:1 21703:1 21724:1 21732:1 21780:1 21841:1 21844:1 21858:1 21869:1 21892:1 21934:1 21956:1 22041:1 22043:1 22079:1 22112:1 22204:1 22264:1 22268:1 22276:1 22277:1 22281:2 22283:2 22289:1 22290:1 22297:1 22304:2 22307:1 22323:1 22357:1 22359:1 22371:1 22408:1 22409:1 22428:1 22442:1 22463:1 22486:1 22503:1 22535:1 22546:1 22559:1 22630:1 22715:1 22723:1 22810:1 22834:1 22841:1 22942:1 22988:1 22995:1 23004:2 23078:1 23081:1 23089:1 23094:1 23104:1 23124:2 23129:1 23185:2 23239:2 23249:1 23391:1 23409:2 23443:1 23444:1 23452:1 23460:1 23608:1 23616:1 23632:1 23645:1 23735:1 23749:1 23796:2 23838:1 23856:1 23873:1 23908:3 23937:1 24050:1 24089:1 24091:1 24097:1 24156:1 24242:1 24271:2 24293:1 24383:1 24489:1 24493:1 24588:1 24718:1 24735:1 24756:1 24845:1 24849:1 24876:1 24911:1 24928:1 24967:1 24990:1 25015:1 25020:1 25064:1 25147:1 25198:1 25230:3 25435:1 25443:1 25509:1 25541:1 25549:2 25553:2 25564:1 25590:1 25607:1 25640:1 25725:1 25738:1 25757:1 25795:1 25804:1 25819:1 25824:1 25878:1 25880:1 25946:1 25964:1 25965:2 25968:1 26035:1 26044:1 26062:1 26151:1 26152:1 26186:1 26192:1 26241:1 26264:1 26335:2 26372:1 26399:1 26413:1 26451:1 26507:1 26511:1 26518:1 26536:1 26556:1 26595:1 26601:2 26614:1 26616:1 26638:2 26679:1 26714:1 26715:1 26716:1 26720:1 26742:1 26766:1 26771:1
9 10:1 38:1 66:1 91:1 157:1 166:1 168:1 177:1 205:2 259:1 268:1 283:5 294:1 315:1 328:1 340:1 392:1 420:3 435:1 553:1 561:1 594:1 597:1 637:1 676:1 740:1 756:1 760:1 781:1 828:1 829:1 843:2 872:3 883:1 884:1 888:1 893:1 930:1 940:1 962:1 987:1 1010:1 1059:2 1072:1 1096:2 1195:1 1234:1 1238:1 1267:1 1281:1 1331:2 1332:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1437:1 1471:1 1476:1 1493:1 1548:1 1557:2 1561:1 1601:2 1621:1 1659:1 1682:1 1695:1 1797:4 1802:1 1833:1 1883:1 1886:1 1893:1 1962:1 2038:1 2064:1 2104:1 2105:1 2112:1 2125:1 2126:1 2129:1 2141:2 2144:3 2165:1 2203:1 2212:1 2261:1 2298:1 2310:1 2360:2 2391:1 2408:1 2414:1 2443:1 2477:1 2480:1 2493:1 2530:1 2549:1 2581:1 2583:1 2596:2 2600:1 2683:1 2702:1 2718:1 2733:2 2756:1 2761:2 2813:1 2881:1 2951:1 2963:1 3028:1 3032:1 3109:1 3149:1 3173:1 3214:1 3230:1 3238:1 3293:2 3317:1 3322:1 3332:1 3348:1 3357:1 3386:2 3430:1 3435:1 3439:1 3445:1 3480:1 3486:2 3491:1 3525:1 3532:1 3533:1 3548:1 3571:1 3584:1 3648:2 3715:1 3724:2 3725:2 3806:1 3819:1 3856:1 3863:1 3866:1 3875:1 3925:1 3959:1 4034:1 4055:1 4056:1 4129:1 4145:1 4260:1 4263:2 4264:1 4272:1 4290:1 4334:1 4365:1 4390:1 4398:1 4414:1 4448:1 4455:1 4458:1 4463:1 4513:3 4515:1 4557:1 4560:2 4596:2 4608:1 4610:1 4628:1 4643:1 4751:1 4765:1 4769:1 4795:1 4812:1 4875:1 4878:1 4898:1 4926:2 4942:1 5047:1 5078:1 5088:1 5091:1 5100:1 5136:1 5169:1 5191:1 5217:1 5278:2 5304:1 5365:1 5391:1 5424:1 5518:1 5519:2 5546:1 5560:1 5594:1 5598:1 5666:1 5685:1 5724:1 5773:1 5788:1 5791:1 5804:1 5805:1 5807:1 5813:1 5815:2 5816:1 5928:1 6078:1 6088:1 6110:1 6179:1 6201:2 6212:1 6253:1 6262:1 6280:1 6333:2 6340:1 6352:1 6380:1 6455:1 6475:1 6476:1 6519:1 6523:1 6543:1 6568:1 6615:1 6658:1 6671:1 6804:1 6866:1 6883:1 6919:1 6933:1 6944:2 6963:2 6979:9 7004:2 7010:1 7058:1 7081:1 7087:1 7105:1 7107:1 7169:1 7244:1 7265:1 7386:2 7388:1 7402:1 7446:1 7455:1 7473:1 7495:1 7500:1 7554:1 7572:1 7618:1 7660:1 7678:1 7702:1 7715:1 7720:2 7787:2 7794:1 7796:1 7838:1 7863:1 7869:1 7872:2 7879:1 7931:1 7965:1 7973:1 8000:1 8007:1 8052:1 8093:1 8096:2 8100:1 8119:1 8121:1 8124:1 8147:1 8182:1 8204:2 8215:1 8275:1 8277:1 8323:1 8336:1 8352:1 8360:1 8443:1 8460:5 8493:1 8531:1 8576:1 8584:1 8585:1 8587:1 8608:1 8625:1 8633:1 8649:1 8682:1 8724:1 8725:1 8771:1 8772:1 8790:1 8857:1 8864:1 8867:1 8868:1 8931:1 9040:1 9086:1 9108:1 9135:1 9142:1 9215:1 9274:1 9430:1 9470:1 9513:1 9584:1 9605:2 9610:1 9651:1 9653:1 9658:1 9668:1 9682:1 9689:1 9758:2 9778:3 9843:1 9914:1 9945:1 10003:1 10023:1 10043:1 10059:1 10111:1 10117:1 10127:1 10143:1 10146:1 10156:1 10246:1 10251:1 10316:1 10317:1 10332:1 10395:1 10396:1 10398:1 10450:1 10490:1 10493:1 10498:1 10536:1 10554:1 10573:1 10616:2 10634:1 10668:1 10693:1 10728:1 10744:1 10790:1 10829:1 10862:1 10871:1 10913:1 10953:1 10982:1 11062:1 11063:2 11065:1 11082:1 11115:1 11116:1 11177:1 11215:2 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11411:1 11438:1 11443:1 11454:1 11522:1 11534:1 11561:1 11578:1 11586:1 11590:1 11599:1 11622:1 11687:1 11715:1 11745:1 11768:1 11813:1 11824:1 11838:1 11945:1 11949:1 11972:1 11982:1 11988:1 11995:1 12027:1 12043:1 12075:1 12103:1 12118:2 12124:1 12127:1 12168:1 12186:3 12188:1 12200:1 12217:1 12226:1 12237:1 12243:3 12284:1 12285:1 12398:1 12454:1 12460:2 12462:1 12465:1 12485:1 12528:1 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:1 12664:1 12667:1 12686:1 12727:1 12745:1 12751:1 12796:1 12820:1 12834:1 12883:1 12899:1 12908:1 12915:1 12946:1 13001:1 13011:1 13032:1 13057:1 13083:1 13092:1 13151:1 13193:1 13198:1 13214:1 13340:1 13367:1 13486:1 13563:2 13570:1 13586:1 13637:1 13639:1 13659:1 13680:1 13700:1 13741:1 13752:1 13771:1 13856:1 13864:1 13897:1 14033:1 14043:1 14098:1 14103:1 14104:1 14115:1 14177:1 14290:1 14305:1 14306:1 14320:1 14321:1 14359:1 14389:1 14418:3 14492:1 14533:1 14540:3 14546:1 14557:1 14669:1 14675:1 14687:2 14747:1 14750:1 14782:1 14822:1 14825:1 14829:1 14900:1 14942:1 15010:1 15093:1 15100:1 15113:1 15124:1 15224:1 15241:1 15244:2 15272:1 15329:1 15341:1 15402:1 15405:2 15410:1 15459:1 15468:1 15495:1 15508:1 15544:1 15578:1 15583:1 15607:2 15636:1 15638:1 15675:1 15688:1 15697:1 15705:2 15778:2 15869:1 15897:1 15916:1 15963:1 15992:3 16041:3 16104:1 16113:2 16153:1 16164:1 16189:1 16195:1 16207:1 16278:1 16284:1 16311:5 16317:1 16325:1 16352:1 16355:1 16391:1 16393:1 16396:1 16404:1 16464:1 16476:1 16549:1 16554:1 16557:1 16571:2 16592:1 16616:1 16637:1 16682:1 16870:2 16887:1 16949:1 16991:1 16998:1 17021:1 17027:1 17053:2 17065:1 17069:433 17086:1 17150:1 17193:1 17260:1 17346:1 17350:1 17381:5 17398:2 17419:1 17449:1 17590:1 17641:1 17678:1 17689:1 17691:1 17723:1 17738:1 17772:2 17807:2 17826:1 17879:1 17927:1 17937:1 17949:1 17951:1 17957:1 17984:1 17985:1 18007:1 18011:1 18033:1 18157:1 18164:1 18202:1 18221:1 18241:1 18242:1 18349:1 18367:1 18430:1 18470:1 18481:1 18483:1 18510:1 18568:1 18589:2 18590:2 18594:1 18603:1 18611:1 18806:1 18826:1 18867:1 18903:1 18932:1 18937:1 19009:1 19063:1 19088:1 19102:1 19143:1 19186:1 19216:1 19217:1 19223:2 19254:1 19283:2 19321:1 19365:1 19386:1 19391:1 19423:1 19466:1 19603:1 19676:1 19680:1 19693:1 19731:1 19775:1 19777:1 19798:1 19802:1 19836:1 19892:1 19905:1 19909:2 19920:1 19927:1 19940:1 19941:1 19951:1 19994:1 20000:1 20025:1 20080:2 20184:1 20222:2 20274:1 20294:1 20305:1 20381:1 20383:2 20423:1 20433:1 20434:2 20464:1 20494:1 20540:1 20552:1 20564:1 20617:1 20625:5 20634:1 20672:1 20676:1 20692:1 20693:1 20776:1 20804:1 20853:1 20900:1 20903:1 21023:1 21064:1 21115:1 21128:1 21136:1 21146:1 21190:1 21261:1 21298:1 21342:1 21352:1 21359:1 21402:1 21498:1 21504:1 21514:1 21582:1 21586:1 21663:1 21696:1 21703:1 21724:1 21732:1 21746:1 21751:1 21780:1 21789:1 21841:1 21844:1 21858:1 21869:1 21892:1 21934:1 21956:1 21996:1 22041:1 22043:1 22079:1 22112:1 22197:1 22204:1 22264:1 22268:1 22276:1 22277:1 22279:1 22281:2 22283:2 22289:1 22290:1 22297:1 22304:2 22307:1 22323:1 22352:1 22357:1 22359:1 22371:1 22388:1 22408:1 22409:1 22428:1 22442:1 22463:1 22486:1 22503:1 22535:1 22546:1 22559:1 22594:1 22630:2 22715:1 22723:1 22808:1 22810:1 22834:1 22841:1 22942:2 22981:1 22988:1 22995:1 23004:2 23018:1 23078:1 23081:1 23089:1 23094:1 23104:1 23106:2 23124:2 23129:2 23185:2 23239:2 23249:1 23379:1 23391:1 23409:2 23443:1 23444:1 23452:1 23460:1 23608:1 23616:1 23632:1 23645:1 23735:1 23749:1 23796:2 23838:1 23856:1 23857:1 23862:1 23873:1 23908:4 23937:1 24050:1 24057:1 24089:1 24091:1 24097:1 24130:1 24156:1 24200:1 24242:1 24271:2 24293:2 24351:1 24383:1 24454:1 24489:1 24493:1 24588:2 24610:1 24718:1 24735:1 24756:1 24845:2 24849:1 24861:1 24876:1 24911:1 24928:1 24967:1 24990:1 25015:1 25020:1 25064:1 25147:1 25198:1 25230:3 25435:1 25443:1 25509:1 25541:1 25549:3 25553:2 25564:1 25590:1 25607:1 25640:1 25725:1 25738:1 25757:1 25766:1 25795:1 25804:1 25819:1 25824:1 25878:1 25880:1 25946:1 25964:1 25965:2 25966:1 25968:1 26035:1 26044:1 26062:1 26121:1 26151:1 26152:1 26186:1 26192:1 26232:1 26241:1 26249:1 26255:1 26264:1 26335:2 26349:1 26372:1 26399:1 26413:1 26451:1 26507:1 26511:1 26518:1 26536:1 26556:1 26595:1 26601:2 26614:1 26616:1 26638:2 26679:1 26714:1 26715:1 26716:1 26720:1 26742:1 26766:1 26771:1
9 8:1 10:1 38:1 66:1 91:1 157:1 166:1 168:1 177:1 205:2 223:1 243:1 259:1 268:1 283:7 294:1 313:1 315:1 328:1 340:1 392:1 420:3 435:1 553:1 561:1 590:1 594:2 597:1 598:1 637:1 676:1 740:1 756:1 760:1 781:1 797:1 816:1 818:1 828:1 829:1 843:3 860:1 868:1 872:3 875:1 883:1 884:1 888:1 893:2 930:1 940:1 956:1 962:1 987:1 1010:1 1059:2 1072:1 1096:2 1110:1 1155:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1331:2 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1437:1 1471:1 1476:1 1493:1 1548:1 1557:3 1561:1 1601:2 1621:1 1659:1 1682:1 1695:1 1723:1 1797:5 1802:1 1833:1 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:1 1975:1 2038:1 2064:1 2098:1 2104:1 2105:1 2112:1 2118:1 2125:1 2126:1 2129:1 2141:3 2144:4 2165:1 2195:1 2203:1 2212:1 2227:1 2261:1 2298:1 2310:2 2344:1 2360:2 2391:1 2397:1 2401:1 2408:1 2414:1 2443:2 2473:1 2477:1 2480:1 2493:1 2530:1 2533:1 2549:2 2580:1 2581:1 2583:1 2587:1 2596:2 2600:1 2670:1 2683:1 2702:1 2718:1 2733:2 2756:1 2761:2 2813:1 2881:1 2951:1 2963:1 3028:1 3032:1 3059:1 3109:1 3149:1 3171:1 3173:1 3214:1 3226:1 3230:1 3238:1 3293:2 3317:1 3322:1 3332:1 3348:2 3357:1 3386:3 3430:1 3435:1 3439:1 3445:1 3480:1 3486:2 3491:1 3525:1 3532:1 3533:1 3534:1 3548:1 3571:1 3584:1 3648:2 3706:1 3709:1 3715:1 3724:3 3725:2 3731:1 3806:1 3819:1 3856:1 3863:1 3866:1 3875:1 3925:1 3959:1 3986:1 4034:1 4055:2 4056:1 4123:1 4129:1 4145:1 4260:1 4263:2 4264:1 4272:1 4290:1 4331:1 4334:2 4365:1 4390:1 4398:1 4414:1 4448:1 4455:1 4458:1 4463:1 4513:3 4515:1 4531:1 4557:1 4560:2 4596:2 4608:1 4610:1 4615:2 4628:1 4640:1 4643:2 4662:1 4751:1 4765:1 4769:1 4795:1 4812:1 4822:1 4850:1 4875:1 4878:1 4898:1 4926:3 4942:2 5047:1 5078:1 5088:1 5091:2 5100:1 5136:1 5169:1 5191:1 5217:2 5278:2 5304:1 5365:1 5391:1 5424:1 5518:1 5519:2 5546:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5685:1 5724:1 5773:1 5788:2 5791:1 5801:1 5804:1 5805:1 5807:1 5813:1 5815:2 5816:1 5928:1 6063:1 6078:1 6088:1 6110:1 6179:1 6201:3 6212:1 6218:1 6253:1 6262:1 6280:1 6333:2 6340:1 6352:1 6380:1 6455:1 6475:1 6476:1 6519:1 6523:1 6543:1 6568:1 6615:1 6658:1 6671:1 6717:1 6720:1 6754:1 6804:1 6866:1 6882:1 6883:2 6919:1 6920:3 6933:1 6944:2 6963:2 6979:12 7003:1 7004:2 7010:1 7058:1 7070:1 7081:1 7087:1 7105:1 7107:1 7169:1 7244:1 7265:1 7386:2 7388:1 7402:1 7446:1 7455:1 7473:1 7495:1 7500:1 7554:1 7572:1 7602:2 7618:1 7657:1 7660:1 7678:1 7693:1 7702:1 7715:1 7720:2 7787:2 7794:1 7796:1 7838:1 7863:1 7869:1 7872:2 7879:1 7931:1 7965:1 7973:1 8000:1 8007:1 8050:1 8052:1 8093:1 8096:2 8100:1 8119:1 8121:1 8124:1 8147:1 8182:1 8204:2 8215:1 8275:1 8277:1 8300:1 8323:1 8336:1 8352:1 8360:1 8443:1 8460:7 8484:1 8493:1 8531:1 8576:1 8584:1 8585:1 8587:1 8608:1 8625:1 8633:1 8649:1 8651:1 8682:1 8724:1 8725:1 8757:1 8771:1 8772:1 8790:1 8798:1 8826:1 8857:1 8864:2 8867:1 8868:1 8890:1 8931:1 8990:1 9040:1 9086:1 9094:1 9108:1 9135:1 9142:1 9215:1 9235:1 9262:1 9274:1 9388:1 9430:1 9447:1 9470:1 9513:1 9553:1 9584:1 9605:2 9610:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9717:1 9758:2 9778:4 9843:1 9866:1 9870:1 9914:1 9945:1 10003:1 10007:1 10014:1 10023:1 10043:1 10059:1 10065:1 10110:1 10111:1 10117:1 10127:1 10143:1 10146:1 10156:1 10246:1 10251:1 10316:1 10317:1 10332:1 10339:1 10361:1 10395:1 10396:1 10398:1 10450:1 10484:1 10490:1 10493:1 10498:1 10536:1 10548:1 10554:1 10573:1 10616:2 10634:1 10668:1 10678:1 10693:1 10728:1 10744:1 10790:1 10829:1 10862:1 10871:1 10913:1 10929:1 10953:1 10978:1 10982:1 11062:1 11063:2 11065:1 11082:1 11115:1 11116:1 11128:1 11177:1 11187:1 11215:2 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11411:1 11438:1 11443:1 11454:1 11522:1 11534:1 11561:1 11578:1 11586:1 11590:1 11599:1 11622:1 11687:1 11696:1 11715:1 11745:1 11768:1 11813:1 11824:1 11838:1 11945:1 11949:1 11972:1 11982:1 11988:1 11995:1 11996:1 12027:1 12043:1 12075:1 12103:1 12118:2 12124:1 12127:1 12168:1 12186:3 12188:1 12200:1 12217:1 12226:1 12237:1 12243:3 12284:1 12285:1 12398:1 12454:1 12460:2 12462:1 12465:1 12480:1 12485:1 12528:1 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:1 12664:1 12667:1 12686:1 12727:1 12745:1 12751:1 12796:1 12820:1 12834:1 12883:1 12899:1 12908:1 12915:1 12933:1 12946:1 12970:1 13001:2 13011:1 13032:1 13057:1 13083:1 13086:1 13090:1 13092:1 13104:1 13145:1 13151:1 13193:1 13198:1 13214:2 13288:1 13340:1 13367:1 13486:1 13563:2 13570:1 13586:1 13637:1 13639:1 13659:1 13679:1 13680:1 13700:1 13741:1 13752:1 13771:1 13856:1 13864:1 13897:1 13947:1 14033:1 14043:1 14098:1 14103:1 14104:1 14115:1 14119:1 14135:1 14177:2 14228:1 14263:1 14290:2 14305:1 14306:1 14320:1 14321:1 14351:1 14359:1 14389:1 14418:3 14492:1 14493:1 14533:1 14540:3 14546:1 14548:1 14557:1 14669:1 14675:1 14687:2 14730:1 14747:1 14750:1 14782:1 14822:1 14825:1 14829:1 14900:1 14942:1 15010:1 15093:1 15100:1 15113:1 15124:1 15224:1 15241:1 15244:2 15272:1 15309:1 15329:1 15341:1 15402:1 15405:2 15410:1 15459:1 15468:1 15495:1 15508:1 15544:1 15578:1 15583:1 15607:3 15636:1 15638:1 15675:1 15688:1 15697:2 15705:2 15778:2 15869:1 15897:1 15916:1 15962:1 15963:2 15992:3 16041:3 16102:1 16104:1 16113:2 16126:1 16153:1 16164:1 16189:2 16195:1 16207:1 16221:1 16278:1 16284:1 16311:6 16317:1 16323:1 16325:1 16352:1 16355:1 16391:1 16393:1 16396:1 16404:1 16418:1 16464:1 16476:1 16532:1 16549:1 16554:1 16557:1 16571:2 16592:1 16616:1 16637:1 16682:1 16728:1 16870:2 16887:1 16949:1 16991:1 16998:1 17021:1 17027:1 17053:2 17065:1 17069:524 17086:1 17150:1 17193:1 17260:1 17266:1 17346:1 17350:1 17381:7 17398:2 17419:1 17449:1 17573:1 17582:1 17590:1 17641:1 17673:1 17678:1 17689:1 17691:1 17697:1 17723:1 17738:1 17772:3 17807:2 17808:1 17826:1 17879:1 17924:1 17927:1 17937:1 17949:1 17951:1 17957:1 17984:1 17985:1 18007:1 18011:1 18033:1 18106:1 18157:1 18164:1 18184:1 18202:1 18221:1 18241:1 18242:1 18330:1 18349:1 18367:1 18409:1 18430:1 18437:1 18470:1 18481:1 18483:1 18510:1 18568:1 18589:2 18590:2 18594:1 18603:1 18611:1 18661:1 18758:1 18806:1 18826:1 18867:1 18903:2 18932:1 18937:1 19009:1 19016:1 19032:1 19042:1 19063:1 19088:1 19102:1 19143:1 19186:1 19216:1 19217:1 19223:2 19232:1 19254:1 19283:2 19321:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19466:1 19581:1 19603:1 19667:1 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:1 19763:1 19775:1 19777:1 19798:1 19802:2 19836:1 19892:1 19905:1 19909:2 19920:1 19927:1 19940:1 19941:1 19942:1 19951:1 19994:1 20000:1 20025:1 20032:1 20039:1 20080:2 20158:1 20167:1 20184:1 20222:2 20232:1 20272:1 20274:1 20294:1 20305:2 20381:1 20383:2 20385:1 20396:2 20423:1 20433:1 20434:2 20464:1 20494:1 20534:1 20540:1 20552:1 20564:1 20567:1 20617:1 20624:1 20625:6 20634:1 20672:1 20676:1 20692:1 20693:1 20776:1 20779:1 20786:1 20804:1 20853:1 20882:1 20900:1 20903:1 21023:1 21064:1 21114:1 21115:1 21128:1 21131:1 21136:1 21146:1 21190:1 21261:2 21298:1 21317:1 21342:1 21352:1 21359:1 21402:1 21483:1 21495:1 21498:1 21504:1 21514:1 21582:1 21586:1 21597:1 21636:1 21663:1 21696:1 21703:1 21724:1 21732:1 21746:1 21751:1 21780:1 21789:1 21841:1 21844:1 21858:1 21869:1 21892:1 21915:1 21923:1 21934:1 21956:1 21996:1 22018:1 22041:1 22042:1 22043:1 22079:1 22110:1 22112:1 22154:1 22197:1 22204:1 22215:1 22264:1 22268:1 22276:1 22277:1 22279:1 22281:2 22283:2 22289:1 22290:1 22297:1 22304:2 22307:1 22323:1 22352:1 22357:1 22359:1 22371:1 22388:1 22408:1 22409:1 22428:1 22442:1 22463:1 22486:1 22503:1 22535:2 22546:1 22549:1 22559:1 22594:1 22630:2 22631:1 22691:1 22713:1 22715:1 22723:1 22775:1 22789:1 22808:1 22810:1 22832:1 22834:1 22841:1 22912:1 22942:2 22981:1 22988:1 22995:1 23004:2 23018:1 23078:1 23081:1 23089:1 23094:1 23104:1 23106:3 23121:1 23123:1 23124:2 23129:2 23146:1 23152:1 23185:2 23239:2 23249:1 23379:1 23391:1 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23527:1 23608:1 23614:1 23616:1 23632:1 23645:1 23688:1 23735:1 23749:1 23770:1 23796:2 23838:1 23856:1 23857:1 23862:1 23873:1 23908:4 23910:1 23937:1 23952:1 24050:1 24057:1 24089:1 24091:1 24097:1 24130:1 24156:1 24172:1 24200:1 24218:1 24242:1 24271:2 24293:2 24351:1 24383:1 24454:1 24489:1 24493:1 24588:2 24610:1 24635:1 24718:1 24735:1 24756:1 24797:1 24845:2 24849:1 24861:1 24876:1 24911:1 24928:1 24967:1 24990:1 24993:1 25015:1 25020:1 25064:1 25147:1 25198:1 25230:3 25435:1 25443:1 25462:1 25509:1 25541:1 25549:3 25553:2 25564:1 25590:1 25607:1 25640:1 25677:1 25719:3 25725:1 25738:1 25757:1 25766:1 25795:1 25804:1 25819:1 25824:1 25859:1 25878:1 25880:1 25897:1 25912:1 25946:1 25964:1 25965:2 25966:1 25968:1 26035:1 26044:1 26050:1 26062:1 26098:1 26121:1 26151:1 26152:1 26186:1 26192:1 26232:1 26241:1 26249:1 26255:1 26264:1 26294:1 26325:1 26335:2 26349:1 26372:1 26399:1 26413:1 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26595:1 26601:2 26614:1 26616:1 26638:3 26679:1 26714:2 26715:1 26716:1 26720:1 26727:1 26742:1 26766:1 26771:1
9 8:1 10:1 38:1 66:1 91:1 132:1 157:1 166:1 168:1 177:1 185:1 205:2 223:1 243:1 259:1 268:1 283:8 294:1 313:1 315:1 328:1 340:1 392:1 420:3 435:1 553:1 561:1 590:1 594:2 597:1 598:1 637:1 676:1 740:1 756:1 760:1 781:1 794:1 797:1 816:1 818:1 828:1 829:1 843:4 860:1 868:1 872:3 875:1 883:1 884:1 888:1 893:2 930:1 940:2 956:1 962:1 987:1 1010:1 1046:1 1059:2 1072:1 1096:2 1110:1 1155:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1331:2 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1437:1 1471:1 1476:1 1493:1 1520:1 1548:1 1557:3 1561:1 1601:2 1621:1 1659:1 1682:1 1695:1 1723:1 1797:6 1802:1 1833:1 1853:1 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:1 1975:1 2035:1 2038:1 2060:1 2064:1 2098:1 2104:1 2105:1 2109:1 2112:1 2118:1 2125:1 2126:1 2129:1 2141:3 2144:4 2165:1 2195:1 2203:1 2212:1 2227:1 2234:1 2261:1 2298:1 2310:2 2344:1 2360:4 2391:1 2397:1 2401:1 2408:1 2414:1 2443:2 2473:1 2477:1 2480:1 2493:1 2530:1 2533:1 2549:2 2580:1 2581:1 2583:1 2587:1 2596:2 2600:1 2670:1 2683:2 2702:1 2718:1 2733:3 2756:1 2761:2 2813:1 2881:1 2951:1 2963:1 3006:1 3028:1 3032:1 3059:1 3109:1 3149:1 3157:1 3171:1 3173:1 3214:1 3226:1 3230:1 3238:1 3293:2 3317:1 3322:1 3332:1 3348:2 3357:1 3364:1 3386:3 3430:1 3435:1 3439:1 3445:1 3480:1 3486:2 3490:1 3491:1 3525:1 3532:1 3533:2 3534:1 3548:1 3571:1 3584:1 3648:2 3701:1 3706:1 3709:1 3714:1 3715:1 3724:3 3725:2 3731:1 3806:1 3819:1 3856:1 3863:1 3866:1 3875:1 3924:1 3925:1 3959:1 3986:1 4034:1 4055:2 4056:1 4123:1 4129:1 4145:1 4170:1 4260:1 4263:2 4264:1 4272:1 4290:1 4331:1 4334:2 4365:1 4390:1 4398:1 4414:1 4448:1 4455:1 4458:1 4463:1 4513:4 4515:1 4531:1 4557:1 4560:2 4596:2 4608:1 4609:1 4610:1 4615:2 4628:1 4640:1 4643:2 4662:1 4751:1 4765:1 4769:1 4795:1 4812:1 4822:1 4850:1 4875:1 4878:1 4898:1 4926:3 4942:2 4952:1 4987:1 5047:1 5078:1 5088:1 5091:2 5100:1 5136:1 5169:1 5191:1 5217:2 5233:1 5278:2 5279:1 5304:1 5365:1 5391:1 5424:1 5518:1 5519:2 5546:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5673:1 5685:1 5724:1 5773:1 5788:2 5791:1 5801:1 5804:1 5805:1 5807:1 5813:1 5815:3 5816:2 5928:2 6063:1 6068:1 6078:1 6088:1 6110:1 6155:1 6179:1 6201:3 6212:1 6218:1 6253:1 6262:1 6280:1 6333:2 6340:1 6352:1 6364:1 6380:1 6455:1 6475:2 6476:1 6515:1 6519:1 6523:1 6543:1 6568:1 6615:1 6630:1 6658:1 6671:1 6717:1 6720:1 6734:1 6754:1 6804:1 6833:1 6866:1 6882:1 6883:2 6919:1 6920:4 6933:1 6944:2 6963:2 6979:13 7003:1 7004:3 7010:1 7030:1 7058:1 7070:1 7081:1 7087:1 7105:1 7107:1 7169:1 7244:1 7265:1 7386:2 7388:1 7402:1 7438:1 7446:1 7455:1 7460:1 7473:3 7495:1 7500:1 7537:1 7554:1 7572:1 7602:2 7618:1 7657:1 7660:1 7678:1 7686:1 7693:1 7702:1 7715:1 7720:4 7774:1 7787:2 7791:1 7794:1 7796:1 7797:1 7833:1 7838:1 7863:1 7869:1 7872:2 7879:1 7931:1 7965:1 7973:1 8000:1 8007:1 8050:1 8052:1 8093:1 8095:1 8096:2 8100:1 8119:1 8121:1 8124:1 8147:1 8182:1 8204:2 8215:1 8233:1 8275:1 8277:1 8300:1 8312:1 8323:1 8336:1 8352:1 8360:1 8443:1 8460:8 8484:1 8493:1 8531:1 8576:1 8584:1 8585:1 8587:1 8608:1 8625:1 8633:1 8649:1 8651:1 8682:1 8724:1 8725:1 8757:1 8771:1 8772:1 8790:1 8798:1 8826:1 8833:1 8857:1 8864:2 8867:1 8868:1 8890:1 8931:2 8990:1 9040:1 9070:1 9086:1 9094:1 9108:1 9111:1 9120:1 9135:1 9142:1 9215:1 9235:1 9262:1 9263:1 9274:1 9388:1 9430:1 9447:1 9470:1 9492:1 9513:1 9553:1 9584:1 9592:1 9605:2 9610:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9717:1 9758:2 9778:4 9843:1 9866:1 9870:1 9914:1 9945:1 9970:1 10003:1 10007:1 10014:1 10023:1 10043:1 10059:1 10065:1 10066:1 10110:1 10111:1 10117:1 10127:1 10143:1 10146:1 10156:1 10211:1 10220:1 10246:1 10251:1 10316:1 10317:1 10332:1 10339:1 10361:1 10395:1 10396:1 10398:1 10450:1 10484:1 10490:1 10493:1 10498:1 10536:1 10548:1 10554:1 10573:1 10616:2 10631:1 10634:1 10668:1 10678:1 10693:1 10728:1 10744:1 10777:1 10790:1 10829:1 10862:1 10871:1 10913:1 10929:1 10953:1 10978:1 10982:1 11062:1 11063:2 11065:1 11082:1 11115:1 11116:1 11128:1 11135:1 11177:1 11187:1 11215:2 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11411:1 11438:1 11443:1 11454:1 11522:1 11534:1 11543:1 11561:1 11578:1 11586:1 11590:1 11599:1 11622:1 11655:1 11687:1 11696:1 11715:1 11723:1 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11945:1 11949:1 11972:1 11978:1 11982:1 11988:1 11995:1 11996:1 12027:1 12043:1 12075:1 12103:1 12107:1 12110:1 12118:2 12124:1 12127:1 12145:1 12168:1 12186:3 12188:1 12200:1 12217:1 12226:1 12237:1 12243:3 12265:1 12284:1 12285:1 12398:1 12454:1 12457:1 12460:2 12462:1 12465:1 12475:1 12480:1 12485:1 12528:1 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:1 12664:1 12667:1 12686:1 12727:1 12745:1 12751:1 12796:1 12820:1 12834:1 12883:2 12899:1 12908:1 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13057:1 13083:1 13086:1 13090:1 13092:1 13104:1 13145:1 13151:1 13193:1 13198:1 13214:2 13288:1 13321:1 13340:1 13367:1 13391:1 13486:1 13563:2 13570:1 13586:1 13637:1 13639:1 13659:1 13679:1 13680:1 13700:1 13741:1 13752:1 13771:1 13856:1 13864:1 13897:1 13947:1 14015:1 14033:1 14043:2 14089:1 14098:1 14103:1 14104:1 14115:1 14119:1 14131:1 14135:1 14164:1 14177:2 14228:1 14263:1 14290:2 14305:1 14306:1 14320:1 14321:1 14351:1 14359:1 14389:1 14418:3 14492:1 14493:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:1 14653:1 14669:2 14675:1 14687:2 14730:1 14747:1 14750:1 14782:1 14803:1 14809:1 14822:1 14825:1 14829:1 14900:1 14942:1 14971:1 15004:1 15010:1 15093:1 15100:1 15113:1 15124:1 15175:1 15186:1 15224:1 15241:1 15244:2 15272:1 15278:1 15285:1 15309:1 15329:1 15341:1 15402:1 15405:2 15410:1 15459:1 15468:1 15495:1 15508:1 15544:1 15578:1 15583:1 15607:3 15636:1 15638:1 15661:1 15675:1 15688:1 15697:2 15705:2 15778:2 15784:1 15869:1 15880:1 15897:2 15916:1 15920:1 15941:1 15962:1 15963:2 15992:3 15993:1 16041:3 16042:1 16102:1 16104:1 16113:2 16126:1 16153:1 16164:1 16170:1 16189:2 16195:1 16207:1 16221:1 16278:1 16284:1 16301:1 16311:7 16317:1 16323:1 16325:1 16352:1 16355:1 16391:1 16393:1 16396:1 16404:1 16418:1 16436:1 16464:1 16476:1 16514:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:2 16573:1 16592:1 16616:1 16637:1 16682:1 16728:1 16770:1 16870:4 16887:1 16949:1 16991:1 16998:1 17021:1 17023:1 17027:1 17053:2 17057:1 17065:1 17069:592 17086:1 17119:1 17150:1 17187:1 17193:1 17260:1 17266:1 17346:1 17350:1 17381:8 17398:2 17419:1 17449:1 17471:1 17573:1 17582:1 17590:1 17641:1 17673:1 17678:1 17689:1 17691:1 17697:1 17723:1 17738:1 17747:1 17772:4 17807:2 17808:1 17826:1 17879:1 17924:1 17927:1 17937:1 17949:1 17951:1 17957:1 17984:1 17985:1 17986:1 18007:1 18011:1 18033:1 18097:1 18106:1 18157:1 18164:1 18184:1 18202:1 18212:1 18221:1 18241:1 18242:1 18257:1 18275:1 18330:1 18349:1 18356:1 18367:1 18408:1 18409:1 18430:1 18437:1 18470:1 18481:1 18483:1 18510:1 18545:1 18568:1 18589:2 18590:2 18594:1 18603:1 18611:1 18651:1 18661:1 18758:1 18802:1 18806:2 18826:1 18867:1 18874:1 18903:2 18932:1 18937:1 18983:1 19003:1 19007:1 19009:1 19016:1 19032:1 19042:1 19063:1 19088:1 19102:1 19120:1 19143:1 19186:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:1 19283:2 19321:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19466:1 19581:1 19603:1 19656:1 19667:1 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:1 19763:1 19775:1 19777:1 19798:1 19802:3 19836:1 19892:1 19905:1 19909:3 19920:1 19927:2 19940:1 19941:1 19942:1 19951:1 19994:1 20000:1 20025:1 20032:1 20039:1 20044:1 20080:2 20158:1 20167:1 20184:1 20222:2 20232:1 20265:1 20272:1 20274:1 20294:1 20305:2 20355:1 20381:1 20383:2 20385:1 20396:2 20423:1 20433:1 20434:2 20464:1 20494:1 20534:1 20540:1 20552:1 20564:1 20567:1 20617:1 20624:1 20625:7 20634:1 20640:1 20672:1 20676:1 20692:1 20693:1 20776:1 20779:1 20786:1 20804:1 20853:1 20856:1 20868:1 20882:1 20900:1 20903:1 21023:1 21064:1 21114:1 21115:1 21128:1 21131:1 21136:1 21146:1 21190:1 21259:1 21261:2 21298:1 21317:1 21342:1 21352:1 21359:1 21402:1 21451:1 21455:1 21483:1 21495:1 21498:1 21504:1 21514:2 21550:1 21582:1 21586:1 21597:1 21636:1 21663:1 21696:1 21703:1 21723:1 21724:1 21732:1 21746:1 21751:1 21780:1 21789:1 21841:1 21844:1 21858:1 21869:1 21892:1 21915:1 21923:1 21934:1 21956:1 21996:1 22005:1 22018:1 22041:1 22042:1 22043:1 22079:1 22085:1 22110:1 22112:1 22154:1 22166:1 22197:1 22204:1 22215:1 22264:1 22268:1 22276:1 22277:1 22279:1 22281:2 22283:2 22284:1 22289:1 22290:1 22297:1 22304:2 22307:1 22323:1 22352:1 22357:1 22359:1 22371:1 22388:1 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22503:1 22535:2 22546:1 22549:1 22559:1 22594:1 22630:2 22631:1 22691:1 22702:1 22713:1 22715:1 22723:1 22775:1 22789:1 22808:1 22810:1 22832:1 22834:1 22841:1 22912:1 22942:2 22962:1 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23078:1 23081:1 23089:1 23094:1 23104:1 23106:3 23121:1 23123:2 23124:3 23129:2 23146:1 23149:1 23152:1 23185:2 23239:2 23249:1 23379:1 23391:1 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23527:1 23608:1 23614:1 23616:1 23632:1 23645:1 23688:1 23703:1 23735:1 23740:1 23749:1 23770:1 23796:4 23838:1 23856:1 23857:1 23862:1 23873:1 23908:4 23910:1 23937:1 23952:1 24050:2 24057:1 24089:1 24091:1 24097:1 24130:1 24156:1 24172:1 24200:1 24218:1 24242:1 24271:4 24293:2 24351:1 24383:1 24404:1 24454:1 24489:1 24493:1 24588:2 24610:2 24619:1 24635:1 24685:1 24718:1 24735:1 24756:2 24797:1 24845:2 24849:1 24861:1 24876:1 24887:1 24911:1 24928:1 24967:1 24990:1 24993:1 25015:1 25020:1 25064:1 25147:1 25198:1 25230:3 25435:2 25443:1 25462:1 25509:1 25541:1 25549:6 25550:1 25553:4 25564:1 25590:1 25607:1 25640:1 25677:1 25696:1 25719:4 25725:1 25738:1 25757:1 25766:1 25780:1 25795:1 25804:1 25819:1 25824:1 25856:1 25859:1 25878:1 25880:1 25897:1 25912:1 25946:1 25964:1 25965:2 25966:1 25968:1 26035:1 26044:1 26050:1 26062:1 26098:1 26121:1 26151:1 26152:1 26186:1 26192:1 26211:1 26232:1 26241:1 26249:1 26255:1 26264:1 26294:1 26325:1 26335:2 26349:1 26372:1 26399:1 26413:1 26438:1 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26595:1 26601:2 26614:1 26616:1 26638:3 26649:1 26679:1 26714:2 26715:1 26716:1 26720:1 26726:1 26727:1 26742:1 26766:1 26771:1
9 8:1 10:1 38:1 66:1 91:1 114:1 132:1 157:1 166:1 168:1 177:1 185:1 205:2 223:1 243:1 259:1 268:1 282:1 283:9 294:1 313:1 315:2 328:1 340:1 392:1 420:3 435:1 440:1 553:1 561:1 590:1 594:2 597:1 598:1 637:1 676:1 740:1 756:1 760:1 770:1 781:1 794:1 797:1 816:1 818:1 828:1 829:1 843:4 860:1 868:1 872:3 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:2 956:1 962:1 964:1 987:1 1010:1 1046:1 1059:2 1072:1 1096:2 1104:1 1110:1 1155:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1331:2 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1437:1 1471:1 1476:1 1493:1 1502:1 1520:1 1524:1 1548:1 1557:3 1561:1 1601:2 1621:1 1659:1 1682:1 1695:1 1723:1 1797:6 1802:1 1833:1 1853:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:1 1975:1 2035:1 2038:1 2058:1 2060:1 2064:1 2096:1 2098:1 2104:1 2105:1 2109:2 2112:2 2118:1 2125:1 2126:1 2129:1 2141:4 2144:5 2165:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2261:1 2298:1 2310:3 2344:1 2360:4 2391:2 2397:1 2401:1 2408:2 2414:1 2443:2 2473:1 2477:2 2480:1 2493:1 2502:1 2530:1 2533:1 2549:3 2580:1 2581:1 2583:1 2587:1 2596:2 2600:1 2670:1 2683:2 2702:1 2718:1 2733:3 2756:1 2761:3 2765:1 2813:1 2857:1 2881:1 2951:1 2963:1 3006:1 3024:1 3028:1 3032:1 3059:1 3062:1 3109:1 3149:1 3157:1 3171:1 3173:1 3214:1 3225:1 3226:1 3230:1 3238:1 3270:1 3293:2 3317:1 3322:1 3332:1 3348:3 3357:1 3364:1 3386:3 3430:1 3435:1 3439:1 3445:2 3480:1 3486:2 3489:1 3490:1 3491:1 3520:1 3524:1 3525:1 3532:1 3533:3 3534:1 3548:1 3571:1 3584:1 3638:1 3648:2 3701:1 3706:1 3709:1 3714:1 3715:1 3724:3 3725:2 3731:1 3770:1 3787:2 3806:1 3819:1 3856:1 3863:1 3866:1 3875:1 3924:1 3925:1 3959:1 3978:1 3986:1 4034:1 4055:2 4056:1 4123:1 4129:1 4145:1 4170:1 4260:1 4263:2 4264:1 4272:2 4290:1 4331:1 4334:3 4365:1 4388:1 4390:1 4398:1 4414:1 4448:1 4455:1 4458:1 4463:2 4513:4 4515:1 4530:1 4531:2 4557:1 4560:4 4566:1 4596:3 4607:1 4608:1 4609:1 4610:1 4615:2 4628:1 4640:1 4643:2 4662:1 4682:1 4751:1 4765:1 4769:1 4795:1 4812:2 4822:1 4850:1 4875:1 4878:1 4898:1 4926:3 4942:2 4952:1 4987:1 5047:1 5074:1 5078:1 5086:1 5088:1 5091:2 5100:1 5136:2 5169:2 5191:1 5217:2 5233:1 5278:2 5279:1 5304:1 5365:1 5391:1 5397:1 5424:1 5493:1 5518:1 5519:4 5546:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5673:1 5685:1 5688:1 5711:1 5724:1 5773:1 5788:2 5791:1 5801:1 5804:1 5805:1 5807:1 5813:1 5815:5 5816:2 5928:2 6063:1 6068:1 6078:1 6088:1 6110:1 6155:1 6179:1 6201:3 6212:1 6218:1 6223:1 6253:1 6262:1 6280:1 6333:2 6340:1 6352:1 6364:1 6380:1 6448:1 6455:1 6462:1 6475:2 6476:1 6515:1 6519:1 6523:1 6543:1 6568:1 6615:1 6630:1 6658:1 6671:1 6717:1 6720:1 6734:1 6754:1 6760:1 6804:1 6833:1 6866:1 6882:1 6883:2 6919:1 6920:5 6933:1 6943:1 6944:2 6963:2 6979:17 7003:1 7004:3 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:1 7169:1 7244:1 7265:1 7345:1 7386:2 7388:2 7402:1 7438:1 7446:1 7455:1 7460:1 7473:3 7495:1 7500:1 7537:1 7554:1 7572:1 7602:2 7610:1 7618:1 7657:1 7660:1 7678:2 7686:1 7693:1 7702:1 7706:1 7715:1 7720:4 7774:1 7787:2 7789:1 7791:1 7794:1 7796:1 7797:1 7833:1 7838:1 7863:1 7869:1 7872:2 7879:1 7931:1 7965:1 7973:1 8000:1 8007:1 8050:1 8052:2 8093:1 8095:1 8096:3 8100:1 8119:1 8121:1 8124:1 8146:1 8147:1 8182:1 8204:2 8215:1 8233:1 8275:1 8277:1 8300:1 8312:1 8323:1 8336:1 8352:1 8360:1 8443:1 8449:1 8460:9 8484:1 8493:1 8531:1 8537:1 8564:1 8576:1 8584:1 8585:2 8587:1 8608:1 8625:1 8633:1 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8757:1 8771:1 8772:1 8790:1 8798:1 8826:1 8833:1 8857:1 8864:2 8867:1 8868:2 8890:1 8931:2 8990:1 9010:1 9030:1 9040:1 9055:1 9070:1 9074:1 9086:1 9094:1 9108:1 9111:1 9120:2 9135:1 9142:1 9215:1 9235:1 9262:1 9263:1 9274:1 9388:1 9430:1 9447:1 9462:1 9470:1 9481:1 9492:1 9513:1 9553:1 9584:1 9592:1 9605:2 9610:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9692:1 9717:1 9758:2 9778:4 9843:1 9866:1 9870:1 9914:1 9945:1 9970:1 9974:1 9976:1 10003:1 10007:1 10014:1 10023:1 10043:2 10059:1 10065:1 10066:1 10110:1 10111:1 10117:1 10127:1 10143:1 10146:1 10156:1 10211:1 10220:1 10246:1 10251:1 10316:1 10317:1 10332:1 10333:1 10339:1 10361:1 10395:1 10396:1 10398:1 10450:1 10463:1 10484:1 10490:1 10493:1 10498:1 10531:1 10536:1 10548:1 10554:1 10573:1 10616:2 10631:1 10634:1 10668:1 10678:1 10693:1 10701:1 10728:1 10744:1 10777:1 10790:1 10829:1 10862:2 10871:1 10913:1 10929:1 10953:2 10978:1 10982:1 11062:2 11063:3 11065:1 11082:1 11115:1 11116:1 11128:1 11135:1 11177:1 11187:1 11210:1 11215:2 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11398:1 11411:1 11438:1 11443:1 11454:1 11522:1 11534:1 11543:1 11561:1 11578:1 11586:1 11590:1 11599:1 11622:1 11655:1 11687:1 11696:1 11715:1 11723:1 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11945:1 11949:1 11972:1 11978:2 11982:1 11988:1 11995:1 11996:1 12027:1 12043:1 12075:1 12103:1 12107:1 12110:1 12118:2 12124:1 12127:1 12145:1 12164:1 12168:1 12186:3 12188:1 12200:1 12217:1 12226:1 12237:1 12243:3 12265:1 12284:1 12285:1 12398:1 12418:1 12454:1 12457:1 12460:2 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:1 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:2 12664:1 12667:1 12668:1 12686:1 12727:1 12745:1 12751:1 12796:1 12820:1 12834:1 12883:3 12896:1 12899:1 12908:2 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13057:1 13083:1 13086:1 13090:1 13092:2 13100:1 13104:1 13145:1 13151:1 13193:1 13198:1 13214:2 13288:1 13321:1 13340:1 13367:1 13391:1 13486:1 13563:3 13570:1 13586:1 13637:2 13639:1 13659:1 13679:1 13680:1 13700:1 13741:1 13752:1 13771:1 13856:1 13864:1 13897:1 13903:1 13947:1 14015:1 14033:1 14043:3 14089:1 14098:1 14103:1 14104:1 14115:1 14119:1 14131:1 14135:1 14164:1 14177:2 14228:1 14252:1 14263:1 14275:1 14290:2 14295:1 14305:1 14306:1 14320:1 14321:1 14351:1 14359:1 14389:1 14418:3 14492:1 14493:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:1 14616:1 14653:1 14669:3 14675:1 14687:2 14730:1 14747:1 14750:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15010:1 15093:1 15100:1 15113:1 15124:1 15175:1 15186:1 15224:1 15241:1 15244:2 15272:1 15278:1 15285:1 15309:1 15329:1 15341:1 15402:1 15405:2 15410:1 15459:1 15468:1 15480:1 15495:1 15508:1 15544:1 15578:1 15583:2 15607:3 15636:1 15638:1 15661:1 15675:1 15688:1 15697:2 15705:2 15774:1 15778:2 15784:1 15869:1 15880:1 15897:2 15916:1 15920:1 15941:1 15962:1 15963:2 15992:3 15993:1 16041:4 16042:2 16075:1 16102:1 16104:1 16113:4 16126:1 16153:1 16164:2 16170:1 16189:2 16195:1 16207:1 16221:1 16254:1 16278:1 16284:1 16301:2 16311:8 16317:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16436:1 16464:1 16476:1 16514:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:2 16573:1 16583:1 16592:1 16616:1 16637:1 16682:1 16728:1 16770:1 16870:4 16887:1 16949:1 16991:1 16998:1 17021:2 17023:1 17027:1 17053:2 17057:1 17065:1 17069:669 17086:1 17118:1 17119:1 17150:1 17187:1 17193:1 17260:1 17266:1 17346:1 17350:1 17381:9 17398:2 17419:1 17449:1 17471:1 17543:1 17573:1 17582:1 17590:1 17641:1 17673:1 17678:1 17689:1 17691:1 17697:1 17707:1 17719:1 17723:1 17738:1 17747:1 17772:5 17807:2 17808:1 17826:1 17879:1 17924:1 17927:1 17937:1 17949:1 17951:1 17957:1 17984:1 17985:1 17986:1 18007:1 18011:1 18033:1 18097:1 18106:1 18157:1 18164:1 18184:1 18202:1 18212:1 18221:1 18241:1 18242:1 18257:1 18275:1 18330:1 18349:1 18356:1 18367:1 18382:1 18408:1 18409:1 18430:1 18437:1 18470:1 18481:1 18483:1 18510:1 18545:1 18568:1 18589:2 18590:2 18594:1 18603:1 18606:1 18611:1 18651:1 18661:1 18758:1 18802:1 18806:2 18815:1 18826:1 18867:1 18874:1 18903:3 18932:1 18937:1 18983:1 18984:1 19003:1 19007:1 19009:1 19016:1 19032:1 19042:1 19063:1 19088:1 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:1 19283:2 19321:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19466:1 19470:1 19581:1 19603:1 19631:1 19656:1 19667:1 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:1 19763:1 19775:1 19777:1 19798:1 19802:4 19836:1 19892:1 19897:1 19905:1 19909:4 19920:1 19927:2 19940:1 19941:1 19942:1 19951:1 19994:1 20000:1 20025:1 20032:1 20039:1 20044:1 20063:1 20080:2 20158:1 20167:1 20184:1 20222:2 20232:1 20265:1 20272:1 20274:1 20294:1 20305:2 20355:1 20381:1 20383:2 20385:1 20396:2 20423:1 20433:1 20434:2 20464:2 20494:1 20505:1 20534:1 20540:1 20552:1 20564:1 20567:1 20617:1 20624:1 20625:8 20634:1 20640:1 20672:1 20676:1 20692:1 20693:1 20776:1 20779:1 20786:1 20804:1 20807:1 20853:1 20856:1 20868:1 20876:1 20882:1 20900:1 20903:1 20912:1 21023:1 21064:1 21114:1 21115:1 21128:2 21131:1 21136:1 21146:1 21155:1 21190:1 21259:1 21261:2 21298:1 21317:1 21342:1 21345:1 21352:1 21359:1 21388:1 21402:1 21451:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:3 21550:1 21582:1 21586:1 21597:1 21636:1 21663:1 21696:1 21703:1 21723:1 21724:1 21732:1 21746:2 21751:1 21780:1 21789:1 21841:1 21844:1 21858:1 21869:1 21892:1 21915:1 21923:1 21934:1 21956:1 21996:1 22005:2 22013:2 22018:1 22041:1 22042:1 22043:1 22079:1 22085:1 22110:1 22112:1 22154:1 22166:1 22197:1 22204:1 22215:1 22264:1 22268:1 22276:1 22277:1 22279:1 22281:2 22283:3 22284:1 22289:1 22290:1 22297:1 22304:2 22307:1 22323:1 22352:1 22357:2 22359:1 22371:1 22388:1 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22503:1 22535:2 22546:2 22549:1 22559:1 22594:1 22630:2 22631:1 22691:1 22702:1 22713:1 22715:2 22723:1 22775:1 22789:1 22808:1 22810:2 22832:1 22834:1 22841:2 22912:1 22942:3 22962:2 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23078:1 23081:2 23089:1 23094:1 23104:1 23106:3 23121:1 23123:2 23124:4 23129:2 23146:1 23149:1 23152:1 23185:2 23239:2 23249:1 23315:1 23379:1 23391:1 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23608:1 23614:1 23616:1 23632:1 23645:1 23688:1 23703:1 23735:1 23740:1 23749:1 23770:1 23796:4 23814:1 23838:1 23856:1 23857:1 23862:1 23873:1 23908:4 23910:1 23937:1 23952:1 24050:2 24057:1 24087:1 24089:1 24091:1 24097:1 24130:1 24156:1 24172:1 24200:1 24218:1 24242:1 24256:1 24271:4 24293:2 24351:1 24383:1 24404:1 24454:1 24489:1 24493:1 24588:2 24610:2 24619:1 24635:1 24653:1 24674:1 24685:2 24718:1 24735:1 24756:3 24797:1 24816:1 24845:2 24849:2 24861:1 24876:1 24887:1 24908:1 24911:1 24928:1 24967:1 24990:1 24993:1 25015:1 25020:1 25064:1 25147:1 25198:1 25230:3 25435:3 25443:1 25462:1 25509:1 25541:1 25549:6 25550:1 25553:4 25564:1 25590:1 25607:1 25640:1 25677:1 25696:1 25719:5 25725:1 25738:1 25757:1 25766:1 25780:1 25795:1 25804:1 25819:1 25821:1 25824:1 25856:1 25859:1 25878:1 25880:1 25897:1 25902:1 25912:1 25946:1 25964:1 25965:2 25966:1 25968:1 26035:1 26044:1 26050:1 26062:1 26098:1 26121:1 26151:1 26152:1 26186:1 26192:1 26204:1 26211:1 26232:1 26241:1 26247:1 26249:1 26255:1 26264:1 26294:1 26325:1 26335:2 26349:1 26372:1 26399:1 26413:1 26438:1 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26595:1 26601:4 26614:1 26616:1 26638:3 26649:2 26679:1 26714:3 26715:2 26716:1 26720:1 26726:1 26727:1 26742:1 26766:2 26771:2
9 8:1 10:1 38:1 66:1 91:1 92:1 114:1 132:1 157:1 166:1 168:1 177:1 185:2 205:2 223:1 243:1 259:1 268:1 282:1 283:10 294:1 313:1 315:2 328:1 340:1 392:1 420:3 435:1 440:1 550:2 553:1 561:1 590:1 594:2 597:1 598:1 637:1 676:1 740:1 756:1 760:1 770:1 781:1 794:1 797:1 816:2 818:1 828:1 829:1 843:4 860:1 868:1 872:3 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:2 956:1 962:1 964:1 982:1 987:1 1010:1 1036:1 1046:1 1059:2 1072:1 1096:2 1104:1 1110:1 1155:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1326:2 1331:3 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1437:1 1471:1 1476:1 1493:1 1502:1 1520:1 1524:1 1548:1 1557:3 1561:1 1601:2 1621:1 1659:1 1682:1 1695:1 1723:1 1797:7 1802:1 1827:1 1833:1 1853:2 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:1 1975:1 1986:1 2035:1 2038:1 2058:1 2060:1 2063:1 2064:2 2077:1 2096:1 2098:1 2104:1 2105:1 2108:1 2109:2 2112:2 2118:1 2125:1 2126:1 2129:1 2141:4 2144:5 2165:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2261:1 2263:1 2279:1 2298:2 2310:3 2344:1 2360:4 2391:2 2397:1 2401:1 2408:2 2414:1 2443:2 2473:1 2477:2 2480:1 2493:1 2502:1 2530:1 2533:1 2549:3 2580:1 2581:1 2583:1 2587:1 2596:2 2600:1 2605:1 2670:1 2683:5 2702:1 2718:1 2733:5 2756:1 2761:3 2765:1 2813:1 2857:1 2881:1 2882:1 2951:1 2963:1 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:1 3109:1 3149:1 3157:1 3171:1 3173:1 3214:1 3225:1 3226:1 3230:1 3238:1 3270:1 3293:2 3317:1 3322:1 3332:1 3348:3 3357:1 3364:1 3386:3 3430:1 3435:1 3439:1 3445:2 3480:1 3483:1 3486:2 3489:1 3490:1 3491:1 3520:1 3524:1 3525:1 3532:1 3533:3 3534:1 3548:1 3571:1 3584:1 3601:1 3610:1 3638:1 3648:2 3676:1 3701:1 3706:1 3709:1 3714:1 3715:1 3724:3 3725:2 3731:1 3770:1 3787:2 3806:1 3819:1 3856:1 3863:1 3866:1 3875:1 3918:2 3924:1 3925:1 3932:1 3959:1 3978:1 3986:1 4034:1 4055:2 4056:1 4123:1 4129:1 4145:1 4170:1 4260:1 4263:2 4264:1 4272:2 4290:1 4331:1 4334:3 4365:1 4388:1 4390:1 4398:1 4414:2 4425:1 4448:1 4455:1 4458:1 4463:2 4513:6 4515:2 4530:1 4531:2 4557:1 4560:4 4566:1 4596:3 4607:1 4608:2 4609:1 4610:1 4615:2 4628:1 4633:1 4640:1 4642:1 4643:2 4662:1 4682:1 4715:1 4751:1 4765:1 4769:1 4793:1 4795:1 4812:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4926:3 4942:2 4952:1 4987:1 5047:1 5074:1 5078:1 5086:1 5088:1 5091:2 5100:1 5136:2 5169:2 5191:1 5192:1 5217:2 5233:1 5254:1 5278:2 5279:1 5304:1 5365:1 5391:1 5397:1 5424:1 5493:1 5518:1 5519:5 5542:2 5546:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5673:1 5685:1 5688:1 5711:1 5724:1 5773:1 5788:2 5791:1 5801:1 5804:1 5805:1 5807:2 5813:1 5815:7 5816:2 5876:1 5928:2 6030:1 6063:1 6068:1 6078:1 6088:1 6110:1 6155:1 6179:1 6201:3 6212:1 6218:1 6223:1 6253:1 6262:1 6280:1 6331:1 6333:2 6340:1 6352:1 6364:1 6380:1 6448:1 6455:1 6462:1 6475:3 6476:1 6498:1 6515:1 6519:1 6523:1 6543:1 6568:1 6601:1 6615:1 6630:1 6648:1 6658:1 6671:1 6717:1 6720:1 6734:1 6741:1 6754:1 6760:1 6804:1 6833:1 6866:1 6882:1 6883:2 6919:1 6920:6 6933:1 6943:1 6944:2 6963:2 6979:18 6983:1 7003:1 7004:5 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:1 7169:1 7223:1 7244:2 7265:1 7345:1 7371:1 7386:2 7388:2 7402:1 7431:1 7438:1 7446:1 7455:1 7460:1 7471:1 7473:3 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7657:1 7660:1 7678:2 7680:1 7686:1 7693:1 7702:1 7706:1 7715:1 7720:4 7726:1 7729:1 7774:1 7787:2 7788:1 7789:1 7791:1 7794:1 7796:1 7797:1 7833:2 7838:1 7863:1 7869:1 7872:2 7879:1 7892:1 7931:1 7965:1 7973:1 8000:1 8007:1 8050:1 8052:2 8093:1 8095:1 8096:3 8100:1 8119:1 8121:1 8124:1 8146:1 8147:1 8182:1 8204:2 8215:1 8233:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8336:1 8352:1 8360:2 8380:1 8443:1 8449:1 8460:10 8484:1 8493:1 8531:1 8537:1 8564:1 8576:1 8584:1 8585:3 8587:1 8608:1 8625:1 8633:1 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8757:1 8771:1 8772:1 8790:1 8792:1 8798:1 8826:1 8833:1 8857:1 8864:2 8867:1 8868:2 8890:1 8931:2 8990:1 9004:2 9010:1 9030:1 9040:1 9055:1 9070:1 9074:1 9086:1 9094:1 9108:1 9111:1 9120:4 9135:1 9142:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9388:1 9430:1 9447:1 9462:1 9470:1 9481:1 9492:2 9513:1 9553:1 9584:1 9592:1 9605:2 9610:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9758:2 9775:1 9778:4 9826:1 9843:1 9866:1 9870:1 9914:1 9945:1 9970:1 9974:1 9976:1 10003:1 10007:1 10014:1 10023:1 10043:3 10059:1 10065:1 10066:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10211:1 10220:1 10246:2 10251:1 10284:1 10316:1 10317:1 10332:1 10333:1 10339:1 10341:1 10361:1 10395:1 10396:1 10398:1 10450:1 10463:1 10484:1 10490:1 10493:1 10498:1 10531:1 10536:1 10548:1 10552:1 10554:2 10573:2 10596:1 10616:2 10623:1 10631:1 10634:1 10647:1 10668:1 10678:1 10693:1 10701:1 10705:1 10728:1 10744:1 10777:1 10790:1 10829:1 10862:2 10871:1 10913:1 10929:1 10953:2 10978:1 10982:1 11062:2 11063:3 11065:1 11082:1 11115:1 11116:2 11128:1 11135:1 11177:1 11187:1 11210:1 11215:3 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11398:1 11411:1 11438:1 11443:1 11454:1 11522:1 11534:1 11543:1 11561:4 11578:1 11586:1 11590:2 11599:1 11622:1 11655:1 11687:1 11696:1 11715:1 11723:1 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11945:1 11949:1 11972:1 11978:2 11982:1 11988:1 11995:1 11996:4 12027:1 12043:1 12075:1 12103:1 12107:1 12110:1 12118:2 12124:2 12127:1 12145:1 12164:1 12168:1 12186:3 12188:1 12200:1 12217:1 12226:1 12237:1 12243:3 12265:1 12284:1 12285:1 12320:1 12398:1 12418:1 12454:1 12457:1 12460:2 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:2 12664:1 12667:1 12668:2 12686:1 12727:1 12745:1 12751:1 12796:1 12820:1 12834:1 12883:3 12896:1 12899:1 12908:2 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13057:1 13083:1 13086:1 13088:2 13090:1 13092:3 13100:1 13104:1 13112:1 13145:1 13151:1 13193:1 13198:1 13214:2 13240:1 13288:1 13321:1 13340:1 13367:1 13391:1 13442:1 13486:1 13563:3 13570:1 13586:1 13609:1 13637:2 13639:1 13659:1 13679:1 13680:1 13700:2 13708:1 13723:1 13741:1 13752:1 13771:1 13856:1 13864:1 13881:1 13897:1 13903:1 13947:1 13959:1 14015:1 14033:1 14043:3 14089:2 14098:1 14103:1 14104:1 14115:1 14119:1 14131:1 14135:1 14164:1 14177:2 14228:1 14252:1 14263:1 14275:1 14290:2 14295:1 14303:1 14305:1 14306:1 14320:1 14321:1 14351:1 14359:1 14389:1 14418:3 14492:1 14493:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:1 14616:1 14653:1 14669:3 14670:1 14675:1 14687:2 14695:1 14730:1 14747:1 14750:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15010:1 15074:1 15080:1 15093:1 15100:1 15113:1 15124:1 15175:1 15186:1 15224:1 15241:1 15244:2 15260:1 15272:1 15278:1 15285:1 15287:1 15309:1 15316:1 15329:1 15341:1 15402:1 15405:2 15410:1 15459:1 15468:1 15480:1 15495:1 15508:1 15544:1 15578:1 15583:3 15607:3 15636:1 15638:1 15661:1 15663:1 15675:1 15688:1 15697:2 15705:2 15716:1 15774:1 15778:2 15784:1 15869:1 15880:1 15884:1 15897:2 15916:1 15920:1 15941:1 15962:1 15963:2 15970:2 15992:3 15993:1 16041:4 16042:2 16075:1 16102:1 16104:1 16113:4 16126:1 16153:1 16164:2 16170:1 16189:2 16195:1 16207:1 16221:1 16254:1 16278:1 16284:1 16301:2 16311:9 16317:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16436:1 16464:1 16476:1 16514:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:2 16573:1 16583:1 16592:1 16616:1 16637:1 16670:1 16682:1 16728:1 16770:1 16776:1 16778:1 16870:4 16887:1 16949:1 16991:1 16998:1 17021:2 17023:1 17027:1 17053:2 17057:1 17065:1 17069:742 17086:1 17118:1 17119:1 17128:1 17150:1 17187:1 17193:1 17260:2 17266:1 17272:1 17274:1 17276:1 17346:1 17350:1 17381:10 17398:2 17419:1 17449:1 17461:1 17471:1 17487:1 17543:1 17573:1 17582:1 17590:1 17621:1 17639:1 17641:1 17673:1 17678:1 17689:1 17691:1 17697:2 17707:1 17719:1 17723:1 17738:1 17747:1 17772:5 17807:2 17808:1 17826:1 17879:1 17924:1 17927:1 17937:1 17949:1 17951:1 17957:1 17984:1 17985:1 17986:1 18007:1 18011:1 18033:1 18097:1 18106:1 18143:1 18157:1 18164:1 18176:1 18180:1 18183:1 18184:1 18202:1 18212:1 18221:1 18241:1 18242:1 18254:1 18257:1 18275:1 18330:1 18349:1 18356:2 18367:1 18382:1 18408:1 18409:1 18430:1 18437:1 18470:1 18481:1 18483:1 18510:1 18513:1 18545:2 18568:1 18589:3 18590:2 18594:1 18603:1 18606:1 18611:1 18651:1 18661:1 18758:1 18762:2 18802:1 18806:2 18815:1 18826:1 18867:1 18874:1 18903:3 18932:1 18937:1 18983:1 18984:1 19003:2 19007:1 19009:1 19016:1 19032:1 19042:1 19063:1 19088:1 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:1 19283:2 19321:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19466:1 19470:1 19581:1 19603:1 19631:1 19656:1 19667:1 19675:1 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:2 19758:1 19763:1 19775:1 19777:1 19798:1 19802:4 19836:1 19892:1 19897:1 19905:1 19909:6 19920:1 19927:2 19940:1 19941:1 19942:1 19951:1 19994:1 20000:1 20022:1 20025:1 20032:1 20035:1 20039:1 20044:1 20063:1 20080:2 20097:1 20158:1 20167:1 20180:1 20184:1 20211:1 20222:2 20228:1 20232:1 20265:1 20272:1 20274:1 20294:1 20305:2 20355:1 20381:2 20383:2 20385:1 20396:2 20423:1 20433:1 20434:2 20464:2 20466:1 20494:1 20505:1 20534:1 20536:1 20540:1 20552:1 20564:1 20567:1 20600:1 20617:1 20624:1 20625:9 20634:1 20637:1 20640:1 20672:1 20676:1 20692:1 20693:1 20776:1 20779:1 20786:1 20804:1 20807:1 20853:1 20856:1 20868:1 20876:1 20882:1 20900:2 20903:1 20911:1 20912:1 20960:1 20973:1 21023:1 21064:1 21070:1 21114:1 21115:1 21128:2 21131:1 21136:1 21146:1 21155:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:1 21345:1 21352:1 21353:1 21359:1 21383:1 21388:1 21402:1 21440:1 21451:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:3 21550:1 21582:1 21586:1 21597:1 21633:1 21636:1 21649:1 21663:1 21696:1 21703:1 21723:1 21724:1 21732:1 21746:2 21751:1 21780:1 21789:1 21841:1 21844:1 21858:1 21869:1 21892:1 21915:1 21923:1 21934:1 21956:1 21996:1 22005:2 22013:2 22018:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22110:1 22112:1 22154:1 22166:2 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:1 22277:1 22279:1 22281:2 22283:3 22284:1 22289:1 22290:1 22297:2 22304:2 22307:1 22323:1 22352:1 22357:2 22359:1 22371:1 22384:2 22388:3 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22503:1 22535:2 22546:2 22549:1 22559:1 22594:1 22630:2 22631:1 22691:1 22702:1 22713:1 22715:2 22723:1 22749:2 22775:1 22789:1 22796:1 22808:1 22810:2 22832:1 22834:1 22841:2 22912:1 22942:3 22962:2 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23035:1 23078:1 23081:2 23089:1 23094:1 23102:1 23104:1 23106:3 23121:1 23123:2 23124:4 23128:1 23129:2 23146:1 23149:1 23152:1 23185:2 23200:2 23229:1 23239:2 23249:1 23315:1 23363:1 23379:1 23391:1 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23608:1 23614:1 23616:1 23632:1 23645:1 23688:1 23703:1 23735:1 23740:1 23749:1 23753:1 23770:2 23796:4 23814:1 23838:1 23856:1 23857:1 23862:1 23873:1 23891:1 23908:4 23910:1 23937:1 23952:1 23972:1 24050:2 24057:1 24087:1 24089:1 24091:1 24097:1 24130:1 24156:1 24172:1 24178:1 24200:1 24218:1 24242:1 24256:1 24271:4 24293:2 24351:1 24383:1 24404:1 24454:1 24489:1 24493:1 24533:1 24588:2 24610:3 24619:1 24635:1 24653:1 24674:1 24685:2 24718:1 24735:1 24756:3 24797:1 24816:1 24845:2 24849:2 24861:1 24876:1 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24951:1 24967:1 24990:1 24993:1 25015:1 25020:1 25035:1 25064:1 25147:1 25198:1 25230:3 25281:1 25433:1 25435:3 25443:1 25462:1 25500:1 25509:1 25541:1 25542:1 25549:7 25550:2 25553:4 25564:1 25590:1 25607:1 25640:1 25648:2 25677:1 25696:1 25719:6 25725:1 25738:1 25757:1 25760:1 25766:1 25770:1 25780:1 25795:1 25804:1 25819:1 25821:1 25824:1 25856:1 25859:1 25878:1 25880:1 25897:1 25902:1 25912:1 25946:1 25964:1 25965:2 25966:1 25968:1 26014:1 26019:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26151:1 26152:1 26174:1 26186:1 26190:1 26192:1 26204:1 26211:1 26219:1 26232:1 26241:1 26247:1 26249:1 26255:1 26264:1 26294:1 26325:1 26335:2 26349:1 26372:1 26399:1 26413:1 26438:1 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26595:1 26601:4 26614:1 26616:1 26638:3 26649:2 26679:1 26714:3 26715:2 26716:1 26720:1 26726:2 26727:1 26742:1 26766:2 26771:2
9 8:1 10:1 38:1 66:1 91:1 92:1 114:1 132:1 157:1 166:1 168:1 177:1 185:2 205:3 223:1 243:1 259:1 268:1 282:1 283:11 294:1 313:1 315:2 328:1 340:1 392:1 420:3 435:1 440:1 507:1 550:2 553:1 561:1 590:1 594:2 597:1 598:1 637:1 666:1 676:1 737:1 740:1 756:1 760:1 770:1 781:1 794:1 797:1 816:2 818:1 828:1 829:1 843:4 860:1 868:2 872:4 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:3 956:1 962:1 964:1 982:1 987:1 1010:1 1036:1 1046:1 1059:2 1072:1 1092:1 1096:2 1104:1 1110:1 1155:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1303:1 1326:2 1331:4 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1436:1 1437:1 1471:1 1476:1 1491:1 1493:1 1502:1 1520:1 1524:1 1548:1 1557:3 1561:1 1601:2 1621:1 1659:1 1668:1 1682:1 1695:1 1707:1 1723:1 1797:7 1802:1 1827:1 1833:1 1853:2 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:1 1975:1 1986:1 1988:1 2016:1 2035:1 2038:1 2041:1 2058:1 2060:1 2063:1 2064:2 2077:1 2096:1 2098:1 2104:1 2105:1 2108:1 2109:2 2112:2 2117:1 2118:1 2119:1 2125:1 2126:1 2129:1 2140:1 2141:4 2144:5 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:1 2261:1 2263:1 2279:1 2298:2 2310:3 2326:1 2344:1 2360:5 2391:2 2397:1 2401:1 2408:3 2412:1 2414:1 2443:2 2473:1 2477:2 2480:1 2493:1 2502:1 2512:1 2530:1 2533:1 2549:3 2580:1 2581:1 2583:1 2587:1 2596:2 2600:1 2605:1 2670:1 2683:7 2702:1 2718:1 2733:6 2756:1 2761:3 2765:1 2813:1 2857:1 2881:1 2882:1 2951:1 2963:1 2994:2 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:1 3109:1 3149:1 3157:1 3171:1 3173:1 3214:1 3225:1 3226:1 3230:1 3238:1 3270:1 3293:2 3299:1 3317:1 3322:1 3332:1 3348:3 3357:1 3364:1 3386:3 3430:1 3435:1 3439:1 3445:2 3480:1 3483:1 3486:3 3489:1 3490:1 3491:3 3520:1 3524:1 3525:1 3532:1 3533:3 3534:1 3548:1 3568:1 3571:1 3584:1 3601:1 3610:1 3631:1 3633:2 3638:1 3648:2 3676:1 3701:1 3706:1 3709:1 3714:2 3715:1 3724:3 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3918:2 3924:1 3925:1 3932:1 3959:1 3978:1 3986:1 4034:1 4055:4 4056:1 4123:1 4129:1 4145:1 4170:1 4220:1 4260:1 4263:2 4264:1 4272:3 4290:1 4331:1 4334:4 4365:1 4388:1 4390:1 4398:1 4414:2 4425:1 4448:1 4455:1 4458:1 4463:2 4513:6 4515:2 4530:1 4531:2 4557:1 4560:5 4566:1 4577:1 4596:3 4607:1 4608:2 4609:1 4610:1 4615:2 4628:1 4633:1 4640:1 4642:1 4643:2 4662:1 4682:1 4715:1 4751:1 4754:1 4765:1 4769:1 4793:1 4795:1 4812:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4926:3 4942:2 4952:1 4987:1 5039:1 5047:1 5056:1 5074:1 5078:1 5086:1 5088:1 5091:2 5100:1 5136:3 5147:1 5169:2 5191:1 5192:1 5217:3 5233:1 5254:1 5278:2 5279:1 5304:1 5332:1 5365:1 5391:1 5397:1 5424:1 5493:1 5518:1 5519:6 5542:2 5546:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5670:1 5673:1 5685:1 5688:1 5711:1 5724:1 5773:1 5788:3 5791:1 5801:1 5804:1 5805:1 5807:2 5813:1 5815:7 5816:2 5876:1 5928:2 6030:1 6063:1 6068:1 6078:1 6088:1 6110:1 6117:1 6153:1 6155:1 6179:2 6201:4 6212:1 6218:1 6223:1 6253:1 6262:1 6280:1 6331:1 6333:2 6340:1 6352:1 6364:1 6365:2 6380:1 6414:1 6448:1 6455:1 6462:1 6475:5 6476:1 6498:1 6515:1 6519:1 6523:1 6543:1 6568:1 6601:1 6615:1 6630:1 6648:1 6658:1 6671:1 6684:1 6717:1 6720:1 6734:1 6741:1 6754:1 6760:1 6804:1 6833:1 6866:1 6882:1 6883:2 6919:1 6920:8 6933:1 6943:1 6944:2 6963:2 6979:21 6983:1 7003:1 7004:6 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:1 7169:1 7223:1 7238:1 7244:2 7265:1 7296:1 7345:1 7348:1 7371:1 7386:2 7388:3 7402:1 7431:1 7438:1 7446:1 7455:1 7460:1 7471:1 7473:3 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7657:1 7660:1 7678:3 7680:1 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7774:1 7787:2 7788:1 7789:1 7791:1 7794:1 7796:1 7797:1 7800:1 7833:2 7838:1 7863:1 7869:1 7872:2 7879:1 7892:1 7931:1 7965:1 7973:1 7994:1 8000:1 8007:1 8050:1 8052:2 8093:1 8095:1 8096:3 8100:1 8111:2 8119:1 8121:1 8124:1 8146:1 8147:1 8182:1 8204:2 8215:1 8233:1 8249:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8336:1 8352:1 8360:2 8380:1 8437:1 8443:1 8449:1 8460:11 8484:1 8493:1 8531:1 8537:1 8564:1 8576:1 8584:2 8585:4 8587:1 8608:1 8625:1 8633:1 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8757:1 8771:1 8772:1 8778:1 8790:1 8792:1 8798:1 8826:1 8833:1 8857:3 8864:2 8867:1 8868:3 8890:1 8931:2 8990:1 9004:2 9010:1 9030:1 9038:1 9040:1 9055:1 9070:1 9074:1 9084:1 9086:1 9094:1 9108:1 9111:1 9120:4 9135:1 9142:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9388:1 9430:1 9447:1 9462:1 9470:1 9481:1 9492:2 9513:1 9553:1 9584:1 9592:1 9594:1 9605:2 9610:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9750:1 9758:3 9775:1 9778:5 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9914:1 9945:1 9970:1 9974:1 9976:1 10003:1 10007:1 10009:1 10014:1 10023:1 10043:4 10059:1 10065:1 10066:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10187:1 10211:1 10220:1 10246:2 10251:1 10271:1 10284:1 10316:1 10317:1 10332:1 10333:1 10339:1 10341:1 10361:1 10395:1 10396:1 10398:1 10450:1 10463:1 10484:1 10490:1 10493:1 10498:1 10531:1 10536:1 10544:1 10548:1 10552:2 10554:2 10573:2 10596:1 10616:2 10623:1 10631:1 10634:1 10647:1 10668:1 10678:1 10693:1 10701:1 10705:1 10725:1 10728:1 10744:1 10777:1 10790:1 10829:1 10862:3 10864:1 10871:1 10913:2 10929:1 10953:3 10978:1 10982:1 11062:2 11063:3 11065:1 11082:1 11115:1 11116:2 11128:1 11135:1 11177:1 11187:1 11210:1 11215:3 11231:1 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11314:1 11332:1 11398:1 11411:1 11438:1 11443:1 11454:1 11522:1 11534:1 11543:1 11561:5 11578:1 11586:2 11590:2 11599:1 11622:1 11655:1 11687:1 11696:1 11715:1 11723:2 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11945:1 11949:1 11972:1 11978:2 11982:1 11988:1 11995:1 11996:4 12027:1 12043:1 12075:1 12103:1 12107:1 12110:1 12118:2 12124:2 12127:1 12145:1 12164:1 12168:1 12186:3 12188:1 12200:1 12208:1 12217:1 12226:1 12237:1 12243:3 12265:1 12284:1 12285:1 12320:1 12398:1 12418:1 12454:1 12457:1 12460:2 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:2 12664:1 12667:1 12668:2 12686:1 12708:1 12727:1 12745:1 12751:1 12796:1 12820:1 12834:1 12883:3 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13057:1 13083:1 13086:1 13088:2 13090:1 13092:4 13100:1 13104:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13214:3 13240:1 13247:1 13288:1 13321:1 13340:1 13367:1 13391:2 13410:1 13442:1 13486:1 13563:3 13570:1 13586:1 13609:1 13637:2 13639:1 13659:1 13679:1 13680:1 13700:2 13708:1 13719:1 13723:1 13741:1 13752:1 13771:1 13856:1 13864:1 13881:1 13897:1 13903:1 13947:1 13959:1 14015:2 14033:1 14043:3 14089:2 14098:1 14103:1 14104:2 14115:1 14119:1 14131:1 14135:1 14164:1 14177:2 14228:1 14252:1 14263:2 14275:1 14290:2 14295:1 14303:1 14305:1 14306:1 14320:1 14321:1 14351:1 14359:1 14388:1 14389:1 14418:3 14434:1 14492:1 14493:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:1 14616:1 14653:1 14669:5 14670:1 14675:1 14687:2 14695:1 14730:1 14747:1 14750:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15010:1 15074:1 15080:1 15093:1 15100:1 15113:1 15124:1 15175:1 15186:1 15224:1 15241:1 15244:2 15260:1 15272:1 15278:1 15285:1 15287:2 15309:1 15316:1 15329:1 15341:1 15402:1 15405:2 15410:1 15459:1 15468:1 15480:1 15495:1 15508:2 15530:1 15531:1 15544:2 15571:1 15578:1 15583:3 15607:3 15617:1 15636:1 15638:1 15661:1 15663:1 15675:1 15688:1 15697:2 15705:2 15716:1 15774:1 15778:2 15784:1 15869:1 15880:1 15884:1 15897:2 15916:1 15920:1 15941:1 15962:1 15963:2 15970:2 15992:3 15993:1 16041:4 16042:2 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16164:2 16170:1 16189:2 16195:1 16207:1 16221:1 16254:1 16278:1 16284:2 16301:2 16305:1 16311:10 16317:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16436:2 16464:1 16476:1 16514:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:2 16573:1 16583:1 16592:1 16616:1 16637:1 16670:1 16682:1 16728:1 16770:1 16776:1 16778:1 16870:4 16887:1 16949:1 16991:1 16998:1 17021:2 17023:2 17027:1 17053:2 17057:1 17065:1 17069:837 17086:1 17118:1 17119:1 17128:1 17150:1 17187:1 17193:1 17260:3 17266:1 17272:2 17274:1 17276:1 17346:1 17350:1 17359:1 17381:11 17398:2 17419:1 17449:1 17461:1 17471:2 17487:1 17502:1 17543:1 17573:2 17582:1 17590:1 17621:1 17639:1 17641:1 17673:1 17678:1 17689:1 17691:1 17697:2 17707:1 17719:2 17723:1 17738:1 17747:1 17772:5 17791:1 17807:2 17808:1 17826:1 17879:1 17924:1 17927:1 17937:1 17949:2 17951:1 17957:1 17984:1 17985:1 17986:1 18007:1 18011:1 18033:1 18097:1 18106:1 18143:2 18157:1 18164:1 18176:1 18180:1 18183:1 18184:1 18202:1 18212:1 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18330:1 18349:1 18356:2 18367:1 18382:1 18408:1 18409:1 18430:1 18437:1 18470:1 18481:1 18483:1 18510:1 18513:1 18545:3 18568:1 18589:3 18590:2 18594:1 18603:1 18606:1 18611:1 18651:1 18661:1 18758:1 18762:2 18802:1 18806:3 18815:1 18819:1 18826:1 18867:1 18874:2 18903:4 18932:1 18937:1 18968:1 18983:1 18984:1 19003:2 19007:1 19009:1 19016:1 19032:1 19042:2 19063:1 19088:1 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:1 19283:2 19321:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19466:1 19470:1 19581:1 19603:1 19631:1 19656:1 19667:1 19675:1 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:2 19749:1 19758:1 19763:1 19775:1 19777:1 19798:1 19802:4 19836:1 19865:1 19892:1 19897:1 19905:1 19909:6 19920:1 19927:2 19940:1 19941:1 19942:1 19951:1 19994:1 20000:1 20022:1 20025:1 20032:1 20035:1 20039:1 20044:1 20063:1 20080:2 20097:1 20158:1 20167:1 20180:1 20184:1 20211:1 20222:2 20228:1 20232:1 20265:1 20272:1 20274:1 20294:1 20305:2 20355:1 20381:3 20383:2 20385:2 20396:2 20423:1 20433:1 20434:2 20464:2 20466:1 20467:1 20494:1 20505:1 20534:1 20536:1 20540:1 20552:1 20564:1 20567:1 20600:1 20617:1 20624:1 20625:10 20634:1 20637:1 20640:1 20672:1 20676:1 20692:1 20693:1 20776:1 20779:1 20786:1 20804:2 20807:1 20853:1 20856:1 20868:1 20876:1 20882:1 20900:2 20903:1 20911:1 20912:1 20960:1 20973:1 21023:1 21064:1 21070:1 21077:1 21087:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:1 21146:1 21155:2 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:1 21345:1 21352:1 21353:1 21359:1 21383:1 21388:1 21395:1 21402:1 21440:1 21451:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:3 21550:1 21582:1 21586:1 21597:1 21633:1 21636:1 21649:1 21663:1 21696:2 21703:1 21723:1 21724:1 21732:1 21746:2 21751:1 21780:1 21789:1 21841:1 21844:1 21855:2 21858:1 21869:1 21871:1 21892:1 21915:1 21923:1 21934:1 21956:1 21996:1 22005:2 22013:3 22018:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22110:1 22112:1 22154:1 22166:2 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:1 22277:1 22279:1 22281:2 22283:4 22284:1 22289:2 22290:1 22297:2 22304:2 22307:1 22323:1 22352:1 22357:2 22359:1 22371:1 22384:2 22388:3 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22503:1 22517:1 22535:2 22546:3 22549:1 22559:1 22594:1 22630:2 22631:1 22691:1 22702:1 22713:1 22715:3 22723:1 22749:2 22775:1 22789:1 22796:1 22808:1 22810:3 22832:1 22834:1 22841:2 22899:1 22912:1 22942:4 22950:1 22962:2 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23035:1 23078:1 23081:2 23089:2 23094:1 23102:1 23104:2 23106:3 23121:1 23123:2 23124:5 23128:1 23129:2 23146:1 23149:1 23152:1 23157:1 23185:2 23200:2 23229:1 23239:2 23249:1 23301:1 23315:1 23323:1 23363:1 23379:1 23391:1 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23632:1 23645:1 23670:1 23688:1 23703:1 23735:1 23740:1 23749:1 23753:1 23770:2 23796:4 23814:1 23838:1 23856:1 23857:1 23862:1 23873:1 23891:1 23908:4 23910:1 23937:1 23952:1 23972:1 24041:1 24045:1 24050:2 24057:1 24064:1 24087:1 24089:1 24091:1 24097:1 24130:1 24156:1 24172:2 24178:1 24200:1 24202:1 24218:1 24242:1 24256:1 24271:5 24293:2 24351:1 24383:1 24388:1 24404:1 24453:1 24454:1 24478:1 24489:1 24493:1 24533:1 24542:1 24568:1 24588:2 24610:3 24619:1 24635:1 24653:1 24674:1 24685:2 24686:1 24718:1 24735:2 24756:3 24797:1 24816:1 24845:3 24849:2 24861:1 24876:1 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24951:1 24967:1 24990:1 24993:1 25015:1 25020:1 25035:1 25064:1 25147:1 25152:1 25198:1 25230:4 25281:1 25433:1 25435:3 25443:1 25462:1 25500:1 25509:1 25541:1 25542:1 25549:8 25550:2 25553:5 25554:1 25555:2 25564:1 25590:3 25607:1 25640:1 25648:2 25663:1 25677:1 25696:1 25719:8 25725:1 25738:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:1 25790:1 25795:1 25804:1 25819:1 25821:1 25824:1 25856:1 25859:1 25878:1 25880:1 25897:1 25902:1 25912:1 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26151:1 26152:1 26155:1 26174:1 26186:1 26190:1 26192:1 26204:1 26211:1 26219:1 26232:1 26241:1 26247:1 26249:1 26255:1 26264:1 26294:1 26325:1 26335:2 26349:1 26361:1 26372:1 26377:1 26399:1 26413:1 26438:2 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26595:1 26601:5 26614:1 26616:1 26638:3 26649:2 26679:1 26714:4 26715:2 26716:1 26720:1 26722:1 26726:2 26727:1 26742:1 26766:3 26771:2
9 8:1 10:1 38:1 66:1 91:1 92:1 114:1 132:1 157:1 166:1 168:2 177:1 185:2 205:3 223:1 243:1 259:1 268:1 282:1 283:12 294:1 313:1 315:2 328:1 340:1 392:1 420:3 435:1 440:1 507:1 550:2 553:1 561:1 567:1 590:1 594:2 597:1 598:1 611:1 637:1 666:1 676:1 726:1 737:1 740:1 756:1 760:1 770:1 781:1 794:1 797:1 816:2 818:2 828:1 829:1 843:5 860:1 868:2 872:4 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:1 987:1 1010:1 1036:1 1046:1 1059:2 1072:1 1092:1 1096:2 1104:1 1110:1 1155:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1303:1 1326:2 1331:4 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:1 1436:1 1437:1 1471:1 1476:1 1491:1 1493:1 1496:1 1502:1 1520:1 1524:1 1547:1 1548:1 1557:3 1561:1 1578:1 1579:1 1601:2 1621:1 1659:1 1668:1 1682:1 1695:1 1707:1 1723:1 1797:8 1802:1 1809:1 1827:1 1833:1 1853:2 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:2 1975:1 1986:1 1988:1 2016:1 2035:1 2038:1 2041:1 2051:1 2058:1 2060:1 2063:1 2064:2 2065:1 2077:1 2096:1 2098:1 2104:1 2105:1 2108:1 2109:2 2112:3 2117:1 2118:1 2119:1 2125:1 2126:1 2129:1 2140:1 2141:5 2143:1 2144:5 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2261:1 2263:1 2279:1 2298:2 2310:3 2326:1 2344:1 2360:5 2391:2 2397:1 2401:1 2408:3 2412:1 2414:1 2443:2 2473:1 2477:2 2480:1 2493:1 2497:1 2502:1 2512:1 2530:1 2533:1 2549:3 2580:1 2581:1 2583:1 2587:2 2596:2 2600:1 2605:1 2670:1 2683:8 2696:1 2702:1 2718:1 2733:6 2756:1 2761:3 2765:1 2813:1 2857:1 2881:1 2882:1 2951:1 2963:1 2994:2 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:1 3109:2 3149:1 3157:1 3171:1 3173:1 3214:1 3225:1 3226:1 3230:1 3238:1 3270:1 3293:2 3299:1 3317:1 3322:1 3332:1 3348:3 3357:1 3358:1 3364:1 3386:3 3426:1 3430:1 3435:2 3439:1 3442:1 3445:2 3480:1 3483:1 3486:4 3489:1 3490:1 3491:4 3520:1 3524:2 3525:1 3532:1 3533:4 3534:1 3548:2 3568:2 3571:1 3581:1 3584:1 3601:1 3610:1 3631:1 3633:2 3638:1 3648:2 3676:1 3694:1 3701:1 3706:1 3709:1 3714:2 3715:1 3724:3 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:1 3978:1 3986:1 4034:1 4055:4 4056:1 4123:1 4129:1 4145:1 4170:1 4220:1 4260:1 4263:2 4264:1 4272:3 4290:1 4331:1 4334:5 4365:1 4388:1 4390:1 4398:1 4403:1 4414:2 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4513:6 4515:2 4530:1 4531:2 4557:1 4560:5 4566:1 4577:1 4596:3 4607:1 4608:2 4609:1 4610:1 4615:3 4628:1 4630:1 4633:1 4640:1 4642:1 4643:2 4662:1 4682:1 4715:1 4751:1 4754:1 4765:1 4769:1 4793:1 4795:1 4806:1 4812:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4926:3 4942:2 4952:1 4987:1 5039:1 5047:1 5056:1 5074:1 5078:1 5086:1 5088:1 5091:2 5100:1 5136:3 5147:1 5169:2 5182:1 5191:1 5192:1 5217:3 5233:2 5249:1 5254:1 5278:3 5279:1 5304:1 5332:1 5365:1 5391:1 5394:1 5397:1 5424:1 5493:1 5518:1 5519:8 5533:1 5542:2 5546:1 5551:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5670:1 5673:1 5685:1 5688:1 5711:2 5724:1 5729:1 5773:1 5788:3 5791:1 5801:1 5804:1 5805:1 5807:2 5813:1 5815:7 5816:2 5857:1 5876:1 5928:2 5957:1 6030:1 6041:1 6063:1 6068:1 6078:1 6088:1 6110:1 6117:1 6153:1 6155:1 6179:2 6191:1 6201:4 6212:1 6218:1 6223:1 6253:1 6262:1 6280:1 6303:1 6331:1 6333:2 6340:1 6352:1 6364:1 6365:2 6380:1 6389:1 6394:1 6414:1 6448:1 6455:1 6462:1 6475:6 6476:1 6498:1 6515:1 6519:1 6523:1 6543:1 6568:1 6601:1 6615:1 6630:1 6648:1 6658:2 6671:1 6684:1 6713:1 6717:1 6720:1 6734:1 6741:1 6754:1 6760:1 6804:1 6833:1 6866:1 6882:1 6883:2 6919:1 6920:8 6933:1 6943:1 6944:2 6963:2 6979:24 6983:1 7003:1 7004:6 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:1 7169:1 7223:1 7238:1 7244:2 7265:1 7296:1 7345:1 7348:1 7371:1 7386:2 7388:3 7402:1 7431:1 7438:1 7446:1 7449:1 7455:1 7460:2 7471:1 7473:3 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7657:1 7660:1 7669:1 7678:3 7680:1 7683:1 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7774:1 7781:1 7783:1 7784:1 7787:2 7788:1 7789:1 7791:1 7794:2 7796:1 7797:1 7800:1 7833:2 7838:1 7863:1 7869:1 7872:2 7879:1 7892:1 7931:1 7965:1 7973:1 7994:1 8000:1 8007:1 8050:1 8052:2 8093:1 8095:1 8096:3 8100:1 8111:2 8119:1 8121:1 8124:1 8146:1 8147:1 8182:1 8204:2 8215:1 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8336:2 8352:1 8360:2 8380:1 8437:1 8441:1 8443:1 8449:1 8460:12 8483:1 8484:1 8493:1 8531:1 8537:1 8564:1 8576:1 8584:2 8585:4 8587:1 8608:1 8625:1 8633:2 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8757:1 8771:1 8772:1 8778:1 8790:1 8792:1 8798:1 8826:1 8833:1 8857:4 8864:2 8867:1 8868:3 8877:1 8890:1 8931:2 8990:1 9004:3 9010:1 9018:1 9030:1 9038:1 9040:1 9043:1 9055:2 9070:1 9074:1 9084:1 9086:1 9094:1 9108:1 9111:1 9120:4 9135:1 9142:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9388:1 9430:1 9447:1 9462:1 9470:1 9481:1 9484:1 9492:2 9513:1 9553:1 9562:1 9584:1 9592:1 9594:1 9605:2 9607:1 9610:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9750:2 9758:3 9775:1 9778:5 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9902:1 9914:1 9945:1 9970:2 9974:1 9976:1 9984:1 10003:1 10007:1 10009:1 10014:1 10023:1 10043:4 10059:1 10065:1 10066:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10187:1 10211:1 10220:1 10246:2 10251:1 10271:1 10284:1 10303:1 10316:1 10317:1 10332:1 10333:1 10339:2 10341:1 10361:1 10395:2 10396:1 10398:1 10450:1 10463:1 10484:1 10490:1 10493:1 10498:1 10531:1 10536:1 10544:1 10548:1 10552:2 10554:2 10573:2 10596:1 10616:2 10623:1 10631:1 10634:1 10647:1 10668:1 10678:2 10693:2 10701:1 10705:1 10725:1 10728:1 10744:1 10777:1 10790:1 10829:1 10862:3 10864:1 10871:1 10911:1 10913:2 10929:1 10953:3 10968:1 10978:1 10982:1 11062:2 11063:3 11065:1 11082:1 11102:1 11115:1 11116:2 11128:1 11135:1 11177:1 11187:1 11210:1 11215:3 11231:1 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11314:1 11332:1 11356:1 11398:1 11411:1 11438:1 11443:1 11454:1 11483:1 11522:2 11534:1 11543:1 11561:6 11578:1 11586:2 11590:3 11599:1 11622:1 11655:1 11687:1 11696:1 11697:1 11715:1 11723:2 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11868:1 11945:2 11949:1 11972:1 11978:4 11982:1 11988:1 11995:1 11996:4 12027:1 12043:1 12071:1 12075:1 12103:1 12107:1 12110:1 12118:2 12124:2 12127:1 12145:1 12164:1 12168:1 12186:3 12188:1 12200:1 12208:1 12217:1 12226:1 12237:1 12243:3 12265:1 12280:1 12284:1 12285:1 12320:1 12398:1 12418:1 12454:1 12457:1 12460:3 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:2 12664:2 12667:1 12668:2 12686:1 12708:1 12727:2 12745:1 12751:1 12796:1 12820:1 12834:1 12867:1 12883:3 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13040:1 13057:1 13083:1 13086:2 13088:3 13090:1 13092:4 13100:1 13104:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13214:3 13240:1 13247:1 13288:2 13321:1 13340:1 13367:1 13386:1 13391:3 13410:1 13422:1 13442:1 13486:1 13563:3 13566:1 13570:1 13586:1 13609:1 13629:1 13637:2 13639:1 13652:1 13659:1 13679:1 13680:1 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:2 13771:1 13856:1 13864:1 13881:1 13897:1 13903:1 13947:1 13959:1 13971:1 14015:2 14033:1 14043:4 14089:2 14098:1 14103:1 14104:2 14115:1 14119:1 14131:1 14135:1 14152:1 14164:1 14177:2 14228:1 14252:1 14263:3 14275:1 14284:1 14290:2 14295:1 14303:1 14305:1 14306:1 14320:1 14321:1 14351:1 14359:1 14388:1 14389:1 14418:3 14424:1 14434:1 14492:1 14493:2 14533:1 14540:3 14546:1 14548:1 14556:1 14557:1 14616:1 14653:1 14669:6 14670:1 14675:1 14687:2 14695:1 14730:2 14747:1 14750:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15006:1 15010:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15124:1 15136:1 15175:1 15186:1 15195:1 15224:1 15241:1 15244:2 15260:1 15272:1 15278:1 15285:1 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15402:1 15405:3 15410:1 15459:1 15468:2 15480:1 15495:1 15508:2 15530:1 15531:1 15544:2 15571:1 15576:1 15578:1 15583:3 15607:3 15617:1 15636:1 15638:1 15661:1 15663:1 15675:1 15688:1 15697:2 15705:2 15716:1 15774:1 15778:2 15784:1 15869:1 15880:1 15884:1 15897:2 15916:1 15920:1 15941:1 15962:1 15963:2 15970:2 15992:3 15993:1 16025:1 16041:4 16042:2 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16170:1 16174:1 16189:2 16195:1 16207:1 16221:1 16254:1 16278:1 16284:2 16301:3 16305:1 16311:11 16317:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16427:1 16436:3 16464:1 16476:1 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:2 16573:1 16583:1 16592:1 16616:1 16637:1 16643:1 16670:1 16682:1 16728:1 16770:1 16776:1 16778:1 16870:4 16887:1 16927:1 16949:1 16991:1 16998:1 17021:2 17023:2 17027:1 17045:1 17053:2 17057:1 17065:1 17069:897 17086:1 17118:1 17119:1 17128:1 17150:1 17187:1 17193:1 17254:1 17260:3 17266:1 17272:2 17274:1 17276:1 17346:2 17350:1 17359:1 17381:12 17398:2 17419:1 17449:1 17461:1 17471:2 17487:1 17502:1 17518:1 17527:1 17543:1 17573:2 17582:1 17590:1 17621:1 17639:1 17641:1 17673:1 17678:1 17689:1 17691:1 17697:2 17707:1 17719:4 17723:1 17738:1 17747:1 17772:6 17791:1 17807:3 17808:1 17826:1 17879:1 17924:1 17927:1 17937:1 17949:2 17951:1 17957:1 17984:1 17985:1 17986:1 18007:1 18011:1 18033:1 18097:1 18106:1 18115:1 18143:2 18157:1 18164:1 18176:1 18180:1 18183:1 18184:1 18196:1 18202:1 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18320:1 18330:1 18349:1 18356:2 18367:1 18382:1 18395:1 18408:1 18409:1 18430:1 18437:1 18470:1 18481:1 18483:1 18510:1 18513:1 18545:3 18568:1 18589:3 18590:2 18594:1 18603:1 18606:1 18611:1 18651:1 18661:1 18758:1 18762:2 18802:1 18806:3 18815:1 18819:1 18826:1 18867:1 18874:2 18903:4 18932:1 18937:1 18968:1 18983:1 18984:1 19003:2 19007:1 19009:1 19016:1 19032:1 19042:2 19063:2 19088:1 19098:1 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:1 19283:2 19316:1 19321:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19434:1 19466:1 19470:1 19581:1 19603:1 19631:1 19656:1 19659:1 19667:1 19675:1 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:2 19749:1 19751:1 19758:1 19763:1 19775:1 19777:1 19793:1 19798:1 19802:5 19822:1 19836:1 19865:1 19892:1 19897:1 19905:1 19909:6 19920:1 19927:2 19940:1 19941:1 19942:1 19951:1 19994:1 20000:1 20022:1 20025:1 20032:1 20035:1 20039:1 20044:1 20063:1 20080:2 20097:1 20127:1 20158:1 20167:1 20180:1 20184:1 20211:1 20222:2 20228:1 20232:1 20265:1 20272:1 20274:1 20294:1 20305:2 20355:1 20381:3 20383:2 20385:2 20396:2 20400:1 20423:1 20433:1 20434:2 20464:3 20466:1 20467:2 20494:1 20498:1 20499:1 20505:1 20534:1 20536:1 20540:1 20552:1 20564:1 20567:1 20600:1 20617:1 20624:1 20625:11 20634:1 20637:1 20640:1 20663:1 20672:1 20676:1 20692:1 20693:1 20697:1 20776:1 20779:1 20786:1 20804:2 20807:1 20853:1 20856:2 20868:1 20871:1 20876:1 20882:1 20900:2 20903:1 20911:1 20912:1 20960:1 20973:1 21023:1 21064:1 21070:1 21077:1 21087:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:2 21146:1 21155:3 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:2 21345:1 21352:1 21353:1 21359:1 21383:1 21388:1 21395:1 21402:1 21440:1 21451:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:4 21541:1 21550:1 21582:1 21586:1 21597:1 21633:1 21636:1 21649:1 21663:1 21696:2 21703:1 21723:1 21724:1 21732:1 21746:2 21748:1 21751:1 21780:1 21789:1 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21915:1 21923:1 21934:1 21956:1 21996:1 22005:2 22013:3 22018:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22110:1 22112:1 22137:1 22154:1 22165:1 22166:2 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:1 22277:1 22279:2 22281:2 22283:4 22284:1 22288:1 22289:2 22290:1 22297:2 22304:2 22307:1 22323:1 22352:1 22357:2 22359:1 22371:1 22384:2 22388:3 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22503:1 22517:2 22535:2 22546:3 22549:1 22559:1 22594:1 22630:2 22631:1 22691:2 22702:1 22713:1 22715:3 22723:2 22749:2 22775:1 22789:1 22796:1 22808:1 22810:3 22821:1 22832:1 22834:1 22841:2 22899:1 22912:1 22942:5 22950:1 22962:2 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23035:1 23078:1 23081:2 23089:2 23094:1 23102:1 23104:2 23106:4 23121:1 23123:2 23124:5 23128:1 23129:2 23139:1 23146:1 23149:1 23152:1 23157:1 23185:2 23200:2 23229:1 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23363:1 23379:1 23387:1 23391:1 23393:1 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23618:1 23632:1 23638:1 23645:1 23670:1 23688:1 23703:1 23705:1 23735:1 23740:1 23749:1 23753:1 23770:2 23796:4 23814:1 23833:1 23835:1 23838:1 23856:1 23857:1 23862:1 23873:1 23891:1 23908:4 23910:1 23937:1 23952:1 23972:1 24008:1 24035:1 24041:1 24045:1 24050:2 24057:1 24064:1 24087:1 24089:1 24091:1 24097:1 24130:1 24156:1 24172:2 24178:1 24200:1 24202:1 24218:1 24242:1 24244:1 24256:1 24271:5 24293:2 24351:1 24383:1 24388:1 24404:1 24453:1 24454:1 24478:1 24489:1 24493:1 24533:1 24542:1 24568:1 24588:3 24602:1 24610:3 24619:1 24635:1 24653:1 24674:1 24685:3 24686:1 24718:1 24735:2 24756:4 24787:1 24797:1 24816:1 24845:5 24849:2 24861:1 24866:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24943:1 24951:1 24967:1 24990:1 24993:1 25002:1 25015:1 25020:2 25035:1 25064:1 25147:1 25152:1 25198:1 25230:4 25281:1 25340:2 25433:1 25435:3 25443:1 25462:1 25500:1 25509:1 25541:1 25542:1 25549:11 25550:2 25553:5 25554:1 25555:2 25564:1 25590:4 25607:1 25640:1 25648:2 25663:1 25677:1 25696:1 25719:8 25721:1 25725:1 25738:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:1 25790:1 25795:2 25804:1 25819:1 25821:1 25824:1 25856:1 25859:1 25878:1 25880:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26186:1 26190:1 26192:1 26204:1 26211:1 26219:1 26232:2 26241:1 26247:1 26249:1 26255:1 26264:1 26294:1 26325:1 26335:2 26349:1 26361:1 26372:1 26377:2 26399:1 26413:1 26414:1 26438:2 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26595:1 26601:5 26614:1 26616:1 26638:4 26649:2 26679:1 26714:5 26715:2 26716:1 26720:1 26722:1 26726:2 26727:1 26742:1 26762:1 26766:3 26771:2 26812:1
9 8:1 10:1 38:2 52:1 66:1 91:1 92:1 114:1 132:1 157:1 166:1 168:3 177:1 185:2 205:3 223:1 243:1 259:1 268:1 282:1 283:12 294:1 313:1 315:2 328:1 340:1 392:1 420:3 435:1 440:1 507:1 550:2 553:1 561:1 567:2 590:1 594:2 597:1 598:1 611:2 620:1 628:1 637:1 666:1 670:1 676:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 794:1 797:1 816:2 818:3 828:1 829:1 843:6 856:1 860:1 868:2 872:4 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:1 987:1 1010:1 1036:1 1046:1 1059:2 1072:1 1092:1 1096:2 1104:1 1110:1 1155:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1303:1 1326:2 1331:4 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:1 1436:1 1437:1 1471:1 1476:1 1491:1 1493:2 1496:2 1502:1 1520:1 1524:1 1547:1 1548:1 1557:3 1561:1 1578:1 1579:1 1601:2 1621:1 1659:1 1668:1 1682:1 1695:1 1707:1 1723:1 1752:1 1797:8 1802:1 1809:2 1827:1 1833:1 1853:2 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:3 1975:1 1986:1 1988:1 2016:1 2035:1 2038:1 2041:1 2051:1 2058:1 2060:1 2063:1 2064:2 2065:2 2077:1 2096:1 2098:1 2104:1 2105:1 2108:1 2109:2 2112:4 2117:1 2118:1 2119:2 2125:1 2126:1 2129:1 2140:1 2141:5 2143:1 2144:6 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:1 2261:1 2263:1 2279:1 2298:2 2310:3 2326:1 2344:1 2350:1 2360:5 2369:1 2391:2 2397:1 2401:1 2408:3 2412:1 2414:1 2443:2 2473:1 2477:2 2480:1 2483:1 2493:1 2497:1 2502:1 2512:1 2530:1 2533:1 2549:3 2575:1 2580:1 2581:1 2583:1 2587:3 2596:2 2600:1 2605:1 2670:1 2683:9 2696:2 2702:1 2718:1 2733:6 2756:1 2761:3 2765:1 2813:1 2857:1 2881:1 2882:1 2951:1 2963:1 2994:2 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:1 3109:3 3149:1 3157:1 3171:1 3173:1 3214:1 3225:1 3226:1 3230:1 3238:1 3270:1 3293:2 3299:1 3317:1 3322:1 3332:1 3348:3 3357:2 3358:1 3364:1 3386:3 3426:1 3430:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:1 3491:5 3520:1 3524:2 3525:1 3530:1 3532:1 3533:5 3534:1 3548:2 3568:2 3571:1 3581:1 3584:1 3601:1 3610:1 3631:1 3633:2 3638:1 3648:2 3671:1 3672:1 3676:1 3694:2 3701:1 3706:1 3709:1 3714:2 3715:1 3724:3 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:1 3986:1 4034:1 4055:4 4056:1 4073:1 4115:1 4123:1 4129:1 4145:1 4170:1 4220:1 4260:1 4263:2 4264:1 4272:3 4290:1 4331:1 4334:6 4365:1 4388:1 4390:1 4398:1 4403:1 4414:3 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4513:7 4515:2 4530:1 4531:2 4557:1 4560:5 4566:1 4577:1 4596:3 4607:2 4608:2 4609:1 4610:1 4615:3 4628:2 4630:2 4633:1 4640:1 4642:1 4643:2 4662:1 4682:1 4715:2 4751:1 4754:1 4765:1 4769:1 4793:1 4795:1 4806:1 4812:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4926:3 4942:2 4952:1 4987:1 5039:1 5047:1 5056:1 5074:1 5078:1 5086:1 5088:1 5091:2 5100:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5249:1 5254:1 5278:4 5279:1 5304:1 5332:1 5365:1 5391:1 5394:2 5397:1 5424:1 5493:1 5518:1 5519:9 5533:1 5542:2 5546:1 5551:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5670:1 5673:1 5685:1 5688:1 5711:4 5724:1 5729:1 5773:1 5788:3 5791:1 5801:1 5804:1 5805:1 5807:2 5813:1 5815:8 5816:2 5857:1 5876:1 5928:2 5957:2 6030:1 6041:1 6063:1 6068:1 6078:1 6088:1 6110:1 6117:1 6153:1 6155:1 6179:2 6191:1 6201:4 6212:1 6218:1 6223:1 6248:1 6253:1 6262:1 6280:1 6303:1 6331:1 6333:2 6340:1 6352:1 6364:1 6365:2 6380:1 6389:1 6394:2 6414:1 6448:1 6455:1 6462:1 6475:7 6476:1 6491:1 6498:1 6515:1 6519:1 6523:1 6543:1 6568:1 6601:1 6615:1 6630:1 6648:1 6658:3 6671:2 6684:1 6713:2 6717:1 6720:1 6734:1 6741:1 6754:1 6760:1 6804:1 6833:1 6866:1 6882:1 6883:2 6919:1 6920:9 6933:1 6943:1 6944:2 6963:2 6979:28 6983:1 7003:1 7004:6 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:1 7169:1 7219:1 7223:1 7238:1 7244:2 7265:1 7296:1 7345:1 7348:1 7371:1 7386:2 7388:3 7402:1 7431:1 7438:1 7446:1 7449:2 7455:1 7460:2 7471:1 7473:3 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7657:1 7660:1 7669:2 7678:3 7680:1 7683:1 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7774:1 7781:1 7783:2 7784:1 7787:2 7788:1 7789:1 7791:1 7794:3 7796:1 7797:1 7800:1 7833:2 7838:2 7863:1 7869:1 7872:2 7879:1 7892:1 7931:1 7965:1 7973:1 7994:1 8000:1 8007:1 8050:1 8052:2 8093:1 8095:1 8096:3 8100:1 8111:2 8119:1 8121:1 8124:1 8146:1 8147:1 8182:1 8204:2 8215:1 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8336:3 8352:1 8360:2 8380:1 8391:1 8437:1 8441:2 8443:1 8449:2 8460:12 8483:2 8484:1 8493:1 8531:1 8537:1 8564:1 8576:1 8584:2 8585:4 8587:1 8608:1 8625:1 8633:2 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8757:1 8771:1 8772:1 8778:1 8786:1 8790:1 8792:1 8798:1 8803:1 8826:1 8833:1 8857:5 8864:2 8867:1 8868:3 8877:2 8890:1 8931:2 8963:1 8990:1 9004:3 9010:1 9018:1 9030:1 9038:1 9040:1 9043:2 9055:2 9070:1 9074:1 9084:1 9086:1 9094:1 9108:1 9111:1 9120:4 9135:1 9142:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9382:1 9388:1 9430:1 9447:1 9461:1 9462:1 9470:1 9481:1 9484:2 9492:2 9513:1 9553:1 9562:1 9584:1 9592:1 9594:1 9605:2 9607:1 9610:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9750:3 9758:3 9775:1 9778:5 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9902:2 9914:1 9945:1 9970:3 9974:1 9976:1 9984:1 10003:1 10007:1 10009:1 10014:1 10023:1 10043:4 10059:1 10065:1 10066:1 10068:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10187:1 10211:1 10220:1 10246:3 10251:1 10271:1 10284:1 10303:2 10316:1 10317:1 10332:1 10333:1 10339:2 10341:1 10361:1 10395:3 10396:1 10398:1 10450:1 10463:1 10484:1 10490:1 10493:1 10498:1 10523:1 10531:1 10536:1 10544:1 10548:1 10552:2 10554:3 10573:3 10596:1 10616:2 10623:1 10631:1 10634:1 10638:1 10647:1 10668:1 10678:3 10693:3 10701:1 10705:1 10725:1 10728:1 10744:1 10777:1 10790:1 10829:1 10862:3 10864:1 10871:1 10902:1 10911:2 10913:2 10929:1 10953:3 10968:1 10978:1 10982:1 11062:2 11063:3 11065:1 11082:1 11102:1 11115:1 11116:3 11128:1 11135:1 11177:1 11187:1 11210:1 11215:3 11231:1 11241:1 11279:1 11280:1 11283:2 11297:1 11304:1 11314:1 11332:1 11356:1 11398:1 11411:1 11438:1 11443:1 11454:1 11483:1 11522:3 11534:1 11543:1 11561:7 11578:1 11586:2 11590:3 11599:1 11622:1 11655:1 11687:1 11696:1 11697:2 11715:1 11723:2 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11868:2 11945:3 11949:1 11972:1 11978:4 11982:2 11988:1 11995:1 11996:4 12027:1 12043:1 12071:2 12075:1 12103:1 12107:1 12110:1 12118:2 12124:2 12127:1 12145:1 12164:1 12168:1 12184:1 12186:3 12188:1 12200:1 12208:1 12217:1 12226:1 12237:1 12243:3 12265:1 12280:2 12284:1 12285:1 12320:1 12398:1 12418:1 12420:1 12454:1 12457:1 12460:3 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:2 12664:3 12667:1 12668:2 12686:1 12708:1 12727:2 12745:1 12751:1 12796:1 12820:1 12834:1 12867:1 12883:4 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13040:1 13057:1 13083:1 13084:1 13086:2 13088:3 13090:1 13092:4 13100:1 13104:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13214:3 13240:1 13247:2 13288:3 13321:1 13340:1 13367:1 13386:1 13391:3 13410:1 13422:2 13442:1 13486:1 13563:3 13566:1 13570:1 13586:1 13609:1 13629:1 13637:3 13639:1 13652:1 13659:1 13679:1 13680:1 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:3 13771:1 13856:1 13864:1 13868:1 13881:1 13897:1 13903:1 13947:1 13959:1 13971:2 14015:2 14033:1 14043:4 14089:2 14098:1 14103:1 14104:3 14115:1 14119:1 14131:1 14135:1 14152:2 14164:1 14177:2 14228:1 14252:2 14263:3 14275:2 14284:1 14290:2 14295:1 14303:1 14305:1 14306:1 14320:1 14321:1 14351:1 14359:1 14388:1 14389:1 14418:3 14424:1 14434:1 14492:1 14493:3 14533:1 14540:3 14546:1 14548:1 14556:1 14557:1 14616:1 14653:1 14669:7 14670:1 14675:1 14687:2 14695:1 14730:2 14747:2 14750:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15006:1 15010:2 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:1 15175:1 15186:1 15195:1 15224:1 15241:1 15244:2 15260:1 15272:1 15278:1 15285:1 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:1 15402:1 15405:4 15410:1 15459:1 15468:3 15480:1 15495:1 15508:3 15530:1 15531:1 15544:2 15571:1 15576:1 15578:1 15583:3 15607:3 15617:1 15636:1 15638:1 15661:1 15663:1 15675:1 15688:1 15697:2 15705:2 15716:1 15774:1 15778:2 15784:1 15869:1 15880:1 15884:1 15897:2 15916:1 15920:1 15941:1 15962:1 15963:2 15970:2 15981:1 15992:3 15993:1 16025:1 16041:4 16042:2 16073:1 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16170:1 16174:1 16189:2 16195:1 16207:1 16221:1 16253:1 16254:1 16278:1 16284:2 16301:3 16305:1 16311:12 16317:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16427:1 16436:3 16464:1 16476:1 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:2 16573:1 16583:1 16592:1 16616:1 16637:1 16643:1 16670:1 16682:1 16728:1 16770:1 16776:1 16778:1 16870:4 16887:1 16927:1 16949:1 16991:1 16998:1 17021:2 17023:2 17027:1 17045:1 17053:2 17057:1 17065:1 17069:971 17086:1 17118:1 17119:1 17128:1 17150:1 17187:1 17193:1 17254:2 17260:3 17266:1 17272:2 17274:1 17276:1 17346:3 17350:1 17359:1 17381:12 17398:2 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17518:2 17527:2 17543:1 17557:1 17573:2 17582:1 17590:1 17621:1 17639:1 17641:1 17673:1 17678:1 17689:1 17691:1 17697:2 17701:1 17707:1 17719:4 17723:1 17738:1 17747:1 17772:6 17791:1 17807:4 17808:1 17819:1 17826:1 17838:1 17879:1 17924:1 17927:1 17937:1 17949:3 17951:1 17957:1 17966:1 17984:1 17985:1 17986:1 18007:1 18011:1 18033:1 18064:1 18097:1 18106:1 18115:1 18143:2 18157:1 18164:1 18176:1 18180:1 18183:1 18184:1 18196:1 18202:1 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18320:1 18330:1 18349:1 18356:2 18367:1 18382:2 18395:1 18408:1 18409:1 18430:1 18437:1 18470:1 18481:1 18483:1 18510:1 18513:2 18545:3 18568:1 18589:3 18590:2 18594:2 18603:1 18606:1 18611:1 18651:1 18661:1 18758:2 18762:2 18802:1 18806:3 18815:1 18819:1 18826:1 18867:1 18874:2 18903:4 18932:1 18936:1 18937:1 18968:1 18983:1 18984:1 19003:2 19007:1 19009:1 19016:1 19032:1 19042:2 19063:2 19088:1 19098:2 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:1 19283:2 19292:1 19316:1 19321:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19434:1 19466:1 19470:1 19581:1 19603:1 19631:1 19656:1 19659:1 19667:1 19675:1 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:3 19749:1 19751:1 19758:1 19763:1 19768:1 19775:1 19777:1 19793:1 19798:1 19802:5 19822:1 19836:1 19865:1 19892:1 19897:1 19905:1 19909:7 19920:1 19927:2 19940:1 19941:1 19942:1 19951:1 19994:1 20000:1 20022:1 20025:1 20032:1 20035:1 20039:1 20044:1 20063:2 20080:2 20097:1 20127:2 20158:1 20167:1 20180:1 20184:1 20211:1 20222:2 20228:1 20232:1 20265:1 20272:1 20274:1 20278:1 20294:1 20305:2 20349:1 20355:1 20381:3 20383:2 20385:3 20396:2 20400:1 20423:1 20433:1 20434:2 20457:1 20464:3 20466:1 20467:2 20494:1 20498:1 20499:1 20505:1 20534:1 20536:1 20540:1 20552:1 20564:1 20567:1 20600:1 20617:1 20624:1 20625:12 20634:2 20637:1 20640:1 20663:1 20672:1 20676:1 20692:1 20693:1 20697:1 20776:1 20779:1 20786:1 20804:2 20807:1 20853:1 20856:2 20868:1 20871:1 20876:1 20882:1 20900:2 20903:1 20911:1 20912:1 20952:1 20960:1 20973:1 21023:1 21064:1 21070:1 21077:1 21087:1 21088:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:2 21146:1 21155:3 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21383:1 21388:1 21395:1 21402:1 21440:2 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:5 21541:2 21550:1 21582:1 21584:1 21586:1 21597:1 21633:1 21636:1 21649:1 21663:2 21696:2 21703:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21780:1 21789:1 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21901:1 21915:1 21923:1 21934:1 21956:1 21996:1 22005:3 22013:3 22018:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22110:1 22112:1 22137:1 22154:1 22165:2 22166:2 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:1 22277:1 22279:2 22281:2 22283:4 22284:1 22288:1 22289:2 22290:1 22297:2 22300:1 22304:2 22307:1 22320:1 22323:1 22352:1 22357:2 22359:1 22371:1 22384:2 22388:3 22403:1 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22503:1 22517:2 22535:2 22546:3 22549:1 22559:1 22594:1 22630:2 22631:1 22650:1 22691:3 22702:1 22713:1 22715:3 22723:2 22749:2 22775:1 22789:1 22796:1 22808:1 22810:3 22821:1 22832:1 22834:1 22841:2 22899:1 22912:1 22942:6 22950:1 22962:2 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23035:1 23078:1 23081:2 23089:2 23094:1 23102:1 23104:2 23106:4 23121:1 23123:2 23124:5 23128:1 23129:2 23139:1 23146:1 23149:1 23152:1 23157:1 23160:1 23185:2 23200:2 23229:1 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23363:1 23366:1 23379:1 23387:1 23391:1 23393:2 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23618:1 23632:1 23638:1 23645:1 23670:1 23688:1 23703:1 23705:2 23735:1 23740:1 23749:1 23753:1 23770:3 23796:4 23814:1 23833:1 23835:1 23838:1 23856:1 23857:1 23862:1 23873:1 23891:1 23908:4 23910:1 23937:2 23952:1 23972:1 24008:2 24035:2 24041:1 24045:1 24050:2 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:1 24156:1 24172:2 24178:1 24200:1 24202:1 24218:1 24242:1 24244:1 24256:1 24271:5 24293:2 24351:1 24383:1 24388:1 24404:1 24453:1 24454:1 24478:1 24489:1 24493:1 24533:1 24542:1 24568:1 24588:4 24602:2 24610:3 24619:1 24634:1 24635:1 24653:1 24674:1 24685:3 24686:1 24718:1 24735:2 24756:5 24787:1 24797:1 24816:1 24845:5 24849:2 24861:1 24866:2 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24942:1 24943:2 24951:1 24967:1 24990:1 24993:1 25002:1 25015:1 25020:2 25035:1 25064:1 25147:1 25152:1 25198:1 25230:4 25281:1 25340:2 25433:1 25435:4 25443:1 25462:1 25500:1 25509:1 25541:1 25542:1 25549:12 25550:2 25553:5 25554:1 25555:2 25564:1 25590:5 25607:1 25640:1 25648:2 25663:1 25677:1 25696:1 25719:9 25721:1 25725:1 25738:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:1 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:1 25880:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26186:1 26190:1 26192:1 26204:1 26211:1 26219:1 26232:2 26241:1 26247:2 26249:1 26255:1 26264:1 26294:1 26325:1 26335:2 26349:1 26361:1 26372:1 26377:2 26399:1 26413:1 26414:1 26438:2 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:1 26595:1 26601:5 26614:1 26616:1 26638:5 26649:3 26679:1 26714:6 26715:2 26716:1 26720:1 26722:1 26726:2 26727:1 26742:1 26762:2 26766:3 26771:2 26812:1
9 8:1 10:1 38:2 52:1 66:1 91:1 92:1 114:1 132:1 157:1 166:1 168:3 177:1 185:2 205:3 223:1 243:1 259:1 268:1 282:1 283:14 294:1 313:1 315:2 328:1 340:1 392:1 420:3 435:1 440:1 507:1 550:2 553:1 561:1 567:2 590:1 594:2 597:1 598:1 611:2 620:1 628:1 637:1 666:1 670:1 676:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 794:1 797:1 816:2 818:3 828:1 829:1 843:7 856:1 860:1 868:2 872:4 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:1 987:1 1010:1 1036:1 1046:1 1059:2 1072:1 1092:1 1096:2 1104:1 1110:1 1155:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1303:1 1326:2 1331:4 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:1 1436:1 1437:1 1471:1 1476:1 1491:1 1493:2 1496:2 1502:1 1520:1 1524:1 1547:1 1548:1 1557:3 1561:1 1578:1 1579:1 1601:2 1621:1 1659:1 1668:1 1682:1 1695:1 1699:1 1707:1 1723:1 1752:1 1797:9 1802:1 1809:2 1827:1 1833:1 1834:1 1853:3 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:3 1975:1 1986:1 1988:1 2016:1 2035:1 2038:1 2041:1 2042:1 2051:1 2057:1 2058:1 2060:1 2063:1 2064:2 2065:2 2077:1 2096:1 2098:1 2104:1 2105:1 2108:2 2109:3 2112:4 2117:1 2118:1 2119:2 2123:1 2125:1 2126:1 2129:1 2140:1 2141:5 2143:1 2144:6 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:1 2261:1 2263:1 2279:1 2298:2 2310:3 2320:1 2326:1 2344:1 2350:1 2360:5 2369:1 2391:2 2397:1 2401:1 2408:3 2412:2 2414:1 2443:2 2473:1 2477:2 2480:1 2483:1 2493:1 2497:1 2502:1 2512:1 2516:1 2530:1 2533:1 2549:3 2575:1 2580:1 2581:1 2583:1 2587:3 2596:2 2600:1 2605:1 2631:1 2670:2 2683:9 2696:2 2702:1 2718:1 2733:6 2756:1 2761:3 2765:1 2787:1 2813:1 2856:1 2857:1 2881:1 2882:1 2951:1 2963:1 2968:1 2994:3 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:2 3089:1 3109:3 3149:1 3157:1 3171:1 3173:1 3214:1 3225:1 3226:1 3230:1 3238:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3332:1 3348:3 3356:1 3357:2 3358:1 3364:1 3386:3 3416:1 3426:1 3430:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:5 3500:1 3520:1 3524:2 3525:1 3530:1 3532:1 3533:5 3534:1 3548:2 3568:2 3571:1 3581:1 3584:1 3594:1 3601:1 3610:1 3631:1 3633:2 3638:1 3648:2 3671:1 3672:1 3676:1 3694:2 3701:1 3706:1 3709:1 3714:2 3715:1 3724:4 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:1 3986:1 4000:1 4034:1 4055:4 4056:1 4073:1 4115:1 4123:1 4129:1 4145:1 4170:1 4220:1 4260:1 4263:2 4264:1 4272:3 4290:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4414:3 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4513:8 4515:2 4530:1 4531:2 4538:1 4557:1 4560:5 4566:1 4577:1 4578:1 4591:1 4596:3 4607:2 4608:2 4609:1 4610:1 4615:3 4628:2 4630:2 4633:1 4640:1 4642:1 4643:2 4662:1 4682:1 4715:2 4734:1 4751:1 4754:1 4765:1 4769:1 4793:1 4795:1 4806:1 4812:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4926:4 4929:1 4942:2 4952:1 4968:1 4987:1 5004:1 5025:1 5039:1 5047:1 5056:2 5074:1 5078:1 5085:1 5086:1 5088:1 5091:2 5100:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5249:1 5254:1 5278:4 5279:1 5283:1 5304:1 5332:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5493:2 5518:1 5519:9 5533:2 5542:2 5546:1 5551:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5670:1 5673:1 5685:1 5688:1 5711:4 5724:1 5729:1 5773:1 5788:3 5791:1 5801:1 5804:1 5805:1 5807:3 5813:2 5815:8 5816:2 5857:1 5876:1 5928:2 5957:2 6030:1 6036:1 6041:1 6063:1 6068:1 6078:1 6088:1 6110:1 6117:1 6122:1 6153:1 6155:1 6179:2 6181:1 6191:1 6201:4 6212:1 6218:1 6223:1 6248:1 6253:1 6262:1 6280:1 6303:1 6331:1 6333:2 6340:1 6352:1 6364:1 6365:2 6380:1 6389:1 6394:2 6414:1 6448:1 6455:1 6462:1 6475:7 6476:1 6491:1 6498:1 6515:1 6519:1 6523:1 6543:1 6568:1 6601:2 6615:1 6630:1 6648:1 6658:3 6671:2 6674:1 6684:1 6713:2 6717:1 6720:1 6734:1 6741:1 6754:1 6760:1 6804:1 6833:1 6866:1 6882:1 6883:2 6919:1 6920:9 6933:1 6943:1 6944:2 6945:1 6963:2 6979:32 6983:1 7003:2 7004:6 7006:1 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:1 7169:1 7219:1 7223:1 7238:1 7244:2 7265:1 7296:1 7345:1 7348:1 7371:1 7386:2 7388:3 7390:1 7402:1 7404:1 7431:1 7438:1 7446:1 7449:2 7455:1 7460:2 7471:1 7473:3 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7657:1 7660:1 7669:2 7678:3 7680:1 7683:1 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:1 7787:2 7788:1 7789:1 7791:1 7794:3 7796:1 7797:1 7800:1 7833:2 7838:3 7863:1 7869:1 7872:2 7879:1 7892:1 7931:1 7965:1 7973:1 7994:1 8000:1 8007:1 8050:1 8052:2 8093:1 8095:1 8096:3 8100:1 8111:2 8119:1 8121:1 8124:1 8146:1 8147:1 8182:1 8196:1 8204:2 8215:2 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8336:3 8352:1 8360:2 8365:1 8380:1 8391:1 8437:1 8441:2 8443:1 8449:2 8460:14 8483:2 8484:1 8493:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:4 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8757:1 8771:1 8772:1 8778:1 8786:1 8790:2 8792:1 8798:1 8803:1 8826:1 8833:1 8857:5 8864:2 8867:1 8868:3 8877:2 8890:1 8931:2 8963:1 8990:1 9004:3 9010:1 9018:1 9030:1 9038:1 9040:1 9043:2 9055:2 9070:1 9071:1 9074:1 9084:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9382:1 9388:1 9430:1 9447:1 9461:1 9462:1 9470:1 9481:1 9484:2 9492:2 9513:1 9553:1 9562:1 9584:1 9592:1 9594:1 9605:2 9607:1 9610:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9750:3 9758:3 9775:1 9778:6 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9902:2 9914:1 9945:1 9970:3 9972:1 9974:1 9976:1 9984:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:4 10059:1 10065:1 10066:1 10068:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10187:1 10211:1 10220:1 10246:3 10251:1 10271:1 10284:1 10303:2 10316:1 10317:1 10332:1 10333:1 10339:2 10341:1 10361:1 10368:1 10395:3 10396:1 10398:1 10408:1 10425:1 10450:1 10463:1 10484:1 10490:1 10493:1 10498:1 10523:1 10530:1 10531:1 10536:1 10544:2 10548:1 10552:2 10554:3 10573:3 10596:1 10616:2 10623:1 10629:1 10631:1 10634:1 10638:1 10647:1 10668:1 10678:3 10693:3 10701:1 10705:1 10725:1 10728:1 10744:1 10777:1 10790:1 10829:1 10862:3 10864:1 10871:1 10902:1 10911:2 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11061:1 11062:2 11063:3 11065:1 11082:1 11102:1 11115:1 11116:3 11128:1 11135:1 11177:1 11187:1 11206:1 11210:1 11215:3 11231:1 11241:1 11271:1 11279:1 11280:1 11283:2 11297:1 11304:1 11314:1 11332:1 11356:1 11398:1 11409:1 11411:1 11438:1 11443:1 11454:2 11483:1 11522:3 11534:1 11543:1 11561:7 11578:1 11586:2 11590:3 11593:1 11599:1 11622:1 11655:1 11687:1 11696:1 11697:2 11715:1 11723:2 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11868:2 11908:1 11945:3 11949:1 11972:1 11978:4 11982:3 11988:1 11995:1 11996:5 12027:1 12041:1 12043:1 12071:2 12075:1 12103:1 12107:1 12110:1 12118:2 12124:2 12127:1 12145:1 12164:1 12168:1 12169:1 12184:1 12186:3 12188:1 12200:1 12208:1 12217:1 12226:1 12237:1 12243:3 12265:1 12280:2 12284:1 12285:1 12320:1 12398:1 12418:1 12420:1 12454:2 12457:1 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12536:1 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12629:2 12664:3 12667:1 12668:2 12686:1 12708:1 12718:1 12727:3 12745:1 12751:1 12762:1 12796:1 12820:1 12834:1 12867:1 12883:4 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13040:1 13057:1 13083:1 13084:1 13086:2 13088:3 13090:1 13092:4 13100:1 13104:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13214:3 13240:1 13247:2 13278:1 13288:3 13321:1 13340:1 13367:1 13386:1 13391:3 13410:1 13422:2 13442:1 13486:1 13503:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13659:1 13679:1 13680:1 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:3 13771:1 13856:1 13859:1 13864:1 13868:1 13881:1 13887:1 13897:1 13903:1 13905:1 13947:1 13959:1 13971:2 14015:2 14033:1 14043:4 14089:2 14098:1 14103:1 14104:3 14115:2 14119:1 14131:1 14135:1 14152:2 14164:1 14177:2 14228:1 14252:2 14263:3 14275:2 14284:1 14290:2 14295:2 14303:1 14305:2 14306:1 14316:1 14320:1 14321:1 14351:1 14359:1 14388:1 14389:1 14418:3 14424:1 14434:1 14461:1 14492:1 14493:3 14533:1 14540:3 14546:1 14548:1 14556:1 14557:1 14616:2 14653:1 14662:1 14669:8 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15006:1 15010:2 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15175:1 15186:1 15195:1 15224:1 15241:1 15244:2 15260:1 15272:1 15278:1 15285:1 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:1 15402:1 15405:4 15410:1 15426:1 15459:1 15468:3 15480:1 15495:1 15508:3 15530:1 15531:1 15544:2 15571:1 15576:1 15578:1 15583:3 15607:3 15617:1 15636:1 15638:1 15661:1 15663:1 15671:1 15675:1 15688:1 15697:2 15705:2 15716:1 15774:1 15778:2 15784:1 15869:1 15880:1 15884:1 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:2 15970:2 15981:1 15992:3 15993:1 16025:1 16041:4 16042:2 16073:1 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16170:1 16174:1 16189:2 16195:1 16207:1 16221:1 16253:1 16254:1 16278:1 16284:2 16301:4 16305:1 16311:13 16317:1 16319:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16424:1 16427:1 16436:3 16464:1 16476:1 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16583:1 16592:1 16616:1 16637:1 16643:1 16670:1 16682:1 16728:1 16770:1 16776:1 16778:1 16870:4 16887:1 16927:1 16928:1 16949:1 16991:1 16998:1 17021:2 17023:2 17027:1 17045:1 17053:3 17057:1 17065:1 17069:1088 17086:1 17118:2 17119:1 17128:1 17150:1 17187:1 17193:1 17234:1 17254:2 17260:3 17266:1 17272:2 17274:1 17276:1 17304:1 17346:3 17350:1 17359:1 17381:14 17398:2 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17518:2 17527:2 17543:1 17557:1 17573:2 17582:1 17590:1 17595:1 17621:1 17639:1 17641:1 17673:1 17678:1 17685:1 17689:1 17691:1 17697:2 17701:1 17707:1 17719:4 17723:1 17738:1 17747:1 17772:6 17791:1 17792:1 17807:5 17808:1 17819:1 17826:1 17838:1 17879:1 17924:1 17927:1 17937:1 17949:3 17951:1 17957:1 17966:1 17984:1 17985:1 17986:1 18007:1 18011:1 18033:1 18056:1 18064:1 18097:1 18106:1 18115:1 18143:2 18157:1 18164:1 18170:1 18176:1 18180:1 18183:1 18184:1 18185:1 18196:1 18202:2 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18320:1 18330:1 18349:1 18356:2 18367:1 18382:2 18395:1 18408:1 18409:1 18430:1 18437:1 18452:1 18470:1 18481:1 18483:1 18510:1 18513:2 18545:3 18568:1 18589:3 18590:2 18594:2 18603:1 18606:1 18611:1 18648:1 18651:1 18661:1 18666:1 18758:2 18762:2 18774:1 18802:1 18806:3 18815:1 18819:1 18826:1 18867:1 18874:2 18903:4 18932:1 18936:1 18937:1 18968:1 18983:1 18984:1 19003:2 19007:1 19009:1 19016:1 19032:1 19042:2 19063:2 19088:1 19098:2 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:1 19283:2 19292:1 19316:1 19321:1 19326:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19434:2 19466:1 19470:1 19581:1 19603:1 19631:1 19656:1 19659:1 19667:1 19675:2 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:3 19749:1 19751:1 19758:1 19763:1 19768:1 19775:1 19777:1 19793:1 19798:1 19802:5 19822:1 19836:1 19865:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:2 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:1 20032:1 20035:1 20039:1 20044:1 20061:1 20063:2 20080:2 20085:1 20097:1 20127:2 20158:1 20167:1 20180:1 20184:1 20211:1 20222:3 20228:1 20232:1 20265:1 20272:1 20274:1 20278:1 20294:1 20305:2 20349:1 20355:1 20381:3 20383:2 20385:3 20396:2 20400:1 20423:1 20433:1 20434:2 20457:1 20464:3 20466:1 20467:2 20494:1 20498:1 20499:1 20505:1 20534:1 20536:1 20540:1 20552:1 20564:1 20567:1 20598:1 20600:1 20617:1 20624:1 20625:13 20634:3 20637:1 20640:1 20663:2 20672:1 20676:1 20692:1 20693:1 20697:1 20736:1 20776:1 20779:1 20786:1 20804:2 20807:1 20853:1 20856:2 20868:1 20871:1 20876:2 20882:1 20900:2 20903:1 20911:1 20912:1 20952:1 20960:1 20973:1 21023:1 21064:1 21070:1 21077:1 21087:1 21088:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:2 21146:1 21155:3 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21383:1 21388:1 21395:1 21402:1 21440:2 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:5 21541:2 21550:1 21556:1 21582:1 21584:1 21586:1 21597:1 21633:1 21636:1 21649:1 21663:2 21696:2 21703:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21780:1 21789:1 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21901:1 21915:1 21923:1 21934:1 21956:1 21996:1 22005:3 22013:3 22018:1 22029:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22093:1 22110:1 22112:1 22137:1 22154:1 22165:2 22166:2 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:1 22277:1 22279:3 22281:2 22283:4 22284:1 22288:1 22289:2 22290:1 22297:2 22300:1 22304:2 22307:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:1 22384:2 22388:3 22403:1 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22503:1 22517:2 22535:2 22544:1 22546:3 22549:1 22559:1 22594:1 22630:2 22631:1 22650:1 22656:1 22691:3 22702:1 22713:1 22715:3 22723:2 22749:2 22775:1 22789:1 22796:1 22808:1 22810:3 22814:1 22821:1 22832:1 22834:1 22841:3 22882:1 22899:1 22912:1 22942:8 22950:1 22962:3 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23035:1 23078:1 23081:2 23089:2 23094:1 23102:1 23104:2 23106:4 23121:1 23123:2 23124:5 23128:1 23129:2 23139:1 23146:1 23149:1 23152:1 23157:1 23160:1 23185:2 23200:2 23229:1 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23363:1 23366:1 23379:1 23387:1 23391:1 23393:2 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23618:1 23632:1 23638:1 23645:1 23670:1 23688:1 23703:1 23705:2 23735:1 23740:1 23749:1 23753:1 23770:3 23796:4 23814:1 23833:1 23835:1 23838:1 23856:1 23857:1 23862:1 23873:1 23891:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:1 24008:2 24035:2 24037:1 24041:1 24045:1 24050:2 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:1 24156:1 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24242:1 24244:1 24256:1 24271:5 24293:2 24351:1 24383:1 24388:1 24404:1 24453:1 24454:1 24478:1 24481:1 24489:1 24493:1 24533:1 24542:1 24568:1 24588:4 24602:2 24610:3 24619:1 24634:1 24635:1 24638:1 24653:1 24674:1 24685:4 24686:1 24718:1 24735:2 24756:5 24787:2 24797:1 24816:1 24845:5 24849:2 24861:1 24866:2 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24942:1 24943:2 24951:1 24967:1 24983:1 24990:1 24993:1 25002:1 25015:1 25020:2 25035:1 25064:1 25147:1 25152:1 25198:1 25230:4 25281:1 25325:1 25340:2 25433:1 25435:4 25443:1 25462:1 25500:1 25509:1 25541:1 25542:1 25549:12 25550:2 25553:5 25554:1 25555:2 25564:1 25590:5 25607:1 25640:1 25648:2 25663:1 25677:1 25688:1 25696:1 25719:9 25721:1 25725:1 25738:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:1 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:1 25880:1 25895:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26186:1 26190:1 26192:1 26204:2 26211:1 26219:1 26232:3 26241:1 26247:2 26249:1 26255:1 26264:1 26294:1 26299:1 26325:1 26335:2 26349:1 26361:1 26372:1 26377:2 26399:1 26413:1 26414:1 26438:2 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:1 26595:1 26601:5 26614:1 26616:1 26638:5 26649:3 26679:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:2 26727:1 26742:1 26762:2 26766:3 26771:2 26812:1
9 8:1 10:1 38:2 52:1 66:1 91:1 92:1 114:1 132:1 157:1 166:1 168:3 177:1 185:2 205:4 223:1 243:1 259:1 268:2 282:1 283:14 294:1 313:1 315:2 328:1 340:1 378:1 392:2 420:3 435:1 440:1 507:1 550:2 553:1 561:1 567:2 590:1 594:2 597:1 598:1 611:2 620:1 628:1 637:1 666:1 670:1 676:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 790:1 794:1 797:1 816:2 818:3 828:1 829:1 843:7 856:1 860:1 868:2 872:5 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:1 987:1 1010:1 1036:1 1046:1 1059:2 1072:1 1092:1 1096:2 1104:1 1110:1 1155:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1303:1 1326:2 1331:4 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:1 1436:1 1437:1 1471:1 1476:1 1491:1 1493:2 1496:2 1502:1 1520:1 1524:1 1547:1 1548:1 1557:3 1561:1 1578:1 1579:1 1601:2 1621:1 1659:1 1668:1 1682:1 1695:1 1699:1 1707:1 1714:1 1723:1 1752:1 1797:9 1802:1 1809:2 1827:1 1833:1 1834:1 1853:3 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:3 1975:1 1986:1 1988:1 2016:1 2035:1 2038:1 2041:1 2042:1 2051:1 2057:1 2058:1 2060:1 2063:1 2064:2 2065:2 2077:1 2096:1 2098:1 2104:1 2105:1 2108:2 2109:3 2112:4 2117:1 2118:2 2119:2 2123:1 2125:1 2126:1 2129:1 2140:1 2141:6 2143:1 2144:6 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:1 2261:1 2263:1 2279:1 2298:2 2310:3 2320:1 2326:1 2344:1 2350:1 2360:5 2369:1 2391:2 2397:1 2401:1 2408:3 2412:2 2414:1 2443:2 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2502:1 2512:1 2516:1 2530:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:4 2596:2 2600:1 2605:1 2631:1 2670:2 2683:9 2696:2 2702:1 2718:1 2733:6 2756:1 2761:3 2765:1 2787:1 2813:1 2856:1 2857:1 2881:1 2882:1 2951:1 2963:1 2968:1 2994:3 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:2 3089:1 3109:4 3149:1 3157:1 3171:1 3173:2 3214:1 3225:1 3226:1 3230:1 3238:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3332:1 3348:3 3356:1 3357:2 3358:1 3364:1 3384:1 3386:3 3416:1 3426:1 3430:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:6 3500:1 3520:1 3524:2 3525:1 3530:1 3532:1 3533:6 3534:1 3548:2 3568:2 3571:1 3581:1 3584:1 3594:1 3601:1 3610:1 3631:1 3633:2 3638:1 3648:2 3671:1 3672:1 3676:1 3694:2 3701:1 3706:1 3709:1 3714:2 3715:1 3724:4 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:1 3986:1 4000:1 4034:1 4055:4 4056:1 4073:1 4115:1 4123:1 4129:1 4145:1 4170:1 4220:1 4260:1 4263:2 4264:1 4272:3 4290:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4414:3 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4503:1 4513:10 4515:2 4530:1 4531:2 4538:1 4557:1 4560:5 4566:1 4577:1 4578:1 4591:1 4596:3 4607:2 4608:3 4609:1 4610:1 4615:3 4628:2 4630:2 4633:1 4640:1 4642:1 4643:2 4662:1 4682:1 4715:2 4734:1 4751:1 4754:1 4765:1 4769:1 4793:1 4795:1 4806:1 4812:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4926:4 4929:1 4942:2 4944:1 4952:1 4968:1 4987:1 5004:1 5025:1 5039:1 5047:1 5056:2 5074:1 5078:1 5085:1 5086:1 5088:1 5091:2 5100:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5249:1 5254:1 5278:4 5279:1 5283:1 5304:1 5332:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5493:2 5518:1 5519:9 5533:2 5542:2 5546:1 5551:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5670:1 5673:1 5685:1 5688:1 5711:4 5724:1 5729:1 5773:1 5788:3 5791:1 5801:1 5804:1 5805:1 5807:3 5813:2 5815:8 5816:2 5857:1 5876:1 5928:2 5957:2 6030:1 6036:1 6041:1 6063:1 6068:1 6078:1 6088:1 6110:1 6117:1 6122:1 6153:1 6155:1 6177:1 6179:2 6181:1 6191:1 6201:5 6212:1 6218:1 6223:1 6248:1 6253:1 6262:1 6280:1 6291:1 6303:1 6331:1 6333:2 6340:1 6352:1 6364:1 6365:2 6380:1 6389:1 6394:2 6414:1 6448:1 6455:1 6462:1 6475:7 6476:1 6491:1 6498:1 6515:1 6519:1 6523:1 6543:1 6568:1 6601:2 6615:1 6630:1 6648:1 6658:3 6671:2 6674:1 6684:1 6713:2 6717:1 6720:1 6734:1 6741:1 6754:1 6760:1 6786:1 6804:1 6833:1 6866:2 6882:1 6883:2 6919:1 6920:9 6933:1 6943:1 6944:2 6945:1 6963:2 6979:34 6983:1 7003:2 7004:6 7006:1 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:1 7219:1 7223:1 7238:1 7244:2 7265:1 7296:1 7345:1 7348:1 7371:1 7386:2 7388:3 7390:1 7402:1 7404:1 7431:1 7438:1 7446:1 7449:2 7455:1 7460:2 7471:1 7473:3 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7657:1 7660:1 7669:2 7678:3 7680:1 7683:1 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:2 7787:2 7788:1 7789:1 7791:1 7794:4 7796:1 7797:1 7800:1 7833:2 7838:3 7863:1 7869:1 7872:2 7879:1 7892:1 7931:1 7965:1 7973:1 7994:1 8000:1 8007:1 8037:1 8050:1 8052:2 8093:1 8095:1 8096:3 8100:1 8111:2 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8196:1 8204:2 8215:2 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8336:3 8352:1 8360:2 8365:1 8380:1 8391:1 8437:1 8441:3 8443:1 8449:2 8460:14 8483:2 8484:1 8493:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:4 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8757:1 8771:1 8772:1 8778:1 8786:1 8790:2 8792:1 8798:1 8803:1 8826:1 8833:1 8857:5 8864:2 8867:1 8868:3 8877:2 8890:1 8931:2 8963:1 8990:1 9004:3 9010:1 9018:1 9030:1 9038:1 9040:1 9043:2 9047:1 9055:2 9070:1 9071:1 9074:1 9084:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9382:1 9388:1 9430:1 9447:1 9461:1 9462:1 9470:1 9481:1 9484:2 9492:2 9513:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:1 9610:1 9619:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9750:3 9758:4 9775:1 9778:7 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9902:2 9914:1 9945:1 9970:3 9972:1 9974:1 9976:1 9984:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:4 10059:1 10065:1 10066:1 10068:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10187:1 10211:1 10220:1 10246:3 10251:1 10271:1 10284:1 10303:2 10316:1 10317:1 10332:1 10333:1 10339:2 10341:1 10361:1 10368:1 10395:4 10396:1 10398:1 10408:1 10425:1 10450:1 10463:1 10464:1 10484:1 10490:1 10493:1 10498:1 10523:1 10530:1 10531:1 10536:1 10544:2 10548:1 10552:2 10554:3 10573:3 10574:1 10596:1 10616:2 10623:1 10629:1 10631:1 10634:1 10638:1 10647:1 10655:1 10668:1 10678:4 10693:4 10701:1 10705:1 10725:1 10728:1 10744:1 10777:1 10790:1 10829:1 10830:1 10862:3 10864:1 10871:1 10902:1 10911:2 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11061:1 11062:2 11063:3 11065:1 11082:1 11102:1 11115:1 11116:3 11128:1 11135:1 11177:1 11187:1 11206:1 11210:1 11215:3 11231:1 11241:1 11271:1 11279:1 11280:1 11283:2 11297:1 11304:1 11314:1 11332:1 11356:1 11398:1 11409:1 11411:1 11438:1 11443:1 11454:2 11483:1 11522:4 11534:1 11543:1 11561:7 11578:1 11586:2 11590:3 11593:1 11599:1 11622:1 11655:1 11687:1 11696:1 11697:2 11715:1 11723:2 11724:1 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11868:3 11908:1 11945:4 11949:1 11972:1 11978:4 11982:3 11988:1 11995:1 11996:5 12027:1 12041:1 12043:1 12071:2 12075:1 12103:1 12107:1 12110:1 12118:2 12124:2 12127:1 12145:1 12164:1 12168:1 12169:1 12184:1 12186:3 12188:1 12200:1 12208:1 12217:1 12221:1 12226:1 12237:1 12243:3 12265:1 12280:2 12284:1 12285:1 12320:1 12331:1 12398:1 12418:1 12420:1 12454:2 12457:1 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12536:1 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12624:1 12629:2 12664:3 12667:1 12668:2 12686:1 12708:1 12718:1 12727:3 12745:1 12751:2 12762:1 12796:1 12820:1 12834:1 12867:1 12883:5 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13040:1 13057:1 13083:1 13084:1 13086:2 13088:3 13090:1 13092:4 13100:1 13104:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13214:3 13240:1 13247:2 13259:1 13278:1 13288:3 13321:1 13340:1 13367:1 13386:1 13391:3 13410:1 13422:2 13442:1 13486:1 13503:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13659:1 13676:1 13679:1 13680:1 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:4 13771:1 13856:2 13859:1 13864:1 13868:1 13881:1 13887:1 13897:1 13903:1 13905:1 13947:1 13959:1 13971:2 14015:2 14033:1 14043:4 14089:2 14098:1 14103:1 14104:3 14115:2 14119:1 14131:1 14135:1 14152:2 14164:1 14177:2 14228:1 14252:2 14263:3 14275:2 14284:1 14290:2 14295:2 14303:1 14305:2 14306:1 14316:1 14320:1 14321:1 14351:1 14359:1 14388:1 14389:1 14418:3 14424:1 14434:1 14461:1 14492:2 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:2 14616:2 14653:1 14662:1 14669:9 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15006:1 15010:2 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15175:1 15186:1 15195:1 15224:1 15241:1 15244:2 15260:1 15272:1 15278:1 15285:1 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15402:1 15405:4 15410:1 15426:1 15459:1 15464:1 15468:3 15480:1 15495:1 15508:3 15530:1 15531:1 15544:2 15571:1 15576:1 15578:1 15583:4 15607:3 15617:1 15636:1 15638:1 15661:1 15663:1 15671:1 15675:1 15688:1 15697:2 15705:3 15716:1 15774:1 15778:2 15784:1 15869:1 15880:1 15884:1 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:2 15970:2 15981:1 15992:3 15993:1 16025:1 16041:4 16042:2 16073:1 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16170:1 16174:1 16189:2 16195:1 16207:1 16221:1 16253:1 16254:2 16278:1 16284:2 16301:4 16305:1 16311:14 16317:1 16319:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16424:1 16427:1 16436:3 16464:1 16476:1 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16583:1 16592:1 16616:1 16637:1 16643:1 16670:1 16682:1 16728:1 16770:1 16776:1 16778:1 16870:4 16887:1 16927:1 16928:1 16949:1 16963:1 16970:1 16991:1 16998:1 17015:1 17021:2 17023:2 17027:1 17045:1 17053:3 17057:1 17065:1 17069:1124 17086:1 17118:2 17119:1 17128:1 17150:1 17187:1 17193:1 17234:1 17248:1 17254:2 17260:3 17266:1 17272:2 17274:1 17276:1 17304:1 17346:4 17350:1 17359:1 17381:14 17398:3 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17518:2 17527:2 17543:1 17557:1 17573:2 17582:1 17590:1 17595:1 17597:1 17621:1 17639:1 17641:1 17673:1 17678:1 17685:1 17689:1 17691:1 17697:2 17701:1 17707:1 17719:4 17723:1 17738:1 17747:1 17772:6 17791:1 17792:1 17807:5 17808:1 17819:1 17826:1 17838:1 17879:1 17924:1 17927:1 17937:1 17949:3 17951:1 17957:1 17966:1 17984:1 17985:1 17986:1 18007:1 18011:1 18033:1 18056:1 18064:1 18097:1 18106:1 18115:1 18143:2 18157:1 18164:1 18170:1 18176:1 18180:1 18183:1 18184:1 18185:1 18196:1 18202:2 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18320:1 18330:1 18349:1 18356:2 18367:1 18382:2 18395:1 18408:1 18409:1 18430:1 18437:1 18452:1 18470:1 18481:1 18483:1 18510:1 18513:2 18545:3 18568:1 18589:3 18590:2 18594:2 18603:1 18606:1 18611:1 18648:1 18651:1 18661:2 18666:1 18758:2 18762:2 18774:1 18796:1 18802:1 18806:3 18815:1 18819:1 18826:1 18867:1 18874:2 18903:4 18932:1 18936:1 18937:1 18968:1 18983:1 18984:1 19003:2 19007:1 19009:1 19016:1 19032:1 19042:2 19063:2 19088:1 19098:2 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:1 19283:2 19292:1 19316:1 19321:1 19326:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19434:2 19466:1 19470:1 19581:1 19603:1 19631:1 19656:1 19659:1 19667:1 19675:2 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:3 19749:1 19751:1 19758:1 19763:1 19768:2 19775:1 19777:1 19793:1 19798:1 19802:5 19822:1 19836:1 19865:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:2 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:2 20032:1 20035:1 20039:1 20044:1 20061:1 20063:2 20080:2 20085:1 20097:1 20127:2 20158:1 20167:1 20180:1 20184:1 20211:1 20222:3 20228:1 20232:1 20265:1 20272:1 20274:1 20278:2 20294:1 20305:2 20349:1 20355:1 20381:3 20383:2 20385:3 20396:2 20400:1 20423:1 20433:1 20434:2 20457:1 20464:3 20466:1 20467:2 20494:1 20498:1 20499:1 20505:1 20534:1 20536:1 20540:1 20552:1 20564:1 20567:1 20598:1 20600:1 20617:2 20624:1 20625:14 20632:1 20634:3 20637:1 20640:1 20663:2 20672:1 20676:1 20692:1 20693:1 20697:1 20736:1 20776:1 20779:1 20786:1 20804:2 20807:1 20853:1 20856:2 20868:1 20871:1 20876:2 20882:1 20900:2 20903:1 20911:1 20912:1 20952:1 20960:1 20973:1 21023:1 21064:1 21070:1 21077:1 21087:1 21088:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:2 21146:1 21155:3 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21378:1 21383:1 21388:1 21395:1 21402:1 21440:2 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:6 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21586:1 21597:1 21633:1 21636:1 21649:1 21663:2 21696:2 21703:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21780:1 21789:1 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21996:1 22005:4 22013:3 22018:1 22029:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22093:1 22110:1 22112:1 22137:1 22154:1 22165:2 22166:2 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:1 22277:1 22279:3 22281:2 22283:4 22284:1 22288:1 22289:2 22290:1 22297:2 22300:1 22304:2 22307:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:2 22388:3 22403:1 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22503:1 22517:2 22535:2 22544:1 22546:3 22549:1 22559:2 22594:1 22630:2 22631:1 22650:1 22656:1 22691:3 22702:1 22713:1 22715:3 22723:2 22749:2 22775:1 22789:1 22796:1 22808:1 22810:3 22814:1 22821:1 22832:1 22834:1 22841:3 22882:1 22899:1 22912:1 22942:8 22950:1 22962:3 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23035:1 23078:1 23081:2 23089:2 23094:1 23102:1 23104:2 23106:4 23121:1 23123:2 23124:6 23128:1 23129:2 23139:1 23146:1 23149:1 23152:1 23157:1 23160:1 23185:2 23200:2 23229:1 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23363:1 23366:1 23379:1 23387:1 23391:1 23393:2 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23618:1 23632:1 23638:1 23645:1 23670:1 23688:1 23703:1 23705:2 23735:1 23740:1 23749:1 23753:1 23770:3 23796:4 23814:1 23833:1 23835:1 23838:1 23856:1 23857:1 23862:1 23873:1 23891:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:1 24008:2 24035:2 24037:1 24041:1 24045:1 24050:2 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:1 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24242:1 24244:1 24256:1 24271:5 24293:2 24351:1 24383:1 24388:1 24404:1 24453:1 24454:1 24478:1 24481:1 24489:1 24493:1 24533:1 24542:1 24568:1 24588:4 24602:2 24610:3 24619:1 24634:1 24635:1 24638:1 24653:1 24674:1 24685:4 24686:1 24718:1 24735:2 24756:6 24787:2 24797:1 24816:1 24845:5 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24942:1 24943:2 24951:1 24967:1 24983:1 24990:1 24993:1 25002:1 25015:1 25020:2 25035:1 25064:1 25147:1 25152:1 25198:1 25230:4 25281:1 25325:1 25340:2 25433:1 25435:5 25443:1 25462:1 25500:1 25509:1 25541:1 25542:1 25549:13 25550:2 25553:5 25554:1 25555:2 25564:1 25590:5 25607:1 25640:1 25648:2 25663:1 25677:1 25688:1 25696:1 25719:9 25721:1 25725:1 25738:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:1 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:1 25880:1 25895:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26186:1 26190:1 26192:1 26204:2 26211:1 26219:1 26232:3 26241:1 26247:2 26249:1 26255:1 26264:1 26294:1 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26372:1 26377:2 26399:1 26413:1 26414:1 26438:2 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:1 26595:1 26601:5 26614:1 26616:1 26638:5 26649:4 26679:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:2 26727:1 26742:1 26762:2 26766:3 26771:2 26812:1
9 8:1 10:1 38:2 52:1 66:1 91:1 92:1 114:1 132:1 157:1 166:1 168:3 177:1 185:2 205:5 223:1 243:1 259:1 268:2 282:1 283:15 294:1 313:1 315:2 328:1 340:1 378:1 392:2 420:3 435:1 440:1 507:1 550:2 553:1 561:1 567:2 590:1 594:2 597:1 598:1 611:2 620:1 628:1 637:1 645:1 666:1 670:1 676:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 790:1 794:1 797:1 816:3 818:3 828:1 829:1 843:8 856:1 860:1 868:2 872:5 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:1 987:1 1010:1 1036:1 1046:1 1047:1 1059:2 1072:1 1075:1 1092:1 1096:2 1104:1 1110:1 1155:2 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1303:1 1326:2 1328:1 1331:4 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:1 1436:1 1437:1 1443:1 1471:1 1476:1 1491:1 1493:2 1496:2 1502:1 1520:1 1524:1 1547:1 1548:1 1557:3 1561:1 1578:1 1579:1 1601:2 1621:1 1659:1 1668:1 1682:1 1695:1 1699:1 1707:1 1714:1 1723:1 1752:1 1797:9 1802:1 1809:2 1827:1 1833:1 1834:1 1853:3 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:3 1975:1 1986:1 1988:1 2016:1 2035:1 2038:1 2041:1 2042:1 2051:1 2057:1 2058:1 2060:1 2063:1 2064:2 2065:2 2077:1 2096:1 2098:1 2104:1 2105:1 2108:2 2109:3 2112:4 2117:1 2118:2 2119:2 2123:1 2125:1 2126:1 2129:1 2140:1 2141:6 2143:1 2144:6 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:1 2261:1 2263:1 2279:1 2298:2 2310:3 2320:1 2326:1 2344:1 2350:1 2360:5 2369:1 2374:1 2391:2 2397:1 2401:1 2408:3 2412:2 2414:1 2443:2 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2502:1 2512:1 2516:1 2530:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:4 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2670:2 2683:9 2696:2 2702:1 2718:1 2733:6 2756:1 2761:4 2765:1 2787:1 2813:1 2856:1 2857:1 2881:1 2882:1 2951:1 2963:1 2968:1 2994:3 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:2 3089:1 3105:1 3109:4 3149:1 3157:1 3171:1 3173:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3330:1 3332:2 3348:3 3356:1 3357:2 3358:1 3364:1 3384:1 3386:3 3416:1 3426:1 3430:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:6 3500:1 3520:1 3524:2 3525:1 3530:1 3532:1 3533:6 3534:1 3548:2 3557:1 3568:2 3571:1 3581:1 3584:1 3594:1 3601:1 3610:1 3621:1 3631:1 3633:2 3638:1 3648:2 3649:1 3671:1 3672:1 3676:1 3694:2 3701:1 3703:1 3706:2 3709:1 3714:2 3715:1 3724:4 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3915:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:1 3986:1 3988:1 4000:1 4034:1 4055:4 4056:1 4073:1 4115:1 4123:1 4129:1 4145:1 4170:1 4220:1 4260:1 4263:2 4264:1 4272:3 4290:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4414:4 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4503:1 4513:10 4515:2 4530:1 4531:2 4538:1 4557:1 4560:5 4566:1 4577:1 4578:1 4591:1 4596:3 4607:2 4608:3 4609:1 4610:1 4615:3 4619:1 4622:1 4628:2 4630:2 4633:1 4640:1 4642:1 4643:2 4662:1 4682:1 4715:2 4734:1 4751:1 4754:1 4763:1 4765:1 4769:2 4793:1 4795:1 4806:1 4812:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4926:4 4929:1 4942:2 4944:1 4952:1 4968:1 4987:1 5004:1 5025:1 5039:1 5047:1 5056:2 5074:1 5078:1 5085:1 5086:1 5088:1 5091:2 5100:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5249:1 5254:1 5278:4 5279:1 5283:1 5304:1 5332:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5443:1 5493:2 5494:1 5518:1 5519:9 5533:2 5542:2 5546:1 5551:1 5554:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5670:1 5673:1 5685:1 5688:1 5711:4 5724:1 5729:1 5773:1 5788:3 5791:1 5801:1 5804:1 5805:1 5807:3 5813:2 5815:8 5816:2 5857:1 5876:1 5928:2 5957:2 6030:1 6036:1 6041:1 6063:1 6068:1 6078:1 6088:1 6110:1 6117:1 6122:1 6153:1 6155:1 6177:1 6179:2 6181:1 6191:1 6201:5 6212:1 6218:1 6223:1 6248:1 6253:1 6262:1 6280:1 6291:1 6303:1 6331:1 6333:2 6340:1 6352:1 6364:1 6365:2 6380:1 6389:1 6394:2 6414:1 6448:1 6455:1 6462:1 6475:7 6476:1 6491:1 6498:1 6515:1 6519:1 6523:1 6543:1 6568:1 6601:2 6615:1 6630:1 6648:1 6658:3 6671:2 6674:1 6684:1 6713:3 6717:1 6720:1 6734:1 6741:1 6754:1 6760:1 6786:1 6804:1 6833:1 6866:2 6882:1 6883:2 6919:1 6920:9 6933:1 6943:1 6944:2 6945:1 6963:2 6979:34 6983:1 7003:2 7004:6 7006:1 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:1 7219:1 7223:1 7238:1 7244:2 7265:1 7270:1 7296:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7438:1 7446:1 7449:2 7455:1 7460:2 7471:1 7473:3 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7657:1 7660:1 7669:2 7678:3 7680:1 7683:2 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:2 7787:2 7788:1 7789:1 7791:1 7794:4 7796:1 7797:1 7800:1 7833:2 7837:1 7838:3 7863:1 7869:1 7872:2 7879:1 7892:1 7931:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:1 8050:1 8052:2 8093:1 8095:1 8096:3 8100:1 8111:2 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8196:1 8204:2 8215:2 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8336:3 8352:1 8360:2 8365:1 8380:1 8384:1 8391:1 8437:1 8441:3 8443:1 8449:2 8460:15 8483:2 8484:1 8493:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:5 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8737:1 8757:1 8771:1 8772:1 8778:1 8786:1 8790:2 8792:1 8798:1 8803:1 8826:1 8833:1 8857:5 8864:2 8867:1 8868:3 8877:2 8890:1 8931:2 8963:1 8990:1 9004:3 9010:1 9018:1 9030:1 9038:1 9040:1 9043:2 9047:1 9055:2 9070:1 9071:1 9074:1 9084:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9382:1 9388:1 9430:1 9447:1 9461:1 9462:1 9470:1 9481:1 9484:2 9492:2 9513:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:1 9610:1 9619:1 9621:1 9625:1 9633:1 9651:1 9652:1 9653:1 9658:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9733:1 9750:3 9758:4 9775:1 9778:7 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9901:1 9902:2 9914:1 9945:1 9970:3 9972:1 9974:1 9976:1 9984:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:5 10059:2 10065:1 10066:1 10068:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10187:1 10211:1 10220:1 10246:3 10251:1 10271:1 10284:1 10303:2 10316:1 10317:1 10332:1 10333:1 10339:2 10341:1 10361:2 10368:1 10391:1 10395:4 10396:1 10398:1 10408:1 10425:1 10450:1 10463:1 10464:1 10484:1 10490:1 10493:1 10498:1 10523:1 10530:1 10531:1 10536:1 10544:2 10548:1 10552:2 10554:4 10573:4 10574:1 10596:1 10616:2 10623:1 10629:1 10631:1 10634:1 10638:1 10647:1 10655:1 10668:1 10678:4 10693:4 10701:1 10705:1 10725:1 10728:1 10744:1 10777:1 10790:1 10829:1 10830:1 10862:3 10864:1 10871:1 10902:1 10911:2 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11061:1 11062:2 11063:3 11065:1 11082:1 11102:1 11115:1 11116:3 11123:1 11128:1 11135:1 11177:1 11187:1 11206:1 11210:1 11215:3 11231:1 11241:1 11271:1 11279:1 11280:1 11283:2 11297:1 11304:1 11314:1 11332:1 11356:1 11398:1 11409:1 11411:1 11412:1 11424:1 11438:1 11443:1 11454:2 11461:1 11483:1 11522:4 11534:1 11543:1 11561:7 11578:1 11586:2 11590:3 11593:1 11599:1 11622:1 11655:1 11687:1 11696:1 11697:2 11715:1 11723:2 11724:1 11745:1 11768:1 11771:1 11813:1 11824:1 11838:1 11868:3 11908:1 11945:4 11949:1 11972:1 11978:4 11982:3 11988:1 11995:1 11996:5 12027:1 12041:1 12043:1 12071:2 12075:1 12103:1 12107:1 12110:1 12118:2 12124:2 12127:1 12145:2 12164:1 12168:1 12169:1 12184:1 12186:3 12188:1 12200:1 12208:1 12217:1 12221:1 12226:1 12237:1 12243:4 12265:1 12280:2 12284:1 12285:1 12320:1 12331:1 12398:1 12418:1 12420:1 12454:2 12457:1 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12536:1 12540:1 12545:1 12565:1 12573:2 12604:1 12620:1 12624:1 12629:2 12664:3 12667:1 12668:2 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:3 12762:1 12796:1 12820:1 12834:1 12867:1 12883:5 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12970:1 12971:1 13001:2 13011:1 13032:1 13040:1 13057:1 13083:1 13084:1 13086:2 13088:3 13090:1 13092:5 13100:1 13104:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13214:3 13240:1 13247:2 13259:1 13278:1 13288:3 13321:1 13340:1 13353:1 13367:1 13386:1 13391:4 13407:1 13410:1 13422:2 13442:1 13486:1 13503:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13659:1 13676:1 13679:2 13680:1 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:4 13771:1 13856:2 13859:1 13864:1 13868:1 13881:1 13887:1 13897:1 13903:1 13905:1 13930:1 13947:1 13959:1 13971:2 14004:1 14015:2 14033:1 14043:4 14089:2 14098:1 14103:1 14104:3 14115:2 14119:1 14131:1 14135:1 14152:2 14164:1 14177:2 14228:1 14252:2 14263:4 14273:1 14275:2 14284:1 14290:2 14295:2 14303:1 14305:2 14306:1 14316:1 14320:1 14321:1 14351:1 14359:1 14388:1 14389:1 14418:4 14424:1 14434:1 14461:1 14492:3 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:2 14570:1 14616:2 14653:1 14662:1 14669:9 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15175:1 15186:1 15195:1 15224:1 15241:1 15244:2 15260:1 15272:1 15278:1 15285:1 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15402:1 15405:4 15410:1 15426:1 15459:1 15464:1 15468:3 15480:1 15495:1 15508:3 15530:1 15531:1 15544:2 15571:1 15576:1 15578:1 15583:4 15607:3 15617:1 15636:1 15638:1 15661:1 15663:1 15671:1 15675:1 15688:1 15697:2 15705:4 15716:1 15774:1 15778:2 15784:1 15851:1 15869:1 15880:1 15884:1 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:2 15970:2 15971:1 15981:1 15992:3 15993:1 16025:1 16041:4 16042:2 16073:1 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16170:1 16174:1 16189:2 16195:1 16207:1 16221:1 16253:1 16254:2 16278:1 16284:2 16301:4 16305:1 16311:15 16317:1 16319:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16424:1 16427:1 16436:4 16464:1 16476:2 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16583:1 16592:1 16616:1 16637:1 16643:1 16670:1 16682:1 16720:1 16728:1 16770:1 16776:1 16778:1 16870:4 16887:1 16927:1 16928:1 16949:1 16963:1 16970:1 16991:1 16998:1 17015:1 17021:2 17023:2 17027:1 17045:1 17053:3 17057:1 17065:1 17069:1194 17086:1 17118:2 17119:1 17128:1 17150:1 17187:1 17193:1 17234:1 17248:1 17254:2 17260:3 17266:1 17272:2 17274:1 17276:1 17304:1 17346:4 17350:1 17359:1 17381:15 17398:4 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17518:2 17527:2 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17639:1 17641:1 17673:1 17678:1 17685:1 17689:1 17691:1 17697:2 17701:1 17707:1 17719:4 17723:1 17738:1 17747:1 17772:6 17791:1 17792:1 17807:5 17808:1 17819:1 17826:1 17833:1 17838:1 17879:1 17885:1 17924:1 17927:1 17937:1 17949:3 17951:1 17957:2 17966:1 17984:1 17985:1 17986:1 18001:1 18007:1 18011:1 18033:1 18056:1 18064:1 18097:1 18106:1 18115:1 18143:2 18157:1 18164:1 18170:1 18176:1 18180:1 18183:1 18184:1 18185:1 18196:1 18202:2 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18320:1 18323:1 18330:1 18349:1 18356:2 18367:1 18382:2 18395:1 18400:1 18408:1 18409:1 18430:1 18437:1 18452:1 18470:1 18481:1 18483:1 18510:1 18513:2 18545:3 18568:1 18589:3 18590:2 18594:2 18603:1 18606:1 18611:1 18648:1 18651:1 18661:2 18666:1 18758:2 18762:2 18774:1 18796:1 18802:1 18804:1 18806:3 18815:1 18819:1 18826:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18968:1 18972:1 18983:1 18984:1 18996:1 19003:2 19007:1 19009:1 19016:1 19032:1 19039:1 19042:2 19063:2 19088:1 19098:2 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19283:2 19292:1 19296:1 19316:1 19321:1 19326:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19434:2 19466:1 19470:1 19581:1 19603:1 19631:1 19656:1 19659:2 19667:1 19675:2 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:3 19749:1 19751:1 19758:1 19763:1 19768:2 19775:1 19777:1 19793:1 19798:1 19802:5 19822:1 19836:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:2 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:2 20032:1 20035:1 20039:1 20044:1 20061:1 20063:2 20080:2 20085:1 20097:1 20127:2 20158:1 20167:1 20180:1 20184:1 20211:1 20222:3 20228:1 20232:1 20265:1 20272:1 20274:1 20278:2 20294:1 20295:1 20305:2 20349:1 20355:1 20381:3 20383:2 20385:3 20396:2 20400:1 20423:1 20433:1 20434:2 20442:1 20457:1 20464:3 20466:1 20467:2 20494:1 20498:1 20499:1 20505:1 20533:1 20534:1 20536:1 20540:1 20552:1 20564:1 20567:1 20598:1 20600:1 20617:2 20624:1 20625:15 20632:1 20634:3 20637:1 20640:1 20663:2 20672:1 20676:1 20692:1 20693:1 20697:1 20736:1 20776:1 20779:2 20786:1 20804:2 20807:1 20853:1 20856:2 20868:1 20871:1 20876:2 20882:1 20900:2 20903:1 20911:1 20912:1 20932:1 20952:1 20960:1 20973:1 21023:1 21064:1 21070:1 21077:1 21087:1 21088:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:2 21146:1 21155:3 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21378:1 21383:1 21388:1 21395:1 21402:1 21440:2 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:6 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21586:1 21597:1 21633:1 21636:1 21649:1 21663:2 21696:2 21703:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21780:1 21789:1 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21996:1 22005:4 22013:3 22018:1 22029:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22093:1 22110:1 22112:1 22137:1 22154:1 22165:2 22166:2 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:1 22277:1 22279:3 22281:2 22283:4 22284:2 22288:1 22289:2 22290:1 22297:2 22300:1 22304:2 22307:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:2 22388:3 22403:1 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22489:1 22503:1 22517:2 22535:2 22544:1 22546:3 22549:1 22559:2 22594:1 22630:2 22631:1 22639:1 22650:1 22656:1 22691:3 22702:1 22713:1 22715:3 22723:2 22749:2 22775:1 22789:1 22796:1 22808:1 22810:3 22814:1 22821:1 22832:1 22834:1 22841:3 22882:1 22899:1 22912:1 22942:8 22950:1 22962:3 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23035:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:4 23113:1 23121:1 23123:2 23124:6 23128:1 23129:2 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23200:2 23207:1 23229:1 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23363:1 23366:1 23379:1 23387:1 23389:1 23391:1 23393:2 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23618:1 23632:1 23638:1 23645:1 23670:1 23688:1 23703:1 23705:2 23735:1 23740:1 23749:1 23753:1 23770:3 23796:4 23814:1 23833:1 23835:1 23838:1 23847:1 23856:1 23857:1 23862:1 23873:1 23891:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:1 24008:2 24035:2 24037:1 24041:1 24045:1 24050:2 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:1 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24242:1 24244:1 24256:1 24271:5 24293:2 24351:1 24383:1 24388:1 24404:1 24411:1 24453:1 24454:1 24478:1 24481:1 24489:1 24493:1 24533:1 24542:1 24568:1 24588:4 24602:2 24610:3 24619:1 24634:1 24635:1 24638:1 24653:1 24674:1 24685:4 24686:1 24718:1 24735:2 24748:1 24756:6 24787:2 24797:1 24816:1 24845:5 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25035:1 25064:1 25147:1 25152:1 25198:1 25230:4 25281:1 25325:1 25340:2 25433:1 25435:5 25443:1 25462:1 25500:1 25509:1 25541:1 25542:1 25549:13 25550:2 25553:5 25554:1 25555:2 25564:1 25590:5 25607:1 25640:1 25648:2 25663:1 25677:1 25688:1 25696:1 25719:9 25721:1 25725:1 25729:1 25738:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:2 25880:1 25895:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26186:1 26190:1 26192:1 26204:2 26211:1 26219:1 26232:3 26241:1 26247:2 26249:1 26255:1 26264:1 26294:1 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26372:1 26377:2 26399:1 26413:1 26414:1 26438:2 26451:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:1 26595:1 26601:5 26614:1 26616:1 26638:6 26649:4 26679:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:2 26727:1 26742:1 26762:2 26766:3 26771:2 26812:1
9 8:1 10:1 38:2 52:1 66:1 91:1 92:1 114:1 132:1 157:1 166:1 168:3 177:1 185:2 205:5 223:1 243:1 259:1 268:2 282:1 283:15 294:1 313:1 315:2 328:1 340:1 378:1 392:2 420:3 435:1 440:1 507:1 516:1 550:2 553:1 561:1 567:2 590:1 594:2 597:1 598:1 611:2 620:1 628:1 637:1 645:1 666:1 670:1 676:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 790:1 794:1 797:1 816:3 818:3 828:1 829:1 843:9 846:1 856:1 860:1 868:2 872:6 875:1 883:1 884:1 888:1 893:3 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:1 987:1 1010:1 1036:1 1046:1 1047:1 1059:2 1067:1 1072:1 1075:1 1092:1 1096:2 1104:1 1110:1 1155:2 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1303:1 1326:2 1328:1 1331:4 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:1 1436:1 1437:1 1443:1 1471:1 1476:1 1491:1 1493:2 1496:3 1502:1 1520:1 1524:1 1547:1 1548:1 1557:3 1561:2 1578:1 1579:1 1599:1 1601:2 1621:1 1659:1 1668:1 1682:3 1695:1 1699:1 1707:1 1714:1 1723:1 1752:1 1797:9 1802:1 1809:2 1827:1 1833:1 1834:1 1843:1 1853:4 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:3 1975:1 1986:1 1988:1 2016:1 2035:1 2038:1 2041:1 2042:1 2051:1 2057:1 2058:1 2060:1 2063:1 2064:2 2065:3 2077:1 2096:1 2098:1 2104:1 2105:1 2108:2 2109:4 2112:4 2117:1 2118:2 2119:2 2123:1 2125:1 2126:1 2129:1 2138:1 2140:1 2141:6 2143:1 2144:6 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:1 2261:1 2263:1 2279:1 2298:2 2310:3 2320:1 2326:1 2344:1 2350:1 2360:5 2369:1 2374:1 2391:2 2397:1 2401:1 2408:3 2412:2 2414:1 2443:2 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2502:1 2512:1 2516:1 2518:1 2530:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:5 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2636:1 2670:2 2683:9 2696:3 2702:1 2718:1 2733:6 2756:1 2761:4 2765:1 2787:1 2813:1 2856:1 2857:1 2881:1 2882:1 2951:1 2963:1 2968:1 2994:3 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:2 3089:1 3105:1 3109:6 3149:1 3157:1 3171:1 3173:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:1 3332:2 3348:4 3356:1 3357:2 3358:1 3364:1 3384:1 3386:3 3416:1 3426:1 3430:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:6 3500:1 3520:1 3524:2 3525:1 3530:1 3532:1 3533:6 3534:1 3548:3 3557:1 3568:2 3571:1 3581:1 3584:1 3594:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:2 3638:1 3648:2 3649:1 3671:1 3672:1 3676:1 3694:2 3701:1 3703:1 3706:2 3709:1 3714:2 3715:2 3724:4 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3915:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:1 3986:1 3988:1 4000:1 4034:1 4055:4 4056:1 4073:1 4115:1 4123:1 4129:1 4145:1 4170:1 4195:1 4220:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4303:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4414:4 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4503:1 4513:12 4515:2 4530:1 4531:2 4538:1 4557:1 4560:5 4566:1 4577:1 4578:1 4591:1 4594:1 4596:3 4607:2 4608:4 4609:1 4610:1 4615:3 4619:1 4622:1 4628:2 4630:2 4633:1 4640:1 4642:2 4643:2 4662:1 4682:1 4715:2 4734:1 4751:1 4754:1 4763:1 4765:1 4769:2 4793:1 4795:1 4806:1 4812:2 4817:1 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4926:4 4929:1 4942:2 4944:1 4952:1 4968:1 4987:1 5004:1 5025:1 5039:1 5047:1 5056:2 5074:1 5078:1 5085:1 5086:1 5088:1 5091:2 5100:1 5116:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5304:1 5311:1 5332:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:1 5443:1 5493:2 5494:1 5518:1 5519:9 5533:2 5542:2 5546:1 5551:1 5554:1 5560:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:1 5670:1 5673:1 5685:1 5688:1 5711:5 5724:1 5729:1 5773:1 5788:3 5791:1 5801:1 5804:1 5805:1 5807:3 5813:2 5815:8 5816:2 5857:1 5876:1 5928:2 5957:2 6030:1 6036:1 6041:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6155:1 6177:1 6179:2 6181:1 6191:1 6201:5 6212:1 6218:1 6223:1 6248:1 6253:1 6262:1 6280:1 6291:2 6303:1 6331:1 6333:2 6340:1 6352:1 6364:1 6365:2 6380:1 6389:1 6394:2 6414:1 6448:1 6455:1 6462:1 6475:7 6476:1 6491:1 6498:1 6515:1 6519:1 6523:1 6543:1 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:1 6658:3 6671:2 6674:1 6684:1 6713:3 6717:1 6720:1 6734:1 6741:1 6754:1 6760:1 6786:2 6804:1 6833:1 6866:2 6882:1 6883:2 6919:1 6920:9 6922:1 6933:1 6943:1 6944:2 6945:1 6963:2 6979:37 6983:1 7003:2 7004:6 7006:1 7010:1 7030:1 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7219:1 7223:1 7238:1 7244:2 7265:1 7270:1 7296:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7438:1 7446:1 7449:2 7455:1 7460:2 7471:1 7473:3 7488:1 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7638:1 7657:1 7660:1 7669:2 7678:3 7680:1 7683:2 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:3 7787:2 7788:1 7789:1 7791:1 7794:5 7796:2 7797:1 7800:1 7833:2 7837:1 7838:3 7863:1 7869:1 7872:2 7877:1 7879:1 7892:1 7931:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8050:1 8052:2 8093:1 8095:1 8096:3 8100:2 8111:2 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8196:1 8204:2 8215:3 8219:1 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8328:1 8336:3 8352:1 8360:2 8365:1 8380:1 8384:1 8391:1 8437:1 8441:4 8443:1 8449:2 8452:1 8460:15 8483:2 8484:1 8493:1 8508:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:5 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8737:1 8757:1 8771:1 8772:1 8778:1 8786:1 8790:2 8792:1 8798:1 8803:1 8826:1 8833:1 8857:5 8864:2 8867:1 8868:3 8877:2 8890:1 8931:2 8963:1 8990:1 9004:3 9010:1 9018:1 9030:1 9038:1 9040:1 9043:2 9047:1 9055:2 9070:1 9071:1 9074:1 9084:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9382:1 9388:1 9410:1 9430:1 9433:1 9447:1 9461:1 9462:1 9470:1 9481:1 9484:2 9492:2 9508:1 9513:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:1 9610:1 9619:1 9621:1 9625:1 9633:1 9636:1 9651:1 9652:1 9653:1 9658:1 9660:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9733:1 9750:3 9758:4 9775:1 9778:9 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9901:1 9902:2 9914:1 9945:1 9970:3 9972:1 9974:1 9976:1 9984:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:5 10059:2 10065:1 10066:1 10068:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10185:1 10187:1 10211:1 10220:1 10222:1 10246:3 10251:1 10271:1 10284:1 10303:2 10316:1 10317:1 10332:1 10333:1 10339:2 10341:1 10361:3 10368:1 10391:1 10395:5 10396:1 10398:1 10408:1 10425:1 10450:1 10463:1 10464:1 10484:1 10490:1 10493:1 10498:1 10523:1 10530:1 10531:1 10536:1 10544:2 10548:1 10552:2 10554:4 10572:1 10573:4 10574:1 10596:1 10616:2 10623:1 10629:1 10631:1 10634:2 10638:1 10647:1 10650:1 10655:2 10668:1 10678:5 10693:5 10701:1 10705:1 10725:1 10728:1 10744:1 10777:1 10790:1 10829:1 10830:1 10862:3 10864:1 10871:1 10902:1 10911:3 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11061:1 11062:2 11063:3 11065:1 11082:1 11102:1 11115:2 11116:3 11123:1 11128:1 11135:1 11177:1 11187:1 11206:1 11210:1 11215:3 11231:1 11241:1 11271:1 11279:1 11280:1 11283:2 11297:1 11304:1 11314:1 11332:1 11356:1 11398:1 11409:1 11411:1 11412:1 11424:1 11438:1 11443:1 11454:2 11461:1 11483:1 11522:5 11534:1 11543:1 11561:7 11578:1 11586:2 11590:3 11593:1 11599:1 11622:1 11655:2 11687:1 11696:1 11697:2 11715:1 11723:2 11724:1 11745:1 11768:1 11771:1 11772:1 11813:1 11824:1 11838:1 11868:4 11908:1 11945:5 11949:1 11964:1 11972:1 11978:4 11982:3 11988:1 11995:1 11996:5 12027:1 12041:1 12042:1 12043:1 12071:3 12075:1 12103:1 12107:1 12110:1 12118:2 12123:1 12124:2 12127:1 12145:2 12163:1 12164:1 12168:1 12169:1 12184:1 12186:3 12188:1 12200:1 12208:1 12217:1 12221:1 12226:1 12237:1 12243:4 12265:1 12280:3 12284:1 12285:1 12320:1 12331:2 12398:1 12418:1 12420:1 12454:2 12457:1 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12536:1 12540:1 12545:1 12546:1 12565:1 12573:2 12585:1 12604:1 12620:1 12624:1 12629:2 12639:1 12664:3 12667:1 12668:2 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:4 12762:1 12796:1 12820:1 12834:1 12843:1 12867:1 12883:5 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 13001:2 13011:1 13021:1 13032:1 13040:1 13057:1 13083:1 13084:1 13086:2 13088:3 13090:1 13092:5 13100:1 13104:1 13106:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13214:3 13240:1 13247:2 13259:2 13278:1 13288:3 13321:1 13340:2 13353:1 13367:1 13386:1 13391:4 13407:1 13410:1 13422:2 13442:1 13486:1 13503:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13659:1 13676:1 13679:3 13680:2 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:5 13771:1 13856:3 13859:1 13864:1 13868:1 13881:1 13887:1 13897:1 13903:1 13905:1 13930:1 13947:1 13959:1 13971:2 14004:1 14015:2 14033:1 14043:4 14055:1 14089:2 14098:1 14103:1 14104:3 14115:2 14119:1 14131:1 14135:1 14152:2 14164:1 14177:2 14228:1 14252:2 14263:5 14268:1 14273:1 14275:2 14284:1 14290:2 14295:2 14303:1 14305:2 14306:1 14316:1 14320:1 14321:1 14351:1 14359:1 14388:1 14389:1 14418:4 14424:1 14434:1 14441:1 14461:2 14479:1 14492:4 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:2 14570:1 14616:2 14653:1 14662:1 14669:9 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15175:1 15186:1 15195:1 15224:1 15241:1 15244:2 15260:1 15272:1 15278:1 15285:1 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:1 15402:1 15405:4 15410:1 15426:1 15459:1 15464:1 15468:4 15480:1 15490:1 15495:1 15508:3 15530:1 15531:1 15544:2 15571:1 15576:1 15578:1 15583:4 15607:3 15617:1 15636:1 15638:1 15661:1 15663:1 15671:1 15675:1 15688:1 15697:2 15705:5 15706:1 15716:1 15763:1 15774:1 15778:2 15784:1 15851:1 15869:1 15880:1 15884:1 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:2 15970:2 15971:1 15974:1 15981:1 15992:3 15993:1 16025:1 16041:4 16042:2 16073:1 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16170:1 16174:1 16189:2 16195:1 16207:1 16220:1 16221:1 16253:1 16254:2 16278:1 16284:2 16301:5 16305:2 16311:16 16317:1 16319:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16424:1 16427:1 16436:4 16464:1 16476:3 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16583:1 16592:1 16616:1 16637:1 16643:1 16670:1 16682:1 16720:1 16728:1 16770:1 16776:1 16778:1 16811:1 16870:4 16887:1 16900:1 16927:1 16928:1 16949:1 16963:2 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17045:1 17053:3 17057:1 17065:1 17069:1278 17086:1 17118:2 17119:1 17126:1 17128:1 17150:1 17187:1 17193:1 17211:1 17234:1 17248:1 17254:2 17260:3 17266:1 17272:2 17274:1 17276:1 17304:1 17346:5 17350:1 17352:1 17359:1 17381:15 17398:5 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17518:2 17527:2 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17639:1 17641:1 17673:1 17678:1 17685:1 17689:1 17691:1 17697:2 17701:1 17707:1 17719:4 17723:1 17738:1 17747:1 17772:6 17791:1 17792:1 17807:5 17808:1 17819:1 17826:1 17833:1 17838:1 17879:1 17885:1 17924:1 17927:1 17937:1 17949:3 17951:1 17957:2 17966:1 17984:1 17985:1 17986:1 18001:1 18007:1 18011:1 18033:1 18056:1 18064:1 18097:1 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:1 18176:1 18180:1 18183:1 18184:1 18185:1 18196:1 18202:2 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18320:1 18323:1 18330:1 18349:1 18356:2 18367:1 18382:2 18395:1 18400:1 18408:1 18409:1 18430:1 18435:1 18437:1 18452:1 18464:1 18470:1 18476:1 18481:1 18483:1 18510:1 18513:2 18545:3 18568:1 18589:3 18590:2 18594:2 18603:1 18606:1 18611:1 18648:1 18651:1 18661:2 18666:1 18758:2 18762:2 18774:1 18796:1 18802:1 18804:1 18806:3 18815:1 18819:2 18826:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18968:1 18972:1 18983:1 18984:1 18996:1 19003:2 19007:1 19009:1 19016:1 19027:1 19032:1 19039:1 19042:2 19063:3 19088:1 19098:2 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19283:2 19292:1 19296:1 19316:1 19321:1 19326:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19434:2 19466:1 19470:1 19495:1 19557:1 19581:1 19603:1 19631:1 19641:1 19656:1 19658:1 19659:2 19667:1 19675:2 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:3 19749:1 19751:1 19758:1 19762:1 19763:1 19768:2 19775:1 19777:1 19793:1 19798:1 19802:5 19822:1 19836:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:2 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20039:1 20042:1 20044:1 20061:1 20063:2 20080:2 20085:1 20097:1 20127:2 20158:1 20167:1 20180:1 20184:1 20211:1 20222:3 20228:1 20232:1 20265:1 20272:1 20274:1 20278:2 20294:1 20295:1 20305:2 20349:1 20355:1 20381:3 20383:2 20385:3 20396:2 20400:1 20423:1 20433:1 20434:2 20442:1 20457:1 20464:3 20466:1 20467:2 20494:1 20498:1 20499:1 20505:1 20514:1 20533:1 20534:1 20536:1 20540:1 20552:1 20564:1 20567:1 20598:1 20600:1 20617:2 20624:1 20625:16 20631:1 20632:1 20634:3 20637:1 20640:1 20663:2 20666:1 20672:1 20676:1 20692:1 20693:1 20697:1 20736:1 20771:1 20776:1 20779:3 20786:1 20804:2 20807:1 20853:1 20854:1 20856:2 20868:1 20871:1 20874:1 20876:2 20882:1 20900:2 20903:1 20911:1 20912:1 20932:1 20952:1 20960:1 20973:1 20987:1 21023:1 21064:1 21070:1 21077:1 21087:1 21088:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:2 21146:1 21155:3 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:1 21378:1 21383:1 21388:1 21395:1 21402:1 21440:2 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:6 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21586:1 21597:1 21633:1 21636:1 21649:1 21663:2 21696:2 21703:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21780:1 21789:1 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21996:1 22005:4 22013:3 22018:1 22029:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22093:1 22110:1 22111:1 22112:1 22133:1 22137:1 22154:1 22165:2 22166:2 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:2 22277:1 22279:4 22281:2 22283:4 22284:2 22288:1 22289:2 22290:1 22295:1 22297:2 22300:1 22304:2 22307:1 22311:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:2 22388:3 22403:1 22408:1 22409:1 22418:1 22428:1 22442:1 22463:1 22486:1 22489:1 22503:1 22517:2 22535:2 22544:1 22546:3 22549:1 22559:2 22594:1 22630:2 22631:1 22639:1 22650:1 22656:1 22691:3 22702:1 22713:1 22715:3 22723:2 22749:2 22775:1 22789:1 22796:1 22808:1 22810:3 22814:1 22821:1 22832:1 22834:1 22841:3 22882:1 22899:1 22912:1 22914:1 22942:8 22950:1 22962:4 22981:1 22988:1 22995:1 23004:2 23018:1 23028:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:4 23113:1 23121:1 23123:2 23124:7 23128:1 23129:2 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23200:2 23207:1 23229:1 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23363:1 23366:1 23379:1 23387:1 23389:1 23391:1 23393:2 23397:1 23409:2 23443:1 23444:1 23452:1 23460:1 23487:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23618:1 23632:1 23638:1 23645:1 23670:1 23688:1 23703:1 23705:2 23735:2 23740:1 23749:1 23753:1 23770:3 23796:4 23814:1 23833:1 23835:1 23838:1 23847:1 23856:1 23857:1 23862:1 23873:1 23891:1 23903:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:1 24008:3 24035:2 24037:1 24041:1 24045:1 24050:2 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:2 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24242:1 24244:1 24256:1 24271:5 24293:2 24351:1 24383:1 24388:1 24404:1 24411:1 24453:1 24454:1 24468:1 24478:1 24481:1 24489:1 24493:1 24533:1 24542:1 24568:1 24576:1 24588:4 24602:2 24610:3 24619:1 24634:1 24635:1 24638:1 24653:1 24674:1 24685:5 24686:1 24718:1 24735:2 24743:1 24748:1 24756:6 24787:2 24797:1 24816:1 24845:5 24848:1 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25025:1 25035:1 25064:1 25147:1 25152:1 25198:1 25230:4 25231:1 25281:1 25325:1 25340:2 25433:1 25435:5 25443:1 25462:1 25467:1 25500:1 25509:1 25540:1 25541:1 25542:1 25549:15 25550:2 25553:5 25554:1 25555:2 25564:1 25590:5 25607:1 25640:1 25648:2 25663:1 25677:1 25678:1 25688:1 25696:1 25719:9 25721:1 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:2 25880:1 25895:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26186:1 26190:1 26192:1 26204:2 26211:1 26219:1 26232:4 26241:1 26247:2 26249:1 26255:1 26264:1 26294:1 26298:1 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26370:1 26372:1 26377:2 26399:1 26413:1 26414:1 26438:2 26451:1 26470:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:2 26595:1 26601:5 26614:1 26616:1 26638:6 26649:4 26679:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:2 26727:1 26742:1 26762:2 26766:3 26771:2 26812:1
9 8:1 10:1 35:1 38:2 52:1 66:1 91:1 92:1 114:1 121:1 132:1 157:1 166:1 168:3 177:1 185:3 205:5 223:1 243:1 259:1 268:2 282:1 283:15 294:1 313:1 315:2 328:1 340:1 378:1 392:2 420:3 435:1 440:1 507:1 516:1 550:2 553:1 561:1 567:2 590:1 594:2 597:1 598:1 611:2 620:1 628:1 637:1 645:1 666:1 670:1 676:1 697:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 790:1 791:1 794:2 797:1 816:3 818:3 828:1 829:1 840:1 843:9 846:1 856:1 860:1 868:2 872:6 875:1 883:1 884:1 888:1 893:3 910:1 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:1 987:1 1010:1 1036:1 1046:1 1047:1 1059:2 1067:1 1072:1 1075:1 1092:1 1096:2 1104:1 1110:1 1128:1 1155:2 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1303:2 1326:2 1328:1 1331:4 1332:1 1354:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:1 1436:1 1437:1 1443:1 1471:1 1476:1 1491:1 1493:2 1496:3 1502:1 1520:1 1524:1 1547:1 1548:1 1557:3 1561:2 1578:1 1579:1 1599:1 1601:2 1621:1 1659:1 1668:1 1682:3 1695:1 1699:1 1707:1 1714:1 1723:1 1752:1 1797:9 1802:1 1809:2 1827:1 1833:1 1834:1 1843:1 1853:5 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:3 1975:1 1986:1 1988:1 1995:1 2016:1 2035:1 2038:1 2041:1 2042:1 2051:1 2057:1 2058:1 2060:1 2063:1 2064:2 2065:3 2077:2 2096:1 2098:1 2104:1 2105:1 2108:2 2109:5 2112:4 2117:1 2118:2 2119:2 2123:1 2125:1 2126:1 2129:1 2138:1 2140:1 2141:6 2143:1 2144:6 2154:1 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:1 2261:1 2263:1 2279:1 2298:2 2310:3 2320:1 2326:1 2344:1 2350:1 2360:5 2369:2 2374:1 2391:2 2397:1 2401:1 2408:3 2412:2 2414:1 2426:1 2443:2 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2502:1 2512:1 2516:1 2518:1 2530:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:5 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2636:1 2670:2 2683:10 2696:3 2702:1 2718:1 2733:8 2756:1 2761:4 2765:1 2787:1 2813:1 2817:1 2856:1 2857:1 2881:1 2882:1 2951:1 2963:1 2968:1 2994:4 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:2 3089:1 3105:1 3109:6 3149:1 3157:1 3171:1 3173:2 3177:1 3214:1 3225:1 3226:1 3230:1 3238:1 3244:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:1 3332:2 3348:4 3356:1 3357:2 3358:1 3364:1 3384:1 3386:3 3416:1 3426:1 3430:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:8 3500:1 3520:1 3524:2 3525:1 3530:1 3532:1 3533:7 3534:1 3548:3 3553:1 3557:1 3568:2 3571:1 3581:1 3584:1 3594:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:2 3638:1 3648:2 3649:1 3671:1 3672:1 3676:1 3694:2 3701:1 3703:1 3706:2 3709:1 3714:2 3715:2 3724:4 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3915:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:1 3986:1 3988:1 4000:1 4034:1 4055:4 4056:1 4073:1 4115:1 4123:1 4129:1 4145:1 4170:1 4195:1 4220:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4303:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:5 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:1 4503:1 4513:13 4515:2 4530:1 4531:2 4538:1 4557:1 4560:5 4566:1 4577:1 4578:1 4591:1 4594:1 4596:3 4607:2 4608:4 4609:1 4610:1 4615:3 4619:1 4622:1 4628:2 4630:2 4633:1 4640:1 4642:2 4643:2 4662:1 4682:1 4715:2 4734:1 4751:1 4754:1 4763:2 4765:1 4769:2 4793:1 4795:1 4806:1 4812:2 4817:1 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:1 4926:4 4929:1 4942:2 4944:1 4952:1 4968:2 4987:1 5004:1 5025:1 5039:1 5047:1 5056:2 5074:1 5078:1 5085:1 5086:1 5088:1 5091:2 5100:1 5116:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5304:1 5311:1 5332:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:1 5443:1 5493:2 5494:1 5518:1 5519:9 5533:3 5542:2 5546:1 5551:1 5554:1 5560:1 5577:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:2 5670:1 5673:1 5685:1 5688:1 5711:5 5724:1 5729:1 5773:1 5788:3 5791:1 5801:1 5804:1 5805:1 5807:3 5813:2 5815:8 5816:3 5857:1 5876:1 5928:3 5957:2 5974:1 6030:1 6036:1 6041:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6155:1 6177:1 6179:2 6181:1 6191:1 6201:5 6212:1 6218:1 6223:1 6248:1 6253:1 6262:1 6280:1 6291:2 6303:1 6331:2 6333:2 6340:1 6352:1 6364:2 6365:2 6380:1 6389:1 6394:2 6414:1 6448:1 6455:1 6462:1 6475:7 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6543:1 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:1 6658:3 6671:2 6674:1 6684:1 6713:3 6717:1 6720:1 6734:2 6741:1 6754:1 6760:1 6786:2 6804:1 6833:1 6866:2 6882:1 6883:2 6919:1 6920:9 6922:1 6933:1 6943:1 6944:2 6945:1 6963:2 6979:38 6983:1 7003:2 7004:8 7006:1 7010:1 7030:2 7058:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7219:1 7223:1 7238:1 7244:2 7265:1 7270:1 7296:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7438:2 7446:1 7449:2 7455:1 7460:2 7471:1 7473:3 7488:1 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7638:1 7657:1 7660:1 7669:2 7678:3 7680:1 7683:2 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:3 7787:2 7788:2 7789:1 7791:2 7794:5 7796:2 7797:1 7800:1 7833:2 7837:1 7838:3 7863:1 7868:1 7869:1 7872:2 7877:1 7879:1 7892:1 7931:1 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8050:1 8052:2 8060:1 8093:1 8095:1 8096:3 8100:2 8111:2 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8196:1 8204:2 8215:3 8219:1 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:2 8365:1 8380:1 8384:1 8391:1 8434:1 8437:1 8441:4 8443:1 8449:2 8452:1 8460:15 8483:2 8484:1 8493:1 8508:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:5 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8737:1 8757:1 8771:1 8772:2 8778:1 8786:1 8790:2 8792:1 8798:1 8803:1 8826:1 8833:2 8857:5 8864:2 8867:1 8868:3 8877:2 8890:1 8894:1 8931:3 8963:1 8990:1 9004:3 9010:1 9018:1 9030:1 9038:1 9040:1 9043:2 9047:1 9055:2 9070:1 9071:1 9074:1 9084:1 9085:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9207:1 9215:1 9235:1 9262:1 9263:1 9274:1 9340:1 9382:1 9388:1 9410:1 9430:1 9433:1 9447:1 9461:1 9462:1 9470:1 9481:1 9484:2 9492:2 9508:1 9513:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:2 9610:1 9619:1 9621:1 9625:1 9633:1 9636:1 9651:1 9652:1 9653:1 9658:1 9660:1 9668:1 9682:1 9689:1 9690:1 9692:2 9717:1 9733:1 9750:3 9758:4 9775:2 9778:9 9795:1 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9901:1 9902:2 9914:1 9945:1 9970:3 9972:1 9974:1 9976:1 9984:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:5 10045:1 10059:2 10065:1 10066:1 10068:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10185:1 10187:1 10211:1 10220:1 10222:1 10246:4 10251:1 10271:1 10284:1 10293:1 10303:2 10316:1 10317:1 10332:1 10333:1 10337:1 10339:2 10341:1 10361:3 10368:1 10391:1 10395:5 10396:1 10398:1 10408:1 10425:1 10426:1 10450:1 10463:1 10464:1 10484:1 10490:1 10493:1 10498:1 10523:1 10530:1 10531:1 10536:1 10544:2 10548:1 10552:2 10554:5 10572:1 10573:4 10574:1 10596:1 10616:2 10623:1 10629:1 10631:2 10634:2 10638:1 10647:1 10650:1 10655:2 10668:1 10678:5 10693:5 10701:1 10705:1 10725:1 10728:1 10736:1 10744:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10871:1 10902:1 10911:3 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11061:1 11062:2 11063:3 11065:1 11082:1 11102:1 11115:2 11116:4 11123:1 11128:1 11135:1 11177:1 11187:1 11206:1 11210:1 11215:4 11231:1 11241:1 11271:1 11279:1 11280:1 11283:2 11296:1 11297:1 11304:1 11314:1 11332:1 11356:1 11398:1 11409:1 11411:1 11412:1 11424:1 11438:1 11443:1 11454:2 11461:1 11483:1 11522:5 11534:1 11543:1 11561:8 11578:1 11586:2 11590:4 11593:1 11599:1 11622:1 11655:2 11687:1 11696:1 11697:2 11715:1 11723:2 11724:1 11745:1 11768:1 11771:1 11772:1 11813:1 11824:1 11838:1 11868:4 11908:1 11945:5 11949:1 11964:1 11972:1 11978:4 11982:3 11988:1 11995:1 11996:5 12027:1 12041:1 12042:1 12043:1 12071:3 12075:1 12103:1 12107:1 12110:1 12118:2 12123:1 12124:2 12127:1 12145:2 12163:1 12164:1 12168:1 12169:1 12184:1 12186:3 12188:1 12200:1 12208:1 12217:1 12221:1 12226:1 12237:1 12243:4 12265:1 12280:3 12284:1 12285:1 12320:1 12331:2 12398:1 12418:1 12420:1 12454:2 12457:2 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12536:2 12540:1 12545:1 12546:1 12565:1 12573:2 12585:1 12604:1 12620:2 12624:1 12629:2 12639:1 12664:3 12667:1 12668:2 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:5 12762:1 12796:1 12820:1 12834:1 12843:1 12867:1 12883:5 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 13001:2 13011:1 13021:1 13032:1 13040:1 13057:1 13065:1 13075:1 13083:1 13084:1 13086:2 13088:3 13090:1 13092:5 13100:1 13104:1 13106:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:3 13240:2 13247:2 13259:2 13278:1 13288:3 13321:1 13340:2 13353:2 13367:1 13386:1 13391:4 13407:1 13410:1 13422:2 13442:1 13486:1 13503:1 13512:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13659:1 13676:1 13679:3 13680:2 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:5 13757:1 13771:1 13856:3 13859:1 13864:1 13868:1 13881:1 13887:1 13897:1 13903:1 13905:1 13930:1 13947:1 13959:1 13971:2 14004:1 14015:2 14033:1 14043:5 14055:1 14089:2 14098:1 14103:1 14104:3 14115:2 14119:1 14131:1 14135:1 14152:2 14164:1 14177:2 14228:1 14252:2 14263:5 14268:1 14273:1 14275:2 14284:1 14290:2 14295:2 14303:1 14305:2 14306:2 14316:1 14320:1 14321:1 14351:1 14359:1 14388:1 14389:1 14418:4 14424:1 14434:1 14441:1 14461:2 14479:1 14492:5 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:2 14570:1 14616:2 14653:1 14662:1 14669:11 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14782:1 14796:1 14803:1 14809:1 14822:1 14825:1 14829:1 14860:1 14900:1 14942:1 14971:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15175:1 15186:1 15195:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:2 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:1 15402:1 15405:4 15410:1 15426:1 15459:1 15464:1 15468:4 15480:1 15490:1 15495:1 15508:3 15530:1 15531:1 15544:2 15571:1 15576:1 15578:1 15583:4 15592:1 15607:3 15617:1 15636:1 15638:1 15661:1 15663:2 15671:1 15675:1 15688:1 15697:2 15705:6 15706:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15851:1 15869:1 15880:1 15884:2 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:2 15970:2 15971:1 15974:1 15981:2 15992:3 15993:2 16025:1 16041:4 16042:2 16073:1 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16170:1 16174:1 16189:2 16195:1 16207:1 16220:1 16221:1 16238:1 16253:1 16254:2 16278:1 16284:2 16301:6 16305:2 16311:17 16317:1 16319:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16424:1 16427:1 16436:4 16464:1 16476:4 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16583:1 16592:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:1 16870:4 16887:1 16900:1 16927:1 16928:1 16949:1 16963:3 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17045:1 17053:3 17057:1 17065:1 17069:1324 17086:1 17118:2 17119:1 17126:1 17128:1 17150:1 17187:2 17193:1 17211:1 17234:1 17248:1 17254:2 17260:3 17266:1 17272:2 17274:1 17276:2 17304:1 17346:5 17350:1 17352:1 17359:1 17381:15 17398:6 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17518:2 17527:2 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17639:1 17641:2 17673:1 17678:1 17685:1 17689:1 17691:1 17697:2 17701:1 17707:1 17712:1 17719:4 17723:1 17738:1 17747:2 17772:6 17791:1 17792:1 17807:5 17808:1 17819:1 17826:1 17833:1 17838:1 17879:1 17885:1 17924:1 17927:1 17937:1 17949:3 17951:1 17957:2 17966:1 17984:1 17985:2 17986:1 18001:1 18007:1 18011:1 18033:1 18056:1 18064:1 18097:2 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:1 18176:1 18180:1 18183:1 18184:1 18185:1 18196:1 18202:2 18206:1 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18299:1 18320:1 18323:1 18330:1 18349:1 18356:3 18367:1 18382:2 18395:1 18400:1 18408:1 18409:1 18430:1 18435:1 18437:1 18452:1 18464:1 18470:1 18476:1 18481:1 18483:1 18510:1 18513:2 18545:4 18568:1 18589:4 18590:2 18594:2 18603:1 18606:1 18611:1 18648:1 18651:1 18661:2 18663:1 18666:1 18758:3 18762:2 18774:1 18796:1 18802:1 18804:1 18806:3 18815:1 18819:2 18826:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18968:1 18972:1 18983:1 18984:1 18996:1 19003:3 19007:1 19009:1 19016:1 19027:1 19032:1 19039:1 19042:2 19063:3 19088:1 19098:2 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19283:2 19292:1 19296:1 19316:1 19321:1 19326:1 19365:1 19381:1 19386:1 19391:1 19405:1 19423:1 19434:2 19466:1 19470:1 19495:1 19557:1 19581:1 19603:1 19631:1 19641:1 19656:1 19658:1 19659:2 19667:1 19675:2 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:3 19749:1 19751:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19793:1 19798:1 19802:5 19817:1 19822:1 19836:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20039:1 20042:1 20044:1 20061:1 20063:2 20080:2 20085:1 20097:1 20127:2 20158:1 20167:1 20180:1 20184:1 20211:1 20222:3 20228:2 20232:1 20265:1 20272:1 20274:1 20278:2 20294:1 20295:1 20305:2 20349:1 20355:1 20381:4 20383:3 20385:3 20396:2 20400:1 20423:1 20433:1 20434:2 20442:1 20457:1 20464:3 20466:1 20467:2 20473:1 20494:1 20498:1 20499:2 20505:1 20514:1 20533:1 20534:1 20536:1 20540:1 20543:1 20552:1 20564:1 20567:1 20598:1 20600:1 20617:2 20624:1 20625:17 20631:1 20632:1 20634:3 20637:1 20640:1 20663:2 20666:1 20672:1 20676:1 20692:1 20693:1 20697:1 20736:1 20771:1 20776:1 20779:3 20786:1 20804:2 20807:1 20853:1 20854:1 20856:2 20859:1 20868:2 20871:1 20874:1 20876:2 20882:1 20900:2 20903:1 20911:1 20912:1 20932:1 20952:1 20960:1 20964:1 20973:1 20987:1 21023:1 21064:1 21070:1 21077:1 21087:1 21088:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:2 21146:1 21155:3 21160:1 21177:1 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:1 21378:1 21383:1 21388:1 21389:1 21395:1 21402:1 21440:3 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:7 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21586:1 21597:1 21633:1 21636:1 21649:1 21652:1 21663:2 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21780:1 21789:1 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21996:1 22005:4 22013:3 22018:1 22029:1 22041:1 22042:1 22043:1 22060:1 22079:1 22085:1 22093:1 22110:1 22111:1 22112:1 22133:1 22137:1 22154:1 22165:2 22166:3 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:2 22277:1 22279:4 22281:2 22283:4 22284:2 22288:1 22289:2 22290:1 22295:1 22297:2 22300:1 22304:2 22307:1 22311:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:1 22408:1 22409:1 22418:1 22428:1 22442:1 22445:1 22463:1 22486:1 22489:1 22503:1 22517:2 22535:2 22544:1 22546:3 22549:1 22559:2 22594:1 22630:2 22631:1 22639:1 22650:1 22656:1 22691:3 22702:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:1 22796:1 22808:1 22810:3 22814:1 22821:1 22832:1 22834:1 22841:3 22882:1 22899:1 22912:1 22914:1 22942:8 22950:1 22962:5 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:4 23113:1 23121:1 23123:2 23124:7 23128:1 23129:2 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23200:2 23207:1 23229:2 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23363:1 23366:1 23379:1 23387:1 23389:1 23391:1 23393:2 23397:1 23409:3 23443:1 23444:1 23452:1 23460:1 23487:1 23523:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23618:1 23632:1 23638:1 23645:1 23670:1 23688:1 23703:1 23705:2 23735:2 23740:1 23749:1 23753:1 23770:3 23796:4 23814:1 23833:1 23835:1 23838:1 23847:1 23856:1 23857:1 23862:1 23873:1 23891:1 23903:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:1 24008:3 24035:2 24037:1 24041:1 24045:1 24050:3 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:2 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24242:1 24244:1 24256:1 24271:5 24293:2 24351:1 24383:1 24386:1 24388:1 24404:1 24411:1 24453:1 24454:1 24468:1 24478:1 24481:1 24489:1 24493:1 24533:1 24542:1 24568:1 24576:1 24588:4 24602:2 24610:4 24619:1 24634:1 24635:1 24638:1 24653:1 24674:1 24685:6 24686:1 24718:1 24735:2 24743:1 24748:1 24756:7 24787:2 24797:1 24816:1 24845:5 24848:1 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25024:1 25025:1 25035:1 25064:1 25147:1 25152:1 25198:1 25211:1 25230:4 25231:1 25281:1 25325:1 25340:2 25433:1 25435:5 25443:1 25462:1 25467:1 25500:1 25509:1 25540:1 25541:1 25542:1 25549:17 25550:2 25553:5 25554:1 25555:2 25564:1 25590:5 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:1 25688:1 25696:2 25719:9 25721:1 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:2 25880:1 25895:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26186:1 26190:1 26192:1 26204:2 26211:1 26219:1 26232:4 26241:1 26247:2 26249:1 26255:1 26264:1 26294:1 26298:1 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26363:1 26370:1 26372:1 26377:2 26399:1 26413:1 26414:1 26438:2 26451:1 26470:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:2 26595:1 26601:5 26614:1 26616:1 26638:6 26649:4 26679:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:3 26727:1 26742:1 26762:2 26766:3 26771:2 26812:1
9 8:1 10:1 35:1 38:2 52:1 66:1 91:1 92:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:5 223:1 243:1 259:1 268:2 282:1 283:16 294:1 313:1 315:2 328:1 340:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 550:2 553:1 561:1 567:3 590:2 594:2 597:1 598:1 611:2 620:1 628:1 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 790:1 791:1 794:2 797:1 816:3 818:3 828:1 829:1 840:1 843:9 846:1 856:1 860:1 868:2 872:6 875:1 883:1 884:1 888:1 893:3 910:1 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:2 987:1 1010:1 1021:1 1036:1 1046:1 1047:1 1059:2 1067:1 1072:1 1075:1 1092:1 1096:2 1104:1 1110:1 1128:1 1155:2 1183:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1301:1 1303:2 1326:2 1328:1 1331:5 1332:1 1352:1 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:1 1471:1 1476:1 1491:1 1493:2 1496:3 1502:1 1520:2 1524:1 1547:1 1548:1 1557:3 1561:2 1578:1 1579:1 1599:1 1601:2 1621:1 1652:1 1659:1 1668:1 1682:3 1695:1 1699:1 1707:1 1714:1 1723:1 1752:1 1797:9 1802:1 1809:2 1827:1 1833:1 1834:1 1843:1 1853:6 1855:2 1883:1 1886:1 1893:1 1895:1 1962:1 1965:1 1970:3 1975:1 1986:1 1988:1 1995:1 2016:1 2035:1 2038:1 2041:1 2042:1 2051:1 2057:1 2058:1 2060:2 2063:1 2064:2 2065:3 2068:1 2077:2 2096:1 2098:1 2104:1 2105:1 2108:2 2109:6 2112:4 2117:1 2118:2 2119:2 2123:1 2125:1 2126:1 2129:2 2138:1 2140:1 2141:6 2143:2 2144:6 2154:1 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:1 2261:1 2263:1 2279:1 2298:2 2310:4 2320:1 2326:1 2344:1 2350:1 2360:5 2369:2 2374:1 2391:2 2397:1 2401:1 2408:3 2412:2 2414:1 2426:1 2443:2 2462:1 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:5 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2636:1 2670:2 2683:10 2696:3 2702:1 2718:1 2733:9 2756:1 2761:4 2765:1 2787:1 2813:1 2817:1 2856:1 2857:1 2881:1 2882:1 2951:1 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:2 3089:1 3105:1 3109:7 3149:1 3157:1 3171:1 3173:2 3177:1 3214:1 3225:1 3226:1 3230:1 3238:1 3244:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:2 3348:4 3355:1 3356:1 3357:2 3358:2 3364:1 3384:1 3386:3 3416:1 3426:1 3430:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:8 3500:1 3510:1 3520:1 3524:3 3525:1 3530:1 3532:1 3533:8 3534:1 3548:3 3553:1 3557:1 3568:2 3571:1 3581:1 3584:1 3594:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:2 3638:1 3648:2 3649:1 3665:1 3671:1 3672:1 3676:1 3694:2 3701:1 3703:1 3706:2 3709:1 3714:2 3715:2 3724:4 3725:2 3731:1 3746:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3915:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:1 3986:1 3988:1 4000:1 4034:1 4042:1 4055:4 4056:1 4073:1 4114:1 4115:1 4123:1 4129:1 4145:1 4170:1 4195:1 4220:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4303:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:5 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:1 4503:1 4513:14 4515:2 4518:1 4530:1 4531:2 4538:1 4557:1 4560:5 4566:1 4577:1 4578:1 4591:1 4594:1 4596:4 4607:2 4608:4 4609:1 4610:1 4615:3 4619:1 4622:1 4628:2 4630:2 4633:1 4640:1 4642:2 4643:2 4662:1 4682:1 4715:2 4734:1 4751:1 4754:1 4763:2 4765:1 4769:2 4776:1 4793:1 4795:1 4806:1 4812:2 4817:1 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:2 4926:4 4929:1 4942:2 4944:1 4952:1 4968:2 4987:1 4990:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:1 5078:1 5085:1 5086:1 5088:1 5091:2 5100:1 5116:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5304:1 5311:1 5332:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:2 5443:1 5493:2 5494:1 5518:1 5519:9 5533:4 5542:2 5546:1 5551:2 5552:1 5554:1 5560:1 5577:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:2 5670:1 5673:1 5685:1 5688:1 5711:5 5714:1 5724:1 5729:1 5754:1 5773:1 5788:3 5791:1 5794:1 5801:1 5803:1 5804:1 5805:1 5807:3 5813:2 5815:8 5816:3 5818:1 5857:1 5858:1 5876:1 5928:3 5957:2 5974:1 6030:1 6036:1 6041:1 6058:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6155:1 6177:1 6179:2 6181:1 6191:1 6201:5 6212:1 6218:1 6223:1 6236:1 6248:1 6253:1 6262:1 6280:1 6291:2 6303:1 6331:2 6333:2 6340:1 6352:1 6364:3 6365:2 6380:1 6389:2 6391:1 6394:2 6402:1 6414:1 6448:1 6455:1 6462:1 6475:7 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6543:1 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:1 6658:3 6671:2 6674:1 6684:1 6713:3 6717:1 6720:1 6734:2 6741:1 6754:1 6760:1 6786:2 6804:1 6833:1 6866:2 6882:1 6883:2 6919:1 6920:9 6922:1 6933:1 6943:1 6944:2 6945:1 6963:2 6979:40 6983:1 7003:2 7004:9 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7219:1 7223:1 7238:1 7244:2 7265:1 7270:1 7296:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7438:2 7446:1 7449:2 7455:1 7460:2 7471:1 7473:3 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:1 7618:1 7636:1 7638:1 7657:1 7660:1 7668:1 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:1 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:3 7787:2 7788:2 7789:1 7791:3 7794:5 7796:2 7797:1 7800:1 7833:2 7837:1 7838:3 7863:1 7868:1 7869:1 7872:2 7877:1 7879:1 7892:1 7931:1 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8050:1 8052:2 8060:1 8090:1 8093:1 8095:1 8096:3 8100:2 8111:2 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:2 8365:1 8380:1 8384:1 8391:1 8404:1 8434:1 8437:1 8441:5 8443:1 8449:2 8452:1 8460:16 8483:2 8484:1 8493:1 8508:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8737:1 8757:1 8771:1 8772:2 8778:1 8786:1 8790:3 8792:1 8798:1 8803:1 8826:1 8833:2 8857:6 8864:2 8867:1 8868:3 8877:2 8890:1 8894:1 8931:3 8963:1 8990:1 9004:4 9010:1 9018:1 9030:2 9038:1 9040:1 9043:2 9047:1 9055:3 9070:1 9071:1 9074:1 9084:1 9085:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9207:1 9215:1 9235:1 9260:1 9262:1 9263:1 9274:1 9340:1 9382:1 9388:1 9410:1 9430:1 9433:1 9447:1 9461:1 9462:1 9470:1 9481:1 9484:2 9492:2 9508:1 9513:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:2 9610:1 9619:1 9621:1 9625:1 9633:1 9636:1 9651:1 9652:1 9653:1 9658:1 9660:1 9668:1 9682:2 9689:1 9690:1 9692:2 9717:1 9733:1 9750:3 9758:4 9775:2 9778:9 9795:1 9825:1 9826:1 9833:1 9843:1 9866:1 9870:1 9901:1 9902:2 9914:1 9945:1 9970:3 9972:1 9974:2 9976:2 9984:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:6 10045:1 10059:2 10065:1 10066:1 10068:1 10110:1 10111:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10185:1 10187:1 10211:1 10220:1 10222:1 10246:4 10251:1 10271:1 10284:1 10293:1 10303:2 10316:1 10317:1 10332:1 10333:1 10337:1 10339:2 10341:1 10361:3 10368:1 10391:1 10395:6 10396:1 10398:1 10408:1 10425:1 10426:1 10450:1 10463:1 10464:1 10484:1 10490:1 10493:1 10498:1 10523:1 10530:1 10531:1 10536:1 10544:2 10548:1 10552:2 10554:5 10572:1 10573:4 10574:1 10596:1 10597:1 10604:1 10616:2 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10650:1 10655:2 10668:1 10678:5 10686:1 10693:5 10701:1 10705:1 10725:1 10728:1 10736:1 10744:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10871:1 10902:1 10911:3 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11061:1 11062:2 11063:3 11065:1 11082:1 11102:1 11115:2 11116:4 11123:1 11128:1 11135:1 11177:1 11187:1 11206:1 11210:1 11215:4 11231:1 11241:1 11271:1 11279:1 11280:1 11283:2 11296:1 11297:1 11304:1 11314:2 11332:1 11339:1 11356:1 11368:1 11398:1 11409:1 11411:1 11412:1 11424:1 11425:1 11438:1 11443:1 11454:2 11461:1 11483:1 11522:5 11534:1 11543:1 11544:1 11561:8 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11655:2 11687:1 11696:1 11697:2 11715:1 11723:2 11724:1 11745:1 11768:1 11771:1 11772:1 11813:1 11824:1 11838:1 11865:1 11868:4 11908:1 11945:5 11949:1 11964:2 11972:1 11978:4 11982:3 11988:1 11995:1 11996:5 12027:1 12041:1 12042:1 12043:1 12071:3 12075:1 12103:1 12107:1 12110:1 12118:2 12123:1 12124:2 12127:1 12145:2 12163:2 12164:1 12168:1 12169:1 12184:1 12186:3 12188:1 12200:1 12208:1 12217:1 12221:1 12226:1 12237:1 12243:4 12265:1 12280:3 12284:1 12285:2 12320:1 12331:2 12385:1 12398:1 12418:1 12420:1 12454:3 12457:2 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12505:1 12528:2 12536:2 12540:1 12545:1 12546:1 12565:1 12573:2 12585:1 12604:1 12620:2 12624:1 12629:2 12639:1 12664:4 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:7 12762:1 12796:1 12820:1 12834:1 12843:1 12867:1 12883:5 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 13001:2 13011:1 13021:1 13032:1 13040:1 13057:2 13065:1 13073:1 13075:1 13083:1 13084:1 13086:2 13088:4 13090:1 13092:6 13100:1 13104:1 13106:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:4 13240:2 13247:2 13259:2 13278:1 13288:3 13304:1 13321:1 13340:2 13353:2 13362:1 13367:1 13386:1 13391:4 13407:1 13410:1 13422:2 13442:1 13486:1 13503:1 13512:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13659:1 13676:1 13679:3 13680:2 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:5 13757:1 13771:1 13856:3 13859:1 13864:1 13868:1 13881:1 13887:1 13897:1 13903:1 13905:1 13930:1 13947:1 13959:1 13971:2 14004:1 14015:2 14033:1 14043:5 14055:1 14089:2 14098:1 14102:1 14103:1 14104:4 14115:2 14119:1 14122:1 14131:1 14135:1 14152:2 14153:1 14164:1 14177:2 14228:1 14252:2 14255:1 14263:5 14268:2 14273:1 14275:2 14284:1 14290:2 14295:2 14303:1 14305:2 14306:2 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14388:1 14389:1 14418:4 14424:1 14434:1 14441:1 14461:2 14479:1 14492:6 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:1 14557:2 14570:1 14616:2 14653:1 14662:1 14669:12 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14782:1 14796:1 14803:1 14809:1 14822:2 14825:1 14829:1 14860:1 14897:1 14900:1 14942:1 14971:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15195:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:2 15402:1 15405:4 15410:1 15426:1 15436:1 15459:1 15464:1 15468:5 15480:1 15490:1 15495:2 15508:4 15530:1 15531:1 15544:2 15571:1 15576:1 15578:1 15583:4 15592:1 15607:3 15608:1 15617:1 15636:1 15638:1 15661:2 15663:2 15671:1 15675:1 15688:1 15697:2 15705:7 15706:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:1 15869:1 15880:1 15884:2 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:2 15970:2 15971:1 15974:1 15981:2 15992:3 15993:2 16025:1 16041:4 16042:2 16073:1 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16170:1 16174:1 16189:3 16194:1 16195:1 16207:1 16220:1 16221:1 16238:1 16253:1 16254:2 16278:1 16284:2 16301:7 16305:2 16311:18 16317:1 16319:1 16320:1 16323:1 16325:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16418:1 16424:1 16427:1 16436:4 16464:1 16476:5 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16583:1 16592:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:2 16870:4 16887:1 16900:1 16927:2 16928:1 16949:2 16963:3 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17045:1 17053:3 17057:1 17065:1 17069:1403 17086:1 17118:2 17119:1 17126:1 17128:1 17150:1 17187:2 17193:1 17211:1 17234:1 17248:1 17254:2 17260:3 17266:1 17272:2 17274:1 17276:2 17304:1 17346:5 17350:1 17352:1 17359:1 17381:16 17398:7 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17518:2 17527:2 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17639:1 17641:2 17672:1 17673:1 17678:1 17685:1 17689:1 17691:1 17697:2 17701:1 17707:1 17712:1 17719:4 17723:1 17738:1 17747:2 17772:8 17791:1 17792:1 17807:5 17808:1 17819:1 17826:1 17833:1 17838:1 17879:1 17885:2 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17984:1 17985:3 17986:1 18001:1 18007:1 18011:1 18033:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:1 18202:2 18206:1 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18299:1 18320:2 18323:1 18330:1 18349:1 18355:1 18356:4 18367:1 18382:2 18395:1 18400:1 18408:1 18409:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:2 18470:1 18476:1 18481:1 18483:1 18510:1 18513:2 18526:1 18545:5 18568:1 18589:4 18590:2 18594:2 18603:1 18606:1 18611:1 18648:1 18651:1 18661:2 18663:1 18666:1 18758:3 18762:2 18774:1 18796:1 18802:1 18804:1 18806:4 18815:1 18819:2 18826:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18968:1 18972:1 18983:1 18984:1 18996:1 19003:4 19007:1 19009:1 19016:1 19027:1 19032:1 19039:1 19042:2 19063:3 19088:1 19098:2 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19283:2 19292:1 19296:1 19316:1 19321:1 19326:1 19365:1 19381:1 19386:1 19391:1 19396:1 19405:1 19423:1 19434:2 19466:1 19470:1 19495:1 19557:1 19581:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:1 19658:1 19659:2 19667:1 19675:2 19676:1 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:3 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:7 19817:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20061:1 20063:2 20080:2 20085:1 20097:1 20127:2 20154:1 20158:1 20167:1 20180:1 20184:1 20211:1 20222:3 20228:3 20232:1 20265:1 20272:1 20274:1 20278:2 20294:1 20295:1 20305:2 20349:1 20355:1 20381:4 20383:3 20385:3 20396:2 20400:1 20423:1 20433:1 20434:2 20442:1 20457:1 20464:3 20466:1 20467:2 20473:1 20494:1 20498:1 20499:2 20505:1 20514:1 20533:1 20534:1 20536:1 20540:1 20543:1 20552:1 20564:1 20567:1 20574:1 20598:2 20600:1 20617:2 20624:1 20625:18 20631:2 20632:1 20634:3 20637:1 20640:1 20663:3 20666:1 20672:1 20676:1 20679:1 20692:1 20693:1 20697:1 20726:1 20736:1 20738:1 20771:1 20776:1 20779:3 20786:1 20804:2 20807:1 20853:1 20854:1 20856:2 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20900:2 20903:2 20911:1 20912:1 20932:1 20952:1 20960:1 20964:1 20973:1 20987:1 21023:1 21064:1 21070:1 21077:1 21087:1 21088:1 21095:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:3 21146:1 21155:3 21160:1 21177:2 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:1 21378:1 21383:1 21388:1 21389:1 21395:1 21402:1 21426:1 21440:3 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21504:1 21514:8 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21586:1 21597:1 21633:1 21636:1 21649:1 21652:1 21663:2 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21780:1 21789:2 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21996:1 22005:4 22013:3 22018:1 22029:1 22041:2 22042:1 22043:1 22060:1 22079:1 22085:1 22093:1 22110:2 22111:1 22112:1 22133:1 22137:1 22154:1 22161:1 22165:2 22166:3 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:2 22277:1 22279:5 22281:2 22283:4 22284:2 22288:2 22289:2 22290:1 22295:1 22297:2 22300:1 22304:2 22307:1 22311:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:1 22408:1 22409:1 22418:1 22428:1 22442:1 22445:1 22463:1 22486:1 22489:1 22503:1 22517:3 22535:2 22544:1 22546:3 22549:1 22559:2 22594:1 22630:2 22631:1 22639:1 22650:1 22656:1 22691:3 22702:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:1 22796:1 22808:1 22810:3 22814:1 22821:1 22832:1 22834:1 22841:3 22882:1 22899:1 22912:1 22914:2 22942:8 22950:1 22962:6 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:4 23113:1 23121:1 23123:2 23124:7 23128:1 23129:2 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23194:1 23200:2 23207:1 23229:3 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23340:1 23363:1 23366:1 23379:1 23387:1 23389:1 23391:1 23393:2 23397:1 23409:3 23443:1 23444:1 23452:1 23460:1 23487:1 23523:1 23527:1 23537:1 23557:1 23608:1 23614:1 23616:1 23618:1 23632:1 23638:1 23639:1 23645:1 23661:1 23670:1 23688:1 23703:1 23705:2 23735:2 23740:1 23749:1 23753:1 23767:1 23770:4 23796:4 23814:1 23833:1 23835:1 23838:1 23847:1 23856:1 23857:1 23862:1 23873:1 23891:1 23903:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:1 24008:3 24035:2 24037:1 24041:1 24045:1 24050:3 24051:1 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:2 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24242:1 24244:1 24256:1 24268:1 24271:5 24293:2 24351:1 24383:1 24386:1 24388:1 24404:1 24411:1 24453:1 24454:1 24459:1 24468:1 24478:1 24481:1 24489:1 24493:1 24533:1 24542:1 24552:1 24568:1 24576:1 24588:4 24602:2 24610:4 24619:1 24634:1 24635:1 24638:1 24653:1 24674:1 24685:7 24686:1 24718:1 24735:2 24743:1 24747:1 24748:1 24756:8 24787:3 24797:1 24816:1 24845:5 24848:1 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25024:1 25025:1 25035:1 25064:1 25147:1 25152:1 25196:1 25198:1 25211:1 25230:4 25231:1 25251:1 25281:1 25325:1 25340:2 25403:1 25433:1 25435:5 25443:1 25462:1 25467:1 25500:1 25509:1 25540:1 25541:1 25542:1 25549:18 25550:2 25553:5 25554:1 25555:2 25564:1 25590:6 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:1 25688:1 25696:2 25719:9 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:1 25766:1 25770:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:2 25880:1 25895:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26186:1 26190:1 26192:1 26202:1 26204:2 26211:1 26219:1 26232:5 26241:1 26247:2 26249:1 26255:1 26264:1 26294:1 26298:1 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:2 26399:1 26413:1 26414:1 26438:2 26451:1 26470:1 26488:1 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:2 26595:1 26601:5 26614:1 26616:1 26638:6 26649:4 26679:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:3 26727:1 26742:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 35:1 38:2 52:1 66:1 70:1 91:1 92:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:5 223:1 243:1 259:1 268:2 282:1 283:16 294:1 313:1 315:3 328:1 340:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 550:2 553:1 561:1 567:3 590:2 594:2 597:1 598:1 611:2 620:1 628:1 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 790:1 791:1 794:2 797:1 816:3 818:3 828:1 829:1 840:1 843:10 846:1 856:1 860:1 868:2 872:6 875:1 883:1 884:1 888:1 893:3 910:1 912:1 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:2 987:1 1010:1 1021:1 1029:1 1036:1 1046:1 1047:1 1059:2 1067:1 1072:1 1075:1 1087:1 1092:1 1096:3 1104:1 1110:1 1128:1 1155:2 1183:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1301:1 1303:2 1326:2 1328:1 1331:5 1332:1 1352:1 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:1 1471:1 1476:1 1491:1 1493:2 1496:3 1502:1 1520:3 1524:1 1547:1 1548:2 1557:3 1561:2 1578:1 1579:1 1599:1 1601:2 1621:1 1652:1 1659:1 1668:1 1682:3 1695:1 1699:1 1707:1 1714:1 1723:1 1752:1 1797:9 1802:1 1809:2 1827:1 1833:1 1834:1 1843:1 1853:6 1855:2 1883:1 1886:1 1893:1 1895:3 1962:1 1965:1 1970:3 1975:1 1986:1 1988:1 1995:1 2016:1 2035:1 2038:1 2041:2 2042:1 2051:1 2057:1 2058:1 2060:2 2063:1 2064:2 2065:4 2068:1 2077:2 2096:1 2098:1 2104:1 2105:1 2108:2 2109:6 2112:4 2117:1 2118:2 2119:2 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:6 2154:1 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:1 2261:1 2263:1 2279:1 2298:2 2310:5 2320:1 2326:1 2344:1 2350:1 2360:5 2369:2 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:1 2443:2 2462:1 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:5 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2636:1 2670:2 2683:13 2696:4 2702:1 2718:1 2733:9 2756:1 2761:4 2765:1 2787:1 2813:1 2817:1 2856:2 2857:1 2870:1 2881:1 2882:1 2937:1 2951:1 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:8 3149:1 3157:1 3171:1 3173:2 3177:1 3214:1 3225:1 3226:1 3230:1 3238:1 3244:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:3 3348:4 3355:1 3356:1 3357:2 3358:2 3364:1 3380:1 3384:1 3386:3 3394:1 3416:1 3426:1 3430:1 3434:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:8 3500:1 3510:1 3520:1 3524:3 3525:1 3530:2 3532:1 3533:9 3534:1 3548:4 3553:1 3557:1 3568:2 3571:1 3581:1 3584:1 3594:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:2 3638:1 3648:2 3649:1 3665:1 3671:1 3672:1 3676:1 3694:2 3701:1 3703:1 3706:2 3709:1 3714:2 3715:2 3724:4 3725:2 3731:1 3746:1 3760:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3899:1 3915:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:1 3986:1 3988:1 4000:1 4034:1 4042:1 4055:5 4056:1 4073:1 4114:1 4115:1 4123:1 4129:1 4145:1 4170:1 4195:1 4220:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4303:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:6 4425:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:1 4503:1 4513:15 4515:2 4518:1 4530:1 4531:2 4538:1 4557:1 4560:5 4566:1 4577:1 4578:1 4591:1 4594:1 4596:4 4607:2 4608:4 4609:1 4610:1 4615:3 4618:1 4619:1 4622:1 4626:1 4628:2 4630:2 4633:1 4640:1 4642:2 4643:2 4662:1 4682:1 4715:2 4734:1 4751:1 4754:1 4763:2 4765:1 4769:2 4776:2 4793:1 4795:1 4806:1 4812:2 4817:1 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:2 4926:4 4929:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:1 5078:1 5085:1 5086:1 5088:1 5091:2 5100:1 5116:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5304:1 5311:1 5332:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:2 5443:1 5493:2 5494:1 5518:1 5519:9 5533:4 5542:2 5546:1 5551:2 5552:1 5554:1 5560:1 5577:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:2 5670:1 5673:1 5685:1 5688:1 5711:5 5714:1 5724:1 5727:1 5729:1 5754:1 5773:1 5788:3 5790:1 5791:1 5794:1 5801:1 5803:1 5804:1 5805:1 5807:3 5813:2 5815:8 5816:3 5818:1 5857:1 5858:1 5876:1 5928:3 5957:2 5974:1 6030:1 6036:1 6041:1 6058:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6177:1 6179:2 6181:1 6191:1 6201:5 6212:2 6218:1 6223:1 6236:1 6248:1 6253:1 6262:1 6280:1 6291:2 6303:1 6331:2 6333:2 6340:2 6352:1 6364:3 6365:2 6380:1 6389:2 6391:1 6394:2 6402:1 6414:1 6448:1 6455:1 6462:1 6475:7 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6543:1 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:1 6658:3 6671:2 6674:1 6684:1 6692:1 6713:3 6717:3 6720:1 6734:2 6741:1 6754:1 6755:1 6760:1 6786:2 6804:1 6833:1 6866:2 6882:1 6883:2 6919:1 6920:9 6922:1 6933:1 6943:1 6944:2 6945:1 6963:3 6964:1 6979:42 6983:1 7003:2 7004:9 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:1 7219:1 7223:1 7238:1 7244:2 7265:1 7270:1 7296:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7438:2 7446:1 7449:2 7455:1 7460:2 7471:1 7473:3 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:1 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:3 7787:3 7788:2 7789:1 7791:3 7794:6 7796:2 7797:1 7800:1 7833:2 7837:1 7838:3 7863:2 7868:1 7869:1 7872:2 7877:1 7879:2 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8050:1 8052:2 8060:1 8090:1 8093:1 8095:1 8096:3 8100:2 8111:2 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:2 8365:1 8380:1 8384:1 8391:1 8404:1 8434:1 8437:1 8441:5 8443:1 8449:2 8452:1 8460:16 8483:2 8484:1 8493:1 8508:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8724:1 8725:1 8737:1 8757:1 8771:1 8772:2 8778:1 8786:1 8790:3 8792:1 8798:1 8803:2 8826:1 8833:2 8857:6 8864:2 8867:1 8868:3 8877:2 8890:1 8894:1 8931:3 8963:1 8990:1 9004:4 9010:1 9018:1 9023:1 9030:2 9038:1 9040:1 9043:2 9047:1 9055:3 9070:1 9071:1 9074:1 9084:1 9085:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9207:1 9215:1 9235:1 9260:1 9262:1 9263:1 9274:1 9340:1 9382:1 9388:1 9410:1 9430:1 9433:1 9447:1 9461:1 9462:1 9470:1 9481:2 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:2 9610:2 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:2 9652:3 9653:1 9658:1 9660:1 9668:1 9669:1 9682:2 9689:1 9690:1 9692:2 9717:1 9733:1 9750:5 9758:4 9775:2 9778:9 9795:1 9825:1 9826:1 9833:1 9843:1 9866:2 9870:1 9901:1 9902:2 9914:1 9945:1 9970:3 9972:2 9974:2 9976:2 9984:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:6 10045:1 10059:2 10065:1 10066:1 10068:1 10110:1 10111:1 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10185:1 10187:1 10211:1 10220:1 10222:1 10246:4 10251:1 10271:1 10284:1 10293:1 10303:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:2 10341:1 10361:3 10368:1 10391:1 10395:6 10396:1 10398:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10484:1 10490:1 10493:1 10498:1 10523:1 10530:1 10531:1 10536:1 10544:2 10548:1 10552:2 10554:6 10572:1 10573:5 10574:1 10596:1 10597:1 10604:1 10616:2 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:1 10650:1 10655:2 10660:1 10668:1 10678:5 10686:1 10693:6 10701:1 10705:1 10725:1 10728:1 10736:1 10744:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10871:1 10902:1 10911:3 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11059:1 11061:1 11062:2 11063:3 11065:1 11075:1 11082:1 11102:1 11103:1 11115:2 11116:4 11123:2 11128:1 11135:1 11177:1 11187:1 11206:1 11210:1 11215:4 11231:1 11241:1 11257:1 11271:1 11279:1 11280:1 11283:2 11296:1 11297:1 11304:1 11314:2 11332:1 11339:1 11356:1 11368:1 11398:1 11409:1 11411:1 11412:2 11424:1 11425:1 11438:1 11443:1 11454:2 11461:1 11483:1 11522:6 11534:1 11543:1 11544:1 11561:9 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11655:2 11687:1 11696:1 11697:2 11715:1 11723:2 11724:1 11745:1 11765:2 11768:1 11771:1 11772:1 11813:1 11824:1 11838:1 11865:1 11868:5 11908:1 11945:6 11949:1 11964:2 11972:1 11978:4 11982:3 11988:1 11995:1 11996:5 12027:1 12041:1 12042:1 12043:1 12071:3 12075:1 12103:1 12107:1 12110:1 12118:2 12123:1 12124:2 12127:1 12145:2 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:2 12208:1 12217:1 12221:1 12226:1 12237:1 12243:4 12265:1 12280:3 12284:1 12285:2 12320:1 12331:2 12385:1 12398:1 12418:1 12420:1 12454:3 12457:2 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12505:2 12528:2 12536:2 12540:1 12545:1 12546:1 12565:1 12573:2 12585:1 12604:1 12620:2 12624:1 12629:2 12639:1 12664:5 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:8 12762:1 12796:1 12820:1 12834:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 13001:2 13011:1 13021:1 13032:1 13040:1 13057:2 13065:1 13073:1 13075:1 13083:1 13084:1 13086:2 13088:4 13090:1 13092:6 13100:2 13104:1 13106:1 13112:1 13125:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:4 13240:2 13247:2 13259:2 13278:1 13288:3 13304:1 13321:1 13340:2 13353:2 13362:2 13367:1 13386:1 13391:4 13407:1 13410:1 13422:2 13442:1 13486:1 13503:1 13512:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13659:1 13676:1 13679:3 13680:2 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:6 13757:1 13771:1 13823:1 13856:3 13859:1 13864:1 13868:1 13881:1 13887:1 13897:1 13903:1 13905:1 13930:1 13935:1 13947:1 13959:1 13971:2 14004:1 14015:2 14033:1 14043:5 14055:1 14089:2 14098:1 14102:1 14103:1 14104:4 14115:2 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14228:1 14252:2 14255:1 14263:5 14268:2 14273:1 14275:2 14284:1 14290:2 14295:2 14303:1 14305:3 14306:2 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14388:1 14389:1 14418:5 14424:1 14434:1 14441:1 14461:2 14479:1 14492:6 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:2 14557:2 14570:1 14599:1 14616:2 14653:1 14662:1 14669:13 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14782:1 14796:1 14803:1 14809:1 14822:2 14825:1 14829:1 14860:2 14897:2 14900:1 14942:1 14971:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:2 15402:1 15405:4 15410:1 15426:1 15436:1 15459:1 15464:1 15468:6 15480:1 15487:1 15490:1 15495:2 15508:4 15530:1 15531:2 15544:2 15571:1 15576:1 15578:1 15583:4 15592:1 15607:3 15608:1 15617:1 15636:1 15638:1 15661:2 15663:2 15671:1 15675:1 15688:1 15697:2 15705:7 15706:1 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:2 15970:2 15971:1 15974:1 15981:2 15992:3 15993:2 16025:1 16041:4 16042:2 16073:1 16075:1 16102:1 16104:1 16113:5 16126:1 16153:1 16158:1 16164:2 16167:1 16170:1 16174:1 16189:4 16194:1 16195:1 16207:1 16220:1 16221:1 16238:1 16253:1 16254:3 16278:1 16284:2 16301:7 16305:3 16311:19 16317:1 16319:1 16320:1 16323:1 16325:1 16344:1 16352:1 16355:1 16372:1 16391:1 16393:1 16396:1 16402:1 16404:1 16407:1 16418:1 16424:1 16427:1 16436:4 16464:1 16476:5 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16575:1 16583:1 16592:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:2 16870:4 16887:1 16900:1 16927:2 16928:1 16949:2 16963:3 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17042:1 17045:1 17053:3 17057:1 17065:1 17069:1488 17082:1 17086:1 17118:2 17119:1 17126:1 17128:1 17150:1 17187:2 17193:1 17211:1 17234:1 17248:1 17254:2 17260:3 17266:1 17272:2 17274:1 17276:3 17304:1 17346:6 17350:1 17352:1 17359:1 17381:16 17395:1 17398:7 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17518:2 17527:2 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17639:2 17641:2 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:2 17701:1 17707:1 17712:1 17719:4 17723:1 17738:1 17747:2 17772:9 17791:1 17792:1 17807:5 17808:1 17819:1 17826:1 17833:1 17838:1 17879:1 17885:2 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17984:1 17985:3 17986:1 18001:1 18007:1 18011:1 18033:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:1 18199:2 18202:3 18206:1 18212:2 18221:1 18241:1 18242:1 18254:1 18257:2 18275:1 18299:1 18320:2 18323:1 18330:1 18349:1 18355:1 18356:4 18367:1 18382:2 18395:1 18400:1 18408:1 18409:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:2 18470:1 18476:1 18481:1 18483:1 18484:1 18510:1 18513:2 18526:1 18545:5 18568:1 18589:4 18590:2 18594:2 18603:1 18606:1 18611:1 18648:1 18651:3 18661:2 18663:1 18666:1 18758:3 18762:2 18774:1 18796:1 18802:1 18804:1 18806:4 18815:1 18819:3 18826:1 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18968:1 18972:1 18983:1 18984:2 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:1 19032:1 19039:1 19042:2 19050:1 19063:4 19088:1 19098:2 19102:1 19120:1 19143:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19283:2 19292:1 19296:1 19316:1 19321:1 19326:1 19365:1 19381:1 19386:1 19391:1 19396:1 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19495:1 19557:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:1 19658:1 19659:2 19667:1 19675:2 19676:2 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:4 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:8 19817:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20061:1 20063:2 20080:2 20085:1 20097:1 20127:2 20154:1 20158:1 20167:1 20180:1 20184:1 20211:1 20222:3 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:1 20295:1 20305:2 20339:1 20349:1 20355:1 20381:4 20383:3 20385:3 20388:1 20396:2 20400:1 20423:1 20433:1 20434:2 20442:1 20457:1 20464:3 20466:1 20467:2 20473:1 20483:2 20494:1 20498:1 20499:2 20505:1 20514:1 20533:1 20534:1 20536:1 20540:1 20543:1 20552:2 20564:1 20567:1 20574:1 20598:2 20600:1 20617:2 20624:1 20625:19 20631:2 20632:1 20634:3 20637:1 20640:1 20663:3 20666:1 20672:2 20676:1 20679:2 20692:1 20693:1 20697:1 20726:1 20736:1 20738:1 20771:1 20776:1 20779:3 20786:1 20804:2 20807:1 20853:1 20854:1 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20900:2 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21064:1 21070:1 21077:1 21087:1 21088:1 21095:1 21114:1 21115:1 21128:2 21131:1 21136:1 21144:3 21146:1 21155:3 21160:1 21177:2 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:1 21378:2 21383:1 21388:1 21389:1 21395:1 21402:1 21426:1 21440:3 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:9 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21586:1 21597:1 21633:1 21636:1 21640:1 21649:1 21652:1 21663:2 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21780:1 21789:2 21841:1 21844:1 21855:2 21858:1 21869:1 21871:2 21892:1 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21996:2 22005:5 22013:3 22018:1 22029:1 22041:2 22042:1 22043:1 22060:1 22079:1 22085:1 22093:1 22110:2 22111:1 22112:1 22115:1 22133:1 22137:1 22154:1 22161:1 22165:2 22166:3 22181:1 22197:1 22204:1 22215:1 22242:1 22264:1 22268:1 22276:2 22277:1 22279:6 22281:2 22283:4 22284:2 22288:2 22289:2 22290:1 22295:1 22297:2 22300:1 22304:2 22307:1 22311:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:1 22408:1 22409:1 22418:2 22428:1 22442:1 22445:1 22447:1 22463:1 22486:1 22489:1 22503:1 22517:3 22535:2 22544:1 22546:3 22549:1 22559:2 22594:1 22630:2 22631:1 22639:1 22650:1 22656:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:1 22796:1 22808:1 22810:3 22814:1 22821:1 22832:1 22834:1 22841:3 22882:1 22899:1 22912:1 22914:2 22942:9 22950:1 22962:6 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:4 23113:1 23121:1 23123:2 23124:7 23128:1 23129:2 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23194:1 23200:2 23207:1 23229:3 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23340:1 23363:1 23366:1 23379:1 23387:1 23389:1 23391:1 23393:2 23397:1 23409:3 23440:1 23443:1 23444:1 23452:1 23460:1 23487:1 23523:1 23527:1 23537:1 23557:1 23573:1 23608:1 23614:1 23616:2 23618:1 23625:1 23632:1 23638:1 23639:1 23645:1 23661:1 23670:1 23688:1 23703:1 23705:2 23735:2 23740:1 23749:1 23753:1 23767:1 23770:4 23796:4 23814:1 23833:1 23835:1 23838:1 23847:1 23856:1 23857:1 23862:1 23873:1 23891:1 23903:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:1 24008:4 24035:2 24037:1 24041:1 24045:1 24050:3 24051:1 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:2 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24242:1 24244:1 24256:1 24268:2 24271:5 24293:2 24351:1 24383:1 24386:1 24388:1 24404:1 24411:1 24453:1 24454:1 24459:1 24465:1 24468:1 24478:1 24481:1 24489:1 24493:1 24533:1 24542:1 24552:1 24564:2 24568:1 24576:1 24588:4 24602:2 24610:4 24619:1 24634:1 24635:1 24638:1 24653:1 24664:1 24674:1 24685:7 24686:1 24718:1 24734:1 24735:2 24743:1 24747:1 24748:1 24756:9 24787:3 24797:1 24816:1 24845:5 24848:1 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25024:1 25025:1 25035:1 25064:1 25147:1 25152:1 25196:1 25198:1 25211:1 25230:4 25231:1 25251:1 25281:1 25325:1 25340:2 25403:2 25433:1 25435:6 25443:1 25462:1 25467:1 25500:1 25509:1 25529:1 25540:1 25541:1 25542:1 25549:19 25550:2 25553:5 25554:1 25555:2 25564:1 25590:6 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:1 25688:1 25696:2 25719:9 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:1 25766:1 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:2 25880:1 25895:1 25897:1 25902:1 25912:2 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26186:1 26190:1 26192:1 26202:1 26204:2 26211:1 26219:1 26232:6 26241:1 26247:2 26249:1 26255:1 26264:1 26294:1 26298:1 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:4 26399:1 26413:1 26414:1 26438:2 26451:1 26470:1 26488:2 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:2 26595:1 26601:5 26613:1 26614:1 26616:1 26638:6 26649:5 26667:1 26679:1 26707:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:3 26727:1 26742:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 35:1 38:2 52:1 62:1 66:1 70:1 91:1 92:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:5 223:1 243:1 259:1 268:2 282:1 283:17 294:1 313:3 315:3 328:1 340:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 549:1 550:2 553:1 561:1 567:3 590:2 594:2 597:1 598:1 599:1 611:2 620:1 628:1 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 770:1 781:1 790:1 791:1 794:2 797:1 816:4 818:3 828:1 829:1 840:1 843:10 846:1 856:1 860:1 868:2 872:7 875:1 883:1 884:1 888:1 893:3 910:1 912:2 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:2 987:1 1010:1 1021:1 1029:1 1036:1 1046:1 1047:1 1059:2 1067:1 1072:1 1075:1 1087:1 1092:1 1096:3 1104:1 1110:1 1128:1 1155:2 1183:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1301:1 1303:2 1326:2 1328:1 1331:5 1332:1 1352:1 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:1 1471:1 1476:1 1491:1 1493:2 1496:3 1502:1 1520:3 1524:1 1547:1 1548:2 1557:3 1561:2 1578:1 1579:1 1599:1 1601:2 1621:1 1652:1 1659:1 1668:1 1682:3 1695:1 1699:1 1707:1 1714:1 1723:1 1752:1 1797:9 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:7 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1995:1 2016:1 2035:1 2038:1 2041:2 2042:1 2051:1 2057:1 2058:1 2060:3 2063:1 2064:2 2065:4 2068:1 2077:2 2096:1 2098:1 2104:2 2105:2 2108:2 2109:7 2112:4 2117:1 2118:2 2119:2 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:6 2154:1 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:2 2256:2 2261:1 2263:1 2279:1 2298:2 2310:5 2320:1 2326:1 2344:1 2350:1 2360:5 2369:2 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:5 2591:2 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2636:1 2670:2 2683:17 2696:4 2702:1 2718:1 2727:1 2733:10 2756:1 2761:4 2765:1 2787:1 2813:1 2817:1 2856:2 2857:1 2870:1 2881:1 2882:1 2888:1 2937:1 2951:1 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3014:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:8 3149:1 3157:1 3171:1 3173:2 3177:1 3214:1 3225:1 3226:1 3230:1 3238:1 3244:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:3 3348:4 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:1 3384:1 3386:3 3394:1 3416:1 3426:1 3430:1 3434:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:8 3500:1 3510:1 3520:1 3524:3 3525:1 3530:2 3532:1 3533:9 3534:1 3548:4 3553:1 3557:1 3568:2 3571:1 3581:1 3584:1 3594:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:1 3648:2 3649:1 3665:1 3671:1 3672:1 3676:1 3694:3 3701:1 3703:1 3706:2 3709:1 3714:2 3715:2 3724:4 3725:2 3731:1 3745:1 3746:1 3760:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3875:1 3899:1 3915:1 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4034:1 4042:1 4055:5 4056:1 4073:1 4114:1 4115:1 4123:1 4129:1 4145:1 4168:1 4170:1 4195:1 4220:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:1 4303:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:6 4425:1 4427:2 4448:1 4453:1 4455:1 4458:1 4463:2 4486:1 4503:1 4513:15 4515:2 4518:1 4530:1 4531:2 4538:1 4557:1 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:4 4607:3 4608:4 4609:1 4610:1 4615:3 4618:1 4619:1 4622:1 4626:1 4628:2 4630:2 4633:1 4639:1 4640:1 4642:2 4643:2 4662:1 4682:1 4715:2 4734:1 4751:1 4754:1 4763:2 4765:1 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:1 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:2 4926:4 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:1 5091:2 5100:1 5107:1 5116:1 5136:3 5147:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5332:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:2 5443:1 5493:2 5494:1 5518:1 5519:11 5533:4 5542:2 5546:1 5551:2 5552:1 5554:1 5560:1 5577:1 5594:1 5598:1 5630:1 5649:1 5666:1 5669:2 5670:1 5673:1 5685:1 5688:1 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5773:1 5788:3 5790:1 5791:1 5794:1 5801:1 5803:1 5804:2 5805:1 5807:3 5813:3 5815:8 5816:4 5818:1 5857:1 5858:1 5876:1 5928:3 5957:2 5974:1 6030:1 6036:1 6041:1 6058:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6177:1 6179:2 6181:1 6191:1 6201:5 6212:2 6218:2 6223:1 6236:1 6248:1 6253:1 6262:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:2 6352:1 6364:3 6365:2 6380:1 6387:1 6389:2 6391:1 6394:2 6402:1 6414:1 6448:1 6455:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6671:2 6672:1 6674:1 6684:1 6692:1 6713:3 6717:3 6720:1 6734:2 6741:1 6754:1 6755:1 6760:2 6786:2 6804:1 6833:1 6866:2 6882:1 6883:2 6919:1 6920:9 6922:1 6933:2 6943:2 6944:2 6945:1 6963:3 6964:1 6979:45 6983:1 7003:2 7004:10 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:1 7219:1 7223:1 7238:1 7244:2 7265:1 7270:1 7296:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7438:2 7446:1 7449:2 7455:1 7460:2 7471:1 7473:5 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:1 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:5 7787:3 7788:2 7789:1 7791:3 7794:6 7796:2 7797:1 7800:1 7813:2 7833:4 7837:1 7838:3 7863:2 7868:1 7869:2 7872:2 7877:1 7879:2 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8042:1 8050:1 8052:2 8060:1 8090:1 8093:1 8095:1 8096:3 8100:2 8111:2 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8233:1 8249:1 8259:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:2 8365:1 8380:1 8384:1 8391:1 8404:1 8434:1 8437:1 8441:6 8443:1 8449:2 8452:1 8460:17 8463:1 8483:2 8484:1 8493:1 8508:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8757:1 8771:1 8772:3 8778:1 8786:1 8790:3 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:6 8864:2 8867:1 8868:3 8877:2 8878:1 8890:1 8894:1 8902:1 8931:3 8963:1 8990:1 9004:4 9010:1 9018:1 9023:1 9030:2 9038:1 9040:1 9043:2 9047:1 9050:1 9055:3 9070:1 9071:1 9074:1 9084:1 9085:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9207:1 9215:1 9235:1 9260:1 9262:1 9263:1 9274:2 9340:1 9347:1 9382:1 9388:1 9410:1 9430:1 9433:1 9447:1 9461:1 9462:1 9470:1 9481:2 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:2 9610:2 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:2 9652:3 9653:1 9658:1 9660:1 9668:1 9669:1 9682:2 9683:2 9689:1 9690:1 9692:2 9717:1 9733:1 9750:5 9758:4 9775:2 9778:10 9795:1 9825:1 9826:1 9833:1 9843:1 9866:2 9870:1 9901:1 9902:2 9914:1 9945:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:6 10045:1 10059:2 10065:1 10066:1 10068:1 10110:1 10111:1 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10185:1 10187:1 10211:1 10220:1 10222:1 10246:4 10251:1 10271:1 10284:1 10293:1 10303:2 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:2 10341:1 10361:3 10368:1 10391:1 10395:8 10396:1 10398:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10484:1 10490:1 10493:1 10498:2 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:2 10554:6 10572:1 10573:5 10574:1 10596:1 10597:1 10604:1 10616:2 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:1 10650:1 10655:2 10660:1 10668:1 10678:5 10686:1 10693:6 10701:1 10705:1 10725:1 10728:1 10736:1 10744:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10871:1 10902:1 10911:3 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11059:1 11061:1 11062:2 11063:3 11065:1 11075:1 11082:1 11102:1 11103:1 11115:2 11116:4 11123:2 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:5 11231:1 11241:1 11257:1 11271:1 11279:1 11280:1 11283:2 11296:1 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11368:1 11398:1 11409:1 11411:1 11412:2 11424:1 11425:1 11438:1 11443:1 11454:2 11461:1 11483:1 11522:6 11534:1 11543:1 11544:1 11548:1 11556:1 11561:13 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11631:2 11655:2 11687:1 11696:1 11697:2 11715:1 11723:2 11724:1 11745:1 11765:2 11768:1 11771:1 11772:1 11813:1 11824:1 11838:1 11865:1 11868:5 11908:1 11945:6 11949:1 11964:2 11972:1 11978:4 11982:3 11988:1 11995:1 11996:5 12027:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:3 12075:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:2 12127:1 12145:2 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:2 12208:1 12217:1 12221:1 12226:1 12237:2 12243:4 12265:1 12280:3 12284:1 12285:2 12320:1 12331:2 12385:1 12398:1 12418:1 12420:1 12454:3 12457:2 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12505:2 12528:2 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:1 12620:2 12624:1 12629:2 12639:1 12664:6 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:8 12762:1 12796:1 12820:1 12834:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 13001:2 13011:1 13021:1 13032:1 13040:1 13057:2 13065:1 13073:1 13075:2 13083:1 13084:1 13086:2 13088:4 13090:1 13092:6 13100:2 13104:1 13106:1 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:4 13240:2 13247:2 13259:2 13278:1 13288:3 13304:1 13321:1 13340:2 13353:2 13362:2 13367:1 13383:2 13386:1 13391:4 13407:1 13410:1 13422:2 13442:1 13486:1 13503:1 13512:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13655:1 13659:2 13676:1 13679:3 13680:2 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:6 13757:1 13771:1 13823:1 13856:3 13859:1 13864:1 13868:1 13880:1 13881:1 13887:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13959:1 13971:2 14004:1 14015:2 14033:1 14043:6 14055:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:2 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14228:1 14252:2 14255:1 14263:5 14268:2 14273:1 14275:3 14284:1 14290:2 14295:2 14303:1 14305:3 14306:2 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14388:1 14389:1 14418:5 14424:1 14434:1 14441:1 14461:3 14479:1 14492:6 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:2 14557:2 14570:1 14599:1 14616:2 14653:1 14662:1 14669:13 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14768:1 14773:1 14780:1 14782:1 14796:1 14803:1 14809:2 14822:2 14825:1 14829:1 14860:2 14897:2 14899:1 14900:1 14942:1 14954:1 14971:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:2 15402:1 15405:4 15410:1 15426:1 15436:1 15459:1 15464:1 15468:7 15480:1 15487:1 15490:1 15495:2 15508:4 15530:1 15531:2 15544:2 15571:1 15576:1 15578:1 15583:5 15592:1 15607:3 15608:1 15617:1 15636:1 15638:2 15661:3 15663:2 15671:1 15675:1 15688:1 15689:2 15697:2 15705:7 15706:1 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:2 15992:3 15993:2 16025:1 16041:5 16042:3 16073:1 16075:1 16102:1 16104:1 16113:7 16126:1 16153:1 16158:1 16164:2 16167:1 16170:1 16174:1 16189:4 16194:1 16195:1 16207:1 16220:1 16221:1 16238:1 16253:1 16254:3 16278:1 16284:2 16301:7 16302:1 16305:3 16311:20 16317:1 16319:1 16320:1 16323:1 16325:1 16344:1 16352:1 16355:1 16372:1 16378:1 16391:1 16393:1 16396:1 16402:1 16404:1 16407:1 16418:1 16424:1 16427:1 16436:4 16464:1 16476:5 16514:1 16518:1 16530:1 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16575:1 16583:1 16592:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:1 16700:2 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:2 16870:4 16887:1 16900:1 16909:1 16927:2 16928:1 16949:2 16963:4 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17042:1 17045:1 17053:3 17057:1 17065:1 17069:1530 17082:1 17086:1 17118:2 17119:1 17126:3 17128:1 17150:1 17187:2 17193:1 17211:1 17234:1 17248:1 17254:2 17260:6 17266:1 17272:5 17274:2 17276:3 17304:1 17346:6 17350:1 17352:1 17359:1 17381:17 17395:1 17398:7 17419:1 17449:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:2 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17639:2 17641:2 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17738:1 17747:2 17772:9 17791:1 17792:1 17807:6 17808:1 17819:1 17826:1 17833:1 17838:1 17879:1 17885:2 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17984:1 17985:3 17986:1 18001:1 18007:1 18011:1 18033:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:1 18199:2 18202:3 18206:1 18212:2 18221:1 18241:1 18242:1 18250:1 18254:1 18257:2 18275:1 18299:1 18320:2 18323:1 18330:1 18349:1 18355:1 18356:4 18367:1 18382:2 18395:1 18400:1 18408:1 18409:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:2 18470:1 18476:1 18481:1 18483:1 18484:1 18510:1 18513:2 18526:1 18545:5 18568:1 18589:5 18590:2 18594:2 18603:1 18606:1 18611:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18758:3 18762:2 18774:1 18796:1 18802:1 18804:1 18806:5 18815:2 18819:3 18826:1 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18959:1 18968:1 18972:1 18983:1 18984:2 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:1 19032:1 19039:1 19042:2 19050:1 19063:4 19088:1 19098:2 19102:2 19120:1 19143:1 19150:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19296:1 19316:1 19321:1 19326:1 19365:1 19381:1 19386:1 19391:1 19396:1 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19495:1 19557:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:1 19658:1 19659:2 19667:1 19675:2 19676:2 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:4 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:8 19817:1 19818:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20061:1 20063:3 20080:2 20085:1 20097:1 20127:2 20154:1 20158:1 20167:1 20180:1 20184:1 20211:1 20222:3 20226:2 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:1 20295:1 20305:3 20339:1 20349:1 20355:1 20381:4 20383:5 20385:3 20388:1 20396:2 20400:1 20423:1 20433:1 20434:2 20442:1 20455:1 20457:1 20464:3 20466:1 20467:3 20473:1 20483:2 20494:1 20498:1 20499:2 20505:1 20514:1 20533:1 20534:1 20536:1 20540:1 20543:1 20552:2 20564:1 20567:1 20574:1 20598:2 20600:1 20617:2 20624:1 20625:20 20631:2 20632:1 20634:3 20637:1 20638:1 20640:1 20645:1 20663:3 20666:1 20672:2 20676:1 20679:2 20692:1 20693:1 20697:1 20706:1 20708:1 20726:1 20736:1 20738:1 20771:1 20776:1 20779:3 20786:1 20804:2 20807:1 20825:1 20853:1 20854:1 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20900:2 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21055:1 21064:1 21070:1 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21128:2 21131:1 21136:1 21144:3 21145:1 21146:1 21155:3 21160:2 21177:2 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:2 21378:2 21383:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:9 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21780:1 21789:2 21841:1 21844:1 21855:2 21857:2 21858:1 21869:1 21871:2 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:2 22005:5 22013:4 22018:1 22029:1 22041:2 22042:1 22043:1 22060:1 22079:1 22085:2 22093:1 22097:1 22110:2 22111:1 22112:1 22115:1 22133:1 22137:1 22154:1 22161:1 22165:2 22166:3 22181:1 22197:1 22204:1 22215:1 22236:1 22242:1 22264:1 22268:1 22275:1 22276:2 22277:1 22279:6 22281:2 22283:4 22284:2 22288:2 22289:2 22290:1 22295:1 22297:2 22300:1 22304:2 22307:1 22311:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:1 22408:1 22409:1 22418:2 22428:1 22442:1 22445:1 22447:1 22463:1 22486:1 22489:1 22503:1 22517:3 22535:2 22544:1 22546:3 22549:1 22559:2 22594:1 22630:2 22631:1 22639:1 22650:1 22656:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22912:1 22914:2 22942:9 22950:1 22962:7 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23031:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:4 23113:1 23121:1 23123:2 23124:7 23128:1 23129:2 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23194:1 23200:2 23207:1 23229:3 23239:2 23240:1 23249:1 23299:1 23301:1 23315:1 23323:1 23340:1 23363:1 23366:1 23379:1 23387:1 23388:2 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23452:1 23460:1 23487:1 23523:1 23527:1 23537:1 23557:1 23573:1 23608:1 23614:1 23616:2 23618:1 23625:1 23632:1 23638:1 23639:1 23645:1 23661:2 23670:1 23685:1 23688:1 23703:1 23705:2 23735:3 23740:1 23749:1 23753:1 23767:1 23770:4 23796:4 23797:1 23814:1 23833:1 23835:1 23838:1 23847:1 23856:1 23857:1 23862:1 23873:1 23891:1 23903:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:1 24008:4 24035:2 24037:1 24041:1 24045:1 24050:3 24051:1 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:2 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:2 24271:5 24293:2 24351:1 24365:1 24383:1 24386:1 24388:1 24404:1 24411:1 24453:1 24454:1 24459:1 24465:1 24468:1 24478:1 24481:1 24489:1 24493:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:1 24588:4 24602:3 24610:4 24619:1 24634:1 24635:1 24638:1 24653:1 24664:1 24674:1 24685:8 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:1 24748:1 24756:9 24787:3 24797:1 24816:2 24819:1 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25024:1 25025:1 25035:1 25064:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:1 25230:4 25231:1 25251:1 25273:1 25281:1 25325:1 25340:2 25403:2 25433:1 25435:6 25443:1 25462:1 25467:2 25500:1 25509:1 25529:1 25540:1 25541:1 25542:1 25549:21 25550:4 25553:5 25554:1 25555:2 25564:1 25590:6 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:1 25688:1 25696:2 25719:9 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:2 25766:1 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:2 25880:1 25895:1 25897:1 25902:1 25912:3 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:1 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26186:1 26190:1 26192:2 26202:1 26204:2 26211:1 26219:1 26232:6 26241:1 26247:2 26249:1 26255:1 26264:1 26291:1 26294:1 26298:1 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:4 26399:1 26413:1 26414:1 26438:2 26451:1 26470:1 26488:2 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:6 26649:5 26667:1 26679:1 26707:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:3 26727:2 26742:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 35:1 38:2 52:1 62:1 66:1 70:1 82:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:5 223:1 243:1 259:1 268:2 282:1 283:18 294:1 312:1 313:3 315:3 328:1 340:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 549:1 550:4 553:1 561:1 567:3 590:2 594:2 597:1 598:1 599:1 611:2 620:1 628:1 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 816:5 818:3 828:1 829:1 840:1 843:10 846:1 856:1 860:1 868:2 872:7 875:1 883:1 884:1 888:1 893:3 910:1 912:2 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:2 987:1 1010:1 1021:1 1029:1 1036:1 1046:1 1047:1 1059:2 1067:1 1072:1 1075:1 1087:1 1092:1 1096:3 1104:1 1110:1 1128:1 1155:2 1182:1 1183:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1301:1 1303:2 1326:2 1328:1 1331:5 1332:1 1345:1 1352:1 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:2 1471:1 1476:1 1489:1 1491:1 1493:2 1496:3 1502:1 1520:3 1524:1 1547:1 1548:2 1557:3 1561:2 1578:1 1579:1 1599:1 1601:2 1621:1 1652:1 1659:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1732:1 1752:1 1797:9 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:7 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2041:3 2042:1 2051:1 2057:1 2058:1 2060:3 2063:1 2064:2 2065:4 2068:1 2077:2 2096:1 2098:1 2104:2 2105:2 2108:2 2109:7 2112:4 2117:1 2118:2 2119:3 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:6 2154:1 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:2 2261:1 2263:1 2279:1 2298:2 2310:5 2320:1 2326:1 2344:1 2350:1 2360:5 2369:2 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:5 2591:2 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2636:1 2670:2 2674:1 2683:20 2696:4 2702:1 2718:1 2727:1 2733:11 2756:1 2761:4 2765:1 2787:1 2813:1 2817:1 2856:3 2857:1 2870:1 2881:1 2882:1 2888:1 2937:1 2951:1 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3014:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:8 3149:1 3157:1 3171:1 3173:2 3177:1 3214:1 3225:1 3226:1 3230:1 3238:1 3244:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:3 3348:4 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:3 3394:1 3416:1 3426:1 3430:1 3434:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:8 3500:1 3510:1 3520:1 3524:4 3525:1 3530:2 3532:1 3533:10 3534:1 3548:4 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:1 3648:2 3649:1 3665:1 3671:1 3672:1 3676:1 3680:1 3694:3 3701:1 3703:1 3706:2 3709:1 3714:2 3715:2 3724:4 3725:2 3731:1 3745:1 3746:1 3760:1 3770:1 3787:2 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:2 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4034:1 4042:1 4055:5 4056:1 4073:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:1 4220:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:1 4303:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:6 4425:1 4427:2 4448:1 4453:1 4455:1 4458:1 4463:2 4486:2 4503:1 4513:16 4515:2 4518:1 4530:1 4531:2 4538:1 4557:1 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:4 4607:3 4608:4 4609:1 4610:1 4615:3 4616:1 4618:1 4619:1 4622:1 4626:1 4628:2 4630:2 4631:1 4633:1 4639:1 4640:1 4642:4 4643:2 4662:1 4682:1 4715:2 4716:1 4734:1 4751:1 4754:1 4763:2 4765:1 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:2 4926:5 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:1 5091:2 5100:1 5107:1 5115:1 5116:1 5136:3 5147:1 5160:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5332:1 5356:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:2 5443:1 5493:2 5494:1 5518:1 5519:12 5533:4 5542:4 5546:1 5551:3 5552:1 5554:1 5560:1 5577:2 5594:1 5598:1 5630:1 5649:1 5666:1 5669:2 5670:1 5673:1 5685:1 5688:1 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5773:1 5788:3 5790:1 5791:1 5794:1 5801:1 5803:1 5804:2 5805:1 5807:3 5813:4 5815:8 5816:4 5818:1 5857:1 5858:1 5876:1 5928:3 5957:2 5974:1 6030:1 6036:1 6041:1 6058:1 6062:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6177:1 6179:2 6181:1 6191:1 6201:5 6212:2 6218:2 6223:1 6236:1 6248:1 6253:1 6262:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6402:1 6414:1 6448:1 6455:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6671:2 6672:1 6674:1 6684:1 6692:1 6713:3 6717:3 6720:1 6734:2 6741:1 6754:1 6755:1 6760:2 6786:2 6804:1 6833:2 6866:2 6882:1 6883:2 6919:2 6920:9 6922:1 6933:2 6943:2 6944:2 6945:1 6963:3 6964:1 6979:46 6983:1 7003:2 7004:11 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:1 7219:1 7223:1 7238:1 7244:3 7265:1 7270:1 7296:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7438:2 7446:1 7449:2 7455:1 7460:2 7471:1 7473:5 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:1 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:2 7784:5 7787:4 7788:2 7789:1 7791:3 7794:6 7796:2 7797:2 7800:1 7813:2 7833:4 7837:1 7838:3 7863:3 7868:1 7869:2 7872:2 7877:1 7879:3 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8042:1 8050:1 8052:2 8060:2 8090:1 8093:1 8095:1 8096:3 8100:2 8111:2 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8233:1 8249:2 8259:1 8269:1 8275:1 8277:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:2 8365:1 8380:1 8384:1 8391:1 8404:1 8434:1 8437:1 8441:7 8443:1 8449:2 8452:1 8460:18 8463:1 8483:2 8484:1 8493:1 8508:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8649:1 8651:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8753:1 8757:1 8771:1 8772:3 8778:1 8786:1 8790:3 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8890:1 8894:1 8902:1 8931:3 8963:1 8990:1 9004:6 9010:1 9018:1 9023:1 9030:3 9038:1 9040:1 9043:2 9047:1 9050:1 9055:3 9070:1 9071:1 9074:1 9084:1 9085:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9207:1 9215:1 9235:1 9260:1 9262:1 9263:1 9274:2 9328:1 9340:1 9347:1 9382:1 9388:1 9410:2 9430:1 9433:1 9447:1 9461:1 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:2 9610:4 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:2 9652:3 9653:1 9658:1 9660:1 9668:1 9669:1 9682:2 9683:2 9689:1 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:4 9775:2 9778:10 9795:1 9825:1 9826:1 9833:1 9843:1 9866:2 9870:1 9901:1 9902:2 9914:1 9945:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10043:6 10045:1 10059:3 10065:1 10066:1 10068:1 10110:1 10111:1 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10185:1 10187:1 10211:1 10220:1 10222:1 10229:1 10246:4 10251:1 10271:1 10284:1 10293:1 10303:2 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:2 10341:1 10361:4 10368:1 10391:1 10395:9 10396:1 10398:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10484:1 10490:1 10493:1 10498:2 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:2 10554:6 10572:1 10573:5 10574:1 10596:2 10597:1 10604:1 10614:1 10616:2 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:1 10650:1 10655:2 10660:1 10668:1 10678:5 10686:1 10693:6 10701:1 10705:1 10725:1 10728:1 10736:1 10744:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10869:1 10871:1 10902:1 10911:3 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 11059:1 11061:1 11062:2 11063:3 11065:1 11075:1 11082:1 11102:1 11103:1 11115:2 11116:4 11123:2 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11231:1 11241:1 11257:2 11271:1 11279:1 11280:1 11283:2 11296:2 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11368:1 11398:1 11409:1 11411:1 11412:2 11424:1 11425:1 11438:1 11443:1 11454:2 11461:1 11483:1 11522:6 11534:1 11543:1 11544:1 11548:1 11556:1 11561:14 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11631:2 11655:2 11687:1 11696:2 11697:2 11715:1 11723:2 11724:1 11745:1 11765:3 11768:1 11771:1 11772:1 11788:1 11813:1 11824:1 11838:1 11865:1 11868:5 11908:1 11945:6 11949:1 11964:2 11972:1 11978:4 11982:4 11988:1 11995:1 11996:6 12027:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:3 12075:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:2 12127:1 12143:1 12145:2 12154:1 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:2 12208:1 12217:1 12221:1 12226:1 12237:2 12243:4 12261:1 12265:1 12280:3 12284:1 12285:2 12320:1 12331:2 12385:1 12398:1 12418:1 12420:1 12454:3 12457:2 12460:4 12462:1 12465:1 12475:1 12480:1 12485:1 12486:1 12505:3 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:1 12620:2 12624:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:8 12762:1 12796:1 12820:1 12834:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 13001:2 13011:1 13021:1 13032:1 13040:1 13049:1 13057:2 13065:1 13073:1 13075:3 13083:1 13084:1 13086:2 13088:6 13090:1 13092:6 13100:3 13104:1 13106:1 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:4 13240:2 13247:2 13259:2 13278:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13362:2 13367:1 13383:2 13386:1 13391:4 13392:1 13407:2 13410:1 13422:2 13441:1 13442:1 13486:1 13503:1 13512:1 13563:3 13566:1 13568:1 13570:1 13586:1 13609:1 13629:1 13630:1 13637:3 13639:1 13652:1 13655:1 13659:2 13676:1 13679:4 13680:2 13700:2 13708:1 13719:1 13723:1 13735:1 13741:1 13752:6 13757:1 13760:1 13771:1 13823:1 13856:3 13859:1 13864:1 13868:1 13880:1 13881:2 13887:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13959:2 13971:2 14004:1 14015:2 14033:1 14043:7 14055:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:3 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14228:1 14252:2 14255:1 14263:5 14268:2 14273:1 14275:3 14284:1 14290:2 14295:2 14302:1 14303:1 14305:4 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14388:1 14389:1 14418:5 14424:1 14434:1 14441:1 14461:3 14479:1 14492:6 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:3 14557:2 14570:1 14599:1 14616:2 14653:1 14662:1 14669:14 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14768:1 14773:1 14780:1 14782:1 14796:1 14803:1 14809:2 14822:2 14825:1 14829:1 14858:1 14860:2 14897:2 14899:1 14900:1 14942:1 14954:1 14971:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:2 15402:1 15405:4 15410:1 15426:1 15436:1 15441:1 15459:1 15464:1 15468:8 15480:1 15482:1 15487:1 15490:1 15495:2 15508:4 15530:1 15531:2 15544:2 15571:1 15576:1 15578:1 15583:5 15592:1 15607:3 15608:1 15617:1 15636:2 15638:2 15661:3 15663:2 15671:1 15675:1 15688:1 15689:2 15697:2 15705:7 15706:1 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:2 15992:3 15993:2 16025:1 16041:5 16042:3 16073:1 16075:1 16102:1 16104:1 16113:7 16126:1 16153:1 16158:1 16164:2 16167:1 16170:1 16174:1 16187:1 16189:4 16194:1 16195:1 16207:1 16220:1 16221:1 16238:1 16253:1 16254:3 16278:1 16284:2 16301:7 16302:1 16305:3 16311:21 16317:1 16319:1 16320:1 16323:1 16325:1 16344:2 16352:1 16355:1 16372:1 16378:1 16391:1 16393:1 16396:1 16402:1 16404:1 16405:1 16407:1 16418:1 16424:1 16427:1 16436:4 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16575:1 16583:1 16592:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:1 16700:2 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:2 16870:4 16887:1 16900:1 16909:1 16927:2 16928:1 16949:2 16963:4 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17042:1 17045:1 17053:3 17057:1 17065:1 17069:1602 17082:1 17086:1 17118:2 17119:1 17126:3 17128:1 17150:1 17187:2 17193:2 17211:2 17234:1 17248:1 17254:2 17260:6 17266:1 17272:5 17274:2 17276:4 17304:1 17346:6 17350:1 17352:1 17359:1 17381:18 17395:1 17398:7 17419:1 17449:1 17455:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:2 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17639:2 17641:3 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17738:1 17747:2 17769:1 17772:9 17791:1 17792:1 17807:6 17808:1 17819:1 17826:1 17833:1 17838:1 17879:1 17885:2 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17984:1 17985:3 17986:1 18001:1 18007:1 18011:1 18033:1 18038:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:3 18202:3 18206:1 18212:4 18221:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:2 18330:1 18349:1 18355:1 18356:4 18367:1 18382:2 18395:1 18400:1 18408:1 18409:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:2 18470:1 18476:1 18481:1 18483:1 18484:1 18510:1 18513:2 18526:1 18545:5 18568:1 18589:6 18590:2 18594:2 18603:1 18606:1 18611:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:5 18815:2 18818:1 18819:3 18826:1 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18959:1 18968:1 18972:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:2 19032:1 19037:1 19039:1 19042:2 19050:1 19063:4 19088:1 19098:2 19102:2 19120:1 19143:1 19150:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19296:1 19316:1 19321:1 19326:2 19365:1 19381:1 19386:1 19391:1 19396:1 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19495:1 19557:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:1 19658:1 19659:2 19667:1 19675:2 19676:3 19680:1 19683:1 19693:1 19701:1 19721:1 19731:1 19735:4 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:8 19817:1 19818:1 19821:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:7 19920:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20061:1 20063:3 20080:2 20085:1 20097:1 20112:1 20127:2 20154:1 20158:1 20167:1 20180:1 20184:1 20211:3 20222:3 20226:2 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:1 20295:1 20305:3 20339:1 20343:1 20349:1 20355:1 20381:4 20383:5 20385:3 20388:1 20396:2 20400:1 20423:1 20433:1 20434:2 20442:1 20455:1 20457:1 20464:3 20466:2 20467:3 20473:1 20483:2 20494:1 20498:1 20499:2 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20552:3 20564:1 20567:2 20574:1 20598:3 20600:1 20617:2 20624:1 20625:21 20631:2 20632:1 20634:4 20637:2 20638:1 20640:1 20644:1 20645:1 20663:3 20666:1 20672:2 20676:1 20679:2 20692:1 20693:2 20697:1 20706:1 20708:1 20726:1 20736:1 20738:1 20771:2 20776:1 20779:4 20786:1 20804:2 20807:1 20820:1 20825:1 20853:1 20854:1 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20900:2 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21055:1 21064:1 21070:1 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21128:2 21131:1 21136:1 21144:3 21145:1 21146:1 21155:3 21160:2 21177:2 21180:1 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:2 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:10 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:3 21748:1 21751:1 21764:1 21778:1 21780:1 21789:2 21841:1 21844:1 21855:2 21857:2 21858:1 21869:1 21871:2 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:2 22005:5 22013:4 22018:1 22029:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22110:2 22111:1 22112:1 22115:1 22133:1 22137:1 22154:1 22161:1 22165:2 22166:3 22173:1 22181:1 22197:1 22204:1 22215:1 22236:1 22242:1 22264:1 22268:1 22275:1 22276:2 22277:1 22279:6 22281:2 22283:4 22284:2 22287:1 22288:2 22289:2 22290:1 22295:2 22297:2 22300:1 22304:2 22307:1 22311:1 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:1 22408:1 22409:1 22418:2 22428:1 22442:1 22445:1 22447:1 22463:1 22486:1 22489:1 22503:1 22517:3 22535:2 22544:1 22546:4 22549:1 22559:2 22594:1 22595:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22912:1 22914:2 22942:9 22950:1 22962:7 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23031:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:4 23113:1 23121:1 23123:2 23124:7 23128:1 23129:2 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23194:1 23200:4 23207:1 23229:3 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23340:1 23363:1 23366:1 23379:1 23387:1 23388:2 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23452:1 23460:1 23487:1 23523:1 23527:1 23537:1 23557:1 23573:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:1 23661:2 23670:1 23685:1 23688:1 23703:1 23705:2 23735:3 23740:1 23749:1 23753:2 23767:1 23770:4 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:1 23856:1 23857:1 23862:1 23873:1 23891:2 23903:1 23908:4 23910:1 23937:3 23952:1 23953:1 23972:2 24008:4 24035:2 24036:1 24037:1 24041:1 24045:1 24050:3 24051:1 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:2 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:2 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24453:1 24454:1 24459:1 24465:1 24468:1 24478:1 24481:1 24489:1 24493:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:2 24588:4 24602:3 24610:5 24619:1 24634:1 24635:1 24638:1 24653:1 24664:1 24674:1 24685:8 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:1 24748:1 24756:10 24787:3 24797:1 24815:1 24816:2 24819:1 24838:1 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25024:1 25025:1 25035:2 25064:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:1 25230:4 25231:1 25251:1 25273:1 25281:1 25325:1 25340:2 25403:2 25433:1 25435:6 25443:1 25462:1 25467:3 25500:2 25509:1 25529:1 25540:1 25541:1 25542:1 25549:23 25550:4 25553:5 25554:1 25555:2 25564:1 25590:7 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:1 25688:1 25696:2 25719:9 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25808:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:2 25880:1 25895:1 25897:1 25902:1 25912:3 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:2 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:2 26211:1 26219:1 26232:6 26241:1 26247:2 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26399:1 26413:1 26414:1 26438:2 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:6 26649:5 26650:1 26667:1 26679:1 26707:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:3 26727:2 26742:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 35:1 38:2 52:1 62:1 66:1 70:1 82:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:5 223:1 243:1 259:1 268:2 282:1 283:19 294:2 312:1 313:3 315:4 323:1 328:1 340:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 549:1 550:4 553:1 561:1 567:3 590:2 594:2 597:1 598:1 599:1 611:2 620:1 628:1 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 816:5 818:3 828:1 829:1 840:1 843:11 846:1 856:1 860:1 868:3 872:7 875:1 883:1 884:1 888:1 893:3 910:1 912:2 930:1 940:3 956:1 962:2 964:1 970:1 982:1 983:2 987:1 1010:1 1021:1 1029:1 1036:1 1046:1 1047:1 1050:1 1059:2 1067:2 1072:1 1075:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1155:2 1182:1 1183:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1281:1 1301:1 1303:2 1326:2 1328:1 1331:5 1332:1 1345:1 1352:1 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:2 1471:1 1476:1 1489:1 1491:1 1493:2 1496:3 1502:1 1520:3 1524:1 1547:1 1548:2 1557:3 1561:2 1578:1 1579:1 1599:1 1601:2 1621:1 1652:1 1659:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1732:1 1752:1 1797:9 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:7 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2041:3 2042:1 2047:1 2051:1 2057:1 2058:1 2060:3 2063:1 2064:2 2065:4 2068:1 2077:2 2096:1 2098:1 2104:2 2105:2 2108:2 2109:7 2112:4 2117:1 2118:2 2119:3 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:6 2154:1 2155:1 2165:1 2185:1 2195:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:2 2261:1 2263:1 2279:2 2298:2 2310:5 2320:1 2326:1 2344:1 2350:1 2360:5 2369:2 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:2 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:5 2591:2 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2636:1 2653:1 2670:2 2674:1 2683:20 2696:4 2702:1 2718:1 2727:1 2733:11 2756:1 2761:4 2765:1 2766:1 2787:1 2813:1 2817:1 2856:3 2857:1 2870:1 2881:1 2882:1 2888:1 2937:1 2951:1 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3014:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:8 3149:1 3157:1 3171:1 3173:2 3177:1 3214:1 3225:1 3226:1 3230:1 3238:1 3244:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:3 3348:4 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:3 3394:1 3416:1 3426:1 3430:1 3434:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:9 3500:1 3510:1 3520:1 3524:4 3525:1 3530:2 3532:1 3533:11 3534:1 3548:4 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:1 3648:2 3649:1 3665:1 3671:1 3672:1 3676:1 3680:1 3694:3 3701:1 3703:1 3706:2 3709:1 3714:2 3715:2 3724:4 3725:2 3731:1 3745:1 3746:1 3760:1 3770:1 3787:2 3799:1 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:2 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4034:1 4042:1 4055:5 4056:1 4073:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:1 4220:1 4256:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:1 4303:1 4331:1 4334:7 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:6 4425:1 4427:2 4448:1 4453:1 4455:1 4458:1 4463:2 4486:2 4503:1 4513:18 4515:2 4518:1 4530:1 4531:2 4538:1 4557:1 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:6 4607:3 4608:4 4609:1 4610:1 4615:3 4616:1 4618:1 4619:1 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:2 4662:1 4682:1 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4765:1 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:2 4926:5 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:1 5115:1 5116:1 5136:3 5147:1 5160:1 5169:2 5182:2 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5332:1 5356:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:2 5443:1 5493:2 5494:1 5518:1 5519:12 5533:4 5542:4 5546:1 5551:3 5552:1 5554:2 5560:1 5577:2 5594:1 5598:1 5630:1 5649:1 5666:1 5669:2 5670:1 5673:1 5685:1 5688:2 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5773:1 5788:3 5790:1 5791:1 5794:1 5801:1 5803:1 5804:2 5805:1 5807:4 5813:4 5815:9 5816:5 5818:1 5857:1 5858:1 5876:1 5928:3 5957:2 5974:1 6030:1 6036:1 6041:1 6058:1 6062:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6177:1 6179:2 6181:1 6191:1 6201:5 6212:2 6218:2 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6402:1 6414:1 6448:1 6455:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6707:1 6713:3 6717:3 6720:1 6723:1 6734:2 6741:1 6754:1 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6866:2 6880:1 6882:1 6883:2 6919:2 6920:9 6922:2 6933:2 6943:2 6944:2 6945:1 6963:4 6964:1 6979:46 6983:1 7003:2 7004:11 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:2 7219:1 7223:1 7238:1 7244:4 7265:1 7270:1 7283:1 7296:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7438:2 7446:1 7449:2 7455:1 7460:2 7471:1 7473:5 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:6 7796:2 7797:2 7800:1 7813:2 7833:4 7837:1 7838:3 7863:3 7868:1 7869:2 7872:2 7877:1 7879:3 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8042:1 8050:1 8052:2 8060:2 8090:1 8093:1 8095:1 8096:3 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8233:1 8249:2 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:2 8365:1 8380:1 8384:1 8391:1 8404:1 8434:1 8437:1 8441:7 8443:1 8449:2 8452:1 8460:19 8463:1 8464:1 8483:2 8484:1 8493:1 8508:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8753:1 8757:1 8771:1 8772:4 8778:1 8786:1 8790:3 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8890:1 8894:1 8901:1 8902:1 8931:3 8963:1 8990:1 9004:6 9010:1 9018:1 9023:1 9030:3 9038:2 9040:1 9043:2 9047:1 9050:1 9055:3 9070:1 9071:1 9074:1 9084:2 9085:1 9086:1 9094:1 9096:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9207:1 9215:1 9235:1 9260:1 9262:1 9263:1 9274:2 9328:1 9340:1 9347:1 9382:1 9388:1 9410:2 9430:1 9433:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9592:1 9594:1 9605:2 9607:2 9610:4 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:2 9652:3 9653:1 9658:1 9660:1 9668:1 9669:1 9682:2 9683:2 9689:1 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:4 9775:2 9778:10 9795:1 9825:1 9826:1 9831:1 9833:1 9843:1 9866:2 9870:1 9901:1 9902:2 9914:1 9922:1 9945:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:4 10065:1 10066:1 10068:1 10110:1 10111:1 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10185:1 10187:1 10211:1 10220:1 10222:1 10229:1 10246:4 10251:1 10271:1 10284:1 10293:1 10303:2 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:2 10341:1 10361:4 10368:1 10391:1 10395:9 10396:1 10398:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:1 10483:1 10484:1 10490:1 10493:1 10498:2 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:2 10554:6 10572:1 10573:5 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:2 10650:1 10655:2 10660:2 10668:1 10678:5 10686:1 10693:6 10701:1 10705:1 10725:1 10728:1 10736:1 10744:1 10761:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:3 10929:1 10953:3 10968:1 10978:1 10982:1 10985:1 10998:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:1 11082:1 11102:1 11103:1 11115:2 11116:4 11123:2 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11231:1 11241:1 11257:2 11271:1 11279:1 11280:1 11283:2 11296:2 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11368:1 11398:1 11409:1 11411:1 11412:2 11414:1 11424:1 11425:1 11438:1 11443:1 11454:2 11461:1 11483:1 11510:1 11522:6 11534:1 11543:1 11544:1 11548:1 11556:1 11561:14 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11631:2 11655:2 11687:1 11696:2 11697:2 11715:1 11723:2 11724:1 11745:1 11765:3 11768:1 11771:1 11772:1 11788:1 11813:1 11824:1 11838:1 11865:1 11868:5 11908:1 11945:6 11949:1 11964:2 11972:1 11978:4 11982:4 11988:1 11995:1 11996:6 12027:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:3 12075:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:2 12127:1 12143:1 12145:2 12154:1 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:2 12208:1 12217:1 12221:1 12226:1 12237:2 12243:4 12261:1 12265:1 12280:3 12284:1 12285:2 12320:1 12331:2 12385:1 12398:1 12418:1 12420:1 12454:3 12457:2 12460:4 12462:2 12465:1 12475:1 12480:1 12485:1 12486:1 12505:3 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:1 12620:2 12624:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:8 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 13001:2 13011:1 13021:1 13032:1 13040:1 13049:1 13057:2 13065:1 13073:1 13075:3 13083:1 13084:1 13086:2 13088:6 13090:1 13092:6 13100:3 13104:1 13106:1 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:4 13240:2 13247:2 13259:2 13278:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13360:1 13362:2 13367:1 13383:2 13386:1 13391:4 13392:1 13407:2 13410:1 13422:2 13441:1 13442:1 13486:1 13503:1 13512:1 13520:1 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:4 13639:1 13652:1 13655:1 13659:2 13676:1 13679:4 13680:2 13700:2 13708:1 13719:1 13723:1 13734:1 13735:1 13741:1 13752:6 13757:1 13760:1 13771:1 13823:1 13856:3 13859:1 13864:1 13868:1 13880:1 13881:2 13887:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13959:2 13971:2 14004:1 14015:2 14033:1 14043:7 14055:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:4 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14228:1 14252:2 14255:1 14263:5 14268:2 14273:1 14275:3 14284:1 14290:2 14295:2 14302:1 14303:1 14305:4 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14381:1 14388:1 14389:1 14418:6 14424:1 14434:1 14441:1 14452:1 14461:3 14479:1 14492:6 14493:3 14496:1 14533:1 14540:3 14546:1 14548:1 14556:3 14557:2 14570:1 14599:1 14616:2 14653:1 14662:1 14669:15 14670:1 14675:1 14687:2 14695:1 14730:2 14747:3 14750:1 14755:1 14768:1 14773:1 14780:1 14782:1 14796:1 14803:1 14809:2 14822:2 14825:1 14829:1 14858:1 14860:2 14897:2 14899:1 14900:1 14918:1 14942:1 14954:1 14971:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:2 15402:1 15405:4 15410:1 15426:1 15436:1 15441:1 15459:1 15464:1 15468:8 15480:1 15482:1 15487:1 15490:1 15495:2 15508:4 15530:1 15531:2 15544:2 15571:1 15576:1 15578:1 15583:5 15592:1 15607:3 15608:1 15617:1 15621:1 15636:2 15638:2 15661:3 15663:2 15671:1 15675:1 15688:1 15689:2 15697:2 15705:7 15706:2 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:2 15992:3 15993:2 16025:1 16028:1 16041:5 16042:3 16073:1 16075:2 16102:1 16104:1 16113:7 16126:1 16153:1 16158:1 16164:2 16167:1 16170:1 16174:1 16187:1 16189:4 16194:1 16195:1 16207:1 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16301:7 16302:1 16305:3 16311:22 16317:1 16319:1 16320:1 16323:1 16325:1 16344:2 16352:1 16355:1 16372:1 16378:1 16391:1 16393:1 16396:1 16402:1 16404:1 16405:1 16407:1 16418:1 16424:1 16427:1 16436:4 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16575:1 16583:1 16592:1 16606:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:1 16700:2 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:2 16870:4 16876:1 16887:1 16900:1 16909:1 16927:2 16928:1 16949:2 16963:4 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17042:1 17045:1 17053:3 17057:1 17065:1 17069:1683 17082:1 17086:1 17118:2 17119:1 17126:3 17128:1 17150:1 17187:2 17193:2 17211:2 17234:1 17248:1 17254:2 17260:6 17266:1 17271:1 17272:5 17274:2 17276:4 17304:1 17346:6 17350:1 17352:1 17359:1 17381:19 17395:1 17398:7 17419:1 17449:1 17455:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:2 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17639:2 17641:3 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17738:2 17747:2 17769:1 17772:9 17791:1 17792:1 17807:6 17808:1 17819:1 17826:1 17833:1 17838:1 17879:1 17885:2 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 18001:1 18007:1 18011:1 18033:1 18038:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:3 18202:3 18206:1 18212:4 18221:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:2 18330:1 18349:1 18355:1 18356:4 18367:1 18368:1 18382:2 18395:1 18400:1 18408:1 18409:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:2 18470:1 18476:1 18481:1 18483:1 18484:1 18510:1 18513:2 18526:1 18545:5 18568:1 18589:6 18590:2 18594:2 18603:1 18606:1 18611:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:6 18815:2 18817:1 18818:1 18819:3 18826:1 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18959:1 18968:1 18972:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:2 19032:1 19037:1 19039:1 19042:2 19050:1 19063:4 19088:1 19098:2 19101:1 19102:2 19120:1 19143:1 19150:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19391:1 19396:1 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19495:1 19557:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:1 19658:1 19659:2 19667:1 19675:2 19676:3 19680:1 19683:1 19692:1 19693:1 19694:1 19701:1 19721:1 19726:1 19731:1 19735:4 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:8 19805:1 19817:1 19818:1 19821:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20061:1 20063:3 20080:2 20085:1 20097:1 20112:1 20127:2 20154:1 20158:1 20167:1 20180:1 20184:1 20211:3 20222:3 20226:2 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:2 20295:1 20305:3 20339:1 20343:1 20349:1 20355:1 20381:4 20383:5 20385:3 20388:1 20396:2 20400:1 20423:1 20433:1 20434:2 20442:1 20455:1 20457:1 20464:3 20466:2 20467:3 20473:1 20483:2 20494:1 20498:1 20499:2 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20552:3 20564:1 20567:2 20574:1 20598:3 20600:1 20617:2 20624:1 20625:22 20631:2 20632:1 20634:4 20637:2 20638:1 20640:1 20642:1 20644:1 20645:1 20663:3 20666:1 20672:2 20676:1 20679:2 20692:1 20693:2 20697:1 20706:1 20708:1 20726:1 20736:1 20738:1 20771:2 20776:1 20779:4 20786:1 20804:2 20807:1 20820:1 20825:1 20853:1 20854:1 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20900:2 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21040:1 21055:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21128:2 21131:1 21136:1 21144:3 21145:1 21146:1 21155:3 21160:2 21177:2 21180:1 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:2 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:1 21455:1 21461:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:11 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:4 21748:1 21751:1 21764:1 21778:1 21780:1 21789:2 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:2 22005:5 22013:4 22018:1 22029:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22110:2 22111:1 22112:1 22115:1 22133:1 22137:1 22154:1 22161:1 22165:2 22166:3 22173:1 22181:1 22197:1 22204:1 22215:1 22231:1 22236:1 22240:1 22242:1 22264:1 22268:1 22275:1 22276:2 22277:1 22279:6 22281:2 22283:4 22284:2 22287:1 22288:2 22289:2 22290:1 22295:2 22297:2 22300:1 22304:2 22307:1 22311:2 22320:2 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:1 22408:1 22409:1 22418:2 22428:1 22442:1 22445:1 22447:1 22463:1 22486:1 22489:1 22503:1 22517:3 22535:2 22544:1 22546:4 22549:1 22559:2 22594:1 22595:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22912:1 22914:2 22942:9 22950:1 22962:7 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23030:1 23031:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:4 23113:1 23121:1 23123:2 23124:7 23128:1 23129:2 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23194:1 23200:4 23207:1 23229:3 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23340:1 23363:1 23366:1 23379:1 23387:1 23388:2 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23452:1 23460:1 23487:1 23523:1 23527:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:1 23661:2 23670:1 23685:1 23688:1 23703:1 23705:2 23735:3 23740:1 23749:1 23753:2 23767:1 23770:4 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:1 23856:1 23857:1 23862:1 23873:2 23891:2 23903:1 23908:4 23910:1 23937:3 23952:1 23953:1 23956:1 23972:2 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:1 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24130:2 24156:2 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:2 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24453:1 24454:1 24459:1 24465:1 24468:1 24478:1 24481:1 24489:1 24493:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:2 24588:4 24602:3 24610:5 24619:1 24634:1 24635:1 24638:1 24653:1 24664:1 24674:1 24685:8 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:1 24748:1 24756:11 24787:3 24797:1 24815:1 24816:2 24819:1 24838:2 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25024:1 25025:1 25035:2 25064:1 25065:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:1 25230:4 25231:1 25251:1 25273:1 25281:1 25325:1 25340:2 25382:1 25403:2 25433:1 25435:6 25443:1 25462:1 25467:3 25500:2 25509:1 25529:1 25540:1 25541:1 25542:1 25549:24 25550:4 25553:5 25554:1 25555:3 25564:1 25590:7 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:2 25688:1 25696:2 25719:9 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25808:1 25819:1 25821:1 25824:1 25826:1 25856:1 25859:1 25878:2 25880:1 25895:1 25897:1 25902:1 25912:3 25946:1 25964:1 25965:2 25966:1 25968:1 26006:1 26011:1 26014:1 26019:2 26023:1 26032:1 26035:1 26044:1 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:2 26211:1 26219:1 26232:6 26241:1 26245:1 26247:3 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26399:1 26413:1 26414:1 26438:2 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:6 26649:5 26650:1 26667:1 26679:1 26707:1 26714:7 26715:2 26716:1 26720:1 26722:1 26726:3 26727:2 26742:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 22:1 35:1 38:2 52:1 62:1 66:1 70:1 82:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:7 223:1 243:1 259:1 268:2 282:1 283:20 294:2 312:1 313:3 315:4 323:1 328:1 340:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 549:1 550:4 553:1 561:1 567:3 590:3 594:2 597:1 598:1 599:1 611:2 620:1 628:2 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 729:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:6 818:3 828:1 829:1 840:1 843:11 846:1 856:1 860:1 868:3 872:7 875:1 881:1 883:1 884:1 888:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:2 964:1 970:2 982:1 983:2 987:1 1010:1 1021:1 1029:1 1036:1 1046:1 1047:2 1050:1 1059:2 1067:2 1072:1 1075:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1155:2 1182:1 1183:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1279:1 1281:2 1301:1 1303:2 1326:2 1328:1 1331:5 1332:1 1345:1 1352:2 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:2 1471:1 1476:1 1489:1 1491:1 1493:2 1496:3 1502:1 1520:4 1524:1 1547:1 1548:2 1557:3 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1652:2 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1730:1 1732:1 1752:1 1797:10 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:7 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:3 2042:1 2047:1 2051:1 2057:1 2058:1 2060:3 2063:1 2064:2 2065:4 2068:1 2077:2 2079:1 2096:1 2098:1 2104:2 2105:2 2108:2 2109:7 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:3 2261:1 2263:1 2269:1 2279:2 2298:3 2310:6 2320:1 2326:1 2344:1 2350:1 2360:5 2369:3 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:5 2591:2 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2635:1 2636:1 2653:1 2670:3 2674:1 2683:21 2696:4 2702:1 2718:1 2727:1 2733:11 2756:1 2761:4 2765:1 2766:1 2787:1 2813:1 2817:1 2856:3 2857:1 2870:1 2876:1 2881:1 2882:1 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3014:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:8 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:2 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:3 3348:4 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:4 3394:1 3398:1 3416:1 3426:1 3430:1 3434:1 3435:3 3439:1 3442:2 3445:2 3480:1 3483:1 3486:4 3489:1 3490:2 3491:10 3500:1 3510:1 3520:1 3524:4 3525:1 3530:2 3532:1 3533:11 3534:1 3537:1 3545:1 3548:5 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:2 3648:2 3649:1 3665:1 3671:1 3672:1 3676:1 3680:1 3694:3 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:2 3731:1 3745:1 3746:1 3760:1 3770:1 3787:2 3799:1 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:2 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4017:1 4034:1 4042:1 4055:5 4056:1 4073:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:1 4216:1 4220:1 4256:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:1 4303:1 4331:1 4334:8 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:6 4425:1 4427:2 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:19 4515:2 4518:1 4530:1 4531:2 4538:1 4546:1 4557:1 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:6 4607:3 4608:4 4609:1 4610:1 4615:3 4616:1 4618:1 4619:2 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:2 4662:1 4682:1 4711:1 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4765:1 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:2 4926:6 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:1 5115:1 5116:1 5136:3 5147:1 5160:1 5169:2 5182:3 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5317:1 5332:1 5356:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:2 5443:1 5493:2 5494:1 5518:1 5519:12 5533:4 5542:4 5546:1 5547:1 5551:3 5552:1 5554:2 5560:1 5577:3 5594:1 5598:1 5630:1 5649:1 5666:1 5669:2 5670:1 5673:1 5685:1 5688:2 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:1 5788:3 5790:1 5791:1 5794:1 5799:1 5801:1 5803:1 5804:2 5805:1 5807:4 5813:4 5815:9 5816:5 5818:1 5857:1 5858:1 5876:1 5928:3 5957:2 5974:2 6030:1 6036:1 6041:1 6058:1 6062:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6177:1 6179:2 6180:1 6181:1 6191:1 6201:7 6212:2 6218:2 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6414:1 6448:1 6455:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6707:1 6713:3 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:1 6866:2 6880:1 6882:1 6883:2 6919:2 6920:11 6922:3 6933:2 6943:2 6944:2 6945:1 6963:4 6964:1 6979:49 6983:1 7003:3 7004:11 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:3 7219:1 7223:1 7238:1 7244:4 7265:1 7270:1 7283:1 7296:1 7304:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7432:1 7438:2 7446:1 7449:2 7455:1 7460:2 7471:1 7473:5 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:6 7796:2 7797:2 7800:1 7812:1 7813:2 7833:4 7837:1 7838:3 7863:3 7868:1 7869:2 7872:2 7877:1 7879:4 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8042:1 8050:1 8052:2 8060:3 8090:1 8093:1 8095:1 8096:3 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8233:1 8249:3 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:3 8365:1 8380:1 8384:2 8391:1 8404:1 8434:1 8437:1 8441:7 8443:1 8444:1 8449:2 8452:1 8460:20 8463:1 8464:1 8483:2 8484:1 8493:1 8508:1 8531:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8753:1 8757:1 8771:1 8772:5 8778:1 8786:1 8790:3 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8963:1 8990:1 9004:7 9010:1 9018:1 9023:1 9030:3 9037:1 9038:2 9040:1 9043:2 9047:1 9050:1 9055:3 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9207:1 9215:1 9235:1 9260:1 9262:1 9263:1 9274:2 9328:1 9339:1 9340:1 9347:1 9382:1 9388:1 9410:2 9430:1 9433:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9589:1 9592:1 9594:1 9603:1 9605:2 9607:2 9610:4 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:2 9652:3 9653:1 9658:1 9660:1 9668:2 9669:1 9682:2 9683:2 9689:1 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:5 9770:2 9775:3 9778:10 9795:1 9825:1 9826:1 9831:1 9833:1 9843:1 9866:2 9870:1 9901:1 9902:2 9914:1 9922:1 9945:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:4 10065:1 10066:1 10068:1 10110:1 10111:1 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10185:1 10187:1 10211:1 10220:1 10222:1 10229:1 10246:4 10251:1 10271:1 10284:1 10293:1 10303:2 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:2 10341:1 10361:4 10368:1 10391:1 10395:9 10396:1 10398:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:1 10483:1 10484:1 10490:1 10493:1 10498:2 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:6 10572:2 10573:5 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:3 10650:1 10655:2 10660:3 10668:1 10678:5 10686:1 10693:6 10701:1 10705:1 10725:1 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:3 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10998:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:1 11082:1 11102:1 11103:1 11115:3 11116:4 11123:2 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11257:2 11271:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:1 11368:1 11398:1 11409:1 11411:1 11412:2 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:6 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:14 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11631:2 11655:2 11687:1 11696:2 11697:2 11715:1 11723:2 11724:1 11745:1 11765:3 11768:1 11771:1 11772:1 11788:1 11813:1 11824:1 11838:1 11865:1 11868:5 11908:1 11945:6 11949:1 11964:2 11972:1 11978:5 11982:4 11988:1 11995:1 11996:6 12027:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:3 12075:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:3 12127:1 12143:1 12145:2 12150:1 12154:1 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:2 12208:1 12217:1 12221:1 12226:1 12237:2 12243:5 12261:1 12262:1 12265:1 12280:3 12284:1 12285:3 12304:1 12320:1 12331:2 12385:1 12398:1 12418:1 12420:1 12429:1 12454:3 12457:2 12460:4 12462:2 12465:1 12475:1 12480:1 12485:1 12486:1 12505:3 12521:1 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:2 12624:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:9 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 12972:1 13001:2 13011:1 13021:1 13032:1 13040:1 13049:1 13057:2 13065:2 13073:1 13075:3 13083:1 13084:1 13086:2 13088:7 13090:1 13092:6 13100:3 13104:1 13106:1 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:5 13240:2 13247:2 13259:2 13278:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13360:1 13362:2 13367:1 13371:1 13383:2 13386:1 13391:4 13392:1 13407:2 13410:1 13422:2 13441:1 13442:1 13486:1 13503:1 13512:1 13515:1 13520:1 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:5 13639:1 13652:1 13655:1 13659:2 13676:1 13679:4 13680:2 13700:2 13708:1 13719:1 13723:1 13734:1 13735:1 13741:1 13752:6 13757:1 13760:1 13771:1 13789:1 13823:1 13856:3 13859:1 13864:1 13868:1 13880:1 13881:2 13887:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13959:2 13971:2 14004:1 14015:2 14033:1 14043:7 14055:1 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:4 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14228:1 14252:2 14255:1 14263:6 14268:2 14273:1 14275:3 14284:1 14290:2 14295:2 14302:1 14303:1 14305:5 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14381:1 14388:1 14389:1 14418:7 14424:1 14434:1 14441:1 14446:1 14452:1 14461:3 14479:1 14492:6 14493:3 14496:1 14500:1 14533:1 14540:3 14546:1 14548:1 14553:1 14556:3 14557:2 14570:1 14599:1 14616:2 14653:1 14662:1 14669:15 14670:1 14675:1 14687:4 14692:1 14695:1 14696:1 14730:2 14747:3 14750:1 14755:1 14768:1 14773:1 14780:1 14782:1 14796:1 14803:1 14809:2 14822:2 14825:1 14829:1 14858:1 14860:2 14897:3 14899:1 14900:1 14918:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:2 15402:1 15405:4 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:1 15487:1 15490:1 15495:2 15508:4 15519:1 15529:1 15530:1 15531:2 15544:2 15546:1 15571:1 15576:1 15578:1 15583:5 15592:1 15605:1 15607:4 15608:1 15617:1 15621:1 15636:2 15638:2 15661:3 15663:2 15671:1 15675:1 15688:1 15689:2 15697:2 15705:7 15706:2 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:2 15865:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:3 15992:3 15993:2 15994:1 16025:1 16028:1 16041:5 16042:3 16073:1 16075:2 16102:1 16104:1 16113:7 16126:1 16153:1 16158:1 16164:2 16167:1 16170:1 16174:1 16176:1 16187:1 16189:4 16194:1 16195:1 16207:1 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16299:1 16301:7 16302:1 16305:4 16311:23 16317:1 16319:1 16320:1 16323:1 16325:1 16344:2 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:1 16402:1 16404:1 16405:1 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16575:1 16583:1 16592:1 16606:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:1 16700:2 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:2 16870:4 16876:1 16887:1 16900:1 16909:1 16926:1 16927:2 16928:1 16930:1 16949:2 16963:4 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17042:1 17045:1 17053:3 17057:1 17060:1 17065:1 17069:1762 17082:1 17086:1 17118:2 17119:1 17126:3 17128:1 17150:1 17187:2 17193:2 17211:2 17227:1 17234:1 17248:1 17254:2 17260:6 17266:1 17271:1 17272:5 17274:2 17276:4 17304:1 17346:6 17350:2 17352:1 17357:1 17359:1 17381:20 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:2 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:1 17669:1 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17738:2 17747:2 17749:1 17769:1 17772:10 17791:1 17792:1 17807:6 17808:1 17819:1 17821:1 17826:1 17833:1 17838:1 17879:1 17885:2 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:3 18202:4 18206:1 18212:4 18221:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:3 18330:1 18349:1 18355:1 18356:4 18367:1 18368:1 18382:2 18395:1 18400:1 18406:1 18408:1 18409:2 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:2 18470:1 18476:1 18481:2 18483:1 18484:1 18510:2 18513:2 18526:1 18545:5 18568:1 18589:6 18590:2 18594:2 18603:1 18606:1 18611:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:6 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18959:1 18968:1 18972:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:2 19032:1 19037:1 19039:1 19042:2 19050:1 19063:5 19088:1 19098:2 19101:1 19102:2 19120:1 19143:2 19150:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19391:1 19396:1 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19495:1 19557:1 19565:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:2 19658:1 19659:2 19667:1 19675:2 19676:3 19678:1 19680:1 19683:1 19692:1 19693:1 19694:1 19701:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20061:2 20063:3 20064:1 20080:2 20085:1 20097:1 20112:1 20127:2 20154:1 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:3 20226:2 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:2 20295:1 20305:3 20339:1 20343:1 20349:1 20354:1 20355:1 20381:4 20383:5 20385:3 20388:1 20396:2 20400:1 20423:1 20433:1 20434:4 20442:1 20455:2 20457:1 20464:3 20466:2 20467:3 20473:1 20483:2 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20552:3 20564:1 20567:2 20574:1 20598:3 20600:1 20617:2 20624:1 20625:23 20631:2 20632:1 20634:4 20637:2 20638:1 20640:2 20642:1 20644:1 20645:1 20663:3 20666:1 20672:2 20676:1 20679:2 20692:2 20693:2 20697:1 20706:1 20708:1 20726:1 20736:1 20738:1 20771:2 20776:1 20779:4 20786:1 20804:2 20807:1 20820:1 20825:1 20853:1 20854:1 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20900:2 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21128:2 21131:1 21136:1 21144:3 21145:1 21146:1 21155:3 21160:2 21177:2 21180:1 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:2 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:2 21455:1 21461:1 21466:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:11 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:5 21748:1 21751:1 21764:1 21778:1 21780:1 21789:2 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:2 22005:5 22013:4 22018:1 22029:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22110:3 22111:1 22112:1 22115:1 22133:1 22137:1 22154:1 22155:1 22161:1 22165:2 22166:3 22173:1 22181:1 22197:1 22204:1 22215:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:1 22275:1 22276:2 22277:1 22279:6 22281:2 22283:4 22284:2 22287:1 22288:2 22289:2 22290:1 22295:2 22297:3 22300:1 22304:2 22307:1 22311:2 22320:3 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:1 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:1 22463:1 22486:1 22489:1 22503:1 22517:3 22535:2 22544:1 22546:4 22549:1 22559:2 22594:1 22595:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22912:2 22914:3 22942:10 22950:1 22962:7 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23030:1 23031:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:5 23113:1 23121:2 23123:2 23124:7 23128:2 23129:4 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23194:1 23200:4 23207:1 23229:3 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23340:1 23363:1 23366:1 23379:1 23387:1 23388:2 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23452:1 23460:1 23487:1 23510:1 23523:1 23527:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23670:1 23685:1 23688:1 23703:1 23705:2 23735:3 23740:1 23749:1 23753:2 23767:1 23770:5 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:1 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:5 23910:1 23937:3 23952:1 23953:1 23956:1 23972:2 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:1 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24116:1 24130:2 24156:2 24158:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:2 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24453:1 24454:1 24459:1 24465:1 24468:1 24478:1 24481:1 24489:1 24493:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:2 24588:4 24602:3 24610:5 24619:1 24634:1 24635:1 24638:1 24653:1 24664:1 24674:1 24685:8 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:1 24748:1 24756:11 24787:3 24797:1 24815:1 24816:2 24819:1 24838:2 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:2 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25024:1 25025:1 25026:1 25035:2 25064:1 25065:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:4 25231:1 25251:1 25273:1 25281:1 25325:1 25340:2 25364:1 25382:1 25403:2 25433:1 25435:6 25443:1 25462:1 25467:3 25500:2 25509:1 25525:1 25528:1 25529:1 25540:1 25541:1 25542:1 25549:24 25550:4 25553:5 25554:1 25555:3 25564:1 25590:7 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:2 25688:3 25696:2 25719:11 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25808:1 25819:1 25821:1 25824:1 25826:1 25828:1 25856:1 25859:1 25878:2 25880:1 25881:1 25895:1 25897:1 25902:1 25912:3 25946:1 25964:1 25965:2 25966:2 25968:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:1 26019:2 26023:1 26032:1 26033:1 26035:1 26044:2 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:2 26211:1 26219:1 26232:6 26241:1 26245:1 26247:4 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:2 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26399:1 26413:1 26414:1 26438:2 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:1 26556:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:2 26742:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 22:1 35:1 38:2 52:1 62:1 66:1 70:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:7 223:1 243:1 259:1 268:2 282:1 283:24 294:2 312:1 313:3 315:4 323:1 328:1 340:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 549:1 550:4 553:1 561:1 567:3 590:4 594:2 597:1 598:1 599:1 611:2 620:1 628:2 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 729:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:6 818:3 828:1 829:1 840:1 843:12 846:1 856:1 860:1 868:3 872:7 875:1 881:1 883:1 884:1 888:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:2 964:1 970:2 982:1 983:2 987:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:1 1059:2 1067:2 1072:1 1075:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1155:2 1182:1 1183:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1274:1 1279:1 1281:2 1301:1 1303:2 1323:1 1326:2 1328:1 1331:5 1332:1 1345:1 1352:2 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:2 1471:1 1476:1 1489:1 1491:1 1493:2 1496:3 1502:1 1520:4 1524:1 1547:1 1548:2 1557:3 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1628:1 1652:2 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1730:1 1732:1 1752:1 1793:1 1797:12 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:4 2042:1 2047:1 2051:1 2057:1 2058:1 2060:3 2063:1 2064:2 2065:4 2068:1 2077:2 2079:1 2096:1 2098:1 2104:2 2105:2 2108:2 2109:8 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:3 2261:1 2263:1 2269:1 2279:2 2298:3 2310:6 2320:1 2326:1 2344:1 2350:1 2360:5 2369:3 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:6 2591:2 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2635:1 2636:1 2653:2 2670:3 2674:1 2683:22 2696:4 2702:1 2718:1 2719:1 2727:1 2733:11 2756:1 2761:4 2765:1 2766:1 2787:1 2813:1 2817:1 2856:3 2857:1 2870:1 2876:1 2881:1 2882:1 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:10 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:2 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:4 3348:4 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:4 3394:1 3398:1 3416:1 3426:1 3430:1 3434:1 3435:3 3439:1 3442:2 3445:2 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:10 3500:1 3510:1 3520:1 3524:4 3525:1 3530:2 3532:1 3533:11 3534:1 3537:1 3545:1 3548:5 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:2 3648:2 3649:1 3665:1 3671:1 3672:1 3676:1 3680:1 3694:4 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:3 3731:1 3745:1 3746:1 3760:1 3770:1 3787:2 3799:1 3806:1 3813:2 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:2 3918:2 3924:1 3925:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4017:1 4034:1 4042:2 4055:5 4056:1 4073:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:1 4216:1 4220:1 4256:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:1 4303:1 4331:1 4334:8 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:6 4425:1 4427:2 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:19 4515:2 4518:1 4530:1 4531:2 4538:1 4546:1 4557:1 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:6 4607:4 4608:4 4609:1 4610:1 4611:1 4615:3 4616:1 4618:1 4619:2 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:2 4662:1 4682:1 4711:1 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4765:2 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:2 4926:6 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:1 5115:1 5116:1 5136:3 5147:1 5160:1 5169:3 5182:3 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5317:1 5332:1 5356:1 5365:1 5391:1 5394:2 5397:1 5399:1 5424:1 5428:2 5443:1 5493:2 5494:1 5518:1 5519:12 5533:4 5542:4 5546:1 5547:1 5551:3 5552:1 5554:2 5560:1 5577:3 5594:1 5596:1 5598:1 5613:1 5630:1 5649:1 5666:1 5669:2 5670:1 5673:1 5685:1 5688:2 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:1 5788:3 5790:1 5791:1 5794:1 5799:1 5801:2 5803:1 5804:2 5805:1 5807:4 5813:4 5815:9 5816:5 5818:1 5857:1 5858:1 5876:1 5928:3 5957:2 5974:2 6030:1 6036:1 6041:1 6058:1 6062:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6177:1 6179:2 6180:1 6181:1 6191:1 6201:7 6212:2 6218:2 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6414:1 6448:1 6455:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6707:1 6713:4 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:1 6866:2 6880:1 6882:1 6883:2 6919:2 6920:11 6922:3 6933:2 6943:2 6944:2 6945:1 6963:4 6964:1 6979:50 6983:1 7003:3 7004:11 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:3 7219:1 7223:1 7238:1 7244:4 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7432:1 7438:2 7446:1 7449:2 7455:1 7460:2 7471:1 7473:6 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:7 7796:2 7797:2 7800:1 7812:1 7813:2 7833:4 7837:1 7838:3 7863:3 7868:1 7869:2 7872:2 7877:1 7879:4 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8042:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:1 8096:4 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8233:1 8249:3 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:3 8365:1 8380:1 8384:2 8391:1 8403:1 8404:1 8434:1 8437:1 8441:7 8443:1 8444:1 8449:2 8452:1 8460:24 8463:1 8464:2 8483:2 8484:1 8493:1 8508:1 8531:1 8533:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8753:1 8757:1 8771:1 8772:5 8778:1 8786:1 8790:3 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8963:1 8983:1 8990:1 9004:7 9010:1 9018:1 9023:1 9030:3 9037:1 9038:2 9040:1 9043:2 9047:1 9050:1 9055:4 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:2 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:1 9207:1 9215:1 9235:1 9256:1 9260:1 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9347:1 9382:1 9388:1 9410:2 9430:1 9433:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9589:1 9592:1 9594:1 9603:1 9605:2 9607:2 9610:4 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:2 9652:3 9653:1 9658:1 9660:1 9668:2 9669:1 9682:3 9683:2 9689:1 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:5 9770:2 9775:3 9778:11 9795:1 9825:1 9826:1 9831:1 9833:1 9843:1 9866:2 9870:1 9901:1 9902:2 9914:1 9922:1 9945:1 9956:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:4 10065:1 10066:1 10068:1 10110:1 10111:1 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10185:1 10187:1 10211:1 10220:1 10222:1 10229:1 10246:4 10251:1 10261:1 10271:1 10284:1 10293:1 10303:2 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:2 10341:1 10361:4 10368:1 10391:1 10395:9 10396:1 10398:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:1 10483:1 10484:1 10490:1 10492:1 10493:1 10498:2 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:6 10572:2 10573:5 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:3 10650:1 10655:2 10660:3 10668:1 10678:6 10686:1 10693:7 10701:1 10705:1 10725:1 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:3 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10998:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:1 11082:1 11102:1 11103:1 11115:3 11116:4 11123:2 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11257:2 11271:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:2 11368:1 11398:1 11409:1 11411:1 11412:3 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:7 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:15 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11631:2 11655:2 11687:1 11696:2 11697:2 11715:1 11723:2 11724:1 11745:1 11765:3 11768:1 11771:1 11772:1 11788:1 11813:1 11824:1 11838:1 11865:1 11868:6 11908:1 11945:7 11949:1 11964:2 11972:1 11978:5 11982:4 11988:1 11995:1 11996:6 12016:1 12019:1 12027:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:4 12075:1 12094:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:3 12127:1 12143:1 12145:2 12150:1 12154:1 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:2 12208:1 12217:1 12221:1 12226:1 12237:2 12243:7 12261:1 12262:1 12265:1 12280:4 12284:1 12285:3 12304:1 12320:1 12331:2 12385:1 12398:1 12418:1 12420:1 12429:1 12454:3 12457:2 12460:4 12462:2 12465:1 12475:1 12480:1 12485:1 12486:1 12505:3 12521:1 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:2 12624:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:9 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12928:1 12933:1 12946:1 12954:1 12970:1 12971:1 12972:1 13001:2 13011:1 13021:1 13032:1 13040:1 13049:1 13057:2 13065:2 13073:1 13075:3 13083:1 13084:1 13086:2 13088:8 13090:1 13092:6 13100:3 13104:1 13106:1 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13259:3 13278:1 13287:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13360:2 13362:2 13367:1 13371:1 13383:2 13386:1 13391:4 13392:1 13407:2 13410:1 13422:2 13441:1 13442:1 13486:1 13503:1 13512:1 13515:1 13520:1 13544:1 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:6 13639:1 13652:1 13655:1 13659:2 13676:1 13679:4 13680:3 13700:2 13708:1 13719:1 13723:1 13734:1 13735:1 13741:1 13752:7 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:3 13859:1 13864:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13959:2 13971:2 13979:1 14004:1 14015:2 14033:1 14043:8 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:4 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14216:1 14228:1 14252:2 14255:1 14263:7 14268:3 14273:1 14275:3 14284:1 14290:2 14295:2 14302:1 14303:1 14305:5 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14381:1 14388:1 14389:1 14418:7 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14533:1 14540:3 14546:1 14548:1 14553:1 14556:3 14557:2 14570:1 14599:1 14616:2 14653:1 14662:1 14669:15 14670:1 14675:1 14687:4 14692:1 14695:1 14696:1 14710:1 14722:1 14730:2 14747:3 14750:1 14755:1 14768:1 14773:1 14780:1 14782:1 14796:1 14801:1 14803:1 14809:2 14822:2 14825:1 14829:1 14858:1 14860:2 14897:3 14899:1 14900:1 14918:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:2 15033:1 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:3 15402:1 15405:4 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:1 15487:1 15490:1 15495:2 15508:4 15519:1 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:1 15576:1 15578:1 15583:5 15592:1 15605:1 15607:4 15608:1 15617:1 15621:1 15636:2 15638:2 15661:3 15663:2 15671:1 15675:1 15685:1 15688:1 15689:2 15697:2 15705:7 15706:2 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:2 15865:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:3 15992:3 15993:2 15994:1 16025:1 16028:1 16041:5 16042:3 16073:1 16075:2 16102:1 16104:1 16113:7 16126:1 16153:1 16158:1 16164:2 16167:1 16170:1 16174:1 16176:1 16187:1 16189:5 16194:1 16195:1 16207:1 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16299:1 16301:8 16302:1 16305:4 16311:24 16314:1 16317:1 16319:1 16320:1 16323:1 16325:1 16344:3 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:1 16402:1 16404:1 16405:1 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:3 16573:1 16575:1 16583:1 16592:1 16606:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:1 16700:2 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:2 16870:4 16876:1 16887:1 16900:1 16909:1 16926:1 16927:2 16928:1 16930:1 16949:2 16963:4 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17042:1 17045:1 17053:3 17057:1 17060:1 17065:1 17069:1883 17082:1 17086:1 17118:2 17119:1 17126:3 17128:1 17150:1 17187:2 17193:2 17211:2 17227:1 17234:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:2 17276:4 17304:1 17346:6 17350:2 17352:2 17357:1 17359:1 17381:24 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:1 17669:1 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17730:1 17738:2 17747:2 17749:1 17769:1 17772:10 17791:1 17792:1 17807:6 17808:1 17819:1 17821:1 17826:1 17833:1 17838:1 17879:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:3 18202:4 18206:1 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:3 18330:1 18349:1 18355:1 18356:4 18367:1 18368:1 18382:2 18395:1 18400:1 18406:1 18408:1 18409:2 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:3 18470:1 18476:1 18481:2 18483:1 18484:1 18510:2 18513:2 18526:1 18545:5 18568:1 18589:6 18590:3 18594:2 18603:1 18606:1 18611:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18756:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:6 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18959:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:2 19032:1 19037:1 19039:1 19042:2 19050:1 19063:5 19088:1 19098:2 19101:1 19102:2 19120:1 19143:2 19150:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19488:1 19495:1 19557:1 19565:1 19580:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:2 19658:1 19659:2 19667:1 19675:2 19676:3 19678:1 19680:1 19683:1 19692:1 19693:1 19694:1 19701:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20052:1 20061:2 20063:3 20064:1 20080:2 20085:1 20097:1 20112:1 20127:2 20154:1 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:3 20226:2 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:2 20295:1 20305:3 20339:1 20343:1 20349:1 20354:1 20355:1 20381:4 20383:5 20385:3 20388:1 20396:2 20400:1 20414:1 20423:1 20432:1 20433:1 20434:4 20442:1 20455:2 20457:1 20464:3 20466:2 20467:3 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20552:3 20564:1 20567:2 20574:1 20598:3 20600:1 20617:2 20624:1 20625:24 20631:2 20632:1 20634:4 20637:2 20638:1 20640:2 20642:1 20644:1 20645:1 20663:3 20666:1 20672:2 20676:1 20679:2 20692:2 20693:2 20697:1 20706:1 20708:1 20726:1 20736:1 20738:1 20771:2 20776:1 20779:4 20786:1 20804:2 20807:1 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:2 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21121:1 21128:2 21131:1 21136:1 21144:3 21145:1 21146:1 21155:3 21160:2 21177:2 21180:1 21183:1 21190:2 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21339:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:2 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:2 21455:1 21461:1 21466:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:11 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:6 21748:1 21751:1 21764:1 21778:1 21780:1 21789:2 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:2 22005:5 22013:4 22018:1 22029:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22110:3 22111:2 22112:1 22115:1 22133:1 22137:1 22154:1 22155:1 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:1 22275:1 22276:2 22277:1 22279:6 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:1 22295:2 22297:3 22300:1 22304:2 22307:1 22311:2 22320:4 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:2 22544:1 22546:4 22549:1 22559:2 22594:1 22595:1 22598:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:2 22914:3 22942:10 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:5 23113:1 23121:2 23123:2 23124:7 23128:2 23129:4 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23194:1 23200:4 23207:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23327:1 23340:1 23363:1 23366:1 23379:1 23387:1 23388:2 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23452:1 23460:1 23487:1 23510:1 23523:1 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23670:1 23685:1 23688:1 23703:1 23705:2 23735:3 23740:1 23749:1 23753:2 23767:1 23770:5 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:1 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:5 23910:1 23937:3 23952:1 23953:1 23956:1 23972:2 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:1 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24116:1 24130:2 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24453:1 24454:1 24459:1 24465:1 24468:1 24478:1 24481:1 24489:1 24493:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:2 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:1 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:1 24748:1 24756:11 24787:3 24797:1 24815:1 24816:2 24819:1 24838:2 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:2 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25015:1 25020:2 25024:1 25025:1 25026:1 25035:2 25064:1 25065:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:4 25231:1 25251:1 25273:1 25278:1 25281:1 25325:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:6 25443:1 25462:1 25467:3 25490:1 25500:2 25509:1 25525:1 25528:1 25529:1 25540:1 25541:1 25542:1 25549:24 25550:4 25553:5 25554:1 25555:3 25564:1 25590:7 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:2 25688:3 25696:2 25719:11 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:1 25808:1 25819:1 25821:1 25824:1 25826:1 25828:1 25856:1 25859:1 25878:2 25880:1 25881:1 25895:1 25897:1 25902:1 25912:3 25946:1 25964:1 25965:2 25966:2 25968:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:1 26019:2 26023:1 26032:1 26033:1 26035:1 26044:2 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:2 26211:1 26219:1 26232:6 26241:1 26245:1 26247:5 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26399:1 26413:1 26414:1 26438:2 26450:1 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:1 26538:1 26556:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:2 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 22:1 35:1 38:2 52:1 62:1 66:1 70:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:7 223:1 243:1 259:1 268:2 282:1 283:26 294:2 312:1 313:3 315:4 323:1 328:1 340:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 549:1 550:4 553:1 561:2 567:3 590:4 594:2 597:1 598:1 599:1 611:2 620:1 628:2 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 729:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:7 818:3 828:2 829:1 840:1 843:12 846:1 856:1 860:1 868:3 872:7 875:1 881:1 883:1 884:1 888:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:2 964:1 970:2 982:1 983:2 987:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:1 1059:3 1067:2 1072:1 1075:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1155:2 1182:1 1183:1 1190:1 1195:1 1209:1 1234:1 1238:1 1267:1 1274:1 1279:1 1281:2 1301:1 1303:2 1323:1 1326:2 1328:2 1331:5 1332:1 1345:1 1352:2 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:3 1471:1 1476:1 1489:1 1491:1 1493:2 1496:3 1502:1 1520:4 1524:1 1547:1 1548:3 1557:4 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1628:1 1652:2 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1730:1 1732:1 1752:1 1793:1 1797:14 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:4 2042:1 2047:1 2051:1 2057:1 2058:1 2060:3 2063:1 2064:2 2065:4 2068:1 2074:1 2077:2 2079:1 2096:1 2098:1 2104:2 2105:2 2108:2 2109:8 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:3 2261:1 2263:1 2269:1 2279:2 2298:3 2310:6 2320:1 2326:1 2344:1 2350:1 2360:5 2369:3 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:2 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2635:1 2636:1 2653:2 2670:3 2674:1 2683:22 2696:4 2702:1 2718:1 2719:1 2727:1 2733:11 2756:1 2761:4 2765:1 2766:1 2787:1 2813:1 2817:1 2819:1 2856:3 2857:1 2870:1 2876:1 2881:1 2882:1 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:12 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:2 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:4 3348:4 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:4 3394:1 3398:1 3416:1 3426:1 3430:1 3434:1 3435:3 3439:1 3442:2 3445:2 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:10 3500:1 3510:1 3520:1 3524:4 3525:1 3530:2 3532:1 3533:11 3534:1 3537:1 3545:1 3548:5 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:2 3648:2 3649:1 3665:1 3667:1 3671:1 3672:1 3676:1 3680:1 3694:4 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:3 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3799:1 3806:1 3813:2 3814:1 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:2 3918:2 3924:1 3925:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4017:1 4034:1 4042:2 4055:5 4056:1 4073:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:1 4212:1 4216:1 4220:1 4238:2 4256:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:1 4303:1 4331:1 4334:8 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:7 4425:1 4427:2 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:19 4515:2 4518:1 4530:1 4531:2 4538:1 4546:1 4557:2 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:6 4607:4 4608:4 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:2 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:2 4662:1 4682:1 4711:1 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4765:2 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:2 4822:1 4850:1 4875:1 4878:1 4881:1 4898:1 4919:2 4926:6 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5115:1 5116:1 5136:3 5147:1 5160:1 5169:3 5182:3 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5317:1 5332:1 5356:1 5365:2 5391:1 5394:2 5397:1 5399:1 5424:1 5428:2 5443:1 5493:2 5494:1 5518:1 5519:13 5533:4 5542:4 5546:1 5547:1 5551:3 5552:1 5554:2 5560:1 5577:3 5594:1 5596:1 5598:1 5613:1 5630:1 5649:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:2 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:1 5788:3 5790:1 5791:1 5794:1 5799:1 5801:2 5803:1 5804:2 5805:1 5807:4 5813:4 5815:9 5816:5 5818:1 5857:1 5858:1 5876:1 5928:3 5957:2 5974:2 6030:1 6036:1 6041:1 6058:1 6062:1 6063:1 6068:1 6078:1 6080:1 6088:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6177:1 6179:2 6180:1 6181:1 6191:1 6201:7 6212:2 6218:2 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6414:1 6448:1 6455:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6707:1 6713:4 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:1 6866:2 6880:1 6882:1 6883:2 6919:2 6920:11 6922:3 6933:2 6943:2 6944:3 6945:1 6963:4 6964:1 6979:50 6983:1 7003:3 7004:11 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:3 7219:1 7223:1 7238:1 7244:4 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:1 7431:1 7432:1 7438:2 7446:2 7449:2 7455:1 7460:2 7471:1 7473:6 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:2 7800:1 7812:1 7813:2 7833:4 7837:1 7838:3 7863:3 7868:1 7869:2 7872:2 7877:1 7879:4 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8037:2 8042:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:1 8096:4 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8232:1 8233:1 8249:3 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:3 8365:1 8380:1 8384:2 8391:1 8403:2 8404:1 8434:1 8437:1 8441:7 8443:1 8444:1 8449:2 8452:1 8460:26 8463:1 8464:2 8483:2 8484:1 8493:1 8508:1 8531:1 8533:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8753:1 8757:1 8771:1 8772:5 8778:1 8786:1 8790:3 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8963:1 8983:2 8990:1 9004:7 9010:1 9018:1 9023:1 9030:3 9037:1 9038:2 9040:1 9043:2 9047:1 9050:1 9055:4 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:2 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:1 9207:1 9215:1 9235:1 9256:1 9260:1 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9347:1 9382:1 9388:2 9410:2 9430:1 9433:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9589:1 9592:1 9594:1 9603:1 9605:2 9607:2 9610:4 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:3 9652:3 9653:1 9658:1 9660:1 9668:2 9669:1 9682:3 9683:2 9689:2 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:5 9770:2 9775:3 9778:11 9795:1 9825:1 9826:1 9831:1 9833:1 9843:1 9866:2 9870:1 9901:1 9902:2 9914:1 9922:1 9945:1 9956:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:4 10065:1 10066:1 10068:1 10110:1 10111:2 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:1 10185:1 10187:1 10211:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:1 10273:1 10284:1 10293:1 10303:2 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:2 10341:1 10361:4 10368:1 10391:1 10395:9 10396:1 10398:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:1 10483:1 10484:1 10490:1 10492:1 10493:1 10498:2 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:7 10572:2 10573:6 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10686:1 10693:8 10701:1 10705:1 10725:1 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10829:1 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:3 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10998:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:1 11082:1 11102:1 11103:1 11115:3 11116:5 11123:2 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11257:2 11271:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:2 11368:2 11398:1 11409:1 11411:1 11412:3 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:15 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11631:2 11655:2 11687:1 11696:2 11697:2 11715:1 11717:1 11723:2 11724:1 11745:1 11765:3 11768:1 11771:1 11772:1 11788:1 11813:1 11824:1 11838:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:2 11972:1 11978:5 11982:4 11988:1 11995:1 11996:6 12016:1 12019:1 12027:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:3 12127:1 12143:1 12145:2 12150:1 12154:1 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:1 12265:1 12280:4 12284:1 12285:3 12304:1 12320:1 12331:2 12385:1 12398:1 12418:1 12420:1 12429:1 12454:3 12457:2 12460:4 12462:2 12465:1 12475:1 12480:1 12485:1 12486:1 12505:3 12521:1 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:2 12624:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:9 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12928:1 12933:1 12946:1 12954:1 12970:2 12971:1 12972:1 13001:2 13011:1 13021:1 13032:2 13040:1 13049:1 13057:2 13065:2 13073:1 13075:3 13083:1 13084:1 13086:2 13088:9 13090:1 13092:6 13100:3 13104:1 13106:1 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13259:4 13272:1 13278:1 13287:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13360:2 13362:2 13367:1 13371:1 13383:2 13386:1 13391:4 13392:1 13407:2 13410:1 13422:2 13441:1 13442:1 13486:1 13503:1 13512:1 13515:1 13520:1 13544:1 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:6 13639:1 13652:1 13655:1 13659:2 13676:1 13679:4 13680:3 13700:2 13708:1 13719:1 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:3 13859:1 13864:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13951:1 13959:2 13971:2 13979:1 14004:1 14015:2 14033:1 14043:8 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:4 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14216:1 14228:1 14252:2 14255:1 14263:7 14268:3 14273:1 14275:3 14284:1 14290:2 14295:2 14302:2 14303:1 14305:5 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14381:1 14388:1 14389:1 14418:7 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14540:3 14546:1 14548:1 14553:1 14556:3 14557:2 14570:1 14599:1 14616:2 14653:1 14662:1 14669:15 14670:1 14675:1 14687:4 14692:1 14695:1 14696:1 14710:1 14722:1 14730:2 14747:3 14750:1 14755:1 14768:1 14773:1 14780:1 14782:1 14796:1 14801:1 14803:1 14809:2 14822:2 14825:1 14829:1 14858:1 14860:2 14897:3 14899:1 14900:1 14918:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:2 15033:1 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:4 15402:1 15405:4 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:1 15487:1 15490:1 15495:2 15508:4 15519:1 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:1 15576:1 15578:1 15583:5 15592:1 15605:1 15607:4 15608:1 15617:1 15621:1 15636:2 15638:2 15661:3 15663:2 15671:1 15675:1 15685:1 15688:1 15689:2 15697:2 15705:7 15706:2 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:2 15865:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:3 15992:3 15993:2 15994:1 16025:1 16028:1 16041:5 16042:3 16073:1 16075:2 16102:1 16104:1 16113:7 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:1 16187:1 16189:5 16194:1 16195:1 16207:1 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:1 16301:8 16302:1 16305:4 16311:25 16314:1 16317:1 16319:1 16320:1 16323:1 16325:1 16344:3 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:1 16402:1 16404:1 16405:1 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:5 16573:1 16575:1 16583:1 16592:1 16606:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:1 16700:2 16720:1 16728:1 16735:1 16770:1 16776:2 16778:1 16811:2 16870:4 16876:1 16887:1 16900:1 16909:1 16926:1 16927:2 16928:1 16930:1 16949:2 16963:4 16970:1 16991:1 16998:1 17015:2 17021:2 17023:2 17027:1 17042:1 17045:1 17053:5 17057:1 17060:1 17065:1 17069:1954 17082:1 17086:1 17118:2 17119:1 17126:3 17128:1 17150:1 17187:2 17193:2 17202:1 17211:2 17227:1 17234:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:2 17276:4 17304:1 17346:6 17350:2 17352:2 17357:1 17359:1 17381:26 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:1 17669:1 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17730:1 17738:2 17747:2 17749:1 17769:1 17772:10 17791:1 17792:1 17807:7 17808:1 17819:1 17821:1 17826:1 17833:1 17838:1 17879:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:3 18202:4 18206:1 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:4 18330:1 18349:1 18355:1 18356:4 18367:1 18368:1 18382:2 18395:1 18400:1 18406:1 18408:1 18409:2 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:2 18483:1 18484:1 18491:1 18510:2 18513:2 18526:1 18545:5 18568:1 18589:6 18590:3 18594:2 18603:2 18606:1 18611:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18756:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:6 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18959:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:2 19032:1 19037:1 19039:1 19042:2 19050:1 19063:5 19088:1 19098:2 19101:1 19102:2 19120:1 19143:2 19150:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19488:1 19495:1 19557:1 19565:1 19580:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:2 19658:1 19659:2 19667:1 19675:2 19676:3 19678:1 19680:1 19683:1 19692:1 19693:1 19694:1 19701:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19897:1 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:3 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20052:1 20061:2 20063:3 20064:1 20080:2 20085:1 20097:1 20112:1 20127:2 20142:1 20154:1 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:3 20226:2 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:2 20295:1 20305:3 20339:1 20343:1 20349:1 20354:1 20355:1 20381:4 20383:5 20385:3 20386:1 20388:2 20396:2 20400:1 20414:1 20423:1 20432:1 20433:1 20434:4 20442:1 20450:1 20455:2 20457:1 20464:3 20466:2 20467:3 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20552:3 20564:1 20567:2 20574:1 20598:3 20599:1 20600:1 20617:2 20624:1 20625:25 20631:2 20632:1 20634:4 20637:3 20638:1 20640:2 20642:1 20644:1 20645:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:1 20708:1 20726:1 20736:1 20738:1 20771:2 20776:1 20779:4 20786:1 20804:2 20807:1 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:3 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21121:1 21128:2 21131:1 21136:1 21144:3 21145:1 21146:1 21155:3 21160:2 21177:2 21180:1 21183:1 21190:2 21226:1 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21339:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:2 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:2 21455:1 21461:1 21466:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:11 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:6 21748:1 21751:1 21764:1 21778:1 21780:1 21789:2 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:3 22005:5 22013:4 22018:1 22029:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22110:3 22111:2 22112:1 22115:1 22133:1 22137:1 22154:1 22155:1 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:1 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:1 22295:2 22297:3 22300:1 22304:2 22307:1 22311:2 22320:4 22323:1 22352:1 22357:2 22359:1 22371:2 22384:3 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:2 22544:1 22546:4 22549:1 22559:2 22594:1 22595:1 22598:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22749:3 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:2 22914:3 22942:10 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:5 23113:1 23121:2 23123:2 23124:7 23128:2 23129:4 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23185:2 23194:1 23200:4 23207:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23327:1 23340:1 23363:1 23366:1 23379:1 23387:1 23388:2 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23452:1 23460:1 23464:1 23487:1 23510:1 23523:1 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23670:1 23685:1 23688:1 23703:1 23705:2 23735:3 23740:1 23749:1 23753:2 23767:1 23770:5 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:1 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:5 23910:1 23937:3 23940:1 23952:1 23953:1 23956:1 23972:2 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:1 24057:1 24064:1 24087:2 24089:1 24091:1 24097:1 24116:1 24130:2 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24453:1 24454:1 24459:1 24465:1 24468:1 24478:1 24481:1 24489:1 24493:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:2 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:2 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:2 24748:1 24756:11 24787:3 24797:1 24815:1 24816:2 24819:1 24838:2 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:2 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:2 24934:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25013:1 25015:1 25020:2 25024:1 25025:1 25026:1 25035:2 25064:1 25065:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:4 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25325:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:6 25443:1 25462:1 25467:3 25490:1 25500:2 25509:1 25525:1 25528:1 25529:1 25540:1 25541:1 25542:1 25549:24 25550:4 25553:5 25554:1 25555:3 25564:1 25590:7 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:2 25688:3 25696:2 25719:11 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:2 25808:1 25819:1 25821:1 25824:1 25826:1 25828:1 25856:1 25859:1 25878:2 25880:1 25881:1 25895:1 25897:1 25902:1 25912:3 25946:1 25964:1 25965:2 25966:2 25968:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:1 26019:2 26023:1 26024:1 26032:1 26033:1 26035:1 26044:2 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:2 26211:1 26219:1 26232:7 26241:1 26245:1 26247:5 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26399:1 26413:1 26414:1 26438:2 26450:1 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:1 26538:1 26556:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:2 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 22:1 35:1 38:2 52:1 62:1 66:1 68:1 70:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 157:1 166:1 168:3 177:1 185:4 205:7 223:1 243:1 259:1 268:2 282:1 283:29 294:2 312:1 313:3 315:4 323:1 328:1 340:1 342:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 549:1 550:4 553:1 561:2 567:3 590:4 594:2 597:1 598:1 599:1 611:2 620:1 628:2 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 729:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:7 818:3 828:2 829:1 840:1 843:12 846:1 856:1 860:1 868:4 872:7 875:1 881:1 883:1 884:1 888:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:2 964:2 970:2 982:1 983:2 987:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:1 1059:3 1067:2 1072:1 1075:1 1078:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1155:2 1182:1 1183:1 1190:2 1195:1 1209:1 1234:1 1238:1 1267:1 1274:1 1279:1 1281:2 1301:1 1303:2 1323:1 1326:2 1328:3 1331:5 1332:1 1345:1 1352:2 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:4 1471:1 1476:1 1479:1 1489:1 1491:1 1493:2 1496:3 1502:1 1520:4 1524:1 1547:1 1548:3 1557:5 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1628:1 1652:2 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1730:1 1732:1 1752:1 1793:1 1797:16 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1929:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:5 2042:1 2047:1 2051:1 2057:1 2058:1 2060:3 2063:1 2064:2 2065:4 2068:1 2074:1 2077:2 2079:1 2096:1 2098:1 2104:2 2105:2 2108:2 2109:8 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:3 2261:1 2263:1 2269:1 2279:2 2298:3 2310:6 2320:1 2326:1 2344:1 2350:1 2360:5 2369:3 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:2 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2635:1 2636:1 2653:2 2670:3 2674:1 2683:22 2696:4 2702:1 2718:1 2719:1 2727:1 2733:11 2756:1 2761:4 2765:1 2766:1 2787:1 2813:1 2817:1 2819:1 2856:3 2857:1 2870:1 2876:1 2881:1 2882:1 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:4 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:12 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:2 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:4 3348:4 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:4 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:2 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:11 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:1 3533:12 3534:1 3537:1 3545:1 3548:5 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:3 3648:2 3649:1 3665:1 3667:1 3671:1 3672:1 3676:1 3680:1 3694:4 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:3 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3799:1 3806:1 3813:2 3814:1 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:3 3918:2 3924:1 3925:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4017:1 4034:1 4042:2 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:2 4212:1 4216:1 4220:1 4238:2 4256:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:1 4303:1 4331:1 4334:8 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:7 4425:1 4427:2 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:19 4515:2 4518:1 4530:1 4531:2 4538:1 4546:1 4557:2 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:6 4607:4 4608:5 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:2 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:2 4662:1 4682:1 4711:1 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4765:2 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:3 4822:1 4850:1 4875:1 4878:1 4881:1 4891:1 4898:1 4919:2 4926:7 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5115:1 5116:1 5136:3 5147:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5317:1 5332:1 5356:1 5365:2 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5493:3 5494:1 5518:1 5519:13 5533:4 5542:4 5546:1 5547:1 5551:3 5552:1 5554:2 5560:1 5577:3 5594:1 5596:1 5598:1 5613:1 5630:1 5649:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:2 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:1 5788:3 5790:1 5791:1 5794:1 5799:1 5801:2 5803:1 5804:2 5805:1 5807:4 5813:4 5815:9 5816:5 5818:1 5857:1 5858:1 5876:1 5928:3 5931:1 5957:2 5974:2 6030:1 6036:1 6041:1 6058:1 6062:1 6063:1 6068:1 6078:1 6080:1 6088:1 6103:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6174:1 6177:1 6179:2 6180:1 6181:1 6191:1 6201:7 6212:2 6218:2 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6414:1 6448:1 6455:1 6458:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6707:1 6713:4 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:1 6866:2 6880:1 6882:1 6883:2 6919:2 6920:12 6922:3 6933:2 6943:2 6944:3 6945:1 6963:4 6964:1 6979:50 6983:1 7003:3 7004:11 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:3 7219:1 7223:1 7238:1 7244:4 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:2 7431:1 7432:1 7438:2 7446:2 7449:2 7455:1 7460:2 7471:1 7473:7 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7723:1 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:2 7798:1 7800:1 7812:1 7813:2 7833:4 7837:1 7838:3 7863:3 7868:1 7869:2 7872:2 7877:1 7879:4 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8033:1 8037:3 8042:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:1 8096:4 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8232:1 8233:1 8249:3 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:3 8365:1 8380:1 8384:2 8391:1 8403:2 8404:1 8434:1 8437:1 8441:7 8443:1 8444:1 8449:2 8452:1 8460:29 8463:1 8464:2 8483:2 8484:1 8493:1 8508:1 8531:1 8533:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:1 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8753:2 8757:1 8770:1 8771:1 8772:5 8778:1 8786:1 8790:3 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8983:2 8990:1 9004:7 9010:1 9018:1 9023:1 9030:4 9037:1 9038:2 9040:1 9043:2 9047:1 9050:1 9055:4 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:2 9089:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:1 9207:1 9215:1 9235:1 9256:1 9260:1 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9347:1 9382:1 9388:2 9410:3 9430:1 9433:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9589:1 9592:1 9594:1 9603:1 9605:3 9607:2 9610:5 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:3 9652:3 9653:1 9658:1 9660:1 9668:2 9669:1 9682:3 9683:2 9689:2 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:5 9770:2 9775:3 9778:11 9795:1 9825:1 9826:1 9831:1 9833:1 9843:1 9866:2 9870:1 9885:1 9901:1 9902:2 9914:1 9922:1 9945:1 9956:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:4 10065:1 10066:1 10068:1 10110:1 10111:2 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:1 10185:1 10187:1 10211:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:1 10273:1 10284:1 10293:1 10303:2 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:3 10341:1 10361:6 10368:1 10391:1 10395:9 10396:1 10398:1 10400:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:1 10483:1 10484:1 10490:1 10492:1 10493:1 10498:2 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:7 10572:2 10573:6 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10686:1 10693:8 10701:1 10705:1 10725:1 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10829:2 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:3 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10998:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:1 11082:1 11102:1 11103:1 11115:3 11116:5 11123:2 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11257:2 11271:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:2 11368:2 11398:1 11409:1 11411:1 11412:3 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:15 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11631:2 11655:2 11687:1 11696:4 11697:2 11715:1 11717:1 11723:2 11724:1 11745:1 11765:3 11768:1 11771:1 11772:1 11788:1 11813:1 11824:1 11838:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:2 11972:1 11978:5 11982:4 11988:1 11995:1 11996:6 12016:1 12019:1 12027:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:3 12127:1 12143:1 12144:1 12145:2 12150:1 12154:1 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:1 12265:1 12266:1 12280:4 12284:1 12285:3 12304:1 12320:1 12331:2 12378:1 12385:1 12398:1 12418:1 12420:1 12429:1 12454:3 12456:1 12457:2 12460:4 12462:2 12465:1 12475:1 12480:1 12485:1 12486:2 12505:3 12521:1 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:2 12624:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:9 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12928:1 12933:1 12946:1 12954:1 12970:3 12971:1 12972:1 13001:2 13011:1 13021:1 13032:2 13040:1 13049:1 13057:2 13065:2 13073:1 13075:3 13083:1 13084:1 13086:3 13088:9 13090:1 13092:6 13100:3 13104:1 13106:2 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13259:4 13272:1 13278:1 13287:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13360:2 13362:2 13367:1 13371:1 13383:2 13386:1 13391:4 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13486:1 13503:1 13512:1 13515:1 13520:1 13544:1 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:6 13639:1 13652:1 13655:1 13659:2 13676:1 13679:6 13680:3 13700:2 13708:1 13719:1 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:4 13859:1 13864:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13951:1 13959:2 13971:2 13979:1 14004:1 14015:2 14033:1 14043:9 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:4 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14216:1 14228:1 14252:2 14255:1 14263:7 14268:3 14273:1 14275:3 14284:1 14290:2 14295:3 14302:2 14303:1 14305:5 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14381:1 14388:1 14389:1 14418:7 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14540:3 14546:1 14548:1 14553:1 14556:4 14557:2 14570:1 14599:1 14616:3 14653:1 14662:1 14669:16 14670:1 14675:1 14687:4 14692:1 14695:1 14696:1 14710:1 14722:1 14730:2 14747:3 14750:1 14755:1 14768:1 14773:1 14777:1 14780:1 14782:1 14796:1 14801:1 14803:1 14809:2 14822:2 14825:1 14829:1 14858:1 14860:2 14897:3 14899:1 14900:1 14918:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:2 15033:1 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15280:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:4 15402:1 15405:4 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:2 15487:1 15490:1 15495:2 15508:4 15519:1 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:1 15576:1 15578:2 15583:6 15592:1 15605:1 15607:5 15608:1 15617:1 15621:1 15636:2 15638:2 15661:3 15663:2 15671:1 15675:1 15685:1 15688:1 15689:2 15697:2 15705:7 15706:2 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:2 15865:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:3 15992:3 15993:2 15994:1 16025:1 16028:1 16041:5 16042:3 16073:1 16075:2 16102:1 16104:1 16113:7 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:1 16187:2 16189:5 16194:1 16195:1 16207:1 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:1 16301:8 16302:1 16305:4 16311:26 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:1 16402:1 16404:1 16405:1 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:5 16573:1 16575:1 16583:1 16592:1 16606:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:1 16700:2 16720:1 16728:1 16735:1 16745:1 16770:1 16776:3 16778:1 16811:2 16870:4 16876:1 16887:1 16900:1 16909:1 16926:1 16927:2 16928:1 16930:1 16949:2 16963:4 16970:1 16991:1 16998:1 17015:3 17021:2 17023:2 17027:1 17042:1 17045:1 17053:5 17057:1 17060:1 17065:1 17069:2035 17082:1 17086:1 17118:3 17119:1 17126:3 17128:1 17150:1 17187:2 17193:2 17202:1 17211:2 17227:1 17234:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:2 17276:4 17304:1 17346:6 17350:2 17352:2 17357:1 17359:1 17381:29 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:1 17669:1 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17730:1 17737:1 17738:2 17747:2 17749:1 17769:1 17772:10 17791:1 17792:1 17807:7 17808:1 17819:1 17821:1 17826:1 17833:1 17838:1 17879:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:3 18202:4 18206:1 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:4 18330:1 18349:1 18355:1 18356:4 18367:1 18368:1 18382:2 18395:1 18400:1 18406:1 18408:1 18409:2 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:2 18483:1 18484:1 18491:1 18510:2 18513:2 18526:1 18545:5 18568:1 18589:6 18590:3 18594:2 18603:2 18606:1 18611:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18756:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:6 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18959:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:3 19032:1 19037:1 19039:1 19041:1 19042:2 19050:1 19063:5 19088:1 19098:2 19101:1 19102:2 19120:1 19143:2 19150:1 19186:1 19208:1 19216:1 19217:1 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19488:1 19495:1 19557:1 19565:1 19580:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:2 19658:1 19659:2 19667:1 19675:2 19676:3 19678:1 19680:1 19683:1 19692:1 19693:1 19694:1 19701:1 19718:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19895:1 19897:1 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:4 20032:1 20035:1 20037:1 20039:1 20042:1 20044:1 20052:1 20061:2 20063:3 20064:1 20080:2 20085:1 20097:1 20112:2 20127:2 20142:1 20154:1 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:3 20226:2 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:2 20295:1 20305:3 20339:1 20343:1 20349:1 20354:1 20355:1 20381:4 20383:5 20385:3 20386:1 20388:2 20396:2 20400:1 20414:1 20423:1 20432:1 20433:1 20434:4 20442:1 20450:1 20455:2 20457:1 20464:3 20466:2 20467:3 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20552:3 20564:1 20567:2 20574:1 20598:4 20599:1 20600:1 20617:2 20624:1 20625:26 20631:2 20632:1 20634:4 20637:3 20638:1 20640:2 20642:1 20644:1 20645:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:1 20708:1 20726:1 20736:1 20738:1 20771:3 20776:1 20779:6 20786:1 20804:2 20807:1 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:3 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21121:1 21128:2 21131:1 21136:1 21144:3 21145:1 21146:1 21155:3 21160:2 21177:2 21180:1 21183:1 21190:2 21226:1 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21339:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:2 21455:1 21461:1 21466:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:12 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:6 21748:1 21751:1 21764:1 21778:1 21780:1 21789:2 21838:1 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:3 22005:5 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22110:3 22111:2 22112:1 22115:1 22133:1 22137:1 22154:1 22155:1 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:1 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:1 22295:2 22297:3 22300:1 22304:2 22307:1 22311:2 22320:4 22323:1 22352:1 22357:2 22359:1 22371:2 22384:4 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:3 22544:1 22546:4 22549:1 22559:2 22560:1 22585:1 22594:1 22595:2 22598:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22749:4 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:2 22914:3 22942:10 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:8 23128:2 23129:4 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23327:1 23340:1 23363:1 23366:1 23379:1 23387:1 23388:2 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23452:1 23460:1 23464:1 23487:1 23510:1 23523:1 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23670:1 23685:1 23688:1 23703:1 23705:2 23722:1 23735:3 23740:1 23749:1 23753:2 23767:1 23770:5 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:1 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:5 23910:1 23937:3 23940:1 23952:1 23953:1 23956:1 23972:2 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:1 24057:1 24064:1 24083:1 24087:2 24089:1 24091:1 24097:1 24099:1 24116:1 24130:2 24134:1 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:1 24474:1 24478:1 24481:1 24489:1 24493:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:3 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:2 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:2 24748:1 24756:12 24787:3 24797:1 24815:1 24816:2 24819:1 24838:2 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:3 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:2 24934:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25013:1 25015:1 25020:2 25024:1 25025:1 25026:1 25035:2 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:4 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25325:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:6 25443:1 25462:1 25467:3 25490:1 25500:2 25509:1 25525:1 25528:1 25529:1 25540:1 25541:1 25542:1 25549:25 25550:4 25553:5 25554:1 25555:3 25564:1 25590:7 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:2 25688:3 25696:2 25719:11 25720:1 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:2 25808:1 25819:1 25821:1 25824:1 25826:1 25828:1 25856:1 25859:1 25878:2 25880:1 25881:1 25895:1 25897:1 25902:1 25912:3 25922:1 25943:1 25946:1 25964:1 25965:2 25966:2 25968:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:1 26019:2 26023:1 26024:1 26032:1 26033:1 26035:1 26044:2 26046:1 26050:1 26054:1 26062:2 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:3 26211:1 26219:1 26232:7 26241:1 26245:1 26247:5 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26388:1 26399:1 26413:1 26414:1 26438:2 26450:1 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:2 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 22:1 35:1 38:2 52:1 62:1 66:1 68:1 70:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 157:1 160:1 166:1 168:3 177:1 185:4 205:7 223:1 243:1 259:1 268:2 282:1 283:31 294:2 312:1 313:3 315:4 323:1 328:1 340:1 342:1 358:1 378:1 392:2 420:3 427:1 435:1 440:1 507:1 516:1 549:1 550:4 553:1 561:2 567:3 590:4 594:2 597:1 598:1 599:1 611:2 620:1 628:2 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 729:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:7 818:3 828:2 829:1 840:1 843:13 846:1 856:1 860:1 868:4 872:7 875:1 881:1 883:1 884:1 888:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:2 964:2 970:2 982:1 983:2 987:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:1 1059:3 1067:2 1072:1 1075:1 1078:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1155:2 1182:1 1183:1 1190:2 1195:1 1209:1 1234:1 1238:1 1267:1 1274:1 1279:1 1281:3 1301:1 1303:2 1323:1 1326:2 1328:3 1331:5 1332:1 1345:1 1352:2 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:4 1471:1 1476:1 1479:1 1489:1 1491:1 1493:2 1496:3 1502:1 1520:4 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1628:1 1652:2 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1730:1 1732:1 1752:1 1793:1 1797:18 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1929:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:5 2042:1 2044:1 2047:1 2051:1 2057:1 2058:1 2060:3 2063:1 2064:2 2065:4 2068:1 2074:1 2077:2 2079:1 2096:1 2098:1 2104:2 2105:2 2108:2 2109:8 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:3 2261:1 2263:1 2269:1 2279:2 2298:3 2310:6 2320:1 2326:1 2344:1 2350:1 2360:5 2369:3 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:1 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:3 2596:2 2600:1 2605:1 2620:1 2628:1 2631:1 2635:1 2636:1 2645:1 2653:2 2670:3 2674:1 2683:22 2696:4 2702:1 2718:1 2719:1 2727:1 2733:11 2756:3 2761:5 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:1 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:5 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3059:1 3062:3 3089:1 3105:1 3109:12 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:2 3270:1 3281:1 3293:2 3299:1 3306:1 3317:1 3322:1 3326:1 3330:2 3332:5 3348:4 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:4 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:2 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:12 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:1 3533:12 3534:1 3537:1 3545:1 3548:5 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:3 3648:2 3649:1 3665:1 3667:1 3671:1 3672:1 3676:1 3680:1 3694:4 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:3 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3799:1 3806:1 3813:2 3814:1 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:3 3918:2 3924:1 3925:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4017:1 4034:1 4042:2 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:2 4212:1 4216:1 4220:1 4238:2 4256:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:1 4303:1 4331:1 4334:8 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:7 4425:1 4427:2 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:19 4515:2 4518:1 4530:1 4531:2 4538:1 4546:1 4557:2 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:6 4607:4 4608:5 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:2 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:2 4662:1 4682:1 4711:1 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4765:2 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:3 4822:1 4850:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:7 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5115:1 5116:1 5136:3 5143:1 5147:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:2 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5317:1 5332:1 5356:1 5365:2 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5493:3 5494:1 5518:1 5519:14 5533:4 5542:4 5546:1 5547:1 5551:3 5552:1 5554:2 5560:1 5577:3 5594:1 5596:1 5598:1 5613:1 5630:1 5649:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:2 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:3 5790:1 5791:1 5794:1 5799:1 5801:2 5803:1 5804:2 5805:2 5807:4 5813:4 5815:9 5816:5 5818:1 5857:1 5858:1 5876:1 5928:3 5931:1 5932:1 5957:2 5974:2 6030:1 6036:1 6041:1 6058:1 6062:1 6063:1 6068:1 6078:1 6080:1 6088:1 6103:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6171:1 6174:1 6177:1 6179:2 6180:1 6181:1 6191:1 6201:7 6212:2 6218:3 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6414:1 6448:1 6455:1 6458:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:1 6523:1 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6707:1 6713:4 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:1 6866:2 6880:1 6882:1 6883:2 6919:2 6920:12 6922:3 6933:2 6943:2 6944:3 6945:1 6963:4 6964:1 6979:50 6983:1 7003:4 7004:11 7006:1 7010:1 7030:2 7058:1 7061:1 7070:1 7081:1 7087:2 7105:1 7106:1 7107:2 7169:2 7196:3 7219:1 7223:1 7238:1 7244:4 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:2 7431:1 7432:1 7438:2 7444:1 7446:2 7449:2 7455:1 7460:2 7471:1 7473:7 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7723:1 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:2 7798:1 7800:1 7812:1 7813:2 7833:4 7837:1 7838:3 7863:3 7868:1 7869:2 7872:2 7877:1 7879:4 7892:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8007:1 8022:1 8033:1 8037:3 8042:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:1 8096:4 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:4 8219:2 8232:1 8233:1 8249:3 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:3 8365:1 8380:1 8384:2 8391:1 8403:2 8404:1 8434:1 8437:1 8441:7 8443:1 8444:1 8449:2 8452:1 8460:31 8463:2 8464:2 8483:2 8484:1 8493:1 8508:1 8531:1 8533:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8587:2 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8753:2 8757:1 8770:1 8771:1 8772:5 8778:1 8786:1 8790:3 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8983:2 8990:1 9004:7 9010:1 9018:1 9023:1 9030:4 9037:1 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:2 9089:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:1 9207:1 9215:1 9235:1 9256:1 9260:1 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9347:1 9382:1 9388:2 9410:3 9430:1 9433:1 9434:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9562:1 9584:2 9589:1 9592:1 9594:1 9603:1 9605:3 9607:2 9610:5 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:3 9652:3 9653:1 9658:1 9660:1 9668:3 9669:1 9682:3 9683:3 9689:2 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:5 9770:2 9775:3 9778:11 9795:1 9825:1 9826:1 9831:1 9833:1 9843:1 9866:2 9870:1 9885:1 9901:1 9902:2 9914:1 9922:1 9945:1 9956:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:4 10065:1 10066:1 10068:1 10072:1 10110:1 10111:2 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:1 10185:1 10187:1 10211:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:1 10273:1 10284:1 10293:1 10303:2 10309:1 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:3 10341:1 10361:6 10368:1 10391:1 10395:10 10396:1 10398:1 10400:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:1 10483:1 10484:1 10485:1 10490:1 10492:1 10493:1 10498:2 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:7 10572:3 10573:6 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10623:1 10629:1 10631:2 10634:3 10638:1 10647:1 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10686:1 10693:8 10701:1 10705:1 10725:1 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10829:2 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:3 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10998:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:1 11082:1 11102:1 11103:1 11115:3 11116:5 11123:2 11125:1 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11257:2 11271:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:2 11368:2 11397:1 11398:1 11409:1 11411:1 11412:4 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:15 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11631:3 11655:2 11687:1 11696:4 11697:2 11713:1 11715:1 11717:1 11719:1 11723:2 11724:1 11745:1 11765:3 11768:1 11771:1 11772:1 11788:1 11813:1 11824:1 11838:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:2 11972:1 11978:5 11982:4 11988:1 11995:1 11996:6 12016:1 12019:1 12027:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:3 12127:1 12143:1 12144:1 12145:2 12150:1 12154:1 12163:2 12164:1 12168:1 12169:1 12184:1 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:1 12265:1 12266:1 12280:4 12284:1 12285:3 12304:1 12320:1 12331:2 12360:1 12378:1 12385:1 12398:1 12418:1 12420:1 12429:1 12454:3 12456:1 12457:2 12460:4 12462:2 12465:2 12475:1 12480:1 12485:1 12486:2 12505:3 12521:1 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:3 12624:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:9 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12928:1 12933:1 12946:1 12954:1 12970:4 12971:1 12972:1 12986:1 13001:2 13011:1 13021:1 13032:2 13040:1 13049:1 13057:2 13065:2 13073:1 13075:3 13083:1 13084:1 13086:3 13088:9 13090:1 13092:6 13100:3 13104:1 13106:2 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13259:4 13272:1 13278:1 13287:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13360:2 13362:2 13367:1 13371:1 13383:2 13386:1 13391:4 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:1 13544:2 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:6 13639:1 13652:1 13655:1 13659:2 13676:1 13679:6 13680:3 13700:2 13708:1 13719:1 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:4 13859:1 13864:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13951:1 13959:2 13971:2 13979:1 14004:1 14015:2 14033:1 14043:10 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:4 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14216:1 14228:1 14252:2 14255:1 14263:7 14268:3 14273:1 14275:3 14284:1 14290:2 14295:3 14302:2 14303:1 14305:5 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14381:1 14388:1 14389:1 14418:7 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14540:3 14546:1 14548:1 14553:1 14556:4 14557:2 14570:1 14599:1 14616:3 14653:1 14662:1 14669:17 14670:1 14675:1 14687:4 14692:1 14695:1 14696:1 14710:1 14722:1 14730:2 14747:3 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14796:1 14801:1 14803:1 14809:2 14822:2 14825:1 14829:1 14858:1 14860:2 14897:3 14899:1 14900:1 14918:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:2 15033:1 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15280:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:4 15402:1 15405:5 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:2 15487:1 15490:1 15495:2 15508:4 15519:1 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:1 15576:1 15578:2 15583:6 15592:1 15605:1 15607:6 15608:1 15617:1 15621:1 15636:2 15638:2 15661:3 15663:2 15671:1 15675:1 15685:1 15688:1 15689:2 15697:2 15705:7 15706:2 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:2 15865:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15959:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:3 15992:3 15993:2 15994:1 16025:1 16028:1 16041:5 16042:3 16060:1 16073:1 16075:2 16102:1 16104:1 16113:7 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:1 16187:2 16189:5 16194:1 16195:1 16207:1 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:1 16301:8 16302:1 16305:4 16311:27 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:2 16402:1 16404:1 16405:1 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:5 16573:1 16575:1 16583:1 16592:1 16606:1 16616:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:2 16700:2 16720:1 16728:1 16735:1 16745:1 16770:1 16776:3 16778:1 16811:2 16870:4 16876:1 16887:1 16893:1 16900:1 16909:1 16926:1 16927:2 16928:1 16930:1 16949:2 16959:1 16963:5 16970:1 16991:1 16998:1 17009:1 17015:3 17021:2 17023:2 17027:1 17042:1 17045:1 17053:5 17057:1 17060:1 17065:1 17069:2068 17082:1 17086:1 17118:3 17119:1 17126:3 17128:1 17150:1 17158:1 17187:2 17193:2 17202:1 17211:2 17227:1 17234:1 17235:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:2 17276:4 17304:1 17346:6 17350:2 17352:2 17357:1 17359:1 17381:31 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:1 17669:1 17672:2 17673:3 17678:1 17685:1 17689:1 17691:1 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17769:1 17772:10 17791:1 17792:1 17807:7 17808:1 17819:1 17821:1 17826:1 17833:1 17838:1 17879:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:3 18202:4 18205:1 18206:1 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:4 18330:1 18349:1 18355:1 18356:4 18367:1 18368:1 18382:2 18395:1 18400:1 18406:1 18408:1 18409:2 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:2 18483:1 18484:1 18491:1 18510:2 18513:2 18526:1 18545:5 18568:1 18589:6 18590:3 18594:2 18603:2 18606:1 18611:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18756:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:6 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18959:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:3 19032:1 19037:1 19039:1 19041:1 19042:2 19050:1 19063:5 19088:1 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19186:1 19208:1 19216:1 19217:2 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19488:1 19495:1 19557:1 19565:1 19580:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:2 19658:1 19659:2 19667:1 19675:2 19676:3 19678:1 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19701:1 19718:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:1 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19895:1 19897:1 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:4 20032:1 20035:1 20037:1 20039:2 20042:1 20044:1 20052:1 20061:2 20063:3 20064:1 20080:2 20085:1 20097:1 20112:2 20127:2 20142:1 20154:2 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:3 20226:2 20228:3 20232:1 20235:1 20265:1 20272:1 20274:1 20278:2 20294:2 20295:1 20305:3 20339:1 20343:1 20349:1 20354:1 20355:1 20381:4 20383:5 20385:3 20386:1 20388:2 20396:2 20400:1 20414:1 20423:1 20432:1 20433:1 20434:4 20442:1 20450:1 20455:2 20457:1 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20552:3 20564:1 20567:2 20574:1 20598:4 20599:1 20600:1 20610:1 20617:2 20624:1 20625:27 20631:2 20632:1 20634:4 20637:3 20638:1 20640:2 20642:1 20644:1 20645:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:1 20708:1 20726:2 20736:1 20738:1 20771:3 20776:1 20779:6 20786:1 20804:2 20807:1 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:3 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21121:1 21128:2 21131:1 21136:1 21144:3 21145:1 21146:1 21155:3 21160:3 21177:2 21180:1 21183:1 21190:2 21226:1 21259:1 21261:2 21298:1 21302:1 21304:1 21317:1 21339:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:2 21455:1 21461:1 21466:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:12 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:6 21748:1 21751:1 21764:1 21778:1 21780:1 21789:2 21838:1 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:3 22005:5 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22110:3 22111:2 22112:1 22115:1 22133:1 22137:1 22154:1 22155:1 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:1 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:1 22295:2 22297:3 22300:1 22304:2 22307:1 22311:2 22320:4 22323:1 22352:1 22357:2 22359:1 22371:2 22384:4 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:4 22549:1 22559:2 22560:1 22585:1 22594:1 22595:2 22598:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22725:1 22749:4 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:2 22914:4 22942:10 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:8 23128:2 23129:4 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23327:1 23340:1 23363:1 23366:1 23379:1 23387:1 23388:3 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23452:1 23460:1 23464:1 23487:1 23510:1 23523:1 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:1 23688:1 23703:1 23705:2 23722:1 23735:3 23740:1 23749:1 23753:2 23767:1 23770:5 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:1 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:5 23910:1 23937:3 23940:1 23952:1 23953:1 23956:1 23972:2 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:1 24057:1 24064:1 24083:1 24087:2 24089:1 24091:1 24097:1 24099:1 24116:1 24130:2 24134:1 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:1 24474:1 24478:1 24481:1 24489:1 24493:2 24529:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:3 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:2 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:2 24748:1 24756:12 24787:3 24797:1 24815:1 24816:2 24819:1 24838:2 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:3 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:3 24934:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25013:1 25015:1 25020:2 25024:1 25025:1 25026:1 25035:2 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:4 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25325:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:6 25443:1 25462:1 25467:3 25490:1 25500:2 25509:1 25525:1 25528:1 25529:1 25540:1 25541:1 25542:1 25549:25 25550:4 25553:5 25554:1 25555:3 25564:1 25590:7 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:2 25688:3 25696:2 25719:11 25720:1 25721:2 25725:1 25729:1 25738:1 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:2 25808:1 25819:1 25821:1 25824:1 25826:1 25828:1 25856:1 25859:1 25878:2 25880:1 25881:1 25895:1 25897:1 25902:1 25912:3 25916:1 25922:1 25943:1 25946:1 25964:1 25965:2 25966:2 25968:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:1 26019:2 26023:1 26024:1 26032:1 26033:1 26035:1 26039:1 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26096:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:3 26211:1 26219:1 26232:7 26241:1 26245:1 26247:5 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26388:1 26399:1 26413:1 26414:1 26438:2 26440:1 26450:1 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:2 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 22:1 35:1 38:2 52:1 62:1 66:1 68:1 70:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:1 157:1 160:1 166:1 168:3 177:1 185:4 205:7 223:1 243:1 259:1 268:2 282:1 283:32 294:2 312:1 313:3 315:4 323:1 328:1 340:2 342:1 358:1 378:1 392:2 420:3 427:1 428:1 435:1 440:1 507:1 516:1 549:1 550:4 553:1 561:2 567:3 590:4 594:2 597:1 598:1 599:1 611:2 620:1 628:2 632:1 637:1 645:1 666:1 670:1 676:1 683:1 697:1 715:1 726:1 729:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:7 818:3 828:2 829:1 840:1 843:14 846:1 856:1 860:1 868:5 872:7 875:2 881:1 883:1 884:1 888:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:2 964:2 970:2 982:1 983:2 987:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:1 1059:3 1067:2 1072:1 1075:1 1078:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1155:2 1182:1 1183:1 1190:2 1195:1 1209:1 1234:1 1238:1 1245:1 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:3 1331:5 1332:1 1345:1 1352:2 1354:1 1355:1 1356:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:4 1471:1 1476:1 1479:1 1489:1 1491:1 1493:2 1496:3 1502:1 1506:1 1520:4 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1628:1 1637:1 1652:2 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1730:1 1732:1 1752:1 1776:1 1793:1 1797:18 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1929:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:5 2042:1 2044:1 2047:1 2051:1 2057:1 2058:1 2060:4 2063:1 2064:2 2065:4 2068:1 2074:1 2077:2 2079:1 2096:1 2098:1 2104:2 2105:2 2108:2 2109:8 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:3 2261:1 2263:1 2269:1 2279:2 2298:3 2303:1 2310:6 2320:1 2326:1 2344:1 2350:1 2360:5 2369:3 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:3 2596:3 2600:1 2605:1 2620:1 2628:1 2631:1 2635:2 2636:1 2645:1 2653:2 2670:4 2674:1 2683:23 2696:4 2702:1 2718:1 2719:1 2727:1 2733:11 2756:4 2761:6 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:1 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:5 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3044:1 3059:1 3062:3 3089:1 3105:1 3109:12 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:2 3261:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:2 3322:1 3326:1 3330:2 3332:6 3348:5 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:4 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:2 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:12 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:1 3533:12 3534:1 3537:1 3545:1 3548:5 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:1 3631:1 3633:3 3638:3 3648:2 3649:1 3665:1 3667:1 3671:1 3672:1 3676:1 3680:1 3694:4 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:3 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3799:1 3806:1 3813:2 3814:1 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:3 3918:2 3924:1 3925:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 4000:1 4013:2 4017:1 4034:1 4042:2 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:2 4212:1 4216:1 4220:1 4238:2 4256:1 4260:1 4263:2 4264:1 4272:3 4284:1 4290:1 4300:2 4303:1 4319:1 4331:1 4334:8 4358:1 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:7 4425:1 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:21 4515:2 4518:1 4530:1 4531:2 4538:1 4546:1 4557:2 4560:7 4566:2 4577:1 4578:1 4591:1 4593:1 4594:1 4596:6 4607:4 4608:5 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:2 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:3 4662:1 4682:1 4686:1 4711:2 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4765:2 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:3 4822:1 4850:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:7 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5115:1 5116:1 5136:3 5143:1 5147:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5249:1 5254:1 5278:4 5279:1 5283:1 5298:1 5304:1 5311:1 5317:1 5332:1 5356:1 5365:2 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5493:3 5494:1 5518:1 5519:14 5533:4 5542:4 5546:1 5547:1 5551:3 5552:1 5554:2 5560:1 5577:3 5594:1 5596:1 5598:1 5613:1 5630:1 5649:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:2 5695:1 5711:5 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:3 5790:1 5791:1 5794:2 5799:1 5801:2 5803:1 5804:2 5805:3 5807:4 5813:4 5815:9 5816:5 5818:1 5857:1 5858:1 5876:2 5928:3 5931:1 5932:1 5957:2 5974:2 6030:1 6036:1 6041:1 6052:1 6058:1 6062:2 6063:1 6068:1 6078:1 6080:1 6088:2 6099:1 6103:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6171:1 6174:1 6177:1 6179:2 6180:1 6181:1 6191:1 6201:7 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6414:2 6448:1 6455:1 6458:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:2 6523:1 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:2 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6707:1 6713:5 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:2 6920:12 6922:4 6933:2 6943:2 6944:3 6945:1 6963:4 6964:1 6979:50 6983:1 7003:5 7004:11 7006:1 7010:2 7030:2 7058:1 7061:1 7070:1 7081:2 7087:2 7105:1 7106:1 7107:2 7119:1 7169:2 7196:3 7210:1 7219:1 7223:2 7238:1 7244:6 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7345:1 7348:1 7371:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:2 7420:1 7431:1 7432:1 7438:2 7444:1 7446:2 7449:2 7455:1 7460:3 7471:1 7473:7 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7723:1 7726:1 7729:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:3 7798:1 7800:1 7812:1 7813:2 7833:4 7837:1 7838:3 7863:3 7868:1 7869:2 7872:2 7877:1 7879:4 7892:1 7929:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8005:1 8007:1 8022:1 8033:1 8037:3 8042:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:1 8096:4 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:5 8219:2 8232:1 8233:1 8249:3 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:3 8365:1 8380:2 8384:2 8388:1 8391:1 8403:2 8404:1 8434:1 8437:1 8441:7 8443:1 8444:1 8449:2 8452:1 8460:32 8463:2 8464:2 8483:2 8484:1 8493:1 8508:1 8531:1 8533:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8586:1 8587:2 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8753:2 8757:1 8770:1 8771:1 8772:5 8778:1 8786:1 8790:4 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8977:1 8983:2 8990:1 9004:7 9010:1 9018:1 9023:1 9030:4 9037:1 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:2 9089:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:1 9207:1 9215:1 9235:1 9256:1 9259:1 9260:1 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9347:1 9382:1 9388:2 9410:3 9430:1 9433:1 9434:1 9445:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9560:1 9562:1 9584:2 9589:1 9592:1 9594:1 9603:1 9605:3 9607:2 9610:5 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:3 9652:3 9653:1 9658:1 9660:1 9668:3 9669:1 9682:3 9683:3 9689:2 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:5 9770:2 9775:3 9778:11 9795:1 9825:1 9826:1 9831:1 9833:1 9843:1 9866:2 9869:1 9870:1 9885:1 9901:1 9902:2 9914:1 9922:1 9945:1 9956:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:4 10065:1 10066:1 10068:1 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:1 10185:1 10187:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:1 10273:1 10284:1 10293:1 10303:2 10309:1 10311:2 10316:1 10317:1 10332:2 10333:1 10337:1 10339:3 10341:1 10361:6 10368:1 10391:1 10395:10 10396:1 10398:1 10400:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:1 10483:1 10484:1 10485:1 10490:1 10492:1 10493:1 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:7 10572:3 10573:6 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10623:1 10626:1 10629:1 10631:2 10634:3 10638:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10686:1 10693:8 10701:1 10705:1 10724:1 10725:1 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10829:2 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:3 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10998:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:2 11082:1 11102:1 11103:1 11115:3 11116:5 11123:2 11125:1 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11257:2 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:2 11368:2 11397:1 11398:1 11409:1 11411:1 11412:5 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:16 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11623:1 11631:3 11655:2 11687:1 11696:4 11697:2 11713:1 11715:1 11717:1 11719:1 11723:2 11724:1 11745:1 11765:4 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:2 11966:1 11972:1 11978:5 11982:4 11987:1 11988:1 11995:1 11996:6 12016:1 12019:1 12027:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:3 12127:1 12143:1 12144:1 12145:2 12150:1 12154:1 12163:2 12164:1 12168:1 12169:1 12171:1 12184:1 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:1 12265:1 12266:1 12280:4 12284:1 12285:3 12304:1 12320:1 12331:2 12360:1 12378:1 12385:1 12395:1 12398:1 12418:1 12420:1 12429:1 12454:4 12456:1 12457:2 12460:4 12462:2 12465:2 12475:1 12480:1 12485:1 12486:2 12505:3 12521:1 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:3 12624:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:9 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12970:4 12971:1 12972:1 12986:1 13001:2 13011:1 13021:1 13032:2 13040:1 13049:2 13057:2 13065:2 13073:1 13075:3 13083:1 13084:1 13086:3 13088:9 13090:1 13092:6 13100:3 13104:1 13106:2 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13259:4 13272:1 13278:1 13287:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13360:2 13362:2 13367:1 13371:1 13383:2 13386:2 13391:4 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:1 13544:2 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:6 13639:1 13652:1 13655:1 13659:2 13676:1 13679:6 13680:3 13700:2 13708:1 13719:2 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:4 13859:1 13864:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13951:1 13955:1 13959:2 13971:2 13979:1 14004:1 14015:2 14033:1 14043:11 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:4 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14216:1 14228:1 14252:2 14255:1 14263:8 14268:3 14273:1 14275:3 14284:1 14290:2 14295:3 14302:2 14303:1 14305:5 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14381:1 14388:1 14389:1 14412:1 14418:7 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:3 14546:1 14548:1 14553:1 14556:4 14557:2 14570:1 14599:1 14616:3 14653:1 14662:1 14669:17 14670:1 14675:1 14687:4 14692:2 14695:1 14696:1 14710:1 14722:1 14730:2 14747:3 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14796:1 14801:1 14803:1 14809:2 14822:2 14825:1 14829:1 14858:1 14860:2 14897:3 14899:1 14900:1 14918:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:2 15033:1 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:1 15195:1 15205:1 15224:1 15241:1 15244:2 15260:2 15272:1 15278:1 15280:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15400:4 15402:1 15405:5 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:2 15487:1 15490:1 15495:2 15508:4 15516:1 15519:1 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:1 15576:1 15578:2 15583:6 15592:1 15605:1 15607:6 15608:1 15617:1 15621:1 15636:2 15638:2 15661:4 15663:2 15671:1 15675:1 15685:1 15688:1 15689:2 15697:2 15705:7 15706:2 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:2 15865:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15959:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:3 15992:3 15993:2 15994:1 16025:1 16028:1 16041:5 16042:4 16060:1 16073:1 16075:2 16089:1 16102:1 16104:1 16113:7 16119:1 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:1 16187:2 16189:5 16194:1 16195:1 16207:2 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:1 16301:8 16302:1 16305:4 16311:28 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:2 16402:1 16404:1 16405:2 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:5 16573:1 16575:1 16583:1 16592:1 16606:1 16616:1 16617:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:2 16700:2 16720:1 16728:1 16735:1 16745:1 16770:1 16776:3 16778:1 16811:2 16870:4 16876:1 16887:1 16893:1 16900:1 16909:1 16926:1 16927:2 16928:1 16930:1 16949:2 16959:1 16963:5 16970:1 16991:1 16998:1 17009:1 17015:3 17021:2 17023:2 17027:1 17042:1 17045:1 17047:1 17053:5 17057:1 17060:1 17065:1 17069:2128 17082:1 17086:1 17118:3 17119:1 17126:3 17128:1 17149:1 17150:1 17158:1 17187:2 17193:2 17202:1 17211:2 17227:1 17234:1 17235:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:3 17276:4 17304:1 17346:6 17350:2 17352:2 17357:1 17359:1 17381:32 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:1 17669:1 17672:2 17673:3 17678:1 17685:1 17689:1 17691:2 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17766:1 17769:2 17772:10 17791:1 17792:1 17807:7 17808:1 17819:1 17821:1 17826:1 17833:1 17838:1 17879:1 17882:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:1 18097:3 18106:1 18115:1 18143:2 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:4 18202:4 18205:1 18206:1 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:4 18330:1 18349:2 18355:1 18356:4 18367:1 18368:1 18382:2 18395:1 18400:1 18406:1 18408:1 18409:2 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:2 18483:1 18484:1 18491:1 18510:2 18513:2 18526:1 18545:5 18552:1 18568:1 18589:6 18590:3 18594:2 18603:2 18606:1 18611:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18756:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:7 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18875:1 18887:1 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18956:1 18959:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:3 19032:1 19037:1 19039:1 19041:1 19042:2 19050:1 19063:5 19088:1 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19186:1 19208:1 19216:1 19217:2 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19466:1 19470:1 19488:1 19495:1 19549:1 19557:1 19565:1 19580:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:2 19658:1 19659:2 19667:1 19675:2 19676:3 19678:1 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:2 19718:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:1 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:2 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:2 19822:1 19836:1 19843:1 19865:1 19878:1 19892:2 19895:1 19897:1 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:4 20032:1 20035:1 20037:1 20039:2 20042:1 20044:1 20052:1 20061:2 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20142:1 20154:2 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20226:2 20228:3 20229:1 20231:1 20232:1 20235:1 20265:1 20272:2 20274:1 20278:2 20294:2 20295:1 20305:3 20339:1 20343:1 20349:1 20354:1 20355:1 20381:4 20383:5 20385:3 20386:1 20388:2 20396:2 20400:1 20414:1 20423:1 20432:1 20433:1 20434:4 20442:1 20450:1 20455:2 20457:1 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20552:3 20564:1 20567:2 20574:1 20598:4 20599:1 20600:1 20610:1 20617:2 20624:1 20625:28 20631:2 20632:1 20634:4 20637:3 20638:1 20640:2 20642:1 20644:1 20645:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:1 20708:1 20726:2 20736:1 20738:1 20771:3 20776:1 20779:6 20786:1 20804:2 20807:1 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:3 20903:2 20911:1 20912:1 20932:1 20952:1 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:1 21100:1 21114:1 21115:2 21121:1 21128:2 21131:1 21136:1 21138:1 21144:3 21145:1 21146:1 21155:3 21160:3 21177:2 21180:1 21183:1 21190:2 21211:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21317:1 21339:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:2 21455:1 21461:1 21466:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:12 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:1 21636:1 21639:1 21640:1 21649:1 21652:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:1 21746:6 21748:1 21751:1 21764:1 21778:1 21780:1 21789:2 21795:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:3 22005:5 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22110:3 22111:2 22112:1 22115:1 22133:1 22137:1 22142:1 22154:1 22155:2 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:1 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:3 22295:2 22297:3 22300:1 22304:2 22307:1 22311:2 22320:4 22323:1 22327:1 22352:1 22357:2 22359:1 22367:1 22371:2 22384:4 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:4 22549:1 22559:2 22560:1 22585:1 22594:1 22595:2 22598:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22725:1 22749:4 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:2 22914:4 22942:10 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:8 23128:2 23129:4 23139:1 23146:1 23149:2 23152:1 23157:1 23160:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23327:1 23340:1 23363:2 23366:1 23379:1 23387:1 23388:3 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23447:1 23452:1 23460:1 23464:1 23487:1 23510:1 23523:1 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:1 23688:1 23703:1 23705:2 23722:1 23735:3 23740:1 23749:1 23753:2 23760:1 23767:1 23770:5 23792:1 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:1 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:5 23910:1 23937:3 23940:1 23952:1 23953:1 23956:1 23972:2 23999:1 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:1 24057:1 24064:1 24083:1 24087:2 24089:1 24091:1 24097:1 24099:1 24116:1 24130:2 24134:1 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:1 24474:1 24478:1 24481:1 24489:1 24493:2 24526:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:1 24573:1 24576:3 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:2 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:2 24748:1 24756:12 24767:1 24787:3 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:3 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:3 24934:1 24942:1 24943:2 24951:1 24967:1 24983:1 24989:1 24990:1 24993:1 25002:1 25013:1 25015:1 25020:2 25024:1 25025:1 25026:1 25035:2 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:6 25443:1 25462:1 25467:4 25490:1 25500:2 25509:1 25516:1 25525:1 25528:1 25529:1 25540:1 25541:1 25542:1 25549:26 25550:4 25553:5 25554:1 25555:3 25564:1 25577:1 25590:7 25607:1 25616:1 25640:1 25648:2 25663:1 25677:1 25678:2 25688:4 25696:2 25719:11 25720:1 25721:2 25725:1 25729:1 25738:1 25743:2 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25771:1 25772:1 25780:2 25784:1 25790:1 25794:1 25795:2 25804:2 25808:1 25819:1 25821:1 25824:1 25826:1 25828:1 25856:1 25859:1 25878:2 25880:1 25881:1 25895:1 25897:1 25902:1 25912:5 25916:1 25922:1 25943:1 25946:1 25964:1 25965:2 25966:2 25968:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:2 26019:4 26023:1 26024:1 26032:1 26033:1 26035:1 26039:1 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26096:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:3 26211:1 26219:1 26232:7 26241:1 26245:1 26247:5 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26388:1 26399:1 26413:1 26414:1 26438:2 26440:1 26450:1 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26561:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:1 22:1 35:1 38:2 52:1 62:1 66:1 68:1 70:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:1 157:1 160:1 166:1 168:3 177:1 185:4 205:8 206:1 223:1 243:1 259:1 268:2 282:1 283:33 294:2 312:1 313:3 315:4 323:1 328:1 340:2 342:1 345:1 358:1 378:1 392:2 420:3 427:1 428:1 431:1 433:1 435:1 440:1 459:1 507:1 516:1 549:1 550:4 553:1 561:2 567:4 590:4 594:2 597:1 598:1 599:1 611:2 620:1 628:3 632:1 637:2 645:1 666:1 670:2 676:1 683:1 697:1 715:1 726:1 729:1 737:1 740:1 755:1 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:7 818:3 828:3 829:1 840:1 843:15 846:1 856:1 860:1 868:5 872:7 875:2 881:1 883:1 884:1 888:1 890:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:2 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1155:2 1182:1 1183:1 1190:2 1195:1 1209:1 1234:1 1238:1 1245:1 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:4 1329:1 1331:6 1332:1 1345:1 1352:2 1354:1 1355:1 1356:1 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:5 1444:1 1471:1 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1506:1 1520:5 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1730:1 1732:1 1752:1 1776:1 1793:1 1795:1 1797:18 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1929:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:5 2042:1 2044:1 2047:1 2051:1 2057:1 2058:1 2060:4 2063:1 2064:2 2065:4 2068:1 2074:1 2077:2 2079:1 2096:1 2098:1 2104:2 2105:2 2108:2 2109:8 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:1 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2261:1 2263:1 2269:1 2273:1 2279:2 2298:4 2303:1 2310:6 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:4 2374:1 2391:2 2397:1 2401:2 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:3 2596:4 2600:1 2605:1 2620:1 2628:1 2631:1 2635:2 2636:2 2645:1 2653:2 2670:5 2674:1 2683:23 2696:4 2702:1 2718:1 2719:1 2727:1 2733:11 2756:5 2761:7 2762:1 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:5 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3044:1 3059:1 3062:3 3089:1 3105:1 3109:12 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:1 3230:1 3238:1 3244:2 3261:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:2 3322:1 3326:1 3330:2 3332:7 3348:5 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:2 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:12 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:12 3534:1 3537:1 3545:1 3548:6 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:2 3631:1 3633:3 3638:3 3648:2 3649:2 3665:1 3667:1 3671:1 3672:2 3676:1 3680:1 3694:4 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:3 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3799:1 3806:1 3813:2 3814:1 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:4 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:1 4013:2 4017:1 4034:1 4042:2 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4238:2 4256:1 4260:1 4263:2 4264:1 4269:1 4272:3 4284:1 4290:3 4300:2 4303:1 4319:1 4331:1 4334:8 4358:1 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:7 4425:1 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:22 4515:2 4518:1 4530:1 4531:2 4538:1 4540:1 4546:1 4557:2 4560:7 4566:2 4577:2 4578:1 4591:1 4593:1 4594:1 4596:7 4607:4 4608:6 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:2 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:3 4662:1 4682:1 4686:1 4711:2 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4764:1 4765:2 4769:2 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:3 4822:1 4850:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:7 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5115:1 5116:1 5136:3 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5249:1 5254:1 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5332:1 5356:1 5365:2 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5493:4 5494:1 5518:1 5519:14 5533:4 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5577:3 5594:1 5596:1 5598:1 5613:1 5630:1 5649:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:2 5695:1 5711:6 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:3 5790:1 5791:1 5794:2 5799:1 5801:2 5803:1 5804:2 5805:3 5807:5 5810:1 5813:4 5815:9 5816:5 5818:1 5857:1 5858:1 5876:2 5928:3 5931:1 5932:1 5957:2 5974:2 6030:1 6036:1 6041:1 6052:1 6058:1 6062:2 6063:1 6068:1 6078:1 6080:1 6088:2 6099:1 6100:1 6103:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6171:1 6174:1 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6448:1 6455:1 6458:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:2 6523:2 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:3 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6707:1 6713:5 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:2 6920:13 6922:5 6933:2 6943:2 6944:4 6945:1 6963:5 6964:1 6979:50 6983:1 7003:6 7004:11 7006:1 7010:2 7016:1 7030:2 7058:1 7061:1 7070:1 7080:1 7081:2 7087:2 7105:1 7106:1 7107:2 7119:2 7169:2 7196:3 7210:1 7219:1 7221:1 7223:2 7238:1 7244:6 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:2 7417:1 7420:1 7431:1 7432:1 7438:2 7444:1 7446:2 7449:2 7455:1 7460:3 7471:1 7473:8 7488:2 7493:1 7495:1 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7723:1 7726:1 7729:1 7732:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:3 7798:1 7800:1 7812:1 7813:2 7833:4 7837:2 7838:3 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7892:1 7929:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8005:1 8007:1 8022:1 8033:1 8037:3 8042:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:1 8096:4 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:5 8219:2 8232:1 8233:1 8249:3 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:2 8384:2 8388:1 8391:1 8403:2 8404:1 8434:1 8437:2 8441:7 8443:1 8444:1 8449:2 8452:1 8460:33 8463:2 8464:2 8483:2 8484:1 8493:1 8508:1 8521:1 8531:1 8533:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8586:1 8587:2 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:2 8757:1 8770:1 8771:1 8772:5 8778:1 8786:1 8790:4 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8977:1 8983:2 8990:1 9004:7 9010:1 9018:1 9023:1 9026:1 9030:4 9037:1 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:2 9089:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:1 9207:1 9215:1 9235:1 9256:1 9259:1 9260:1 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9347:1 9382:1 9388:2 9410:3 9430:1 9433:1 9434:1 9445:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9560:1 9562:1 9584:2 9589:1 9592:1 9594:1 9603:1 9605:3 9607:2 9610:5 9619:1 9620:1 9621:1 9625:1 9633:1 9636:2 9651:3 9652:3 9653:1 9658:1 9660:1 9668:3 9669:1 9682:3 9683:3 9689:2 9690:1 9692:2 9693:1 9717:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:12 9795:1 9825:1 9826:1 9831:1 9833:2 9843:1 9866:2 9869:1 9870:1 9885:1 9901:1 9902:2 9914:1 9922:1 9945:1 9956:1 9970:3 9972:2 9974:2 9976:2 9984:2 9993:2 10003:1 10007:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:6 10065:1 10066:1 10068:1 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10124:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:1 10185:1 10187:1 10191:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:2 10316:1 10317:1 10319:1 10332:2 10333:1 10337:1 10339:3 10341:1 10361:6 10368:1 10391:1 10395:10 10396:1 10398:1 10400:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:1 10483:1 10484:1 10485:1 10490:1 10492:1 10493:1 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:7 10572:4 10573:6 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10623:1 10626:2 10629:1 10631:2 10634:3 10638:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10686:1 10693:8 10701:1 10705:1 10724:1 10725:1 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10829:2 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:3 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10988:1 10998:1 11038:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:2 11082:1 11102:1 11103:1 11115:4 11116:5 11123:2 11125:1 11128:1 11135:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11257:2 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:2 11368:2 11397:1 11398:1 11409:1 11411:1 11412:6 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:16 11568:1 11575:1 11578:1 11586:2 11590:5 11593:1 11599:1 11622:1 11623:1 11631:3 11655:2 11687:1 11696:4 11697:2 11713:1 11715:1 11717:1 11719:1 11723:2 11724:1 11745:2 11765:4 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:2 11966:1 11972:1 11978:6 11982:4 11987:1 11988:1 11995:1 11996:6 12016:1 12019:1 12027:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:1 12107:1 12110:1 12118:6 12123:1 12124:4 12127:1 12143:1 12144:1 12145:2 12150:1 12154:1 12163:2 12164:1 12168:1 12169:1 12171:1 12184:2 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:3 12304:1 12320:1 12331:2 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12418:1 12420:2 12429:1 12431:1 12454:4 12456:1 12457:2 12460:4 12462:2 12465:2 12475:1 12480:1 12485:1 12486:2 12505:3 12521:1 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:3 12624:1 12626:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:10 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:1 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12970:4 12971:1 12972:1 12986:1 13001:2 13011:1 13021:1 13032:2 13040:1 13049:2 13057:2 13065:2 13073:1 13075:3 13083:1 13084:1 13086:3 13088:9 13090:1 13092:6 13100:3 13104:1 13106:2 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13254:1 13259:4 13272:1 13278:1 13287:1 13288:3 13301:1 13304:1 13321:1 13340:2 13353:2 13360:2 13362:3 13367:1 13371:1 13383:2 13386:2 13391:4 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:1 13544:2 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:6 13639:1 13652:1 13655:1 13659:2 13676:1 13679:6 13680:3 13700:2 13708:1 13719:2 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:4 13859:1 13862:1 13864:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13951:1 13955:1 13959:2 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:11 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:5 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14216:1 14228:1 14252:3 14255:1 14263:8 14268:3 14273:1 14275:3 14284:1 14290:2 14295:4 14302:2 14303:1 14305:6 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:1 14381:1 14388:2 14389:1 14396:1 14412:1 14418:8 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:3 14546:1 14548:1 14553:1 14556:4 14557:2 14570:1 14599:1 14616:4 14653:1 14662:1 14669:17 14670:1 14675:1 14687:4 14692:2 14695:1 14696:1 14710:1 14722:1 14730:2 14747:3 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14796:1 14801:2 14803:1 14809:2 14812:1 14822:2 14825:1 14829:1 14858:1 14860:2 14897:4 14899:1 14900:1 14918:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:2 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:1 15195:1 15205:1 15224:1 15241:1 15244:2 15248:1 15260:2 15272:1 15278:1 15280:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15366:1 15400:4 15402:1 15405:5 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:2 15487:1 15490:1 15495:2 15508:4 15516:1 15519:1 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:1 15605:1 15607:6 15608:1 15617:1 15621:1 15636:2 15638:2 15661:4 15663:2 15671:1 15675:1 15685:1 15688:2 15689:2 15697:2 15705:7 15706:3 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15843:1 15851:2 15865:1 15869:1 15880:1 15884:3 15897:2 15916:1 15920:1 15941:1 15959:1 15961:1 15962:1 15963:3 15970:2 15971:1 15974:1 15981:4 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16073:2 16075:2 16089:1 16102:1 16104:1 16113:7 16119:1 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:1 16187:2 16189:5 16194:1 16195:1 16207:2 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:1 16301:8 16302:1 16305:4 16311:29 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:2 16402:1 16404:1 16405:3 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:1 16557:2 16571:5 16573:1 16575:1 16583:1 16592:2 16606:1 16616:1 16617:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:2 16700:2 16720:1 16728:1 16735:1 16745:1 16770:1 16776:3 16778:1 16811:2 16870:4 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:1 16930:1 16949:2 16959:1 16963:5 16970:1 16991:1 16998:1 17009:1 17015:3 17021:2 17023:2 17027:1 17042:1 17045:1 17047:1 17053:5 17057:1 17060:1 17065:1 17069:2191 17082:1 17086:1 17118:4 17119:1 17126:3 17128:1 17149:1 17150:1 17158:1 17161:1 17187:2 17193:2 17202:1 17211:2 17227:2 17234:1 17235:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:3 17276:4 17304:1 17346:6 17350:2 17352:2 17357:1 17359:1 17381:33 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17460:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:2 17669:1 17672:2 17673:3 17678:1 17685:1 17689:1 17691:2 17697:3 17701:1 17707:1 17712:1 17719:5 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17766:1 17769:3 17772:10 17791:1 17792:1 17807:7 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:1 17882:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 17995:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:2 18097:3 18106:1 18115:1 18143:2 18148:1 18157:1 18159:1 18164:1 18170:2 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:4 18202:5 18205:1 18206:1 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:5 18330:1 18345:1 18349:2 18355:1 18356:4 18367:1 18368:1 18382:3 18384:1 18395:1 18400:1 18406:1 18408:1 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:2 18483:1 18484:1 18491:1 18510:2 18513:2 18526:1 18545:5 18552:1 18568:1 18589:6 18590:3 18594:2 18603:2 18606:1 18611:1 18612:1 18643:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18756:1 18758:3 18762:4 18774:1 18796:1 18802:1 18804:1 18806:7 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18875:1 18887:1 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18956:1 18959:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:1 19011:1 19016:1 19027:3 19032:1 19037:1 19039:1 19041:1 19042:2 19050:1 19063:6 19088:1 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19466:2 19470:1 19488:1 19495:1 19549:1 19557:1 19565:1 19580:1 19581:1 19597:1 19603:1 19631:1 19640:1 19641:2 19649:1 19656:2 19658:1 19659:2 19667:1 19675:3 19676:3 19678:1 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:2 19710:1 19718:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:3 19822:1 19836:1 19843:1 19865:1 19878:2 19892:2 19895:1 19897:1 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:5 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20061:2 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20142:1 20154:2 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20226:2 20228:3 20229:1 20231:1 20232:1 20235:1 20265:1 20272:2 20274:1 20278:2 20294:2 20295:1 20305:3 20339:1 20343:1 20349:1 20354:1 20355:1 20381:4 20383:5 20385:3 20386:1 20388:2 20396:2 20400:1 20414:1 20423:1 20432:1 20433:1 20434:4 20442:1 20450:1 20455:2 20457:1 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20564:1 20567:2 20574:1 20598:4 20599:1 20600:1 20610:1 20617:2 20624:1 20625:29 20631:2 20632:1 20634:4 20637:3 20638:1 20640:3 20642:1 20644:1 20645:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:1 20708:1 20726:2 20736:1 20738:1 20771:3 20776:1 20779:6 20786:1 20804:2 20807:2 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:3 20903:2 20911:1 20912:1 20932:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:3 21177:2 21180:1 21183:1 21190:2 21211:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21317:1 21326:1 21339:1 21342:3 21345:1 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:3 21455:1 21461:1 21466:1 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:12 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21732:3 21735:1 21746:6 21748:2 21751:1 21764:1 21778:1 21780:1 21789:2 21795:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:3 22005:5 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:2 22137:1 22142:1 22154:1 22155:2 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:1 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:3 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:4 22323:1 22327:2 22352:1 22357:2 22359:1 22367:1 22371:2 22384:4 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:4 22549:1 22559:2 22560:1 22585:1 22594:1 22595:2 22598:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22709:1 22713:1 22715:3 22723:2 22725:1 22749:4 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:3 22914:5 22942:10 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:8 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23327:1 23340:1 23363:2 23366:1 23379:1 23387:1 23388:3 23389:1 23391:1 23393:2 23397:1 23409:5 23440:1 23443:1 23444:1 23447:1 23452:1 23460:1 23464:1 23487:1 23510:1 23523:1 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:1 23688:1 23703:1 23705:2 23722:1 23735:4 23740:1 23749:1 23753:2 23760:1 23767:1 23770:5 23782:1 23792:1 23796:4 23797:1 23814:1 23833:1 23835:1 23838:2 23847:2 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:6 23910:1 23937:3 23940:1 23952:1 23953:1 23956:1 23972:2 23999:1 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:1 24057:1 24064:1 24083:1 24087:3 24089:1 24091:1 24097:1 24099:1 24116:1 24130:2 24134:1 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24434:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:1 24474:1 24478:1 24481:2 24489:1 24493:2 24526:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:2 24573:1 24576:3 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:3 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:2 24748:1 24756:12 24767:1 24787:3 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:5 24848:2 24849:2 24861:1 24866:2 24869:1 24876:3 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:3 24934:1 24942:1 24943:2 24951:1 24967:3 24983:1 24989:1 24990:1 24993:1 25002:1 25006:1 25013:1 25015:1 25020:2 25024:1 25025:1 25026:1 25035:2 25047:1 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:6 25443:1 25462:1 25467:4 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:1 25542:1 25549:26 25550:4 25553:5 25554:1 25555:3 25564:1 25577:1 25590:7 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:3 25688:4 25696:2 25719:12 25720:1 25721:2 25725:3 25729:1 25738:1 25743:2 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25771:1 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25804:2 25808:1 25819:1 25821:1 25824:1 25826:2 25828:1 25856:1 25859:1 25878:2 25880:1 25881:1 25895:1 25897:1 25902:1 25912:5 25916:1 25922:1 25943:1 25946:1 25964:1 25965:2 25966:2 25968:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:2 26019:5 26023:1 26024:1 26032:1 26033:1 26035:1 26039:1 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26096:1 26098:1 26121:1 26143:1 26151:1 26152:1 26155:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26202:1 26204:3 26211:1 26219:1 26232:7 26241:1 26243:1 26245:1 26247:5 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26388:1 26399:1 26413:1 26414:1 26438:2 26440:1 26450:1 26451:1 26470:2 26488:2 26507:1 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26561:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:2 22:1 35:1 38:3 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:1 157:1 160:2 166:1 168:3 177:1 185:4 205:8 206:1 223:1 243:1 259:1 263:1 268:2 282:1 283:33 294:2 312:1 313:3 315:5 323:1 328:1 340:2 342:1 345:1 358:1 378:1 392:2 420:3 427:1 428:1 431:1 433:1 435:1 440:1 459:1 507:1 516:1 549:1 550:4 553:1 561:2 567:4 590:4 594:2 597:1 598:1 599:1 611:2 620:1 628:3 632:1 637:2 645:1 666:1 670:2 676:1 683:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 755:2 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:8 818:3 828:3 829:1 840:1 843:15 846:1 856:1 860:1 868:5 872:7 875:2 881:1 883:1 884:1 888:1 890:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:3 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1155:2 1182:1 1183:1 1190:2 1195:1 1209:1 1234:1 1238:1 1245:1 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:7 1332:1 1345:1 1351:1 1352:2 1354:1 1355:1 1356:1 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:7 1444:1 1471:1 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1506:1 1520:5 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:1 1752:1 1776:1 1793:1 1795:2 1797:18 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1929:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:5 2042:1 2044:1 2047:2 2051:1 2057:1 2058:1 2060:4 2063:2 2064:2 2065:4 2068:1 2074:1 2077:2 2079:1 2096:1 2098:1 2104:2 2105:2 2108:2 2109:8 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:2 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2261:1 2263:1 2269:1 2273:2 2279:2 2298:4 2303:1 2310:6 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:4 2374:1 2390:1 2391:2 2397:1 2401:3 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2466:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:3 2596:4 2600:1 2605:1 2620:1 2628:1 2631:1 2635:2 2636:2 2645:2 2653:2 2670:5 2674:1 2683:23 2696:4 2702:1 2718:1 2719:1 2727:1 2733:11 2749:1 2756:5 2761:7 2762:1 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:5 2999:1 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3059:1 3062:4 3089:1 3105:2 3109:12 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:2 3322:1 3326:1 3330:2 3332:7 3348:5 3354:2 3355:1 3356:1 3357:2 3358:2 3364:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:2 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:12 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:12 3534:1 3537:1 3545:1 3548:7 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:2 3631:1 3633:3 3638:3 3648:2 3649:2 3665:1 3667:1 3671:1 3672:2 3676:1 3680:1 3694:4 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:3 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3799:1 3806:2 3813:2 3814:1 3819:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:6 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:1 4013:2 4017:1 4034:1 4042:2 4046:1 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:2 4129:1 4145:1 4168:1 4170:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4238:2 4256:1 4260:1 4263:2 4264:1 4269:1 4272:3 4284:1 4290:3 4300:2 4303:1 4319:1 4331:1 4334:8 4358:1 4365:1 4388:1 4390:1 4398:1 4403:1 4409:1 4414:7 4425:1 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:23 4515:2 4518:1 4530:1 4531:2 4538:1 4540:2 4546:1 4557:2 4560:7 4566:2 4577:2 4578:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:6 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:2 4621:1 4622:1 4626:1 4628:2 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:3 4662:1 4682:1 4686:1 4711:2 4715:2 4716:1 4734:2 4751:1 4754:1 4763:2 4764:1 4765:3 4769:2 4774:1 4776:2 4787:1 4793:1 4795:1 4806:1 4812:2 4817:3 4822:1 4850:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5115:1 5116:1 5123:1 5136:3 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5249:1 5254:1 5261:1 5276:1 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5332:1 5341:1 5356:1 5365:2 5366:1 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5493:4 5494:1 5518:1 5519:14 5533:4 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5577:3 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:6 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:3 5790:1 5791:1 5794:2 5797:1 5799:1 5801:2 5803:1 5804:2 5805:3 5807:5 5810:1 5813:4 5815:10 5816:5 5818:1 5857:1 5858:1 5876:2 5928:3 5931:1 5932:1 5957:2 5974:2 6021:1 6030:1 6036:1 6041:1 6052:1 6058:1 6062:2 6063:1 6068:1 6078:1 6080:1 6088:2 6099:1 6100:1 6103:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6171:1 6174:1 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6448:1 6455:1 6458:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:2 6523:2 6524:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6601:3 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:2 6672:1 6674:1 6684:1 6692:1 6705:1 6707:1 6713:5 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:2 6866:2 6874:1 6880:1 6882:1 6883:2 6919:2 6920:13 6922:5 6924:1 6933:2 6943:2 6944:4 6945:1 6963:5 6964:1 6979:51 6983:1 7003:6 7004:11 7006:1 7010:2 7016:1 7030:2 7040:1 7058:1 7061:1 7070:1 7080:1 7081:2 7087:2 7105:1 7106:1 7107:2 7119:2 7169:2 7196:3 7210:1 7219:1 7221:1 7223:2 7238:1 7244:6 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:2 7388:3 7389:1 7390:1 7402:1 7404:2 7417:1 7420:1 7431:1 7432:1 7438:2 7444:1 7446:2 7449:2 7455:1 7460:3 7471:1 7473:8 7488:2 7493:1 7495:2 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7657:1 7660:1 7668:2 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7723:1 7726:1 7729:1 7732:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:3 7798:1 7800:1 7812:1 7813:2 7833:4 7837:2 7838:3 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7892:1 7929:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8005:1 8007:1 8022:1 8033:1 8037:3 8042:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:2 8096:4 8100:2 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:5 8219:2 8232:2 8233:1 8249:3 8259:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:2 8384:2 8388:1 8391:1 8403:2 8404:1 8434:1 8437:2 8441:7 8443:1 8444:1 8449:2 8452:1 8460:33 8463:3 8464:2 8483:2 8484:1 8493:1 8508:1 8521:2 8531:1 8533:1 8537:1 8552:1 8564:1 8576:1 8584:2 8585:6 8586:1 8587:2 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:2 8757:1 8770:1 8771:1 8772:5 8778:1 8786:1 8790:4 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8977:1 8983:2 8990:1 9004:7 9010:1 9018:1 9023:1 9026:1 9030:4 9037:1 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:2 9089:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:2 9207:1 9215:1 9235:1 9256:1 9259:1 9260:1 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9347:1 9373:1 9382:1 9388:2 9410:3 9411:1 9430:1 9433:1 9434:2 9445:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9560:1 9562:1 9584:2 9589:1 9592:1 9594:1 9603:1 9605:3 9607:2 9610:5 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9651:3 9652:3 9653:1 9658:1 9660:1 9668:3 9669:1 9682:3 9683:3 9689:2 9690:1 9692:2 9693:1 9717:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:12 9795:1 9825:1 9826:1 9831:1 9833:2 9843:1 9866:3 9869:1 9870:1 9885:1 9901:1 9902:2 9911:1 9914:1 9922:1 9945:1 9956:1 9970:3 9972:3 9974:2 9976:2 9981:1 9984:2 9993:2 10003:1 10007:1 10008:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:6 10065:1 10066:1 10068:1 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10124:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:2 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:3 10341:1 10361:8 10368:1 10391:1 10395:10 10396:1 10398:1 10400:1 10408:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:1 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:7 10572:6 10573:6 10574:1 10596:2 10597:1 10604:1 10614:1 10616:3 10617:1 10621:1 10623:1 10626:2 10629:1 10631:2 10634:3 10638:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10686:1 10693:8 10701:1 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10826:1 10829:2 10830:1 10862:3 10864:1 10869:1 10871:1 10879:1 10896:1 10902:1 10911:3 10913:4 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10988:1 10998:1 11038:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:2 11082:1 11102:1 11103:2 11115:4 11116:5 11123:2 11125:1 11128:1 11135:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:3 11368:2 11397:1 11398:1 11406:1 11409:1 11411:1 11412:6 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:16 11568:1 11575:1 11578:1 11586:3 11590:6 11593:1 11599:1 11622:1 11623:1 11631:3 11655:2 11687:1 11696:5 11697:2 11713:1 11715:1 11717:1 11719:1 11723:2 11724:1 11745:2 11765:4 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:2 11966:1 11972:1 11978:7 11982:4 11987:1 11988:1 11995:1 11996:6 12016:1 12019:1 12027:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:1 12107:2 12110:1 12118:6 12123:1 12124:4 12127:1 12137:1 12143:1 12144:1 12145:2 12150:1 12154:1 12163:2 12164:1 12168:1 12169:1 12171:1 12184:2 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:3 12304:1 12320:1 12331:2 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12418:2 12420:2 12429:1 12431:1 12454:4 12456:1 12457:2 12460:4 12462:2 12465:2 12474:1 12475:1 12480:1 12485:1 12486:2 12505:3 12521:1 12528:3 12536:2 12540:1 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:3 12624:1 12626:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:1 12708:1 12718:1 12727:3 12745:1 12751:10 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:2 12883:6 12896:1 12899:1 12908:3 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12970:4 12971:1 12972:1 12986:1 13001:2 13011:1 13021:1 13032:2 13040:1 13049:2 13057:2 13065:2 13073:1 13075:3 13083:1 13084:1 13086:3 13088:9 13090:1 13092:6 13100:3 13104:1 13106:2 13112:1 13125:1 13129:1 13145:1 13151:1 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13249:1 13254:2 13259:4 13272:1 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:2 13353:2 13360:2 13362:3 13367:1 13371:1 13383:2 13386:2 13391:4 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:1 13544:2 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:7 13639:1 13652:2 13655:1 13659:2 13676:1 13679:8 13680:3 13700:2 13708:1 13719:2 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:4 13859:1 13862:1 13864:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13947:1 13951:1 13955:1 13957:1 13959:3 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:11 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:5 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14208:1 14216:1 14228:1 14252:4 14255:1 14263:9 14268:3 14273:1 14275:3 14284:1 14290:2 14295:4 14302:2 14303:1 14305:7 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:2 14381:1 14386:1 14388:2 14389:1 14396:2 14412:1 14418:8 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:3 14546:1 14548:1 14553:1 14556:4 14557:2 14570:1 14599:1 14616:4 14653:1 14662:1 14669:17 14670:1 14675:1 14687:4 14692:2 14695:1 14696:1 14710:1 14722:1 14730:2 14747:3 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14796:1 14801:2 14803:1 14809:2 14812:1 14822:2 14825:1 14829:1 14858:1 14860:2 14897:4 14899:1 14900:1 14918:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:2 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:1 15195:1 15205:1 15224:1 15241:1 15244:2 15248:1 15260:2 15272:1 15278:1 15280:1 15285:3 15287:2 15291:1 15309:1 15316:1 15329:1 15341:1 15356:2 15366:1 15400:4 15402:1 15405:5 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:2 15487:1 15490:1 15495:2 15508:4 15516:1 15519:1 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:2 15605:1 15607:6 15608:1 15617:1 15621:1 15636:2 15638:2 15661:4 15663:2 15671:1 15675:1 15685:1 15688:2 15689:2 15697:2 15705:7 15706:3 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15865:1 15869:1 15880:1 15884:4 15897:2 15916:1 15920:1 15941:1 15959:1 15961:1 15962:1 15963:3 15970:3 15971:1 15974:1 15981:4 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16073:2 16075:3 16089:1 16102:1 16104:1 16113:7 16119:1 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:1 16187:2 16189:5 16194:1 16195:1 16198:1 16207:2 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16311:30 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:2 16402:1 16404:1 16405:3 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:2 16557:2 16571:5 16573:1 16575:1 16583:1 16592:2 16606:1 16616:1 16617:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:2 16700:2 16720:1 16728:1 16735:1 16745:1 16770:1 16776:3 16778:1 16811:2 16870:4 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:2 16930:2 16949:2 16959:1 16963:5 16970:1 16991:1 16998:1 17007:1 17009:1 17015:3 17021:2 17023:3 17027:1 17042:1 17045:1 17047:1 17053:5 17057:1 17060:1 17065:1 17069:2242 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17149:1 17150:1 17158:1 17161:1 17187:2 17193:2 17202:1 17211:2 17227:2 17234:1 17235:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:3 17276:4 17304:1 17346:6 17350:2 17352:2 17357:1 17359:1 17381:33 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17460:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:2 17669:1 17672:2 17673:3 17678:1 17685:1 17689:1 17691:2 17697:4 17701:1 17707:1 17712:1 17719:5 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17763:1 17766:1 17769:3 17772:10 17791:1 17792:1 17807:7 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:1 17882:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:1 17968:1 17984:1 17985:3 17986:1 17995:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:2 18097:3 18106:1 18115:1 18143:2 18148:1 18157:1 18159:1 18164:1 18170:3 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:4 18202:6 18205:1 18206:1 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:5 18330:1 18345:1 18349:2 18355:1 18356:4 18367:1 18368:1 18382:3 18384:1 18395:1 18400:1 18406:1 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:2 18483:1 18484:1 18491:1 18510:2 18513:2 18526:1 18545:5 18552:1 18568:1 18589:6 18590:3 18594:2 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18751:1 18756:1 18758:3 18762:4 18774:1 18777:1 18796:1 18802:1 18804:1 18806:7 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18875:1 18887:1 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18956:1 18959:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:2 19011:1 19016:1 19027:4 19032:1 19037:1 19039:1 19041:2 19042:2 19050:1 19053:1 19063:7 19088:1 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19232:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:1 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19440:1 19466:2 19470:1 19488:1 19495:1 19502:1 19544:1 19549:1 19557:1 19565:1 19580:1 19581:1 19597:1 19603:1 19626:1 19631:1 19640:1 19641:2 19649:1 19656:3 19658:1 19659:2 19666:1 19667:1 19675:3 19676:3 19678:1 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:2 19710:1 19718:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:3 19822:1 19836:1 19843:1 19865:1 19878:2 19892:2 19895:1 19897:2 19905:1 19909:8 19920:1 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:5 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:4 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20226:2 20228:3 20229:1 20231:1 20232:1 20235:1 20265:1 20272:2 20274:1 20278:2 20294:2 20295:1 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:1 20355:1 20381:4 20383:5 20385:3 20386:1 20388:2 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:4 20442:1 20450:1 20455:2 20457:1 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20564:1 20567:2 20574:1 20598:4 20599:1 20600:1 20610:1 20617:2 20624:1 20625:30 20631:2 20632:1 20634:4 20637:3 20638:1 20640:4 20642:1 20644:1 20645:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:2 20708:1 20726:3 20736:1 20738:1 20771:3 20776:1 20779:8 20786:1 20804:2 20807:2 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:3 20903:2 20911:1 20912:1 20932:1 20951:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:3 21177:2 21180:1 21183:1 21190:3 21211:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21317:1 21326:1 21339:1 21342:3 21345:2 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:3 21455:1 21461:1 21466:2 21477:1 21483:1 21495:1 21498:1 21501:1 21504:1 21514:12 21523:1 21541:2 21550:1 21556:1 21582:1 21584:1 21585:1 21586:1 21597:1 21632:1 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:2 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21732:3 21735:1 21746:7 21748:2 21751:1 21764:2 21778:1 21780:1 21789:2 21795:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:3 22005:5 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:2 22137:1 22142:1 22154:1 22155:2 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:1 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:4 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:4 22323:1 22327:2 22352:1 22357:2 22359:1 22367:1 22371:2 22384:4 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:4 22549:1 22559:2 22560:1 22585:1 22594:1 22595:2 22598:1 22607:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:1 22691:3 22702:1 22704:1 22709:1 22713:1 22715:3 22723:2 22725:1 22749:4 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:3 22914:7 22942:11 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:9 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:1 23301:1 23315:1 23323:1 23327:1 23340:1 23363:2 23366:1 23379:1 23387:1 23388:3 23389:1 23391:1 23393:2 23395:1 23397:1 23409:5 23440:1 23443:1 23444:1 23447:1 23452:1 23460:1 23464:1 23487:1 23510:1 23523:1 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23703:1 23705:2 23722:1 23735:5 23740:1 23749:1 23753:2 23760:1 23767:1 23770:5 23782:1 23792:1 23796:4 23797:1 23814:1 23818:1 23833:1 23835:1 23838:2 23847:2 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:6 23910:1 23937:4 23940:1 23952:1 23953:1 23956:1 23972:2 23999:1 24008:4 24035:2 24036:1 24037:1 24041:1 24044:1 24045:1 24050:3 24051:2 24057:1 24064:1 24083:1 24087:3 24089:1 24091:1 24097:1 24099:1 24116:1 24130:2 24134:1 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24434:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:1 24474:1 24478:1 24481:2 24489:1 24493:2 24526:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:2 24569:1 24573:1 24576:3 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:3 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:2 24748:1 24756:12 24767:1 24785:1 24787:3 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:6 24848:2 24849:2 24861:1 24866:2 24869:1 24876:3 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:3 24934:1 24942:1 24943:2 24951:1 24967:3 24983:1 24989:1 24990:1 24993:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25284:1 25307:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:6 25443:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:26 25550:4 25553:5 25554:1 25555:3 25564:1 25577:1 25590:7 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:3 25688:4 25696:2 25719:12 25720:1 25721:2 25725:3 25729:1 25738:2 25741:1 25743:2 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25771:1 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25804:2 25808:1 25819:1 25821:1 25824:1 25826:2 25828:1 25856:1 25859:1 25878:2 25880:1 25881:1 25892:1 25895:1 25897:1 25902:1 25912:5 25916:1 25922:1 25943:1 25946:2 25964:1 25965:2 25966:2 25968:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:2 26019:5 26023:1 26024:1 26032:1 26033:1 26035:1 26039:2 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26096:1 26098:1 26121:1 26135:1 26143:1 26151:1 26152:1 26155:1 26159:1 26174:1 26182:1 26184:1 26186:1 26187:1 26190:1 26192:2 26196:1 26202:1 26204:3 26211:1 26219:1 26232:7 26241:2 26243:1 26245:1 26247:6 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26450:1 26451:1 26470:2 26484:1 26488:2 26507:1 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26561:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:2 22:1 35:1 38:4 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:1 157:1 160:2 166:1 168:3 177:1 185:4 205:8 206:1 223:1 243:1 259:1 263:1 268:2 282:1 283:33 294:2 312:1 313:3 315:5 316:1 323:1 328:1 340:2 342:1 345:1 358:1 378:1 392:2 420:3 427:1 428:1 431:1 433:1 435:1 440:1 459:1 507:1 516:1 549:1 550:4 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:3 632:1 637:2 645:1 666:1 670:2 676:1 683:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 755:2 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:8 818:3 828:3 829:1 840:1 843:15 846:1 856:1 860:1 868:5 872:7 875:2 881:1 883:1 884:1 888:1 890:1 893:3 904:1 910:2 912:2 930:1 940:3 956:1 962:4 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1155:2 1178:1 1182:1 1183:1 1190:2 1195:1 1209:1 1234:1 1238:1 1245:2 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:9 1332:1 1345:1 1351:1 1352:3 1354:1 1355:1 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:7 1444:1 1471:1 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1506:1 1520:5 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1597:1 1599:1 1601:2 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:1 1752:1 1776:1 1793:1 1795:2 1797:18 1802:1 1809:2 1821:1 1827:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1928:1 1929:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2035:1 2038:1 2039:1 2041:5 2042:1 2044:1 2047:2 2051:1 2057:1 2058:1 2060:4 2063:2 2064:2 2065:4 2068:1 2074:1 2077:2 2079:1 2096:1 2098:1 2103:1 2104:2 2105:2 2108:2 2109:8 2112:4 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:2 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:4 2303:1 2310:6 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:4 2374:1 2390:1 2391:2 2397:1 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2466:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2512:1 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:3 2596:5 2600:1 2601:1 2605:1 2620:1 2628:1 2631:2 2635:2 2636:2 2645:2 2653:2 2670:6 2674:1 2683:23 2696:4 2702:1 2718:1 2719:1 2727:1 2733:11 2749:1 2756:5 2761:7 2762:1 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2888:1 2937:1 2951:2 2963:1 2968:1 2985:1 2994:5 2999:1 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:4 3089:1 3105:2 3109:13 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:1 3281:1 3293:2 3299:1 3306:1 3317:2 3322:1 3326:1 3330:2 3332:7 3348:5 3354:2 3355:1 3356:1 3357:3 3358:2 3364:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:2 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:12 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:12 3534:1 3537:1 3545:1 3548:7 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:2 3631:1 3633:3 3638:3 3648:2 3649:2 3665:1 3667:1 3671:1 3672:2 3676:1 3680:1 3684:1 3694:4 3701:1 3703:1 3706:2 3709:1 3713:1 3714:2 3715:2 3724:4 3725:3 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3799:1 3806:4 3813:2 3814:1 3819:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:6 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:1 4013:2 4017:1 4034:1 4042:2 4046:1 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:3 4129:1 4145:1 4161:1 4168:1 4170:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4238:2 4256:1 4260:1 4263:2 4264:1 4269:1 4272:3 4284:1 4290:3 4300:2 4303:1 4319:1 4331:1 4334:8 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:7 4425:1 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:25 4515:2 4518:1 4530:1 4531:2 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:6 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:2 4621:1 4622:1 4626:1 4628:3 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:3 4662:1 4663:1 4682:1 4686:1 4711:2 4715:2 4716:1 4734:2 4739:1 4751:1 4754:1 4763:2 4764:1 4765:3 4769:2 4774:1 4776:3 4787:1 4793:1 4795:1 4806:1 4812:2 4817:3 4822:1 4850:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4998:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5075:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5115:1 5116:1 5123:1 5136:3 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5249:1 5254:1 5261:1 5276:1 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5332:1 5341:1 5349:1 5356:1 5365:2 5366:1 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5493:4 5494:1 5514:1 5518:1 5519:14 5533:4 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5577:3 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:6 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:3 5790:1 5791:1 5794:2 5797:1 5799:1 5801:3 5803:1 5804:3 5805:3 5807:5 5808:1 5810:1 5813:4 5815:10 5816:5 5818:1 5857:1 5858:1 5876:2 5928:3 5931:1 5932:1 5934:1 5957:2 5974:2 6021:1 6030:1 6036:1 6041:1 6052:1 6058:1 6062:2 6063:1 6068:1 6078:1 6080:1 6088:2 6099:1 6100:1 6103:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6163:1 6171:1 6174:1 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:1 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6448:1 6455:1 6458:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:2 6523:2 6524:1 6532:1 6543:1 6564:2 6568:1 6576:1 6582:1 6583:1 6585:1 6601:3 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:3 6672:1 6674:1 6684:1 6692:1 6705:1 6707:1 6713:5 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:2 6920:13 6922:5 6924:1 6933:2 6943:2 6944:4 6945:1 6963:5 6964:1 6979:52 6983:1 7003:7 7004:11 7006:1 7010:2 7016:1 7030:2 7040:1 7058:1 7061:1 7070:1 7080:1 7081:2 7087:2 7105:1 7106:1 7107:2 7119:2 7169:2 7196:3 7210:1 7219:1 7221:1 7223:2 7238:1 7244:6 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:1 7402:1 7404:2 7417:1 7420:1 7431:1 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:3 7471:1 7473:9 7488:2 7493:1 7495:2 7500:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:3 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7723:1 7726:1 7729:1 7732:1 7755:1 7765:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:3 7798:1 7800:1 7812:2 7813:2 7833:4 7837:2 7838:4 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7892:1 7929:1 7931:2 7944:1 7965:1 7973:1 7994:1 8000:1 8005:1 8007:1 8022:1 8033:1 8037:3 8042:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:5 8219:2 8232:2 8233:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:2 8384:2 8388:1 8391:1 8403:2 8404:1 8434:1 8437:2 8441:7 8443:1 8444:1 8449:2 8452:1 8460:33 8463:3 8464:2 8483:2 8484:1 8493:1 8508:1 8521:4 8531:1 8533:1 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:6 8586:1 8587:2 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:2 8757:1 8770:1 8771:1 8772:5 8778:1 8786:1 8790:4 8792:2 8794:1 8798:1 8803:2 8826:1 8833:2 8857:7 8859:1 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8977:1 8983:2 8990:1 9004:7 9010:1 9018:1 9023:1 9026:1 9030:4 9037:1 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9080:1 9084:3 9085:1 9086:2 9089:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:2 9207:1 9215:1 9235:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9347:1 9373:1 9382:1 9388:2 9410:3 9411:1 9430:1 9433:1 9434:2 9445:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:1 9560:1 9562:1 9577:1 9584:2 9589:1 9592:1 9594:1 9597:1 9603:1 9605:3 9607:2 9610:5 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9651:3 9652:3 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:3 9689:2 9690:1 9692:2 9693:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:13 9795:1 9825:1 9826:1 9831:1 9833:2 9843:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9911:2 9914:1 9922:1 9945:1 9956:1 9970:4 9972:3 9974:2 9976:2 9981:1 9984:2 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10029:1 10043:6 10045:1 10059:6 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10124:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:2 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:3 10341:1 10361:8 10368:1 10391:1 10395:10 10396:1 10398:1 10400:1 10408:1 10414:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:7 10572:7 10573:6 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:1 10621:1 10623:1 10626:2 10629:1 10631:2 10634:3 10638:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10686:1 10693:8 10701:1 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:1 10826:1 10829:2 10830:1 10862:3 10864:1 10869:2 10871:1 10879:1 10896:1 10902:1 10911:3 10913:4 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10988:1 10998:1 11038:2 11059:1 11061:1 11062:2 11063:3 11065:2 11075:2 11082:1 11102:1 11103:2 11115:4 11116:5 11123:2 11125:1 11128:1 11135:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11251:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:4 11368:2 11397:1 11398:1 11406:1 11409:1 11411:1 11412:6 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:16 11568:1 11575:1 11578:1 11586:3 11590:6 11593:1 11599:2 11622:1 11623:1 11631:3 11655:2 11687:1 11696:5 11697:2 11713:1 11715:1 11717:1 11719:1 11723:2 11724:1 11745:2 11765:4 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:3 11966:1 11972:1 11978:7 11982:4 11987:1 11988:1 11995:1 11996:6 12016:1 12019:1 12027:2 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:1 12107:2 12110:1 12118:6 12123:1 12124:4 12127:2 12137:1 12143:1 12144:1 12145:2 12150:1 12154:2 12163:2 12164:1 12168:1 12169:1 12171:1 12184:2 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:4 12304:1 12320:1 12331:2 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12417:1 12418:2 12420:2 12429:1 12431:1 12454:4 12456:1 12457:2 12460:4 12462:2 12465:2 12474:1 12475:1 12480:1 12485:1 12486:2 12505:3 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:6 12585:1 12604:2 12620:3 12624:1 12626:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:2 12708:1 12718:1 12727:3 12734:1 12745:1 12751:10 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12867:2 12883:6 12895:2 12896:1 12899:1 12908:3 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13011:1 13021:1 13032:2 13040:1 13049:2 13057:2 13065:2 13073:1 13075:3 13083:2 13084:1 13086:3 13088:9 13090:1 13092:6 13100:3 13104:1 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13249:1 13254:4 13259:4 13263:1 13272:1 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:3 13353:2 13360:2 13362:3 13367:1 13371:1 13383:2 13386:2 13391:4 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:1 13544:2 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:7 13639:1 13652:2 13655:1 13659:2 13676:1 13679:8 13680:3 13700:2 13708:1 13719:2 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:4 13859:1 13862:1 13864:1 13867:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13938:1 13947:1 13951:1 13955:1 13957:1 13959:3 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:11 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:5 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14208:1 14216:1 14228:1 14252:5 14255:1 14263:10 14268:3 14273:1 14275:3 14284:1 14290:2 14295:4 14302:2 14303:1 14305:7 14306:2 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14396:4 14412:1 14418:9 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:3 14546:1 14548:1 14553:1 14556:4 14557:2 14570:1 14599:1 14616:4 14640:1 14653:1 14662:1 14669:17 14670:1 14675:1 14687:4 14692:2 14695:1 14696:1 14710:1 14722:1 14730:2 14747:4 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14785:1 14796:1 14801:2 14803:1 14809:2 14812:1 14822:2 14825:1 14829:1 14858:1 14860:2 14897:4 14899:1 14900:1 14918:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:3 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15205:1 15224:1 15241:1 15244:2 15248:1 15260:2 15272:1 15278:1 15280:1 15285:3 15287:2 15291:1 15299:1 15309:1 15316:1 15329:1 15341:1 15356:2 15366:1 15400:4 15402:1 15405:5 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:2 15487:1 15490:1 15495:2 15508:4 15516:1 15519:2 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:2 15605:1 15607:6 15608:1 15617:1 15621:1 15636:2 15638:2 15661:4 15663:2 15671:1 15675:1 15685:1 15688:2 15689:2 15697:2 15705:7 15706:3 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15865:1 15869:1 15880:1 15884:4 15897:2 15916:1 15920:1 15936:1 15941:1 15959:1 15961:1 15962:1 15963:3 15970:3 15971:1 15974:1 15981:4 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16073:2 16075:3 16077:1 16089:1 16102:1 16104:1 16113:7 16119:1 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:1 16187:2 16189:5 16194:1 16195:1 16198:1 16207:2 16219:1 16220:1 16221:1 16228:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16311:31 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:2 16402:1 16404:1 16405:4 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16549:1 16554:2 16557:2 16571:5 16573:1 16575:1 16583:1 16592:2 16606:1 16616:1 16617:1 16637:1 16643:1 16668:1 16670:1 16682:1 16695:2 16700:2 16720:1 16728:1 16735:1 16745:1 16770:1 16776:3 16778:1 16787:1 16811:2 16870:4 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16949:2 16959:1 16963:5 16970:1 16991:1 16998:1 17007:1 17009:1 17015:3 17021:2 17023:3 17027:1 17042:1 17045:1 17047:1 17053:5 17057:1 17060:1 17065:1 17069:2314 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17149:1 17150:1 17158:1 17161:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:3 17276:4 17288:1 17304:1 17335:1 17346:7 17350:2 17352:2 17357:1 17359:1 17381:33 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17460:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:1 17573:2 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17621:1 17628:1 17639:2 17641:3 17666:2 17669:1 17672:2 17673:3 17678:1 17685:1 17689:2 17691:2 17697:4 17701:1 17707:1 17712:1 17719:5 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17763:1 17766:1 17769:4 17772:10 17791:1 17792:1 17807:7 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:1 17882:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:2 17968:1 17984:1 17985:3 17986:1 17995:1 18001:3 18007:1 18011:1 18033:1 18038:1 18056:1 18064:2 18097:3 18106:1 18115:1 18143:2 18148:1 18157:1 18159:1 18164:1 18170:3 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:4 18202:6 18205:1 18206:1 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:5 18330:1 18345:1 18349:2 18355:1 18356:4 18367:1 18368:1 18382:4 18384:1 18395:1 18400:1 18406:1 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:3 18483:1 18484:1 18491:1 18500:1 18510:2 18513:2 18526:1 18545:5 18552:1 18568:1 18589:6 18590:3 18594:3 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18733:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18796:1 18802:1 18804:1 18806:7 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18875:1 18883:1 18887:1 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18956:1 18959:1 18961:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:4 19032:1 19037:1 19039:1 19041:3 19042:3 19050:1 19053:1 19063:7 19088:1 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19232:1 19238:1 19254:1 19257:2 19264:2 19283:6 19292:1 19293:1 19296:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19440:1 19466:2 19470:1 19488:1 19495:1 19502:1 19544:1 19549:1 19557:1 19565:1 19575:1 19577:1 19580:1 19581:1 19597:1 19603:1 19626:1 19631:1 19640:1 19641:2 19649:1 19656:4 19657:1 19658:1 19659:2 19666:1 19667:1 19675:3 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:2 19710:1 19718:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:2 19762:1 19763:1 19768:2 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:4 19822:1 19836:2 19843:1 19865:1 19878:2 19892:2 19895:1 19897:2 19905:1 19909:8 19920:2 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:5 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20226:2 20228:3 20229:1 20231:1 20232:1 20235:1 20265:1 20272:2 20274:1 20278:2 20294:2 20295:1 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:1 20355:1 20381:5 20383:5 20385:3 20386:1 20388:2 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:4 20442:1 20450:1 20455:2 20457:1 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20564:1 20567:3 20574:1 20598:5 20599:1 20600:1 20610:1 20617:2 20624:1 20625:31 20631:3 20632:1 20634:4 20637:3 20638:1 20640:4 20642:1 20644:1 20645:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:2 20708:1 20726:3 20736:1 20738:1 20746:1 20771:3 20776:1 20779:8 20786:1 20804:2 20807:2 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20911:1 20912:1 20932:1 20951:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:3 21177:2 21180:1 21183:1 21190:3 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21317:2 21326:1 21339:1 21342:3 21345:2 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:5 21455:1 21461:1 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21514:12 21523:1 21541:2 21550:1 21556:1 21582:1 21584:2 21585:1 21586:1 21597:1 21626:1 21632:2 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:3 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21732:3 21735:1 21746:7 21748:2 21751:1 21764:4 21778:1 21780:1 21789:2 21795:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:1 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:4 22005:5 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:2 22137:1 22142:1 22154:1 22155:2 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:2 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:4 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:5 22323:1 22327:2 22352:1 22357:2 22359:1 22367:1 22371:2 22384:4 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:4 22549:1 22559:2 22560:1 22570:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:2 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:4 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:3 22914:8 22942:11 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:9 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23363:2 23366:1 23379:1 23387:1 23388:3 23389:1 23391:1 23393:2 23395:1 23397:1 23409:5 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23487:1 23510:1 23523:1 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23625:1 23632:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23703:1 23705:2 23722:1 23735:5 23740:1 23749:1 23753:2 23760:1 23767:1 23770:5 23782:1 23792:1 23796:4 23797:1 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:2 23873:2 23891:2 23903:1 23908:6 23910:1 23937:5 23940:1 23952:1 23953:1 23956:1 23972:2 23999:1 24008:4 24023:1 24035:2 24036:2 24037:1 24041:1 24044:1 24045:1 24050:3 24051:2 24057:1 24064:1 24083:1 24087:4 24089:1 24091:1 24097:1 24099:1 24116:2 24130:2 24134:1 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24434:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:1 24474:1 24478:1 24481:2 24489:1 24493:2 24512:1 24526:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:2 24569:1 24573:1 24576:3 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:3 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:1 24747:2 24748:1 24756:12 24767:1 24785:1 24787:3 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:6 24848:2 24849:2 24861:1 24866:2 24869:1 24876:3 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:3 24934:1 24942:1 24943:2 24951:1 24967:3 24983:1 24989:1 24990:1 24993:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25284:1 25307:1 25310:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:6 25443:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:26 25550:4 25553:5 25554:1 25555:3 25564:1 25577:1 25590:7 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:3 25688:5 25696:2 25719:12 25720:1 25721:2 25725:3 25729:1 25738:2 25741:1 25743:2 25752:1 25753:1 25757:1 25760:2 25766:2 25770:1 25771:1 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25804:2 25808:1 25819:1 25821:1 25824:1 25826:2 25828:1 25840:1 25856:1 25859:1 25878:2 25880:1 25881:1 25892:1 25895:1 25897:1 25902:1 25912:5 25916:1 25922:1 25943:1 25946:2 25964:1 25965:2 25966:2 25968:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:2 26019:5 26023:1 26024:1 26032:1 26033:1 26035:1 26039:2 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26096:1 26098:1 26121:1 26135:1 26143:1 26151:1 26152:1 26155:1 26159:1 26174:1 26182:1 26184:1 26186:1 26187:2 26190:1 26192:2 26196:1 26202:1 26204:3 26211:1 26219:1 26232:7 26241:2 26243:2 26245:1 26247:6 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26450:1 26451:1 26470:2 26484:1 26488:3 26507:2 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26561:1 26568:2 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:5 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:2 22:1 27:1 35:1 38:4 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:1 157:1 160:2 166:1 168:3 177:1 185:4 205:8 206:1 213:1 223:1 239:1 243:1 259:1 263:1 268:2 282:1 283:33 294:2 312:1 313:3 315:5 316:2 323:1 328:1 340:3 342:1 345:1 358:1 378:1 392:2 420:3 427:1 428:1 431:1 433:1 435:1 440:1 459:1 507:1 516:1 549:2 550:4 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:2 645:1 666:1 670:2 676:1 683:1 686:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 755:2 756:1 760:1 764:1 770:1 781:1 790:1 791:1 794:2 797:1 812:1 816:8 818:3 828:3 829:1 840:1 843:15 845:1 846:1 856:1 860:1 868:5 872:7 874:1 875:2 881:1 883:1 884:1 888:1 890:1 893:4 904:1 910:2 912:2 930:1 940:3 956:1 962:4 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1155:2 1178:1 1181:1 1182:1 1183:2 1190:2 1195:1 1209:1 1234:1 1238:1 1245:2 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:1 1351:1 1352:3 1354:1 1355:1 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:7 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1506:1 1520:5 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:1 1599:1 1601:2 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:2 1733:1 1752:1 1776:1 1792:1 1793:1 1795:2 1797:18 1802:1 1809:2 1821:2 1827:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1925:1 1928:1 1929:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2035:1 2038:1 2039:1 2041:5 2042:1 2044:1 2047:2 2051:1 2057:1 2058:1 2060:4 2063:2 2064:2 2065:4 2068:1 2069:1 2074:1 2077:2 2079:1 2096:1 2098:1 2103:2 2104:2 2105:2 2108:2 2109:8 2112:5 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:2 2140:1 2141:6 2143:2 2144:7 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:4 2303:1 2310:6 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:5 2374:1 2390:1 2391:2 2397:1 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2466:1 2473:1 2477:3 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:1 2512:1 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:3 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:2 2635:2 2636:2 2645:2 2653:2 2670:6 2674:1 2683:24 2686:1 2696:4 2702:1 2718:1 2719:1 2727:1 2733:12 2748:1 2749:1 2756:5 2761:7 2762:1 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2888:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:1 2994:5 2999:1 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:5 3089:1 3105:2 3109:13 3149:1 3157:1 3171:1 3173:2 3177:2 3214:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3281:1 3293:2 3299:1 3306:1 3317:3 3322:1 3326:1 3330:2 3332:7 3348:5 3354:2 3355:1 3356:1 3357:3 3358:2 3364:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:2 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:12 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:12 3534:1 3537:1 3545:2 3548:7 3553:1 3557:1 3568:3 3571:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:2 3631:1 3633:3 3638:3 3648:2 3649:2 3665:1 3667:1 3671:1 3672:2 3676:1 3680:1 3684:1 3694:4 3701:1 3703:1 3706:2 3709:1 3711:1 3713:1 3714:2 3715:2 3724:4 3725:4 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3799:1 3806:4 3813:2 3814:1 3819:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:6 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:1 4013:2 4017:1 4034:1 4042:2 4046:1 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:3 4129:1 4145:1 4161:1 4168:1 4170:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4238:2 4256:1 4260:1 4263:2 4264:1 4269:1 4272:3 4284:1 4290:3 4300:2 4303:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:7 4425:2 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:26 4515:2 4518:1 4530:1 4531:3 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:6 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:3 4621:1 4622:1 4626:1 4628:3 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:3 4645:1 4662:1 4663:1 4682:1 4686:1 4711:2 4715:2 4716:1 4734:2 4739:1 4751:1 4754:1 4763:2 4764:1 4765:3 4769:2 4774:1 4776:3 4787:1 4793:1 4795:1 4806:1 4812:2 4817:3 4822:1 4850:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4998:1 5004:1 5025:1 5039:1 5047:1 5051:1 5056:2 5074:2 5075:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5111:1 5115:1 5116:1 5123:1 5136:3 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5249:1 5254:1 5261:1 5276:1 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5356:1 5365:2 5366:1 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5493:4 5494:1 5514:2 5518:1 5519:14 5533:4 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5655:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:6 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:3 5790:1 5791:1 5792:1 5794:2 5797:1 5799:1 5801:4 5803:1 5804:3 5805:3 5807:5 5808:1 5810:1 5813:4 5815:11 5816:5 5818:1 5857:1 5858:1 5876:2 5928:4 5931:1 5932:1 5934:1 5957:2 5960:1 5974:2 6021:1 6030:1 6036:1 6041:1 6052:1 6058:1 6062:2 6063:1 6068:1 6077:1 6078:1 6080:1 6088:3 6099:1 6100:1 6103:1 6110:1 6117:1 6122:1 6153:1 6154:1 6155:2 6163:1 6171:1 6174:1 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6262:1 6264:1 6280:1 6291:2 6292:1 6303:2 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6448:1 6455:1 6458:1 6462:1 6475:10 6476:1 6491:1 6498:2 6515:1 6519:2 6523:2 6524:1 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:3 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:3 6672:1 6674:1 6684:1 6692:1 6705:1 6707:1 6713:5 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:2 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:2 6920:13 6922:5 6924:1 6933:2 6943:2 6944:4 6945:2 6963:5 6964:1 6979:54 6983:2 7003:7 7004:12 7006:1 7010:3 7016:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:1 7080:1 7081:3 7087:2 7105:1 7106:1 7107:2 7119:2 7169:2 7196:3 7210:1 7219:1 7221:1 7223:2 7238:1 7244:6 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:1 7402:2 7404:2 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:3 7471:1 7473:9 7488:2 7493:1 7495:2 7500:1 7513:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:4 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7723:1 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7781:1 7783:3 7784:5 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:3 7798:1 7800:1 7812:2 7813:2 7833:4 7837:2 7838:4 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7892:2 7929:1 7931:2 7936:1 7944:1 7965:1 7967:1 7973:1 7994:1 8000:1 8005:1 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:5 8219:2 8232:2 8233:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:1 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:2 8384:2 8388:1 8391:1 8403:2 8404:1 8434:1 8437:2 8441:7 8443:1 8444:1 8449:2 8452:1 8457:1 8460:33 8463:3 8464:2 8483:2 8484:1 8493:1 8508:1 8521:4 8531:1 8533:1 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:6 8586:1 8587:2 8608:1 8625:1 8633:3 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:2 8757:1 8770:1 8771:1 8772:5 8778:1 8786:1 8790:4 8792:2 8794:1 8798:2 8803:2 8826:1 8833:2 8857:7 8859:1 8864:2 8867:1 8868:4 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8977:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9037:1 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9080:1 9084:3 9085:1 9086:2 9089:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:2 9207:1 9215:1 9235:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9345:1 9347:1 9373:1 9374:1 9382:1 9388:2 9409:1 9410:3 9411:1 9430:1 9433:1 9434:2 9441:1 9445:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:2 9560:1 9562:1 9577:1 9584:2 9589:1 9592:1 9594:1 9597:1 9603:1 9605:3 9607:2 9610:5 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:1 9651:3 9652:3 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:3 9689:2 9690:1 9692:2 9693:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:13 9795:1 9825:1 9826:1 9831:1 9833:2 9843:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9911:2 9914:1 9922:1 9945:1 9956:1 9970:4 9972:4 9974:2 9976:2 9981:1 9984:2 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:6 10045:1 10055:1 10059:6 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10124:1 10127:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:2 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:3 10341:1 10361:8 10368:1 10391:1 10395:11 10396:1 10398:1 10400:1 10408:1 10414:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:3 10554:7 10572:7 10573:6 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:1 10621:1 10623:1 10626:2 10629:1 10631:2 10634:3 10635:1 10638:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:1 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10826:1 10829:2 10830:1 10862:3 10864:1 10869:2 10871:1 10879:1 10896:1 10902:1 10911:3 10913:4 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11052:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:2 11082:1 11089:1 11102:1 11103:2 11115:4 11116:5 11123:2 11125:1 11128:1 11135:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:6 11226:1 11231:1 11241:1 11251:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:4 11368:2 11397:1 11398:1 11406:1 11409:1 11411:1 11412:6 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:16 11568:1 11575:1 11578:1 11586:3 11590:6 11593:1 11599:2 11622:1 11623:1 11631:3 11655:2 11687:1 11696:5 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:2 11724:1 11745:2 11765:5 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:3 11966:1 11972:1 11978:7 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:1 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12115:1 12118:7 12123:1 12124:4 12127:2 12137:1 12143:1 12144:1 12145:2 12150:1 12154:2 12163:2 12164:1 12168:1 12169:1 12171:1 12184:2 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:4 12304:1 12320:1 12331:2 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12417:1 12418:2 12420:2 12429:1 12431:1 12454:4 12456:1 12457:2 12460:4 12462:2 12465:2 12474:1 12475:1 12480:1 12485:1 12486:2 12505:3 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:7 12585:1 12604:3 12620:3 12624:1 12626:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:2 12708:1 12718:1 12727:3 12734:1 12745:1 12751:10 12762:1 12796:2 12820:1 12834:1 12838:1 12843:1 12849:1 12867:2 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13011:1 13021:1 13032:2 13040:1 13049:2 13057:2 13065:2 13073:1 13075:3 13083:2 13084:1 13086:3 13088:9 13090:1 13092:6 13100:3 13104:2 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:2 13247:2 13249:2 13254:4 13259:4 13263:1 13272:1 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:2 13360:2 13362:3 13367:1 13371:1 13383:2 13386:2 13391:4 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:1 13544:2 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:7 13639:1 13652:2 13655:1 13659:3 13666:1 13676:1 13679:8 13680:3 13700:2 13708:1 13719:2 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:4 13859:1 13862:1 13864:1 13867:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13938:1 13947:1 13951:1 13955:1 13957:1 13959:3 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:11 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:5 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14208:1 14216:1 14228:1 14252:5 14255:1 14263:11 14268:3 14273:1 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:7 14306:3 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14396:4 14412:1 14418:9 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:3 14546:1 14548:1 14553:1 14556:4 14557:2 14570:1 14599:1 14616:4 14640:1 14653:1 14662:1 14669:17 14670:1 14675:1 14687:4 14692:2 14695:1 14696:1 14710:1 14722:1 14730:2 14747:4 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14785:1 14789:1 14796:1 14801:2 14803:1 14809:2 14812:1 14822:2 14825:1 14829:1 14858:1 14860:2 14897:4 14899:1 14900:1 14918:1 14934:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:3 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15205:1 15224:1 15241:1 15244:2 15248:1 15260:2 15272:1 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:1 15329:1 15341:1 15355:1 15356:3 15366:1 15400:4 15402:2 15405:5 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:1 15482:2 15487:1 15490:1 15495:2 15508:4 15516:1 15519:2 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:2 15605:1 15607:6 15608:1 15617:1 15621:1 15636:2 15638:2 15661:4 15663:2 15671:1 15675:1 15685:1 15688:2 15689:2 15697:2 15705:7 15706:3 15708:1 15716:2 15754:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15869:1 15880:1 15884:4 15897:2 15916:1 15920:1 15936:1 15941:1 15959:1 15961:1 15962:2 15963:3 15970:3 15971:1 15974:1 15981:5 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16073:2 16075:3 16077:1 16089:1 16102:1 16104:1 16113:7 16119:1 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:1 16187:2 16189:5 16194:1 16195:1 16198:1 16207:3 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16311:32 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:3 16402:1 16404:1 16405:4 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:2 16532:1 16544:1 16549:1 16554:2 16557:2 16571:5 16573:1 16575:1 16583:1 16592:2 16606:1 16616:1 16617:1 16637:1 16643:1 16655:1 16668:1 16670:1 16682:1 16695:2 16700:2 16720:1 16728:1 16735:1 16745:1 16770:1 16776:3 16778:1 16787:1 16802:1 16811:2 16845:1 16870:4 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16949:2 16959:1 16963:6 16970:1 16991:1 16998:1 17007:1 17009:1 17015:3 17021:2 17023:3 17027:1 17042:1 17045:1 17047:1 17053:5 17057:1 17060:2 17065:1 17069:2406 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17149:1 17150:1 17158:1 17161:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:3 17276:4 17278:1 17288:1 17304:1 17335:1 17346:7 17350:2 17352:2 17357:1 17359:1 17381:33 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17460:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:2 17573:2 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:1 17621:1 17628:1 17639:2 17641:3 17666:2 17669:1 17672:2 17673:3 17678:1 17685:1 17689:2 17691:2 17697:4 17701:1 17707:1 17712:1 17719:5 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17763:1 17766:1 17769:4 17772:10 17791:1 17792:1 17807:7 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:2 17882:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:2 17968:1 17984:1 17985:3 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18170:3 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:6 18205:1 18206:2 18212:4 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:5 18330:1 18345:1 18349:2 18355:1 18356:4 18367:1 18368:1 18382:4 18384:1 18395:1 18400:1 18406:1 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:3 18483:1 18484:1 18491:2 18500:1 18510:2 18513:2 18526:1 18545:6 18552:1 18557:1 18568:1 18589:6 18590:3 18594:3 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18721:1 18733:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18796:1 18802:1 18804:1 18806:7 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18875:1 18883:1 18887:1 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18956:1 18959:1 18961:1 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:4 19032:1 19037:1 19039:1 19041:3 19042:3 19050:1 19053:1 19063:7 19088:1 19092:1 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19232:1 19238:1 19254:1 19257:2 19264:2 19283:7 19292:1 19293:1 19296:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19440:1 19466:2 19470:1 19488:1 19495:1 19502:1 19544:1 19549:1 19557:1 19565:1 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:2 19649:1 19656:4 19657:1 19658:1 19659:2 19666:1 19667:1 19675:3 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:3 19710:1 19718:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:2 19762:1 19763:1 19767:1 19768:3 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:9 19805:1 19817:2 19818:1 19821:4 19822:1 19836:2 19843:1 19865:1 19878:2 19892:2 19895:1 19897:3 19905:1 19909:8 19920:2 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:5 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20225:1 20226:2 20228:3 20229:2 20231:1 20232:1 20235:1 20265:1 20272:2 20274:1 20278:3 20294:2 20295:1 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:2 20355:1 20373:1 20381:5 20383:5 20385:3 20386:1 20388:2 20389:1 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:4 20442:1 20450:1 20455:2 20457:1 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20564:1 20567:3 20574:1 20598:7 20599:1 20600:1 20610:1 20617:2 20624:1 20625:32 20631:3 20632:1 20634:4 20637:3 20638:1 20640:4 20642:1 20644:1 20645:2 20662:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:2 20707:1 20708:1 20726:3 20736:1 20738:1 20746:1 20771:3 20776:1 20779:8 20786:2 20804:2 20807:2 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20911:1 20912:1 20932:1 20951:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:4 21177:2 21180:1 21183:1 21190:3 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21317:2 21326:1 21339:1 21342:3 21345:2 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:1 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21514:12 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:1 21626:1 21632:2 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:3 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21732:3 21735:1 21746:7 21748:2 21751:1 21764:4 21778:1 21780:1 21789:2 21795:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21919:1 21923:1 21934:1 21955:1 21956:1 21994:1 21996:4 22005:6 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:2 22137:1 22142:1 22154:1 22155:2 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:2 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:4 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:5 22323:1 22327:2 22335:1 22352:1 22357:2 22359:1 22367:1 22371:2 22384:5 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:4 22549:1 22559:2 22560:1 22570:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:2 22687:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:5 22775:1 22789:2 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:3 22914:8 22942:11 22950:1 22962:9 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:9 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:2 23366:1 23379:1 23387:1 23388:3 23389:1 23391:1 23393:2 23395:1 23397:1 23409:5 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:2 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23703:1 23705:2 23722:1 23728:1 23735:5 23740:1 23749:1 23753:2 23760:1 23767:1 23770:5 23782:1 23792:1 23796:4 23797:1 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:2 23866:1 23873:2 23891:2 23903:1 23908:6 23910:1 23937:5 23940:1 23952:1 23953:1 23956:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:2 24037:1 24041:1 24044:1 24045:1 24050:3 24051:2 24057:1 24064:1 24083:1 24087:4 24089:1 24091:1 24097:1 24099:1 24116:2 24130:2 24132:1 24134:1 24156:2 24158:1 24171:1 24172:2 24178:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24268:3 24271:5 24293:2 24298:1 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24434:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:1 24474:1 24478:1 24481:2 24489:1 24493:2 24512:1 24524:1 24526:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:2 24569:1 24573:1 24576:3 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:4 24664:1 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:2 24748:1 24756:12 24767:1 24785:1 24787:3 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:6 24848:2 24849:2 24850:1 24861:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:1 24908:1 24911:1 24928:1 24929:3 24934:1 24942:1 24943:2 24951:1 24967:3 24983:1 24989:1 24990:1 24993:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25284:1 25307:1 25310:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:7 25443:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:26 25550:4 25553:5 25554:1 25555:3 25564:1 25577:1 25590:7 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:3 25688:5 25696:2 25719:12 25720:1 25721:2 25725:3 25729:1 25738:2 25741:1 25743:3 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:1 25771:1 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25804:3 25808:1 25819:1 25821:1 25824:1 25826:2 25828:1 25840:1 25856:1 25859:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:2 25912:5 25916:1 25922:1 25943:1 25946:2 25964:1 25965:2 25966:2 25968:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:2 26019:5 26023:1 26024:2 26027:1 26032:1 26033:1 26035:1 26039:2 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26077:1 26096:1 26098:1 26121:1 26135:1 26143:1 26151:2 26152:1 26155:1 26159:1 26174:1 26182:1 26184:1 26186:1 26187:2 26190:1 26192:2 26196:1 26202:1 26204:3 26211:1 26219:1 26232:7 26241:2 26243:2 26245:1 26247:6 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26450:1 26451:1 26470:2 26484:1 26488:4 26507:2 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26561:1 26568:2 26579:1 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:2 22:1 27:1 35:1 38:5 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:2 166:1 168:3 177:1 185:4 205:8 206:1 213:1 223:1 239:1 243:1 259:1 263:1 268:2 282:1 283:34 294:2 312:1 313:3 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 358:2 378:1 392:2 420:3 427:1 428:1 431:1 433:1 435:1 440:1 459:1 464:1 507:1 516:1 549:2 550:4 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:2 645:1 666:1 670:2 676:1 683:1 686:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 755:2 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:8 818:3 828:3 829:1 840:1 843:15 845:1 846:1 856:1 860:1 868:6 872:7 874:1 875:2 881:1 883:1 884:1 888:1 890:1 893:4 904:1 910:2 912:2 930:1 940:3 956:1 962:5 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:1 1209:1 1234:1 1238:1 1245:2 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:3 1354:1 1355:1 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1506:2 1520:5 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:1 1599:1 1601:2 1615:1 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:2 1733:1 1752:1 1776:1 1792:1 1793:1 1795:2 1797:18 1802:1 1809:2 1821:2 1827:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:3 1908:1 1925:1 1928:2 1929:1 1946:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2035:1 2038:1 2039:1 2041:5 2042:1 2044:1 2047:2 2051:1 2057:1 2058:1 2060:4 2063:3 2064:2 2065:4 2068:1 2069:1 2074:1 2077:3 2079:1 2096:1 2098:1 2103:3 2104:2 2105:2 2108:2 2109:8 2112:5 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:2 2140:1 2141:6 2143:2 2144:9 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:4 2303:1 2310:7 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:5 2374:1 2390:1 2391:2 2397:1 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:1 2512:1 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:2 2635:2 2636:2 2645:2 2653:2 2670:6 2674:2 2683:24 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:13 2748:1 2749:1 2756:5 2761:8 2762:1 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2888:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:1 2994:5 2999:1 3006:1 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:5 3089:1 3105:2 3109:13 3149:1 3157:1 3171:1 3173:2 3177:2 3207:1 3214:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3281:1 3293:2 3299:1 3306:1 3317:4 3322:1 3326:1 3330:2 3332:7 3348:5 3354:2 3355:1 3356:1 3357:4 3358:2 3364:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:2 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:12 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:12 3534:1 3537:2 3545:2 3548:7 3553:1 3557:1 3568:3 3571:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:2 3631:1 3633:3 3638:3 3648:2 3649:2 3665:1 3667:1 3671:1 3672:2 3676:2 3680:1 3684:1 3694:4 3701:1 3703:1 3706:2 3709:1 3711:1 3713:1 3714:2 3715:2 3724:5 3725:4 3731:1 3745:1 3746:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:1 3806:5 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:1 4013:2 4017:1 4034:1 4035:1 4042:2 4046:1 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:3 4129:1 4145:1 4161:1 4168:1 4170:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4238:2 4256:1 4260:1 4263:2 4264:1 4269:1 4272:3 4284:1 4290:3 4300:2 4303:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:7 4425:2 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:27 4515:2 4518:1 4530:1 4531:3 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:6 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:3 4621:1 4622:1 4626:1 4628:4 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:3 4645:1 4662:1 4663:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4734:2 4739:1 4751:1 4754:1 4763:2 4764:1 4765:3 4769:2 4774:1 4776:3 4787:1 4793:1 4795:1 4806:1 4812:2 4817:3 4822:1 4850:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4998:1 5004:1 5025:1 5039:1 5040:1 5047:1 5051:1 5056:2 5074:2 5075:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5111:1 5115:1 5116:1 5123:1 5136:3 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5249:1 5254:1 5261:1 5276:2 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5482:1 5493:4 5494:1 5514:2 5518:1 5519:16 5533:4 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5655:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:6 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:3 5790:1 5791:1 5792:1 5794:2 5797:1 5799:1 5801:4 5803:1 5804:3 5805:3 5807:5 5808:1 5810:1 5813:4 5815:11 5816:5 5818:1 5857:1 5858:1 5876:2 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:1 6062:2 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6110:1 6117:2 6122:1 6153:1 6154:1 6155:2 6163:2 6171:1 6174:2 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6262:1 6264:1 6280:1 6291:3 6292:1 6303:2 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6448:1 6455:1 6458:1 6462:1 6475:11 6476:1 6491:1 6498:3 6515:1 6519:2 6523:2 6524:1 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:3 6615:2 6630:1 6648:2 6658:3 6660:1 6665:1 6671:4 6672:1 6674:1 6679:1 6684:1 6692:1 6705:1 6707:1 6713:5 6717:3 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:2 6920:13 6922:6 6924:1 6933:2 6943:2 6944:4 6945:2 6963:5 6964:1 6979:57 6983:2 7003:7 7004:13 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:1 7080:1 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7169:2 7196:3 7210:1 7219:1 7221:1 7223:2 7238:1 7244:6 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:1 7402:2 7404:2 7416:1 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:3 7471:1 7473:9 7488:2 7493:1 7495:2 7500:1 7513:1 7537:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:4 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:3 7702:1 7706:1 7715:1 7720:5 7723:1 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7781:1 7783:3 7784:6 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:3 7798:1 7800:2 7812:2 7813:2 7833:4 7837:2 7838:5 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7892:2 7929:1 7931:2 7936:1 7944:1 7965:1 7967:1 7973:1 7994:1 8000:1 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:6 8219:2 8226:1 8232:2 8233:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:2 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:2 8384:2 8388:1 8391:1 8403:2 8404:1 8434:1 8437:2 8441:7 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:34 8463:3 8464:2 8483:2 8484:1 8493:1 8508:1 8521:4 8531:1 8533:1 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:7 8586:1 8587:2 8608:1 8625:1 8633:4 8636:1 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:2 8757:1 8759:1 8770:1 8771:1 8772:5 8778:1 8786:1 8790:5 8792:2 8794:1 8798:2 8803:2 8826:1 8833:2 8857:7 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:1 8886:1 8890:1 8891:1 8894:1 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8977:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9037:1 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9080:1 9084:3 9085:1 9086:2 9089:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:2 9207:1 9215:1 9235:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9345:1 9347:1 9373:1 9374:1 9382:1 9388:2 9409:1 9410:3 9411:1 9430:1 9433:1 9434:2 9441:1 9445:1 9447:1 9461:2 9462:1 9470:1 9481:3 9484:2 9492:2 9508:1 9513:1 9537:1 9553:2 9560:1 9562:1 9577:1 9584:2 9589:1 9592:1 9594:1 9597:1 9603:1 9605:3 9607:2 9610:5 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:1 9651:3 9652:3 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9689:2 9690:1 9692:2 9693:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:14 9795:1 9825:1 9826:1 9831:1 9833:2 9843:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9911:2 9914:1 9922:1 9945:1 9956:1 9970:4 9972:4 9974:2 9976:2 9981:1 9984:2 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:7 10045:1 10055:1 10059:6 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:3 10341:1 10361:8 10368:1 10391:1 10395:12 10396:1 10398:1 10400:1 10408:1 10414:1 10425:1 10426:1 10430:1 10450:1 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:4 10554:7 10572:7 10573:6 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10623:2 10626:2 10629:1 10631:2 10634:3 10635:1 10638:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:1 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10826:2 10829:2 10830:1 10862:3 10864:1 10869:2 10871:1 10879:1 10896:1 10902:1 10911:3 10913:4 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11052:1 11059:1 11061:1 11062:2 11063:3 11065:2 11075:2 11082:1 11089:1 11102:1 11103:2 11115:4 11116:5 11123:2 11125:1 11128:1 11135:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:7 11226:1 11231:2 11241:1 11251:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:4 11368:2 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:6 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:16 11568:1 11575:1 11578:1 11586:3 11590:6 11593:1 11599:2 11622:1 11623:1 11631:4 11655:2 11687:1 11696:5 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:2 11724:1 11745:2 11765:5 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11856:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:3 11966:1 11972:1 11978:7 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12115:1 12118:7 12123:1 12124:4 12127:2 12137:1 12143:1 12144:1 12145:2 12150:1 12154:2 12163:2 12164:1 12168:1 12169:1 12171:1 12184:2 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:4 12304:1 12320:1 12331:3 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12417:1 12418:2 12420:2 12429:1 12431:1 12454:5 12456:1 12457:2 12460:5 12462:2 12465:2 12474:1 12475:1 12480:1 12485:1 12486:2 12505:3 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:7 12585:1 12604:3 12620:3 12624:1 12626:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:2 12708:1 12718:1 12727:4 12734:1 12745:1 12751:10 12762:1 12796:2 12820:1 12821:1 12834:1 12838:1 12843:1 12849:1 12867:2 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13021:1 13032:2 13040:1 13049:2 13057:2 13065:2 13073:1 13075:3 13083:3 13084:1 13086:3 13088:9 13090:1 13092:7 13100:3 13104:2 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:3 13247:2 13249:2 13254:4 13259:4 13263:1 13272:1 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:2 13360:2 13362:3 13367:1 13371:1 13383:2 13386:2 13391:4 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:1 13544:2 13563:3 13566:1 13568:1 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:8 13639:1 13652:2 13655:1 13659:3 13666:1 13676:1 13679:8 13680:3 13700:2 13708:1 13719:2 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:4 13859:1 13862:1 13864:1 13867:1 13868:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13938:1 13947:1 13951:1 13955:1 13957:1 13959:3 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:11 14055:2 14084:1 14089:2 14096:1 14098:1 14102:1 14103:1 14104:4 14115:5 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14208:1 14216:1 14228:1 14252:5 14255:1 14263:11 14268:3 14273:1 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:7 14306:3 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14396:4 14412:1 14418:9 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:3 14546:1 14548:1 14553:1 14556:4 14557:2 14570:1 14599:1 14616:4 14640:1 14644:1 14653:1 14657:1 14662:1 14669:17 14670:1 14674:1 14675:1 14687:4 14690:1 14692:2 14695:1 14696:1 14710:1 14722:1 14730:2 14747:5 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14785:1 14789:1 14796:1 14801:2 14803:1 14809:2 14812:1 14822:2 14825:1 14829:1 14858:1 14860:2 14897:4 14899:1 14900:1 14918:1 14934:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:4 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15136:2 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15205:1 15224:1 15241:1 15244:2 15248:1 15260:3 15272:1 15277:1 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:1 15329:1 15341:1 15355:1 15356:3 15366:1 15385:1 15400:4 15402:2 15405:5 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:2 15487:1 15490:1 15495:2 15508:4 15516:1 15519:3 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:2 15605:1 15607:6 15608:1 15617:1 15621:1 15626:1 15636:2 15638:2 15661:4 15663:3 15671:1 15675:1 15685:1 15688:2 15689:3 15697:2 15705:7 15706:3 15708:1 15716:3 15718:1 15754:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15869:1 15880:1 15884:4 15897:2 15916:1 15920:1 15936:1 15940:1 15941:1 15959:1 15961:1 15962:2 15963:3 15970:4 15971:1 15974:1 15981:5 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16073:2 16075:3 16077:1 16089:1 16102:1 16104:1 16113:7 16119:1 16126:1 16153:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:2 16187:2 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16311:33 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:3 16402:1 16404:1 16405:4 16407:1 16418:1 16424:1 16427:1 16436:4 16452:1 16464:1 16476:5 16514:1 16518:1 16530:3 16532:1 16544:1 16549:1 16554:2 16557:2 16571:5 16573:1 16575:1 16583:1 16592:2 16606:1 16616:1 16617:1 16637:1 16643:1 16655:1 16668:1 16670:1 16682:1 16689:1 16695:2 16700:3 16720:1 16728:1 16735:1 16745:1 16770:1 16776:4 16778:1 16787:1 16802:1 16811:2 16845:1 16870:4 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16949:2 16959:1 16963:7 16970:1 16991:1 16998:1 17007:1 17009:1 17015:3 17021:2 17023:3 17027:1 17042:1 17045:1 17047:1 17053:5 17057:2 17060:2 17065:1 17069:2444 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:3 17276:4 17278:1 17288:1 17304:1 17335:2 17346:7 17350:2 17352:2 17357:1 17359:1 17381:34 17387:1 17395:1 17398:7 17419:1 17449:1 17455:1 17460:1 17461:1 17471:2 17482:1 17487:1 17502:1 17503:1 17505:1 17518:2 17527:3 17535:1 17536:1 17543:1 17557:2 17573:2 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:1 17621:1 17628:1 17639:2 17641:3 17666:2 17669:1 17672:2 17673:3 17678:1 17685:1 17689:3 17691:2 17697:4 17701:1 17707:1 17712:1 17719:5 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17763:1 17766:1 17769:4 17772:11 17791:1 17792:1 17807:7 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:2 17882:1 17885:3 17924:1 17927:1 17937:1 17949:4 17951:1 17957:2 17966:2 17968:1 17984:1 17985:4 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18170:3 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:6 18205:1 18206:2 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:1 18320:2 18323:5 18330:1 18345:1 18349:2 18355:1 18356:4 18367:1 18368:1 18382:4 18384:1 18395:1 18400:1 18406:1 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:3 18483:1 18484:1 18491:2 18500:1 18510:2 18513:2 18526:1 18545:6 18552:1 18557:1 18568:1 18589:7 18590:3 18594:4 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18796:1 18802:1 18804:1 18806:7 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:2 18875:1 18883:1 18887:1 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18968:1 18972:1 18973:1 18983:1 18984:3 18996:1 19002:1 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:4 19032:1 19037:1 19039:1 19041:3 19042:3 19050:1 19053:1 19063:7 19088:1 19092:2 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19232:1 19238:1 19254:1 19257:2 19264:2 19283:7 19292:1 19293:1 19296:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19423:1 19434:2 19440:1 19459:1 19466:2 19470:1 19488:1 19495:1 19502:1 19544:1 19549:1 19557:1 19565:1 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:2 19649:1 19656:4 19657:1 19658:1 19659:2 19666:1 19667:1 19675:3 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:3 19710:1 19718:1 19721:1 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:3 19762:1 19763:1 19767:1 19768:3 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:10 19805:1 19817:2 19818:1 19821:4 19822:1 19836:2 19843:1 19865:1 19878:2 19892:2 19895:1 19897:3 19905:1 19909:8 19920:2 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:5 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20225:1 20226:2 20228:3 20229:3 20231:1 20232:1 20235:1 20264:1 20265:1 20272:2 20274:1 20278:3 20294:2 20295:1 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:2 20355:1 20373:1 20381:5 20383:6 20385:3 20386:1 20388:2 20389:1 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:4 20442:1 20450:2 20455:2 20457:2 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20556:1 20564:1 20567:3 20574:1 20598:8 20599:1 20600:1 20610:1 20617:2 20624:1 20625:33 20631:3 20632:1 20634:4 20637:3 20638:1 20640:4 20642:1 20644:1 20645:2 20662:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:2 20697:1 20706:2 20707:1 20708:1 20726:3 20736:1 20738:1 20746:1 20771:3 20776:1 20779:8 20786:2 20804:2 20807:2 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20909:1 20911:1 20912:1 20932:1 20951:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:4 21177:2 21180:1 21183:1 21190:3 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21317:2 21326:1 21339:1 21342:3 21345:2 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:2 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21514:12 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:1 21626:2 21632:2 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:4 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21732:3 21735:1 21746:8 21748:2 21751:1 21764:5 21778:1 21780:1 21789:2 21795:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21919:1 21923:1 21934:1 21955:1 21956:1 21964:1 21994:1 21996:4 22005:6 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:1 22079:1 22085:2 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:2 22137:1 22142:1 22154:1 22155:3 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:2 22275:1 22276:2 22277:1 22279:7 22281:3 22283:4 22284:2 22287:1 22288:2 22289:2 22290:5 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:5 22323:1 22327:2 22335:1 22352:1 22357:2 22359:1 22367:1 22371:2 22384:6 22388:3 22403:2 22408:1 22409:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:6 22549:1 22559:2 22560:1 22564:1 22570:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22630:2 22631:1 22639:1 22650:1 22656:1 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:6 22775:1 22789:2 22794:1 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:3 22914:8 22942:11 22950:1 22962:9 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:9 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:1 23163:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:2 23366:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:6 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:2 23527:1 23534:1 23537:1 23557:1 23573:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23703:1 23705:2 23722:1 23728:1 23735:5 23740:1 23749:1 23753:2 23760:1 23767:1 23770:5 23782:1 23792:1 23796:4 23797:1 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:2 23866:1 23873:2 23891:2 23903:1 23908:6 23910:1 23937:6 23940:1 23952:1 23953:1 23956:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:2 24037:1 24041:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:4 24089:1 24091:1 24097:1 24099:1 24116:3 24130:2 24132:1 24134:1 24156:2 24158:1 24171:1 24172:2 24178:1 24191:1 24200:1 24202:2 24218:1 24237:2 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24434:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:2 24474:1 24478:1 24481:2 24489:1 24493:2 24512:1 24524:1 24526:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:2 24569:1 24573:1 24576:3 24588:4 24602:4 24610:5 24619:1 24634:1 24635:1 24638:1 24653:4 24664:2 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:2 24748:1 24749:1 24756:12 24767:1 24785:1 24787:3 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:6 24848:2 24849:2 24850:1 24861:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:2 24908:1 24911:1 24928:1 24929:3 24934:1 24942:1 24943:2 24951:1 24967:3 24983:1 24989:1 24990:1 24993:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25284:1 25307:1 25310:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:7 25443:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:29 25550:4 25553:5 25554:1 25555:3 25564:1 25577:1 25590:7 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:3 25688:6 25696:2 25719:12 25720:1 25721:2 25725:3 25729:1 25738:2 25741:1 25743:4 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:1 25771:1 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25804:3 25808:1 25811:1 25819:1 25821:1 25824:1 25826:2 25828:1 25840:1 25856:1 25859:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:2 25912:5 25916:1 25922:1 25943:1 25946:2 25964:1 25965:2 25966:2 25968:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:2 26019:5 26023:1 26024:2 26027:1 26032:1 26033:1 26035:1 26039:2 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26077:1 26096:1 26098:1 26115:1 26121:1 26135:1 26143:1 26151:2 26152:1 26155:1 26159:2 26174:1 26182:1 26184:1 26186:1 26187:2 26190:1 26192:2 26196:1 26202:1 26204:3 26211:1 26219:1 26232:7 26241:2 26243:2 26245:1 26247:7 26249:1 26255:1 26264:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26450:1 26451:1 26470:2 26484:1 26488:4 26507:2 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26561:1 26568:2 26579:1 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:2 26766:3 26771:3 26812:1
9 8:1 10:2 15:1 22:1 27:1 35:1 38:5 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:2 166:1 168:3 177:1 185:4 205:8 206:1 213:1 223:1 239:1 243:1 259:1 263:1 268:2 282:1 283:34 294:2 312:1 313:4 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 358:2 378:1 392:2 420:3 427:1 428:1 431:1 433:1 435:1 440:1 459:1 464:1 507:1 516:1 549:2 550:4 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:2 645:1 666:1 670:2 676:1 683:1 686:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 755:3 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:8 818:3 828:3 829:1 840:1 843:16 845:1 846:1 856:1 860:1 868:6 870:1 872:7 874:1 875:3 881:1 883:1 884:1 888:1 890:1 893:4 903:1 904:1 910:2 912:2 930:1 940:3 956:1 962:5 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:1 1201:1 1209:1 1234:1 1238:1 1245:2 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:3 1354:2 1355:1 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1506:2 1520:5 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:1 1599:1 1601:2 1615:1 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:2 1733:1 1752:1 1756:1 1776:1 1792:1 1793:1 1795:2 1797:18 1802:1 1809:2 1821:2 1827:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:4 1908:1 1925:1 1928:2 1929:1 1946:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2035:2 2038:1 2039:1 2041:5 2042:1 2044:1 2047:2 2051:1 2057:1 2058:1 2060:5 2063:4 2064:2 2065:4 2068:1 2069:1 2074:1 2077:3 2079:1 2096:1 2098:1 2103:3 2104:2 2105:2 2108:2 2109:8 2112:5 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:2 2140:1 2141:6 2143:2 2144:9 2154:1 2155:1 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:4 2303:1 2310:7 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:5 2374:1 2390:1 2391:2 2397:2 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2431:1 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:1 2512:1 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:2 2635:2 2636:2 2645:2 2653:2 2670:7 2674:2 2683:25 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:14 2748:1 2749:1 2756:6 2761:9 2762:1 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2888:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:1 2994:6 2999:1 3006:2 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:5 3089:1 3105:2 3109:13 3149:1 3157:1 3171:1 3173:2 3177:2 3207:1 3214:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3281:1 3293:2 3299:1 3303:1 3306:1 3317:4 3322:1 3326:1 3330:2 3332:8 3348:5 3354:2 3355:1 3356:1 3357:4 3358:2 3364:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:2 3435:3 3439:1 3442:2 3445:3 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:13 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:12 3534:1 3537:2 3545:2 3548:7 3553:1 3557:1 3568:3 3571:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:2 3631:1 3633:3 3638:3 3648:2 3649:2 3653:1 3665:1 3667:1 3671:1 3672:2 3676:2 3680:2 3684:1 3694:5 3701:1 3703:1 3706:2 3709:1 3711:1 3713:1 3714:3 3715:2 3724:5 3725:4 3731:1 3745:1 3746:1 3758:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:1 3806:5 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3960:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:1 4013:2 4017:1 4034:1 4035:1 4042:2 4046:1 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:3 4129:1 4145:1 4154:1 4161:1 4168:1 4170:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4238:2 4256:1 4260:1 4263:2 4264:1 4269:1 4272:3 4284:1 4290:3 4300:2 4303:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:8 4425:2 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:27 4515:2 4518:1 4530:1 4531:3 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:7 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:3 4621:1 4622:2 4626:1 4628:4 4630:3 4631:1 4633:1 4639:1 4640:1 4642:4 4643:3 4645:1 4660:1 4662:1 4663:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4734:2 4739:1 4751:1 4754:1 4763:2 4764:1 4765:3 4769:2 4774:1 4776:3 4787:1 4793:1 4795:1 4806:1 4812:2 4817:4 4822:1 4850:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4998:1 5004:1 5025:1 5039:1 5040:2 5047:1 5051:1 5056:2 5074:2 5075:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5111:1 5115:1 5116:1 5123:1 5136:3 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5248:1 5249:1 5254:1 5261:1 5276:2 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:3 5397:1 5399:1 5424:1 5428:2 5443:1 5482:1 5493:4 5494:1 5514:2 5518:1 5519:17 5533:4 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5655:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:6 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:4 5790:1 5791:1 5792:1 5794:2 5797:1 5799:2 5801:4 5803:1 5804:3 5805:3 5807:5 5808:1 5810:1 5813:4 5815:13 5816:5 5818:1 5857:1 5858:1 5876:3 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6016:1 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:1 6062:3 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6110:1 6117:2 6122:1 6153:1 6154:1 6155:2 6163:2 6171:1 6174:2 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6262:1 6264:1 6280:1 6291:4 6292:1 6303:2 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6448:1 6455:1 6458:1 6462:1 6475:12 6476:1 6491:1 6498:3 6515:1 6519:2 6523:2 6524:1 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:3 6615:2 6630:1 6648:2 6654:1 6658:3 6660:1 6665:1 6671:4 6672:1 6674:1 6679:1 6684:1 6692:1 6705:1 6707:1 6713:5 6717:4 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:2 6920:13 6922:6 6924:1 6933:2 6939:1 6943:2 6944:4 6945:2 6963:5 6964:1 6979:57 6983:2 7003:8 7004:14 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:2 7080:1 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7154:1 7169:2 7196:3 7210:1 7219:1 7221:1 7223:3 7238:1 7244:6 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:1 7402:2 7404:2 7416:1 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:3 7471:1 7473:11 7488:2 7493:1 7495:2 7500:1 7513:1 7537:1 7547:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7630:1 7636:1 7638:1 7641:1 7657:1 7660:1 7668:4 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:4 7702:1 7706:1 7715:1 7720:5 7723:1 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7779:1 7781:1 7783:3 7784:7 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:4 7798:1 7800:2 7812:3 7813:2 7833:4 7837:2 7838:5 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7880:1 7892:2 7929:1 7931:2 7936:1 7944:1 7965:1 7967:1 7973:1 7994:1 8000:1 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8082:1 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8188:1 8196:1 8204:2 8215:6 8219:2 8226:1 8232:2 8233:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:2 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:3 8384:2 8388:1 8391:1 8403:2 8404:1 8434:1 8437:2 8440:1 8441:8 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:34 8463:3 8464:2 8483:2 8484:1 8493:1 8508:1 8521:4 8531:1 8533:2 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:7 8586:1 8587:2 8608:1 8625:1 8633:4 8636:1 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:3 8757:1 8759:1 8770:1 8771:1 8772:6 8778:1 8786:1 8790:5 8792:2 8794:1 8798:2 8803:2 8826:1 8833:2 8857:8 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:1 8886:1 8890:1 8891:1 8894:2 8901:1 8902:1 8931:3 8953:1 8958:1 8963:1 8977:1 8979:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9037:2 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9079:1 9080:1 9084:3 9085:1 9086:2 9089:1 9091:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:1 9181:1 9182:1 9198:2 9207:1 9215:1 9235:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9345:1 9347:1 9373:1 9374:1 9382:1 9388:2 9409:2 9410:4 9411:1 9430:1 9433:1 9434:2 9441:1 9445:1 9447:1 9461:2 9462:1 9470:1 9481:4 9484:2 9492:2 9508:1 9513:1 9537:1 9553:2 9560:1 9562:1 9577:1 9584:2 9589:1 9592:1 9594:1 9597:1 9603:1 9605:3 9607:2 9608:1 9610:7 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:1 9651:3 9652:4 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9689:2 9690:1 9692:2 9693:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:14 9795:1 9825:1 9826:1 9831:1 9833:2 9843:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9904:1 9911:2 9914:1 9922:1 9940:1 9945:1 9956:1 9970:4 9972:4 9974:2 9976:2 9981:1 9984:2 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:7 10045:1 10055:1 10059:6 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:3 10341:1 10361:9 10368:1 10391:1 10395:13 10396:1 10398:1 10400:1 10408:1 10414:1 10425:1 10426:1 10430:2 10444:1 10450:1 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:4 10554:8 10572:7 10573:7 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10623:2 10626:2 10629:1 10631:2 10634:3 10635:1 10638:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:1 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10826:2 10829:2 10830:1 10862:3 10864:1 10869:3 10871:1 10879:1 10896:1 10902:1 10911:3 10913:4 10929:1 10953:3 10956:1 10968:1 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11052:1 11059:1 11061:1 11062:3 11063:4 11065:2 11075:2 11082:1 11089:2 11102:1 11103:2 11115:4 11116:5 11123:3 11125:1 11128:1 11135:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:8 11226:1 11231:2 11241:1 11251:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:4 11368:2 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:7 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:17 11568:1 11575:1 11578:1 11586:3 11590:6 11593:1 11599:2 11622:1 11623:1 11631:4 11655:2 11687:1 11696:5 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:2 11724:1 11745:2 11765:5 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11856:1 11865:1 11868:7 11908:1 11945:8 11949:1 11964:3 11966:1 11972:1 11978:8 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12115:1 12118:7 12123:1 12124:4 12127:2 12137:1 12143:1 12144:1 12145:2 12150:2 12154:2 12163:2 12164:1 12168:1 12169:1 12171:1 12184:2 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:4 12304:1 12320:2 12331:3 12347:1 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12417:1 12418:2 12420:2 12429:1 12431:1 12454:5 12456:1 12457:2 12460:5 12462:2 12465:2 12474:1 12475:1 12480:1 12485:1 12486:2 12505:4 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:7 12585:1 12604:3 12620:3 12624:1 12626:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:2 12708:1 12718:1 12727:4 12734:1 12745:1 12751:10 12762:1 12796:2 12820:1 12821:1 12834:1 12838:1 12843:1 12849:1 12867:2 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13021:1 13032:2 13040:1 13049:3 13057:2 13065:2 13073:1 13075:3 13083:3 13084:1 13086:3 13088:9 13090:1 13092:7 13100:4 13104:2 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:3 13247:2 13249:2 13254:4 13259:4 13263:1 13272:1 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:2 13360:2 13362:3 13367:1 13371:1 13383:2 13386:2 13391:5 13392:1 13407:3 13410:1 13422:2 13441:1 13442:1 13463:1 13466:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:2 13544:2 13563:4 13566:1 13568:2 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:9 13639:1 13652:2 13655:1 13659:3 13666:1 13676:1 13679:9 13680:3 13700:2 13708:1 13719:2 13723:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:5 13859:1 13862:1 13864:1 13867:1 13868:1 13879:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13930:1 13935:1 13938:1 13944:1 13947:1 13951:1 13955:1 13957:1 13959:3 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:11 14055:2 14084:1 14089:3 14096:1 14098:1 14102:1 14103:1 14104:5 14115:5 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14203:1 14208:1 14216:1 14228:1 14252:5 14255:1 14263:11 14268:3 14273:1 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:7 14306:3 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14396:4 14412:1 14418:10 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:3 14546:1 14548:1 14553:1 14556:5 14557:2 14570:1 14599:1 14616:4 14640:1 14644:1 14653:1 14657:1 14662:1 14669:18 14670:1 14674:1 14675:1 14687:4 14690:1 14692:2 14695:1 14696:2 14710:1 14722:1 14730:2 14747:5 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14785:1 14789:1 14795:1 14796:1 14801:2 14803:1 14809:3 14812:1 14822:2 14825:1 14829:1 14858:1 14860:3 14897:4 14899:1 14900:1 14918:1 14934:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:4 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15136:3 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15205:1 15224:1 15241:1 15244:2 15248:1 15260:3 15272:1 15277:1 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:1 15329:1 15341:1 15355:1 15356:3 15366:1 15385:1 15390:1 15400:4 15402:2 15405:6 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:3 15487:1 15490:1 15495:2 15508:5 15516:1 15519:4 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:2 15605:1 15607:6 15608:1 15617:1 15620:1 15621:1 15626:1 15636:2 15638:2 15661:5 15663:3 15671:1 15675:1 15685:1 15688:2 15689:3 15697:2 15705:7 15706:3 15708:1 15716:3 15718:1 15754:1 15758:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15866:1 15869:1 15880:1 15884:4 15897:2 15916:1 15920:1 15936:1 15940:1 15941:2 15959:1 15961:1 15962:3 15963:3 15970:5 15971:1 15974:1 15981:5 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16073:2 16075:3 16077:1 16089:1 16102:2 16104:1 16113:7 16119:1 16126:1 16153:1 16154:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:2 16187:2 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16311:34 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:3 16402:1 16404:1 16405:5 16407:1 16418:1 16424:1 16427:1 16436:5 16452:1 16464:1 16476:5 16514:1 16518:1 16530:3 16532:1 16544:1 16549:1 16554:2 16557:2 16571:5 16573:1 16575:1 16583:1 16592:2 16606:1 16616:1 16617:1 16637:1 16643:1 16655:1 16668:1 16670:1 16682:1 16689:1 16695:2 16700:3 16720:1 16728:1 16735:1 16745:1 16770:1 16776:4 16778:1 16787:1 16802:1 16811:2 16845:1 16870:4 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16949:2 16959:1 16963:8 16970:1 16991:1 16998:1 17007:1 17009:1 17014:1 17015:3 17021:2 17023:4 17027:1 17042:1 17045:1 17047:1 17053:5 17057:2 17060:2 17065:1 17069:2486 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:3 17260:6 17266:1 17271:1 17272:5 17274:4 17276:4 17278:1 17288:1 17304:1 17335:2 17341:1 17346:7 17350:2 17352:2 17357:1 17359:1 17381:34 17387:1 17395:1 17398:7 17419:1 17433:1 17449:1 17455:1 17460:1 17461:1 17471:2 17482:1 17487:1 17490:1 17502:1 17503:1 17505:1 17518:2 17527:4 17535:1 17536:1 17543:1 17557:2 17573:3 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:1 17621:1 17628:1 17639:2 17641:3 17666:2 17669:1 17672:2 17673:4 17678:1 17685:1 17689:3 17691:3 17697:4 17701:1 17707:1 17712:1 17719:5 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17763:1 17766:1 17769:5 17772:11 17791:1 17792:1 17807:7 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:2 17882:1 17885:3 17924:1 17927:1 17937:1 17949:5 17951:1 17957:2 17966:2 17968:1 17984:1 17985:4 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18168:1 18170:3 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:6 18205:1 18206:2 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:2 18272:1 18275:1 18299:2 18320:2 18323:5 18330:1 18345:1 18349:2 18355:1 18356:4 18367:1 18368:1 18382:4 18384:1 18395:1 18400:1 18406:2 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:4 18470:1 18476:1 18481:3 18483:1 18484:1 18491:2 18500:1 18510:2 18513:2 18526:1 18545:6 18552:1 18557:1 18568:1 18589:8 18590:3 18594:4 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18796:1 18802:1 18804:1 18806:9 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:3 18875:1 18883:1 18887:1 18903:4 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18968:1 18972:2 18973:1 18983:1 18984:4 18996:1 19002:1 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:5 19032:1 19037:1 19039:1 19041:3 19042:3 19050:1 19053:1 19063:7 19088:1 19092:2 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19225:1 19232:1 19238:1 19254:1 19257:2 19264:2 19283:7 19292:1 19293:1 19296:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19418:1 19423:1 19434:2 19440:1 19459:1 19466:2 19470:1 19488:1 19495:1 19502:1 19544:1 19549:1 19557:1 19565:2 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:2 19649:1 19656:4 19657:1 19658:1 19659:2 19666:1 19667:1 19675:3 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:3 19710:1 19718:1 19721:2 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:3 19762:1 19763:1 19767:1 19768:3 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:10 19805:1 19817:2 19818:1 19821:5 19822:1 19836:2 19843:1 19865:1 19878:2 19892:2 19895:1 19897:4 19905:1 19909:9 19920:2 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19972:1 19993:1 19994:1 20000:1 20022:1 20025:6 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20225:1 20226:2 20228:3 20229:3 20231:1 20232:1 20235:1 20264:1 20265:1 20272:2 20274:1 20278:3 20294:2 20295:2 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:2 20355:1 20365:1 20373:1 20381:5 20383:6 20385:3 20386:1 20388:2 20389:1 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:4 20442:1 20450:2 20455:2 20457:3 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20556:1 20564:1 20567:3 20574:1 20598:9 20599:1 20600:1 20610:1 20617:2 20624:1 20625:34 20631:3 20632:1 20634:4 20637:3 20638:1 20640:5 20642:1 20644:1 20645:2 20662:1 20663:3 20666:1 20672:3 20676:1 20679:2 20692:2 20693:3 20697:1 20706:2 20707:1 20708:1 20726:3 20736:1 20738:1 20746:1 20771:4 20776:1 20779:9 20786:2 20804:2 20807:2 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20909:1 20911:1 20912:1 20932:1 20951:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:1 21064:1 21070:2 21077:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:4 21177:2 21180:1 21183:1 21190:3 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21317:2 21326:1 21339:1 21342:3 21345:2 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:1 21395:1 21402:1 21409:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:2 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21505:1 21514:12 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:1 21626:2 21632:2 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:4 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21732:3 21735:1 21746:9 21748:2 21751:1 21764:5 21778:1 21780:1 21789:2 21795:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21919:1 21923:1 21934:1 21955:1 21956:1 21964:1 21994:1 21996:4 22005:6 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:1 22079:1 22085:3 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:2 22137:1 22142:1 22154:1 22155:3 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:2 22275:1 22276:2 22277:1 22279:7 22281:3 22282:1 22283:4 22284:2 22287:1 22288:2 22289:2 22290:5 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:6 22323:1 22327:2 22335:1 22352:1 22357:3 22359:1 22367:1 22371:2 22384:6 22388:3 22403:2 22408:1 22409:1 22417:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:6 22549:1 22559:2 22560:1 22564:1 22570:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22630:2 22631:1 22632:1 22639:1 22650:1 22656:1 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:6 22775:1 22789:2 22794:1 22796:1 22808:1 22810:4 22814:1 22815:1 22821:1 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:3 22914:8 22942:11 22950:1 22962:9 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:11 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:1 23163:1 23175:1 23185:2 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:3 23366:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:6 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:2 23527:1 23534:1 23537:1 23557:1 23573:1 23578:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:1 23635:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23703:1 23705:2 23722:1 23728:1 23735:5 23740:1 23749:1 23753:2 23760:1 23767:1 23770:5 23782:1 23792:1 23796:4 23797:1 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:2 23866:1 23873:2 23891:2 23903:1 23908:6 23910:1 23937:6 23940:1 23952:1 23953:1 23956:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:3 24037:1 24041:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:4 24089:1 24091:1 24097:1 24098:1 24099:1 24102:1 24116:3 24130:2 24132:1 24134:1 24156:2 24158:2 24171:1 24172:2 24178:1 24191:1 24200:1 24202:2 24218:2 24237:2 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24351:1 24358:1 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24434:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:2 24474:1 24478:1 24481:2 24489:1 24493:2 24512:1 24524:1 24526:1 24529:1 24533:1 24542:1 24552:1 24564:2 24568:2 24569:1 24573:1 24576:4 24588:4 24602:5 24610:5 24619:1 24622:1 24634:1 24635:1 24638:1 24653:4 24664:2 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:2 24748:1 24749:1 24756:12 24767:1 24785:1 24787:3 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:7 24848:2 24849:3 24850:1 24861:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:2 24908:1 24911:1 24928:1 24929:3 24934:1 24942:1 24943:2 24951:1 24967:3 24983:1 24989:1 24990:1 24993:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:1 25065:1 25108:1 25147:1 25152:1 25167:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25284:1 25307:1 25310:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:7 25443:1 25447:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:32 25550:4 25553:5 25554:1 25555:3 25564:1 25570:1 25577:1 25590:8 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:3 25688:7 25696:2 25719:12 25720:1 25721:2 25725:3 25729:1 25738:2 25741:1 25743:4 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:1 25771:1 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25804:3 25808:1 25811:1 25819:1 25821:1 25824:1 25826:2 25828:1 25840:1 25856:1 25859:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:2 25912:5 25916:1 25922:1 25943:1 25946:2 25964:1 25965:2 25966:2 25968:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:3 26019:6 26023:1 26024:2 26027:1 26032:1 26033:1 26035:1 26039:2 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26077:1 26096:1 26098:1 26099:1 26115:1 26121:1 26135:1 26143:1 26151:2 26152:1 26155:1 26159:2 26174:1 26182:1 26184:1 26186:1 26187:2 26190:2 26192:2 26196:1 26202:1 26204:3 26211:1 26219:1 26232:7 26241:2 26243:2 26245:1 26247:8 26249:1 26255:1 26264:1 26277:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26450:2 26451:1 26470:2 26484:1 26488:4 26507:2 26511:1 26518:1 26533:1 26536:2 26538:1 26556:1 26561:1 26568:2 26579:1 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:3 26766:3 26771:3 26812:1
9 8:1 10:2 15:1 22:1 27:1 35:1 38:5 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:2 166:1 168:3 177:1 185:4 205:8 206:1 213:1 223:1 239:1 243:1 259:1 263:1 268:2 275:1 282:1 283:36 294:2 312:1 313:4 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 358:2 378:1 392:2 420:3 427:1 428:1 431:1 433:1 435:1 440:1 459:1 464:1 507:1 516:1 549:2 550:4 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:2 645:1 666:1 670:2 676:1 683:1 686:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 755:3 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:8 818:3 828:3 829:1 840:1 843:16 845:1 846:1 856:1 860:1 868:6 869:1 870:1 872:8 874:1 875:3 881:1 883:1 884:1 888:1 890:1 893:4 903:1 904:1 910:2 912:2 930:1 940:3 956:1 962:5 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1148:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:1 1201:1 1209:1 1234:1 1238:1 1245:2 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:3 1354:2 1355:2 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1506:2 1520:5 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:1 1599:1 1601:2 1615:1 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:2 1733:1 1752:1 1756:1 1776:1 1792:1 1793:1 1795:2 1797:18 1802:1 1809:2 1821:2 1827:1 1832:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:4 1908:1 1925:1 1928:2 1929:1 1946:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2035:2 2038:1 2039:2 2041:5 2042:1 2044:1 2047:2 2051:1 2057:1 2058:1 2060:5 2063:4 2064:2 2065:4 2068:1 2069:1 2074:1 2077:3 2079:1 2096:1 2098:1 2103:3 2104:2 2105:2 2108:2 2109:8 2112:5 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:2 2140:2 2141:6 2143:2 2144:9 2154:1 2155:2 2156:1 2165:1 2185:1 2195:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:4 2303:1 2310:7 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:5 2374:1 2390:1 2391:3 2397:2 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2431:1 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:1 2512:2 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:3 2635:2 2636:2 2645:2 2653:2 2666:1 2670:7 2674:2 2683:27 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:15 2748:1 2749:1 2756:6 2761:9 2762:1 2765:1 2766:1 2771:1 2787:1 2813:1 2817:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2888:1 2911:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:1 2994:6 2999:1 3006:2 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:5 3089:1 3105:2 3109:14 3149:1 3157:1 3171:1 3173:2 3177:2 3207:1 3214:1 3222:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3281:1 3293:2 3299:1 3303:1 3306:1 3317:4 3322:1 3325:1 3326:1 3330:2 3332:8 3348:5 3354:2 3355:1 3356:1 3357:4 3358:2 3364:1 3368:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:3 3435:3 3439:1 3442:2 3445:3 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:13 3500:1 3510:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:12 3534:1 3537:2 3545:2 3548:7 3553:1 3557:1 3568:3 3571:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:2 3631:1 3633:4 3638:3 3648:2 3649:2 3653:1 3665:1 3667:1 3671:1 3672:2 3676:2 3680:2 3684:1 3694:5 3701:1 3703:1 3706:2 3709:1 3711:1 3713:1 3714:3 3715:2 3724:5 3725:4 3731:1 3745:1 3746:1 3758:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:1 3806:5 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3960:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:1 4012:1 4013:2 4017:1 4034:1 4035:1 4042:2 4046:1 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:3 4129:1 4145:1 4154:1 4161:1 4168:1 4170:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4238:2 4256:1 4260:1 4263:2 4264:1 4269:1 4272:3 4284:1 4290:3 4300:2 4303:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:8 4425:2 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:28 4515:3 4518:1 4530:1 4531:3 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:7 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:3 4621:1 4622:2 4626:1 4628:4 4630:3 4631:1 4633:1 4637:1 4639:1 4640:1 4642:4 4643:3 4645:1 4660:1 4662:1 4663:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4734:2 4739:1 4751:1 4754:1 4763:3 4764:1 4765:3 4769:2 4774:1 4776:3 4787:1 4793:1 4795:1 4806:1 4812:2 4817:4 4822:1 4850:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4919:2 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4998:1 5004:1 5025:1 5039:1 5040:2 5047:1 5051:1 5056:2 5074:2 5075:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5111:1 5115:1 5116:1 5123:1 5136:3 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5248:1 5249:1 5254:1 5261:1 5276:2 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:3 5397:1 5399:1 5400:1 5424:1 5428:2 5443:1 5482:1 5493:4 5494:1 5514:2 5518:1 5519:18 5533:5 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5655:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:6 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:4 5790:1 5791:1 5792:1 5794:2 5797:1 5799:2 5801:4 5803:1 5804:3 5805:3 5807:5 5808:1 5810:1 5813:4 5815:13 5816:5 5818:2 5857:1 5858:1 5876:3 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6016:1 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:1 6062:3 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6110:1 6117:2 6122:1 6153:1 6154:1 6155:2 6163:2 6171:1 6174:2 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6262:1 6264:1 6280:1 6291:4 6292:1 6303:3 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6448:1 6455:1 6458:1 6462:1 6475:14 6476:1 6491:1 6498:3 6515:1 6519:2 6523:2 6524:1 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:3 6607:1 6615:2 6630:1 6648:2 6654:1 6658:3 6660:1 6665:1 6671:4 6672:1 6674:1 6679:1 6684:1 6692:1 6705:1 6707:1 6713:5 6717:4 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:2 6920:14 6922:6 6924:1 6933:2 6939:1 6943:2 6944:4 6945:2 6963:5 6964:1 6979:58 6983:2 7003:8 7004:15 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:2 7080:1 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7152:1 7154:1 7169:2 7196:3 7210:1 7219:1 7221:1 7223:3 7238:1 7244:6 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:1 7402:2 7404:2 7416:1 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:3 7471:1 7473:12 7488:3 7493:1 7495:2 7500:1 7513:1 7537:1 7547:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7630:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:4 7669:2 7678:3 7680:1 7683:3 7686:2 7692:1 7693:4 7702:1 7706:1 7715:1 7720:5 7723:2 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7779:1 7781:1 7783:3 7784:8 7787:4 7788:2 7789:1 7791:3 7794:8 7796:2 7797:4 7798:1 7800:2 7812:3 7813:2 7833:4 7837:2 7838:5 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7880:1 7892:2 7929:1 7931:2 7936:1 7944:1 7953:1 7965:1 7967:1 7973:1 7994:1 8000:1 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8082:1 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8185:1 8188:1 8196:1 8204:2 8215:6 8219:2 8226:1 8232:2 8233:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:2 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:3 8384:2 8388:1 8391:1 8403:2 8404:1 8414:1 8434:1 8437:2 8440:1 8441:8 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:36 8463:3 8464:2 8483:2 8484:1 8493:1 8508:1 8521:4 8531:1 8533:2 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:7 8586:1 8587:2 8608:1 8609:1 8625:1 8633:4 8636:1 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:3 8757:1 8759:1 8770:1 8771:1 8772:6 8778:1 8786:1 8790:5 8792:2 8794:1 8798:2 8803:2 8826:1 8833:2 8857:8 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:1 8886:1 8890:1 8891:1 8894:2 8901:1 8902:1 8913:1 8931:3 8953:1 8958:1 8963:1 8977:1 8979:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9037:2 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9079:1 9080:1 9084:3 9085:1 9086:2 9089:1 9091:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:2 9181:1 9182:1 9198:2 9207:1 9215:1 9235:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9345:1 9347:1 9373:1 9374:1 9382:1 9388:2 9409:2 9410:4 9411:1 9430:1 9433:1 9434:2 9441:1 9445:1 9447:1 9461:2 9462:1 9470:1 9481:4 9484:2 9492:2 9508:1 9513:1 9537:1 9553:2 9560:1 9562:1 9577:1 9584:2 9589:1 9592:1 9594:2 9597:1 9603:1 9605:3 9607:2 9608:1 9610:7 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:1 9651:3 9652:4 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9684:1 9689:2 9690:1 9692:2 9693:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:14 9795:1 9825:1 9826:1 9831:1 9833:2 9843:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9904:1 9911:2 9914:1 9922:1 9940:1 9945:1 9956:1 9970:4 9972:4 9974:2 9976:2 9981:1 9984:2 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:7 10045:1 10055:1 10059:6 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:2 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:4 10341:1 10361:9 10368:1 10391:2 10395:13 10396:1 10398:1 10400:1 10408:1 10414:1 10425:1 10426:1 10430:2 10444:1 10450:1 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:2 10548:1 10552:4 10554:8 10572:7 10573:7 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10623:2 10626:2 10629:1 10631:2 10634:3 10635:1 10638:1 10644:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:1 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10826:2 10829:2 10830:1 10862:3 10864:1 10869:3 10871:1 10879:1 10896:1 10902:1 10911:3 10913:4 10929:1 10953:3 10956:1 10968:2 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11052:1 11059:1 11061:1 11062:3 11063:4 11065:2 11075:2 11082:1 11089:2 11102:1 11103:2 11115:4 11116:5 11123:3 11125:1 11128:1 11135:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:9 11226:1 11231:2 11241:1 11251:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:4 11368:3 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:7 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:18 11568:1 11575:1 11578:1 11586:3 11590:6 11593:1 11599:2 11622:1 11623:1 11631:4 11655:2 11687:1 11696:5 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:3 11724:1 11745:2 11765:5 11767:1 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11856:1 11865:1 11867:1 11868:7 11908:1 11945:8 11949:1 11964:4 11966:1 11971:1 11972:1 11978:8 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12115:1 12118:7 12123:1 12124:4 12127:2 12137:1 12143:1 12144:1 12145:2 12150:2 12154:2 12163:3 12164:1 12168:1 12169:1 12171:1 12184:2 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:5 12304:1 12320:2 12331:3 12347:1 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12417:1 12418:2 12420:2 12429:1 12431:1 12454:5 12456:1 12457:2 12460:5 12462:2 12465:2 12474:1 12475:1 12480:1 12485:1 12486:2 12505:4 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:7 12585:1 12604:3 12620:3 12624:1 12626:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:1 12686:2 12706:1 12708:1 12718:1 12727:4 12734:1 12745:1 12751:10 12762:1 12796:2 12820:1 12821:1 12834:1 12838:1 12843:1 12849:1 12867:2 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12913:1 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13021:1 13032:2 13040:1 13049:3 13057:2 13065:2 13073:1 13075:3 13083:3 13084:1 13086:4 13088:9 13090:1 13092:7 13100:4 13104:2 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:3 13247:2 13249:2 13254:4 13259:4 13263:1 13272:2 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:3 13360:2 13362:3 13367:1 13371:1 13383:2 13386:2 13391:5 13392:1 13407:3 13410:2 13422:2 13441:1 13442:1 13463:1 13466:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:2 13544:2 13563:4 13566:1 13568:2 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:9 13639:1 13652:2 13655:1 13659:3 13666:1 13676:1 13679:9 13680:3 13700:2 13708:1 13719:2 13723:1 13731:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13823:1 13842:1 13856:5 13859:1 13862:1 13864:1 13867:1 13868:1 13879:1 13880:1 13881:2 13887:1 13889:1 13897:1 13903:2 13905:1 13912:1 13930:1 13935:1 13938:1 13944:1 13947:1 13951:1 13955:1 13957:1 13959:3 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:11 14055:2 14084:1 14089:3 14096:1 14098:1 14102:1 14103:1 14104:5 14115:5 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14203:1 14208:1 14216:1 14228:1 14252:5 14255:1 14263:11 14268:4 14273:1 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:8 14306:3 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14396:4 14412:1 14418:10 14424:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:4 14546:1 14548:1 14553:1 14556:5 14557:2 14570:2 14599:2 14616:4 14640:2 14644:1 14653:1 14657:1 14662:1 14669:18 14670:1 14674:1 14675:1 14687:4 14690:1 14692:2 14695:1 14696:2 14710:1 14722:1 14730:2 14747:5 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14782:1 14783:1 14785:1 14789:1 14795:1 14796:1 14801:2 14803:1 14809:3 14812:1 14822:2 14825:1 14829:1 14858:1 14860:3 14897:4 14899:1 14900:1 14918:1 14934:1 14940:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:4 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15136:3 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15205:1 15224:1 15241:1 15244:2 15248:1 15260:3 15269:1 15272:1 15277:1 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:1 15329:1 15341:1 15355:1 15356:3 15366:1 15385:1 15390:1 15400:5 15402:2 15405:6 15410:1 15426:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:3 15487:1 15490:1 15495:2 15508:5 15516:1 15519:4 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:2 15605:1 15607:6 15608:1 15617:1 15620:1 15621:1 15626:1 15636:2 15638:2 15661:5 15663:3 15671:1 15675:1 15685:1 15688:2 15689:3 15697:2 15705:7 15706:3 15708:1 15716:3 15718:1 15754:1 15758:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15866:2 15869:1 15880:1 15884:4 15895:1 15897:2 15916:1 15920:1 15936:1 15940:1 15941:2 15959:1 15961:1 15962:3 15963:3 15970:5 15971:1 15974:1 15981:5 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16067:1 16073:2 16075:3 16077:1 16089:1 16102:2 16104:1 16113:7 16118:1 16119:1 16126:1 16153:1 16154:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:2 16187:2 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16311:35 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:3 16402:1 16404:1 16405:5 16407:1 16418:1 16424:1 16427:1 16436:5 16452:1 16464:1 16476:5 16514:1 16518:1 16530:4 16532:1 16544:1 16549:1 16554:2 16557:2 16571:5 16573:1 16575:2 16583:1 16592:2 16606:1 16616:1 16617:1 16637:1 16643:1 16655:1 16668:1 16670:1 16682:1 16689:1 16695:2 16700:3 16720:2 16728:1 16735:1 16745:1 16770:1 16776:4 16778:1 16787:1 16802:1 16811:3 16845:1 16870:5 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16949:2 16959:1 16963:8 16970:1 16991:1 16998:1 17007:1 17009:1 17014:1 17015:3 17021:2 17023:4 17027:1 17042:1 17045:1 17047:1 17053:5 17057:2 17060:2 17065:1 17069:2565 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:3 17260:7 17266:1 17271:2 17272:5 17274:4 17276:5 17278:1 17288:1 17304:1 17335:2 17341:1 17346:7 17350:2 17352:2 17357:1 17359:1 17381:36 17387:1 17395:1 17398:7 17419:1 17433:1 17449:1 17455:1 17460:1 17461:1 17469:1 17471:2 17482:1 17487:1 17490:1 17502:1 17503:1 17505:1 17518:2 17527:4 17535:1 17536:2 17543:2 17557:2 17573:3 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:1 17621:1 17628:1 17639:2 17641:4 17666:2 17669:1 17672:2 17673:4 17678:1 17685:1 17689:3 17691:3 17697:4 17701:1 17707:1 17712:1 17719:6 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17763:1 17766:1 17769:5 17772:11 17791:1 17792:1 17807:7 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:2 17882:1 17885:3 17924:1 17927:1 17937:2 17949:5 17951:1 17957:2 17966:2 17968:1 17984:1 17985:5 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18168:2 18170:4 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:7 18205:1 18206:2 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:3 18272:1 18275:1 18299:3 18301:1 18320:2 18323:5 18330:2 18345:1 18349:2 18355:1 18356:4 18367:1 18368:1 18382:4 18384:1 18395:1 18400:1 18406:2 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:5 18470:1 18476:1 18481:3 18483:1 18484:1 18491:2 18500:1 18510:2 18513:2 18526:2 18545:6 18552:1 18557:1 18568:1 18589:9 18590:3 18594:4 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18796:1 18802:1 18804:1 18806:9 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:3 18875:1 18883:1 18887:1 18903:4 18910:1 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18968:1 18972:2 18973:1 18983:1 18984:4 18996:1 19002:2 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:5 19032:1 19037:1 19039:1 19041:3 19042:3 19050:1 19053:1 19063:7 19088:1 19092:2 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19225:1 19232:1 19238:1 19254:1 19257:2 19264:2 19283:7 19292:1 19293:1 19296:1 19300:1 19305:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19418:1 19423:1 19434:2 19440:1 19459:1 19465:1 19466:2 19470:1 19488:1 19494:1 19495:1 19502:1 19544:1 19549:1 19557:1 19565:2 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:3 19649:1 19656:4 19657:1 19658:1 19659:2 19666:1 19667:1 19675:3 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:3 19710:1 19718:1 19721:2 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:3 19760:1 19762:1 19763:1 19767:1 19768:3 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:10 19805:1 19817:2 19818:1 19821:5 19822:1 19836:2 19843:1 19851:1 19865:1 19878:2 19892:2 19895:1 19897:4 19898:1 19905:1 19909:9 19920:2 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19967:1 19972:1 19993:1 19994:1 19995:1 20000:1 20022:1 20025:6 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20225:1 20226:2 20228:3 20229:3 20231:1 20232:1 20235:1 20264:1 20265:1 20272:2 20274:1 20278:3 20294:2 20295:2 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:2 20355:1 20365:1 20373:1 20381:5 20383:6 20385:3 20386:1 20388:2 20389:1 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:4 20442:1 20450:2 20455:3 20457:3 20464:3 20466:2 20467:4 20473:1 20483:2 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20556:1 20564:1 20567:3 20574:1 20598:9 20599:1 20600:1 20610:1 20613:1 20617:2 20624:1 20625:35 20631:4 20632:1 20634:4 20637:3 20638:1 20640:5 20642:1 20644:1 20645:2 20662:1 20663:4 20666:1 20672:3 20676:1 20679:2 20692:2 20693:3 20697:1 20706:2 20707:1 20708:1 20726:3 20736:1 20738:1 20746:1 20771:4 20776:1 20779:9 20786:2 20804:3 20807:2 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20909:1 20911:1 20912:1 20932:1 20951:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:1 21064:1 21070:2 21077:1 21086:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:4 21177:2 21180:1 21183:1 21190:3 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21317:2 21326:1 21339:1 21342:3 21345:2 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:2 21395:1 21402:1 21409:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:2 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21505:1 21514:12 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:2 21626:2 21632:2 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:4 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21732:3 21735:1 21746:9 21748:2 21751:1 21764:5 21778:1 21780:1 21789:2 21795:1 21830:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:1 21892:1 21894:2 21901:1 21915:1 21919:1 21923:1 21934:1 21955:1 21956:1 21964:1 21993:1 21994:1 21996:4 22005:6 22013:4 22018:1 22029:1 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:1 22079:1 22085:3 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:2 22137:1 22142:1 22154:1 22155:3 22161:1 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:2 22275:1 22276:2 22277:1 22279:8 22281:3 22282:1 22283:4 22284:2 22287:1 22288:2 22289:2 22290:5 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:6 22323:1 22327:2 22335:1 22352:1 22357:3 22359:1 22367:1 22371:2 22382:1 22384:6 22388:3 22403:2 22408:1 22409:1 22417:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:6 22549:1 22559:2 22560:1 22564:1 22570:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22630:2 22631:1 22632:1 22639:1 22650:1 22656:1 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:6 22775:1 22789:2 22794:1 22796:1 22808:1 22810:4 22814:1 22815:1 22821:2 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:4 22914:8 22942:11 22950:1 22962:9 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:11 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:2 23163:1 23175:1 23185:2 23188:1 23194:1 23200:4 23207:1 23223:1 23229:3 23232:1 23236:2 23239:2 23240:2 23249:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:3 23366:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:6 23417:1 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:2 23527:1 23534:1 23537:2 23557:1 23573:1 23578:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:1 23635:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23703:1 23705:2 23722:1 23728:1 23735:5 23740:1 23749:1 23753:2 23760:1 23767:1 23770:5 23782:1 23792:1 23796:5 23797:1 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:2 23866:1 23873:2 23891:2 23903:1 23908:7 23910:1 23932:1 23937:6 23940:1 23952:1 23953:1 23956:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:3 24037:1 24041:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:4 24089:1 24091:1 24097:1 24098:1 24099:1 24102:1 24116:3 24130:2 24132:1 24134:2 24156:2 24158:2 24171:1 24172:2 24178:1 24191:1 24200:1 24202:2 24218:2 24237:2 24241:1 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24351:1 24358:2 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:1 24434:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:2 24474:1 24478:1 24481:2 24489:1 24493:2 24512:1 24524:1 24526:1 24529:1 24533:1 24540:1 24542:1 24552:2 24564:2 24568:2 24569:1 24573:1 24576:4 24588:4 24602:5 24610:5 24619:1 24622:1 24634:1 24635:1 24638:1 24653:4 24664:2 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:3 24748:1 24749:1 24756:12 24767:1 24785:1 24787:3 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:8 24848:2 24849:3 24850:1 24861:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:2 24908:1 24911:1 24928:1 24929:3 24934:1 24936:1 24942:1 24943:2 24951:1 24967:3 24983:1 24989:1 24990:1 24993:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:1 25065:1 25108:1 25147:1 25152:1 25166:1 25167:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25284:1 25307:1 25310:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:7 25443:1 25447:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:33 25550:4 25553:5 25554:1 25555:3 25564:2 25570:1 25577:1 25590:9 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:3 25688:7 25696:2 25719:13 25720:1 25721:2 25725:3 25729:1 25738:2 25741:1 25743:4 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:1 25771:2 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25802:1 25804:3 25808:1 25811:1 25819:1 25821:1 25824:1 25826:2 25828:1 25840:1 25856:1 25859:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:2 25912:5 25916:1 25922:1 25943:1 25944:1 25946:2 25964:1 25965:2 25966:2 25968:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:3 26019:6 26023:1 26024:2 26027:2 26032:1 26033:1 26035:1 26039:2 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26077:1 26096:1 26098:1 26099:1 26115:1 26121:1 26135:1 26143:1 26151:2 26152:1 26155:1 26159:2 26174:1 26182:1 26184:1 26186:1 26187:2 26190:2 26192:2 26196:1 26202:1 26204:3 26211:1 26219:1 26232:8 26241:2 26243:2 26245:1 26247:8 26249:1 26255:1 26264:1 26277:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26343:1 26349:1 26361:1 26363:2 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26450:2 26451:1 26470:2 26484:1 26488:4 26507:2 26511:1 26518:2 26533:1 26536:2 26538:1 26556:1 26561:1 26568:2 26579:1 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:3 26766:3 26771:3 26812:1
9 8:1 10:2 15:1 22:1 27:1 35:1 38:6 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 89:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:2 166:1 168:3 177:1 185:5 205:8 206:1 213:1 223:1 239:1 243:1 259:1 263:1 268:2 275:1 282:1 283:38 294:2 312:1 313:4 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 358:2 378:1 392:2 420:3 427:2 428:1 431:1 433:1 435:1 440:1 459:1 464:1 507:1 516:1 549:2 550:4 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:2 645:1 666:1 670:2 676:1 683:1 686:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 755:3 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:8 818:3 828:3 829:1 840:1 843:16 845:1 846:1 851:1 856:1 860:1 867:1 868:6 869:1 870:1 872:8 874:1 875:3 881:1 883:1 884:1 888:1 890:1 893:4 903:1 904:1 910:2 912:3 930:1 931:1 940:3 956:1 962:6 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1148:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:1 1201:1 1209:1 1234:1 1238:1 1245:2 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:3 1354:2 1355:2 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1504:1 1506:2 1520:5 1524:1 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:2 1599:1 1601:2 1615:1 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:2 1733:1 1752:1 1756:1 1776:1 1792:1 1793:1 1795:2 1797:19 1802:1 1809:2 1821:2 1827:1 1832:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:4 1903:1 1908:1 1925:1 1928:2 1929:1 1937:1 1946:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2035:2 2038:1 2039:2 2041:5 2042:1 2044:1 2047:2 2051:1 2057:1 2058:1 2060:5 2063:4 2064:2 2065:4 2068:1 2069:1 2070:1 2074:1 2077:4 2079:1 2096:1 2098:1 2103:4 2104:2 2105:2 2108:2 2109:8 2112:5 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:2 2133:1 2135:1 2138:2 2140:2 2141:6 2143:2 2144:9 2154:1 2155:2 2156:1 2165:1 2185:1 2195:2 2197:1 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:5 2303:1 2310:7 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:5 2374:1 2390:1 2391:3 2397:2 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2431:1 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:2 2512:2 2516:1 2518:1 2528:1 2530:2 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:3 2635:2 2636:2 2645:2 2653:2 2666:1 2670:7 2674:2 2683:27 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:16 2748:1 2749:1 2756:6 2761:9 2762:1 2765:1 2766:1 2771:1 2787:1 2808:1 2813:1 2817:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2888:1 2911:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:2 2994:6 2999:1 3004:2 3006:2 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:5 3089:1 3105:2 3109:14 3149:1 3157:1 3171:1 3173:2 3177:2 3207:1 3214:1 3222:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3281:1 3293:2 3299:1 3303:1 3306:1 3317:4 3322:1 3325:1 3326:1 3330:2 3332:8 3346:1 3348:5 3354:2 3355:2 3356:1 3357:5 3358:2 3364:1 3368:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:3 3435:3 3439:1 3442:2 3445:3 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:13 3500:1 3510:1 3513:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:12 3534:1 3537:2 3545:2 3548:7 3553:1 3557:1 3568:3 3571:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3616:1 3621:2 3631:1 3633:4 3638:3 3648:2 3649:2 3653:1 3665:1 3667:1 3671:1 3672:2 3676:3 3680:3 3684:1 3694:5 3701:1 3703:1 3706:2 3709:1 3711:1 3713:1 3714:3 3715:2 3724:5 3725:5 3731:1 3745:1 3746:1 3758:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:1 3806:6 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3960:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:2 4007:1 4012:1 4013:2 4017:1 4034:1 4035:1 4042:2 4046:1 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:3 4129:1 4145:1 4151:1 4154:1 4161:1 4168:1 4170:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4229:1 4238:2 4256:1 4260:1 4263:2 4264:1 4269:1 4272:4 4284:1 4290:3 4300:2 4303:1 4304:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:8 4425:2 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:30 4515:3 4518:1 4530:1 4531:3 4533:1 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:2 4582:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:8 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:3 4621:1 4622:2 4625:1 4626:1 4628:5 4630:3 4631:1 4633:1 4637:1 4639:1 4640:1 4642:4 4643:3 4645:1 4660:1 4662:1 4663:1 4668:1 4679:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4728:1 4734:2 4739:1 4751:1 4754:1 4763:3 4764:1 4765:3 4769:2 4774:1 4776:3 4787:1 4793:1 4795:1 4799:1 4806:1 4812:2 4817:5 4822:1 4844:1 4850:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4914:1 4919:3 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4998:1 5004:1 5025:1 5039:1 5040:2 5047:1 5051:1 5056:2 5074:2 5075:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5111:1 5115:1 5116:1 5123:1 5129:1 5136:3 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5233:3 5235:1 5248:1 5249:1 5254:1 5261:1 5276:2 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:3 5397:1 5399:1 5400:1 5424:1 5428:2 5443:1 5482:1 5493:4 5494:1 5514:2 5516:1 5518:1 5519:19 5533:5 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5655:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:7 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:4 5790:1 5791:1 5792:1 5794:2 5797:1 5799:2 5801:4 5803:1 5804:3 5805:3 5807:5 5808:1 5810:1 5813:4 5815:13 5816:5 5818:2 5857:1 5858:1 5876:3 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6016:1 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:2 6062:3 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6110:1 6117:2 6122:2 6153:1 6154:1 6155:2 6163:2 6171:1 6174:2 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6262:1 6264:1 6280:1 6291:4 6292:1 6303:3 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6434:1 6448:1 6455:1 6458:1 6462:1 6475:15 6476:1 6491:1 6498:3 6515:1 6519:2 6523:2 6524:1 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:3 6607:1 6615:2 6630:1 6648:2 6654:1 6658:3 6660:1 6665:1 6671:5 6672:1 6674:1 6679:1 6684:1 6692:1 6705:1 6707:1 6713:6 6717:4 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:3 6920:14 6922:6 6924:1 6933:2 6939:1 6943:3 6944:4 6945:2 6963:5 6964:1 6979:59 6983:2 7003:8 7004:16 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:2 7080:1 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7152:1 7154:1 7169:2 7196:3 7210:1 7219:1 7221:1 7223:3 7238:1 7244:8 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:1 7402:2 7404:2 7416:1 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:3 7471:1 7473:13 7488:3 7493:1 7495:2 7500:1 7513:1 7537:1 7547:1 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7630:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:4 7669:2 7678:3 7680:1 7683:3 7686:3 7692:1 7693:4 7702:1 7706:1 7715:1 7720:5 7723:2 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7779:1 7781:1 7783:3 7784:8 7787:4 7788:2 7789:1 7791:3 7794:8 7796:3 7797:4 7798:1 7800:2 7812:3 7813:2 7833:4 7837:2 7838:7 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7880:1 7892:2 7929:1 7931:2 7936:1 7944:1 7949:1 7953:1 7965:1 7967:1 7973:1 7994:1 8000:1 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8082:1 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8185:1 8188:1 8196:1 8204:2 8215:6 8219:2 8226:1 8231:1 8232:2 8233:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:3 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:3 8384:2 8388:1 8391:1 8403:2 8404:1 8408:1 8414:1 8434:1 8437:2 8440:1 8441:8 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:38 8463:3 8464:2 8483:2 8484:1 8493:1 8494:1 8498:1 8508:1 8521:4 8531:1 8533:2 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:8 8586:1 8587:2 8603:1 8608:1 8609:1 8625:1 8633:4 8636:1 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:3 8757:1 8759:1 8770:1 8771:1 8772:6 8778:1 8786:1 8788:1 8790:5 8792:2 8794:1 8798:2 8803:2 8826:1 8833:2 8857:9 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:1 8886:1 8890:1 8891:1 8894:2 8901:1 8902:1 8913:2 8931:3 8953:1 8958:1 8963:1 8977:1 8979:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9037:2 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9079:1 9080:1 9084:3 9085:1 9086:2 9089:1 9091:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9163:2 9181:1 9182:1 9198:2 9207:1 9215:1 9235:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9345:1 9347:1 9373:1 9374:1 9382:1 9388:2 9409:2 9410:5 9411:1 9430:1 9433:1 9434:2 9441:1 9445:1 9447:1 9461:2 9462:1 9470:1 9481:5 9484:2 9492:2 9508:1 9513:1 9537:1 9539:1 9553:2 9560:1 9562:1 9577:1 9584:2 9589:1 9592:1 9594:2 9597:1 9603:1 9605:3 9607:2 9608:1 9610:8 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:1 9651:3 9652:4 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9684:1 9689:2 9690:1 9692:2 9693:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:15 9795:1 9825:1 9826:1 9831:1 9833:2 9843:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9904:1 9911:2 9914:1 9922:1 9940:1 9945:1 9956:1 9960:1 9970:4 9972:4 9974:2 9976:2 9981:1 9984:2 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:8 10045:1 10055:1 10059:6 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:2 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:4 10341:1 10361:10 10368:1 10391:2 10395:13 10396:1 10398:1 10400:1 10408:1 10414:1 10425:2 10426:1 10430:2 10444:1 10450:1 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:3 10548:1 10552:4 10554:8 10572:7 10573:7 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10622:1 10623:3 10626:2 10629:1 10631:2 10634:3 10635:1 10638:1 10644:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:1 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10826:2 10829:2 10830:1 10862:4 10864:1 10869:4 10871:1 10879:1 10896:1 10902:1 10911:3 10913:4 10929:1 10953:4 10956:1 10968:2 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11052:1 11059:1 11061:1 11062:3 11063:4 11065:2 11075:2 11082:1 11089:2 11102:1 11103:2 11115:4 11116:5 11123:3 11125:1 11128:1 11135:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:10 11226:1 11231:2 11241:1 11251:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:4 11368:3 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:7 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:18 11568:1 11575:1 11578:1 11586:3 11590:7 11593:1 11599:2 11622:1 11623:1 11631:4 11655:2 11687:1 11696:6 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:3 11724:1 11745:2 11765:5 11767:1 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11838:1 11856:1 11865:1 11867:1 11868:7 11880:1 11901:1 11908:1 11945:8 11949:1 11957:1 11964:4 11966:1 11971:1 11972:1 11978:8 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12115:1 12118:8 12123:1 12124:5 12127:2 12137:1 12143:1 12144:1 12145:2 12150:2 12154:2 12163:3 12164:1 12168:1 12169:1 12171:1 12184:2 12186:4 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:5 12304:1 12320:2 12331:4 12334:1 12347:1 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12417:1 12418:2 12420:2 12429:2 12431:1 12454:6 12456:1 12457:2 12460:5 12462:2 12465:2 12474:1 12475:1 12480:1 12485:1 12486:2 12505:5 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:8 12585:1 12604:3 12620:3 12624:1 12626:1 12629:2 12639:1 12664:7 12667:1 12668:3 12669:1 12675:2 12686:2 12706:1 12708:1 12718:1 12727:4 12734:1 12745:1 12751:10 12762:1 12796:2 12820:1 12821:2 12834:1 12838:1 12843:1 12849:1 12867:2 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12913:1 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13021:1 13032:2 13040:1 13049:3 13057:2 13065:2 13072:1 13073:1 13075:3 13083:4 13084:1 13086:4 13088:9 13090:1 13092:8 13100:5 13104:2 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:3 13247:2 13249:2 13254:4 13259:4 13263:1 13267:1 13272:2 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:3 13360:2 13362:3 13367:1 13371:1 13376:1 13383:2 13386:2 13391:5 13392:1 13407:3 13410:2 13422:2 13441:1 13442:1 13463:1 13466:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:2 13544:2 13563:4 13566:1 13568:2 13570:1 13584:1 13586:1 13609:1 13629:1 13630:1 13637:9 13639:1 13652:2 13655:1 13658:1 13659:3 13666:1 13676:1 13679:10 13680:3 13700:2 13708:2 13719:2 13723:1 13724:1 13731:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13809:1 13823:1 13842:1 13856:6 13859:1 13862:1 13864:1 13867:1 13868:1 13879:1 13880:1 13881:2 13887:2 13889:1 13897:1 13903:2 13905:1 13912:1 13930:1 13935:1 13938:1 13944:1 13947:1 13951:1 13955:1 13957:1 13959:3 13960:1 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:12 14055:2 14084:1 14089:3 14096:1 14098:1 14102:1 14103:1 14104:5 14115:5 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14203:1 14208:1 14216:1 14228:1 14252:5 14255:2 14263:11 14268:4 14273:1 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:8 14306:3 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14396:4 14412:1 14418:10 14424:1 14432:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:4 14546:1 14548:1 14553:1 14556:6 14557:3 14570:2 14599:2 14616:4 14640:2 14644:1 14653:1 14657:1 14662:1 14669:18 14670:1 14674:1 14675:1 14687:4 14690:1 14692:2 14695:1 14696:2 14710:1 14722:1 14730:2 14747:7 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14781:1 14782:1 14783:1 14785:1 14789:1 14795:1 14796:1 14801:2 14803:1 14809:3 14812:1 14822:2 14825:1 14829:1 14858:1 14860:4 14897:4 14899:1 14900:1 14918:1 14934:1 14940:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:5 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15136:3 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15205:1 15224:1 15241:1 15244:2 15248:1 15260:3 15269:1 15272:1 15277:1 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:1 15329:1 15341:1 15355:1 15356:3 15366:1 15385:1 15390:1 15400:5 15402:2 15405:6 15410:1 15426:1 15432:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:4 15487:1 15490:1 15495:2 15508:5 15516:1 15519:4 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:2 15605:1 15607:6 15608:1 15617:1 15620:1 15621:1 15626:1 15636:3 15638:2 15661:5 15663:3 15671:1 15675:1 15685:1 15688:2 15689:3 15697:2 15705:7 15706:3 15708:1 15716:4 15718:1 15754:1 15758:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15866:2 15869:1 15880:1 15884:4 15895:1 15897:2 15916:1 15920:1 15936:1 15940:1 15941:2 15959:1 15961:2 15962:3 15963:3 15970:5 15971:1 15974:1 15981:5 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16067:1 16073:2 16075:3 16077:1 16089:1 16102:2 16104:1 16113:7 16118:1 16119:1 16126:1 16153:1 16154:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:2 16178:1 16187:2 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16308:1 16311:36 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:3 16402:1 16404:1 16405:5 16407:1 16418:1 16424:1 16427:1 16436:5 16442:1 16452:1 16464:1 16476:5 16514:1 16518:1 16530:4 16532:1 16544:1 16549:1 16554:2 16557:2 16571:5 16573:1 16575:2 16583:1 16592:2 16606:1 16616:1 16617:1 16637:1 16643:1 16655:1 16668:1 16670:1 16682:1 16689:1 16695:2 16700:3 16720:2 16728:1 16735:1 16745:1 16770:1 16776:4 16778:1 16787:1 16802:1 16811:3 16845:1 16870:5 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16949:2 16959:1 16963:8 16970:1 16991:1 16998:1 17007:1 17009:1 17014:1 17015:3 17021:2 17023:5 17027:1 17042:1 17045:1 17047:1 17053:5 17057:2 17060:2 17065:1 17069:2637 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:3 17260:7 17266:1 17271:2 17272:5 17274:4 17276:5 17278:1 17288:1 17304:1 17335:2 17341:1 17346:7 17350:2 17352:2 17357:1 17359:1 17381:38 17387:1 17395:1 17398:7 17419:1 17433:1 17449:1 17455:1 17460:1 17461:1 17469:1 17471:2 17482:1 17487:1 17490:1 17502:1 17503:1 17505:1 17518:2 17527:4 17535:1 17536:2 17543:3 17557:2 17573:3 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:1 17621:1 17628:1 17639:2 17641:4 17666:2 17669:1 17672:2 17673:4 17678:1 17685:1 17689:4 17691:3 17697:4 17701:1 17707:1 17712:1 17719:6 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17763:1 17766:1 17769:5 17772:11 17791:1 17792:1 17807:7 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:2 17882:1 17885:3 17924:1 17927:1 17937:2 17949:5 17951:1 17957:2 17966:2 17968:1 17984:1 17985:5 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:2 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18168:2 18170:4 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:7 18205:1 18206:2 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:3 18272:1 18275:1 18299:3 18301:1 18320:2 18323:5 18330:2 18345:1 18349:2 18355:1 18356:5 18367:1 18368:1 18382:4 18384:1 18395:1 18400:1 18406:2 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:1 18453:1 18464:5 18470:1 18476:1 18481:3 18483:1 18484:1 18491:2 18500:1 18510:2 18513:2 18526:2 18545:6 18552:1 18557:1 18568:1 18589:10 18590:3 18594:5 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18735:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18796:1 18802:1 18804:1 18806:9 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:3 18875:1 18883:1 18887:1 18903:4 18910:1 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18968:1 18972:2 18973:1 18983:1 18984:5 18996:1 19002:2 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:6 19032:1 19037:1 19039:1 19041:3 19042:3 19050:1 19053:1 19063:7 19073:1 19088:1 19092:2 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19225:1 19232:1 19238:1 19254:1 19257:2 19264:2 19283:8 19292:1 19293:1 19296:1 19300:1 19305:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19418:1 19423:1 19434:2 19440:1 19459:1 19465:1 19466:2 19470:1 19488:1 19494:1 19495:1 19502:1 19544:1 19549:1 19557:1 19565:2 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:3 19649:1 19656:4 19657:1 19658:1 19659:2 19666:1 19667:1 19675:3 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:3 19710:1 19718:1 19721:2 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:3 19760:1 19762:1 19763:1 19767:1 19768:3 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:10 19805:1 19817:2 19818:1 19821:5 19822:1 19836:2 19843:1 19851:1 19865:1 19878:2 19892:2 19895:1 19897:4 19898:1 19905:1 19909:9 19920:2 19925:1 19927:3 19940:1 19941:2 19942:1 19951:1 19967:1 19972:2 19993:1 19994:1 19995:1 20000:1 20021:2 20022:1 20025:7 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20080:2 20085:1 20091:1 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:4 20225:1 20226:2 20228:4 20229:3 20231:1 20232:1 20235:1 20242:1 20264:1 20265:1 20272:2 20274:1 20278:3 20294:2 20295:2 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:2 20355:1 20365:1 20373:1 20381:5 20383:6 20385:3 20386:1 20388:2 20389:1 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:4 20442:1 20450:2 20455:3 20457:3 20464:3 20466:2 20467:4 20473:1 20483:2 20489:1 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20556:1 20564:1 20567:3 20574:1 20598:9 20599:1 20600:1 20610:1 20613:1 20617:2 20624:1 20625:36 20631:4 20632:1 20634:4 20637:3 20638:1 20640:5 20642:1 20644:1 20645:2 20662:1 20663:4 20666:1 20672:3 20676:1 20679:3 20692:2 20693:3 20697:1 20706:2 20707:1 20708:1 20726:3 20736:1 20738:1 20746:1 20771:5 20776:1 20779:10 20786:2 20804:3 20807:2 20820:1 20825:1 20853:1 20854:2 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20909:1 20911:1 20912:1 20932:1 20951:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:1 21064:1 21070:2 21077:1 21086:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:4 21177:3 21180:1 21183:1 21190:3 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21314:1 21317:2 21326:1 21339:1 21342:3 21345:2 21352:1 21353:1 21359:1 21364:3 21378:2 21383:2 21384:1 21388:1 21389:2 21395:1 21402:1 21409:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:2 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21505:1 21514:12 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:2 21626:2 21632:2 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:5 21678:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21732:3 21735:1 21746:9 21748:2 21751:1 21764:7 21778:1 21780:1 21789:2 21795:1 21830:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:1 21892:1 21894:2 21895:1 21901:1 21915:1 21919:1 21923:1 21934:1 21955:1 21956:1 21964:1 21993:1 21994:1 21996:4 22005:6 22007:1 22013:4 22018:1 22029:2 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:1 22079:1 22085:3 22088:1 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:2 22137:1 22142:1 22154:1 22155:3 22161:2 22165:2 22166:3 22173:1 22181:1 22183:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:2 22275:1 22276:2 22277:1 22279:8 22281:3 22282:1 22283:4 22284:2 22287:1 22288:2 22289:2 22290:5 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:6 22323:1 22327:2 22335:1 22352:1 22357:3 22359:1 22367:1 22371:3 22382:1 22384:6 22388:3 22403:2 22408:1 22409:1 22417:1 22418:3 22428:1 22442:1 22445:1 22447:2 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:6 22549:1 22559:3 22560:1 22564:1 22570:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22630:2 22631:1 22632:1 22639:1 22650:1 22656:2 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:6 22775:1 22789:2 22794:1 22796:1 22808:1 22810:4 22814:1 22815:1 22821:2 22832:1 22834:1 22841:4 22882:1 22899:1 22902:2 22912:4 22914:8 22942:11 22950:1 22962:9 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:1 23078:1 23081:2 23083:1 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:12 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:2 23163:2 23175:1 23185:2 23188:1 23194:1 23200:4 23207:1 23223:1 23229:4 23232:1 23236:2 23239:2 23240:2 23249:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:3 23366:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:6 23417:1 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:2 23527:1 23534:1 23537:3 23557:1 23573:1 23578:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:1 23635:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23703:1 23705:2 23722:1 23728:1 23735:5 23740:1 23749:1 23753:2 23760:1 23767:2 23770:5 23782:1 23792:1 23796:5 23797:1 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:2 23866:1 23873:2 23891:2 23903:1 23908:7 23910:1 23932:1 23937:8 23940:1 23952:1 23953:1 23956:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:4 24037:1 24041:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:4 24089:1 24091:1 24097:1 24098:1 24099:2 24102:1 24116:3 24130:2 24132:1 24134:2 24156:2 24158:2 24171:1 24172:2 24178:1 24191:1 24200:1 24202:2 24218:2 24237:2 24241:1 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24333:1 24351:1 24358:2 24365:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:2 24434:1 24449:1 24453:1 24454:1 24459:1 24465:1 24468:3 24474:1 24478:1 24481:2 24489:1 24493:2 24512:1 24524:1 24526:1 24529:1 24533:1 24540:1 24542:1 24552:2 24564:2 24568:2 24569:1 24573:1 24576:5 24588:4 24602:5 24610:5 24612:1 24619:1 24622:1 24634:1 24635:1 24638:1 24653:4 24664:2 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:3 24748:1 24749:1 24756:12 24767:1 24785:1 24787:4 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:8 24848:2 24849:3 24850:1 24861:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:2 24908:1 24911:1 24928:1 24929:3 24934:1 24936:1 24942:1 24943:2 24951:1 24967:3 24983:1 24989:1 24990:1 24993:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:2 25065:1 25108:1 25147:1 25152:1 25166:1 25167:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:5 25231:1 25240:1 25251:1 25273:1 25278:1 25281:1 25284:1 25307:1 25310:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25403:3 25433:1 25435:7 25443:1 25447:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:34 25550:4 25553:5 25554:1 25555:3 25564:2 25570:1 25577:1 25590:11 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:3 25688:7 25696:2 25719:13 25720:1 25721:2 25725:3 25729:1 25738:2 25741:1 25743:4 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:1 25771:2 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25802:1 25804:3 25808:1 25811:1 25819:1 25821:1 25824:1 25826:2 25828:1 25840:1 25856:1 25859:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:2 25912:5 25916:1 25922:1 25943:1 25944:1 25946:2 25964:1 25965:2 25966:2 25968:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:3 26019:6 26023:1 26024:2 26027:2 26032:1 26033:1 26035:1 26039:2 26044:2 26046:1 26048:1 26050:1 26054:1 26062:2 26077:1 26096:1 26098:1 26099:1 26115:1 26121:1 26135:1 26143:1 26151:2 26152:1 26155:1 26159:2 26174:1 26182:1 26184:1 26186:1 26187:2 26190:2 26192:2 26196:1 26202:2 26204:3 26211:1 26219:1 26232:8 26241:2 26243:2 26245:1 26247:8 26249:1 26255:1 26256:1 26264:1 26277:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26339:1 26343:1 26349:1 26361:1 26363:3 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26450:2 26451:1 26470:2 26484:1 26488:4 26507:2 26511:1 26518:2 26533:1 26536:2 26538:1 26556:2 26561:1 26568:2 26579:1 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26707:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:1 26762:3 26766:3 26771:3 26812:1
9 8:1 10:2 15:1 22:1 27:1 35:1 38:6 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 89:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:2 166:1 168:3 177:1 183:1 185:5 205:8 206:1 213:1 223:1 239:1 243:1 259:1 263:2 268:2 275:1 282:1 283:39 294:2 312:1 313:4 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 358:2 378:1 392:2 420:4 427:2 428:1 431:1 433:1 435:1 440:1 459:1 464:1 507:1 516:1 549:2 550:5 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:2 645:1 666:1 670:2 676:1 683:1 686:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 755:3 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:9 818:3 828:3 829:1 840:1 843:16 845:1 846:1 851:1 856:1 860:1 867:1 868:6 869:1 870:1 872:8 874:1 875:4 878:1 881:1 883:1 884:1 888:1 890:1 893:4 903:1 904:1 910:2 912:3 930:1 931:1 940:3 956:1 962:6 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1148:1 1150:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:1 1201:1 1204:1 1209:1 1234:1 1238:1 1245:2 1250:1 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:3 1354:2 1355:2 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1504:1 1506:2 1520:5 1524:1 1528:2 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:2 1599:2 1601:2 1615:1 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:1 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:2 1733:1 1752:1 1756:1 1776:1 1780:1 1792:1 1793:1 1795:2 1797:19 1802:1 1809:2 1821:2 1827:1 1832:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:4 1903:2 1908:1 1925:1 1928:2 1929:1 1937:1 1946:1 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2034:1 2035:2 2036:1 2038:1 2039:2 2041:5 2042:1 2044:1 2047:2 2051:1 2052:1 2057:1 2058:1 2060:5 2063:4 2064:2 2065:5 2068:1 2069:1 2070:1 2074:1 2077:4 2079:1 2096:1 2098:1 2103:4 2104:2 2105:2 2108:2 2109:8 2112:5 2117:1 2118:2 2119:4 2123:1 2125:1 2126:1 2129:3 2133:1 2135:1 2138:2 2140:2 2141:6 2143:2 2144:9 2154:1 2155:2 2156:1 2165:1 2185:1 2195:2 2197:2 2203:1 2212:1 2227:1 2230:1 2234:1 2250:3 2256:4 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:5 2303:1 2310:9 2320:1 2324:1 2326:1 2344:1 2350:1 2360:5 2369:5 2374:1 2390:1 2391:3 2397:2 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2431:1 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:2 2512:2 2516:1 2518:1 2528:1 2530:3 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:3 2635:2 2636:2 2645:2 2653:2 2666:1 2670:8 2674:2 2683:28 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:16 2748:1 2749:1 2756:6 2761:9 2762:1 2765:1 2766:1 2771:1 2787:1 2808:1 2813:1 2817:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2883:1 2888:1 2911:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:2 2994:6 2999:1 3004:2 3006:2 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:5 3089:1 3105:2 3109:14 3149:1 3157:1 3171:1 3173:2 3177:2 3207:1 3214:1 3222:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3279:1 3281:1 3293:2 3299:1 3303:1 3306:1 3317:4 3322:1 3325:1 3326:1 3330:2 3332:8 3346:1 3348:5 3354:2 3355:2 3356:1 3357:5 3358:2 3364:1 3368:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:3 3435:3 3439:1 3442:2 3445:3 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:13 3494:1 3500:1 3510:1 3513:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:13 3534:1 3537:2 3545:2 3548:7 3553:1 3557:1 3568:3 3571:1 3578:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3611:1 3616:1 3621:2 3631:1 3633:4 3638:3 3648:2 3649:2 3653:1 3665:1 3667:1 3671:1 3672:2 3676:3 3680:3 3684:1 3694:5 3701:1 3703:1 3705:2 3706:2 3709:1 3711:1 3713:1 3714:3 3715:2 3724:5 3725:5 3731:1 3745:1 3746:1 3758:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:1 3806:6 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3960:1 3969:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:2 4007:1 4012:1 4013:2 4017:1 4034:1 4035:1 4042:2 4046:1 4048:1 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:3 4129:1 4145:1 4151:1 4154:1 4161:1 4168:1 4170:1 4188:1 4195:2 4201:1 4212:1 4216:1 4220:1 4222:1 4229:1 4238:2 4256:1 4260:1 4263:3 4264:1 4269:1 4272:5 4284:1 4290:3 4300:2 4303:1 4304:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:8 4425:2 4427:2 4440:1 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:30 4515:3 4518:1 4530:1 4531:3 4533:1 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:2 4582:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:8 4609:1 4610:1 4611:1 4614:1 4615:3 4616:1 4618:1 4619:3 4621:1 4622:2 4625:1 4626:1 4628:5 4630:3 4631:1 4633:1 4637:1 4639:1 4640:1 4642:4 4643:4 4645:1 4660:1 4662:1 4663:1 4668:1 4679:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4728:1 4734:2 4739:1 4751:1 4754:1 4763:3 4764:1 4765:3 4769:2 4774:1 4776:3 4787:1 4793:1 4795:1 4799:1 4806:1 4812:2 4817:5 4822:1 4844:1 4850:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4914:1 4919:3 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4998:1 5004:1 5025:1 5039:1 5040:2 5047:1 5051:1 5056:2 5074:2 5075:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5111:1 5115:1 5116:1 5123:1 5129:1 5136:3 5140:1 5143:1 5147:1 5153:1 5160:1 5169:3 5182:4 5191:1 5192:1 5217:3 5232:1 5233:3 5235:1 5248:1 5249:1 5254:1 5261:1 5276:2 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:3 5397:1 5399:1 5400:1 5424:1 5428:2 5443:1 5482:1 5493:4 5494:1 5514:2 5516:1 5518:1 5519:19 5533:5 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5655:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:7 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:4 5790:1 5791:1 5792:1 5794:2 5797:1 5799:2 5801:4 5803:1 5804:3 5805:3 5807:5 5808:1 5810:1 5813:4 5815:13 5816:5 5818:3 5857:1 5858:1 5876:3 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6016:1 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:2 6062:3 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6107:1 6110:1 6117:2 6122:2 6153:1 6154:1 6155:2 6163:2 6171:1 6174:2 6177:1 6179:2 6180:1 6181:1 6191:1 6201:9 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6261:1 6262:1 6264:1 6280:1 6291:4 6292:1 6303:3 6331:2 6333:2 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6434:1 6448:1 6455:1 6458:1 6462:1 6475:15 6476:1 6485:1 6491:1 6498:3 6515:1 6519:2 6523:2 6524:2 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:3 6607:1 6615:2 6630:1 6648:2 6654:1 6658:3 6660:1 6665:1 6671:5 6672:1 6674:1 6679:1 6684:1 6692:1 6705:1 6707:1 6713:6 6717:4 6720:1 6723:1 6734:2 6741:1 6754:2 6755:1 6760:2 6769:1 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6919:3 6920:14 6922:7 6924:1 6933:2 6939:1 6943:3 6944:4 6945:2 6963:5 6964:1 6979:61 6983:2 7003:9 7004:16 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:2 7080:2 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7152:1 7154:1 7169:2 7196:3 7210:1 7219:1 7221:1 7223:3 7238:1 7244:8 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:2 7402:2 7404:2 7416:1 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:3 7471:1 7473:13 7488:3 7493:1 7495:2 7500:1 7513:1 7532:1 7537:1 7547:2 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7630:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:4 7669:2 7678:4 7680:1 7683:3 7686:3 7692:1 7693:4 7702:1 7706:1 7715:1 7720:5 7723:2 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7779:1 7781:1 7783:3 7784:8 7787:4 7788:2 7789:1 7791:3 7794:8 7796:3 7797:4 7798:1 7800:2 7812:3 7813:2 7833:4 7837:2 7838:7 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7880:1 7892:2 7929:1 7931:2 7936:1 7944:1 7949:1 7953:1 7965:1 7967:1 7973:1 7994:1 8000:2 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8082:1 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8185:1 8188:1 8196:1 8204:2 8215:6 8219:2 8226:1 8231:1 8232:2 8233:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:3 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:3 8384:2 8388:1 8391:1 8403:2 8404:1 8408:1 8414:1 8434:1 8437:2 8440:2 8441:8 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:39 8463:4 8464:2 8471:1 8483:2 8484:1 8493:1 8494:2 8498:1 8508:1 8521:4 8531:1 8533:2 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:8 8586:1 8587:2 8603:1 8608:1 8609:1 8625:1 8633:5 8636:1 8638:1 8646:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:3 8757:1 8759:1 8770:1 8771:1 8772:6 8778:1 8786:1 8788:1 8790:5 8792:2 8794:1 8798:2 8803:2 8826:1 8833:2 8857:9 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:1 8886:1 8890:1 8891:1 8894:2 8901:1 8902:1 8913:2 8931:3 8953:1 8958:1 8962:1 8963:1 8977:1 8979:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9037:2 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9079:1 9080:1 9084:3 9085:1 9086:2 9089:1 9091:1 9094:1 9096:1 9103:1 9108:1 9111:1 9120:4 9135:1 9142:1 9161:1 9163:2 9175:1 9181:1 9182:1 9198:2 9207:1 9215:1 9235:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9342:1 9345:2 9347:1 9373:1 9374:1 9382:1 9388:2 9409:2 9410:5 9411:1 9430:1 9433:1 9434:2 9441:1 9445:1 9447:1 9461:2 9462:1 9470:1 9481:5 9484:2 9492:2 9508:1 9513:1 9537:1 9539:1 9553:2 9560:1 9562:1 9577:1 9584:2 9589:1 9592:1 9594:2 9597:1 9603:1 9604:1 9605:4 9607:2 9608:1 9610:8 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:2 9651:3 9652:4 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9684:1 9689:2 9690:1 9692:2 9693:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:15 9795:1 9825:1 9826:1 9828:1 9831:1 9833:2 9843:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9904:1 9911:2 9914:1 9922:1 9940:1 9945:1 9956:1 9960:1 9969:2 9970:4 9972:4 9974:2 9976:2 9981:1 9984:3 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:8 10045:1 10046:1 10055:1 10059:7 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10118:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:2 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:4 10341:1 10361:10 10368:1 10391:3 10395:14 10396:1 10398:1 10400:1 10408:1 10414:1 10425:2 10426:1 10430:2 10444:1 10450:2 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:3 10548:1 10552:4 10554:8 10572:7 10573:7 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10622:1 10623:3 10626:2 10629:1 10631:2 10634:3 10635:1 10638:1 10644:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:1 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10826:2 10829:2 10830:1 10857:1 10862:5 10864:1 10869:4 10871:1 10879:1 10896:1 10902:1 10911:3 10913:4 10929:1 10953:5 10956:1 10968:2 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11046:1 11052:1 11059:1 11061:1 11062:3 11063:4 11065:2 11075:2 11082:1 11089:2 11102:1 11103:2 11109:1 11115:4 11116:5 11123:3 11125:1 11128:2 11135:1 11153:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:10 11226:1 11231:2 11241:1 11251:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:1 11339:1 11356:1 11359:4 11368:3 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:7 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:1 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:19 11568:1 11575:1 11578:1 11586:3 11590:7 11593:1 11599:2 11622:1 11623:1 11631:4 11655:2 11687:1 11696:6 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:3 11724:1 11745:2 11765:5 11767:1 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11832:1 11838:1 11856:1 11865:1 11867:1 11868:7 11880:1 11901:1 11908:1 11944:1 11945:8 11949:1 11957:1 11964:4 11966:1 11971:1 11972:1 11978:8 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12111:1 12115:1 12118:8 12123:1 12124:6 12127:2 12137:1 12143:1 12144:1 12145:2 12150:2 12154:2 12163:3 12164:1 12168:1 12169:1 12171:1 12184:2 12186:5 12188:1 12200:3 12208:1 12217:2 12221:1 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:5 12304:1 12320:2 12331:4 12334:1 12347:1 12360:1 12361:1 12378:1 12385:1 12395:1 12398:1 12417:1 12418:2 12420:2 12429:2 12431:1 12454:6 12456:1 12457:2 12460:6 12462:2 12465:2 12474:1 12475:1 12480:1 12485:1 12486:2 12505:5 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:8 12585:1 12604:3 12620:3 12624:1 12626:1 12629:2 12639:1 12640:1 12664:7 12667:1 12668:3 12669:1 12675:2 12686:2 12696:2 12706:1 12708:1 12718:1 12727:5 12734:1 12745:1 12751:10 12762:1 12796:2 12803:1 12820:1 12821:2 12834:1 12838:1 12843:1 12849:2 12867:3 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12913:1 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13018:1 13021:1 13032:2 13040:1 13049:3 13057:2 13065:2 13072:1 13073:1 13075:3 13083:4 13084:1 13086:4 13088:9 13090:1 13092:8 13100:5 13104:2 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:3 13247:2 13249:2 13254:4 13259:4 13263:1 13267:1 13272:2 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:3 13360:2 13362:3 13367:2 13371:1 13376:2 13383:2 13386:2 13391:5 13392:1 13407:3 13410:2 13417:1 13422:2 13435:1 13441:1 13442:1 13463:1 13466:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:2 13544:2 13563:4 13566:1 13568:2 13570:1 13584:1 13586:1 13588:1 13609:1 13629:1 13630:1 13637:11 13639:1 13652:3 13655:1 13658:1 13659:3 13666:1 13676:1 13679:10 13680:3 13700:2 13708:2 13719:2 13723:1 13724:1 13731:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13809:1 13823:1 13842:1 13856:6 13859:1 13862:1 13864:1 13867:1 13868:1 13879:1 13880:1 13881:2 13887:2 13889:1 13897:1 13903:2 13905:1 13912:1 13930:1 13935:1 13938:1 13944:1 13947:1 13951:1 13955:1 13957:1 13959:3 13960:1 13964:1 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:12 14055:2 14084:1 14089:4 14096:1 14098:1 14102:1 14103:1 14104:5 14115:6 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14203:1 14208:1 14216:1 14228:1 14252:5 14255:2 14263:11 14268:4 14273:2 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:8 14306:3 14310:1 14316:1 14320:1 14321:1 14350:1 14351:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14396:4 14412:1 14418:10 14424:1 14432:1 14434:1 14441:2 14446:1 14452:1 14461:3 14479:2 14486:1 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:5 14546:1 14548:1 14553:1 14556:6 14557:3 14570:2 14599:2 14616:4 14640:2 14644:1 14653:1 14657:1 14662:1 14669:19 14670:1 14674:1 14675:1 14687:4 14690:2 14692:2 14695:1 14696:2 14710:1 14722:1 14730:2 14747:7 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14781:1 14782:1 14783:1 14785:1 14789:1 14795:1 14796:1 14801:2 14803:1 14809:3 14812:1 14822:2 14825:1 14829:1 14858:1 14860:4 14897:4 14899:1 14900:1 14918:1 14934:1 14940:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:5 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15136:4 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15205:1 15224:1 15236:1 15241:1 15244:3 15248:1 15260:4 15269:1 15272:1 15277:1 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:1 15329:1 15330:1 15341:1 15355:1 15356:3 15366:1 15385:1 15390:1 15400:5 15402:2 15405:6 15410:1 15426:1 15432:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:4 15487:1 15490:1 15495:2 15508:5 15516:1 15519:4 15529:1 15530:1 15531:2 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15592:2 15605:1 15607:6 15608:1 15617:1 15620:2 15621:1 15626:1 15636:3 15638:2 15661:5 15663:3 15671:1 15675:1 15685:2 15688:2 15689:3 15697:2 15705:7 15706:3 15708:1 15716:4 15718:1 15754:1 15758:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15866:2 15869:1 15880:1 15884:4 15895:1 15897:2 15916:1 15920:1 15936:1 15940:1 15941:2 15959:1 15961:2 15962:3 15963:3 15970:5 15971:1 15974:1 15981:5 15988:2 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16067:1 16073:2 16075:3 16077:1 16089:1 16102:2 16104:1 16113:7 16118:1 16119:1 16126:1 16153:1 16154:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:2 16178:1 16187:2 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16209:2 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16308:1 16311:37 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:3 16400:1 16402:1 16404:1 16405:5 16407:1 16418:1 16424:1 16427:1 16436:5 16442:1 16452:1 16464:1 16476:5 16514:1 16518:1 16530:4 16532:1 16544:1 16549:1 16554:2 16557:2 16571:5 16573:1 16575:2 16583:1 16592:2 16600:1 16606:1 16616:2 16617:1 16637:1 16643:1 16655:1 16668:1 16670:1 16681:1 16682:1 16689:1 16695:2 16700:3 16720:2 16728:1 16735:1 16745:1 16770:1 16776:5 16778:1 16787:1 16802:1 16811:3 16834:1 16845:1 16870:5 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16949:2 16959:1 16963:9 16970:1 16982:1 16991:1 16998:1 17007:1 17009:1 17014:1 17015:3 17021:2 17023:5 17024:1 17027:1 17042:1 17045:1 17047:1 17053:5 17057:2 17060:2 17065:1 17069:2704 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:4 17260:7 17266:1 17271:2 17272:5 17274:4 17276:5 17278:1 17288:1 17304:1 17335:2 17341:1 17346:8 17350:2 17352:2 17357:1 17359:1 17381:39 17387:1 17395:1 17398:7 17419:1 17430:1 17433:1 17449:1 17455:1 17460:1 17461:1 17469:1 17471:2 17482:1 17487:1 17490:1 17502:1 17503:1 17505:1 17518:2 17527:5 17535:1 17536:2 17543:4 17557:2 17573:3 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:2 17621:1 17628:1 17639:2 17641:4 17666:2 17669:1 17672:3 17673:4 17678:1 17685:1 17689:4 17691:3 17697:4 17701:1 17707:1 17712:1 17719:6 17723:1 17727:1 17730:1 17737:1 17738:2 17747:2 17749:1 17752:1 17763:2 17766:1 17769:5 17772:12 17791:1 17792:1 17807:8 17808:1 17819:2 17821:1 17826:1 17833:1 17838:1 17879:2 17882:1 17885:3 17887:1 17924:1 17927:1 17937:2 17949:5 17951:1 17956:1 17957:2 17966:2 17968:1 17984:1 17985:5 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:2 18061:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18168:2 18170:4 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:7 18205:1 18206:2 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:3 18272:1 18275:1 18299:3 18301:1 18320:2 18323:5 18330:2 18345:1 18349:2 18355:1 18356:5 18367:1 18368:1 18382:4 18384:1 18395:1 18400:1 18406:2 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:2 18453:1 18464:5 18470:1 18476:1 18481:3 18483:1 18484:1 18491:2 18500:1 18510:2 18513:2 18526:2 18545:6 18552:1 18557:1 18568:1 18589:10 18590:3 18594:5 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18735:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18779:1 18796:1 18802:1 18804:1 18806:9 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:3 18875:1 18883:1 18887:1 18903:4 18910:1 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18968:1 18972:2 18973:1 18983:1 18984:5 18996:1 18997:1 19002:2 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:6 19032:1 19037:1 19039:1 19041:3 19042:3 19050:1 19053:1 19063:7 19073:1 19088:1 19092:2 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19225:1 19232:1 19238:1 19254:1 19257:2 19264:2 19283:8 19292:1 19293:1 19296:1 19300:1 19305:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19418:1 19423:1 19434:3 19440:1 19459:1 19465:1 19466:2 19470:1 19488:1 19494:1 19495:1 19502:1 19544:1 19549:2 19557:1 19565:2 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:3 19649:1 19656:4 19657:1 19658:1 19659:2 19666:2 19667:2 19675:3 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:3 19710:1 19718:1 19721:2 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:4 19760:1 19762:2 19763:1 19767:1 19768:3 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:10 19805:1 19817:2 19818:1 19821:5 19822:1 19836:2 19843:1 19851:1 19865:1 19878:2 19892:2 19895:1 19897:4 19898:1 19905:1 19909:9 19915:1 19920:2 19925:1 19927:3 19940:1 19941:3 19942:1 19951:1 19967:1 19972:2 19993:1 19994:1 19995:1 20000:1 20021:2 20022:1 20025:7 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20075:1 20080:2 20085:1 20091:2 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:5 20225:1 20226:2 20228:4 20229:3 20231:1 20232:1 20235:1 20242:1 20264:1 20265:1 20272:3 20274:1 20278:3 20294:2 20295:2 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:2 20355:1 20365:1 20373:1 20381:5 20383:6 20385:3 20386:1 20388:2 20389:1 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:4 20442:1 20450:2 20455:3 20457:3 20464:3 20466:2 20467:4 20473:1 20483:2 20489:1 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20531:1 20533:2 20534:1 20536:1 20540:1 20543:1 20547:1 20552:3 20556:1 20564:1 20567:3 20574:1 20598:9 20599:1 20600:1 20610:1 20613:1 20617:2 20624:1 20625:37 20631:4 20632:1 20634:4 20637:3 20638:1 20640:5 20642:1 20644:1 20645:2 20662:1 20663:4 20666:1 20672:3 20676:1 20679:3 20692:2 20693:3 20697:1 20706:3 20707:1 20708:1 20726:3 20736:1 20738:1 20746:1 20771:5 20776:1 20779:10 20786:2 20804:3 20807:2 20820:1 20825:1 20853:1 20854:2 20855:1 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20909:1 20911:1 20912:1 20932:1 20951:1 20952:2 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:2 21064:1 21070:2 21077:1 21086:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:5 21177:3 21180:1 21183:1 21190:3 21199:1 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:1 21298:1 21302:1 21304:1 21314:1 21317:2 21326:1 21339:1 21342:3 21345:2 21352:1 21353:1 21359:1 21364:3 21378:2 21383:3 21384:1 21388:1 21389:2 21395:1 21402:1 21409:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:3 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21505:1 21514:13 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:2 21626:2 21632:2 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:5 21678:1 21693:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21732:3 21735:1 21746:11 21748:2 21751:1 21764:7 21776:1 21778:1 21780:1 21789:2 21795:1 21830:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:1 21892:1 21894:2 21895:1 21901:1 21915:1 21919:1 21923:1 21934:1 21955:1 21956:1 21964:1 21993:1 21994:1 21996:4 22005:6 22007:1 22013:4 22018:1 22029:2 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:2 22079:1 22085:3 22088:1 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:3 22137:1 22142:1 22154:1 22155:3 22161:2 22165:2 22166:3 22167:1 22173:1 22181:1 22183:1 22192:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:2 22275:1 22276:2 22277:1 22279:8 22281:3 22282:1 22283:4 22284:2 22287:1 22288:2 22289:2 22290:5 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:6 22323:1 22327:2 22335:1 22352:1 22357:3 22359:1 22367:1 22371:3 22382:1 22384:7 22388:3 22403:2 22408:1 22409:1 22417:1 22418:3 22428:1 22442:1 22445:1 22447:3 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:6 22549:1 22559:3 22560:1 22564:1 22570:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22630:3 22631:1 22632:1 22639:1 22650:1 22656:2 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:7 22775:1 22789:2 22794:1 22796:2 22808:1 22810:4 22814:1 22815:1 22821:2 22832:1 22834:1 22841:4 22881:1 22882:1 22899:1 22902:2 22912:4 22914:8 22942:12 22950:1 22962:9 22970:1 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23057:2 23078:1 23081:2 23083:1 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:12 23128:2 23129:4 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:2 23163:2 23175:1 23185:2 23188:1 23194:1 23200:5 23207:1 23223:1 23229:4 23230:1 23232:1 23236:2 23239:2 23240:2 23249:1 23288:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:3 23366:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:6 23417:1 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:2 23527:1 23534:1 23537:4 23549:1 23557:1 23573:1 23578:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:1 23635:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23703:1 23705:2 23722:1 23728:2 23735:5 23740:1 23749:1 23753:2 23760:1 23767:2 23770:5 23782:1 23792:1 23796:5 23797:1 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:3 23866:1 23873:2 23891:2 23903:1 23908:7 23910:1 23932:1 23937:8 23940:1 23952:1 23953:1 23956:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:4 24037:1 24041:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:4 24089:1 24091:1 24097:1 24098:1 24099:2 24102:1 24116:3 24130:2 24132:1 24134:2 24156:2 24158:2 24171:1 24172:2 24178:1 24191:1 24200:1 24202:2 24218:2 24237:2 24241:1 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24333:1 24351:1 24358:2 24365:1 24372:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:2 24434:2 24437:2 24449:1 24453:1 24454:1 24459:1 24465:1 24468:3 24474:1 24478:1 24481:2 24489:1 24493:2 24512:1 24524:1 24526:1 24529:1 24533:1 24540:1 24542:1 24552:2 24564:2 24568:2 24569:1 24573:1 24576:5 24588:4 24602:5 24610:5 24612:1 24619:1 24621:2 24622:1 24634:1 24635:1 24638:1 24653:4 24664:2 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:3 24748:1 24749:1 24756:13 24767:1 24785:1 24787:5 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:8 24848:2 24849:3 24850:1 24861:1 24862:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:3 24908:1 24911:1 24925:1 24928:1 24929:3 24934:1 24936:1 24942:1 24943:2 24951:1 24967:3 24983:2 24989:1 24990:1 24993:1 24999:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:2 25065:1 25108:1 25147:1 25152:1 25166:1 25167:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:5 25231:1 25233:1 25240:1 25251:1 25273:1 25278:1 25281:1 25284:2 25307:1 25310:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25383:1 25403:3 25433:1 25435:7 25443:1 25447:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:34 25550:4 25553:5 25554:1 25555:3 25564:2 25570:1 25577:1 25590:11 25602:1 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:4 25688:7 25696:2 25719:13 25720:1 25721:2 25725:3 25729:2 25738:2 25741:1 25743:4 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:2 25771:2 25772:1 25780:2 25784:2 25790:1 25794:2 25795:2 25800:1 25802:1 25804:3 25808:1 25811:1 25819:1 25821:1 25824:1 25826:2 25828:1 25840:1 25856:1 25859:1 25873:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:2 25912:5 25916:1 25922:1 25943:1 25944:1 25946:2 25964:1 25965:2 25966:3 25968:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:3 26019:6 26023:1 26024:2 26027:2 26032:1 26033:1 26035:1 26039:2 26044:2 26046:1 26048:1 26050:1 26054:1 26060:1 26062:2 26077:1 26096:1 26098:1 26099:1 26115:1 26121:1 26135:1 26143:1 26151:2 26152:1 26155:1 26159:2 26174:1 26182:1 26184:1 26186:1 26187:2 26190:2 26192:2 26196:1 26202:2 26204:3 26211:1 26219:1 26232:8 26241:2 26243:2 26245:1 26247:10 26249:1 26255:1 26256:1 26264:1 26277:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26339:1 26343:1 26349:1 26361:1 26363:3 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26450:2 26451:1 26470:2 26484:2 26488:4 26507:2 26511:1 26518:2 26533:1 26536:2 26538:1 26556:2 26560:1 26561:2 26568:2 26579:1 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26707:1 26712:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:2 26762:3 26766:3 26771:3 26812:1
9 8:1 10:2 15:1 22:1 27:1 35:1 38:6 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 89:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:2 166:1 168:3 177:1 183:1 185:5 202:1 205:8 206:1 213:1 223:1 239:1 243:1 259:1 263:2 268:2 275:1 282:1 283:39 294:2 312:1 313:4 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 358:2 378:1 392:2 420:4 427:2 428:1 431:1 433:1 435:1 440:1 459:1 464:1 506:1 507:1 516:1 549:2 550:5 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:2 645:1 666:1 670:3 676:1 683:1 686:1 697:1 715:1 723:1 726:2 729:1 737:1 740:1 748:1 755:3 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:10 818:3 828:3 829:1 840:1 843:16 845:1 846:1 851:1 856:1 860:1 867:1 868:6 869:1 870:1 872:8 874:1 875:4 878:1 881:1 883:1 884:1 888:1 890:1 893:4 903:1 904:1 910:2 912:3 930:1 931:1 940:3 956:1 962:6 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:1 1086:1 1087:1 1092:1 1096:3 1100:1 1104:1 1110:1 1128:1 1138:1 1148:1 1150:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:1 1201:1 1204:1 1209:1 1234:1 1238:1 1245:2 1250:1 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:3 1354:2 1355:3 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1504:1 1506:2 1520:6 1524:1 1528:2 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:2 1599:2 1601:2 1615:1 1621:1 1628:1 1637:1 1652:3 1659:1 1664:1 1668:2 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:2 1733:2 1745:1 1752:1 1756:1 1776:1 1780:1 1792:1 1793:1 1795:2 1797:19 1802:1 1809:2 1821:2 1827:1 1832:1 1833:1 1834:1 1843:1 1846:1 1853:8 1855:2 1883:1 1886:1 1893:2 1895:4 1903:2 1908:1 1925:1 1928:2 1929:1 1937:1 1946:2 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2034:1 2035:2 2036:1 2038:1 2039:2 2041:5 2042:1 2044:1 2047:2 2051:1 2052:1 2057:1 2058:1 2060:5 2063:5 2064:2 2065:5 2068:1 2069:1 2070:1 2074:1 2077:4 2079:1 2096:1 2098:1 2103:4 2104:2 2105:2 2108:2 2109:8 2112:5 2117:1 2118:2 2119:5 2123:1 2125:1 2126:1 2129:3 2133:1 2135:2 2138:2 2140:2 2141:6 2143:2 2144:9 2154:1 2155:2 2156:1 2165:1 2185:1 2195:2 2197:2 2203:1 2212:1 2227:1 2230:1 2234:1 2237:1 2250:3 2256:4 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:5 2303:1 2310:10 2320:1 2324:1 2326:1 2344:1 2350:1 2353:1 2360:5 2369:6 2374:1 2390:1 2391:3 2397:2 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2431:1 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:2 2512:2 2516:1 2518:1 2528:1 2530:3 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:3 2635:2 2636:2 2645:2 2653:2 2666:1 2670:8 2674:2 2683:28 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:16 2748:1 2749:1 2756:6 2761:9 2762:1 2765:1 2766:1 2771:1 2787:1 2808:1 2813:1 2817:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2883:1 2888:1 2911:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:2 2994:6 2999:1 3004:2 3006:2 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:5 3089:1 3105:2 3109:14 3149:1 3157:1 3171:1 3173:2 3177:2 3207:1 3214:1 3222:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3279:1 3281:1 3293:2 3299:1 3303:1 3306:1 3317:4 3322:1 3325:1 3326:1 3330:2 3332:8 3346:1 3348:6 3354:2 3355:2 3356:1 3357:5 3358:2 3364:1 3368:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:3 3435:3 3439:1 3442:2 3445:3 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:14 3494:1 3500:1 3510:1 3513:1 3520:1 3524:5 3525:1 3530:2 3532:3 3533:13 3534:1 3537:2 3545:3 3548:7 3553:1 3557:1 3562:1 3568:3 3571:1 3578:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3611:1 3616:1 3621:2 3631:1 3633:4 3638:3 3648:2 3649:2 3653:1 3665:1 3667:1 3671:1 3672:3 3676:3 3680:3 3684:1 3694:5 3701:1 3703:1 3705:2 3706:2 3709:2 3711:1 3713:1 3714:3 3715:2 3724:5 3725:5 3731:1 3745:1 3746:1 3748:1 3758:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:1 3806:6 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3960:1 3969:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:2 4007:1 4012:1 4013:2 4017:1 4034:1 4035:1 4042:2 4046:1 4048:2 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4123:4 4129:1 4145:1 4151:2 4154:1 4161:1 4168:1 4170:1 4179:1 4188:1 4195:2 4201:2 4212:1 4216:1 4220:1 4222:1 4229:1 4238:2 4256:1 4260:1 4263:3 4264:1 4269:1 4272:5 4284:1 4290:3 4300:2 4303:1 4304:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:8 4425:2 4427:2 4440:3 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:30 4515:3 4518:1 4530:1 4531:3 4533:1 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:2 4582:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:8 4609:1 4610:1 4611:1 4614:1 4615:3 4616:2 4618:1 4619:4 4621:1 4622:2 4625:1 4626:1 4628:5 4630:3 4631:1 4633:1 4637:1 4639:1 4640:1 4642:4 4643:4 4645:1 4660:1 4662:1 4663:1 4668:1 4679:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4728:1 4734:2 4739:1 4751:1 4754:1 4763:3 4764:1 4765:3 4769:2 4774:1 4776:3 4787:1 4793:1 4795:1 4799:1 4806:1 4812:2 4817:5 4822:1 4844:1 4850:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4914:1 4919:3 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4998:1 5004:1 5025:1 5039:1 5040:2 5047:1 5051:1 5055:1 5056:3 5074:2 5075:2 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5111:1 5115:1 5116:1 5123:1 5129:1 5136:3 5140:1 5143:1 5147:1 5153:1 5160:1 5169:3 5182:5 5191:1 5192:1 5217:3 5232:1 5233:3 5235:1 5248:1 5249:1 5254:1 5261:1 5276:3 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:4 5397:1 5399:1 5400:1 5415:1 5424:1 5428:2 5443:1 5482:1 5493:4 5494:1 5514:2 5516:1 5518:1 5519:19 5533:5 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:2 5630:1 5649:1 5655:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:7 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:4 5790:1 5791:1 5792:1 5794:2 5797:1 5799:2 5801:4 5803:1 5804:3 5805:3 5807:5 5808:1 5810:1 5813:4 5815:13 5816:5 5818:3 5857:1 5858:1 5876:3 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6016:1 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:2 6062:3 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6107:1 6110:1 6117:2 6122:2 6153:1 6154:1 6155:2 6163:2 6171:1 6174:3 6177:1 6179:2 6180:1 6181:1 6191:1 6201:10 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6261:1 6262:1 6264:1 6280:1 6291:4 6292:1 6303:3 6331:2 6333:3 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6414:2 6420:1 6434:1 6448:1 6455:1 6458:1 6462:1 6463:1 6475:15 6476:1 6485:1 6491:1 6498:3 6515:1 6519:2 6523:2 6524:2 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:3 6607:1 6615:2 6630:1 6648:2 6654:1 6658:3 6660:1 6665:1 6671:5 6672:1 6674:1 6679:1 6684:1 6692:1 6705:1 6707:1 6713:6 6717:4 6720:1 6723:1 6734:2 6741:1 6754:3 6755:1 6760:2 6769:1 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6912:1 6919:3 6920:14 6922:8 6924:1 6931:1 6933:2 6939:1 6943:3 6944:4 6945:2 6963:5 6964:1 6979:63 6983:2 7003:9 7004:16 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:2 7080:2 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7147:1 7152:1 7154:1 7169:2 7196:3 7210:1 7219:1 7221:1 7223:3 7238:1 7244:8 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:2 7402:2 7404:2 7416:1 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:3 7471:1 7473:13 7488:3 7493:2 7495:2 7500:1 7513:1 7532:1 7537:1 7547:2 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7630:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:4 7669:2 7678:4 7680:1 7683:3 7686:3 7692:1 7693:4 7702:1 7706:1 7715:1 7720:5 7723:2 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7779:1 7781:1 7783:3 7784:8 7787:4 7788:2 7789:1 7791:3 7794:8 7796:3 7797:4 7798:1 7800:2 7812:3 7813:2 7833:4 7837:2 7838:7 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7880:1 7892:2 7929:1 7931:2 7936:1 7944:1 7949:1 7953:1 7965:1 7967:1 7973:1 7994:1 8000:2 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8082:1 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8183:1 8185:1 8188:1 8196:1 8204:2 8215:6 8219:2 8226:1 8231:1 8232:2 8233:1 8235:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:3 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:3 8384:2 8388:1 8391:1 8403:2 8404:1 8408:1 8414:1 8434:1 8437:2 8440:2 8441:8 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:39 8463:4 8464:2 8471:1 8483:2 8484:1 8493:1 8494:2 8498:1 8508:1 8521:4 8531:1 8533:2 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:8 8586:1 8587:2 8603:1 8608:1 8609:1 8625:1 8633:5 8636:1 8638:1 8646:1 8648:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:3 8757:1 8759:1 8770:1 8771:1 8772:6 8778:1 8786:1 8788:1 8790:5 8792:2 8794:1 8798:3 8803:2 8826:1 8833:2 8857:9 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:1 8886:1 8890:1 8891:1 8894:2 8901:1 8902:1 8913:2 8931:3 8953:1 8958:1 8962:1 8963:1 8977:1 8979:1 8982:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9037:2 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9079:1 9080:2 9084:3 9085:1 9086:2 9088:1 9089:2 9091:1 9094:1 9096:1 9103:1 9108:1 9111:1 9113:1 9120:4 9135:1 9142:1 9161:1 9163:2 9175:1 9181:1 9182:1 9195:1 9198:2 9201:1 9207:1 9215:1 9235:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9342:1 9345:2 9347:1 9373:1 9374:2 9382:1 9388:2 9409:2 9410:5 9411:1 9430:1 9433:1 9434:2 9441:2 9445:2 9447:1 9461:2 9462:1 9470:1 9481:5 9484:2 9492:2 9497:1 9508:1 9513:1 9537:1 9539:1 9553:3 9560:1 9562:1 9577:1 9584:2 9589:2 9592:1 9594:2 9597:1 9603:1 9604:2 9605:4 9607:2 9608:1 9610:8 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:2 9651:3 9652:4 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9684:1 9689:2 9690:1 9692:2 9693:1 9713:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:15 9795:1 9825:1 9826:1 9828:1 9831:1 9833:2 9843:1 9855:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9904:1 9911:2 9914:1 9922:1 9940:1 9945:1 9956:1 9960:1 9969:2 9970:4 9972:4 9974:2 9976:2 9981:1 9984:3 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:8 10045:1 10046:1 10055:1 10059:7 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10118:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:2 10206:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:4 10341:1 10361:10 10368:1 10391:3 10395:14 10396:1 10398:1 10400:1 10408:1 10414:1 10419:1 10425:2 10426:1 10430:2 10444:1 10450:2 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:3 10548:1 10552:4 10554:8 10572:7 10573:7 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10622:1 10623:3 10626:2 10629:1 10631:2 10634:3 10635:1 10638:1 10644:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:2 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10804:1 10826:2 10829:2 10830:1 10857:1 10862:5 10864:1 10869:4 10871:1 10879:1 10896:1 10902:1 10911:3 10913:5 10916:1 10929:1 10953:5 10956:1 10968:2 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11046:1 11052:1 11059:1 11061:1 11062:3 11063:4 11065:2 11074:1 11075:2 11082:1 11089:2 11102:1 11103:2 11109:1 11115:4 11116:5 11123:3 11125:1 11128:2 11135:1 11153:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:10 11226:1 11231:2 11241:1 11251:1 11257:3 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:2 11339:1 11356:1 11359:4 11368:3 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:7 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:2 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:19 11568:1 11572:1 11575:1 11578:1 11586:3 11590:7 11593:1 11599:2 11622:1 11623:1 11631:4 11655:2 11671:1 11687:1 11696:6 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:3 11724:1 11745:2 11765:5 11767:1 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11832:1 11838:1 11856:1 11865:1 11867:1 11868:7 11880:1 11901:1 11908:1 11944:2 11945:8 11949:1 11957:1 11964:4 11966:1 11971:1 11972:1 11978:8 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12111:1 12115:1 12118:8 12119:1 12123:1 12124:6 12127:2 12137:1 12143:1 12144:1 12145:2 12150:2 12154:2 12163:3 12164:1 12168:1 12169:1 12171:1 12184:2 12186:5 12188:1 12200:3 12208:1 12217:2 12221:2 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:6 12304:1 12318:1 12320:2 12331:4 12334:1 12347:1 12360:1 12361:1 12378:2 12385:1 12395:1 12398:1 12417:1 12418:3 12420:2 12429:2 12431:1 12447:1 12454:6 12456:1 12457:2 12460:6 12462:2 12465:2 12469:1 12474:1 12475:1 12480:1 12485:1 12486:2 12488:1 12505:5 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:8 12585:1 12604:4 12620:3 12624:1 12626:1 12629:2 12639:1 12640:1 12664:7 12667:1 12668:3 12669:1 12675:2 12686:2 12696:2 12706:1 12708:1 12718:1 12727:5 12734:1 12745:1 12751:11 12762:1 12796:2 12803:2 12820:1 12821:2 12834:1 12838:1 12843:1 12849:2 12867:3 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12913:1 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13018:1 13021:1 13032:2 13040:1 13049:3 13057:2 13065:2 13072:1 13073:1 13075:3 13083:4 13084:1 13086:4 13088:9 13090:1 13092:8 13100:5 13104:3 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13214:5 13219:1 13235:1 13240:3 13247:2 13249:2 13254:4 13259:4 13263:1 13267:1 13272:2 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:3 13360:2 13362:3 13367:2 13371:1 13376:2 13383:2 13386:2 13391:5 13392:1 13407:3 13410:2 13417:1 13422:2 13435:1 13441:1 13442:1 13463:1 13466:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:2 13544:2 13563:4 13566:1 13568:2 13570:1 13584:1 13586:2 13588:1 13609:1 13629:1 13630:1 13637:11 13639:1 13652:3 13655:1 13658:1 13659:3 13666:1 13676:1 13679:10 13680:3 13700:2 13708:2 13717:1 13719:2 13723:1 13724:1 13731:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:1 13809:1 13823:1 13842:1 13856:6 13859:1 13862:1 13864:1 13867:1 13868:1 13879:1 13880:1 13881:2 13887:2 13889:1 13897:1 13903:2 13905:1 13912:1 13930:1 13935:1 13936:1 13938:1 13944:1 13947:1 13951:1 13955:1 13957:1 13959:3 13960:1 13964:1 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:12 14055:2 14084:1 14089:4 14096:1 14098:1 14102:1 14103:1 14104:5 14115:6 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14203:1 14208:1 14216:1 14228:1 14252:6 14255:2 14263:12 14268:4 14273:2 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:8 14306:4 14310:1 14316:1 14320:1 14321:1 14350:1 14351:2 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14395:1 14396:4 14412:1 14418:10 14424:1 14432:1 14434:2 14441:2 14446:1 14452:1 14461:3 14479:2 14486:1 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:5 14546:1 14548:1 14553:1 14556:6 14557:3 14570:2 14599:2 14616:4 14640:2 14644:1 14653:1 14654:1 14657:1 14662:1 14669:19 14670:1 14674:1 14675:1 14687:5 14690:2 14692:2 14695:1 14696:2 14710:1 14722:1 14730:2 14747:7 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14781:1 14782:1 14783:1 14785:1 14789:1 14795:1 14796:1 14801:2 14803:1 14809:3 14812:1 14822:2 14825:1 14829:1 14858:1 14860:4 14897:5 14899:1 14900:1 14918:1 14934:1 14940:1 14941:1 14942:1 14954:1 14971:1 14990:1 15004:1 15006:1 15010:5 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15113:1 15114:1 15123:1 15124:1 15135:1 15136:4 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15205:1 15224:1 15236:1 15241:1 15244:3 15248:1 15260:4 15269:1 15272:1 15277:2 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:1 15329:1 15330:1 15341:1 15355:1 15356:3 15366:1 15370:1 15385:1 15390:1 15400:5 15402:2 15405:6 15410:1 15426:1 15432:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:4 15487:1 15490:1 15495:2 15508:5 15516:1 15519:4 15529:1 15530:1 15531:2 15541:1 15544:2 15546:1 15564:1 15571:2 15576:1 15578:2 15583:6 15587:1 15592:2 15605:1 15607:7 15608:1 15617:1 15620:2 15621:1 15626:1 15636:3 15638:2 15661:5 15663:3 15671:1 15675:1 15685:2 15688:2 15689:3 15697:2 15705:7 15706:3 15708:1 15716:4 15718:1 15754:1 15758:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15866:2 15869:1 15880:1 15884:4 15895:1 15897:2 15916:1 15920:1 15936:1 15940:1 15941:2 15959:1 15961:2 15962:3 15963:3 15970:6 15971:1 15974:1 15981:6 15988:2 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16067:1 16073:2 16075:3 16077:1 16089:1 16102:2 16104:1 16113:7 16118:1 16119:1 16126:1 16127:1 16130:1 16153:1 16154:1 16158:1 16164:2 16167:2 16170:1 16174:1 16176:2 16178:1 16187:2 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16209:2 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:8 16302:1 16305:4 16308:1 16311:38 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:4 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:3 16400:1 16402:1 16404:1 16405:5 16407:1 16418:1 16424:1 16427:1 16436:5 16442:1 16452:1 16464:1 16476:5 16514:1 16518:1 16530:4 16532:1 16544:1 16549:1 16551:1 16554:2 16557:2 16571:5 16573:1 16575:2 16583:1 16592:2 16600:1 16606:1 16616:2 16617:1 16637:1 16643:1 16655:1 16666:1 16668:1 16670:1 16681:1 16682:1 16689:1 16695:2 16700:3 16720:2 16728:1 16735:1 16745:1 16770:1 16776:5 16778:1 16787:1 16802:1 16811:3 16834:1 16845:1 16870:5 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16949:2 16959:1 16963:9 16970:1 16982:1 16991:1 16998:1 17007:1 17009:1 17014:1 17015:3 17021:2 17023:5 17024:1 17027:1 17042:1 17045:1 17047:1 17053:5 17057:2 17060:3 17065:1 17069:2786 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:4 17260:7 17266:1 17271:2 17272:5 17274:4 17276:5 17278:1 17288:1 17304:1 17335:2 17341:1 17346:8 17350:2 17352:2 17357:1 17359:1 17381:39 17387:1 17395:1 17398:7 17419:1 17430:1 17433:1 17449:1 17455:1 17460:1 17461:1 17469:1 17471:2 17482:1 17487:1 17490:1 17502:1 17503:1 17505:1 17518:2 17527:5 17535:1 17536:2 17543:4 17557:2 17573:3 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:2 17621:1 17628:1 17639:2 17641:4 17666:2 17669:1 17672:4 17673:4 17678:1 17685:1 17689:4 17691:3 17697:4 17701:1 17707:1 17712:1 17719:6 17723:1 17727:1 17730:1 17737:2 17738:2 17747:2 17749:1 17752:2 17763:2 17766:1 17769:5 17772:13 17791:1 17792:1 17807:8 17808:1 17815:1 17819:2 17821:1 17826:1 17833:1 17838:1 17862:1 17879:2 17882:1 17885:3 17887:1 17924:1 17927:1 17937:2 17949:5 17951:1 17956:1 17957:2 17966:2 17968:1 17984:1 17985:5 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:2 18061:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18168:2 18170:4 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:7 18205:1 18206:3 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:3 18272:1 18275:1 18299:3 18301:1 18320:2 18323:5 18330:2 18345:1 18349:2 18352:1 18355:1 18356:5 18367:1 18368:1 18382:5 18384:1 18395:1 18400:1 18406:2 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:2 18453:1 18464:5 18470:1 18476:1 18481:3 18483:1 18484:1 18491:3 18500:1 18510:2 18513:2 18526:2 18545:6 18552:1 18557:1 18568:1 18589:10 18590:3 18594:5 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18735:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18779:1 18796:1 18802:1 18804:1 18806:9 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:3 18875:1 18883:1 18887:1 18903:4 18910:1 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18965:1 18968:1 18972:2 18973:1 18980:1 18983:1 18984:5 18996:1 18997:1 19002:2 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:6 19032:1 19037:1 19039:1 19041:3 19042:4 19050:1 19053:1 19063:7 19073:1 19088:1 19092:2 19098:2 19101:1 19102:3 19120:1 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19225:1 19232:1 19238:1 19254:1 19257:2 19264:2 19283:8 19292:1 19293:1 19296:1 19300:1 19305:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19418:1 19423:1 19434:3 19440:2 19459:1 19465:1 19466:2 19470:1 19488:1 19494:1 19495:1 19502:1 19540:1 19544:1 19549:2 19557:1 19565:2 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:3 19649:1 19656:5 19657:1 19658:1 19659:2 19666:2 19667:2 19675:3 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:3 19710:1 19718:1 19721:2 19726:1 19731:1 19735:4 19747:1 19749:2 19751:1 19753:1 19758:4 19760:1 19762:2 19763:1 19767:1 19768:3 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:10 19805:1 19817:2 19818:1 19821:5 19822:1 19836:2 19843:1 19851:1 19865:1 19878:2 19892:2 19895:1 19897:4 19898:1 19905:1 19909:9 19915:1 19920:2 19925:1 19927:3 19940:1 19941:3 19942:1 19951:1 19967:1 19972:2 19993:1 19994:1 19995:1 20000:1 20021:2 20022:1 20025:7 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20075:1 20080:2 20085:1 20091:2 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:5 20225:1 20226:2 20228:4 20229:3 20231:1 20232:1 20235:1 20242:1 20264:1 20265:1 20272:3 20274:1 20278:3 20294:2 20295:2 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:3 20355:1 20365:1 20373:1 20381:5 20383:6 20385:3 20386:1 20388:2 20389:1 20390:1 20396:2 20400:1 20414:1 20423:2 20432:1 20433:1 20434:5 20442:1 20450:2 20455:3 20457:3 20464:3 20466:2 20467:4 20473:1 20483:2 20489:1 20493:1 20494:1 20498:1 20499:3 20505:1 20514:2 20531:1 20533:2 20534:1 20536:1 20540:1 20543:1 20547:2 20552:3 20556:1 20564:1 20567:4 20574:1 20598:9 20599:1 20600:1 20610:1 20613:1 20617:2 20624:1 20625:38 20631:4 20632:1 20634:4 20637:3 20638:1 20640:5 20642:1 20644:1 20645:2 20662:1 20663:4 20666:1 20672:3 20676:1 20679:3 20692:2 20693:3 20697:1 20706:3 20707:1 20708:1 20726:3 20736:1 20738:1 20746:1 20771:5 20776:1 20779:10 20786:3 20804:3 20807:2 20820:1 20825:1 20853:1 20854:2 20855:1 20856:2 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20909:1 20911:1 20912:1 20932:1 20951:1 20952:3 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:2 21064:1 21070:2 21077:1 21086:1 21087:1 21088:1 21095:2 21100:1 21114:1 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:5 21177:3 21180:1 21183:1 21190:3 21199:1 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:3 21298:1 21302:1 21304:1 21314:1 21317:2 21326:1 21339:1 21342:3 21345:3 21352:1 21353:1 21359:1 21364:3 21378:2 21383:3 21384:1 21388:1 21389:2 21395:1 21402:1 21409:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:3 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21505:1 21514:13 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:2 21626:2 21632:2 21633:2 21636:1 21639:1 21640:1 21649:1 21652:1 21661:1 21663:5 21678:1 21693:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21729:1 21732:3 21735:1 21746:11 21748:2 21751:1 21764:7 21776:1 21778:1 21780:1 21789:2 21795:1 21830:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:1 21892:1 21894:2 21895:1 21901:1 21915:1 21919:2 21923:1 21934:1 21955:1 21956:1 21964:1 21993:1 21994:1 21996:4 22005:6 22007:1 22013:4 22018:1 22029:2 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:2 22079:1 22085:3 22088:1 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:4 22137:1 22142:1 22154:1 22155:3 22161:2 22165:2 22166:3 22167:1 22173:1 22181:1 22183:1 22192:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:2 22275:1 22276:2 22277:1 22279:8 22281:3 22282:1 22283:4 22284:2 22287:1 22288:2 22289:2 22290:5 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:6 22323:1 22327:2 22335:1 22352:1 22357:3 22359:1 22367:1 22371:3 22382:1 22384:7 22388:3 22403:2 22408:1 22409:1 22417:1 22418:3 22428:1 22442:1 22445:1 22447:3 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:6 22549:1 22559:3 22560:1 22564:1 22570:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22614:1 22630:3 22631:1 22632:1 22639:1 22650:1 22656:2 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:7 22775:1 22789:2 22794:1 22796:2 22808:1 22810:4 22814:1 22815:1 22821:2 22832:1 22834:1 22841:4 22881:1 22882:1 22899:1 22902:2 22912:4 22914:8 22942:12 22950:1 22962:9 22970:1 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23052:1 23057:2 23078:1 23081:2 23083:1 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:12 23128:2 23129:5 23139:1 23146:1 23149:2 23150:1 23152:1 23157:1 23160:2 23163:2 23175:1 23185:2 23188:1 23194:1 23200:5 23207:1 23223:1 23229:4 23230:1 23232:1 23236:2 23239:2 23240:2 23249:1 23288:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:3 23366:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:6 23417:1 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:3 23527:1 23534:1 23537:4 23549:1 23557:1 23573:1 23578:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:1 23635:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23696:1 23703:1 23705:2 23722:1 23728:2 23735:5 23740:1 23749:1 23753:2 23760:1 23767:2 23770:5 23782:1 23792:1 23796:5 23797:1 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:3 23866:1 23873:2 23891:2 23903:1 23908:7 23910:1 23932:1 23937:8 23940:1 23952:1 23953:1 23956:1 23963:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:4 24037:1 24041:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:5 24089:1 24091:1 24097:1 24098:1 24099:2 24102:1 24116:3 24130:2 24132:1 24134:2 24156:2 24158:2 24171:1 24172:2 24178:1 24191:1 24200:1 24202:3 24218:2 24237:2 24241:1 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24333:1 24351:1 24358:2 24365:1 24372:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:2 24434:2 24437:2 24449:1 24453:2 24454:1 24459:1 24465:1 24468:3 24474:1 24478:1 24481:2 24489:1 24493:2 24512:1 24524:1 24526:1 24529:1 24533:1 24540:1 24542:1 24552:2 24564:2 24568:2 24569:1 24573:1 24576:5 24588:4 24602:5 24610:5 24612:1 24619:1 24621:2 24622:1 24634:1 24635:1 24638:1 24653:5 24664:2 24674:1 24685:10 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:3 24748:1 24749:1 24756:13 24767:1 24785:1 24787:6 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:8 24848:2 24849:3 24850:1 24861:1 24862:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:3 24908:1 24911:1 24925:1 24928:1 24929:3 24934:1 24936:1 24942:1 24943:2 24951:1 24967:3 24983:2 24989:1 24990:1 24993:1 24999:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:2 25065:1 25075:1 25108:1 25147:1 25152:1 25166:1 25167:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:6 25231:1 25233:2 25240:1 25251:1 25273:1 25278:1 25281:1 25284:2 25307:1 25310:1 25313:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25383:1 25403:3 25433:1 25435:7 25443:1 25447:1 25462:1 25467:4 25474:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:34 25550:4 25553:5 25554:1 25555:3 25564:2 25570:1 25577:1 25590:11 25602:1 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:5 25688:7 25696:2 25719:13 25720:1 25721:2 25725:3 25729:2 25738:2 25741:1 25743:4 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:2 25771:2 25772:1 25780:2 25784:2 25790:1 25794:3 25795:2 25800:1 25802:1 25804:4 25808:1 25811:1 25819:1 25821:1 25824:1 25826:3 25828:1 25840:1 25856:1 25859:2 25873:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:2 25912:5 25916:1 25922:2 25943:1 25944:1 25946:2 25964:1 25965:2 25966:3 25968:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:3 26019:6 26023:1 26024:2 26027:2 26032:1 26033:1 26035:1 26039:2 26041:1 26044:2 26046:1 26048:1 26050:1 26054:1 26060:1 26062:2 26077:1 26096:1 26098:1 26099:1 26115:1 26121:1 26135:1 26143:1 26151:2 26152:1 26155:1 26159:3 26174:1 26182:1 26184:1 26186:1 26187:2 26190:2 26192:2 26196:1 26202:2 26204:3 26211:1 26219:1 26232:8 26241:2 26243:2 26245:1 26247:10 26249:1 26252:1 26255:1 26256:1 26264:1 26277:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26339:1 26343:1 26349:1 26361:1 26363:3 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26445:1 26450:2 26451:1 26470:2 26484:2 26488:4 26507:2 26511:1 26518:2 26533:1 26536:2 26538:1 26556:2 26560:1 26561:2 26568:2 26579:1 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26696:1 26707:1 26712:1 26714:8 26715:3 26716:1 26720:1 26722:1 26726:3 26727:3 26742:1 26750:1 26761:2 26762:3 26766:3 26771:3 26812:1
9 8:1 10:2 15:1 22:1 27:1 35:1 38:7 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 89:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:2 166:1 168:3 177:1 183:1 185:5 202:1 205:8 206:1 213:1 223:1 226:1 239:1 243:1 259:1 263:2 268:2 275:1 282:1 283:40 294:2 312:1 313:5 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 358:2 378:1 392:2 420:4 427:2 428:1 431:1 433:1 435:1 440:1 452:1 459:1 464:1 506:1 507:1 516:1 549:2 550:5 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:3 645:1 666:1 670:3 676:1 683:1 686:1 697:2 715:1 723:1 726:2 729:1 737:1 740:1 748:1 755:3 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:10 818:3 828:3 829:1 840:1 843:17 845:1 846:1 851:1 856:1 860:1 867:1 868:6 869:1 870:1 872:9 874:1 875:4 878:1 881:1 883:1 884:1 888:1 890:1 893:4 903:1 904:1 910:2 912:3 930:1 931:1 940:3 956:1 962:6 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:2 1086:1 1087:1 1092:2 1096:3 1100:1 1104:1 1110:1 1123:1 1128:1 1137:1 1138:1 1148:1 1150:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:1 1201:1 1204:1 1209:1 1234:1 1238:1 1245:2 1250:1 1267:1 1274:1 1279:1 1281:3 1296:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:3 1354:2 1355:3 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1504:1 1506:2 1520:6 1524:1 1528:2 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:2 1599:2 1601:2 1615:1 1621:1 1628:1 1637:1 1652:4 1659:1 1664:1 1668:2 1682:4 1695:1 1699:1 1707:1 1714:1 1723:1 1728:1 1730:1 1732:2 1733:2 1745:1 1752:1 1756:1 1776:1 1780:1 1792:1 1793:1 1795:2 1797:19 1802:1 1809:2 1821:2 1827:1 1832:1 1833:1 1834:1 1843:1 1846:1 1853:9 1855:2 1883:1 1886:1 1893:2 1895:4 1903:2 1908:1 1925:1 1928:3 1929:1 1937:1 1946:2 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2034:1 2035:2 2036:1 2038:1 2039:2 2041:6 2042:1 2044:1 2047:2 2051:1 2052:1 2057:1 2058:1 2060:5 2063:5 2064:2 2065:5 2068:1 2069:1 2070:1 2074:1 2077:4 2079:1 2096:1 2098:1 2103:5 2104:2 2105:2 2108:2 2109:9 2112:5 2117:1 2118:2 2119:5 2123:1 2125:1 2126:1 2129:3 2133:1 2135:2 2138:2 2140:2 2141:6 2143:2 2144:9 2154:1 2155:2 2156:1 2165:1 2185:1 2195:2 2197:2 2203:1 2212:1 2227:1 2230:1 2234:1 2237:1 2250:4 2256:5 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:5 2303:1 2310:10 2320:1 2324:1 2326:1 2344:1 2350:1 2353:1 2360:5 2369:7 2374:1 2386:1 2390:1 2391:3 2397:2 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2431:1 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:2 2512:2 2516:1 2518:1 2528:1 2530:3 2531:1 2533:1 2549:3 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:3 2635:2 2636:2 2645:2 2653:2 2666:1 2670:8 2674:2 2683:28 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:16 2748:1 2749:1 2756:6 2761:9 2762:1 2765:1 2766:1 2771:1 2787:1 2808:1 2813:1 2817:2 2818:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2883:1 2888:1 2911:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:2 2994:6 2999:1 3004:2 3006:2 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:5 3089:1 3105:2 3109:14 3149:1 3157:1 3171:1 3173:2 3177:2 3186:1 3207:1 3214:1 3222:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3279:1 3281:1 3293:2 3299:1 3303:1 3306:1 3317:4 3322:1 3325:1 3326:1 3330:2 3332:8 3346:1 3348:6 3354:2 3355:2 3356:1 3357:6 3358:2 3364:1 3368:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:3 3435:3 3439:1 3442:2 3445:3 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:14 3494:1 3500:1 3510:1 3513:1 3520:1 3524:5 3525:1 3530:2 3532:4 3533:13 3534:1 3537:2 3545:3 3548:7 3551:1 3553:1 3557:1 3562:1 3568:4 3571:1 3578:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3609:1 3610:1 3611:1 3616:1 3621:2 3631:1 3633:4 3638:3 3648:2 3649:2 3653:1 3665:1 3667:1 3671:1 3672:3 3676:3 3680:3 3684:1 3694:6 3701:1 3703:1 3705:2 3706:2 3709:2 3711:1 3713:1 3714:3 3715:2 3724:5 3725:5 3731:1 3745:1 3746:1 3748:1 3758:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:2 3806:6 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3960:1 3969:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:2 4007:1 4012:1 4013:2 4017:1 4034:1 4035:1 4042:2 4046:1 4048:2 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4122:1 4123:4 4129:1 4145:1 4151:2 4154:1 4161:1 4168:1 4170:2 4179:1 4188:1 4195:2 4201:2 4212:1 4216:1 4218:1 4220:1 4222:1 4229:1 4238:2 4256:1 4260:1 4263:3 4264:1 4269:1 4272:5 4284:1 4290:4 4295:1 4300:2 4303:1 4304:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:8 4425:2 4427:2 4440:3 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:30 4515:3 4518:1 4530:1 4531:3 4533:1 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:2 4582:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:8 4609:1 4610:1 4611:1 4614:1 4615:5 4616:2 4618:1 4619:4 4621:1 4622:2 4625:1 4626:1 4628:6 4630:3 4631:1 4633:1 4637:1 4639:1 4640:2 4642:4 4643:4 4645:1 4660:1 4662:1 4663:1 4668:1 4679:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4728:1 4734:2 4739:1 4751:1 4754:1 4763:3 4764:1 4765:3 4769:2 4770:1 4774:1 4776:3 4787:1 4793:1 4795:1 4799:1 4806:1 4812:2 4817:6 4822:1 4844:1 4850:1 4851:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4914:1 4919:3 4926:8 4929:1 4933:1 4942:2 4944:2 4952:1 4968:2 4980:1 4987:1 4990:2 4994:2 4997:1 4998:1 5004:1 5025:1 5039:1 5040:2 5047:1 5051:1 5055:1 5056:3 5074:2 5075:2 5076:1 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5107:2 5111:1 5115:1 5116:1 5123:1 5129:1 5136:3 5140:1 5143:1 5147:1 5153:1 5160:1 5169:3 5182:5 5191:1 5192:1 5217:3 5232:1 5233:4 5235:1 5248:1 5249:1 5254:1 5261:1 5276:3 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:4 5397:1 5399:1 5400:1 5415:1 5424:1 5428:2 5443:1 5482:1 5493:4 5494:1 5514:3 5516:1 5518:1 5519:20 5533:5 5542:4 5546:1 5547:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:3 5630:1 5649:1 5655:1 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:7 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:4 5790:1 5791:1 5792:1 5794:2 5797:1 5799:2 5801:4 5803:1 5804:3 5805:3 5807:6 5808:1 5810:1 5813:4 5815:15 5816:5 5818:3 5857:1 5858:1 5876:3 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6016:1 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:2 6062:3 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6107:1 6110:1 6117:2 6122:2 6153:1 6154:1 6155:2 6163:2 6171:1 6174:3 6177:1 6179:2 6180:1 6181:1 6191:1 6201:10 6212:2 6218:4 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6261:1 6262:1 6264:1 6280:1 6291:4 6292:1 6303:4 6331:3 6333:3 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6411:1 6414:2 6420:1 6434:1 6448:1 6455:1 6458:1 6462:1 6463:1 6475:15 6476:1 6485:1 6491:1 6498:3 6515:1 6519:2 6523:3 6524:2 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:4 6607:1 6615:2 6630:1 6648:2 6654:1 6658:3 6660:1 6665:1 6671:6 6672:1 6674:1 6679:1 6684:1 6692:1 6699:1 6705:1 6707:1 6713:6 6717:4 6720:1 6723:1 6734:2 6741:1 6754:3 6755:1 6760:2 6769:1 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6912:1 6919:3 6920:15 6922:8 6924:1 6931:1 6933:2 6939:1 6943:3 6944:4 6945:2 6963:5 6964:1 6979:65 6983:2 7003:9 7004:16 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:2 7080:2 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7147:1 7152:1 7154:1 7169:2 7196:3 7210:1 7219:1 7221:1 7223:3 7238:1 7244:8 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:2 7402:2 7404:2 7416:1 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:4 7471:1 7473:13 7488:3 7493:2 7495:2 7500:1 7513:1 7532:1 7537:1 7547:2 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7630:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:5 7669:2 7678:4 7680:1 7683:3 7686:3 7692:1 7693:4 7696:1 7702:1 7706:1 7715:1 7720:5 7723:2 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7779:1 7781:1 7783:3 7784:9 7787:4 7788:3 7789:1 7791:3 7794:8 7796:3 7797:4 7798:1 7800:2 7812:3 7813:2 7825:1 7833:4 7837:2 7838:8 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7880:1 7892:2 7929:1 7931:2 7936:1 7944:1 7949:1 7953:1 7965:1 7967:1 7973:1 7994:1 8000:2 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8082:1 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8183:1 8185:1 8188:1 8196:1 8204:2 8215:7 8219:2 8226:1 8231:1 8232:2 8233:1 8235:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:3 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:3 8384:2 8388:1 8391:1 8403:2 8404:1 8408:1 8414:1 8434:1 8437:2 8440:2 8441:8 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:40 8463:4 8464:2 8471:1 8483:2 8484:1 8493:1 8494:2 8498:1 8508:1 8521:4 8531:1 8533:3 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:8 8586:1 8587:2 8603:1 8608:1 8609:1 8625:1 8633:5 8636:1 8638:1 8646:1 8648:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:3 8757:1 8759:1 8770:1 8771:1 8772:6 8778:1 8786:1 8788:1 8790:6 8792:2 8794:1 8798:3 8803:2 8817:1 8826:1 8833:2 8857:9 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:2 8886:1 8890:1 8891:1 8894:2 8901:1 8902:1 8913:2 8931:3 8953:1 8958:1 8962:1 8963:1 8977:1 8979:1 8982:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9037:2 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9079:1 9080:3 9084:3 9085:1 9086:2 9088:1 9089:2 9091:1 9094:1 9096:1 9103:1 9108:1 9111:1 9113:1 9120:6 9135:1 9142:1 9161:1 9163:2 9175:1 9181:1 9182:1 9195:1 9198:3 9201:1 9207:1 9215:1 9235:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9342:1 9345:2 9347:1 9373:1 9374:2 9382:1 9388:2 9409:2 9410:6 9411:1 9430:1 9433:1 9434:2 9441:2 9445:2 9447:1 9461:2 9462:1 9470:1 9481:5 9484:2 9492:2 9497:1 9508:1 9513:1 9537:1 9539:1 9553:3 9560:1 9562:1 9572:1 9577:1 9584:2 9589:2 9592:1 9594:2 9597:1 9603:1 9604:2 9605:4 9607:2 9608:1 9610:9 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:2 9651:3 9652:4 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9684:1 9689:2 9690:1 9692:2 9693:1 9713:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:15 9795:1 9825:1 9826:1 9828:1 9831:1 9833:2 9843:1 9855:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9904:1 9911:2 9914:1 9922:1 9940:1 9945:1 9956:1 9960:1 9969:2 9970:4 9972:4 9974:2 9976:2 9981:1 9984:3 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:8 10045:1 10046:1 10055:1 10059:7 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10118:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:2 10206:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:4 10341:1 10361:11 10368:1 10391:3 10395:14 10396:1 10398:1 10400:1 10408:1 10414:1 10419:1 10425:2 10426:1 10430:2 10444:1 10450:2 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:3 10548:1 10552:4 10554:8 10572:7 10573:7 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10622:1 10623:3 10626:2 10629:1 10631:2 10634:3 10635:1 10638:1 10644:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:2 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10804:1 10826:2 10829:2 10830:1 10857:1 10862:5 10864:1 10869:4 10871:1 10879:1 10896:1 10902:1 10911:3 10913:5 10916:1 10929:1 10953:5 10956:1 10968:2 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11046:1 11052:1 11059:1 11061:1 11062:3 11063:4 11065:2 11074:1 11075:2 11082:1 11089:2 11102:1 11103:2 11109:1 11115:4 11116:5 11123:3 11125:1 11128:2 11135:1 11153:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:10 11226:1 11231:2 11241:1 11251:1 11257:3 11263:1 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:2 11339:1 11356:1 11359:4 11368:3 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:7 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:2 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:19 11568:1 11572:1 11575:1 11578:1 11586:3 11590:7 11593:1 11599:2 11622:1 11623:1 11631:4 11655:2 11671:1 11687:1 11696:7 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:3 11724:1 11745:2 11765:5 11767:1 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11832:1 11838:1 11856:1 11865:1 11867:1 11868:7 11880:1 11901:1 11908:1 11944:2 11945:8 11949:1 11957:1 11964:4 11966:1 11971:1 11972:1 11978:8 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12111:1 12115:1 12118:8 12119:1 12123:1 12124:6 12127:2 12137:1 12143:1 12144:1 12145:2 12150:2 12154:2 12163:3 12164:1 12168:1 12169:1 12171:1 12184:2 12186:7 12188:1 12200:3 12208:1 12217:2 12221:2 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:6 12304:1 12318:1 12320:2 12331:4 12334:1 12347:1 12349:1 12360:1 12361:1 12378:2 12385:1 12395:1 12398:1 12417:1 12418:3 12420:2 12429:2 12431:1 12447:1 12454:7 12456:1 12457:2 12460:6 12462:2 12465:2 12469:1 12474:1 12475:1 12480:1 12485:1 12486:2 12488:1 12505:5 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:8 12585:1 12604:4 12620:3 12624:1 12626:1 12629:2 12639:1 12640:1 12664:7 12667:1 12668:3 12669:1 12675:2 12686:2 12696:2 12706:1 12708:1 12718:1 12727:5 12734:1 12745:1 12751:11 12762:1 12796:2 12803:2 12820:1 12821:2 12834:1 12838:1 12843:1 12849:2 12867:3 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12913:1 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13018:1 13021:1 13032:2 13040:1 13049:3 13057:2 13065:2 13072:1 13073:1 13075:3 13083:4 13084:1 13086:4 13088:9 13090:1 13092:8 13100:5 13104:3 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13205:1 13214:5 13219:1 13235:1 13240:3 13247:2 13249:2 13254:4 13259:4 13263:1 13267:1 13272:2 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:3 13360:2 13362:3 13363:1 13367:2 13371:1 13376:2 13383:2 13386:2 13391:6 13392:1 13407:3 13410:2 13417:1 13422:2 13435:1 13441:1 13442:1 13463:1 13466:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:2 13544:2 13563:4 13566:1 13568:2 13570:1 13584:1 13586:2 13588:1 13609:1 13629:2 13630:1 13637:11 13639:1 13652:3 13655:2 13658:1 13659:3 13666:1 13676:1 13679:11 13680:3 13700:2 13708:2 13717:1 13719:2 13723:1 13724:1 13731:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:2 13809:1 13823:1 13842:1 13856:6 13859:1 13862:1 13864:1 13867:1 13868:1 13879:1 13880:1 13881:2 13887:2 13889:1 13896:1 13897:1 13903:2 13905:1 13912:1 13930:1 13935:1 13936:1 13938:1 13944:1 13947:1 13951:1 13955:1 13957:1 13959:3 13960:1 13964:1 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:13 14055:2 14084:1 14089:4 14096:1 14098:1 14102:1 14103:1 14104:5 14115:6 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14203:1 14208:1 14216:1 14228:1 14252:6 14255:2 14263:13 14268:4 14273:2 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:9 14306:4 14310:1 14316:1 14320:1 14321:1 14350:1 14351:2 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14395:1 14396:4 14412:1 14418:10 14424:1 14432:1 14434:2 14441:2 14446:1 14452:1 14461:3 14479:2 14486:1 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:7 14546:1 14548:1 14553:1 14556:7 14557:3 14570:2 14599:2 14616:4 14640:2 14644:1 14653:1 14654:1 14657:1 14662:1 14669:19 14670:1 14674:2 14675:1 14687:5 14690:2 14692:2 14695:1 14696:2 14710:1 14722:1 14730:2 14747:8 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14781:1 14782:1 14783:1 14785:1 14789:1 14795:1 14796:1 14801:2 14803:1 14809:3 14812:1 14822:2 14825:1 14829:1 14858:1 14860:4 14897:5 14899:1 14900:1 14918:1 14934:1 14940:1 14941:1 14942:1 14954:1 14971:1 14990:1 14998:1 15004:1 15006:1 15010:6 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15101:1 15113:1 15114:1 15123:1 15124:1 15135:1 15136:4 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15197:1 15205:1 15224:1 15236:1 15241:1 15244:3 15248:1 15260:4 15269:1 15272:1 15277:2 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:1 15329:1 15330:1 15341:1 15355:1 15356:3 15366:1 15370:1 15385:1 15390:1 15400:5 15402:2 15405:6 15410:1 15426:1 15432:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:5 15487:1 15490:1 15495:2 15508:5 15516:1 15519:5 15529:1 15530:1 15531:2 15541:1 15544:2 15546:1 15564:1 15571:2 15576:2 15578:2 15583:6 15587:1 15592:2 15605:1 15607:7 15608:1 15617:1 15620:2 15621:1 15626:1 15636:3 15638:2 15661:5 15663:3 15671:1 15675:1 15685:2 15688:3 15689:3 15697:2 15705:7 15706:3 15708:1 15716:4 15718:1 15754:1 15758:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15866:2 15869:1 15880:1 15884:4 15895:1 15897:2 15916:1 15920:1 15936:1 15940:1 15941:2 15959:1 15961:2 15962:4 15963:3 15970:6 15971:1 15974:1 15981:7 15988:2 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16067:1 16073:2 16075:3 16077:1 16089:1 16102:2 16104:1 16113:7 16118:1 16119:1 16126:2 16127:1 16130:1 16153:1 16154:1 16158:1 16164:2 16167:2 16170:2 16174:1 16176:2 16178:1 16187:3 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16209:2 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:9 16302:1 16305:4 16308:1 16311:39 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:5 16352:1 16355:1 16363:1 16372:1 16378:1 16391:1 16393:1 16396:3 16400:1 16402:1 16404:1 16405:5 16407:1 16418:1 16424:1 16427:1 16436:6 16442:1 16452:1 16464:1 16476:5 16514:1 16518:1 16530:4 16532:1 16544:1 16548:1 16549:1 16551:1 16554:2 16557:2 16571:5 16573:1 16575:2 16583:1 16592:3 16600:1 16606:1 16616:2 16617:1 16637:1 16643:1 16655:1 16666:1 16668:1 16670:1 16681:1 16682:1 16689:1 16695:2 16700:3 16720:2 16728:1 16735:1 16745:1 16770:3 16776:5 16778:1 16787:1 16802:1 16811:3 16834:1 16845:1 16870:5 16876:1 16887:1 16893:1 16900:2 16909:1 16926:1 16927:2 16928:3 16930:3 16942:1 16949:2 16959:1 16963:9 16970:1 16982:1 16991:1 16998:1 17007:1 17009:1 17014:1 17015:3 17021:2 17023:5 17024:1 17027:1 17042:1 17045:1 17047:1 17053:5 17057:3 17060:3 17065:1 17069:2838 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:4 17260:7 17266:1 17271:2 17272:5 17274:4 17276:5 17278:1 17288:1 17304:1 17335:2 17341:1 17346:8 17350:2 17352:2 17357:1 17359:1 17381:40 17387:1 17395:1 17398:7 17419:1 17430:1 17433:1 17449:1 17455:1 17460:1 17461:1 17469:1 17471:2 17482:1 17487:1 17490:1 17502:1 17503:1 17505:1 17514:1 17518:2 17527:5 17535:1 17536:2 17543:4 17557:2 17573:3 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:2 17621:1 17628:1 17639:2 17641:4 17666:2 17669:1 17672:4 17673:4 17678:1 17685:1 17689:4 17691:3 17693:1 17697:4 17701:1 17707:1 17712:1 17719:7 17723:1 17727:1 17730:1 17737:2 17738:2 17747:2 17749:1 17752:2 17763:2 17766:1 17769:5 17772:14 17791:1 17792:1 17807:8 17808:1 17815:1 17819:2 17821:1 17826:1 17833:1 17838:1 17862:1 17879:2 17882:1 17885:3 17887:1 17924:1 17927:1 17930:1 17937:2 17949:5 17951:1 17953:1 17956:1 17957:2 17966:3 17968:1 17984:1 17985:5 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:2 18061:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18168:2 18170:4 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:8 18205:1 18206:3 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:3 18272:1 18275:1 18299:3 18301:1 18320:2 18323:5 18330:2 18345:1 18349:2 18352:1 18355:1 18356:5 18367:1 18368:1 18382:5 18384:1 18395:1 18400:1 18406:2 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:2 18453:1 18464:5 18470:1 18476:1 18481:3 18483:1 18484:1 18491:3 18500:1 18510:2 18513:2 18526:2 18545:6 18552:1 18557:1 18568:1 18589:10 18590:3 18594:6 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18735:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18779:1 18796:1 18802:1 18804:1 18806:9 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:3 18875:1 18883:1 18887:1 18903:4 18910:1 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18965:1 18968:1 18972:2 18973:1 18980:1 18983:1 18984:5 18996:1 18997:1 19002:2 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19027:7 19032:1 19037:1 19039:1 19041:3 19042:4 19050:1 19053:1 19063:7 19073:1 19088:1 19092:2 19098:2 19101:1 19102:3 19120:3 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19208:1 19216:1 19217:2 19223:2 19225:1 19232:1 19238:1 19254:1 19257:2 19264:2 19283:8 19292:1 19293:1 19296:1 19298:1 19300:1 19305:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19418:1 19423:1 19434:3 19440:2 19443:1 19459:1 19465:1 19466:3 19470:1 19488:1 19494:1 19495:1 19502:1 19540:1 19544:1 19549:2 19557:1 19565:2 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:3 19649:1 19656:6 19657:1 19658:1 19659:2 19666:2 19667:2 19675:4 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19701:3 19710:1 19718:1 19721:3 19726:1 19731:1 19735:4 19747:1 19749:2 19751:2 19753:1 19758:4 19760:1 19762:2 19763:1 19767:1 19768:4 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:11 19805:1 19817:2 19818:1 19821:5 19822:1 19836:2 19843:1 19851:1 19865:1 19878:2 19892:2 19895:1 19897:4 19898:1 19905:1 19909:11 19915:1 19920:2 19925:1 19927:3 19940:1 19941:3 19942:1 19951:1 19967:1 19972:2 19993:1 19994:1 19995:1 20000:1 20021:2 20022:1 20025:7 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:6 20062:1 20063:3 20064:1 20075:1 20080:2 20085:1 20091:2 20097:1 20112:2 20127:2 20129:1 20142:1 20154:3 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:5 20225:1 20226:2 20228:4 20229:3 20231:1 20232:2 20235:2 20242:1 20264:1 20265:1 20272:3 20274:1 20278:3 20294:2 20295:2 20305:3 20324:1 20334:1 20339:1 20343:1 20349:1 20354:3 20355:3 20365:1 20373:1 20381:5 20383:6 20385:3 20386:1 20388:2 20389:1 20390:1 20396:3 20400:1 20414:1 20423:2 20432:1 20433:1 20434:5 20442:1 20450:2 20455:3 20457:3 20464:3 20466:2 20467:5 20473:1 20483:2 20489:1 20493:1 20494:1 20498:1 20499:3 20505:1 20509:1 20514:2 20531:1 20533:2 20534:1 20536:1 20540:1 20543:1 20547:2 20552:3 20556:1 20564:1 20567:4 20574:1 20598:9 20599:1 20600:1 20610:1 20613:1 20617:2 20624:1 20625:39 20631:4 20632:1 20634:4 20637:3 20638:2 20640:5 20642:1 20644:1 20645:2 20662:1 20663:4 20666:1 20672:3 20676:1 20679:3 20692:2 20693:3 20697:1 20706:3 20707:1 20708:1 20726:3 20736:1 20738:1 20746:1 20771:6 20773:1 20776:1 20779:11 20786:3 20804:3 20807:2 20820:1 20825:1 20853:1 20854:2 20855:1 20856:3 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20909:1 20911:1 20912:1 20932:1 20951:1 20952:3 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:2 21064:1 21070:2 21077:1 21086:1 21087:1 21088:1 21095:2 21100:1 21114:2 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:5 21177:3 21180:1 21183:1 21190:3 21199:1 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:3 21298:1 21302:1 21304:1 21314:1 21317:2 21326:1 21339:1 21342:3 21345:3 21352:1 21353:1 21359:1 21364:3 21378:2 21383:3 21384:1 21388:1 21389:2 21395:1 21402:1 21409:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:3 21466:2 21477:2 21483:1 21495:1 21498:1 21501:1 21504:1 21505:2 21514:13 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:2 21626:3 21632:2 21633:2 21636:2 21639:1 21640:1 21649:1 21652:1 21661:1 21663:6 21678:1 21693:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21729:1 21732:4 21735:1 21746:11 21748:2 21751:1 21764:7 21776:1 21778:1 21780:1 21789:2 21795:1 21830:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:2 21892:1 21894:2 21895:1 21901:1 21915:1 21919:2 21923:1 21934:1 21955:1 21956:1 21964:1 21993:1 21994:1 21996:4 22005:6 22007:1 22013:4 22018:1 22029:2 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:2 22079:1 22085:3 22088:1 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:4 22137:1 22142:1 22154:1 22155:3 22161:2 22165:2 22166:3 22167:1 22173:1 22181:1 22183:1 22192:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:3 22275:1 22276:2 22277:1 22279:8 22281:3 22282:1 22283:4 22284:2 22287:1 22288:2 22289:2 22290:5 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:6 22323:1 22327:2 22335:1 22352:1 22357:3 22359:1 22367:1 22371:3 22382:1 22384:7 22388:3 22403:2 22408:1 22409:1 22417:1 22418:3 22428:1 22431:1 22442:1 22445:1 22447:3 22463:1 22486:1 22489:1 22503:1 22517:3 22535:4 22544:1 22546:6 22549:1 22559:3 22560:1 22564:1 22570:1 22571:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22614:1 22630:3 22631:1 22632:1 22639:1 22650:1 22656:2 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:7 22775:1 22789:2 22794:1 22796:2 22808:1 22810:4 22814:1 22815:1 22821:2 22832:1 22834:1 22841:4 22881:1 22882:1 22899:1 22902:2 22912:4 22914:8 22942:13 22950:1 22962:10 22970:1 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23052:1 23057:2 23078:1 23081:2 23083:1 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:12 23128:2 23129:5 23139:1 23146:1 23149:2 23150:1 23152:1 23157:2 23160:2 23163:2 23175:1 23185:2 23188:1 23194:1 23200:5 23207:1 23223:1 23229:4 23230:1 23232:1 23236:2 23239:2 23240:2 23249:1 23288:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:3 23366:1 23378:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:6 23417:1 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:3 23527:1 23534:1 23537:4 23549:1 23557:1 23573:1 23578:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:1 23635:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23696:1 23703:1 23705:2 23722:1 23728:2 23735:5 23740:1 23749:1 23753:2 23760:1 23767:2 23770:5 23782:1 23792:1 23796:5 23797:2 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:3 23866:1 23873:2 23891:2 23903:1 23908:7 23910:1 23932:1 23937:9 23940:1 23952:1 23953:1 23956:1 23963:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:4 24037:1 24041:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:5 24089:1 24091:1 24097:1 24098:1 24099:2 24102:1 24116:3 24130:2 24132:1 24134:2 24156:2 24158:2 24171:1 24172:2 24178:1 24191:1 24200:1 24202:3 24218:2 24237:2 24241:1 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24333:1 24351:1 24358:2 24365:1 24372:1 24382:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:2 24434:2 24437:2 24449:1 24453:2 24454:1 24459:1 24465:1 24468:3 24474:1 24478:1 24481:2 24489:1 24493:2 24496:1 24512:1 24524:1 24526:1 24529:1 24533:1 24540:1 24542:1 24552:2 24564:2 24568:2 24569:1 24573:1 24576:6 24588:4 24602:6 24610:5 24612:1 24619:1 24621:2 24622:1 24634:1 24635:1 24638:1 24653:5 24664:2 24674:1 24685:11 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:3 24748:1 24749:1 24756:13 24767:1 24785:1 24787:6 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:8 24848:2 24849:3 24850:1 24861:1 24862:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:3 24908:1 24911:1 24921:1 24925:1 24928:1 24929:3 24934:1 24936:1 24942:1 24943:2 24951:1 24967:3 24983:2 24989:1 24990:1 24993:1 24999:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25047:1 25053:1 25064:2 25065:1 25075:1 25108:1 25147:1 25152:1 25166:1 25167:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:6 25231:1 25233:2 25240:1 25251:1 25273:1 25278:1 25281:1 25284:2 25307:1 25310:1 25313:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25383:1 25403:3 25433:1 25435:7 25443:1 25447:1 25462:1 25467:4 25474:1 25483:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:35 25550:4 25553:5 25554:1 25555:3 25564:2 25570:1 25577:1 25590:11 25602:1 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:5 25688:7 25696:2 25719:14 25720:1 25721:2 25725:4 25729:2 25738:2 25741:1 25743:4 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:2 25771:2 25772:1 25780:2 25784:2 25790:1 25794:3 25795:2 25800:1 25802:1 25804:4 25808:1 25811:1 25819:1 25821:1 25824:1 25826:3 25828:1 25840:1 25856:1 25859:2 25873:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:2 25912:5 25916:1 25922:2 25943:1 25944:1 25946:2 25964:1 25965:2 25966:3 25968:1 25978:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:3 26019:6 26023:1 26024:2 26027:2 26032:1 26033:1 26035:1 26039:2 26041:1 26044:2 26046:1 26048:1 26050:1 26054:1 26060:1 26062:2 26077:1 26096:1 26098:1 26099:1 26115:1 26121:1 26135:2 26143:1 26151:2 26152:1 26155:1 26159:3 26174:1 26182:1 26184:1 26186:1 26187:2 26190:2 26192:2 26196:1 26202:2 26204:3 26211:1 26219:1 26232:8 26241:2 26243:2 26245:1 26247:10 26249:1 26252:1 26255:1 26256:1 26264:1 26277:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26339:1 26343:1 26349:1 26361:1 26363:3 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26443:1 26445:1 26450:3 26451:1 26470:2 26484:2 26488:5 26507:2 26511:1 26518:2 26533:1 26536:2 26538:1 26556:2 26560:1 26561:2 26568:2 26579:1 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26696:1 26707:1 26712:1 26714:8 26715:3 26716:1 26720:1 26722:2 26726:3 26727:3 26742:1 26750:1 26761:2 26762:4 26766:3 26771:3 26812:1
9 8:1 10:2 15:1 22:1 27:1 35:1 38:7 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 89:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:3 166:1 168:3 177:1 183:1 185:5 202:1 205:8 206:1 213:1 223:1 226:1 239:2 243:1 259:1 263:2 268:2 275:1 282:1 283:40 294:2 312:1 313:5 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 353:1 358:2 378:1 392:2 420:4 427:2 428:1 431:1 433:1 435:1 440:1 452:1 459:1 464:1 506:1 507:1 516:1 549:2 550:5 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:3 645:1 666:1 670:3 676:1 683:1 686:1 697:2 715:1 723:1 726:2 729:1 737:1 738:1 740:1 748:1 755:3 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:10 818:3 828:3 829:1 840:1 843:17 845:1 846:1 851:1 856:1 860:1 867:1 868:6 869:1 870:1 872:9 874:1 875:4 878:1 881:1 883:1 884:1 888:1 890:1 893:4 903:1 904:1 910:2 912:3 930:1 931:1 940:3 956:1 962:6 964:2 970:2 982:1 983:2 987:1 989:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1059:3 1067:2 1072:1 1075:1 1078:2 1086:1 1087:1 1092:2 1096:3 1100:1 1104:1 1110:1 1123:1 1128:1 1137:1 1138:1 1148:1 1150:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:2 1201:1 1204:1 1209:2 1234:1 1238:1 1245:2 1250:1 1267:1 1274:1 1279:1 1281:3 1296:1 1297:1 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:3 1354:2 1355:3 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:1 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1504:1 1506:2 1520:6 1524:1 1528:2 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:2 1599:2 1601:2 1615:1 1621:1 1628:1 1637:1 1652:4 1659:1 1664:1 1668:2 1682:4 1695:1 1699:1 1707:2 1714:1 1723:1 1728:1 1730:1 1732:2 1733:2 1745:1 1752:1 1756:1 1776:1 1780:1 1792:1 1793:1 1795:2 1797:19 1802:1 1809:2 1821:2 1827:1 1832:1 1833:1 1834:1 1843:1 1846:1 1853:9 1855:2 1883:1 1886:1 1893:3 1895:4 1903:2 1908:1 1925:1 1928:3 1929:1 1937:1 1946:2 1962:1 1965:1 1970:3 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2034:1 2035:2 2036:1 2038:1 2039:2 2041:6 2042:1 2044:1 2047:2 2051:1 2052:2 2057:1 2058:1 2060:5 2063:5 2064:2 2065:5 2068:1 2069:1 2070:1 2074:1 2077:4 2079:1 2096:1 2098:1 2103:5 2104:2 2105:3 2108:2 2109:9 2112:5 2117:2 2118:2 2119:5 2123:1 2125:1 2126:1 2129:3 2133:1 2135:2 2138:2 2140:2 2141:6 2143:2 2144:9 2154:1 2155:2 2156:1 2165:2 2185:1 2194:1 2195:2 2197:2 2203:1 2212:1 2227:1 2230:1 2234:1 2237:1 2250:4 2256:5 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:5 2303:1 2310:10 2320:1 2324:1 2326:1 2344:1 2350:1 2353:1 2360:5 2369:7 2374:1 2386:1 2390:1 2391:3 2397:2 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2431:1 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:2 2512:2 2516:1 2518:1 2528:1 2530:3 2531:1 2533:1 2549:3 2564:1 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:3 2635:2 2636:2 2645:3 2653:2 2666:1 2670:8 2674:2 2683:28 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:16 2748:1 2749:1 2756:6 2761:9 2762:1 2765:1 2766:1 2771:1 2787:1 2808:1 2813:1 2817:2 2818:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2883:1 2888:1 2905:1 2911:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:2 2994:6 2999:1 3004:2 3006:2 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:6 3089:1 3105:2 3109:14 3149:1 3157:1 3165:1 3171:1 3173:2 3177:2 3186:1 3207:1 3214:1 3222:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3279:1 3281:1 3293:2 3299:1 3303:1 3306:1 3317:4 3322:1 3325:1 3326:1 3330:2 3332:8 3346:1 3348:7 3354:2 3355:2 3356:1 3357:6 3358:2 3364:1 3368:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:3 3435:3 3439:1 3442:2 3445:3 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:15 3494:1 3500:1 3510:1 3513:1 3520:1 3524:5 3525:1 3530:2 3532:4 3533:13 3534:1 3537:2 3545:3 3548:7 3551:1 3553:1 3557:1 3562:1 3568:4 3571:1 3578:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3607:1 3609:1 3610:1 3611:1 3616:1 3621:2 3631:1 3633:4 3638:3 3648:2 3649:2 3653:1 3665:1 3667:1 3671:1 3672:3 3676:3 3680:3 3684:1 3694:6 3701:1 3703:1 3705:2 3706:2 3709:2 3711:1 3713:1 3714:3 3715:2 3724:5 3725:5 3731:1 3745:1 3746:1 3748:1 3758:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:2 3806:6 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3960:1 3969:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:3 4007:1 4012:1 4013:2 4017:1 4034:1 4035:1 4042:2 4046:1 4048:2 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4122:1 4123:4 4129:1 4145:1 4151:2 4154:1 4161:1 4168:1 4170:2 4179:1 4188:1 4195:2 4201:2 4212:1 4216:1 4218:1 4220:1 4222:1 4229:1 4238:2 4256:1 4260:1 4263:3 4264:1 4269:1 4272:5 4284:1 4290:4 4295:1 4300:2 4303:1 4304:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:8 4425:2 4427:2 4440:3 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:31 4515:4 4518:1 4530:1 4531:3 4533:1 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:3 4582:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:8 4609:1 4610:1 4611:1 4614:1 4615:5 4616:2 4618:1 4619:4 4621:1 4622:2 4625:2 4626:1 4628:6 4630:3 4631:1 4633:1 4637:1 4639:1 4640:2 4642:4 4643:4 4645:1 4660:1 4662:1 4663:1 4668:1 4679:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4728:1 4734:2 4739:1 4751:1 4754:1 4763:3 4764:1 4765:3 4769:2 4770:1 4774:1 4776:3 4787:1 4793:1 4795:1 4799:1 4806:1 4812:2 4817:6 4822:1 4844:1 4850:1 4851:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4914:1 4919:3 4926:8 4929:1 4933:1 4942:2 4944:3 4952:2 4968:2 4980:1 4987:1 4990:2 4994:2 4997:1 4998:1 5004:1 5025:1 5039:1 5040:2 5047:1 5051:1 5055:1 5056:3 5074:2 5075:2 5076:1 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5104:1 5107:2 5111:2 5115:1 5116:1 5123:1 5129:1 5136:3 5140:1 5143:1 5147:1 5153:1 5160:1 5169:3 5182:5 5191:1 5192:1 5217:4 5232:1 5233:4 5235:1 5248:1 5249:1 5254:1 5261:1 5276:3 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:4 5397:1 5399:1 5400:1 5415:1 5424:2 5428:2 5443:1 5482:1 5493:4 5494:1 5514:3 5516:1 5518:1 5519:20 5533:5 5542:4 5546:1 5547:1 5548:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:3 5630:1 5634:1 5649:1 5655:2 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:1 5711:7 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:4 5790:1 5791:1 5792:1 5794:2 5797:1 5799:2 5801:4 5803:1 5804:3 5805:3 5807:7 5808:1 5810:1 5813:4 5815:16 5816:5 5818:3 5828:1 5857:1 5858:1 5876:3 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6016:1 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:2 6062:3 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6107:1 6110:1 6117:2 6122:3 6153:1 6154:1 6155:2 6163:2 6171:1 6174:3 6177:1 6179:2 6180:1 6181:1 6191:1 6201:10 6212:2 6218:4 6221:1 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6261:1 6262:1 6264:1 6280:1 6291:4 6292:1 6303:4 6331:3 6333:3 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6411:1 6414:2 6420:1 6434:1 6448:1 6455:1 6458:1 6462:1 6463:1 6475:15 6476:1 6485:2 6491:1 6498:3 6515:1 6519:2 6523:3 6524:2 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:5 6607:1 6615:2 6630:1 6648:2 6654:1 6658:3 6660:1 6665:1 6671:6 6672:1 6674:1 6679:1 6684:1 6692:1 6699:1 6705:1 6707:1 6709:1 6713:6 6717:4 6720:1 6723:1 6734:3 6741:1 6754:3 6755:1 6760:2 6769:1 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6912:1 6919:3 6920:15 6922:8 6924:1 6931:1 6933:2 6939:1 6943:3 6944:4 6945:2 6963:5 6964:1 6979:67 6983:2 7003:10 7004:16 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:2 7080:2 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7147:1 7152:1 7154:1 7169:2 7196:3 7210:1 7219:1 7221:1 7223:3 7238:1 7244:8 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:2 7402:2 7404:2 7416:1 7417:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:4 7471:1 7473:13 7488:3 7493:2 7495:2 7500:1 7513:2 7532:1 7537:1 7547:2 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7622:1 7630:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:5 7669:2 7678:4 7680:1 7683:3 7686:3 7692:1 7693:4 7696:1 7702:1 7706:1 7715:1 7720:5 7723:2 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7779:1 7781:1 7783:3 7784:9 7787:4 7788:3 7789:1 7791:3 7794:8 7796:3 7797:4 7798:1 7800:2 7812:3 7813:2 7825:1 7833:4 7837:2 7838:9 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7880:1 7892:2 7929:1 7931:2 7936:1 7944:1 7949:1 7953:1 7965:1 7967:1 7973:1 7994:1 8000:2 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8082:1 8087:2 8090:1 8093:1 8095:2 8096:4 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8183:1 8185:1 8188:1 8196:1 8204:2 8215:7 8219:2 8226:1 8231:1 8232:2 8233:1 8235:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:3 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8380:3 8384:2 8388:1 8391:1 8403:2 8404:1 8408:1 8414:1 8434:1 8437:2 8440:2 8441:8 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:40 8463:4 8464:2 8471:1 8483:2 8484:1 8493:1 8494:2 8498:1 8508:1 8521:4 8531:1 8533:3 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:9 8586:1 8587:2 8603:1 8608:1 8609:1 8625:1 8633:6 8636:1 8638:1 8642:1 8646:1 8648:1 8649:1 8651:1 8661:1 8682:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8753:3 8757:1 8759:1 8770:1 8771:1 8772:6 8778:1 8786:1 8788:1 8790:6 8792:2 8794:1 8798:3 8803:2 8817:1 8826:1 8833:2 8857:9 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:2 8886:1 8890:1 8891:1 8894:2 8901:1 8902:1 8913:2 8931:3 8953:1 8958:1 8962:1 8963:1 8977:1 8979:1 8982:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9034:1 9037:2 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9079:1 9080:3 9084:3 9085:1 9086:2 9088:1 9089:2 9091:1 9094:1 9096:1 9103:1 9108:1 9111:1 9113:1 9120:7 9135:1 9142:1 9161:1 9163:2 9175:1 9181:1 9182:1 9195:1 9198:3 9201:1 9207:1 9215:1 9235:1 9237:1 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9342:1 9345:2 9347:1 9373:1 9374:2 9382:1 9388:2 9409:2 9410:6 9411:1 9430:1 9433:1 9434:3 9441:2 9445:2 9447:1 9461:2 9462:1 9470:1 9481:5 9484:2 9492:2 9497:1 9508:1 9513:2 9537:1 9539:1 9553:3 9560:1 9562:1 9572:1 9573:1 9577:1 9584:2 9589:2 9592:1 9594:2 9597:1 9603:1 9604:2 9605:4 9607:2 9608:1 9610:9 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:2 9651:3 9652:4 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9684:1 9689:2 9690:1 9692:2 9693:1 9713:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:15 9795:1 9825:1 9826:1 9828:1 9831:1 9833:2 9843:1 9855:1 9866:4 9869:1 9870:1 9885:1 9901:1 9902:2 9904:1 9911:2 9914:1 9922:1 9940:1 9945:1 9956:1 9960:1 9969:2 9970:4 9972:5 9974:2 9976:2 9981:1 9984:3 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:9 10045:1 10046:1 10055:1 10059:8 10065:1 10066:1 10068:2 10072:1 10094:1 10110:1 10111:2 10112:2 10114:1 10117:1 10118:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:2 10206:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:4 10341:1 10361:11 10368:1 10391:3 10395:14 10396:1 10398:1 10400:1 10408:1 10414:1 10419:1 10425:3 10426:1 10430:2 10442:1 10444:1 10450:2 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:3 10548:1 10552:4 10554:8 10572:8 10573:7 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10622:1 10623:3 10626:2 10629:1 10631:2 10634:4 10635:1 10638:1 10644:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:2 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10804:1 10826:2 10829:2 10830:1 10857:1 10862:5 10864:1 10869:4 10871:1 10879:1 10896:1 10902:1 10911:3 10913:5 10916:1 10929:1 10953:5 10956:1 10968:2 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11046:1 11052:1 11059:1 11061:1 11062:3 11063:4 11065:2 11074:1 11075:2 11082:1 11089:2 11102:1 11103:2 11109:1 11115:4 11116:5 11123:3 11125:1 11128:2 11135:1 11153:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:10 11226:1 11231:2 11241:1 11251:1 11257:3 11263:1 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:2 11339:1 11350:1 11356:1 11359:4 11368:3 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:7 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:2 11510:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:19 11568:1 11572:1 11575:1 11578:1 11586:3 11590:7 11593:1 11599:2 11622:1 11623:1 11630:1 11631:4 11655:2 11671:1 11687:1 11696:7 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:3 11724:1 11745:2 11765:5 11767:1 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11832:1 11838:1 11856:1 11865:1 11867:1 11868:7 11880:1 11901:1 11908:1 11944:2 11945:8 11949:1 11957:1 11964:4 11966:1 11971:1 11972:1 11978:8 11982:4 11987:1 11988:1 11995:2 11996:6 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12111:1 12115:2 12118:8 12119:1 12123:1 12124:6 12127:2 12137:1 12143:1 12144:1 12145:2 12150:2 12154:2 12163:3 12164:1 12168:1 12169:1 12171:1 12184:2 12186:7 12188:1 12200:3 12208:1 12217:2 12221:2 12226:1 12237:2 12243:7 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:6 12304:1 12318:1 12320:2 12331:4 12334:1 12347:1 12349:1 12360:1 12361:1 12378:2 12385:1 12395:1 12398:1 12417:1 12418:3 12420:2 12429:2 12431:1 12447:1 12454:7 12456:1 12457:2 12460:7 12462:2 12465:2 12469:1 12474:1 12475:1 12480:1 12485:1 12486:2 12488:1 12505:5 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:8 12585:1 12604:4 12620:3 12624:1 12626:1 12629:2 12639:1 12640:1 12664:7 12667:1 12668:4 12669:1 12675:2 12686:2 12696:2 12706:1 12708:1 12718:1 12727:6 12734:1 12745:1 12751:11 12762:1 12796:2 12803:2 12820:1 12821:2 12834:1 12838:1 12843:1 12849:2 12867:3 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12913:1 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13018:1 13021:1 13032:2 13040:1 13049:3 13057:2 13065:2 13072:1 13073:1 13075:3 13083:4 13084:1 13086:4 13088:9 13090:1 13092:9 13100:5 13104:3 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13205:1 13214:6 13219:1 13235:1 13240:3 13247:2 13249:3 13254:4 13259:4 13263:1 13267:1 13272:2 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:3 13360:2 13362:3 13363:1 13367:2 13371:1 13376:2 13383:2 13386:2 13391:6 13392:1 13399:1 13407:3 13410:2 13417:1 13422:2 13435:1 13441:1 13442:1 13463:1 13466:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:2 13544:2 13545:1 13563:4 13566:1 13568:2 13570:1 13584:1 13586:2 13588:1 13609:1 13629:2 13630:1 13637:11 13639:1 13652:3 13655:2 13658:1 13659:3 13666:1 13676:1 13679:11 13680:3 13700:2 13708:2 13717:1 13719:2 13723:1 13724:1 13731:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:2 13809:1 13823:1 13842:1 13856:6 13859:1 13862:1 13864:1 13867:1 13868:1 13879:1 13880:1 13881:2 13887:3 13889:1 13896:1 13897:1 13903:2 13905:1 13912:1 13930:1 13935:1 13936:1 13938:1 13944:1 13947:1 13951:1 13955:1 13957:1 13959:3 13960:1 13964:1 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:14 14055:2 14084:1 14089:4 14096:1 14098:1 14102:1 14103:1 14104:5 14115:7 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14203:1 14208:1 14216:1 14228:1 14252:6 14255:2 14263:13 14268:4 14273:2 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:10 14306:4 14310:1 14316:1 14320:1 14321:1 14350:1 14351:2 14355:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14395:1 14396:4 14412:1 14418:10 14424:1 14432:1 14434:2 14441:2 14446:1 14452:1 14461:3 14479:2 14486:1 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:7 14546:1 14548:1 14553:1 14556:7 14557:3 14570:2 14599:2 14616:4 14640:2 14644:1 14653:1 14654:1 14657:1 14662:1 14669:19 14670:1 14674:2 14675:1 14687:5 14690:2 14692:2 14695:1 14696:2 14710:1 14722:1 14730:2 14747:9 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14781:1 14782:1 14783:1 14785:1 14789:1 14795:1 14796:1 14801:2 14803:1 14809:3 14812:1 14822:2 14825:1 14829:1 14858:1 14860:4 14897:5 14899:1 14900:1 14918:1 14934:1 14940:1 14941:1 14942:1 14954:1 14971:1 14990:1 14998:1 15004:1 15006:1 15010:6 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15101:1 15113:1 15114:1 15123:1 15124:1 15135:1 15136:4 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15197:1 15205:1 15224:1 15236:1 15241:1 15244:3 15248:1 15260:4 15269:1 15272:1 15277:2 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:2 15329:1 15330:1 15341:1 15355:1 15356:3 15366:1 15370:1 15385:1 15390:1 15400:5 15402:2 15405:6 15410:1 15426:1 15432:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:5 15487:1 15490:1 15495:2 15508:5 15516:1 15519:5 15529:1 15530:1 15531:2 15541:1 15544:2 15546:1 15564:1 15571:2 15576:2 15578:2 15583:6 15587:1 15592:2 15605:1 15607:8 15608:1 15617:1 15620:2 15621:1 15626:1 15636:3 15638:2 15661:5 15663:3 15671:1 15675:1 15685:2 15688:3 15689:3 15697:2 15705:7 15706:3 15708:1 15716:4 15718:1 15754:1 15758:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15866:2 15869:1 15880:1 15884:4 15895:1 15897:2 15916:1 15920:1 15936:1 15940:1 15941:2 15959:1 15961:3 15962:4 15963:4 15970:6 15971:1 15974:1 15981:7 15988:2 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16067:1 16073:2 16075:3 16077:1 16089:1 16102:2 16104:1 16113:7 16118:1 16119:1 16126:2 16127:1 16130:1 16137:1 16153:1 16154:1 16158:1 16164:2 16167:2 16170:2 16174:1 16176:2 16178:1 16187:3 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16209:2 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:9 16302:1 16305:4 16308:1 16311:40 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:5 16352:1 16355:1 16363:1 16372:1 16378:1 16388:1 16391:1 16393:1 16396:4 16400:1 16402:1 16404:1 16405:5 16407:1 16418:1 16424:1 16427:1 16436:6 16442:1 16452:1 16464:1 16476:5 16514:1 16518:1 16530:4 16532:1 16544:1 16548:1 16549:1 16551:1 16554:2 16557:2 16571:5 16573:1 16575:2 16583:1 16592:3 16600:1 16606:1 16616:2 16617:1 16637:1 16643:1 16655:1 16666:1 16668:1 16670:1 16681:1 16682:1 16689:1 16695:2 16700:3 16720:2 16728:1 16735:1 16745:1 16770:3 16776:5 16778:1 16787:1 16792:1 16802:1 16811:3 16834:1 16845:1 16870:5 16876:1 16887:1 16893:2 16900:2 16909:1 16926:1 16927:2 16928:4 16930:3 16942:1 16949:2 16959:1 16963:9 16970:1 16982:1 16991:1 16998:1 17007:1 17009:1 17014:1 17015:3 17021:2 17023:5 17024:1 17027:1 17042:1 17045:1 17047:1 17053:5 17057:3 17060:3 17065:1 17069:2898 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:4 17260:7 17266:1 17271:2 17272:5 17274:4 17276:5 17278:1 17288:1 17304:1 17335:2 17341:1 17346:8 17350:2 17352:2 17357:1 17359:1 17381:40 17387:1 17395:1 17398:7 17419:1 17430:1 17433:1 17449:1 17455:1 17460:1 17461:1 17469:1 17471:2 17482:1 17487:1 17490:1 17502:1 17503:1 17505:1 17514:1 17518:2 17527:5 17535:1 17536:2 17543:4 17557:2 17573:3 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:2 17621:1 17628:1 17639:2 17641:4 17666:2 17669:1 17672:4 17673:4 17678:1 17685:1 17689:4 17691:3 17693:1 17697:4 17701:1 17707:1 17712:1 17719:7 17723:1 17727:1 17730:1 17737:2 17738:2 17747:2 17749:1 17752:2 17763:2 17766:1 17769:5 17772:14 17791:1 17792:1 17807:8 17808:1 17815:1 17819:2 17821:1 17826:1 17833:1 17838:1 17839:1 17862:1 17879:2 17882:1 17885:3 17887:1 17924:1 17927:1 17930:1 17937:2 17949:5 17951:1 17953:1 17956:1 17957:2 17966:3 17968:1 17984:1 17985:6 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:3 18061:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18168:2 18170:4 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:8 18205:1 18206:3 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:3 18272:1 18275:1 18299:3 18301:1 18320:2 18323:5 18330:2 18345:1 18349:2 18352:1 18355:1 18356:5 18367:1 18368:1 18382:5 18384:1 18395:1 18400:1 18406:2 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:2 18453:1 18462:1 18464:5 18470:1 18476:1 18481:3 18483:1 18484:1 18491:3 18500:1 18510:2 18513:2 18526:2 18545:6 18552:1 18557:1 18568:1 18589:10 18590:3 18594:6 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18735:1 18746:1 18751:1 18756:1 18758:3 18762:4 18767:1 18774:1 18777:1 18779:1 18796:1 18802:1 18804:1 18806:9 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:3 18875:1 18883:1 18887:1 18903:4 18910:1 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18965:1 18968:1 18972:2 18973:1 18980:1 18983:1 18984:5 18996:1 18997:1 19002:2 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19019:1 19027:7 19032:1 19037:1 19039:1 19041:3 19042:4 19050:1 19053:1 19063:7 19073:1 19088:1 19092:2 19098:2 19101:1 19102:4 19120:3 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19205:1 19208:1 19216:2 19217:2 19223:2 19225:1 19232:1 19238:1 19254:1 19257:2 19264:2 19283:8 19292:1 19293:1 19296:1 19298:1 19300:1 19305:1 19316:2 19321:1 19326:2 19365:2 19381:1 19386:1 19390:1 19391:1 19396:2 19405:1 19410:1 19418:1 19423:1 19434:3 19440:2 19443:1 19459:1 19465:1 19466:3 19470:1 19488:1 19494:1 19495:1 19502:1 19540:1 19544:1 19549:2 19557:1 19565:2 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:3 19649:1 19656:6 19657:1 19658:1 19659:2 19666:2 19667:2 19675:5 19676:3 19678:2 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:1 19697:1 19701:3 19710:1 19718:1 19721:3 19726:1 19731:1 19735:5 19747:1 19749:2 19751:2 19753:1 19758:4 19760:1 19762:2 19763:1 19767:1 19768:4 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:11 19805:1 19817:2 19818:1 19821:5 19822:1 19836:2 19843:1 19851:1 19865:1 19878:2 19892:2 19895:1 19897:4 19898:1 19905:1 19909:12 19915:1 19920:2 19925:1 19927:3 19940:1 19941:4 19942:1 19951:1 19967:1 19972:3 19993:1 19994:1 19995:1 20000:1 20021:2 20022:1 20025:7 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20057:1 20061:7 20062:1 20063:3 20064:1 20075:1 20080:2 20085:1 20091:2 20097:1 20112:2 20127:2 20129:1 20142:1 20154:4 20158:1 20167:1 20180:1 20184:1 20188:1 20211:3 20217:1 20222:5 20225:1 20226:2 20228:4 20229:3 20231:1 20232:2 20235:2 20242:1 20264:1 20265:1 20272:3 20274:1 20278:3 20294:2 20295:2 20305:4 20324:1 20334:1 20339:1 20343:1 20349:1 20354:3 20355:3 20365:1 20373:1 20381:5 20383:6 20385:3 20386:1 20388:2 20389:1 20390:1 20396:3 20400:1 20414:1 20423:2 20432:1 20433:1 20434:5 20442:1 20450:2 20455:3 20457:3 20464:3 20466:2 20467:5 20473:1 20483:2 20489:1 20493:1 20494:1 20498:1 20499:3 20505:1 20509:1 20514:2 20531:1 20533:2 20534:1 20536:1 20540:1 20543:1 20547:2 20552:3 20556:1 20564:1 20567:4 20574:1 20598:9 20599:1 20600:1 20610:1 20613:1 20617:2 20624:1 20625:40 20631:4 20632:1 20634:4 20637:3 20638:2 20640:5 20642:1 20644:1 20645:2 20662:1 20663:4 20666:1 20672:3 20676:1 20679:3 20692:2 20693:3 20697:1 20700:1 20706:3 20707:1 20708:1 20726:4 20736:1 20738:1 20746:1 20771:6 20773:1 20776:1 20779:11 20786:3 20804:3 20807:2 20820:1 20825:1 20853:1 20854:2 20855:1 20856:3 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20909:1 20911:1 20912:1 20932:1 20951:1 20952:3 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:2 21064:1 21070:2 21077:1 21086:1 21087:1 21088:1 21095:2 21100:1 21114:2 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21155:3 21160:5 21177:3 21180:1 21183:1 21190:3 21199:1 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:3 21298:1 21302:1 21304:1 21314:1 21317:2 21326:1 21339:1 21342:3 21345:3 21352:1 21353:1 21359:2 21364:3 21378:3 21383:3 21384:1 21388:1 21389:2 21395:1 21402:1 21409:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:3 21466:2 21477:2 21483:1 21495:1 21498:1 21501:2 21504:1 21505:2 21514:13 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:2 21624:1 21626:3 21632:2 21633:2 21636:2 21639:1 21640:1 21649:1 21650:1 21652:1 21661:1 21663:6 21678:1 21693:1 21696:2 21703:1 21715:1 21723:1 21724:1 21728:1 21729:1 21732:4 21735:1 21746:11 21748:2 21751:1 21764:8 21776:1 21778:1 21780:1 21789:2 21795:1 21830:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:2 21885:1 21892:1 21894:2 21895:1 21901:1 21915:1 21919:2 21923:1 21934:1 21955:1 21956:1 21964:1 21976:1 21993:1 21994:1 21996:4 22005:6 22007:1 22013:4 22018:1 22029:3 22032:1 22041:2 22042:1 22043:1 22053:1 22054:1 22060:2 22062:2 22079:2 22085:3 22088:1 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:4 22137:1 22142:1 22154:1 22155:3 22161:2 22165:2 22166:3 22167:1 22173:1 22181:1 22183:2 22192:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:3 22275:1 22276:2 22277:1 22279:8 22281:3 22282:1 22283:4 22284:2 22287:1 22288:2 22289:2 22290:5 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:6 22323:1 22327:2 22335:1 22352:1 22357:3 22359:1 22367:1 22371:3 22382:2 22384:7 22388:3 22403:2 22408:1 22409:1 22417:1 22418:3 22428:1 22431:1 22442:1 22445:1 22447:3 22463:1 22486:1 22489:1 22503:1 22517:3 22535:5 22544:1 22546:6 22549:1 22559:3 22560:1 22564:1 22570:1 22571:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22614:1 22630:3 22631:1 22632:1 22639:1 22650:1 22656:3 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:7 22775:1 22789:2 22794:1 22796:2 22808:1 22810:4 22814:1 22815:1 22821:2 22832:1 22834:1 22841:4 22881:1 22882:1 22899:1 22902:2 22912:4 22914:9 22942:13 22950:1 22962:10 22970:1 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23052:1 23057:2 23078:1 23081:2 23083:1 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:12 23128:2 23129:5 23139:1 23146:1 23149:2 23150:1 23152:1 23157:2 23160:2 23163:2 23175:1 23185:2 23188:1 23194:1 23200:5 23207:1 23223:1 23229:4 23230:1 23232:1 23236:2 23239:2 23240:2 23249:1 23288:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:3 23366:1 23378:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:6 23417:1 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:3 23527:1 23534:1 23537:4 23549:1 23557:1 23573:1 23578:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:2 23635:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23696:1 23703:1 23705:2 23719:1 23722:1 23728:2 23735:5 23740:1 23749:1 23753:2 23760:1 23767:2 23770:5 23782:1 23792:1 23796:5 23797:2 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:3 23866:1 23873:2 23891:2 23903:1 23908:7 23910:1 23932:2 23937:10 23940:1 23952:1 23953:1 23956:1 23963:1 23972:2 23989:1 23999:1 24008:4 24023:1 24035:2 24036:4 24037:1 24041:1 24043:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:5 24089:1 24091:1 24097:1 24098:1 24099:2 24102:1 24116:3 24130:2 24132:1 24134:2 24156:2 24158:2 24171:1 24172:2 24178:1 24191:1 24200:1 24202:3 24218:2 24237:2 24241:1 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24333:1 24351:1 24358:2 24365:1 24372:1 24382:1 24383:1 24386:1 24387:1 24388:1 24404:1 24411:1 24432:2 24434:2 24437:2 24449:1 24453:2 24454:1 24459:1 24465:1 24468:3 24474:1 24478:1 24481:2 24489:1 24493:2 24496:1 24512:1 24524:1 24526:1 24529:1 24533:1 24540:1 24542:1 24552:2 24564:2 24568:2 24569:1 24573:1 24576:6 24588:4 24602:6 24610:5 24612:1 24619:1 24621:2 24622:1 24634:1 24635:1 24638:1 24653:5 24664:2 24674:1 24685:11 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:3 24748:1 24749:1 24756:13 24767:1 24785:1 24787:7 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:8 24848:2 24849:3 24850:1 24861:1 24862:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:3 24905:1 24908:1 24911:1 24921:1 24925:1 24927:1 24928:1 24929:3 24934:1 24936:1 24942:1 24943:2 24951:1 24967:3 24983:2 24989:1 24990:1 24993:1 24999:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25040:1 25047:1 25053:1 25064:2 25065:1 25075:1 25108:1 25147:1 25152:2 25166:1 25167:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:7 25231:1 25232:1 25233:2 25240:1 25251:1 25273:1 25278:1 25281:1 25284:2 25307:1 25310:1 25313:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25383:1 25403:3 25433:1 25435:7 25443:1 25447:1 25462:1 25467:4 25474:1 25483:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:35 25550:4 25553:5 25554:1 25555:3 25564:2 25570:1 25577:1 25590:11 25602:1 25607:1 25616:1 25640:3 25648:2 25663:2 25677:1 25678:5 25688:7 25696:2 25719:14 25720:1 25721:2 25725:4 25729:2 25738:2 25741:1 25743:4 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25770:2 25771:2 25772:1 25780:2 25784:2 25790:1 25794:3 25795:2 25800:1 25802:1 25804:4 25808:1 25811:1 25819:1 25821:1 25824:1 25826:3 25828:1 25840:1 25856:1 25859:2 25873:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:3 25912:5 25916:1 25922:2 25943:1 25944:1 25946:2 25963:1 25964:1 25965:2 25966:3 25968:1 25978:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:3 26019:6 26023:1 26024:2 26027:2 26032:1 26033:1 26035:1 26039:3 26041:1 26044:2 26046:1 26048:2 26050:1 26054:1 26060:1 26062:2 26077:1 26096:1 26098:1 26099:1 26115:1 26121:1 26135:2 26143:1 26151:2 26152:1 26155:1 26159:3 26174:1 26182:1 26184:1 26186:1 26187:2 26190:2 26192:2 26196:1 26202:2 26204:3 26211:1 26219:1 26232:8 26241:2 26243:2 26245:1 26247:10 26249:1 26252:1 26255:1 26256:1 26264:1 26277:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26339:1 26343:1 26349:1 26361:1 26363:3 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26443:1 26445:1 26450:3 26451:1 26470:2 26484:2 26488:5 26492:1 26507:2 26511:1 26518:2 26533:1 26536:2 26538:1 26556:2 26560:1 26561:2 26568:2 26579:2 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26696:1 26707:1 26712:1 26714:8 26715:3 26716:1 26720:1 26722:2 26726:3 26727:3 26734:1 26742:1 26750:1 26761:2 26762:4 26766:3 26771:3 26812:1
9 8:1 10:2 15:1 22:1 27:1 35:1 38:7 51:1 52:1 62:1 66:1 68:1 70:1 77:1 82:1 84:1 89:1 91:1 92:1 104:1 114:1 119:1 121:1 132:1 143:2 157:1 160:4 166:1 168:3 177:1 183:1 185:5 202:1 205:8 206:1 213:1 223:1 226:1 239:2 243:1 259:1 263:2 268:2 275:1 282:1 283:40 294:2 312:1 313:5 315:5 316:2 323:1 328:1 340:4 342:1 344:1 345:1 353:2 358:2 378:1 392:2 420:5 427:2 428:1 431:1 433:1 435:1 440:1 452:1 459:1 464:1 506:1 507:1 516:1 549:2 550:5 553:1 561:2 567:4 590:4 594:2 597:2 598:1 599:1 611:2 620:1 628:4 632:1 637:3 645:1 666:1 670:3 676:1 683:1 686:1 697:2 710:1 715:1 723:1 726:2 729:1 737:2 738:2 740:1 748:1 755:3 756:1 760:1 764:1 770:2 781:1 790:1 791:1 794:2 797:1 804:1 812:1 816:11 818:3 828:3 829:1 840:1 843:17 845:1 846:1 851:1 856:1 860:1 867:1 868:6 869:1 870:1 872:9 874:1 875:4 878:1 881:1 883:1 884:1 888:1 890:1 893:4 903:1 904:1 910:2 912:3 930:1 931:1 940:3 956:1 962:6 964:2 970:2 982:1 983:2 987:1 989:1 994:1 1009:1 1010:1 1021:2 1029:1 1036:1 1044:1 1046:1 1047:2 1050:2 1056:1 1059:3 1067:2 1072:1 1075:1 1078:2 1086:1 1087:1 1092:2 1096:3 1100:1 1104:1 1110:1 1123:2 1128:1 1137:1 1138:1 1148:1 1150:1 1155:2 1178:1 1181:1 1182:2 1183:2 1190:2 1195:3 1201:1 1204:1 1209:2 1234:1 1238:1 1245:2 1250:1 1267:1 1274:1 1279:1 1281:3 1296:2 1297:2 1301:1 1303:2 1323:1 1326:2 1328:6 1329:1 1331:10 1332:1 1345:2 1351:1 1352:4 1354:2 1355:3 1356:2 1372:1 1380:1 1386:1 1388:1 1403:1 1411:1 1415:1 1417:2 1434:2 1436:1 1437:1 1443:8 1444:1 1471:2 1476:1 1479:1 1489:1 1491:1 1493:3 1496:3 1502:1 1503:1 1504:1 1506:2 1520:6 1524:1 1528:2 1547:1 1548:3 1557:6 1561:2 1578:1 1579:1 1590:1 1597:2 1599:2 1601:2 1615:1 1621:1 1628:1 1637:1 1652:4 1659:1 1664:1 1668:2 1671:1 1682:4 1695:1 1699:1 1707:3 1714:1 1723:1 1728:1 1730:1 1732:2 1733:2 1745:1 1752:1 1756:1 1776:2 1780:1 1792:1 1793:1 1795:2 1797:19 1802:1 1809:2 1821:2 1827:1 1832:1 1833:1 1834:1 1843:1 1846:1 1853:9 1855:2 1865:1 1883:1 1886:1 1893:3 1895:4 1903:2 1908:1 1925:1 1928:3 1929:1 1937:1 1946:2 1962:1 1965:1 1970:4 1975:2 1986:1 1988:1 1992:1 1995:1 2009:1 2016:1 2026:1 2033:1 2034:1 2035:2 2036:1 2038:1 2039:2 2041:6 2042:1 2044:1 2047:2 2051:1 2052:3 2057:1 2058:1 2060:5 2063:5 2064:2 2065:5 2068:1 2069:1 2070:1 2074:1 2077:4 2079:1 2096:1 2098:1 2103:5 2104:2 2105:3 2108:2 2109:9 2112:5 2117:3 2118:2 2119:5 2123:1 2125:1 2126:1 2129:4 2133:1 2135:2 2138:2 2140:2 2141:6 2143:2 2144:9 2154:1 2155:2 2156:1 2165:3 2185:1 2194:2 2195:2 2197:2 2203:1 2212:1 2227:1 2230:1 2234:1 2237:1 2250:4 2256:5 2258:1 2261:1 2263:1 2269:1 2273:2 2279:2 2298:5 2303:1 2310:10 2320:1 2324:1 2326:1 2344:1 2350:1 2353:1 2360:5 2369:7 2374:1 2386:1 2390:1 2391:3 2397:2 2401:4 2408:3 2412:2 2414:1 2417:1 2426:2 2431:1 2443:2 2462:1 2466:1 2473:2 2477:4 2480:1 2483:1 2493:2 2497:1 2500:1 2502:1 2504:2 2512:2 2516:1 2518:1 2524:1 2528:1 2530:4 2531:1 2533:1 2549:3 2564:1 2575:1 2580:1 2581:2 2583:1 2587:7 2591:4 2596:6 2600:1 2601:1 2604:1 2605:1 2620:1 2628:1 2631:3 2635:2 2636:2 2645:4 2653:2 2666:1 2670:8 2674:2 2683:29 2686:1 2696:4 2702:1 2718:1 2719:1 2722:1 2727:1 2733:16 2748:1 2749:1 2756:6 2761:9 2762:1 2765:1 2766:1 2771:1 2787:1 2797:1 2801:1 2808:1 2813:1 2817:2 2818:1 2819:1 2843:1 2856:4 2857:1 2870:1 2876:1 2881:1 2882:2 2883:1 2888:1 2905:2 2911:1 2937:1 2951:2 2963:1 2968:1 2979:1 2985:2 2994:6 2999:1 3004:2 3006:2 3013:1 3014:1 3022:1 3024:1 3028:1 3032:1 3037:1 3044:1 3048:1 3059:1 3062:6 3089:1 3105:2 3109:14 3149:1 3157:1 3165:1 3171:1 3173:2 3177:2 3186:1 3207:1 3214:1 3222:1 3225:1 3226:2 3230:1 3238:1 3244:2 3261:1 3270:2 3279:1 3281:1 3293:2 3299:1 3303:1 3306:1 3317:4 3322:1 3325:1 3326:1 3330:2 3332:8 3346:1 3348:7 3354:2 3355:2 3356:1 3357:6 3358:2 3364:1 3368:1 3380:2 3384:1 3386:6 3394:1 3398:1 3416:1 3426:1 3430:1 3434:3 3435:3 3439:1 3442:2 3445:3 3452:1 3456:1 3460:1 3480:1 3483:1 3486:4 3489:1 3490:2 3491:16 3494:1 3500:1 3510:1 3513:1 3520:1 3524:5 3525:1 3530:2 3532:4 3533:13 3534:1 3537:2 3545:3 3548:7 3551:1 3553:1 3557:1 3562:1 3568:4 3571:1 3578:1 3580:1 3581:1 3584:1 3594:1 3598:1 3601:1 3607:1 3609:1 3610:1 3611:1 3616:1 3621:2 3631:1 3633:4 3638:3 3648:2 3649:2 3653:1 3665:1 3667:1 3671:1 3672:3 3676:3 3680:3 3684:1 3694:6 3701:1 3703:1 3705:2 3706:2 3709:2 3711:1 3713:1 3714:4 3715:2 3724:6 3725:5 3731:1 3745:1 3746:1 3748:1 3758:1 3760:1 3770:1 3782:1 3787:2 3794:1 3799:2 3806:7 3813:2 3814:1 3819:1 3839:1 3853:1 3854:1 3856:1 3863:1 3866:1 3867:1 3875:1 3899:1 3915:7 3918:2 3924:1 3925:1 3927:1 3928:1 3932:1 3959:1 3960:1 3969:1 3976:2 3978:2 3986:1 3988:1 3996:1 4000:4 4007:1 4012:1 4013:2 4017:1 4026:1 4034:1 4035:1 4042:2 4046:1 4048:2 4051:1 4055:5 4056:1 4073:1 4086:1 4114:1 4115:1 4122:1 4123:4 4129:1 4145:1 4151:2 4154:1 4161:1 4168:1 4170:2 4179:1 4188:1 4195:2 4201:2 4212:1 4216:1 4218:1 4220:1 4222:1 4229:1 4238:2 4256:1 4260:1 4263:3 4264:1 4269:1 4272:5 4284:1 4290:4 4295:1 4300:2 4303:1 4304:1 4319:1 4331:1 4334:8 4356:1 4358:1 4365:1 4388:1 4390:1 4396:1 4398:1 4403:1 4409:1 4414:8 4425:2 4427:2 4440:3 4444:1 4447:1 4448:1 4453:1 4455:1 4458:1 4463:2 4486:3 4503:1 4513:31 4515:5 4518:1 4530:1 4531:3 4533:1 4538:1 4540:4 4546:1 4557:2 4560:7 4566:2 4577:2 4578:4 4582:1 4591:1 4593:1 4594:1 4596:7 4607:5 4608:9 4609:1 4610:1 4611:1 4614:2 4615:6 4616:2 4618:1 4619:4 4621:1 4622:2 4625:2 4626:1 4628:6 4630:3 4631:1 4633:1 4637:1 4639:1 4640:2 4642:4 4643:4 4645:1 4660:1 4662:1 4663:1 4668:1 4679:1 4682:1 4686:1 4711:3 4715:2 4716:1 4720:1 4728:1 4734:2 4739:1 4749:1 4751:1 4754:1 4763:3 4764:1 4765:3 4769:2 4770:1 4774:1 4776:3 4787:1 4793:1 4795:1 4799:1 4806:1 4812:2 4817:6 4822:1 4844:1 4850:1 4851:1 4855:1 4875:1 4878:1 4881:1 4891:1 4896:1 4898:1 4914:1 4919:4 4926:8 4929:1 4933:1 4942:2 4944:3 4952:2 4968:2 4980:1 4987:1 4990:2 4994:2 4997:1 4998:1 5004:1 5025:1 5039:1 5040:2 5047:1 5051:1 5055:1 5056:3 5074:2 5075:2 5076:1 5078:1 5085:1 5086:2 5088:2 5091:2 5100:1 5103:1 5104:2 5107:2 5111:2 5115:1 5116:1 5123:1 5129:1 5136:3 5140:1 5143:1 5147:1 5153:1 5160:1 5169:3 5182:5 5191:1 5192:1 5203:1 5217:5 5232:1 5233:5 5235:1 5248:1 5249:1 5254:1 5261:1 5276:3 5278:4 5279:1 5283:2 5298:1 5304:1 5311:1 5317:2 5320:1 5332:1 5341:1 5349:1 5353:1 5356:1 5365:2 5366:1 5391:1 5394:4 5397:1 5399:1 5400:1 5415:1 5424:2 5428:2 5443:1 5482:1 5493:4 5494:1 5514:3 5516:1 5518:1 5519:20 5533:5 5542:4 5546:1 5547:1 5548:1 5551:5 5552:1 5554:2 5560:1 5564:1 5577:3 5583:1 5594:1 5596:1 5598:1 5613:3 5630:1 5634:1 5649:1 5655:3 5666:2 5669:2 5670:1 5673:1 5685:1 5688:3 5695:2 5711:7 5714:1 5717:1 5724:1 5727:1 5729:1 5754:1 5772:1 5773:2 5788:5 5790:1 5791:1 5792:1 5794:2 5797:1 5799:2 5801:4 5803:1 5804:3 5805:3 5807:8 5808:1 5810:1 5813:4 5815:17 5816:5 5818:3 5828:1 5857:1 5858:1 5876:3 5928:4 5931:1 5932:1 5934:1 5956:1 5957:2 5960:1 5974:2 6016:1 6020:1 6021:1 6030:1 6036:1 6041:1 6052:1 6058:2 6062:3 6063:1 6068:1 6077:1 6078:1 6080:1 6088:4 6099:1 6100:1 6103:1 6107:1 6110:1 6117:2 6122:4 6153:1 6154:1 6155:2 6163:2 6171:1 6174:3 6177:1 6179:2 6180:1 6181:1 6191:1 6201:10 6212:2 6218:4 6221:2 6223:1 6236:1 6238:1 6248:1 6253:1 6259:1 6261:1 6262:1 6264:1 6280:1 6291:4 6292:1 6303:4 6331:3 6333:3 6340:3 6349:1 6352:1 6364:3 6365:2 6378:1 6380:1 6387:2 6389:2 6391:1 6394:2 6398:1 6402:1 6409:1 6411:1 6414:2 6420:1 6434:1 6448:1 6455:1 6458:1 6462:1 6463:1 6475:15 6476:2 6485:2 6491:1 6498:3 6515:1 6519:2 6523:3 6524:2 6532:1 6543:1 6564:2 6568:1 6574:1 6576:1 6582:1 6583:1 6585:1 6601:6 6607:1 6615:2 6630:1 6648:2 6654:1 6658:3 6660:1 6665:1 6671:6 6672:1 6674:1 6679:1 6684:1 6692:1 6699:1 6705:1 6707:1 6709:2 6713:6 6717:4 6720:1 6723:1 6734:4 6741:1 6754:3 6755:1 6760:2 6769:1 6781:1 6786:2 6804:1 6833:3 6848:2 6861:1 6866:2 6874:1 6880:1 6882:1 6883:2 6912:1 6919:3 6920:15 6922:8 6924:1 6931:1 6933:2 6939:1 6943:3 6944:4 6945:2 6963:5 6964:1 6979:69 6983:2 7003:11 7004:16 7006:1 7010:4 7016:1 7028:1 7030:2 7040:1 7045:1 7052:1 7058:1 7061:1 7070:2 7080:2 7081:4 7087:2 7105:1 7106:1 7107:2 7119:2 7147:1 7152:1 7154:1 7169:2 7196:3 7210:1 7219:1 7221:1 7223:3 7238:1 7244:8 7254:1 7259:1 7265:1 7270:1 7283:1 7296:1 7304:1 7329:1 7345:1 7348:1 7371:1 7375:1 7379:1 7386:3 7388:3 7389:1 7390:2 7402:2 7404:2 7416:1 7417:1 7419:1 7420:1 7431:2 7432:1 7438:2 7444:1 7446:2 7449:2 7450:1 7455:1 7459:1 7460:5 7471:1 7473:13 7488:3 7493:2 7495:2 7500:1 7513:3 7532:1 7537:1 7547:2 7548:1 7554:1 7572:1 7602:2 7610:2 7618:2 7622:1 7630:2 7636:1 7638:1 7641:1 7657:1 7660:1 7668:5 7669:2 7678:4 7680:1 7683:3 7686:3 7692:1 7693:4 7696:1 7702:1 7706:1 7715:2 7720:5 7723:2 7726:2 7729:2 7732:1 7755:1 7765:1 7767:1 7774:1 7779:1 7781:1 7783:3 7784:9 7787:4 7788:3 7789:1 7791:3 7794:8 7796:3 7797:4 7798:1 7800:2 7812:3 7813:2 7825:1 7833:4 7837:2 7838:10 7848:1 7860:1 7863:3 7868:1 7869:2 7872:2 7877:2 7879:5 7880:1 7892:2 7929:2 7931:2 7933:1 7936:1 7944:1 7949:1 7953:1 7965:1 7967:1 7973:1 7994:1 8000:2 8005:2 8007:1 8022:1 8033:1 8037:3 8042:1 8047:1 8050:1 8052:2 8060:3 8082:1 8087:2 8090:1 8093:1 8095:2 8096:5 8100:3 8111:3 8119:1 8121:1 8124:1 8134:1 8146:1 8147:1 8182:1 8183:1 8185:1 8188:1 8196:1 8204:2 8215:7 8219:2 8226:1 8231:1 8232:2 8233:1 8235:1 8249:3 8259:1 8267:1 8269:1 8275:1 8277:2 8280:1 8296:3 8300:1 8312:1 8323:1 8325:1 8327:1 8328:1 8336:3 8352:1 8360:4 8365:1 8369:1 8373:1 8380:3 8384:2 8388:1 8391:1 8403:2 8404:1 8408:1 8414:1 8434:1 8437:2 8440:2 8441:8 8443:1 8444:1 8448:1 8449:3 8452:1 8457:1 8460:40 8463:4 8464:2 8471:1 8483:2 8484:1 8493:1 8494:2 8498:1 8508:2 8521:4 8531:1 8533:3 8537:1 8544:1 8552:1 8564:1 8576:1 8584:2 8585:9 8586:1 8587:2 8603:1 8608:1 8609:1 8625:1 8633:7 8636:1 8638:1 8642:2 8646:1 8648:1 8649:1 8651:1 8661:1 8682:1 8683:1 8687:1 8695:1 8724:1 8725:1 8737:1 8743:1 8749:1 8753:3 8757:1 8759:1 8770:1 8771:1 8772:6 8778:1 8786:1 8788:1 8790:6 8792:2 8794:1 8798:3 8803:2 8817:1 8826:1 8833:2 8857:9 8859:1 8864:2 8865:1 8867:1 8868:6 8877:2 8878:2 8886:1 8890:1 8891:1 8894:2 8901:1 8902:1 8913:2 8931:3 8953:1 8958:1 8962:1 8963:1 8977:1 8979:1 8982:1 8983:2 8990:1 9004:7 9010:1 9013:1 9018:1 9023:1 9026:1 9030:4 9034:1 9037:2 9038:2 9040:1 9043:2 9046:1 9047:1 9050:1 9055:4 9066:1 9070:1 9071:1 9074:1 9077:1 9079:1 9080:3 9084:3 9085:1 9086:2 9088:1 9089:2 9091:1 9094:1 9096:1 9103:1 9108:1 9111:1 9113:1 9120:8 9135:1 9142:1 9161:1 9163:2 9175:1 9181:1 9182:1 9195:1 9198:3 9201:1 9207:1 9215:1 9235:1 9237:2 9239:1 9253:1 9256:1 9259:1 9260:2 9262:1 9263:1 9274:2 9305:1 9328:1 9339:1 9340:1 9342:1 9345:2 9347:1 9373:1 9374:2 9382:1 9388:2 9409:2 9410:6 9411:1 9430:1 9433:1 9434:4 9441:2 9445:2 9447:1 9461:2 9462:1 9470:1 9481:5 9484:2 9492:2 9497:1 9508:1 9513:2 9537:1 9539:1 9553:3 9560:1 9562:1 9572:1 9573:2 9577:1 9580:1 9584:2 9589:2 9592:1 9594:2 9597:1 9603:1 9604:2 9605:4 9607:2 9608:1 9610:9 9619:1 9620:1 9621:1 9625:1 9630:1 9633:1 9636:3 9649:2 9651:3 9652:4 9653:1 9658:1 9660:1 9668:3 9669:1 9682:4 9683:4 9684:1 9689:2 9690:1 9692:2 9693:1 9713:1 9717:1 9723:1 9732:1 9733:1 9750:7 9758:5 9770:2 9775:4 9778:15 9795:1 9825:1 9826:1 9828:1 9831:1 9833:2 9843:1 9855:1 9866:4 9869:1 9870:1 9885:1 9887:1 9901:1 9902:2 9904:1 9911:2 9914:1 9922:1 9940:1 9945:1 9956:1 9960:1 9969:2 9970:5 9972:5 9974:2 9976:2 9981:1 9984:3 9993:2 10003:1 10007:2 10008:1 10009:1 10014:1 10023:1 10024:1 10029:1 10043:9 10045:1 10046:1 10055:1 10059:8 10065:1 10066:2 10068:2 10072:1 10094:2 10110:1 10111:2 10112:2 10114:1 10117:1 10118:1 10124:1 10127:1 10128:1 10138:1 10143:1 10146:1 10156:1 10166:1 10173:2 10185:1 10187:1 10191:1 10203:1 10205:2 10206:1 10211:1 10218:1 10220:1 10222:1 10229:1 10246:5 10251:1 10261:1 10271:2 10273:1 10284:1 10293:1 10303:2 10309:1 10310:1 10311:3 10316:1 10317:1 10319:1 10332:2 10333:1 10337:2 10339:4 10341:1 10361:11 10368:1 10391:3 10395:14 10396:1 10398:1 10400:1 10408:1 10414:2 10419:1 10425:4 10426:1 10430:2 10442:1 10444:1 10450:2 10458:1 10463:1 10464:2 10482:2 10483:1 10484:1 10485:1 10490:1 10492:1 10493:2 10498:2 10501:1 10516:1 10523:1 10530:1 10531:2 10536:1 10544:3 10548:1 10552:4 10554:8 10572:10 10573:7 10574:1 10596:2 10597:1 10604:1 10614:2 10616:3 10617:2 10621:1 10622:1 10623:3 10626:2 10629:1 10631:2 10634:4 10635:1 10638:1 10644:1 10647:2 10648:3 10650:1 10655:2 10660:3 10668:1 10678:7 10680:2 10686:1 10693:8 10701:2 10705:1 10709:1 10724:1 10725:2 10728:1 10736:1 10738:1 10744:1 10761:1 10777:2 10790:2 10804:1 10826:2 10829:2 10830:1 10857:1 10859:1 10862:5 10864:1 10869:4 10871:1 10879:1 10896:1 10902:1 10911:3 10913:5 10916:1 10929:1 10953:5 10956:1 10968:2 10978:1 10982:1 10985:1 10988:1 10998:1 11011:1 11038:2 11044:1 11046:1 11052:1 11059:1 11061:1 11062:3 11063:4 11065:2 11074:1 11075:2 11082:1 11089:2 11102:1 11103:2 11109:1 11115:4 11116:5 11123:3 11125:1 11128:2 11135:1 11153:1 11163:1 11177:1 11180:1 11187:1 11206:1 11210:2 11215:10 11226:1 11231:2 11241:1 11251:1 11257:3 11263:1 11271:1 11273:1 11279:1 11280:1 11283:2 11296:3 11297:2 11300:1 11304:1 11310:2 11314:2 11332:2 11339:1 11350:2 11356:1 11359:4 11368:3 11375:1 11397:1 11398:1 11406:1 11409:1 11411:1 11412:7 11414:1 11424:1 11425:1 11438:1 11441:1 11443:1 11454:2 11461:1 11483:1 11501:1 11509:2 11510:1 11521:1 11522:8 11534:1 11543:1 11544:1 11548:1 11555:1 11556:1 11561:20 11568:1 11572:1 11575:1 11578:1 11586:3 11590:7 11593:1 11599:2 11622:1 11623:1 11630:1 11631:4 11655:2 11671:1 11687:1 11696:7 11697:2 11708:1 11713:1 11715:1 11717:1 11719:1 11723:3 11724:1 11745:2 11756:1 11765:5 11767:1 11768:1 11771:1 11772:1 11788:1 11789:1 11813:1 11824:1 11832:1 11838:1 11856:1 11865:1 11867:1 11868:7 11880:1 11901:1 11908:1 11944:2 11945:8 11949:1 11957:1 11964:4 11966:1 11971:1 11972:1 11978:8 11982:4 11987:1 11988:1 11995:2 11996:6 12002:1 12016:1 12019:1 12027:2 12030:1 12032:1 12041:2 12042:1 12043:1 12049:2 12068:2 12071:5 12075:1 12094:1 12103:2 12107:2 12110:1 12111:1 12115:3 12118:8 12119:1 12123:1 12124:6 12127:2 12137:1 12143:1 12144:1 12145:2 12150:2 12154:2 12163:3 12164:1 12168:1 12169:1 12171:2 12184:2 12186:7 12188:1 12200:3 12208:1 12217:2 12221:2 12226:1 12237:2 12243:8 12261:1 12262:2 12265:1 12266:1 12280:4 12284:1 12285:6 12304:1 12318:1 12320:2 12331:4 12334:1 12347:1 12349:1 12360:1 12361:1 12378:2 12385:1 12395:1 12398:1 12417:1 12418:3 12420:2 12429:2 12431:1 12447:1 12451:1 12454:7 12456:1 12457:2 12460:8 12462:2 12465:2 12469:1 12474:1 12475:1 12480:1 12485:1 12486:2 12488:1 12505:5 12521:1 12528:3 12536:2 12540:2 12545:1 12546:1 12565:1 12573:8 12585:1 12604:4 12620:4 12624:1 12626:1 12629:2 12639:1 12640:1 12664:7 12667:1 12668:4 12669:1 12675:2 12686:2 12696:2 12706:1 12708:1 12718:1 12727:7 12734:1 12745:1 12751:11 12762:1 12796:2 12803:2 12820:2 12821:2 12834:1 12838:1 12843:1 12849:2 12867:3 12883:7 12888:1 12895:2 12896:1 12899:1 12908:3 12913:1 12915:1 12917:1 12922:1 12928:1 12933:1 12946:1 12954:1 12961:1 12970:4 12971:1 12972:1 12986:1 13001:2 13009:1 13011:1 13018:1 13021:1 13032:2 13040:1 13049:3 13057:2 13065:2 13072:1 13073:1 13075:3 13083:4 13084:1 13086:4 13088:9 13090:1 13092:9 13100:5 13104:3 13106:2 13112:1 13125:1 13128:1 13129:1 13145:1 13151:1 13191:2 13193:1 13198:1 13199:1 13205:1 13214:6 13219:1 13235:1 13240:3 13247:2 13249:4 13254:4 13259:4 13263:1 13267:1 13272:2 13278:1 13287:1 13288:3 13293:1 13301:1 13304:1 13321:1 13340:4 13353:3 13360:2 13362:3 13363:1 13367:3 13371:1 13376:2 13383:2 13386:2 13391:6 13392:1 13399:1 13407:3 13410:2 13417:1 13422:2 13435:1 13441:1 13442:1 13463:1 13466:1 13486:1 13495:1 13503:1 13512:1 13515:1 13520:2 13544:2 13545:2 13563:4 13566:1 13568:2 13570:1 13584:1 13586:2 13588:1 13609:1 13629:2 13630:1 13637:11 13639:1 13652:3 13655:2 13658:1 13659:3 13666:1 13676:1 13677:1 13679:11 13680:3 13700:2 13708:2 13717:1 13719:2 13723:1 13724:1 13731:1 13734:1 13735:1 13741:1 13752:8 13757:1 13760:1 13771:1 13789:2 13809:1 13823:1 13842:1 13856:7 13859:1 13862:1 13864:1 13867:1 13868:1 13879:1 13880:1 13881:2 13887:4 13889:1 13896:1 13897:1 13903:2 13905:1 13912:1 13930:1 13935:1 13936:1 13938:1 13944:1 13947:1 13951:1 13955:1 13957:1 13959:3 13960:1 13964:1 13971:2 13979:1 13986:1 14004:1 14015:2 14021:1 14033:1 14043:15 14055:2 14084:1 14089:4 14096:1 14098:1 14102:1 14103:1 14104:5 14115:7 14119:1 14122:1 14131:1 14135:1 14137:1 14152:2 14153:1 14164:1 14177:2 14190:1 14203:1 14208:1 14216:1 14228:1 14252:6 14255:2 14263:13 14268:4 14273:2 14275:3 14284:1 14290:2 14295:5 14302:2 14303:1 14305:11 14306:4 14310:1 14316:1 14320:1 14321:1 14350:1 14351:2 14355:1 14359:2 14379:1 14381:1 14386:1 14388:2 14389:1 14395:1 14396:4 14412:1 14418:10 14424:1 14432:1 14434:2 14441:2 14446:1 14452:1 14461:3 14479:2 14486:1 14492:6 14493:3 14496:1 14500:1 14502:1 14533:1 14538:1 14540:7 14546:1 14548:1 14553:1 14556:7 14557:3 14570:3 14599:2 14610:1 14616:4 14640:2 14644:1 14653:1 14654:1 14657:1 14662:1 14669:19 14670:1 14674:2 14675:1 14687:5 14690:2 14692:2 14695:1 14696:2 14710:1 14722:1 14730:2 14747:10 14750:1 14755:1 14768:2 14773:1 14777:1 14780:1 14781:1 14782:1 14783:1 14785:1 14789:1 14795:1 14796:1 14801:2 14803:1 14809:3 14812:1 14822:2 14825:1 14829:1 14858:1 14860:4 14897:5 14899:1 14900:1 14918:1 14934:1 14940:1 14941:1 14942:1 14954:1 14971:1 14990:1 14998:1 15004:1 15006:1 15010:6 15033:2 15068:1 15074:1 15080:1 15081:1 15093:1 15100:1 15101:1 15113:1 15114:1 15123:1 15124:1 15135:1 15136:4 15158:1 15174:1 15175:1 15186:1 15194:2 15195:1 15197:1 15205:1 15224:1 15236:1 15241:1 15244:3 15248:1 15260:4 15269:1 15272:1 15277:2 15278:1 15280:1 15285:3 15287:3 15291:1 15299:1 15309:1 15316:1 15327:3 15329:1 15330:1 15341:1 15355:1 15356:3 15366:1 15370:1 15385:1 15390:1 15400:5 15402:2 15405:6 15410:1 15426:1 15432:1 15436:1 15441:1 15455:1 15459:1 15464:1 15468:8 15480:2 15482:5 15487:1 15490:1 15495:2 15508:5 15516:2 15519:5 15529:1 15530:1 15531:2 15541:1 15544:2 15546:1 15564:1 15571:2 15576:2 15578:2 15583:6 15587:1 15592:2 15597:1 15605:1 15607:8 15608:1 15617:1 15620:2 15621:1 15626:1 15636:3 15638:2 15661:5 15663:3 15671:1 15675:1 15685:2 15688:3 15689:3 15697:2 15705:7 15706:3 15708:1 15716:4 15718:1 15754:1 15758:1 15763:1 15774:1 15778:2 15784:2 15787:1 15843:1 15851:2 15864:1 15865:1 15866:2 15869:2 15880:1 15884:4 15895:1 15897:2 15916:1 15920:1 15936:1 15940:1 15941:2 15959:1 15961:4 15962:4 15963:5 15970:6 15971:1 15974:1 15981:7 15988:2 15992:3 15993:2 15994:1 16025:1 16028:2 16041:5 16042:4 16060:1 16067:1 16073:2 16075:3 16077:1 16089:1 16102:2 16104:1 16113:7 16118:1 16119:1 16126:2 16127:1 16130:1 16137:2 16153:1 16154:1 16158:1 16164:2 16167:2 16170:2 16174:1 16176:2 16178:1 16187:3 16189:5 16194:1 16195:1 16198:1 16206:1 16207:4 16209:2 16219:1 16220:1 16221:1 16228:1 16230:1 16238:1 16253:1 16254:3 16278:1 16284:2 16297:1 16299:2 16301:9 16302:1 16305:4 16308:1 16311:41 16314:1 16317:1 16319:1 16320:2 16323:1 16325:1 16334:1 16344:5 16352:1 16355:1 16363:1 16372:1 16378:1 16388:2 16391:1 16393:1 16396:4 16400:1 16402:1 16404:1 16405:5 16407:1 16418:1 16424:1 16427:1 16436:6 16442:1 16452:1 16464:1 16476:5 16488:1 16514:1 16518:1 16530:4 16532:1 16544:1 16548:1 16549:1 16551:1 16554:2 16557:2 16571:5 16573:1 16575:2 16583:1 16592:3 16600:1 16606:1 16616:2 16617:1 16637:1 16643:1 16655:1 16666:1 16668:1 16670:1 16681:1 16682:1 16689:1 16695:2 16700:3 16720:3 16728:1 16735:1 16745:1 16765:1 16770:3 16776:5 16778:1 16787:1 16792:2 16802:1 16811:3 16834:1 16845:1 16870:5 16876:1 16887:1 16893:2 16900:2 16909:1 16926:1 16927:2 16928:5 16930:3 16942:1 16949:2 16959:1 16963:9 16970:1 16982:1 16991:1 16998:1 17007:1 17009:1 17014:1 17015:3 17021:2 17023:5 17024:1 17027:1 17042:1 17045:1 17047:2 17053:5 17057:3 17060:3 17065:1 17069:2967 17082:1 17086:1 17110:1 17118:4 17119:1 17126:3 17128:1 17133:1 17149:2 17150:1 17158:1 17161:1 17166:1 17187:2 17193:2 17202:1 17211:2 17214:1 17227:2 17234:1 17235:1 17248:1 17254:4 17260:7 17266:1 17271:2 17272:5 17274:5 17276:5 17278:1 17288:1 17304:1 17335:2 17341:1 17346:8 17350:2 17352:2 17357:1 17359:1 17381:40 17387:1 17395:1 17398:7 17419:1 17430:1 17433:1 17449:1 17455:1 17460:1 17461:1 17469:1 17471:2 17482:1 17487:1 17490:1 17502:1 17503:1 17505:1 17514:1 17518:2 17527:5 17535:1 17536:2 17543:4 17557:2 17573:4 17580:1 17582:1 17583:1 17590:1 17595:1 17597:1 17617:2 17621:1 17628:1 17639:2 17641:4 17666:2 17669:1 17672:4 17673:4 17678:1 17685:1 17689:4 17691:3 17693:1 17697:5 17701:1 17707:1 17712:1 17719:7 17723:1 17727:1 17730:1 17737:2 17738:2 17747:2 17749:1 17752:2 17763:2 17766:2 17769:5 17772:14 17791:1 17792:1 17807:8 17808:1 17815:1 17819:2 17821:1 17826:1 17833:1 17838:1 17839:2 17862:1 17879:2 17882:2 17885:3 17887:1 17924:1 17927:1 17930:1 17937:2 17949:5 17951:1 17953:1 17956:1 17957:2 17966:3 17968:1 17984:1 17985:6 17986:1 17995:1 18001:3 18005:1 18007:1 18011:1 18033:1 18038:1 18056:4 18061:1 18064:2 18097:3 18106:1 18115:1 18143:3 18148:1 18157:1 18159:1 18164:1 18168:2 18170:4 18176:1 18180:1 18183:1 18184:1 18185:1 18196:2 18199:5 18202:8 18205:1 18206:3 18212:5 18221:1 18234:1 18241:1 18242:1 18250:1 18254:1 18257:3 18272:1 18275:1 18279:1 18299:3 18301:1 18320:2 18323:5 18330:2 18345:1 18349:2 18352:1 18355:1 18356:5 18367:1 18368:1 18382:5 18384:1 18395:1 18400:1 18406:2 18408:2 18409:2 18411:1 18424:1 18430:1 18435:1 18437:1 18452:2 18453:1 18462:1 18464:5 18470:1 18476:1 18481:3 18483:1 18484:1 18491:3 18500:1 18510:2 18513:2 18526:2 18545:6 18552:1 18557:1 18568:1 18589:10 18590:4 18594:6 18603:2 18606:1 18611:1 18612:1 18643:1 18647:1 18648:1 18651:3 18661:2 18663:1 18666:1 18676:1 18688:1 18697:1 18721:1 18733:1 18735:1 18746:1 18751:1 18756:1 18758:4 18762:4 18767:1 18774:1 18777:1 18779:1 18796:1 18802:1 18804:1 18806:9 18815:2 18817:1 18818:1 18819:4 18826:2 18844:1 18867:1 18873:1 18874:4 18875:1 18883:1 18887:1 18903:4 18910:1 18913:1 18932:1 18936:1 18937:1 18941:1 18956:2 18959:1 18961:2 18965:1 18968:1 18972:2 18973:1 18980:1 18983:1 18984:5 18996:1 18997:1 19002:2 19003:4 19007:1 19009:2 19011:1 19016:1 19018:1 19019:1 19027:7 19032:1 19037:1 19039:1 19041:3 19042:4 19050:1 19053:1 19063:7 19073:1 19088:1 19092:2 19098:2 19101:1 19102:5 19120:3 19122:1 19143:3 19150:1 19162:1 19177:1 19186:1 19205:1 19208:1 19216:3 19217:2 19223:2 19225:1 19232:1 19238:1 19254:1 19257:2 19264:2 19283:8 19292:1 19293:1 19296:1 19298:1 19300:1 19305:1 19316:2 19321:1 19326:2 19365:2 19368:1 19381:1 19386:1 19390:1 19391:1 19395:1 19396:2 19405:1 19410:1 19418:1 19423:1 19434:3 19440:2 19443:1 19459:1 19465:1 19466:3 19470:1 19488:1 19494:1 19495:1 19502:1 19540:1 19544:1 19549:2 19557:1 19560:1 19565:2 19575:2 19577:1 19580:1 19581:1 19597:1 19603:1 19617:1 19626:1 19631:1 19640:1 19641:3 19649:1 19656:6 19657:1 19658:1 19659:2 19666:2 19667:2 19675:6 19676:3 19678:3 19680:1 19683:1 19692:1 19693:1 19694:1 19695:1 19696:2 19697:2 19701:3 19710:1 19718:1 19721:3 19726:1 19731:1 19735:5 19747:1 19749:2 19751:2 19753:1 19758:4 19760:1 19762:2 19763:1 19767:1 19768:4 19775:2 19776:1 19777:1 19785:1 19793:1 19798:1 19802:11 19805:1 19817:2 19818:1 19821:5 19822:1 19836:2 19843:1 19851:1 19865:1 19878:2 19892:2 19895:1 19897:4 19898:1 19905:1 19909:13 19915:1 19920:2 19925:1 19927:3 19940:1 19941:4 19942:1 19951:1 19967:1 19972:4 19993:1 19994:1 19995:1 20000:1 20021:2 20022:1 20025:8 20032:1 20035:1 20037:1 20039:2 20042:2 20044:1 20052:1 20053:1 20057:1 20061:8 20062:1 20063:3 20064:1 20075:1 20080:2 20085:1 20091:2 20097:1 20112:2 20127:2 20129:1 20142:1 20154:5 20158:1 20167:1 20180:1 20184:2 20188:1 20211:3 20217:1 20222:5 20225:1 20226:2 20228:4 20229:3 20231:2 20232:2 20235:2 20242:1 20264:1 20265:1 20272:3 20274:1 20278:3 20294:2 20295:2 20305:5 20324:1 20334:1 20339:1 20343:1 20349:1 20354:3 20355:3 20365:1 20373:1 20381:5 20383:7 20384:1 20385:3 20386:2 20388:2 20389:1 20390:1 20396:3 20400:1 20414:1 20423:2 20432:1 20433:1 20434:5 20442:1 20450:2 20455:3 20457:3 20464:3 20466:2 20467:5 20473:1 20483:2 20489:1 20493:1 20494:1 20498:1 20499:3 20505:1 20509:1 20514:2 20531:1 20533:2 20534:1 20536:1 20540:1 20543:1 20547:2 20552:3 20556:1 20564:1 20567:4 20574:1 20598:9 20599:1 20600:1 20610:1 20613:1 20617:2 20624:1 20625:41 20631:4 20632:1 20634:4 20637:3 20638:2 20640:5 20642:1 20644:1 20645:2 20662:1 20663:4 20666:1 20672:3 20676:1 20679:3 20692:2 20693:3 20697:1 20700:1 20706:3 20707:1 20708:1 20726:5 20736:1 20738:1 20746:1 20771:6 20773:1 20776:1 20779:11 20786:3 20804:3 20807:2 20820:1 20825:1 20853:1 20854:2 20855:1 20856:3 20858:1 20859:1 20868:3 20871:1 20874:1 20876:2 20882:1 20883:1 20900:4 20903:2 20905:1 20909:1 20911:1 20912:1 20932:1 20951:1 20952:3 20959:1 20960:1 20964:1 20973:1 20987:1 21014:1 21023:1 21039:1 21040:1 21055:1 21061:2 21064:1 21070:2 21077:1 21086:1 21087:1 21088:1 21095:2 21100:1 21114:2 21115:2 21121:1 21128:2 21130:2 21131:1 21136:1 21138:2 21144:3 21145:1 21146:1 21150:1 21155:3 21160:5 21177:4 21180:1 21183:1 21190:3 21199:1 21211:1 21214:1 21223:1 21226:1 21259:1 21261:2 21279:3 21298:1 21302:1 21304:1 21314:1 21317:2 21326:1 21339:1 21342:3 21345:3 21352:1 21353:1 21359:3 21364:3 21378:3 21383:3 21384:1 21388:1 21389:2 21395:1 21402:1 21409:1 21426:2 21440:3 21451:1 21453:5 21455:1 21460:1 21461:3 21466:2 21477:2 21483:1 21495:1 21498:1 21501:2 21504:1 21505:2 21514:13 21523:1 21541:2 21550:1 21556:1 21566:1 21582:1 21584:2 21585:1 21586:1 21597:2 21624:2 21626:3 21632:2 21633:2 21636:2 21639:1 21640:1 21649:1 21650:2 21652:1 21661:1 21663:6 21678:1 21693:1 21696:2 21703:1 21715:1 21723:2 21724:1 21728:1 21729:1 21732:4 21735:2 21746:11 21748:2 21751:1 21752:1 21764:10 21776:1 21778:1 21780:1 21789:2 21795:1 21830:1 21838:1 21841:1 21844:1 21855:3 21857:2 21858:2 21869:1 21871:2 21881:2 21885:2 21892:1 21894:2 21895:1 21901:1 21915:1 21919:2 21923:1 21934:1 21955:1 21956:1 21964:1 21976:1 21993:1 21994:1 21996:4 22005:6 22007:1 22013:4 22018:1 22029:4 22032:1 22041:2 22042:2 22043:1 22053:1 22054:1 22060:2 22062:2 22067:1 22079:3 22085:3 22088:1 22093:1 22097:1 22107:1 22110:3 22111:2 22112:1 22115:1 22133:4 22137:1 22142:1 22154:1 22155:3 22161:2 22165:2 22166:3 22167:1 22173:1 22181:1 22183:3 22192:1 22197:1 22204:1 22215:1 22219:1 22231:1 22236:1 22240:1 22242:1 22264:1 22267:1 22268:3 22275:1 22276:2 22277:1 22278:1 22279:8 22281:3 22282:1 22283:5 22284:2 22287:1 22288:2 22289:2 22290:7 22295:2 22297:4 22300:1 22304:2 22307:1 22311:2 22320:6 22323:1 22327:2 22335:1 22352:1 22357:3 22359:1 22367:1 22371:3 22382:3 22384:7 22388:3 22403:2 22408:1 22409:1 22417:1 22418:3 22428:1 22431:1 22442:1 22445:1 22447:3 22463:1 22486:1 22489:1 22503:1 22517:3 22535:5 22544:1 22546:6 22549:1 22559:3 22560:1 22564:1 22570:1 22571:1 22585:1 22588:1 22594:1 22595:2 22598:1 22607:1 22611:1 22614:1 22630:3 22631:1 22632:1 22638:1 22639:1 22650:1 22656:4 22674:2 22687:1 22690:1 22691:3 22698:1 22702:1 22704:1 22709:1 22713:2 22715:3 22723:2 22725:1 22749:7 22775:1 22789:2 22794:1 22796:2 22808:1 22810:4 22814:1 22815:1 22821:2 22832:1 22834:1 22841:4 22881:1 22882:1 22899:1 22902:2 22912:4 22914:11 22942:13 22950:1 22962:10 22970:1 22971:1 22981:1 22988:1 22995:1 23004:2 23008:1 23018:1 23028:2 23030:1 23031:1 23034:1 23035:1 23036:1 23052:1 23057:3 23078:1 23081:2 23083:1 23089:2 23094:1 23099:1 23102:1 23104:2 23106:6 23113:1 23121:2 23123:2 23124:13 23128:2 23129:5 23139:1 23146:1 23149:2 23150:1 23152:1 23157:2 23160:2 23163:2 23175:1 23185:2 23188:1 23194:1 23200:5 23207:1 23223:1 23229:5 23230:1 23232:1 23236:2 23239:2 23240:2 23249:1 23288:1 23299:2 23301:1 23315:1 23323:1 23327:1 23340:1 23346:1 23363:3 23366:1 23378:1 23379:1 23387:1 23388:4 23389:1 23391:1 23393:2 23395:1 23397:1 23409:7 23417:1 23440:1 23443:1 23444:1 23447:1 23451:2 23452:1 23460:1 23464:1 23481:1 23487:1 23510:1 23523:3 23527:1 23534:1 23537:4 23549:1 23557:1 23573:1 23578:1 23605:1 23608:1 23614:1 23616:3 23618:2 23623:1 23625:1 23632:3 23635:1 23637:1 23638:1 23639:1 23645:2 23661:2 23664:1 23670:1 23685:2 23688:1 23696:1 23703:1 23705:2 23719:1 23722:1 23728:2 23735:5 23740:1 23749:1 23753:2 23760:1 23767:2 23770:5 23782:1 23792:2 23796:5 23797:2 23814:2 23818:1 23833:1 23835:1 23838:2 23843:1 23847:2 23856:1 23857:1 23862:4 23866:1 23873:2 23891:2 23903:1 23908:7 23910:1 23932:3 23937:11 23940:1 23952:1 23953:1 23956:1 23963:1 23964:1 23972:2 23989:1 23999:2 24008:4 24023:2 24035:2 24036:4 24037:1 24041:2 24043:1 24044:1 24045:1 24050:3 24051:3 24057:1 24064:1 24083:1 24087:5 24089:1 24091:1 24097:1 24098:1 24099:2 24102:1 24116:3 24130:2 24132:1 24134:2 24156:2 24158:2 24171:1 24172:2 24178:1 24191:1 24200:1 24202:3 24218:2 24237:2 24241:1 24242:1 24244:1 24256:1 24267:1 24268:3 24271:5 24293:2 24298:1 24333:1 24351:1 24358:2 24365:1 24372:1 24382:1 24383:2 24386:1 24387:1 24388:1 24404:1 24411:1 24432:2 24434:2 24437:2 24449:1 24453:2 24454:1 24459:1 24465:1 24468:3 24474:1 24478:1 24481:2 24489:1 24493:2 24496:1 24512:1 24524:1 24526:1 24529:1 24533:1 24540:1 24542:1 24552:2 24564:2 24568:2 24569:1 24573:1 24576:6 24588:4 24602:6 24610:5 24612:1 24619:1 24621:2 24622:1 24634:1 24635:1 24638:1 24653:5 24664:2 24674:1 24685:11 24686:1 24718:1 24734:1 24735:2 24743:1 24744:2 24747:3 24748:1 24749:1 24756:13 24767:1 24785:1 24787:7 24797:1 24807:1 24815:1 24816:2 24819:1 24838:2 24845:8 24848:2 24849:3 24850:1 24861:1 24862:1 24866:2 24869:1 24876:4 24887:1 24890:1 24898:3 24905:2 24908:1 24911:1 24921:1 24925:1 24927:1 24928:1 24929:3 24934:1 24936:1 24942:1 24943:2 24951:1 24967:3 24983:2 24989:1 24990:1 24993:1 24999:1 25002:1 25006:1 25013:2 25015:1 25020:2 25024:1 25025:1 25026:2 25035:2 25040:2 25047:1 25053:1 25064:2 25065:1 25075:1 25108:1 25147:1 25152:3 25166:1 25167:1 25176:1 25177:1 25196:1 25198:1 25210:1 25211:2 25230:9 25231:1 25232:1 25233:2 25240:1 25251:1 25273:1 25278:1 25281:1 25284:2 25307:1 25310:1 25313:1 25325:1 25330:1 25332:1 25340:2 25364:1 25382:1 25383:1 25400:1 25403:3 25433:1 25435:7 25443:1 25447:1 25462:1 25467:4 25474:1 25483:1 25490:1 25500:2 25509:1 25516:2 25525:1 25528:1 25529:1 25540:1 25541:2 25542:1 25549:35 25550:4 25553:5 25554:1 25555:3 25564:2 25570:1 25577:1 25590:11 25602:1 25607:2 25616:1 25640:3 25648:2 25663:2 25677:1 25678:5 25688:7 25696:2 25719:14 25720:1 25721:2 25725:4 25729:2 25738:2 25741:1 25743:5 25752:1 25753:1 25757:1 25760:2 25765:1 25766:2 25769:1 25770:2 25771:2 25772:1 25780:2 25784:2 25790:1 25794:3 25795:2 25800:1 25802:1 25804:4 25808:1 25811:1 25819:1 25821:1 25824:1 25826:3 25828:1 25840:1 25856:1 25859:2 25873:1 25878:2 25880:1 25881:1 25889:1 25892:1 25895:1 25897:1 25902:3 25912:5 25916:1 25922:2 25943:1 25944:1 25946:2 25963:2 25964:1 25965:2 25966:4 25968:1 25978:1 25996:1 26003:1 26006:1 26009:1 26010:1 26011:1 26014:3 26019:6 26023:1 26024:2 26027:2 26032:1 26033:1 26035:1 26039:4 26041:1 26044:2 26046:1 26048:2 26050:1 26054:1 26060:1 26062:2 26077:1 26096:1 26098:1 26099:1 26115:1 26121:1 26135:2 26143:1 26151:2 26152:1 26155:1 26159:3 26174:1 26182:1 26184:1 26186:1 26187:2 26190:2 26192:2 26196:1 26202:2 26204:3 26211:2 26219:1 26232:8 26241:2 26243:2 26245:1 26247:10 26249:1 26252:1 26255:1 26256:1 26264:1 26277:1 26291:1 26294:1 26298:2 26299:1 26325:1 26335:3 26339:1 26343:1 26349:1 26353:1 26361:1 26363:4 26370:1 26372:1 26377:6 26383:1 26388:1 26399:1 26413:1 26414:1 26438:2 26439:1 26440:1 26443:1 26445:1 26450:3 26451:1 26470:2 26484:2 26488:5 26492:2 26507:2 26511:1 26518:2 26533:1 26536:2 26538:1 26556:2 26560:1 26561:2 26568:2 26579:3 26595:1 26601:7 26613:1 26614:1 26616:1 26633:1 26638:7 26649:6 26650:1 26667:1 26679:1 26696:1 26707:1 26712:1 26714:8 26715:3 26716:1 26720:1 26722:2 26726:3 26727:3 26734:1 26742:1 26750:1 26761:2 26762:4 26766:3 26771:3 26812:1
|
a7519405c9e015d061b29f64caca2f8b2636c9e8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /409/CH21/EX21.1/Example21_1.sce | 6d8bdefe104f5d8d746be868833352ef3a2bbcd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,019 | sce | Example21_1.sce | clear ;
clc;
// Example 21.1
printf('Example 21.1\n\n');
//page no. 616
// Solution Fig. E21.1a and E21.1b
//Given
V1 = 0.1 ;// Volume of gas initially -[cubic metres]
V2 = 0.2 ;// Volume of gas finally -[cubic metres]
T1 = 300 ;// Temperature of gas initially -[K]
P1 = 200 ;// Pressure of gas finally -[kPa]
R = 8.314 ;// Universal gas constant
n = (P1*V1)/(T1*R) ;// Moles of gas taken-[kg mol]
//You are asked to calculate work by eqn. 21.1 , but you do not know the F(force) exerted by gas , so write F = P.A, multiply divide A and eqn 21.1 reduces to W= integate(P.dv)
//(a)
// Isobaric process see fig E21.1b to see the path followed
W= integrate('-(P1)','V',V1,V2) ;// Work done by gas on piston -[kJ]
printf('\n (a)Work done by gas on piston for isobaric process is %.0f kJ .\n ',W);
//(b)
// Isobaric process see fig E21.1b to see the path followed
W= integrate('-(T1*R*n/V)','V',V1,V2) ;// Work done by gas on piston -[kJ]
printf('(b)Work done by gas on piston for isothermal process is %.2f kJ .\n ',W); |
9fc905cdfc7285d7a540c8469bc5b17fd4b65a02 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2138/CH3/EX3.3/ex_3_3.sce | 4cba6184c5e5d8b701ab4a2475f3fe020ee480a8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 270 | sce | ex_3_3.sce | //Example 3.3 // resistance
clc;
clear;
close;
//given data :
L=1000; // length of wire in cm
d=0.14; // diameter of wire in cm
R1=2.5*10^6; // resistance in micro-ohm
a=(%pi*d^2)/4; // cross section area
p=(R1*a)/L;
disp(p,"the specific resistance,p(micro-ohm-cm) = ")
|
8d8201256c2463a284559e4e0cde58255fae6310 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH1/EX1.2/Ex1_2.sce | f3bbaffe361392ca3a811da9ad9fcba8f8e5d076 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 318 | sce | Ex1_2.sce | //Example 1.2
A=5;//Expected value of bag's weight (lb)
delta_A=0.4;//Uncertainty in A (lb)
percent_unc=delta_A/A*100;//Percent uncertainty of the weight
printf('Percent uncertainty of the weight = %0.1f%%',percent_unc)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
5ac29cc693440372ff4c99266459af0a8a1e5107 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3281/CH6/EX6.11/ex6_11.sce | 37368b224e864438e4847371ed8e8c00dd44698a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 601 | sce | ex6_11.sce | //Page Number: 336
//Example 6.11
clc;
//Given
I0=30D-3; //A
V0=3D+3; //V
Z0=10; //ohm
l=0.1624; //m
f=10D+9; //Hz
C=((I0*Z0)/(4*V0))^(1/3);
N=(l*f)/(0.593D+6*sqrt(V0));
//Gain
Ap=-9.54+(47.3*C*N);
disp('dB',Ap,'Gain:');
ve=0.593D+6*sqrt(V0);
be=(2*%pi*f)/ve;
//Four propogation constants
gam1=((-sqrt(3)*be*C)/2)+(%i*be*(2+C))/2;
gam2=((sqrt(3)*be*C)/2)+(%i*be*(2+C))/2;
gam3=%i*be*(1-C);
gam4=-%i*be*(1-((C*C*C)/4));
disp(gam4,gam3,gam2,gam1,'Four propogation constants:');
//Calculations for propogation constants are wrong for gam 3 and 4 hence answers dont match
|
37cd623dde746af2995f4fef3d3643e06f0b7622 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1946/CH9/EX9.21/Ex_9_21.sce | 796f49670a720a50e1c3b6b29c037f0529b86005 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 422 | sce | Ex_9_21.sce | // Example 9.21;//dark current
clc;
clear;
close;
C=2.998*10^8;//SPEED of light in meter per second
e=1.6*10^-19;//elecronic charge
ht=6.62*10^-34;//plank constt.
h=0.85;//wavelength in micro meters
n=0.64;//efficiency
B=1;//bandwidth in hertz
D=7*10^10;//SPECIFIC DETECTIVITY
a=10;//active dimension in micro meter
Id=((n*sqrt(e*a*10^-6)*h*10^-6)/(ht*C*sqrt(2)*D))^2;//
disp(Id,"Dark current in ampere is")
|
73b0c8fd27984ed11e60036043b29c74332762f4 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/statelevels/statelevels13.sce | 91ec37d66e5c0252c267e2d6bbbbce10e0897b57 | [] | 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 | 110 | sce | statelevels13.sce | //check o/p when i/p vector contains only zeros
x=[0 0 0 0];
y=statelevels(x);
disp(y);
//output
//0. 0.
|
6d6a80e7464ca8b91e24ecb973b425ae52660b6a | 573df9bfca39973c9bf2fa36f6e5af2643d7771e | /scilab/lib/fibonacci_rec.sci | 4b59a7c1b2634b60f0d81e07c958fb3bd7f45e62 | [] | no_license | DCC-CN/152cn | ef92c691edabe211b1a552dbb963f9fd9ceec94a | 4fe0b02f961f37935a1335b5eac22d81400fa609 | refs/heads/master | 2016-08-13T01:34:17.966430 | 2015-04-07T07:31:58 | 2015-04-07T07:31:58 | 44,502,526 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 160 | sci | fibonacci_rec.sci | function resp = fibonacci_rec(n)
if(n <= 1) then
resp = n;
else
resp = fibonacci_rec(n - 1) + fibonacci_rec(n - 2);
end
endfunction
|
9fad231f7ec4ea0f9d779bab5dc4156bd81c385f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1092/CH1/EX1.5/Example1_5.sce | b167d047515fc38daf20871d3239d14b2f5dff4b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,478 | sce | Example1_5.sce | // Electric Machinery and Transformers
// Irving L kosow
// Prentice Hall of India
// 2nd editiom
// Chapter 1: Electromechanical Fundamentals
// Example 1-5
clear; clc; close; // Clear the work space and console.
// Given data
no_of_conductors = 40;
A = 2; // A = Parallel paths
path = A;
flux_per_pole = 6.48 * 10 ^ 8; // flux lines
S = 30; // S = Speed of the prime mover in rpm
R_per_path = 0.01; // Resistance per path
I = 10; // Current carried by each condutcor
P = 2; // No. of poles
// Calculations
total_flux = P * flux_per_pole; // Total flux linked in one revolution
t = ( 1 / 30 ) * ( 60 ); // time for one revolution
e_av_per_conductor = ( total_flux / t ) * 10^-8; // Average voltage generated
// per conductor
E_path = ( e_av_per_conductor ) * ( no_of_conductors / path ); // Average
//voltage generated per path
E_g = E_path; // Generated armature voltage
I_a =( I / path ) * ( 2 * path ); // Armature current delivered to an external
// load
R_a = ( R_per_path) / path * 20; // Armature resistance
V_t = E_g - I_a * R_a; // Terminal voltage of generator
P = V_t * I_a; // Genrator power rating
// Display the results
disp("Example 1-5 Solution");
printf(" \n a : E/path = %.2f V/path ", E_path );
printf(" \n b : Eg = %.2f V ", E_g );
printf(" \n c : Ia = %.2f A ", I_a );
printf(" \n d : Ra = %.2f ohm ", R_a );
printf(" \n e : Vt = %.2f V ", V_t );
printf(" \n f : P = %.2f W ", P );
|
97fed1ca15f16e9984f6abbc624a580febccf781 | 37ae73a0d143e6fc539c6ff34ace9e46e0982654 | /Tutorial/TestEnv/Tutorial_C++/environment/MANAGER_DATABASE/MANAGER_DATABASE.tst | 5cf49632914aa2d64387c8b9446d2dca912b3bf2 | [] | no_license | vjtkmg/vcast-workarea | 7441ca0ac1eb05ab41c388b5c6fd502277fc4ac9 | 6ecfc99f4b1b68707e4debb8c5b213a467326c2c | refs/heads/main | 2023-08-23T13:26:38.279532 | 2021-11-04T09:12:34 | 2021-11-04T09:12:34 | 422,165,203 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 13,140 | tst | MANAGER_DATABASE.tst | -- VectorCAST 21.sp3 (08/04/21)
-- Test Case Script
--
-- Environment : MANAGER_DATABASE
-- Unit(s) Under Test: database manager
--
-- Script Features
TEST.SCRIPT_FEATURE:C_DIRECT_ARRAY_INDEXING
TEST.SCRIPT_FEATURE:CPP_CLASS_OBJECT_REVISION
TEST.SCRIPT_FEATURE:MULTIPLE_UUT_SUPPORT
TEST.SCRIPT_FEATURE:REMOVED_CL_PREFIX
TEST.SCRIPT_FEATURE:MIXED_CASE_NAMES
TEST.SCRIPT_FEATURE:STANDARD_SPACING_R2
TEST.SCRIPT_FEATURE:OVERLOADED_CONST_SUPPORT
TEST.SCRIPT_FEATURE:UNDERSCORE_NULLPTR
TEST.SCRIPT_FEATURE:FULL_PARAMETER_TYPES
TEST.SCRIPT_FEATURE:STRUCT_DTOR_ADDS_POINTER
TEST.SCRIPT_FEATURE:STRUCT_FIELD_CTOR_ADDS_POINTER
TEST.SCRIPT_FEATURE:STATIC_HEADER_FUNCS_IN_UUTS
TEST.SCRIPT_FEATURE:VCAST_MAIN_NOT_RENAMED
--
-- Unit: manager
-- Subprogram: Manager::AddIncludedDessert
-- Test Case: COND_1_ROW_1_PAIR_a_T
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_1_ROW_1_PAIR_a_T
TEST.MCDC_BASIS_PATH:2 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 2
(1) if (!Order) ==> FALSE
Row number 1 forms a pair with Row 2 for Condition #1, subcondition "a".
Condition a ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.END
-- Test Case: COND_1_ROW_2_PAIR_a_F
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_1_ROW_2_PAIR_a_F
TEST.MCDC_BASIS_PATH:1 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 1
(1) if (!Order) ==> TRUE
Row number 2 forms a pair with Row 1 for Condition #1, subcondition "a".
Condition a ==> FALSE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<null>>
TEST.END
-- Test Case: COND_2_ROW_1_PAIR_a_TTT
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_2_ROW_1_PAIR_a_TTT
TEST.MCDC_BASIS_PATH:4 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 4
(1) if (!Order) ==> FALSE
(2) if ((Order->Entree == (Steak) && Order->Salad == (Caesar)) && Order->Beverage == (MixedDrink)) ==> TRUE
Row number 1 forms a pair with Row 5 for Condition #2, subcondition "a".
Condition a ==> TRUE
Condition b ==> TRUE
Condition c ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Salad:Caesar
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Entree:Steak
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Beverage:MixedDrink
TEST.END
-- Test Case: COND_2_ROW_2_PAIR_c_TTF
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_2_ROW_2_PAIR_c_TTF
TEST.MCDC_BASIS_PATH:6 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 6
(1) if (!Order) ==> FALSE
(2) if ((Order->Entree == (Steak) && Order->Salad == (Caesar)) && Order->Beverage == (MixedDrink)) ==> FALSE
Row number 2 forms a pair with Row 1 for Condition #2, subcondition "c".
Condition a ==> TRUE
Condition b ==> TRUE
Condition c ==> FALSE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Salad:Caesar
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Entree:Steak
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Beverage:NoBeverage
TEST.END
-- Test Case: COND_2_ROW_3_PAIR_b_TFx
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_2_ROW_3_PAIR_b_TFx
TEST.MCDC_BASIS_PATH:5 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 5
(1) if (!Order) ==> FALSE
(2) if ((Order->Entree == (Steak) && Order->Salad == (Caesar)) && Order->Beverage == (MixedDrink)) ==> FALSE
Row number 3 forms a pair with Row 1 for Condition #2, subcondition "b".
Condition a ==> TRUE
Condition b ==> FALSE
Condition c ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Salad:NoSalad
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Entree:Steak
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Beverage:MixedDrink
TEST.END
-- Test Case: COND_2_ROW_5_PAIR_a_Fxx
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_2_ROW_5_PAIR_a_Fxx
TEST.MCDC_BASIS_PATH:3 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 3
(1) if (!Order) ==> FALSE
(2) if ((Order->Entree == (Steak) && Order->Salad == (Caesar)) && Order->Beverage == (MixedDrink)) ==> FALSE
Row number 5 forms a pair with Row 1 for Condition #2, subcondition "a".
Condition a ==> FALSE
Condition b ==> TRUE
Condition c ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Salad:Caesar
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Entree:NoEntree
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Beverage:MixedDrink
TEST.END
-- Test Case: COND_3_ROW_1_PAIR_a_TTT
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_3_ROW_1_PAIR_a_TTT
TEST.MCDC_BASIS_PATH:8 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 8
(1) if (!Order) ==> FALSE
(2) if ((Order->Entree == (Steak) && Order->Salad == (Caesar)) && Order->Beverage == (MixedDrink)) ==> FALSE
(3) if ((Order->Entree == (Lobster) && Order->Salad == (Green)) && Order->Beverage == (Wine)) ==> TRUE
Row number 1 forms a pair with Row 5 for Condition #3, subcondition "a".
Condition a ==> TRUE
Condition b ==> TRUE
Condition c ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Salad:Green
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Entree:Lobster
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Beverage:Wine
TEST.END
-- Test Case: COND_3_ROW_2_PAIR_c_TTF
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_3_ROW_2_PAIR_c_TTF
TEST.MCDC_BASIS_PATH:10 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 10
(1) if (!Order) ==> FALSE
(2) if ((Order->Entree == (Steak) && Order->Salad == (Caesar)) && Order->Beverage == (MixedDrink)) ==> FALSE
(3) if ((Order->Entree == (Lobster) && Order->Salad == (Green)) && Order->Beverage == (Wine)) ==> FALSE
Row number 2 forms a pair with Row 1 for Condition #3, subcondition "c".
Condition a ==> TRUE
Condition b ==> TRUE
Condition c ==> FALSE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Salad:Green
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Entree:Lobster
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Beverage:NoBeverage
TEST.END
-- Test Case: COND_3_ROW_3_PAIR_b_TFx
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_3_ROW_3_PAIR_b_TFx
TEST.MCDC_BASIS_PATH:9 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 9
(1) if (!Order) ==> FALSE
(2) if ((Order->Entree == (Steak) && Order->Salad == (Caesar)) && Order->Beverage == (MixedDrink)) ==> FALSE
(3) if ((Order->Entree == (Lobster) && Order->Salad == (Green)) && Order->Beverage == (Wine)) ==> FALSE
Row number 3 forms a pair with Row 1 for Condition #3, subcondition "b".
Condition a ==> TRUE
Condition b ==> FALSE
Condition c ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Salad:NoSalad
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Entree:Lobster
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Beverage:Wine
TEST.END
-- Test Case: COND_3_ROW_5_PAIR_a_Fxx
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::AddIncludedDessert
TEST.NEW
TEST.NAME:COND_3_ROW_5_PAIR_a_Fxx
TEST.MCDC_BASIS_PATH:7 of 10
TEST.NOTES:
This is an automatically generated test case.
Test Path 7
(1) if (!Order) ==> FALSE
(2) if ((Order->Entree == (Steak) && Order->Salad == (Caesar)) && Order->Beverage == (MixedDrink)) ==> FALSE
(3) if ((Order->Entree == (Lobster) && Order->Salad == (Green)) && Order->Beverage == (Wine)) ==> FALSE
Row number 5 forms a pair with Row 1 for Condition #3, subcondition "a".
Condition a ==> FALSE
Condition b ==> TRUE
Condition c ==> TRUE
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::AddIncludedDessert.Order:<<malloc 1>>
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Salad:Green
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Entree:NoEntree
TEST.VALUE:manager.Manager::AddIncludedDessert.Order[0].Beverage:Wine
TEST.END
-- Subprogram: Manager::PlaceOrder
-- Test Case: BASIS-PATH-001
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::PlaceOrder
TEST.NEW
TEST.NAME:BASIS-PATH-001
TEST.BASIS_PATH:1 of 5
TEST.NOTES:
This is an automatically generated test case.
Test Path 1
(5) case (Order.Entree) ==> default
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::PlaceOrder.Table:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Seat:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Order.Entree:NoEntree
TEST.END
-- Test Case: BASIS-PATH-002
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::PlaceOrder
TEST.NEW
TEST.NAME:BASIS-PATH-002
TEST.BASIS_PATH:2 of 5
TEST.NOTES:
This is an automatically generated test case.
Test Path 2
(1) case (Order.Entree) ==> Steak
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::PlaceOrder.Table:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Seat:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Order.Entree:Steak
TEST.END
-- Test Case: BASIS-PATH-003
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::PlaceOrder
TEST.NEW
TEST.NAME:BASIS-PATH-003
TEST.BASIS_PATH:3 of 5
TEST.NOTES:
This is an automatically generated test case.
Test Path 3
(2) case (Order.Entree) ==> Chicken
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::PlaceOrder.Table:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Seat:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Order.Entree:Chicken
TEST.END
-- Test Case: BASIS-PATH-004
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::PlaceOrder
TEST.NEW
TEST.NAME:BASIS-PATH-004
TEST.BASIS_PATH:4 of 5
TEST.NOTES:
This is an automatically generated test case.
Test Path 4
(3) case (Order.Entree) ==> Lobster
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::PlaceOrder.Table:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Seat:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Order.Entree:Lobster
TEST.END
-- Test Case: BASIS-PATH-005
TEST.UNIT:manager
TEST.SUBPROGRAM:Manager::PlaceOrder
TEST.NEW
TEST.NAME:BASIS-PATH-005
TEST.BASIS_PATH:5 of 5
TEST.NOTES:
This is an automatically generated test case.
Test Path 5
(4) case (Order.Entree) ==> Pasta
Test Case Generation Notes:
TEST.END_NOTES:
TEST.VALUE:manager.<<GLOBAL>>.(cl).Manager.Manager.<<constructor>>.Manager().<<call>>:0
TEST.VALUE:manager.Manager::PlaceOrder.Table:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Seat:<<MIN>>
TEST.VALUE:manager.Manager::PlaceOrder.Order.Entree:Pasta
TEST.END
|
2a63fb055a606e06b01661079821069506fca309 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3785/CH4/EX4.5/Ex4_5.sce | 4d1a14b44c015aa20afe08e647b6a85ebc404c99 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 347 | sce | Ex4_5.sce | // Example 4_5
clc;funcprot(0);
// Given data
rho=1.225;// The density of air in kg/m^3
A_0=1.0;// Area of orifice in cm^2
A_pV=2.5*10^-4;// The volumetric flow rate in m^3/s
// Calculation
P=(rho*(A_pV)^3)/(2*(A_0*10^-4)^2);// The power expended in inhaling in W
printf("\nThe power P expended in inhaling (or exhaling) is %1.2e W",P)
|
2a008fe5be21520a848f9bfb834c795c4a1e9e23 | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH5/EX5.8/Example5_8.sce | 12fd97fe1f3dc163e9c7c4fca9f8b0856c5dce32 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 745 | sce | Example5_8.sce | //Example 5.8
//Program to determine the total loss incurred by the star coupler
//and average insertion loss
clear;
clc ;
close ;
//Given data
Pi=1*10^(-3); //Watts - INPUT POWER AT PORT 1
Po=14*10^(-6); //Watts - OUTPUT POWER AT OTHER PORTS
N=32; //Ports
//Calculation of Splitting Loss
Splitting_loss=10*log10(N);
//Calculation of Excess Loss
Excess_loss=10*log10(Pi/(Po*N));
//Calculation of Total loss
Total_loss=Splitting_loss+Excess_loss;
//Calculation of Average Insertion Loss
Insertion_loss=10*log10(Pi/Po);
//Displaying the Results in Command Window
printf("\n\n\t Total loss is %0.2f dB .",Total_loss);
printf("\n\n\t Average Insertion Loss is %0.2f dB .",Insertion_loss); |
188e883e15e988ada4eac14a7852b8c2e8a4da8e | 449d555969bfd7befe906877abab098c6e63a0e8 | /172/CH6/EX6.3/ex3.sce | 8c193fc60853e85e7f4dc9e096d8ef3e5ed5e2ff | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 492 | sce | ex3.sce | //example 3
//rate of flow of water
clear
clc
hir=441.89 //in kJ/kg for refrigerant using steam table
her=249.10 //in kJ/kg for refrigerant using steam table
hiw=42 //in kJ/kg for water using steam table
hew=83.95 //in kJ/kg for water using steam table
mr=0.2 //the rate at which refrigerant enters the condenser in kg/s
mw=mr*(hir-her)/(hew-hiw) //rate of flow of water in kg/s
printf("\n hence,the rate at which cooling water flows thorugh the condenser is mw=%.3f kg/s. \n", mw) |
c8c25999038e1760bb7d6b95202d5bc1f51ffaf5 | 899cecef18712265c22e100bf72286df1ec5fb65 | /Asgn4/Q3.sce | e5038f5ac5fa66fb951d2678573c8deabe8b6c8a | [] | no_license | ajaykumarkannan/Speech-Signal-Processing-and-Coding | 449679bef8bdf0215e96521163774f88d8a6b41e | c1d371b2866239a89312a0f64db3d61cc0b1011c | refs/heads/master | 2020-05-17T17:02:33.143586 | 2012-11-15T12:48:40 | 2012-11-15T12:48:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,781 | sce | Q3.sce | // This script calculates the value of the LPC coefficients using the Levinson-
// Durbin (LD) method. The LD method calculates the nth order coefficients using
// the (n-1)th order coefficients. The calculation is done frame-wise
// Nms = input("Enter the frame size in milliseconds: ");
// Nfs = input("Enter frame shift in milliseconds: ");
Nms = 20; // 20ms frame length
Nfs = 20; // 20ms frame shift
FileName = input("Enter the sound file name (Enclose in single quotes): ");
[y, Fs, bits] = wavread(FileName);
y = y(1,:);
N = Nms * Fs / 1000; // Number of samples for frame size
Nf = Nfs * Fs / 1000; // Number of samples for frame shift
// Order of LP Analysis
p = input('Enter the order of the LP Analysis: ');
Nframes = floor((length(y) - N)/ Nf); // Number of frames total
LPC_Coefs = zeros(Nframes, p);
for f = 1:Nframes
start = f * Nf;
findex = start:(start+N-1);
// Take the samples within the frame
frame = y(findex);
// Apply Hamming Window
frame = frame .* window('hm', N);
R = zeros(1,p+1);
for i = 0:(p)
R(i+1) = sum(frame(1,1:(N-p)).*frame(1,(1+i):(N-p+i)));
end
// Reflection coefficients
k = zeros(p,1);
// Prediction Error - E(1) = Prediction error of 0
E = zeros(p+1,1);
// Solving size 0 & 1 problem
// R(1) + R(0) * a1_1 = 0
E(0+1) = R(0+1);
lambda = R(1+1) / E(0+1);
a_last = lambda;
E(1+1) = E(0+1) * (1 - lambda^2);
for i = 2:p
lambda = (R(i+1)-sum(a_last .* R(i-1+1:-1:1+1)) ) / E(i+1-1);
a = [(a_last - lambda * a_last(i-1:-1:1)) lambda];
E(i+1) = E(i-1+1) * (1 - lambda^2);
a_last = a;
end
LPC_Coefs(f, :) = a;
end
surf(1:p, (0:Nframes-1) * Nf / Fs, LPC_Coefs);
title('LPC Coefficients vs Time');
xlabel('LPC Coefficient');
ylabel('Time in seconds');
a = get("current_axes");
a.tight_limits = "on";
|
7b2ca6f5d249f1d378795e411ce228e73aa50a8f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1898/CH1/EX1.1/Ex1_1.sce | 7b8afb02a12bd3b0bb2e24f77af7890715c3b0a4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 806 | sce | Ex1_1.sce | clear all; clc;
disp("Scilab Code Ex 1.1 :")
w_varying = 270;
l_crossection = 9;
l_cb = 6;
l_ac = 2;
w_c = (w_varying/l_crossection) * l_cb //By proportion, load at C is found.
f_resultant_c = 0.5* w_c *l_cb
// Equations of Equilibrium
//Balancing forces in the x direction:
n_c = 0
//Balncing forces in the y direction:
v_c = f_resultant_c
// Balncing the moments about C:
m_c = - (f_resultant_c*l_ac)
// Displaying results:
printf('\n\nThe resultant force at C = %.2f N',f_resultant_c);
printf('\nThe horizontal force at C = %.2f N',n_c);
printf('\nThe vertical force at C = %.2f N',v_c);
printf('\nThe moment about C = %.2f Nm',m_c);
// ---------------------------------------------------------END-------------------------------------------------
|
59121c09e2e2c758a75a88a51f50e6073a59ac06 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2465/CH3/EX3.9/Example_9.sce | 1a02f11825a51c7e7fe8259f0d97f6158d94e613 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 441 | sce | Example_9.sce | //Chapter-3,Example 9,Page 59
clc;
close;
mole_U =11.9/238 //mole of Uranium
mole_Pb =10.3/206 //mole of lead
t_half= 4.5*10^9 //half life of Uranium
// U(238)=(U(238) + Pb(206)) * exp(-lamda*t)
// 1 = (1 + Pb(206)/U(238)) * exp(-lamda*t)
// 1 = (1 + 0.5) * exp(-lamda*t)
lamda = 0.693/t_half
t= log10(1+ mole_Pb/mole_U)/(log10(%e)*lamda)
printf('the age of the ore is ')
disp(t)
printf(' years')
|
fc15967d4af2f127cf7c83f8ead88217d0f489e4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH12/EX12.7/Ex12_7.sce | 632e24f6aa53be8d553c92b0ec30073d5554cc47 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,425 | sce | Ex12_7.sce | // Example 12_7
clc;clear;funcprot(0);
//Given values
P_0=1000;// kPa;
T_0=800;// K
k=1.4;//The specific heat ratio of air
Ma_2=2;// Exit Mach number
a=20;// Throat area in cm^2
//Properties
R=0.287;// kJ/kg.k
// Calculation
rho_0=P_0/(R*T_0);// kg/m^3
P_0=1;// MPa
//(a)At the throat of the nozzle Ma=1, and from Table A–13
//P*=P_c;T*=T_c;rho*=rho_c;V*=V_c;c*=c_c;
P_c=0.5283*P_0;// MPa
printf('(a)The throat conditions,P*=%0.4f MPa\n',P_c);
T_c=0.8333*T_0;// K
printf(' T*=%0.1f K\n',T_c);
rho_c=0.6339*rho_0;// kg/m^3
printf(' rho*=%0.3f kg/m^3\n',rho_c);
V_c=sqrt(k*R*T_c*1000);// m/s
printf(' V*=c*=%0.1f m/s\n',V_c);
//(b)For Ma_2=2,by using data from Table A–13
P_e=0.1278*P_0;// MPa
printf('(b)The exit plane conditions,P_e=%0.4f MPa\n',P_e);
T_e=0.5556*T_0;// K
printf(' T_e=%0.1f K\n',T_e);
rho_e=0.23000*rho_0;// kg/m^3
printf(' rho_e=%0.3f kg/m^3\n',rho_e);
A_e=1.6875*a;// cm^2
printf(' A_e=%0.2f cm^2\n',A_e);
Ma_e=1.6330;// Critical Mach number
V_e=Ma_e*V_c;// m/s
printf(' V_e=%0.1f m/s\n',V_e);
c_e=sqrt(k*R*T_e*1000);// The speed of sound at the exit condition in m/s
V_e=Ma_2*c_e;// m/s
//(c)
m=rho_c*(a*10^-4)*V_c;
printf('(c)The mass flow rate,m=%0.2f kg/s\n',m);
|
65d604e2ca41e49fcbec79a1fcc8d7a06ba95fcf | 226851ab7bb8a3e1137e72fd154d4aa6939229f1 | /60002190048_SS SCILAB_4A(IZT).sce | 200ab389004812c30030f2ee5ba1392bb12d9d16 | [] | no_license | Ishitaa48/SS-Practicals-EXTC-1-E13-60002190048 | 637a855701ef0a07675e519cf002fa4742a571e7 | 183baae9ad66d093ba13d41a01f1d61751ef8036 | refs/heads/main | 2023-01-18T22:39:05.696201 | 2020-11-25T11:52:15 | 2020-11-25T11:52:15 | 315,921,545 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 220 | sce | 60002190048_SS SCILAB_4A(IZT).sce | //Program to find the Inverse Z transform using the Long Division Method
clear;
clc;
z=%z;
num=2*z*(2*z-1)
den=(z-1)*(z-2)^2
h=ldiv(num,den,10)
disp(h,"Displaying the first ten terms of the inverse z transform")
|
7ffbfe0168b9a974e813d1dc80a4290af0415181 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1373/CH1/EX1.1/Chapter1_Example1.sce | fc984c7eecb683b86449c12cc1c0bcf452c0d1c9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 594 | sce | Chapter1_Example1.sce | //Chapter-1, Example 1.1, Page 9
//=============================================================================
clc
clear
//INPUT DATA
L=0.02;//Thicness of stainless steel plate in m
T=[550,50];//Temperatures at both the faces in degree C
k=19.1;//Thermal Conductivity of stainless steel at 300 degree C in W/m.K
//CALC9ULATIONS
q=((k*(T(1)-T(2)))/(L*1000));//Heat transfered per uni area in kW/m^2
//OUTPUT
mprintf('The heat transfered through the material per unit area is %3.1f kW/m^2',q)
//=================================END OF PROGRAM==============================
|
5d4d4a9a3994a6d6d008eb46a030d279ca017395 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/1.1/macros/util/strcat.sci | 387aa0aab486781491a296828ed1a63bf87a1c29 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | 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 | 509 | sci | strcat.sci | function [txt]=strcat(strs,opt)
//txt=strcat(strs) catenates character strings: txt=strs(1)+...+strs(n)
//
//txt= strcat(strs,opt) returns txt=strs(1)+opt+...+opt+strs(n)
//Example: strcat(string(1:10),',')
//!
if type(strs)<>10 then error(55,1),end
n=prod(size(strs))
if n==0 then txt=' ',return,end
txt=strs(1)
[lhs,rhs]=argn(0)
if rhs==1 then
for k=2:n,txt=txt+strs(k),end
else
if type(opt)<>10 then error(55,2),end
if prod(size(opt))<>1 then error(89,2),end
for k=2:n,txt=txt+opt+strs(k),end
end
|
96b79d5b44071aabd3b5942555de0164695e505b | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/CreatingPlots/testfigure.sce | bcb2b91cd8e2c0939d50c6ca54bd33b46461e9cf | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 160 | sce | testfigure.sce | hfig = figure(...
'Tag', 'myfigure', ...
'BackgroundColor', name2rgb("lightblue")/255, ...
'Figure_name', 'My Figure', ...
'Position', [20 20 300 200])
|
a911dadac008e5b6296979aca3a9fdb0ff09fad9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH2/EX2.44.a/EX_2_44_a.SCE | 3f1dc904b68560a01a1e475af8feb5560c8b909a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 860 | sce | EX_2_44_a.SCE | // Example 2.44.a:R1,R2 ,Re
clc;
clear;
close;
Vbe=0.2;//
Vcc=16;//collector voltage in volts
Rc=1.5;//clollector resistance in killo ohms
S=12;//stability factor
Vce=8;// Collector to emitter voltage
Ic=4; //in milli amperes
Beta=50;//gain
Ib=(Ic*10^-3)/Beta;// Base current in micro ampere
Re=(Vcc-Vce-(Rc*10^3*Ic*10^-3))/(Ic*10^-3+Ib);//emitter resistance in ohms
Rb=((11*(1+Beta))/(Beta-11))*Re*10^-3;//base resistance in killo ohms
Vr2= Vbe+(Ic+Ib*10^3)*Re*10^-3;//voltage is R2
x=(Vr2/Vcc);//Voltage
R1=(Rb)/x;//resistance in killo ohms
R2=(x*R1)/(1-x);//RESISTANCE IN KILLO OHMS
S1=3;//REDUCED STABILITY FACTOR
Rb1=((3*(1+Beta))/(Beta-3))*Re*10^-3;//EFFECT OF REDUCING STABILITY FACTOR ON BASE RESISTANCE
disp(Re*10^-3,"emitter resistance in killo ohms")
disp(R1,"resistance in killo ohms")
disp(R2,"resistance in killo ohms")
|
0841040ce029be58c47b7b2369645328efc9e02a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/macros/percent/%s_l_r.sci | 120cbd9e91c9c832e631bca8b3550aed825b94b7 | [
"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 | 524 | sci | %s_l_r.sci | function b=%s_l_r(a,b)
// a\b a scalar matrix, b rational matrix
//!
// Copyright INRIA
if size(a,'*')==0 then b=[],return,end
if size(a,1)==-1 then a=a+0,end
[ma,na]=size(a);
if ma==1&na==1 then
b('num')=a\b('num'),
elseif size(b('num'),1)==1 then
b=rlist(a\b('num'),ones(na,ma)*b('den'),b('dt'))
else
[num,den]=b(['num','den']);
dd=[];nn=[]
for j=1:size(num,2)
[y,fact]=lcm(den(:,j)),
nn=[nn,a\(num(:,j).*fact)];
dd=[dd y]
end
[num,den]=simp(nn,ones(na,1)*dd)
b=rlist(num,den,b('dt'))
end
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.