blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50 values | src_encoding stringclasses 23 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 29 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
97bffcb5be57f96a7b47d527c8cfcd75b73273e8 | ab0891df3df62a84b3bc60ee178e2d84b0d692c5 | /Geometry_Processing_Toolbox/macros/mesh_boolean.sci | c47a5fb94058d6d3377f2695874b0b5f340e5305 | [
"MIT"
] | permissive | sidgairo18/SCILAB_MEX_TOOLBOX | 6b36c8b5dd21bb15d942a283ebfe2366a7ac02ec | fc679f6d226c03b992b632823a5e57abea05cefa | refs/heads/master | 2020-03-19T04:03:55.721880 | 2018-08-14T11:22:24 | 2018-08-14T11:22:24 | 135,791,680 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,728 | sci | mesh_boolean.sci | % MESH_BOOLEAN Compute boolean csg operations on "solid", consistently oriented
% meshes.
%
% [W,H] = mesh_boolean(V,F,U,G,operation)
% [W,H] = mesh_boolean(V,F,U,G,operation,'ParameterName',paramter_value, ...)
% [W,H] = mesh_boolean({V1,V2,..,Vn},{F1,F2,...,Fn}, ...
% operation,'ParameterName',paramter_value, ...)
%
% Inputs:
% V #V by 3 list of vertex positions of first mesh
% F #F by 3 list of triangle indices into V
% U #U by 3 list of vertex positions of second mesh
% G #G by 3 list of triangle indices into U
% operation followed by operation to perform as a string, one of: 'union',
% 'intersect', 'minus', 'xor', or 'resolve'
% Optional:
% 'BooleanLib' followed by boolean library back-end to use, one of:
% {'libigl'} uses CGAL's exact arithmetic kernel and is believed to be
% correct.
% 'cork' is faster but may give incorrect results.
% 'libigl-try-cork-resolve' libigl boolean extraction but tries to use
% cork's fast resolve, if intersections
% persist, then resolves remaining with
% libigl's resolve. This adds a "layer of
% robustness" on top of cork, but since it's
% not understood _how_ cork is failing, it
% is unknown whether this will lead to
% correct results.
% Outputs:
% W #W by 3 list of vertex positions of boolean result mesh
% H #H by 3 list of triangle indices into W
% J #H list of indices into [FA;FB] of facet birth parents
% See also: self_intersect
|
2e28594c3bc6079007f17dc559dd3872f4247cf2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1619/CH6/EX6.10.1/Example6_10_1.sce | bdf1092c87357eae3aa831f7316726ecea7711f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 704 | sce | Example6_10_1.sce | // Example 6.10.1 page 6.22
clc;
clear;
P0= 200;
P1=90;
P2=85;
P3=6.3;
//All powers in uW...
coupling_ratio= P2/(P1+P2)*100;
printf("\n\n Coupling Ratio is %.2f %%",coupling_ratio);
excess_ratio= 10*log10(P0/(P1+P2))
printf("\n\n The Excess Ratio is %.4f dB",excess_ratio);
insertion_loss=10*log10(P0/P1);
printf("\n\n The Insertion Loss (from Port 0 to Port 1) is %.2f dB",insertion_loss);
insertion_loss1=10*log10(P0/P2);
printf("\n\n The Insertion Loss (from Port 0 to Port 2) is %.2f dB",insertion_loss1);
cross_talk=10*log10(P3/P0);
printf("\n\n The Cross Talk is %.d dB",cross_talk);
printf("\n\n***NOTE: Cross Talk calculated wrognly in book... Value of P3 wrognly taken");
|
93a6b37d8f88691591d9a1f1c0e450f14d75dc2b | 676ffceabdfe022b6381807def2ea401302430ac | /library/Demos/StdRegions/Tests/StdProject3D_Prism_Mod_P6_Q7_IntWeight.tst | 5671124bd8a80153e5abe307c9b1f96b6fe7a454 | [
"MIT"
] | permissive | mathLab/ITHACA-SEM | 3adf7a49567040398d758f4ee258276fee80065e | 065a269e3f18f2fc9d9f4abd9d47abba14d0933b | refs/heads/master | 2022-07-06T23:42:51.869689 | 2022-06-21T13:27:18 | 2022-06-21T13:27:18 | 136,485,665 | 10 | 5 | MIT | 2019-05-15T08:31:40 | 2018-06-07T14:01:54 | Makefile | UTF-8 | Scilab | false | false | 905 | tst | StdProject3D_Prism_Mod_P6_Q7_IntWeight.tst | <?xml version="1.0" encoding="utf-8"?>
<test>
<description>StdProject3D Prism Modified basis P=6 Q=7 with alternative weights</description>
<executable>StdProject</executable>
<parameters>-s prism -b Modified_A Modified_A Modified_B -o 6 6 6 -p 7 7 7 -P GaussLobattoLegendre GaussLobattoLegendre GaussLobattoLegendre</parameters>
<metrics>
<metric type="L2" id="1">
<value tolerance="1e-11">2.08237e-12</value>
</metric>
<metric type="Linf" id="2">
<value tolerance="1e-11">4.65228e-12</value>
</metric>
<metric type="Regex" id="3">
<regex>^Integral error: ([+-]?\d.+\d|-?\d|[+-]?nan|[+-]?inf).*</regex>
<matches>
<match>
<field id="0" tolerance="1e-11">7.38076e-13</field>
</match>
</matches>
</metric>
</metrics>
</test>
|
657697d2654c3dadd29e4ce9515013aeadc536c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2345/CH5/EX5.1/Ex5_1.sce | 4d27b152e96656db0443210da4e47919b318789b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 356 | sce | Ex5_1.sce | //Finding charge and capacitance
//Example 5.1(pg 193)
clc
clear
t=0.25//time in sec
I=0.22//Current in A
V=220//voltage in V
Q=I*t//charge given to condenser
C=Q/V//capacitance of condenser
C1=C*(10^6)
printf('Charge given to condenser is %3.3f Coulombs \n',Q)
printf('Capacitance of condenser is %3.4f F',C)
printf('or %3.0f microF',C1)
|
ed21ed1439cd82d0815155acc62dd66b2305e321 | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH9/EX9.10.16/exa9_10_16.sce | f8dbe05644df39d4894574f730bdf573aa4e8daf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 279 | sce | exa9_10_16.sce | //caption:determine_transfer_matrix
//example 9.10.16
//page 406
clc;
s=%s
A=[1 -2;4 -5]
B=[2;1]
C=[1 1]
[r c]=size(A);//size of matrix A
p=s*eye(r,c)-A;//s*I-A where I is identity matrix
r=inv(p)//inverse of sI-A
G=C*r*B//transfer matrix
disp(G,"transfer matrix=")
|
79c91790af47280b3fb4d9c1c0ed214231c1a9b7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH1/EX1.4/Exa1_4.sce | 453b58d0b6f2f560478d279c9baaa23217d7673a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 629 | sce | Exa1_4.sce | //Exa 1.4
clc;
clear;
close;
//Given data
rf=20;//in ohm
RL=980;//in Ohm
Vrms=50;//in Volt
Vo=Vrms*sqrt(2);//in Volt
Io=Vo/(RL+rf);//in Ampere
//Part (i)
Idc=2*Io/%pi;//in Ampere
disp(round(Idc*10^3),"Average DC current in mA :");
//Part (ii)
Irms=Io/sqrt(2);//in Ampere
disp(Irms*1000,"rms value of load current in mA :")
//Part (iii)
Vdc=RL*Idc;//in Volt
disp(Vdc,"DC output voltage in volt :");
//Part (iv)
ETA=(Idc^2*RL/(Irms^2*(RL+rf)))*100;//Rectification Efficiency in %
disp("Rectification Efficiency is "+string(ETA)+" %")
//Part (v)
PIV=2*Vo;//in volt
disp(PIV,"Peak Inverse Voltage in volt :"); |
97340d77c36491b1036b22d7106e4ffbb92ef86e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3717/CH3/EX3.3/Ex3_3.sce | 207b3290d3ec168af8be321a6e3d7d288df050dc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 547 | sce | Ex3_3.sce | // Ex3_3 Page:48 (2014)
clc; clear;
h = 6.626e-034; // Planck's constant, Js
c = 3e+08; // Speed of light in vacuum, m/s
e = 1.6e-019; // Charge on an electron, C
T = 10.5; // Kinetic energy of ejected electron, eV
E = 13.6 + T; // Energy of the photon, eV
lambda = h*c/(E*e); // Wavelength of incident photon from Planck's Quantum relation, m
printf("\nWavelength of the photon that would ionize a hydrogen atom = %5.2f nm", lambda/1e-09);
// Result
// Wavelength of the photon that would ionize a hydrogen atom = 51.55 nm
|
2fac9557b07b22dd5b8edad48f79de0bf6d2b7c6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH2/EX2.7/Ex2_7.sce | fe64d82eadf1c6fbc97f7e31d42b00d90c0a4bb9 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 349 | sce | Ex2_7.sce | //Ex_2_7
clc;
clear;
close;
format('v',7);
//given data :
r=10;//cm
I=100;//A
d=5;//cm
mu0=4*%pi*10^-7;//permeability
Bc=mu0*I/2/(r/100);//Wb/m^2 or T
B=mu0*I*(r/100)^2/(2*((r/100)^2+(d/100)^2)^(3/2));//Wb/m^2
disp(Bc,"Flux density at the centre(Wb/m^2)");
disp(B,"Flux density in the plane(Wb/m^2)");
//Answer is wrong in the book.
|
cd10e6997403391a5b3ba67b8af59e69a4b61c48 | 668ca4e9ddcb0e4af73b341adf7dc544e552980d | /笔记/xml&tomcat.tst | a0b37d0ebcb5edc90877e11605fa59f339d76b28 | [] | no_license | ysily8817/biji | 6d5c70e681d9753597557a3204d8b6f69a5b2d7b | 15ff1b882a6e107caea02401bc384a38ceb1c4d6 | refs/heads/master | 2022-06-25T07:41:45.485965 | 2019-09-30T04:14:12 | 2019-09-30T04:14:12 | 199,145,828 | 0 | 0 | null | 2022-06-21T01:36:05 | 2019-07-27T09:44:03 | Scilab | UTF-8 | Scilab | false | false | 7,715 | tst | xml&tomcat.tst | 一、XML:可扩展的标记语言
二、XML的作用
1、可以用来保存数据
2、可以用来做配置文件
3、数据传输载体
三、XML文档声明
1、简单声明,version:解析这个xml的时候,使用什么版本的解析器解析
<?xml version="1.0"?>
2、encoding:解析xml中的文字的时候,使用什么编码来翻译
<?xml version="1.0" encoding="UTF-8"?>
3、standlone:no-该文档会依赖于其他文档,yes-表示是一个独立文档
<?xml version="1.0" encoding="UTF-8" standlone="no"?>
四、encoding详解
1、encoding表示:在解析这个xml的时候,使用什么编码去解析。 ---解码。
2、默认文件保存的时候,使用的是GBK的编码保存。
所以要想让我们的xml能够正常的显示中文,有两种解决办法
1. 让encoding也是GBK或者gb2312 .
2. 如果encoding是utf-8,那么保存文件的时候也必须使用utf-8
3. 保存的时候见到的ANSI对应的其实是我们的本地编码GBK。
为了通用,建议使用UTF-8编码保存,以及encoding 都是 utf-8
五、元素的定义,元素也叫标签
1、其实就是里面的标签,<>括起来的都叫元素。成对出现。如下:
<stu> </stu>
2、文档声明下来的第一个元素叫做根元素 (根标签)
3、标签里面可以嵌套标签
<stu>
<name>张三</name>
<age/>
</stu>
4、空标签
既是开始也是结束。 一般配合属性来用。
<age/>
5、标签可以自定义。
名称可以含字母、数字以及其他的字符
名称不能以数字或者标点符号开始
名称不能以字符 “xml”(或者 XML、Xml)开始
名称不能包含空格
命名尽量简单,做到见名知义
六、简单元素 & 复杂元素
1、简单元素
元素里面包含了普通的文字,在“七”中,<name>标签就属于简单元素,<stu>标签属于复杂元素
2、复杂元素
元素里面还可以嵌套其他的元素
七、属性的定义
1、定义在元素里面, <元素名称 属性名称="属性的值"></元素名称>
<stus>
<stu id="10086">
<name>张三</name>
<age>18</age>
</stu>
<stu id="10087">
<name>李四</name>
<age>28</age>
</stu>
</stus>
八、xml注释:
与html的注释一样。
格式为:<!-- -->
如:
<?xml version="1.0" encoding="UTF-8"?>
<!--
//这里有两个学生
//一个学生,名字叫张三, 年龄18岁, 学号:10086
//另外一个学生叫李四 。。。
-->
xml的注释,不允许放置在文档的第一行。 必须在文档声明的下面。
九、XML解析方式(面试常问)
有很多种,但是常用的有两种:DOM 和 SAX
DOM:document object model 把整个xml全部读到内存当中,形成树状结构,整个文档称为
document对象,属性对应Attribute对象,所有的元素节点对应Element对象,文本也可以称为Text
对象,以上所有对象都可以称为Node节点,如果xml特别大,会造成内存溢出,可以对文档进行增删操作
SAX:Simple API for Xml基于事件驱动,读取一行,解析一行,不会造成内存溢出,只能进行查询操作
十、针对以上两种解析方式的API
一些组织或者公司, 针对以上两种解析方式, 给出的解决方案有哪些?
jaxp sun公司。 比较繁琐
jdom
dom4j 使用比较广泛
十一、Dom4j 基本用法
element.element("stu") : 返回该元素下的第一个stu元素
element.elements(); 返回该元素下的所有子元素。
1. 创建SaxReader对象
2. 指定解析的xml
3. 获取根元素。
4. 根据根元素获取子元素或者下面的子孙元素
try {
//1. 创建sax读取对象
SAXReader reader = new SAXReader(); //jdbc -- classloader
//2. 指定解析的xml源
Document document = reader.read(new File("src/xml/stus.xml"));
//3. 得到元素、
//得到根元素
Element rootElement= document.getRootElement();
//获取根元素下面的子元素 age
//rootElement.element("age")
//System.out.println(rootElement.element("stu").element("age").getText());
//获取根元素下面的所有子元素 。 stu元素
List<Element> elements = rootElement.elements();
//遍历所有的stu元素
for (Element element : elements) {
//获取stu元素下面的name元素
String name = element.element("name").getText();
String age = element.element("age").getText();
String address = element.element("address").getText();
System.out.println("name="+name+"==age+"+age+"==address="+address);
}
} catch (Exception e) {
e.printStackTrace();
}
-----------------------------------------------------------------------------------------------
Tomcat
一、Tomcat安装
1. 直接解压 ,然后找到bin/startup.bat
2. 可以安装
启动之后,如果能够正常看到黑窗口,表明已经成功安装。
为了确保万无一失, 最好在浏览器的地址栏上输入 : http://localhost:8080 , 如果有看到内容 就表明成功了。
3. 如果双击了startup.bat, 看到一闪而过的情形,一般都是 JDK的环境变量没有配置。
二、Tomcat目录介绍
1、bin
包含了一些jar , bat文件 。 startup.bat
2、conf
tomcat的配置 server.xml web.xml
3、lib
tomcat运行所需的jar文件
4、logs
运行的日志文件
5、temp
临时文件
6、webapps
发布到tomcat服务器上的项目,就存放在这个目录。
7、work(目前不用管)
jsp翻译成class文件存放地
三、如何把一个项目发布到tomcat中
需求: 如何能让其他的电脑访问我这台电脑上的资源 。 stu.xml
localhost : 本机地址
1、拷贝这个文件到webapps/ROOT底下, 在浏览器里面访问:
http://localhost:8080/stu.xml
* 在webaps下面新建一个文件夹xml , 然后拷贝文件放置到这个文件夹中
http://localhost:8080/xml/stu.xml
http://localhost:8080 : 其实对应的是到webapps/root
http://localhost:8080/xml/ : 对应是 webapps/xml
使用IP地址访问:
http://192.168.37.48:8080/xml/stu.xml
2、配置虚拟路径
使用localhost:8080 打开tomcat首页, 在左侧找到tomcat的文档入口, 点击进去后, 在左侧接着
找到 Context入口,点击进入。
http://localhost:8080/docs/config/context.html
1. 在conf/server.xml 找到host元素节点。
2. 加入以下内容。
<!-- docBase : 项目的路径地址 如: D:\xml02\person.xml
path : 对应的虚拟路径 一定要以/打头。
对应的访问方式为: http://localhost:8080/a/person.xml -->
<Context docBase="D:\xml02" path="/a"></Context>
3、在浏览器地址栏上输入: http://localhost:8080/a/person.xml
3、配置虚拟路径
1. 在tomcat/conf/catalina/localhost/ 文件夹下新建一个xml文件,名字可以自己定义。 person.xml
2. 在这个文件里面写入以下内容
<?xml version='1.0' encoding='utf-8'?>
<Context docBase="D:\xml02"></Context>
3. 在浏览器上面访问
http://localhost:8080/person/xml的名字即可
四、给Eclipse配置Tomcat
1、在server里面 右键新建一个服务器, 选择到apache分类, 找到对应的tomcat版本, 接着一步一步配置即可。
2、配置完毕后, 在server 里面, 右键刚才的服务器,然后open , 找到上面的Server Location , 选择中
间的 Use Tomcat installation...
3、创建web工程, 在WebContent下定义html文件, 右键工程, run as server
|
25b9dd2ab2ca32be4db1a21f35a7be9aff2359a9 | 1232196a72221f6cc0ee0a9a47111ef1188dafe9 | /sci2blif/rasp_design_added_blocks/tgate_vec.sce | 350ed441f5a25e8a6862ba3b741ce5f4c1f5970e | [] | no_license | sumagin/rasp30 | 06dc2ee1587a4eaf3cf5fb992375b8589617f882 | a11dcffaed22dbac1f93c2f4798a48c7b0b1f795 | refs/heads/master | 2021-01-24T23:51:54.459864 | 2016-07-08T22:03:43 | 2016-07-08T22:03:43 | 16,685,217 | 2 | 3 | null | 2015-07-23T15:28:49 | 2014-02-10T05:17:38 | C | UTF-8 | Scilab | false | false | 82 | sce | tgate_vec.sce | style.displayedLabel="tgate_vec"
pal5=xcosPalAddBlock(pal5,"tgate_vec",[],style);
|
d0e883165b13817766574002e6dee852607928ac | dd62f0e176af8b35f4de2d6b64692105fd90afd6 | /etfe.sci | c18316cf2bb471d44c32e9c2d52112c4af1d1906 | [] | no_license | FOSSEE/FOSSEE-System-Identification-Toolbox | 2a631de0f2d6b993b3f19df4a220b274a1d85edb | 11ee9c829fe88301c69b731cdf9fe7957d0fa68c | refs/heads/master | 2018-10-15T08:25:21.323393 | 2018-07-31T10:56:53 | 2018-07-31T10:56:53 | 108,255,727 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,075 | sci | etfe.sci | function varargout = etfe(varargin)
// Estimate empirical transfer function
//
// Calling Sequence
// frdData = etfe(plantData,n)
// Parameters
// plantData : iddata type
// n : frequency sample spacing, default value is 128
// frdData : frd type object
// Description
// etfe function takes time domain plant data,iddata type, and estimate the empirical transfer function by taking the ratio of the fourier transforms
// of the output and the input variables
// Examples
// a = [1 0.2];b = [0 0.2 0.3];
// sys = idpoly(a,b,'Ts',0.1)
// u = idinput(1024,'PRBS',[0 1/20],[-1 1])
// y = sim(u,sys)+rand(1024,1)
// plantData = iddata(y,u,0.1)
// frdData = etfe(plantData)
// Authors
// Ashutosh Kumar Bhargava,Bhushan Manjarekar
[lhs,rhs] = argn()
if rhs > 2 || rhs < 1 then
error(msprintf(gettext("%s:Wrong number of input arguments.\n"),"etfe"))
end
data = varargin(1)
if typeof(data) <> "iddata" then
error(msprintf(gettext("%s:Plant time series data must be ""iddata"" type.\n"),"etfe"))
end
if rhs == 1 then
n = 128
elseif rhs == 2 then
n = varargin(2)
end
y = data.OutputData;
u = data.InputData;
if ~size(u,'r') then
error(msprintf(gettext("%s:Non zero input data point needed.\n"),"etfe"))
elseif ~size(y,'r') then
error(msprintf(gettext("%s:Non zero output data point needed.\n"),"etfe"))
end
N = size(y,'r')
y1 = y((1:ceil((N-1)/(n-1)):N));u1 = u((1:ceil((N-1)/(n-1)):N))
y1($) = y(N);u1($) = u(N)
data12 = [y1,u1]
z = [fft(y1),fft(u1)]
z = z/size(z,'r')
magData1 = abs(z(:,1));magData2 = abs(z(:,2))
argData1 = phasemag(z(:,1),'m');argData2 = phasemag(z(:,2),'m')
magData = magData1./magData2;argData = argData1-argData2
argData = [cosd(argData) sind(argData)]
data = [magData.*argData(:,1) magData.*argData(:,2)]
output = data(:,1)+%i*data(:,2)
resp = output(1:ceil(length(output)/2))
frq = (1: ceil(n/2)) * %pi/floor(n/2)
output = frd(frq',resp,1)
varargout(1)= output
endfunction
|
c626bcbfe36ca32ce69d6f84f29634f26e054638 | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH13/EX13.11/example13_11.sce | 67aca5682b734b85a0a6d46f55c9d7a11bf995e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,301 | sce | example13_11.sce | //Chapter 13
//Example 13_11
//Page 322
clear;clc;
Va=230;
Ic=25;
Id=50;
Ie=30;
If=40;
Vb=235;
Lac=50;
Lcd=25;
Lde=25;
Lef=50;
Lfb=50;
r=0.3;
l=200;
//resistance for 1000 m length of conductor
R=2*r;
Rac=R*Lac/1000;
Rcd=R*Lcd/1000;
Rde=R*Lde/1000;
Ref=R*Lef/1000;
Rfb=R*Lfb/1000;
//considering drop across various sections of the distributor and adding them to calculate Ia
Ia=(Va-Vb+(Ic*Rcd)+(Ic+Id)*Rde+(Ic+Id+Ie)*Ref+(Ic+Id+Ie+If)*Rfb)/(Rac+Rcd+Rde+Ref+Rfb);
Iac=Ia;
Icd=Ia-Ic;
Ide=Ia-Ic-Id;
Ief=Ia-Ic-Id-Ie;
Ifb=Ia-Ic-Id-Ie-If;
Vd=Va-(Iac*Rac+Icd*Rcd);
printf("Resistance per 1000 m of distributor = %.2f ohm \n\n", R);
printf("Resistance of section AC = %.3f ohm \n", Rac);
printf("Resistance of section CD = %.3f ohm \n", Rcd);
printf("Resistance of section DE = %.3f ohm \n", Rde);
printf("Resistance of section EF = %.3f ohm \n", Ref);
printf("Resistance of section FB = %.3f ohm \n\n", Rfb);
printf("Ia = %.1f A \n\n", Ia);
printf("(i) Current in section AC = Iac = %.2f A \n", Iac);
printf(" Current in section CD = Icd = %.2f A \n", Icd);
printf(" Current in section DE = Ide = %.2f A \n", Ide);
printf(" Current in section EF = Ief = %.2f A \n", Ief);
printf(" Current in section FB = Ifb = %.2f A \n\n", Ifb);
printf("(ii) Voltage at D = Vd = %.2f V \n", Vd );
|
a225961d1c0d4471f49e56c1383851a45892d9ae | 3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc | /Área 2/Aula 10 - Quadratura Gaussiana/Quadratura Gaussiana com n intervalos e 3 nós.sce | 1ed9000f3f2da789d3cedeb3a644d6feb9c937c5 | [
"MIT"
] | permissive | JPedroSilveira/numerical-calculus-with-scilab | 32e04e9b1234a0a82275f86aa2d6416198fa6c81 | 190bc816dfaa73ec2efe289c34baf21191944a53 | refs/heads/master | 2023-05-10T22:39:02.550321 | 2021-05-11T17:17:09 | 2021-05-11T17:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 482 | sce | Quadratura Gaussiana com n intervalos e 3 nós.sce | function S=gaussiana(f,a,b,n)
h=(b-a)/n // n intervalos
x=linspace(a,b,n+1)
w = [8/9 5/9 5/9]
t = [0 sqrt(3/5) -sqrt(3/5)]
S=0
for i=1:n
alpha=(x(i+1)-x(i))/2
bet =(x(i+1)+x(i))/2
x1=alpha*t(1)+bet;
x2=alpha*t(2)+bet;
x3=alpha*t(3)+bet;
A =(w(1)*f(x1)+w(2)*f(x2)+w(3)*f(x3))* h/2
S=S+A
end
endfunction
function y=f(x)
y = sin(7*x + 1)
endfunction
|
f799038397220567e26febf07d0fabad0277a3fc | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH9/EX9.12/example12.sce | f598ccf8495b1f04a4384c3960a73f0f412f630e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 615 | sce | example12.sce | //Chapter-9 example 12
//=============================================================================
clc;
clear;
//input data
F = 4*10^9;//radar operating frequency in hz
Vo = 3*10^8;//velocity of EM wave in m/s
NNBW = 8;//Null to Null beamwidth in degrees
//Calculations
lamda = Vo/F;//wavelength
Da = (140*lamda)/NNBW;
A = (%pi*Da*Da)/4;//Area of antenna
Ac = 0.65*A;//capture area
//Output
mprintf('\n Mouth diameter of parabolic reflector is %3.3f m \n Capture area is %3.2f m^2',Da,Ac);
//=============end of the program==============================================
|
0e8299c378ed9d8020ee5df8b1eb6ef7e88dfc86 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1226/CH3/EX3.14/EX3_14.sce | b41dffa24761e0e2b886025dbe2e5717395c897b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 975 | sce | EX3_14.sce | clc;funcprot(0);//EXAMPLE 3.14
// Initialisation of Variables
t1=310;................//Min temperature in K
t3=1220;................//Max temperature in K
ga=1.4;................//Ratio of specific heats for air
cph=5.22;............//Specific heat at constant volume for helium in kJ/kg
cvh=3.13;...............//Specific heat at constant pressure for helium in kJ/kg
//Calculations
r=(t3/t1)^(1/((ga-1)*2));..............//Compression ratio
etaotto=1-(1/(r^(ga-1)));................//Air standard efficiency
gah=cph/cvh;................//Ratio of specific heats for Helium
rh=(t3/t1)^(1/((gah-1)*2));..............//Compression ratio when Helium is used
etaottoh=1-(1/(rh^(gah-1)));................//Air standard efficiency when Helium is used
disp(etaotto*100,"Air standard efficiency of the engine in %:")
if ((round (etaotto)- round (etaottoh)) == 0) then disp("There is no change in efficiency when Helium is used as working fluid instead of air")
end
|
91f4091e4bc28ca90356787b9d847e97cd07738d | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/metanet/pipe_network.sci | 7b8ae0aac50eb09706857325ae6cb0d836e39b0f | [
"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 | 671 | sci | pipe_network.sci | function [x,pi]=pipe_network(g)
// Copyright INRIA
[lhs,rhs]=argn(0)
if rhs<>1 then error(39), end
// g
check_graph(g)
if g('directed') <> 1 then
error('The graph must be directed')
end
// check weights
r=g('edge_weight');
if max(r)<=0 then
error('Weights (resistances) must be strictly positive')
end
// check demands
n=g('node_number');
ma=edge_number(g);
demand=g('node_demand');
if demand==[] then
demand=zeros(1,n)
end
if demand*ones(n,1)<>0 then
error('The problem is not feasible')
end
a=graph_2_mat(g);
rp=sparse([[1:ma]' [1:ma]'],1 ./ r);
ap=a(1:$-1,:);
A=ap*rp*ap';
B=demand(1:$-1)';
[h,rk]=lufact(A);
pi=lusolve(h,B); pi(n)=0;
ludel(h);
x=-rp*a'*pi;
|
b3c79e62f0d8e2b4c212958726d5f33aec9ea040 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2084/CH10/EX10.13w/10_13w.sce | 0e6b7bf70b7ee13672cbd9c9490a9504d30c1190 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 524 | sce | 10_13w.sce | //developed in windows XP operating system 32bit
//platform Scilab 5.4.1
clc;clear;
//example 10.13w
//calculation of the kinetic energy and angular momentum of the disc
//given data
M=200*10^-3//mass(in kg) of the disc
r=4*10^-2//radius(in m) of the disc
w=10//angular velocity(in rad/s)
//calculation
I=(M*r*r)/4//moment of inertia
K=(I*w*w/2)//kinetic energy
L=I*w//angular momentum
printf('the kinetic energy of the disc is %3.1e J',K)
printf('\nthe angular momentum of the disc is %3.1e J-s',L)
|
27b5933a90fad6a952ea50307e2046487543b697 | 1485852dd59aafc286600126cf832a32e10f117f | /tests/seamlessClone/test2.sce | d2b5edca9c68de5f8b78ee1744e6c4a0fa7146b1 | [] | no_license | rg77/Scilab-Image-Processing-And-Computer-Vision-Toolbox | dec9fbbce32cfd1eab3c45ccb29c89aaa1384758 | 8adb116da3a9c29a32e5e0727105aff571e5b374 | refs/heads/master | 2020-12-02T16:14:45.282650 | 2017-07-07T10:12:04 | 2017-07-07T10:12:04 | 96,524,257 | 0 | 0 | null | 2017-07-07T09:43:50 | 2017-07-07T09:43:50 | null | UTF-8 | Scilab | false | false | 250 | sce | test2.sce | //using a complete white mask
dst = imread("../images/color3.jpg");
src = imread("../images/cartoon.jpg");
[rows cols] = size(src)
mask = zeros(rows,cols);
mask(50:100,1:cols) = 255;
output = seamlessClone(src,dst,mask,[75 120], 1 );
imshow(output);
|
7e4ad7cb3719915a1797688f5d7b4e6604b53f42 | 9907672fcd81ab73ac63b2a83422a82bf31eadde | /tyama_icpc2007dA.sce | df3e71a29574759c3af556299240c3bcea5b4936 | [
"0BSD"
] | permissive | cielavenir/procon | bbe1974b9bddb51b76d58722a0686a5b477c4456 | 746e1a91f574f20647e8aaaac0d9e6173f741176 | refs/heads/master | 2023-06-21T23:11:24.562546 | 2023-06-11T13:15:15 | 2023-06-11T13:15:15 | 7,557,464 | 137 | 136 | null | 2020-10-20T09:35:52 | 2013-01-11T09:40:26 | C++ | UTF-8 | Scilab | false | false | 211 | sce | tyama_icpc2007dA.sce | // scilab-cli -nb -f
n=scanf("%d")
while n<>0
ma=0;mi=1000;s=0
for i = 1:n
x=scanf("%d")
if x<mi then mi=x; end
if x>ma then ma=x; end
s=s+x
end
printf("%d\n",(s-mi-ma)/(n-2))
n=scanf("%d")
end
exit |
a8d72b880690ea871498f2496c73ac2ae97de70f | 1b969fbb81566edd3ef2887c98b61d98b380afd4 | /Rez/bivariate-lcmsr-post_mi/bfas_nv_hrz_col_d/~BivLCM-SR-bfas_nv_hrz_col_d-PLin-VLin.tst | 08fbdda934bb55627644a95ba26a8561c9de29ef | [] | 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_nv_hrz_col_d-PLin-VLin.tst |
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.481926D+00
2 -0.663983D-02 0.403785D-02
3 -0.108105D+00 0.224625D-02 0.283855D+00
4 0.245075D-02 -0.867673D-03 -0.499356D-02 0.231999D-02
5 -0.187065D-02 0.132975D-03 -0.196531D-02 0.950564D-04 0.249305D-02
6 -0.957341D-03 0.217965D-03 -0.344695D-03 -0.377135D-05 -0.917933D-04
7 -0.106921D-02 0.170874D-03 0.125524D-02 -0.700715D-04 -0.476638D-03
8 -0.840685D-03 -0.453726D-04 0.762564D-03 0.974729D-04 0.111961D-03
9 -0.367813D+00 0.459977D-02 0.495268D+00 0.825494D-02 0.113979D+00
10 0.126343D+00 0.392804D-02 -0.176118D+00 0.138405D-01 0.135289D+00
11 -0.104342D-02 0.334639D-01 -0.453892D-01 -0.469902D-03 -0.625491D-02
12 0.641160D+00 -0.171548D-01 -0.812289D+00 0.305676D-01 0.235499D-01
13 -0.133163D+00 0.202175D-01 0.236952D-01 -0.684350D-02 -0.130351D-01
14 0.239624D+00 -0.733223D-02 -0.495524D+00 0.200810D-01 0.370471D-02
15 0.924066D+00 -0.845039D-02 0.423142D+00 -0.152858D-02 -0.214133D+00
16 0.450519D-01 0.600089D-02 0.129897D-01 -0.144445D-02 -0.301328D-02
17 0.342692D-02 0.114795D-02 -0.461988D-02 -0.204101D-03 0.318370D-03
18 0.265573D+00 -0.178989D-01 0.934299D+00 -0.301537D-01 -0.934130D-02
19 -0.126382D+00 -0.396385D-02 0.684762D-02 0.176378D-02 -0.776834D-02
20 0.879663D+00 -0.287537D-01 -0.260759D+01 0.548295D-01 0.230576D-01
21 0.128532D+00 0.168992D-02 0.394542D-02 0.436426D-02 0.533820D-02
22 -0.186240D-02 -0.285750D-03 -0.592953D-03 0.479421D-03 0.280786D-03
23 0.445893D-02 0.255138D-02 0.485512D-01 -0.123933D-01 -0.202678D-02
24 -0.114007D-02 0.442648D-03 -0.165998D-02 0.135552D-04 0.337776D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.138529D-02
7 0.711110D-03 0.186084D-02
8 -0.356801D-03 -0.621555D-06 0.272807D-02
9 0.316128D-01 -0.617818D-02 0.344026D-02 0.154980D+03
10 -0.302937D-02 -0.188462D-01 0.126140D-01 0.820260D+01 0.307938D+02
11 0.380111D-01 0.335453D-01 -0.162534D-01 -0.676349D+01 0.149050D+00
12 -0.250790D-01 -0.194518D-01 -0.896585D-03 0.224054D+02 0.230399D+01
13 0.740422D-01 0.991132D-01 -0.151354D-01 0.135103D+00 -0.348125D+01
14 -0.273376D-01 -0.541362D-02 0.185558D+00 0.545492D+01 0.270346D+01
15 0.820451D-02 0.960417D-02 -0.463445D-01 -0.237643D+02 -0.289045D+02
16 -0.304428D-03 0.165316D-02 0.148863D-02 0.223128D+01 -0.540465D+00
17 0.386367D-04 0.630401D-04 0.329473D-03 -0.374911D+00 0.593406D-01
18 -0.871702D-01 -0.502112D-01 0.800909D-01 0.455441D+01 0.132137D+01
19 -0.167095D-01 0.145878D-01 0.159755D-01 0.134080D+01 -0.648671D+00
20 0.425101D-01 -0.453419D-01 -0.227861D+00 -0.397465D+01 0.236515D+01
21 0.131206D-01 -0.146663D-01 -0.121578D-01 -0.185462D+01 0.198236D+00
22 0.186914D-03 -0.269934D-03 -0.571702D-03 0.229065D-01 0.435996D-01
23 -0.138340D-03 0.175804D-02 -0.509535D-02 0.726046D+00 -0.291005D+00
24 0.112987D-03 0.176511D-03 0.893917D-03 -0.979381D-01 0.633136D-02
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.615916D+02
12 0.243735D+01 0.124952D+03
13 0.184887D+01 -0.939591D+00 0.169830D+02
14 -0.220946D+01 0.210378D+01 -0.285368D+01 0.466967D+02
15 -0.466099D+01 -0.755520D+01 0.323476D+00 -0.602259D+01 0.600266D+03
16 -0.369479D+00 0.358414D+00 0.115904D+00 -0.774965D-01 0.557062D+01
17 0.719768D-01 -0.503521D-01 -0.128601D-02 0.547011D-01 -0.287639D+01
18 -0.368919D+01 0.370536D+01 -0.739887D+01 0.217105D+01 -0.116896D+03
19 0.124065D+01 -0.136441D+01 0.764333D+00 0.322412D+01 -0.213048D+01
20 0.850594D+00 -0.202550D+02 0.229260D+01 -0.189658D+02 0.592780D+02
21 -0.586494D-01 0.122101D+01 -0.962197D+00 -0.277340D+01 0.242160D+01
22 -0.131200D+00 -0.295621D-01 -0.110878D-02 -0.435944D-01 0.580655D+00
23 -0.537631D-01 0.858191D+00 0.236596D+00 -0.439331D+00 0.146822D+00
24 0.215062D-01 -0.101290D+00 -0.144545D-01 0.865948D-01 -0.312060D+00
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.756374D+00
17 -0.672362D-01 0.280777D-01
18 -0.218445D+00 0.606169D+00 0.256353D+03
19 -0.851869D-01 0.107451D-01 0.239968D+01 0.606091D+01
20 -0.380639D+00 -0.302236D+00 -0.133481D+03 -0.256189D+01 0.296067D+03
21 -0.227562D+00 0.123012D-01 0.972494D+00 -0.523079D+01 0.969829D+00
22 0.118734D-01 -0.682371D-02 -0.120178D+01 -0.527314D-01 0.665499D+00
23 0.127416D+00 -0.729882D-02 -0.411215D+00 0.992233D-02 0.180283D+01
24 -0.491604D-02 0.461690D-02 0.566846D+00 0.285973D-02 -0.117636D+01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.616872D+01
22 -0.164247D-01 0.140000D-01
23 -0.383590D+00 0.112095D-01 0.581404D+00
24 0.227905D-01 -0.644440D-02 -0.503409D-01 0.132747D-01
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.151 1.000
3 -0.292 0.066 1.000
4 0.073 -0.283 -0.195 1.000
5 -0.054 0.042 -0.074 0.040 1.000
6 -0.037 0.092 -0.017 -0.002 -0.049
7 -0.036 0.062 0.055 -0.034 -0.221
8 -0.023 -0.014 0.027 0.039 0.043
9 -0.043 0.006 0.075 0.014 0.183
10 0.033 0.011 -0.060 0.052 0.488
11 0.000 0.067 -0.011 -0.001 -0.016
12 0.083 -0.024 -0.136 0.057 0.042
13 -0.047 0.077 0.011 -0.034 -0.063
14 0.051 -0.017 -0.136 0.061 0.011
15 0.054 -0.005 0.032 -0.001 -0.175
16 0.075 0.109 0.028 -0.034 -0.069
17 0.029 0.108 -0.052 -0.025 0.038
18 0.024 -0.018 0.110 -0.039 -0.012
19 -0.074 -0.025 0.005 0.015 -0.063
20 0.074 -0.026 -0.284 0.066 0.027
21 0.075 0.011 0.003 0.036 0.043
22 -0.023 -0.038 -0.009 0.084 0.048
23 0.008 0.053 0.120 -0.337 -0.053
24 -0.014 0.060 -0.027 0.002 0.006
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.443 1.000
8 -0.184 0.000 1.000
9 0.068 -0.012 0.005 1.000
10 -0.015 -0.079 0.044 0.119 1.000
11 0.130 0.099 -0.040 -0.069 0.003
12 -0.060 -0.040 -0.002 0.161 0.037
13 0.483 0.558 -0.070 0.003 -0.152
14 -0.107 -0.018 0.520 0.064 0.071
15 0.009 0.009 -0.036 -0.078 -0.213
16 -0.009 0.044 0.033 0.206 -0.112
17 0.006 0.009 0.038 -0.180 0.064
18 -0.146 -0.073 0.096 0.023 0.015
19 -0.182 0.137 0.124 0.044 -0.047
20 0.066 -0.061 -0.254 -0.019 0.025
21 0.142 -0.137 -0.094 -0.060 0.014
22 0.042 -0.053 -0.093 0.016 0.066
23 -0.005 0.053 -0.128 0.076 -0.069
24 0.026 0.036 0.149 -0.068 0.010
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.028 1.000
13 0.057 -0.020 1.000
14 -0.041 0.028 -0.101 1.000
15 -0.024 -0.028 0.003 -0.036 1.000
16 -0.054 0.037 0.032 -0.013 0.261
17 0.055 -0.027 -0.002 0.048 -0.701
18 -0.029 0.021 -0.112 0.020 -0.298
19 0.064 -0.050 0.075 0.192 -0.035
20 0.006 -0.105 0.032 -0.161 0.141
21 -0.003 0.044 -0.094 -0.163 0.040
22 -0.141 -0.022 -0.002 -0.054 0.200
23 -0.009 0.101 0.075 -0.084 0.008
24 0.024 -0.079 -0.030 0.110 -0.111
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.461 1.000
18 -0.016 0.226 1.000
19 -0.040 0.026 0.061 1.000
20 -0.025 -0.105 -0.485 -0.060 1.000
21 -0.105 0.030 0.024 -0.855 0.023
22 0.115 -0.344 -0.634 -0.181 0.327
23 0.192 -0.057 -0.034 0.005 0.137
24 -0.049 0.239 0.307 0.010 -0.593
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.056 1.000
23 -0.203 0.124 1.000
24 0.080 -0.473 -0.573 1.000
|
62b30dac29baae1f6b9ccbe76ce57e159ccff9fa | 178822612bcd418dc12ba7a649304a24ab618d60 | /Numerical Analysis/PointfixeSystemeCorr.sci | 8feb20415c2f0549ea1cf200cb9aeff1bc077c14 | [] | no_license | engom/Math_Problem_Solving | b56c6cbfbff6c416c519795b9ab8f0c0bbba5ea3 | 6538c476681ae4ee803ea9b3a8944c5f370e1961 | refs/heads/master | 2022-05-25T01:13:16.123161 | 2016-02-13T11:32:28 | 2016-02-13T11:32:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 115 | sci | PointfixeSystemeCorr.sci | function [x]=PointfixeSysteme(f,x0,niter)
x(:,1)=x0;
for i=1:niter,
x(:,i+1)=f(x(:,i));
end
endfunction |
931afd53c980f05bccda53090982ae6bdd083eec | 449d555969bfd7befe906877abab098c6e63a0e8 | /1640/CH5/EX5.6/5_6.sce | d26996b7f79794b36b5c3dc6d74c5e1f3796f5ca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 308 | sce | 5_6.sce | clc
//initialisation of variables
Q= 0.7 //cfs
d= 6 //in
v1= 1.084*10^-5 //ft^2/sec
v2= 0.394*10^-5 //ft^2/sec
R= 2320
//CALCULATIONS
v3= R*v1/(d/12)
v4=R*v2/(d/12)
v= Q*4/(%pi*(d/12)^2)
//RESULTS
printf ('crititcal velocity = %.4f ft/sec ',v4)
printf ('\n actual velocity = %.2f ft/sec ',v)
|
6a7a08bff922e53486aefd991f2fb93091cd00fa | b3c9357cd1290921e67444ae057761959fdf24f1 | /Curso de programação com Scilab/codserieS.sce | 453a24e014a68d52621a063a63237f4e5e23812b | [] | no_license | joaolrneto/Scilab | 91742520422426dc8a772997ef4a5d6376008b6e | f383f87e4585955cf19d0dae1b5c29f93c3f70b4 | refs/heads/master | 2023-02-05T20:13:03.677069 | 2020-12-30T14:53:09 | 2020-12-30T14:53:09 | 264,671,730 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 251 | sce | codserieS.sce | clc
clear
function S=serieS(n)
S=0
num=1
sinal=1
while(num<=n)
S=S+(num/num^2)*sinal
num=num+1
sinal=sinal*-1
end
endfunction
n=input("Informe o número de termos :")
printf("S = %f\n",serieS(n))
|
c14b598d89cddbb529fb81874fbc7025e1835598 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1997/CH11/EX11.8/example8.sce | 8a5a725418cfc7b8a545d3cfe14144a940e2ed99 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 552 | sce | example8.sce | //Chapter-11 example 8
//=============================================================================
clc;
clear;
//input data
Tvel = 1000;//target speed in kmph
F = 10*10^9;//radar operating frequency in hz
Vo = 3*10^8;//velocity of EM wave in m/s
//Calculations
Vr = 1000*(5/18);//target speed in m/s
Fd = (2*Vr*F)/Vo;//Doppler Frequency shift in Hz
//Output
mprintf('Doppler Frequency shift Caused by aircraft is %3.2f KHz',Fd/1000);
//=============end of the program==============================================
|
a81a31129a23de838373cc21c130c81ce40172b2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2870/CH8/EX8.16/Ex8_16.sce | 829869c7fad20578512ef8db26ca5a977b52a27c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 451 | sce | Ex8_16.sce | clc;clear;
//Example 18.16
//given data
T0=70+460;
T1=50;
T2=240;
T3=130;
//as dicussed in example 7-20
m1=300;
m2=22.7;
m3=322.7;
//from steam tables
h1=18.07;
s1=0.03609;
h2=1162.3;
s2=1.7406;
h3=97.99;
s3=0.18174;
//calculations
Wrev=m1*(h1-T0*s1)+m2*(h2-T0*s2)-m3*(h3-T0*s3);
Wrev=round(Wrev);
disp(Wrev,'the reversible power in Btu/min')
Xdestroyed=Wrev;
disp(Xdestroyed,'the rate of exergy destruction in Btu/min')
|
7108dfb652d5c85677daf372ceeb71359a0dd9ee | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Windisp.sci | baa03e7326dee91a2178220c8cfb1ed1232d421a | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,517 | sci | Windisp.sci | // 08.05.16 Point style
// 08.05.17 MixL
// 08.05.19 Changed
// 08.05.21 Eps=0.1
// 08.08.16 square
// 09.11.04 window option
// 09.11.07 gcf used
// 09.12.25
// 10.01.01
// 10.01.09 ' '
// 10.01.10 drw one by one
// 10.02.08 revised for the case "a"
// 10.02.13 square debugged
// 10.02.21 square debugged (2)
// 10.02.23 case of mixlength=3
// 10.04.10 Origin bug
// 11.05.29 Flattenlist used
function Windisp(varargin)
global XMIN XMAX YMIN YMAX GENTEN
Nargs=length(varargin);
Tp=varargin(Nargs);
Ch='';
if type(Tp)~=10
scf();
else
Ch=part(Tp,1);
Nargs=Nargs-1;
select Ch;
case 'N' then scf();
case 'n' then scf();
case 'C' then Tmp=gcf();clf('clear');
case 'c' then Tmp=gcf();clf('clear');
case 'A' then Tmp=gcf();
case 'a' then Tmp=gcf();
else
Tmp1=part(Tp,length(Tp));
Tmp2=part(Tp,1:length(Tp)-1);
Tmp3=evstr(Tmp2);
scf(Tmp3);
if Tmp1=='C'|Tmp1=='c'
clf('clear');
end;
end;
end;
Eps=0.1;
Tmp=Doscaling([XMIN,YMIN]);
Xm=Tmp(1); Ym=Tmp(2);
Tmp=Doscaling([XMAX,YMAX]);
XM=Tmp(1); YM=Tmp(2);
C=[(Xm+XM)/2,(Ym+YM)/2];
H=max(XM-Xm,YM-Ym)/2;
R1=C-H; R2=C+H;
R1=Unscaling(R1);
R2=Unscaling(R2);
if (Ch~='A')&(Ch~='a')
Tmp1=R1(1);
Tmp2=R2(1);
Tmp3=R1(2);
Tmp4=R2(2);
square(Tmp1,Tmp3,Tmp2,Tmp4);//
P=Framedata([XMIN,XMAX],[YMIN,YMAX]);
Tmp1=P(:,1)';
Tmp2=P(:,2)';
plot2d(Tmp1,Tmp2);
PtO=GENTEN; // 10.04.10
if (PtO(2)>=YMIN) & (PtO(2)<=YMAX) //
P=Listplot([XMIN,PtO(2)],[XMAX,PtO(2)]);
Tmp1=P(:,1)';
Tmp2=P(:,2)';
plot2d(Tmp1,Tmp2,style=[3]);
end;
if (PtO(1)>=XMIN) & (PtO(1)<=XMAX)
P=Listplot([PtO(1),YMIN],[PtO(1),YMAX]);
Tmp1=P(:,1)';
Tmp2=P(:,2)';
plot2d(Tmp1,Tmp2,style=[3]);
end;
end;
for I=1:Nargs
Tmp=varargin(I);
Pdata=Flattenlist(Tmp); //
for II=1:length(Pdata)
Tmp=Op(II,Pdata);
P=MakeCurves(Tmp,0);
P=Unscaling(P);
Ndm=Dataindex(P);
for J=1:size(Ndm,1)
Q=P(Ndm(J,1):Ndm(J,2),:)
if size(Q,1)==1
for K=1:2:length(Q)
plot2d(Q(K),Q(K+1),style=[-3]);
end
else
Tmp1=Q(:,1)';
Tmp2=Q(:,2)';
plot2d(Tmp1,Tmp2);
end
end
end
// for II=2:length(Pdata)
// Tmp=Op(II,Pdata);
// Windisp(Tmp,'a');
// end;
end
for I=2:Nargs
Pdata=varargin(I);
Windisp(Pdata,'a');
end;
endfunction;
|
4d6388b8706b1d49e4f240446f1c18a0e18202ba | 9d0ab5efb08cc05ae362e8a981bdf5fa2debd7f6 | /03/a/RSR8Bit.tst | 9192bba7b53db67058d6c37706932fc689084333 | [] | no_license | nandha1nks/Nand2Tetris | bca96e324a1ff7ed425e33a37e3b7579d38fd29f | 82769b7a4e69b11c0bacd100991dfdf2b36a5f1d | refs/heads/master | 2023-01-02T11:57:25.843133 | 2020-10-29T10:10:27 | 2020-10-29T10:10:27 | 295,441,600 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 749 | tst | RSR8Bit.tst | load RSR8Bit.hdl,
output-file RSR8Bit.out,
compare-to RSR8Bit.cmp,
output-list time%S1.4.1 in%D1.6.1 load%B2.1.2 shift%B2.1.2 out%D1.6.1;
set in 0,
set load 0,
set shift 0,
tick,
output;
tock,
output;
set shift 1,
tick,
output;
tock,
output;
set in 255,
tick,
output;
tock,
output;
set load 1,
tick,
output;
tock,
output;
set load 0,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set in 50,
set load 1,
set shift 0,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set shift 1,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set load 0,
tick,
output;
tock,
output;
tick,
output;
tock,
output;
set in 0,
set load 1,
tick,
output;
tock,
output;
set load 0,
set shift 1,
tick,
output;
tock,
output; |
ff7b6a36f3196fe52440e86c1159eeb8ed68af1c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH5/EX5.15/Ex5_15.sce | ebda9ae5e87351d778d6e2fab2b1e8b80d7886fe | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 458 | sce | Ex5_15.sce |
// Ex5_15
clc;
// Given:
r0=1.4*10^-15;// in m
A1=88;
A2=87;
A3=136;
A4=135;
// Solution:
rSr1=(3.14*(r0*(A1)^(0.33333))^2)/10^-28;// in barns
rSr2=(3.14*(r0*(A2)^(0.33333))^2)/10^-28;// in barns
rXe1=(3.14*(r0*(A3)^(0.33333))^2)/10^-28;// in barns
rXe2=(3.14*(r0*(A4)^(0.33333))^2)/10^-28;// in barns
printf("The geometric cross-section area are %f, %f, %f & %f for Sr(88), Sr(87), Xe(136) & Xe(135) respectively",rSr1,rSr2,rXe1,rXe2)
|
a4d156c548a1b536b416c569879d218273b601b1 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/rasp_design_added_blocks/gnd_out.sce | 13e71d7d612ed2026ca813c18a218c2f22d9bf19 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 145 | sce | gnd_out.sce | style.fontSize=12;
style.displayedLabel="GND";
pal9 = xcosPalAddBlock(pal9,"gnd_out",[],style);
pal8 = xcosPalAddBlock(pal8,"gnd_out",[],style);
|
bc8fce6b398748016b1c127a7b32be7c47353d99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1151/CH2/EX2.6/example6.sce | 61349a9c4951d1697ef5e6b93cbde2ee291c1513 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 516 | sce | example6.sce | printf("open loop transfer function G(s)=10/((s+2)*(s+5))");
printf("for unity feedback system H(s)=1")
printf("characterstic equation of closed loop system is 1+G(s)H(s)=0");
printf("characterstic equation of the given system is s^2+7*s+");
printf("compare it with the standard second order characterstic equation s^2+2*d*w*s+w^2=0");
w=sqrt(20);
d=7/(2*w);
mo=exp((-%pi*d)/sqrt(1-d^2))*100;
disp(d,"damping ratio=");
disp(w,"undamped natural frequency(in rad/sec)=")
disp(mo,"maximum overshoot(in %)")
|
d82214530714c05eaba0331ec2e649e185c0a01f | 8781912fe931b72e88f06cb03f2a6e1e617f37fe | /scilab/wave_intro/run_wave2d_dx_client.sce | 9274fbbfff257b11ecd146253e95b4ca774fcca9 | [] | no_license | mikeg2105/matlab-old | fe216267968984e9fb0a0bdc4b9ab5a7dd6e306e | eac168097f9060b4787ee17e3a97f2099f8182c1 | refs/heads/master | 2021-05-01T07:58:19.274277 | 2018-02-11T22:09:18 | 2018-02-11T22:09:18 | 121,167,118 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,192 | sce | run_wave2d_dx_client.sce | //Executed from scilab using format and system boxes
//with the command:
// /usr/bin/scilex -nw -nb -f run_wave2d_dx.sce
//wavetype=1; //stationary
//nsteps=5;
//maxamplitude=10;
//wavenumber(1)=1*2*%pi;
//wavenumber(2)=2*2*%pi;
//wavefreq=5;
//delta(1)=0.01;
//delta(2)=0.01;
//nmax(1)=100;
//nmax(2)=100;
//tstep=1;
exec("wave2d.sce");
infile='wave2ddx_1.in';
outfile='wave2ddx_1.out';
//Read input
fd=mopen(infile,'r');
wavetype=mfscanf(fd,'%d');
nsteps=mfscanf(fd,'%d');
maxamplitude=mfscanf(fd,'%f');
wavenumber(1)=mfscanf(fd,'%f');
wavenumber(2)=mfscanf(fd,'%f');
wavefreq=mfscanf(fd,'%f');
delta(1)=mfscanf(fd,'%f');
delta(2)=mfscanf(fd,'%f');
nmax(1)=mfscanf(fd,'%f');
nmax(2)=mfscanf(fd,'%f');
deltat=mfscanf(fd,'%f');
tstep=mfscanf(fd,'%d');
mclose(fd);
//Wave packet
npackets=5;
pwavfreq=2;
pwavnum=7;
//clf;
x=1:1:nmax(1);
y=1:1:nmax(2);
fd=mopen(outfile,'w');
for i=tstep:tstep+nsteps
z=wave2d(i*deltat, wavetype, maxamplitude, wavenumber, wavefreq, delta,nmax);
//Write data to output
mfprintf(fd, '%d\n',i);
for j1=1:nmax(1)
for j2=1:nmax(2)
mfprintf(fd, '%f',z(j1,j2));
end
mfprintf(fd, '\n');
end
end //end of cycling over steps
mclose(fd);
exit;
|
6ed55953930193d8b87cb0046edf62bfada5e67f | bacd6919260d728f4316702bbe1edf811810bede | /legacy/39.middle/console/view_echo.sce | c58e8dbf4e3443ea21c0c9a26cb1ef2db3b14b59 | [] | no_license | vopl/sp | 332d8c2ff536fc5d8772ff2f3fbeca9b50c47641 | a4313f4d7af47cc3132d7546947d4d668c7e487e | refs/heads/master | 2020-04-16T02:09:36.036424 | 2016-10-05T18:08:30 | 2016-10-05T18:08:30 | 65,293,458 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 741 | sce | view_echo.sce | stacksize('max');
w = 4;
h = -1;
tm = read("mt", h, 1);
am = read("ma", h, w);
pm = read("mp", h, w);
vm = am .* (cos(pm) + %i*sin(pm));
h = size(vm,1);
tm1 = read("mt_1", h, 1);
am1 = read("ma_1", h, w);
pm1 = read("mp_1", h, w);
vm1 = am1 .* (cos(pm1) + %i*sin(pm1));
clf;
ph=1:4;
plot(tm,real(vm(:,ph)-vm1(:,ph)),'b');
plot(tm,imag(vm(:,ph)-vm1(:,ph)),'k');
//plot(tm,abs(vm(:,ph)-vm1(:,ph)),'r');
abort;
//plot(tm1,real(vm1(:,ph)),'g');
//plot(tm1,imag(vm1(:,ph)),'b');
//plot(tm1,abs(vm1(:,ph)),'m');
//abort
//vm = vm;
mult = 1;
plot(tm,real(vm(:,ph)*mult),'b');
plot(tm,imag(vm(:,ph)*mult),'k');
plot((tm),abs(vm(:,ph)*mult),'r');
//plot(tm,atan(imag(vm(:,ph)), real(vm(:,ph))),'r');
|
aeda43ff2af35e6f82eb6cafb0c17d5f670460e3 | abed134eb329d44a339af93997f34c76b7649173 | /P2Codes/Negation.tst | f976cc04e025231c8476a91b17c818cb57a7217a | [] | no_license | Patrickyyh/CSCE-312 | 8823df9f53d378b96c8018064da3823faef95ce3 | b9ba0fd8592ce5d91d1689219ff48d638a66aee0 | refs/heads/master | 2023-05-03T18:46:15.689810 | 2021-05-22T06:02:17 | 2021-05-22T06:02:17 | 369,727,875 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 640 | tst | Negation.tst | //Negation.tst
load Negation.hdl,
output-file Negation.out,
compare-to Negation.cmp,
output-list in%B1.16.1 out%B1.16.1;
// Student: Yuhao Ye
// UIN: 529006730
// Email: yeyuhao1234@tamu.edu
// Section : 599
//in=1
set in %B0000000000000001,
eval,
output;
//in=255
set in %B0000000011111111,
eval,
output;
//in=256
set in %B0000000100000000,
eval,
output;
//in=-1
set in %B1111111111111111,
eval,
output;
//in = 2
set in %B0000000000000010,
eval,
output;
//in = 4
set in %B0000000000000100,
eval,
output;
// in = 15
set in %B0000000000001111,
eval,
output;
//Write more tst commands and also complete the .cmp file accordingly |
fc5c996ad658cd8790c967236fd639038904ac40 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1859/CH2/EX2.5/exa_2_5.sce | 5bc35045a219d1ebb9ae3726553c5755dc746318 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 292 | sce | exa_2_5.sce | // Exa 2.5
clc;
clear;
close;
// Given data
PerError= 5;// in %
epsilon_r= PerError/100;
Am=20;// in H
del_A= Am*epsilon_r;
// A= Am+del_A and A= Am-del_A
disp("Limiting value of inductance is : "+string(Am)+" + "+string(del_A)+" to "+string(Am)+" - "+string(del_A)+" in Henry")
|
c1c6f928d77e2c9c95d182038580692474707263 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH6/EX6.33.1/Ex6_33.sce | 1d23d007d682e59d322df663dfb4e396b75a3acb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 446 | sce | Ex6_33.sce | clc
clear
P1=1; //in bar
T1=15+273; //in K
P2=15; //in bar
P3=40; //in bar
G=1.4;
r=(P2/P1)^(1/G);
Eff=100*[1-(1/(r^(G-1)))];
printf('Efficiency is %2.1f Percent',Eff);
printf('\n');
T2=T1*[(P2/P1)^((G-1)/G)];
T3=T2*(P3/P2);
Cv=0.718;
Qs=Cv*(T3-T2);
W=Eff*Qs;
R=0.287;
V1=(R*T1)/(P1*100);
V2=V1/r;
Vs=V1-V2;
Pm=W/(Vs*100);
printf('Mean Effective Pressure is %2.1f kPa',Pm);
printf('\n');
|
f22bb4f482cad9c66f7743f3efbddda908994cb4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2705/CH1/EX1.6/Ex1_6.sce | fe3ceb55215ff0ed191d67531de3ebf718e25302 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 726 | sce | Ex1_6.sce | clear;
clc;
disp('Example 1.6');
// Given values
m_cop = 2; // mass of copper vessel, [kg]
m_wat = 6; // mass of water, [kg]
c_wat = 4.19; // specific heat capacity of water, [kJ/kg K]
t1 = 20; // initial temperature, [C]
t2 = 90; // final temperature, [C]
// From the table of average specific heat capacities
c_cop = .390; // specific heat capacity of copper,[kJ/kg k]
// solution
Q_cop = m_cop*c_cop*(t2-t1); // heat required by copper vessel, [kJ]
Q_wat = m_wat*c_wat*(t2-t1); // heat required by water, [kJ]
// since there is no heat loss,so total heat transfer is sum of both
Q_total = Q_cop+Q_wat ; // [kJ]
mprintf(' \n Required heat transfer to accomplish the change = %f kJ\n',Q_total);
//End
|
26ed9d75089e6a00472b63001d30eb9ff6227f1f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2471/CH2/EX2.5/Ex2_5.sce | 8427acf5fcbf11d3f53747256f97bfbf8f6600cc | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 528 | sce | Ex2_5.sce | clear ;
clc;
// Example 2.5
printf('Example 2.5\n\n');
printf('Page No. 49\n\n');
// given
F= 10*10^3;// fuel oils in gallons
Cs= 2200;// cost of maintaining tanks per year in Pound
Ci= 1850;// cost of insulation of pipe in Pound
As= (Cs*.85);//company saving is 85 per cent to the cost
printf('Annual Saving on heating is %3.0f Pound\n',As)
if(As> Ci) then
disp("The investment has a pay-back period of less than 1 year");
else
disp("The investment has not a pay-back period of less than 1 year");
end
|
109045e4ef40e32e9ccab301528177d30e50c01f | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH1/EX1.19/1_19.sce | 2b6cbc8ab5a183f571c904762f32b124d6c15290 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 141 | sce | 1_19.sce | //Eg No. 1.19
//Pg No. 39
clc ;
clear ;
close ;
printf('did not have a scilab analogy for the c++ code, for details go the page no. 39') |
5f1f480c75064468f8e79b1498a4cf305bb7ae9a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1709/CH11/EX11.1/11_1.sce | 6a708fe94294d45b8655cd722625ff047e6b97a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 617 | sce | 11_1.sce | clc
//Initialization of variables
x=1.5
P=14.696 //psia
m=28.96
//calculations
mf=114 // lbm/mol fuel
ma=x*12.5*(1+3.76)*m
AF=ma/mf
n1=8
n2=9
n3=(x-1)*12.5
n4= x*3.76*12.5
np=n1+n2+n3+n4
x1=n1/np
x2=n2/np
x3=n3/np
x4=n4/np
ph=x2*P
Td=113.5 //F
//results
printf("Air fuel ratio = %.1f lbm air/lbm fuel",AF)
printf("\n Mole fraction of CO2 = %.2f percent",x1)
printf("\n Mole fraction of H2O = %.2f percent",x2)
printf("\n Mole fraction of O2 = %.2f percent",x3)
printf("\n Mole fraction of N2 = %.2f percent",x4)
disp("From tables of saturation pressure")
printf("Dew point = %.1f F",Td)
|
5dd93a5084c68d70f90aa353cd7e464707fe9deb | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /MadWing.sce | 29e1a258ad645fc8057188e4b7923a8b218a97d3 | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 186,128 | sce | MadWing.sce | Name=MadWing
PlayerCharacters=PUBG Chartst
BotCharacters=Quaker Bot Hard.bot;Sergeant Bot.bot;QC Mix.rot;Dodgey.bot;Shinji Bot.bot;Quaker Bot Easy.bot;Quaker Bot Medium.bot;Counter-Striker Bot Harmless.bot;Counter-Striker Bot PEEKER.bot;Counter-Striker Bot.bot;BF Bot.bot;Botz Bot.bot;mgliDodge.bot;Circle Quaker.bot;McCoy Bot.bot;Racer Bot.bot;QW Bot.bot;Tiny QC Long Strafes.bot;Tiny QC Fast Strafes.bot;Pigeon.bot
IsChallenge=true
Timelimit=90.0
PlayerProfile=PUBG Chartst
AddedBots=Quaker Bot Hard.bot
PlayerMaxLives=0
BotMaxLives=0
PlayerTeam=2
BotTeams=1
MapName=aimbotz.map
MapScale=3.8125
BlockProjectilePredictors=false
BlockCheats=false
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1000.0
ScorePerDamage=0.0
ScorePerKill=1.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=true
ScoreMultKillEfficiency=false
GameTag=Apex Legends, Apex
WeaponHeroTag=Wingman, R-99, R99, LG
DifficultyTag=3
AuthorsTag=LongLife
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=Train tracking and flicking fast strafing targets with Wingman and R99
GameVersion=2.0.1.2
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=High Skill
MinReactionTime=0.25
MaxReactionTime=0.35
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=10.0
TrackSpeed=5.0
TrackError=2.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=35.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Low Skill At Feet
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Low Skill
MinReactionTime=0.35
MaxReactionTime=0.45
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=20.0
TrackSpeed=3.0
TrackError=5.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=60.0
ShootFOV=25.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Medium Skill At Feet
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Medium Skill
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=cs
MinReactionTime=0.18
MaxReactionTime=0.3
MinSelfMovementCorrectionTime=0.007
MaxSelfMovementCorrectionTime=0.035
FlickFOV=10.0
FlickSpeed=1.0
FlickError=3.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=90.0
MinRecenterTime=0.25
MaxRecenterTime=0.4
OptimalAimFOV=35.0
OuterAimPenalty=1.1
MaxError=35.0
ShootFOV=1.0
VerticalAimOffset=-5.0
MaxTolerableSpread=2.0
MinTolerableSpread=0.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=High Skill At Feet
MinReactionTime=0.25
MaxReactionTime=0.35
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=10.0
TrackSpeed=5.0
TrackError=2.0
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=35.0
ShootFOV=15.0
VerticalAimOffset=-200.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Ignore Spread
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=90.0
MinTolerableSpread=90.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=1.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=Quaker Bot Hard
DodgeProfileNames=Circle Strafe;Long Strafes;Mimic;Short Strafes
DodgeProfileWeights=2.0;2.0;1.0;2.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.25;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=High Skill
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Quake RL No KB
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Sergeant Bot
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;ADAD
DodgeProfileWeights=2.0;2.0;3.5
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Sergeant 88
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Tank QC Fast Strafes
DodgeProfileNames=Short Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Tank Quake Champion
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Tank QC Long Strafes
DodgeProfileNames=Long Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Tank Quake Champion
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Tiny QC Fast Strafes
DodgeProfileNames=Short Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Tiny Quake Champion
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Tiny QC Long Strafes
DodgeProfileNames=Long Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Tiny Quake Champion
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Dodgey
DodgeProfileNames=ADAD;MidStrafes;Stop;MidStrafes2
DodgeProfileWeights=1.5;3.0;0.1;1.2
DodgeProfileMaxChangeTime=1.25
DodgeProfileMinChangeTime=0.35
WeaponProfileWeights=0.0;0.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Dodgey
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Shinji Bot
DodgeProfileNames=Long Strafes Close;Short Strafes Close
DodgeProfileWeights=1.0;2.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Shinji
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Quaker Bot Easy
DodgeProfileNames=Circle Strafe;Long Strafes
DodgeProfileWeights=1.0;3.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Quake RL No KB
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Quaker Bot Medium
DodgeProfileNames=Long Strafes;Mimic;Short Strafes
DodgeProfileWeights=3.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.5;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Medium Skill At Feet;Medium Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Quake RL No KB
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Counter-Striker Bot Harmless
DodgeProfileNames=CsClose1;CsFar1;CsMimic1;CsOppose1;CsCareful1;CsCareless1;CsMid1;CsRandom1;CsFar2
DodgeProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
DodgeProfileMaxChangeTime=10.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=Counter-Striker
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Counter-Striker Bot PEEKER
DodgeProfileNames=cs peek
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=10.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default
WeaponSwitchTime=5.0
UseWeapons=true
CharacterProfile=Counter-Striker
SeeThroughWalls=true
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Counter-Striker Bot
DodgeProfileNames=CsClose1;CsFar1;CsMimic1;CsOppose1;CsCareful1;CsCareless1;CsMid1;CsRandom1;CsFar2
DodgeProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
DodgeProfileMaxChangeTime=10.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.5;1.5;1.5;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=cs;cs;cs;cs;cs;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Counter-Striker
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=BF Bot
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;Mimic;Circle Strafe
DodgeProfileWeights=3.0;2.0;1.0;2.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=BFer
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Botz Bot
DodgeProfileNames=Short Strafes;Long Strafes
DodgeProfileWeights=1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Botz Bot
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=mgliDodge
DodgeProfileNames=Short Strafes;Long Strafes;Short Strafes Jumping;Short Strafes Close;Mimic;Long Strafes 2;Long Strafes Close
DodgeProfileWeights=1.0;1.0;1.0;0.2;1.0;1.0;0.2
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=High Skill At Feet;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Quakerz
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Circle Quaker
DodgeProfileNames=Circle Strafe
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=0.0;0.0;0.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Quaker
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=McCoy Bot
DodgeProfileNames=Long Strafes Jumping;Short Strafes Jumping;Mimic;Circle Strafe
DodgeProfileWeights=1.0;2.0;1.0;1.0
DodgeProfileMaxChangeTime=3.0
DodgeProfileMinChangeTime=0.1
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=McCoy
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Racer Bot
DodgeProfileNames=Long Strafes Close;Short Strafes Close
DodgeProfileWeights=1.0;2.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Ignore Spread;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Racer
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=QW Bot
DodgeProfileNames=Long Strafes;Mimic;Short Strafes
DodgeProfileWeights=3.0;1.0;1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;0.5;2.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=At Feet;Medium Skill At Feet;Medium Skill;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=QWer
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Profile]
Name=Pigeon
DodgeProfileNames=Long Strafes
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Default;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=true
CharacterProfile=Clay Pigeon
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.3
UseAbilityFreqMaxTime=0.6
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Bot Rotation Profile]
Name=QC Mix
ProfileNames=Tank QC Fast Strafes;Tank QC Long Strafes;Tiny QC Fast Strafes;Tiny QC Long Strafes
ProfileWeights=0.35;0.15;0.35;0.15
Randomized=true
[Character Profile]
Name=PUBG Chartst
MaxHealth=200.0
WeaponProfileNames=Real Wingman;Real Wingman wreload;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=2.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=24000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.125
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.729 Y=0.537 Z=0.839
TeamBodyColor=X=0.000 Y=0.000 Z=0.774
TeamHeadColor=X=0.729 Y=0.537 Z=0.839
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=210.0
MainBBRadius=40.0
MainBBHasHead=true
MainBBHeadRadius=30.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=230.0
ProjBBRadius=60.0
ProjBBHasHead=true
ProjBBHeadRadius=30.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Quake RL No KB
MaxHealth=200.0
WeaponProfileNames=Real Wingman;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=3.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=50.0
MainBBHasHead=true
MainBBHeadRadius=40.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Sergeant 88
MaxHealth=300.0
WeaponProfileNames=;;;;;;
MinRespawnDelay=0.2
MaxRespawnDelay=0.2
StepUpHeight=75.0
CrouchHeightModifier=0.7
CrouchAnimationSpeed=3.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=2.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=24000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.15
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.149 Y=0.542 Z=1.000
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.149 Y=0.542 Z=1.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=270.0
MainBBRadius=40.0
MainBBHasHead=true
MainBBHeadRadius=35.0
MainBBHeadOffset=-25.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=0.0
ProjBBRadius=0.0
ProjBBHasHead=true
ProjBBHeadRadius=0.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;;;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Tank Quake Champion
MaxHealth=450.0
WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=300.0
MainBBRadius=64.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=70.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Tiny Quake Champion
MaxHealth=250.0
WeaponProfileNames=Railgun;Rocket Launcher;LG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=300.0
MainBBRadius=44.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=300.0
ProjBBRadius=48.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Dodgey
MaxHealth=300.0
WeaponProfileNames=LG;;;;;;;
MinRespawnDelay=0.5
MaxRespawnDelay=0.5
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=58.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Shinji
MaxHealth=200.0
WeaponProfileNames=Shinji Stars;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=2.0
MovementType=Base
MaxSpeed=1100.0
MaxCrouchSpeed=500.0
Acceleration=24000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=1200.0
Gravity=3.0
AirControl=0.15
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.163 Y=0.167 Z=0.166
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.163 Y=0.167 Z=0.166
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=1
AirJumpVelocity=1600.0
MainBBType=Cylindrical
MainBBHeight=260.0
MainBBRadius=45.0
MainBBHasHead=true
MainBBHeadRadius=30.0
MainBBHeadOffset=-30.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=270.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=40.0
ProjBBHeadOffset=-40.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Dash.abilmov;Triple Star.abilwep;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Counter-Striker
MaxHealth=100.0
WeaponProfileNames=AK-47;M4A1-S;m4a4;USP-S;;;;
MinRespawnDelay=0.0001
MaxRespawnDelay=0.0001
StepUpHeight=75.0
CrouchHeightModifier=0.75
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=1.0
MovementType=Base
MaxSpeed=1100.0
MaxCrouchSpeed=250.0
Acceleration=6000.0
AirAcceleration=16000.0
Friction=7.5
BrakingFrictionFactor=1.25
JumpVelocity=800.0
Gravity=2.5
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=true
EnemyBodyColor=X=0.546 Y=0.776 Z=0.546
EnemyHeadColor=X=0.608 Y=0.463 Z=0.314
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.149 Y=0.542 Z=1.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=250.0
MainBBRadius=35.0
MainBBHasHead=true
MainBBHeadRadius=25.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=250.0
ProjBBRadius=35.0
ProjBBHasHead=true
ProjBBHeadRadius=25.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=256.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=BFer
MaxHealth=100.0
WeaponProfileNames=AN-94 Abakan;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.7
CrouchAnimationSpeed=1.5
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=2.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=300.0
Acceleration=6960.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=0.75
JumpVelocity=800.0
Gravity=2.5
AirControl=1.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=true
EnemyBodyColor=X=0.468 Y=0.195 Z=0.095
EnemyHeadColor=X=0.546 Y=0.546 Z=0.546
TeamBodyColor=X=0.000 Y=0.000 Z=0.771
TeamHeadColor=X=0.149 Y=0.542 Z=1.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=true
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=280.0
MainBBRadius=50.0
MainBBHasHead=true
MainBBHeadRadius=35.0
MainBBHeadOffset=-35.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=290.0
ProjBBRadius=60.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=-45.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Botz Bot
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=600.0
MaxCrouchSpeed=500.0
Acceleration=7000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=280.0
MainBBRadius=35.0
MainBBHasHead=true
MainBBHeadRadius=35.0
MainBBHeadOffset=-20.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Quakerz
MaxHealth=50.0
WeaponProfileNames=Boop Rocketslow;;;;;;;
MinRespawnDelay=0.5
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=-5.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1400.0
MaxCrouchSpeed=500.0
Acceleration=10000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.5
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=40.0
MainBBHasHead=true
MainBBHeadRadius=30.0
MainBBHeadOffset=-20.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=40.0
ProjBBHasHead=true
ProjBBHeadRadius=30.0
ProjBBHeadOffset=-20.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Quaker
MaxHealth=200.0
WeaponProfileNames=Real Wingman;;Real Wingman;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=2.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=4.0
MovementType=Base
MaxSpeed=1300.0
MaxCrouchSpeed=500.0
Acceleration=9000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cylindrical
MainBBHeight=320.0
MainBBRadius=50.0
MainBBHasHead=true
MainBBHeadRadius=40.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=McCoy
MaxHealth=200.0
WeaponProfileNames=Six Shooter;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=2.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=24000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.15
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.778 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=0.265 Z=0.000
TeamBodyColor=X=0.000 Y=0.000 Z=0.787
TeamHeadColor=X=1.000 Y=0.265 Z=0.000
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=280.0
MainBBRadius=45.0
MainBBHasHead=true
MainBBHeadRadius=30.0
MainBBHeadOffset=-30.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=290.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=40.0
ProjBBHeadOffset=-40.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Rush.abilmov;Stun Gren.abilwep;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Racer
MaxHealth=150.0
WeaponProfileNames=Machine Pistols;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=5.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=2.0
MovementType=Base
MaxSpeed=1100.0
MaxCrouchSpeed=500.0
Acceleration=24000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.15
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=true
EnemyBodyColor=X=0.774 Y=0.000 Z=0.000
EnemyHeadColor=X=0.691 Y=0.514 Z=0.294
TeamBodyColor=X=0.000 Y=0.000 Z=0.774
TeamHeadColor=X=0.691 Y=0.514 Z=0.294
BlockSelfDamage=true
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=true
AirJumpCount=0
AirJumpVelocity=1600.0
MainBBType=Cylindrical
MainBBHeight=260.0
MainBBRadius=40.0
MainBBHasHead=true
MainBBHeadRadius=25.0
MainBBHeadOffset=-25.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=270.0
ProjBBRadius=50.0
ProjBBHasHead=true
ProjBBHeadRadius=35.0
ProjBBHeadOffset=-35.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.5
JetpackFullFuelTime=1000.0
JetpackFuelIncPerSec=100.0
JetpackFuelRegensInAir=true
JetpackThrust=6000.0
JetpackMaxZVelocity=600.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=Unwind.abilrecall;Phase.abilmov;Melee.abilmelee;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=0.9
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=QWer
MaxHealth=300.0
WeaponProfileNames=;QWRL;QWLG;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=80.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1220.0
MaxCrouchSpeed=500.0
Acceleration=14000.0
AirAcceleration=16000.0
Friction=4.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=false
CanPogoJump=false
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=0.771 Y=0.000 Z=0.000
EnemyHeadColor=X=1.000 Y=1.000 Z=1.000
TeamBodyColor=X=1.000 Y=0.888 Z=0.000
TeamHeadColor=X=1.000 Y=1.000 Z=1.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=0.0
MainBBType=Cuboid
MainBBHeight=300.0
MainBBRadius=55.0
MainBBHasHead=false
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cuboid
ProjBBHeight=230.0
ProjBBRadius=60.0
ProjBBHasHead=false
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=Clay Pigeon
MaxHealth=100.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.5
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=8.0
MovementType=Base
MaxSpeed=1000.0
MaxCrouchSpeed=500.0
Acceleration=4000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=800.0
Gravity=3.0
AirControl=0.25
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=230.0
MainBBRadius=55.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=230.0
ProjBBRadius=55.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=false
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.0
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=Circle Strafe
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Oppose
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Long Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Mimic
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.0
JumpFrequency=0.5
CrouchInAirFrequency=0.2
CrouchOnGroundFrequency=0.65
TargetStrafeOverride=Mimic
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.2
MaxCrouchTime=0.3
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Short Strafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Long Strafes Jumping
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.65
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Short Strafes Jumping
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.65
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.5
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=ADAD
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.2
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.2
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=MidStrafes
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.32
MaxLRTimeChange=0.35
MinFBTimeChange=0.25
MaxFBTimeChange=0.6
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.2
DamageReactionMinimumDelay=0.13
DamageReactionMaximumDelay=0.16
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.2
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Oppose
TargetStrafeMinDelay=0.13
TargetStrafeMaxDelay=0.18
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=0.9
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Stop
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=false
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.0
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.15
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.1
StrafeSwapMaxPause=0.1
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=MidStrafes2
MaxTargetDistance=2500.0
MinTargetDistance=750.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.45
MaxLRTimeChange=0.45
MinFBTimeChange=0.4
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.15
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.2
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.1
TargetStrafeMaxDelay=0.16
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=0.1
MinJumpTime=0.0
MaxJumpTime=0.0
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=0.8
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Long Strafes Close
MaxTargetDistance=750.0
MinTargetDistance=200.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.0
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Short Strafes Close
MaxTargetDistance=750.0
MinTargetDistance=200.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.2
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.0
JumpFrequency=0.5
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.1
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsClose1
MaxTargetDistance=1500.0
MinTargetDistance=500.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.01
MaxLRTimeChange=0.5
MinFBTimeChange=0.1
MaxFBTimeChange=0.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.02
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.5
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsFar1
MaxTargetDistance=3500.0
MinTargetDistance=2500.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.0
MinFBTimeChange=0.1
MaxFBTimeChange=0.25
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.02
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.5
StrafeSwapMaxPause=1.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsMimic1
MaxTargetDistance=2500.0
MinTargetDistance=500.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.25
MaxLRTimeChange=0.75
MinFBTimeChange=0.1
MaxFBTimeChange=0.25
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.02
TargetStrafeOverride=Mimic
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.35
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.25
StrafeSwapMaxPause=0.75
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsOppose1
MaxTargetDistance=2500.0
MinTargetDistance=500.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.25
MaxLRTimeChange=1.0
MinFBTimeChange=0.1
MaxFBTimeChange=0.25
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.02
TargetStrafeOverride=Oppose
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.35
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.25
StrafeSwapMaxPause=0.75
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsCareful1
MaxTargetDistance=2000.0
MinTargetDistance=1000.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.0
MinFBTimeChange=0.1
MaxFBTimeChange=0.25
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.1
CrouchOnGroundFrequency=0.03
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.5
MaxCrouchTime=1.0
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.25
StrafeSwapMaxPause=0.75
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsCareless1
MaxTargetDistance=4000.0
MinTargetDistance=250.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.25
MaxLRTimeChange=0.75
MinFBTimeChange=0.1
MaxFBTimeChange=0.25
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.1
DamageReactionMaximumDelay=0.5
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.01
CrouchInAirFrequency=0.1
CrouchOnGroundFrequency=0.05
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.1
MaxCrouchTime=1.5
MinJumpTime=0.2
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.25
StrafeSwapMaxPause=0.75
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsMid1
MaxTargetDistance=2500.0
MinTargetDistance=1500.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.25
MaxLRTimeChange=0.75
MinFBTimeChange=0.1
MaxFBTimeChange=0.25
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.02
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.25
StrafeSwapMaxPause=0.75
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsRandom1
MaxTargetDistance=5000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.01
MaxLRTimeChange=2.0
MinFBTimeChange=0.01
MaxFBTimeChange=1.0
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.02
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=1.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=CsFar2
MaxTargetDistance=4500.0
MinTargetDistance=3500.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.75
MaxLRTimeChange=1.27
MinFBTimeChange=0.1
MaxFBTimeChange=0.25
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.02
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.75
StrafeSwapMaxPause=1.25
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=cs peek
MaxTargetDistance=10000.0
MinTargetDistance=0.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.125
MaxLRTimeChange=0.5
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.01
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.25
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=1.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.125
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Dodge Profile]
Name=Long Strafes 2
MaxTargetDistance=1750.0
MinTargetDistance=500.0
ToggleLeftRight=true
ToggleForwardBack=true
MinLRTimeChange=0.5
MaxLRTimeChange=1.5
MinFBTimeChange=0.5
MaxFBTimeChange=1.5
DamageReactionChangesDirection=true
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.125
DamageReactionMaximumDelay=0.25
DamageReactionCooldown=1.0
DamageReactionThreshold=50.0
DamageReactionResetTimer=0.5
JumpFrequency=0.2
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.3
MaxCrouchTime=0.6
MinJumpTime=0.3
MaxJumpTime=0.6
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.0
StrafeSwapMaxPause=0.0
BlockedMovementPercent=0.5
BlockedMovementReactionMin=0.125
BlockedMovementReactionMax=0.2
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=1.0
BackTimeMult=1.0
DamageReactionChangesFB=false
[Weapon Profile]
Name=Real Wingman
Type=Hitscan
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=0.1
TimeBetweenShots=0.384165
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=2200.0
DamageFalloffStopDistance=4500.0
DamageAtMaxRange=20.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=65.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=4.0
MinRecoilUp=4.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Real Wingman wreload
Type=Hitscan
ShotsPerClick=1
DamagePerShot=45.0
KnockbackFactor=0.1
TimeBetweenShots=0.384165
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=8
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=2200.0
DamageFalloffStopDistance=4500.0
DamageAtMaxRange=20.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=65.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=4.0
MinRecoilUp=4.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=LG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=6.0
KnockbackFactor=2.0
TimeBetweenShots=0.046
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.05
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=true
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=70.0
ADSFOVScale=Quake/Source
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Railgun
Type=Hitscan
ShotsPerClick=1
DamagePerShot=80.0
KnockbackFactor=9.0
TimeBetweenShots=1.0
Pierces=true
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=9.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Beam
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=1.0,1.0,-1.0,5.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,1.0,-1.0,5.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Rocket Launcher
Type=Projectile
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=4.0
TimeBetweenShots=0.8
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5090.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=5090.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Rocket
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Flare
ParticleBodyImpact=Flare
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=true
Radius=500.0
DamageAtCenter=120.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=180.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.001
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Shinji Stars
Type=Projectile
ShotsPerClick=1
DamagePerShot=28.0
KnockbackFactor=0.1
TimeBetweenShots=1.0
Pierces=false
Category=FullyAuto
BurstShotCount=3
TimeBetweenBursts=0.1
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=7500.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=7500.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=24
AmmoPerShot=1
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=28.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.1,0.1,0.0,0.0
SpreadSCA=0.1,0.1,0.0,0.0
SpreadMSA=0.1,0.1,0.0,0.0
SpreadMCA=0.1,0.1,0.0,0.0
SpreadSSH=0.1,0.1,0.0,0.0
SpreadSCH=0.1,0.1,0.0,0.0
SpreadMSH=0.1,0.1,0.0,0.0
SpreadMCH=0.1,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Shinji Triple
Type=Projectile
ShotsPerClick=1
DamagePerShot=28.0
KnockbackFactor=0.1
TimeBetweenShots=1.0
Pierces=false
Category=FullyAuto
BurstShotCount=3
TimeBetweenBursts=0.1
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=7500.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=7500.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=28.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=Shinji Left;Shinji Right
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.1,0.1,0.0,0.0
SpreadSCA=0.1,0.1,0.0,0.0
SpreadMSA=0.1,0.1,0.0,0.0
SpreadMCA=0.1,0.1,0.0,0.0
SpreadSSH=0.1,0.1,0.0,0.0
SpreadSCH=0.1,0.1,0.0,0.0
SpreadMSH=0.1,0.1,0.0,0.0
SpreadMCH=0.1,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=AK-47
Type=Hitscan
ShotsPerClick=1
DamagePerShot=36.0
KnockbackFactor=0.2
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=4000.0
DamageFalloffStopDistance=7500.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.02
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.2
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=390.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=4.0,15.0,-9.0,2.5
SpreadSCA=4.0,15.0,-9.0,2.5
SpreadMSA=4.0,15.0,-9.0,2.5
SpreadMCA=4.0,15.0,-9.0,2.5
SpreadSSH=2.0,27.0,-9.0,1.5
SpreadSCH=2.0,27.0,-9.0,0.0
SpreadMSH=100.0,1000.0,5.0,20.0
SpreadMCH=4.0,15.0,-9.0,1.8
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.1
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=10.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.45
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.16
PSRResetDegreesPerSec=35.0
PSR0=0.5,0.0
PSR1=1.2,-0.1
PSR2=1.7,0.2
PSR3=1.7,0.2
PSR4=1.7,-0.85
PSR5=1.3,-0.45
PSR6=1.3,-0.75
PSR7=0.9,0.75
PSR8=-0.4,2.55
PSR9=0.75,0.95
PSR10=0.75,0.4
PSR11=-0.6,0.4
PSR12=0.35,1.0
PSR13=0.4,0.25
PSR14=-0.9,-1.5
PSR15=0.4,-1.0
PSR16=0.5,-1.3
PSR17=0.1,-1.6
PSR18=-0.7,-1.25
PSR19=0.2,-0.5
PSR20=0.2,0.1
PSR21=0.0,0.5
PSR22=0.3,0.1
PSR23=0.2,0.5
PSR24=0.5,-1.0
PSR25=-0.1,1.2
PSR26=-0.3,1.1
PSR27=-1.2,2.0
PSR28=0.1,1.4
PSR29=-0.1,0.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=M4A1-S
Type=Hitscan
ShotsPerClick=1
DamagePerShot=33.0
KnockbackFactor=0.1
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=3.0
MagazineMax=20
AmmoPerShot=1
ReloadTimeFromEmpty=1.37
ReloadTimeFromPartial=1.37
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=7000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=410.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=4.0,15.0,-9.0,2.5
SpreadSCA=4.0,15.0,-9.0,2.5
SpreadMSA=4.0,15.0,-9.0,2.5
SpreadMCA=4.0,15.0,-9.0,2.5
SpreadSSH=1.5,27.0,-9.0,1.0
SpreadSCH=1.5,27.0,-9.0,0.0
SpreadMSH=100.0,1000.0,5.0,20.0
SpreadMCH=4.0,15.0,-9.0,1.8
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=2.0
AADeadZone=0.0
AAFOV=15.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=35.0
PSR0=0.4,-0.1
PSR1=0.4,0.0
PSR2=0.9,0.4
PSR3=1.0,-0.5
PSR4=1.0,0.6
PSR5=1.2,0.3
PSR6=0.7,-0.6
PSR7=0.8,-0.5
PSR8=0.3,-1.3
PSR9=0.8,0.5
PSR10=0.3,1.0
PSR11=-0.4,1.2
PSR12=0.0,1.1
PSR13=0.1,1.0
PSR14=-0.2,-0.4
PSR15=0.4,0.1
PSR16=-0.4,1.0
PSR17=0.4,-1.0
PSR18=0.0,1.0
PSR19=-0.1,-1.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=m4a4
Type=Hitscan
ShotsPerClick=1
DamagePerShot=33.0
KnockbackFactor=0.2
TimeBetweenShots=0.09
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=2.7
ReloadTimeFromPartial=2.7
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=7500.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.02
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-40.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.2
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=410.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=4.0,15.0,-9.0,2.5
SpreadSCA=4.0,15.0,-9.0,2.5
SpreadMSA=4.0,15.0,-9.0,2.5
SpreadMCA=4.0,15.0,-9.0,2.5
SpreadSSH=4.0,27.0,-9.0,1.0
SpreadSCH=4.0,27.0,-9.0,0.0
SpreadMSH=100.0,1000.0,5.0,20.0
SpreadMCH=4.0,15.0,-9.0,1.8
MaxRecoilUp=0.3
MinRecoilUp=0.3
MinRecoilHoriz=-0.3
MaxRecoilHoriz=0.3
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.1
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=50.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=true
PSRLoopStartIndex=10
PSRViewRecoilTracking=0.45
PSRCapUp=90.0
PSRCapRight=90.0
PSRCapLeft=90.0
PSRTimeToPeak=0.16
PSRResetDegreesPerSec=35.0
PSR0=0.4,-0.25
PSR1=0.4,-0.1
PSR2=0.9,0.5
PSR3=1.2,-0.5
PSR4=1.1,0.4
PSR5=1.3,0.4
PSR6=0.9,-1.0
PSR7=0.7,-0.75
PSR8=0.5,-1.1
PSR9=0.6,-0.3
PSR10=0.7,0.5
PSR11=-0.4,1.5
PSR12=0.1,1.7
PSR13=-0.3,1.3
PSR14=0.2,1.0
PSR15=0.2,-0.9
PSR16=-0.1,0.0
PSR17=0.3,0.5
PSR18=0.2,0.5
PSR19=-0.2,0.5
PSR20=-0.2,-0.75
PSR21=0.5,-2.0
PSR22=-0.2,-0.7
PSR23=0.2,-0.6
PSR24=-0.1,-0.75
PSR25=-0.1,-0.5
PSR26=0.3,0.3
PSR27=0.3,-0.4
PSR28=0.1,-0.2
PSR29=0.15,-0.2
PSR30=0.15,-0.2
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=USP-S
Type=Hitscan
ShotsPerClick=1
DamagePerShot=35.0
KnockbackFactor=1.0
TimeBetweenShots=0.17
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=12
AmmoPerShot=1
ReloadTimeFromEmpty=2.2
ReloadTimeFromPartial=2.2
DamageFalloffStartDistance=300.0
DamageFalloffStopDistance=1000.0
DamageAtMaxRange=33.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=1.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=400.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=100.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,5.0
SpreadSCA=1.0,1.0,-1.0,5.0
SpreadMSA=1.0,1.0,-1.0,5.0
SpreadMCA=1.0,1.0,-1.0,5.0
SpreadSSH=5.0,25.0,0.2,7.0
SpreadSCH=1.0,1.0,-1.0,5.0
SpreadMSH=1.0,25.0,2.0,7.0
SpreadMCH=1.0,1.0,-1.0,5.0
MaxRecoilUp=0.3
MinRecoilUp=0.0
MinRecoilHoriz=-0.2
MaxRecoilHoriz=0.2
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.0001
TimeToRecoilReset=0.075
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.1
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=50.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=AN-94 Abakan
Type=Hitscan
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=0.1
TimeBetweenShots=0.1
Pierces=false
Category=SemiAuto
BurstShotCount=2
TimeBetweenBursts=0.05
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.1
MagazineMax=30
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=3000.0
DamageFalloffStopDistance=5500.0
DamageAtMaxRange=18.4
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=true
ADSZoomDelay=0.1
ADSZoomSensFactor=0.5
ADSMoveFactor=0.5
ADSStartDelay=0.0
ShootSoundCooldown=0.01
HitSoundCooldown=0.01
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=true
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=false
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.1
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=51.5
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=true
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=4.0,5.0,0.2,0.2
SpreadSCA=4.0,5.0,0.2,0.2
SpreadMSA=4.0,5.0,0.2,1.0
SpreadMCA=4.0,5.0,0.2,1.0
SpreadSSH=4.0,5.0,0.2,2.5
SpreadSCH=4.0,5.0,0.2,2.0
SpreadMSH=4.0,5.0,0.2,3.0
SpreadMCH=4.0,5.0,0.2,2.5
MaxRecoilUp=2.0
MinRecoilUp=2.0
MinRecoilHoriz=-0.2
MaxRecoilHoriz=0.3
FirstShotRecoilMult=0.2
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.1
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=10.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Boop Rocketslow
Type=Projectile
ShotsPerClick=1
DamagePerShot=0.0
KnockbackFactor=5.0
TimeBetweenShots=2.5
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=5000.101 Y=0.000 Z=0.000
MuzzleVelocityMax=X=5000.101 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=0.0
DelayBeforeShot=0.0
ProjectileGraphic=Rocket
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=2.0
RecoilNegatable=false
DecalType=0
DecalSize=10.0
DelayAfterShooting=5.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=2000.0
FlatKnockbackVertical=2000.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=2000.0
FlatKnockbackVerticalMin=2000.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=Circles
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=true
Radius=1000.0
DamageAtCenter=0.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.0
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Six Shooter
Type=Hitscan
ShotsPerClick=1
DamagePerShot=70.0
KnockbackFactor=0.1
TimeBetweenShots=0.5
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=1.5
ReloadTimeFromPartial=1.5
DamageFalloffStartDistance=2200.0
DamageFalloffStopDistance=4500.0
DamageAtMaxRange=20.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.5
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=None
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=5.0
MinRecoilUp=5.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=0.5
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.01
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Stun Gren
Type=Projectile
ShotsPerClick=1
DamagePerShot=25.0
KnockbackFactor=4.0
TimeBetweenShots=0.8
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=4000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=4000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=-50.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=4.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.8
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Flare
ParticleBodyImpact=Flare
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=true
Radius=460.0
DamageAtCenter=25.0
DamageAtEdge=25.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.2
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Weapon Profile]
Name=Machine Pistols
Type=Hitscan
ShotsPerClick=2
DamagePerShot=6.0
KnockbackFactor=0.1
TimeBetweenShots=0.05
Pierces=false
Category=FullyAuto
BurstShotCount=2
TimeBetweenBursts=0.1
ChargeStartDamage=0.1
ChargeStartVelocity=X=1500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=3000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=3000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=3.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=40
AmmoPerShot=2
ReloadTimeFromEmpty=1.0
ReloadTimeFromPartial=1.0
DamageFalloffStartDistance=1500.0
DamageFalloffStopDistance=3000.0
DamageAtMaxRange=1.5
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=true
BounceFactor=0.6
BounceCount=0
HomingProjectileAcceleration=6000.0
ProjectileEnemyHitRadius=0.1
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.1
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.03
HitSoundCooldown=0.03
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=true
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.25
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=10.3
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Gunshot
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=None
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=true
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=5.0
BlockedByWorld=true
SpreadSSA=10.0,5.0,0.0,2.5
SpreadSCA=10.0,5.0,0.0,2.5
SpreadMSA=10.0,5.0,0.0,2.5
SpreadMCA=10.0,5.0,0.0,2.5
SpreadSSH=10.0,5.0,0.0,2.5
SpreadSCH=10.0,5.0,0.0,2.5
SpreadMSH=10.0,5.0,0.0,2.5
SpreadMCH=10.0,5.0,0.0,2.5
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=true
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.45
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.5
AAMaxSpeed=5.0
AADeadZone=0.0
AAFOV=720.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=0.1
StickyLock=false
HeadLock=true
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=QWRL
Type=Projectile
ShotsPerClick=1
DamagePerShot=120.0
KnockbackFactor=5.0
TimeBetweenShots=0.8
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=6000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=6000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=25.0
DelayBeforeShot=0.0
ProjectileGraphic=Rocket
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=2.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=5.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Flare
ParticleBodyImpact=Flare
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=true
Radius=500.0
DamageAtCenter=120.0
DamageAtEdge=40.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=true
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=true
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=2
AAPreferClosestPlayer=false
AAAlpha=0.25
AAMaxSpeed=3.0
AADeadZone=0.0
AAFOV=90.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=true
TriggerBotDelay=0.001
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=-50.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=QWLG
Type=Hitscan
ShotsPerClick=1
DamagePerShot=30.0
KnockbackFactor=4.0
TimeBetweenShots=0.1
Pierces=false
Category=FullyAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=1.0
HeadshotCapable=false
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=7.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.05
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=-80.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=5.0
RecoilNegatable=false
DecalType=0
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=2.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Shinji Left
Type=Projectile
ShotsPerClick=1
DamagePerShot=28.0
KnockbackFactor=0.1
TimeBetweenShots=1.0
Pierces=false
Category=FullyAuto
BurstShotCount=3
TimeBetweenBursts=0.1
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=7500.000 Y=-900.000 Z=0.000
MuzzleVelocityMax=X=7500.000 Y=-900.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=28.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.1,0.1,0.0,0.0
SpreadSCA=0.1,0.1,0.0,0.0
SpreadMSA=0.1,0.1,0.0,0.0
SpreadMCA=0.1,0.1,0.0,0.0
SpreadSSH=0.1,0.1,0.0,0.0
SpreadSCH=0.1,0.1,0.0,0.0
SpreadMSH=0.1,0.1,0.0,0.0
SpreadMCH=0.1,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Weapon Profile]
Name=Shinji Right
Type=Projectile
ShotsPerClick=1
DamagePerShot=28.0
KnockbackFactor=0.1
TimeBetweenShots=1.0
Pierces=false
Category=FullyAuto
BurstShotCount=3
TimeBetweenBursts=0.1
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=7500.000 Y=900.000 Z=0.000
MuzzleVelocityMax=X=7500.000 Y=900.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=100.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=100000.0
GravityScale=0.0
HeadshotCapable=true
HeadshotMultiplier=2.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.5
ReloadTimeFromPartial=0.5
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=28.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.0
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.08
HitSoundCooldown=0.08
HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=0.1
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=false
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=true
AimPunchAmount=0.0
AimPunchResetTime=0.05
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=true
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=72.099998
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=true
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.0
WeaponModel=Heavy Surge Rifle
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.0
IncReloadLoopTime=0.0
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.0
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=Pistol
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=None
ParticleBodyImpact=Blood
ParticleProjectileTrail=None
ParticleHitscanTrace=Tracer
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.1
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=0.1,0.1,0.0,0.0
SpreadSCA=0.1,0.1,0.0,0.0
SpreadMSA=0.1,0.1,0.0,0.0
SpreadMCA=0.1,0.1,0.0,0.0
SpreadSSH=0.1,0.1,0.0,0.0
SpreadSCH=0.1,0.1,0.0,0.0
SpreadMSH=0.1,0.1,0.0,0.0
SpreadMCH=0.1,0.1,0.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.095
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
[Movement Ability Profile]
Name=Dash
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.25
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=6000.0
MainVelocityCanGoVertical=true
MainVelocitySetToMovementKeys=false
UpVelocity=0.0
EndVelocityFactor=0.2
Hurtbox=true
HurtboxRadius=300.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=true
AbilityBlocksMovement=true
AbilityBlocksAttack=true
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=0.2
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=25.0
AIMinTargDist=0.0
AIMaxTargDist=1750.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=75.0
AIDamageReactionResetTimer=1.0
[Movement Ability Profile]
Name=Rush
MaxCharges=1.0
ChargeTimer=8.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=0.25
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=4000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.25
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=true
AttackCancelsAbility=false
AbilityReloadsWeapon=true
HealthRestore=0.0
AIUseInCombat=false
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=50.0
AIDamageReactionResetTimer=1.0
[Movement Ability Profile]
Name=Phase
MaxCharges=3.0
ChargeTimer=3.0
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=false
AbilityDuration=0.075
LockDirectionForDuration=true
NegateGravityForDuration=true
MainVelocity=15000.0
MainVelocityCanGoVertical=false
MainVelocitySetToMovementKeys=true
UpVelocity=0.0
EndVelocityFactor=0.075
Hurtbox=false
HurtboxRadius=50.0
HurtboxDamage=50.0
HurtboxGroundKnockbackFactor=1.0
HurtboxAirKnockbackFactor=1.0
AbilityBlocksTurning=false
AbilityBlocksMovement=true
AbilityBlocksAttack=false
AttackCancelsAbility=false
AbilityReloadsWeapon=false
HealthRestore=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=1500.0
AIMaxTargDist=1000000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.75
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=25.0
AIDamageReactionResetTimer=1.0
[Weapon Ability Profile]
Name=Triple Star
MaxCharges=1.0
ChargeTimer=0.5
ChargesRefundedOnKill=0.0
DelayAfterUse=0.5
FullyAuto=true
WeaponProfile=Shinji Triple
BlockAttackTimer=0.5
AbilityBlockedWhenAttacking=true
AmmoPerShot=3
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=0.2
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=1500.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=1.0
[Weapon Ability Profile]
Name=Stun Gren
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.5
FullyAuto=false
WeaponProfile=Stun Gren
BlockAttackTimer=0.0
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=1250.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=1.0
[Melee Ability Profile]
Name=Melee
MaxCharges=1.0
ChargeTimer=0.25
ChargesRefundedOnKill=0.0
DelayAfterUse=1.0
FullyAuto=false
AbilityDuration=0.15
HurtboxRadius=250.0
HurtboxDamage=30.0
HurtboxGroundKnockbackFactor=0.0
HurtboxAirKnockbackFactor=0.0
BlockAttackTimer=0.5
AbilityBlockedWhenAttacking=false
AmmoPerShot=0
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
AIUseInCombat=true
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=600.0
AIMaxTargFOV=15.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Recall Ability Profile]
Name=Unwind
MaxCharges=1.0
ChargeTimer=10.0
ChargesRefundedOnKill=1.0
DelayAfterUse=0.5
FullyAuto=false
AbilityDuration=1.0
BlockAttackTimer=0.25
AbilityBlockedWhenAttacking=false
RecallTimer=3.0
RefillAmmo=true
AIUseInCombat=false
AIUseOutOfCombat=false
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=1.0
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=2000.0
AIMaxTargFOV=15.0
AIDamageReaction=true
AIDamageReactionIgnoreChance=0.25
AIDamageReactionMinDelay=0.25
AIDamageReactionMaxDelay=0.5
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=75.0
AIDamageReactionResetTimer=1.0
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-256.000000 0.000000 512.000000
496.000000 0.000000 512.000000
496.000000 0.000000 -240.000000
-256.000000 0.000000 -240.000000
-256.000000 -16.000000 512.000000
496.000000 -16.000000 512.000000
496.000000 -16.000000 -240.000000
-256.000000 -16.000000 -240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000061 224.000000 -143.999939
-256.000061 0.000000 -255.999939
-160.000061 224.000000 -255.999939
-256.000061 0.000000 -143.999939
-160.000061 0.000000 -255.999939
-256.000061 224.000000 -255.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-160.000061 223.999985 -367.999939
-160.000061 223.999985 -255.999908
1184.000000 223.999985 -256.000000
1184.000000 223.999985 -368.000000
-160.000061 0.000000 -367.999939
-160.000061 0.000000 -255.999908
1184.000000 0.000000 -256.000000
1184.000000 0.000000 -368.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
496.000000 16.000000 512.000000
896.000000 16.000000 512.000000
896.000000 16.000000 -256.000000
496.000000 16.000000 -256.000000
496.000000 0.000000 512.000000
896.000000 0.000000 512.000000
896.000000 0.000000 -256.000000
496.000000 0.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-368.000061 224.000000 928.000000
-256.000000 224.000000 928.000000
-256.000092 224.000000 -176.000031
-368.000092 224.000000 -176.000031
-368.000061 0.000000 928.000000
-256.000000 0.000000 928.000000
-256.000092 0.000000 -176.000031
-368.000092 0.000000 -176.000031
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
896.000000 16.000000 911.999939
896.000000 16.000000 511.999939
-272.000000 16.000000 512.000000
-272.000000 16.000000 912.000000
896.000000 0.000000 911.999939
896.000000 0.000000 511.999939
-272.000000 0.000000 512.000000
-272.000000 0.000000 912.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
896.000000 224.000000 1072.000000
1184.000000 224.000000 1072.000000
1184.000000 224.000000 -256.000000
896.000000 224.000000 -256.000000
896.000000 0.000000 1072.000000
1184.000000 0.000000 1072.000000
1184.000000 0.000000 -256.000000
896.000000 0.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
896.000000 224.000000 1200.000000
896.000000 224.000000 912.000000
-432.000061 224.000000 912.000000
-432.000000 224.000000 1200.000000
896.000000 0.000000 1200.000000
896.000000 0.000000 912.000000
-432.000061 0.000000 912.000000
-432.000000 0.000000 1200.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
480.000000 224.000000 496.000000
496.000000 224.000000 496.000000
496.000000 224.000000 -240.000000
480.000000 224.000000 -240.000000
480.000000 32.000000 496.000000
496.000000 32.000000 496.000000
496.000000 32.000000 -240.000000
480.000000 32.000000 -240.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
496.000000 224.000000 512.000000
496.000000 224.000000 496.000000
-240.000000 224.000000 496.000000
-240.000000 224.000000 512.000000
496.000000 0.000000 512.000000
496.000000 0.000000 496.000000
-240.000000 0.000000 496.000000
-240.000000 0.000000 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip
brush
vertices
496.000000 48.000000 384.000000
496.000000 16.000000 496.000000
399.999969 48.000000 496.000000
496.000000 16.000000 384.000000
399.999969 16.000000 496.000000
496.000000 48.000000 496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
-144.000031 48.000000 496.000000
-256.000061 16.000000 496.000000
-256.000061 48.000000 399.999969
-144.000031 16.000000 496.000000
-256.000061 16.000000 399.999969
-256.000061 48.000000 496.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
383.999969 48.000000 -256.000000
496.000000 16.000000 -256.000000
496.000000 48.000000 -159.999969
383.999969 16.000000 -256.000000
496.000000 16.000000 -159.999969
496.000000 48.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 3 1 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 2 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 0 3 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 3 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 4 1 5 0x00000000
brush
vertices
495.999939 48.000000 415.999969
512.000000 48.000000 416.000000
511.999878 48.000000 -160.000015
495.999908 48.000000 -160.000031
495.999939 16.000000 415.999969
512.000000 16.000000 416.000000
511.999878 16.000000 -160.000015
495.999878 16.000000 -160.000031
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
400.000000 48.000000 512.000000
400.000000 48.000000 495.999969
-176.000000 48.000000 496.000000
-176.000000 48.000000 512.000000
400.000000 16.000000 512.000000
400.000000 16.000000 495.999969
-176.000000 16.000000 496.000000
-176.000000 16.000000 512.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-256.000000 16.000000 496.000000
496.000000 16.000000 496.000000
496.000000 16.000000 -256.000000
-256.000000 16.000000 -256.000000
-256.000000 0.000000 496.000000
496.000000 0.000000 496.000000
496.000000 0.000000 -256.000000
-256.000000 0.000000 -256.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type PlayerSpawn
Vector3 position 112.000000 48.000000 48.000000
Bool8 teamB 0
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type Effect
Vector3 position 0.000000 256.000000 0.000000
String64 effectName internal/misc/reflectionprobe
entity
type Target
Vector3 position 320.000000 256.000000 320.000000
Vector3 angles -135.000000 30.000000 0.000000
String32 name end
entity
type PlayerSpawn
Vector3 position -160.000000 16.000000 608.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -160.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -160.000000 16.000000 864.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000000 16.000000 608.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 16.000000 16.000000 864.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 176.000000 16.000000 608.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 176.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 176.000000 16.000000 864.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 656.000000 16.000000 608.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 656.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 656.000000 16.000000 864.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 496.000000 16.000000 608.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 320.000000 16.000000 608.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 496.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 320.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 320.000000 16.000000 864.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 496.000000 16.000000 864.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 800.000000 16.000000 608.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 800.000000 16.000000 736.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 800.000000 16.000000 864.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 816.000000 16.000000 447.999969
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 688.000000 16.000000 448.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 560.000000 16.000000 448.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 560.000000 16.000000 288.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 688.000000 16.000000 288.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 688.000000 16.000000 144.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 816.000000 16.000000 144.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 816.000000 16.000000 288.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 560.000000 16.000000 144.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 816.000000 16.000000 -16.000031
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 688.000000 16.000000 -16.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 560.000000 16.000000 -16.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 560.000000 16.000000 -176.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 688.000000 16.000000 -176.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position 816.000000 16.000000 -176.000000
Vector3 angles 270.000000 0.000000 0.000000
Bool8 teamA 0
entity
type PlayerSpawn
Vector3 position -0.000000 16.000000 16.000000
Bool8 teamB 0
entity
type PlayerSpawn
Vector3 position 80.000000 16.000000 -96.000000
Bool8 teamB 0
|
7e12ee11ecf5d51ea55a11cdcd728d632c078b65 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1938/CH1/EX1.18/1_18.sce | 9df0d06aeb231055dbd5f6ed85d751fe4b7d5233 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 454 | sce | 1_18.sce | clc,clear
printf('Example 1.18\n\n')
P=6 //number of poles
A=2 // because of wave wound
N_1=300 //speed of generator
Z=600 //number of armature conductors
phi_1=0.06 //flux per pole in webers
E_g1=phi_1*P*N_1*Z/(60*A) //generated emf
printf('Emf generated is %.0f V\n\n',E_g1)
phi_2=0.055 //new flux per pole
E_g2=550// new generated emf
N_2=E_g2/(phi_2*P*Z/(60*A)) //new speed of generator
printf('Required speed is %.2f r.p.m',N_2)
|
8607fa00c0ffd32a2512e7a53defb3f09b1f5260 | 7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2 | /2-DOF_manual/2dof/2dofsce.sce | 477e2ac64b4860763cd7d97ab9b6fe2bcc34849a | [] | no_license | advait23/sbhs-manual | e2c380051117e3a36398bb5ad046781f7b379cb9 | d65043acd98334c44a0f0dbf480473c4c4451834 | refs/heads/master | 2021-01-16T19:50:40.218314 | 2012-11-16T04:11:12 | 2012-11-16T04:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 906 | sce | 2dofsce.sce | mode(0);
global fdfh fdt fncr fncw m err_count y
fncr ='clientread.sce';
fdt = mopen(fncr);
mseek(0);
err_count = 0; // initialising error count for network error
m =1;
exec ("twodof1.sci");
fdfh = mopen('clientwrite.sce');
mseek(0);
b = mgetl(fdfh,1);
a = mgetl(fdt,1);
mclose(fdfh);
if a ~= []
if b~= []
disp("ERROR!EMPTY THE CLIENTREAD AND CLIENTWRITE FILES");
return
else
disp("ERROR!EMPTY THE CLIENTREAD FILE");
return
end
else
if b~= []
disp("ERROR!EMPTY THE CLIENTWRITE FILE");
return
end;
A = [0.1,m,0,251];
fdfh = file('open','clientwrite.sce','unknown');
write(fdfh,A,'(7(e11.5,1x))');
file('close', fdfh);
sleep(1000);
a = mgetl(fdt,1);
mseek(0);
if a~= [] // open xcos only if communication is through (ie rpely has come from server)
xcos('2d.xcos');
else
disp("NO NETWORK CONNECTION!");
return
end
|
5f118c2bcbc00ae19bf3a6f947557b8688c3dc6d | 449d555969bfd7befe906877abab098c6e63a0e8 | /83/CH12/EX12.10/example_12_10.sce | 79310e8b59be2b91dfcd2212d942846a41805cf0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 5,229 | sce | example_12_10.sce | //Chapter 12
//Example 12.10
//page 482
//To plot swing curves for sustained fault and fault cleared at 2.5 and 6.25 cycles
clear;clc;
P_delivered=18;
MVA_base=20;
Xd=0.35;E=1.1;
Xl=0.2;
V=1;
H=2.52;
f=50;
M=H/(180*f);
/////////Prefault//////////////////////////
X1=Xd+Xl/2;
delta=0:0.1:180;
Pe1=E*V*sind(delta)/X1;
P_initial=P_delivered/MVA_base;Pm=P_initial;
delta0=asind(P_initial/max(Pe1));
//////during fault////////
X2=1.25; //from delta to star conversion
Pe2=E*V*sind(delta)/X2;
//////postfault:with faulted line switched off/////////
X3=Xd+Xl;
Pe3=E*V*sind(delta)/X3;
Pa_0minus=0;
Pa_0plus=Pm-max(Pe2)*sind(delta0);
Pa_avg=(Pa_0minus+Pa_0plus)/2;
/////for a sustained fault///////////
P_max=max(Pe2);
delta_delta=0; //initially
delta=21.64; //initially
delta_old=21.64;
delta_t=0.05;
z1=21.64
n=10;
T=0;
printf('Point-by-point calculation of swing curve for sustained fault delta_t=0.05sec\n');
printf('_______________________________________________________________________________________________\n');
printf('t\t\tPmax\t\t sin(delta)\t\tPa\t\t y\t\tdelta\n');
printf('_______________________________________________________________________________________________\n');
printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',0.000,P_max,sind(delta),(0.9-P_max*sind(delta))/2,8.929*(0.9-P_max*sind(delta))/2,delta);
for i=1:n
t=i*delta_t;
if i==1 then
Pa=(0.9-P_max*sind(delta_old))/2;
else
Pa=0.9-P_max*sind(delta_old);
end
y=(delta_t^2)*Pa/M;
delta_delta=delta_delta+y;
delta=delta+delta_delta;
z1=[z1,delta];T=[T,t];
printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',t,P_max,sind(delta),0.9-P_max*sind(delta),8.929*(0.9-P_max*sind(delta)),delta);
delta_old=delta;
end
//////Fault cleared in 2.5 cycles(time to clear fault=0.05sec)/////
P_max1=max(Pe2);
P_max2=max(Pe3);
delta_delta=0; //initially
delta=21.64; //initially
delta_old=21.64;
delta_t=0.05;
z2=21.64
n=10;
T=0;
printf('\n\nComputations of swing curves for fault cleared at 2.5 cycles(0.05sec)\n');
printf('______________________________________________________________________________________________\n');
printf('t\t\tPmax\t\t sin(delta)\t\tPa\t\t y\t\tdelta\n');
printf('______________________________________________________________________________________________\n');
printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',0.000,P_max,sind(delta),(0.9-P_max*sind(delta))/2,8.929*(0.9-P_max*sind(delta))/2,delta);
for i=1:n
t=i*delta_t;
if i==1 then
Pa=(0.9-P_max*sind(delta_old))/2;
P_max=P_max1;
elseif i==2 then
Pa=((0.9-P_max2*sind(delta_old))+((0.9-P_max1*sind(delta_old))))/2;
P_max=P_max2;
else
Pa=0.9-P_max2*sind(delta_old);
P_max=P_max2;
end
y=(delta_t^2)*Pa/M;
delta_delta=delta_delta+y;
delta=delta+delta_delta;
z2=[z2,delta];T=[T,t];
if i==1 then
delta_old=delta;
printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',t,P_max,sind(delta),((0.9-P_max2*sind(delta_old))+((0.9-P_max1*sind(delta_old))))/2,8.929*((0.9-P_max2*sind(delta_old))+((0.9-P_max1*sind(delta_old))))/2,delta);
else
printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',t,P_max,sind(delta),0.9-P_max*sind(delta),8.929*(0.9-P_max*sind(delta)),delta);
delta_old=delta;
end
end
//////Fault cleared in 6.25 cycles(time to clear fault=0.125sec)/////
P_max1=max(Pe2);
P_max2=max(Pe3);
P_max=P_max1;
delta_delta=0; //initially
delta=21.64; //initially
delta_old=21.64;
delta_t=0.05;
z3=21.64
n=10;
T=0;
printf('\n\nComputations of swing curves for fault cleared at 6.25 cycles(0.125sec)\n');
printf('______________________________________________________________________________________________\n');
printf('t\t\tPmax\t\t sin(delta)\t\tPa\t\t y\t\tdelta\n');
printf('______________________________________________________________________________________________\n');
printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',0.000,P_max,sind(delta),(0.9-P_max*sind(delta))/2,8.929*(0.9-P_max*sind(delta))/2,delta);
for i=1:n
t=i*delta_t;
if i==1 then
Pa=(0.9-P_max1*sind(delta_old))/2;
P_max=P_max1;
elseif i==2 then
Pa=(0.9-P_max1*sind(delta_old));
P_max=P_max1;
elseif i==3 then
Pa=(0.9-P_max1*sind(delta_old));
P_max=P_max2;
else
Pa=0.9-P_max2*sind(delta_old);
P_max=P_max2;
end
y=(delta_t^2)*Pa/M;
delta_delta=delta_delta+y;
delta=delta+delta_delta;
z3=[z3,delta];
T=[T,t];
printf('%0.3f sec\t%0.3f\t\t %0.3f\t\t\t%0.3f\t\t%0.3f\t\t%0.3f\n',t,P_max,sind(delta),0.9-P_max*sind(delta),8.929*(0.9-P_max*sind(delta)),delta);
delta_old=delta;
end
plot(T,z1,T,z2,T,z3);
set(gca(),"grid",[1 1]);
legend('Sustained Fault','Fault cleared at 2.5 cycles','Fault cleared at 6.25 cycles',[,2]);
title('Swing Curves for Example 12.10 for a sustained fault and for clearing in 2.5 and 6.25 cycles','fontsize',2.4);
xlabel('Time (in seconds)----->');
ylabel('Torque Angle (delta,deg)----->');
f=get("current_figure")
f.figure_position=[0,15]
f.figure_size=[645,1000]
|
733b55372e630e485c382a4bfcd114aacb530512 | b9602336613b26d0b9c22a09d219c0ed8e158b4e | /Examples/Examples_Mat/trunc.sce | e7d44b722235508a0f3d2e5e5a7619480df59f88 | [
"BSD-2-Clause"
] | permissive | CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox | d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd | 70c97cda4e0dd54df0a638e9b99f380c09ffa37e | refs/heads/master | 2022-12-11T01:28:28.742041 | 2020-08-26T12:24:27 | 2020-08-26T12:24:27 | 290,481,428 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 102 | sce | trunc.sce | // Calculating the trunc.
y = [1.2, 1, 1.9; 4, 2.6, 5; 2.3, 8, 7];
truncres = armaMat("trunc",y)
|
a22f2d3b681bed21f625c0651c2330e61b4b98ec | 489b9ac15a2447f710c641dd021c89a28468abbf | /1ejaar(2018-2019)/1e semester/probleem oplossend denken/scilab/les2.sce | f11c6c7f98cd0811096cef52428a0995ca7dc2fa | [] | no_license | pietergmail/school | d2fa47f897079c498956cd982f79730dfa750542 | fda4ce328b5d0d79018188ba6a385778e8addfe9 | refs/heads/master | 2022-11-18T18:00:36.561022 | 2021-08-13T14:00:07 | 2021-08-13T14:00:07 | 182,574,979 | 1 | 2 | null | 2022-11-16T12:19:42 | 2019-04-21T19:37:56 | HTML | UTF-8 | Scilab | false | false | 2,103 | sce | les2.sce | a=10
b=99
c=a*b
function res = gemid(a,b)
res=(a+b)/2
endfunction
//oef: schrijf functie oef1 due kwadraad van x berekend als x negatief is en de vierkantswortel van x als het een positief getal is
function res = oef1(a)
if a < 0 then
res=a
else
res=sqrt(a)
end
endfunction
//for lussen
//maakt fucntie gemiddelde die rek.gem van
//alle elementen van de vector V berekend
V=[-2,4,6.8,-12,99]
function r=gemiddeldeVector(a)
aantal=length(a)
som=0
for i=1:aantal
som = som + a(i)
end
r=som/aantal
endfunction
// grootste element van vector
function gr = grootste(B)
gr = B(1)
for i = 2: length(B)
if B (i) > gr then
gr = B(i)
end
end
endfunction
// is even
function b = iseven(x)
b=modulo(x,2)==0
endfunction
function r= aantaleven(V)
aantal = 0
for i = 1: length(V)
if iseven(V(i)) then
aantal = aantal + 1
end
end
r=aantal
endfunction
M1 = [3,-2,5:1,0,6]
M2 = [2 -4 24
8 0 7
-5 12 3
0 6 -5]
//oef: schrijf function die rekenkundig gemiddelde van alle elementen matrix M berekent
function gem = Matrixgem(M)
arij=size(M,"r")
akol=size(M,"c")
som=0
for i=1:arij
for j=1:akol
som=som + M(i, j)
printf("i: %d en j: %d\n", i, j)
end
end
gem= som/(arij*akol)
endfunction
M3 = [3 -2 5
8 9 -6
-2 0 7]
function N = matrixmaal(A,B)
[arij akolA] = size(A)
[arijB akolB] = size(B)
if arij ~= akolB then
error("foutieve ingave")
end
for i=1:arij
som = 0
for j=1:akolB
for k=1:akolB
som = som + A(i,k)*B(k,j)
end
N(i,j)=som
end
end
endfunction
p = [1 2 1
1 1 3]
plot2d(p)
clf()
X=p(1,:)
Y=p(2,:)
plot2d(X,Y,rect=venster)
function teken(punten, kleur)
X=punten(1,:)
Y=punten(1,:)
plot2d(X,Y,rect=venster, style=kleur)
a=gca();
a.y_location="origin";
a.x_location="origin";
endfunction
T2 = [-1 0
0 1]
P1 = T1*P
|
c5e565969eacde507aae28a20f6878376b630cfe | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH21/EX21.22/21_22.sce | 45c50cd08ee4dcb449d7001ca11360f2945c0fb1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,220 | sce | 21_22.sce | //Problem 21.22: A 220 V, d.c. shunt-wound motor runs at 800 rev/min and the armature current is 30 A. The armature circuit resistance is 0.4 ohm. Determine (a) the maximum value of armature current if the flux is suddenly reduced by 10% and (b) the steady state value of the armature current at the new value of flux, assuming the shaft torque of the motor remains constant.
//initializing the variables:
Ia1 = 30; // in Amperes
Ra = 0.4; // in ohm
n = 800/60; // in Rev/sec
V = 220; // in Volts
x= 0.1;
//calculation:
//For a d.c. shunt-wound motor, E = V - (Ia*Ra),Hence initial generated e.m.f.,
E1 = V - (Ia1*Ra)
//The generated e.m.f. is also such that E proportional to (Phi*n) so at the instant the flux is reduced, the speed has not had time to change, and
E = E1*(1-x)
//Hence, the voltage drop due to the armature resistance is
Vd = V - E
//The instantaneous value of the current is
Ia = Vd/Ra
//T proportional to (Phi*Ia), since the torque is constant,
//Phi1*Ia1 = Phi2*Ia2, The flux 8 is reduced by 10%, hence
//Phi2 = (1-x)*Phi1
Ia2 = Ia1/0.9
printf("\n\n Result \n\n")
printf("\n (a)instantaneous value of the current %.0f A ",Ia)
printf("\n (b)steady state value of armature current, %.2f A ",Ia2) |
ac6f66c6dffc6f0c8ae67c94d340eda58f011bbb | 449d555969bfd7befe906877abab098c6e63a0e8 | /2093/CH2/EX2.10/exa_2_10.sce | 7e6242d2be16ae657a4056dd8dd3c11eb0b9055e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 774 | sce | exa_2_10.sce | // Exa 2.10
clc;
clear;
close;
// Given data
V_DD= 15;// in V
Vt= 1;// in V
V_D= 10;// in V
V_S= 5;// in V
KnWbyL= 1;// in mA/V^2
KnWbyL=KnWbyL*10^-3;// in A/V^2
R_G1= 8;// in MΩ
R_G1= R_G1*10^6;// in Ω
I_D= 0.5;// in mA
I_D=I_D*10^-3;//in A
R_D= (V_DD-V_D)/I_D;// in Ω
R_S= V_S/I_D;// in Ω
// Formul I_D= 1/2*KnWbyL*(V_OV)^2
V_OV= sqrt(2*I_D/KnWbyL);// in V
// Formula V_OV= V_GS-Vt
V_GS= V_OV+Vt;// in V
V_G= V_GS+V_S;// in V
// Formul V_G= R_G2*V_DD/(R_G1+R_G2)
R_G2= R_G1*V_G/(V_DD-V_G);//in Ω
disp(R_D*10^-3,"The value of R_D in kΩ is : ")
disp(R_S*10^-3,"The value of R_S in kΩ is : ")
disp(V_OV,"The value of V_OV in volts is : ")
disp(V_GS,"The value of V_GS in volts is : ")
disp(R_G2*10^-6,"The value of R_G2 in MΩ is : ")
|
20c984d46c6f45518e696b16356ce915fab6a151 | 86aa7c4bd572ebcae85b8884ea533dea2202f0d1 | /p1.sci | c2980ca7bd90f63214d592358ddaccc3ee45ac73 | [] | no_license | oborovsky/p1 | 3ece27f7a272520a52d258c8fb3b904981755c21 | b8748676374bc2bbba80f6471d356b474206caf4 | refs/heads/master | 2020-12-30T13:46:37.592331 | 2017-05-21T20:22:42 | 2017-05-21T20:22:42 | 91,254,590 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,396 | sci | p1.sci | deff('y=U(x,t)','y=exp(x+2*t)');
//deff('y=U(x,t)','y=x.^2+x.*sin(t)');
//deff('y=U(x,t)','y=exp(t+x)');
deff('y=X0(t)','y=0');
deff('y=X1(t)','y=1');
deff('y=U0(x)','y=U(x,0)');
deff('y=Ul(t)','y=U(X0(t),t)');
deff('y=Ur(t)','y=U(X1(t),t)');
//deff('y=F(x,t)','y=x.*cos(t) -2');
deff('y=F(x,t)','y=exp(x+2*t)');
function x = Gauss(A,B)
C = [A B];
[n,m] = size(C);
for i=1:n-1
Cmax = C(i,i);
Imax = i;
for k = i+1:n
if abs(Cmax) < abs(C(k,i)) then
Cmax = C(k,i);
Imax = k;
end
end
if Imax <> i then
tmp = C(Imax,:);
C(Imax,:) = C(i,:);
C(i,:) = tmp;
end
k = C(i,i);
if k <> 0 then
C(i,:) = C(i,:)./k;
end
a = C(i,:);
for k = i+1:n
b = C(k,i);
ak = C(k,:);
C(k,:) = ak - a.*b;
end
for k = n:-1:2
b = C(k,k);
if b <> 0 then
C(k,:) = C(k,:)./b;
end
ak = C(k,:);
for l = k-1:-1:1
al = C(l,:);
c = C(l,k);
C(l,:) = al - ak.*c;
end
end
end
x = C(:,m)';
endfunction
function x=shufle(m, d)
a = m(1,:);
b = m(2,:);
c = m(3,:);
s = length(b);
et(1) = 0;
ks(1) = 0;
for i=1:s
ks(i+1) = (-c(i)) / (a(i)*ks(i) + b(i));
et(i+1) = (d(i) - a(i) * et(i)) / (a(i) * ks(i) + b(i));
end
x(s+1) = 0;
for j=0:s-1
x(s-j) = ks(s-j+1)*x(s-j+1) + et(s-j+1);
end
x(s+1) = [];
endfunction
function [m, d,AA,BB] = makeLinearSystem (u, t,ii,X)
tn = t*(ii-1);
tn1 = t*ii;
h0 = (X1(tn)-X0(tn))/X;
h1 = (X1(tn1)-X0(tn1))/X;
a = [0];
b = [1];
c = [0];
dd = Ul(tn1);
s = length(u);
// r = 2*t;
a1 = -t/(2*h1^2) + 1/12;
a3 = a1;
a2 = t/h1^2 + 5/6;
b1 = t/(2*h0^2) + 1/12;
b3 = b1;
b2 = -t/h0^2 + 5/6;
k1 = 1/12;
k3 = k1;
k2 = 1/3;
for i=2:s-1
xi = X0(tn) + (i-1)*h0;
x1i = X0(tn1) + (i-1)*h1;
// f2 = x1i - xi;
// f1 = f2 - h1;
// f3 = f2 + h1;
// g2 = 0;
// g1 = g2-h0;
// g3 = g2+h0;
// A = [1,1,1,0,0,0; 0,0,0,1,1,1;f1,f2,f3,-g1,-g2,-g3;f1^2,f2^2,f3^2,-g1^2,-g2^2,-g3^2;f1^3+3*r*f1,f2^3+3*r*f2,f3^3+3*r*f3,-g1^3,-g2^3,-g3^3;f1^4+6*r*f1^2,f2^4+6*r*f2^2,f3^4+6*r*f3^2,-g1^4,-g2^4,-g3^4];
// B = [1;1;0;-r;0;-3*r^2];
// aa = Gauss(A,B);
// AA = A;
// BB = B;
// aa = A\B
a(i) = a1;// aa(1);
b(i) = a2 ;//aa(2);
c(i) = a3 ; //aa(3);
// A1 = aa(1)*f1 + aa(2)*f2 + aa(3)*f3;
// A2 = aa(1)*f1^2 + aa(2)*f2^2 + aa(3)*f3^2;
// k1 = (A1 - A2 + r/2 + f2*(f2-g3)/2)/(g1*(g3-g1));
// k1 = (A2 + r/2 - f2^2/2 + (f2/2-A1)*g3)/(g1*(g1-g3))
// k3 = (A1 - A2 + r/2 + f2*(f2-g1)/2)/(g3*(g1-g3));
// k3 = (A2 + r/2 - f2^2/2 + (f2/2-A1)*g1)/(g3*(g3-g1))
// k2 = 1/2 - k1 - k3
// ff = F(xi + f2,tn1)/2 + k1*F(xi+g1,tn) + k2*F(xi+g2,tn) + k3*F(xi+g3,tn);
ff = F(xi + h1,tn1)/2 + k1*F(xi - h0,tn) + k2*F(xi,tn) + k3*F(xi+h0,tn);
// disp(ff);
// ff = F(xi,tn) + t*90*exp(10*tn+xi)/2 + A1*9*exp(10*tn+xi)+(A2+r/2)*9*exp(10*tn+xi)/2;
// dd(i) = aa(6)*u(i+1) + aa(5)*u(i) + aa(4)*u(i-1) + t*ff;
dd(i) = b3*u(i+1) + b2*u(i) + b1*u(i-1) + t*ff;
end
a(s) = 0;
b(s) = 1;
c(s) = 0;
dd(s) = Ur(tn1);
m = [a';b';c'];
d = dd';
// disp(m);
// disp(d);
endfunction
function [e,u,y,AA,BB] = makeApp (T, X)
t = 1/T;
h = (X1(0)-X0(0))/X;
xx = X0(0):h:X1(0);
// disp(xx);
u(1,:) = U0(xx)
y(1,:) = u(1,:);
for i=1:T
[m,d,AA,BB] = makeLinearSystem(u(i,:),t,i,X);
x = shufle(m, d);
u(i+1,:) = x';
h1 = (X1(i*t) - X0(i*t))/X;
xx = X0(i*t):h1:X1(i*t);
// disp(xx);
y(i+1,:) = U(t*i,xx);
end
e = y - u;
endfunction
N = 5;
[e,u,y,AA,BB] = makeApp(N^2, N);
ee(1) = max(abs(e));
for i = 2:2
N = 2*N;
X = N;
T = X^2;
[e,u,y,AA,BB] = makeApp(T, X);
ee(i) = max(abs(e));
printf("ee(%d)=%1.15f,ee(%d)=%1.15f, p = %1.15f\n",i-1,ee(i-1),i,ee(i), abs(log2(ee(i-1)/ee(i))));
end
|
3546ee4772ef00d42c3431b29125d6543b2324d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /866/CH7/EX7.7/7_7.sce | 8d4c1a18b1e9f75825c355aa45e415a5f4920055 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 443 | sce | 7_7.sce | clc
//initialisation of variables
A= 120*300 //mm^2
At= 6*300 //mm^2
Ec= 150 //N/mm^2
Et= 150*15 //N/mm^2
P= 150*10^3 //N
//CALCULATIONS
Ac= A-At
sigmaci= (Ec*At)/Ac
F= Ac*sigmaci
stressintheconcrete= (sigmaci)-((Ec*P)/(Ac*Ec+At*Et))
stressinthesteel= (F/At)+((Et*P)/(Ac*Ec+At*Et))
printf ('stressintheconcrete= %.1f N/mm^2(compression)',stressintheconcrete)
printf (' \n stressinthesteel=% f N/mm^2(tension)',stressinthesteel)
|
5f9654bb535ce59b4a3679d506aaadc4f7a7e18a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3756/CH3/EX3.11/Ex3_11.sce | 18b0b3bf383da11356903a0201874e35d12b6f8f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 239 | sce | Ex3_11.sce | clc
//
//
//
//Variable declaration
theta=12 //rotation of plane
l=2 //length
s=60 //Specific rotation
//Calculations
c=(theta/(l*s))
//Result
printf("\n The Concentration of sugar solution is %0.3f gm/cc",c)
|
dfb931e6abf783d448e06dadb5053ea558bca023 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH16/EX16.2/16_2.sce | 2c0a2f50c01668eb523e5920ee2367e649d7bc0c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 16_2.sce | clc
//initialisation of variables
wl= 4500 //A
c= 3*10^10 //cm/sec
//CALCULATIONS
l= wl*10^-8
l1= wl*10^-1
f= 1/l
f1= c/l
//RESULTS
printf ('wavelength in centimetres = %.1e cm',l)
printf ('\n wavelength in micrometres = %.1e cm',l1)
printf ('\n frequency of bluelight = %.2e sec^-1',f1)
printf ('\n wave number = %.2e cm^-1',f)
|
d2714828cb49f6d06448cd8f3a6d51de5892a041 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1523/CH2/EX2.2/2_2.sce | bf148d2b5f0880256f055b66b1425e10b81feceb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 271 | sce | 2_2.sce | //Network Theorem-1
//pg no.-2.2
//example2.5
//converting delta network to star network
a=10;
b=10;
c=10;
R=(a*b)/(a+b+c);
printf("\nConverting the delta formed by three resistors of 10 Ohm into an equivalent star network");
mprintf("\nR1=R2=R3= %.3f Ohm",R);
|
224101e51548942d1ff925abb65510ab651f6446 | dbad1a4597b0232fb33131760bb3e77daf406106 | /dbtropes/real_test_films.tst | a987c2b7db1cbcd80b4fd93bc57546c0f49c5cab | [] | no_license | nitz14/Movielans-TV-Tropes | d2fdbd2fdf6af8864a7534a223094014ce748546 | 32fc8863e5ad96b0f42c6ba83bd4e24f18781fd4 | refs/heads/master | 2016-09-10T19:26:28.639602 | 2014-06-12T13:07:56 | 2014-06-12T13:07:56 | 20,439,869 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 77 | tst | real_test_films.tst | The Lion King
The Sixth Sense
Superman II
The Hunger Games
The Fifth Element
|
e11240106872b6ac738de9c92bb9c3882d5345da | 907843f7d8c0871eec2850b95a5d2077c14c182a | /utilities/MeshConvert/Tests/Gmsh/Scalar_Windows.tst | 6849127daf08c9d27a7face9e81e04c86f0efdae | [
"MIT"
] | permissive | li12242/nektar | 4792c4f8f88992875ecefb590e804e850887ae19 | a31e519cdde5d58d2fa23e0eaedd54ce3ed9fb72 | refs/heads/master | 2020-05-29T12:21:41.203547 | 2015-07-29T14:15:38 | 2015-07-29T14:15:38 | 65,020,427 | 1 | 0 | null | 2016-08-05T13:26:59 | 2016-08-05T13:26:58 | null | UTF-8 | Scilab | false | false | 706 | tst | Scalar_Windows.tst | <?xml version="1.0" encoding="utf-8" ?>
<test>
<description>Gmsh box with scalar surface deformation and hex boundary layer splitting</description>
<executable>MeshConvert</executable>
<parameters>-m scalar:surf=1:scalar=exp(-x*x-y*y):nq=7 -m bl:nq=7:layers=7:r=2.5 -m jac:list Scalar.msh Scalar.xml:xml:test</parameters>
<files>
<file description="Input File">Scalar.msh</file>
</files>
<metrics>
<metric type="regex" id="1">
<regex>^Total negative Jacobians: (\d+)</regex>
<matches>
<match>
<field id="0">0</field>
</match>
</matches>
</metric>
</metrics>
</test>
|
184c412619eb08bf532f1c5f6aff72ad1a4746c6 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_Concepts_Of_Thermodynamics_F._Obert_2747.zip/Concepts_Of_Thermodynamics_F._Obert_2747/CH2/EX2.1/Ex2_1.sce | c079d817b3220e80524af4ccab2f522f8d6716dc | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 181 | sce | Ex2_1.sce | errcatch(-1,"stop");mode(2);
//Initialization of variables
z=100 //ft
m=32.1739 //lbm
//calculations
PE=m*z
//results
printf("Potential energy = %.2f ft-lbm",PE)
exit();
|
3038f58a4a59009cd11032dddfb3c9762e028de3 | dcc762efc4c5b4ffb1612e038aa85343a6bf7fbf | /3_Old/hande/day14/test03.tst | 1dcc8d2539a538400b1af46da5d53b90809b2a8d | [] | no_license | thiscoders/study_oracle | 4ff6cd8fd3a1a528c55a4871946fcaad98b4b791 | 3ac240f45d854a7deacda934da07995f6cc1205b | refs/heads/master | 2021-06-15T15:19:00.035317 | 2017-04-11T02:47:07 | 2017-04-11T02:47:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 516 | tst | test03.tst | PL/SQL Developer Test script 3.0
7
begin
-- Call the procedure
hand_plsql_autocreate.form_table_handle(p_block_name => :p_block_name,
p_package_name => :p_package_name,
p_table_name => :p_table_name,
p_primary_key => :p_primary_key);
end;
4
p_block_name
1
ORDER_HEADERS
5
p_package_name
1
CUX_ORDER_HEADERS_ALL_PKG
5
p_table_name
1
CUX_ORDER_HEADERS_ALL
5
p_primary_key
1
HEADER_ID
5
0
|
e9f264a3265a34229d5aafea1ee98c483dbf0aab | 449d555969bfd7befe906877abab098c6e63a0e8 | /3289/CH7/EX7.6/Ex7_6.sce | 098983e26908ec76ca558812f421e9e7e0af1438 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 511 | sce | Ex7_6.sce | clc
p=15
P=45
a=3
b=1.5
L1=3
L2=4.5
MfAB=-(p*L1^2)/12
disp(MfAB,"in kNm is= ")
MfBA=(11.25)
disp(MfBA,"in kNm is= ")
MfBC=-(P*a*b^2)/L2^2
disp(MfBC,"in kNm is= ")
MfCB=(P*b*a^2)/L2^2
disp(MfCB,"in kNm is= ")
B=MfBA+MfBC
disp(B,"effective fem at joint B in kNm is= ")
AB=0.429*-B // joint rotates until a change in moment is +3.75
disp(AB,"the change of moment in beam segment AB in kN is=")
BC=0.571*-B
disp(BC,"the change of moment in beam segment AB in kN is=")
|
8deb3439f0d73e38ce647c7da8ce7679f95aeccc | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Computing/testensemble.sce | eba8cfe2531b1d9ba57aca49f52149fc0a0b95c4 | [] | 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 | 136 | sce | testensemble.sce | // creating sets
E=[1 2 2 3],F=[3 4 5]
E=unique(E) // unique elements
union(E,F) // union
intersect(E,F) // intersection
|
6b3b1fdafc5aa416ff1dfd886240f937cf260e07 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1241/CH2/EX2.5/exa2_5.sce | 4ecf3b1250336ab8091e71362f9b411a0b7525b1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 148 | sce | exa2_5.sce | //Example 2-5//
//Decimal to binary conversion//
a=dec2bin(200)
//Binary equivalent of the decimal number//
disp(a)
//answer in binary form//
|
7d90c0b765265697b9b5580a9d580f54a44b1f92 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2513/CH14/EX14.10/14_10.sce | fcd89b02c86a1fb5106e7574b01dd6f25135fc43 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 260 | sce | 14_10.sce | clc
//initialisation of variables
Q1=30//cfs
Q2=16//cfs
a=32//sq ft
r=1.6//ft
i=10^-4//ft
n=1.25*10^-2//ft
h2=0.50//ft
c=3.33//ft
h1=5.20//ft
l=72//ft
s=12320//ft
//CALCULATIONS
L=s-l//ft
//RESULTS
printf('the forchheimer s methos =% f ft',L)
|
834a39a1dbe0f3c8ad83f6f882b2f8b7e8316554 | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH5/EX5.8/example_8.sce | 0687be856c3dbdd9d245c3162c891e65f61b4a47 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 595 | sce | example_8.sce | clc
clear
printf("example 5.8 page number 188\n\n")
//to find the heat transfer coefficient
density=984.1 //in kg/cubic meter
v=3 //in m/s
viscosity=485*10^-6; //in Pa-s
k=0.657 //in W/mK
cp=4178 //in J/kg K
d=0.016 //in m
Re=(density*v*d)/viscosity;
Pr=(cp*viscosity)/k;
//dittus boelter equation
h=0.023*Re^0.8*Pr^0.3*(k/d);
printf("heat transfer coefficient = %f W/sq meter K",h)
//Sieder Tate equation
viscosity_w=920*10^-6
h1=0.023*Re^0.8*Pr^(1/3)*(k/d)*(viscosity/viscosity_w)^0.14;
printf("\n\nheat transfer coefficient = %f W/sq meter K",h1)
|
4082f1f85fe6051785133ec9b345673a5665ff5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /213/CH10/EX10.17/10_17.sce | 5c6445f5046507f5900d9876c9268ab89820ef80 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 638 | sce | 10_17.sce | //To find power absorbed in friction
clc
//Given:
W=20*1000 //N
alpha=120/2 //degrees
Pn=0.3 //N/mm^2
N=200 //rpm
mu=0.1
//Solution:
//Calculating the angular speed of the shaft
omega=2*%pi*N/60 //rad/s
//Calculating the inner radius of the bearing surface
r2=sqrt(W/(3*%pi*Pn)) //mm
//Calculating the outer radius of the bearing surface
r1=2*r2 //mm
//Calculating the total frictional torque assuming uniform pressure
T=2/3*mu*W*(1/sind(alpha))*(r1^3-r2^3)/(r1^2-r2^2)/1000 //N-m
//Calculating the power absorbed in friction
P=T*omega/1000 //kW
//Results:
printf("\n\n Power absorbed in friction, P = %.3f kW.\n\n",P) |
db1c98ac28951be8fceed9238f46c9a9523416c1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2132/CH6/EX6.13/Example6_13.sce | 093bb75daddcb6c839920b40d75075c80f7e1382 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 489 | sce | Example6_13.sce | //Example 6.13
clc;
clear;
close;
format('v',7);
//Given data :
g=9.81;//constant
Cd=0.6;//Coefficient of discharge
B=1.6;//meter
H1=1500/1000;//meter
H2=(1500+1250)/1000;//meter
Q=2/3*Cd*B*sqrt(2*g)*(H2^(3/2)-H1^(3/2));//m^3/sec or cumec
disp(Q,"Discharge through the opening in cumec : ");
//For small opening
H=1.5+1.25/2;//meter
D=1.25;//meter
Qdash=Cd*(B*D)*sqrt(2*g*H);//cumec
Error=(Qdash-Q)/Q*100;//%
disp(Error,"% of error : ");
//Answer is wrong in the book.
|
ba1b619539dc24fe56776157a4c69f11a84ee06a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3507/CH9/EX9.21/Ex9_21.sce | 8d4c037efe3309705aa02293c7dbe88f49a1ba2a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 673 | sce | Ex9_21.sce | //chapter9
//example9.21
//page171
Vmax=120 // V
Vmin=80 // V
Vz=50 // V
R_L=10 // kilo ohm
R1=5 // kilo ohm
// zener diode is on for Vmax and Vmin both since they are > Vz
// for max Iz
V_R1=Vmax-Vz
I=V_R1/R1 // current through R1
I_L=Vz/R_L // current through load
// by Kirchoff first law I=I_L+Iz so applying it we get
Iz_max=I-I_L
// for min Iz
V_R1_dash=Vmin-Vz
I_dash=V_R1_dash/R1// current through R1
I_L_dash=Vz/R_L // current through load
// by Kirchoff first law I=I_L+Iz so we get
Iz_min=I_dash-I_L_dash
printf("maximum zener current = %.3f mA \n",Iz_max)
printf("minimum zener current = %.3f mA \n",Iz_min)
|
84ebc6bf9311d303b141a13401ac295e66755423 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH20/EX20.4/Ex20_4.sce | 5e22159bd02a9cba67ca7320745b0cea166f18b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 335 | sce | Ex20_4.sce | clc;
RC=4*10**3;
RB=40*10**3;
RS=10*10**3;
hie=1100;
hfe=50;
hre=0;
hoe=0;
RB2=40*10**3;
rL=(RC*RB2)/(RC+RB2);
Ai=-hfe/(1+hoe*rL);
Ri=hie+hre*Ai*rL;
Av=(Ai*rL)/Ri;
RB1=40*10**3/(1-Av);
Ris=(Ri*RB1)/(Ri+RB1);
disp('ohm',Ris*1,"Ris=");
Ros=rL;//Ro=infinity
disp('Ohm',Ros*1,"Ros=");
Avs=(Av*Ris)/(RS+Ris);
disp(Avs);
|
0d0fea2d8671bc488fff47c65a8e0ee3b2e5d154 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH8/EX8.3/8_3.sce | 56c9be1761816c46f480e89fa4c99891e489efb6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 647 | sce | 8_3.sce | //claculating the required data//
//example 2//
clc
//clears the command window//
clear
//clears//
disp('the full scale maximum voltage occurs when all input are at high level 1')
Vm=10;//full scale maximum output voltage//
printf('full scale maximum output voltage=%d volt\n',Vm);//result is displayed//
n=5
LSB=1/((2^n)-1);//weight of LSB//
V1=10*LSB;//change in output voltage due to LSB//
printf('change in output voltage due to change in lsb=%f volt\n',V1)
disp('analog output voltage for 11001 is given by Vo=(10/R+80/R+160/R)/(1/R+2/R+4/R+8/R+16/R)')
Vo=250/31;
printf('analog output voltage for input 11001=%f volt\n',Vo)
|
b820c8e0e06a70cf18c6a0a1db632166c747c312 | 449d555969bfd7befe906877abab098c6e63a0e8 | /165/CH15/EX15.11/ex15_11.sce | 28628dd7f9b199a55eb1cb848d0b09ee635293a0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 809 | sce | ex15_11.sce | //Example 15.11
clc;
f1=4000; //in Hz
Q=8;
R2=100000; //From given tables
R3=(100*10^3)/(3.48*Q-1); //From given tables
R3=3.9*10^3; //Assumed
//R1 is open circuited
R4=(5.03*10^7)/f1;
R5=R4;
R6=10000; //Assumed a std value
R7=10000; //Assumed a std Value
R8=10000; //Assumed a std Value
R9=invr(invr(R6)+invr(R7)+invr(R8))
printf('\nFor Q=8 R1 is open circuited\n')
printf('\nFor Q=8 R2 = %d k ohm\n',R2/1000)
printf('\nFor Q=8 R3 = %.1f k ohm\n',R3/1000)
printf('\nFor Q=8 R4 = %d k ohm\n',R4/1000)
printf('\nFor Q=8 R5 = %d k ohm\n',R5/1000)
printf('\nFor Q=8 R6 = %d k ohm\n',R6/1000)
printf('\nFor Q=8 R7 = %d k ohm\n',R7/1000)
printf('\nFor Q=8 R8 = %d k ohm\n',R8/1000)
printf('\nFor Q=8 R9 = %.2f k ohm\n',R9/1000) |
3c386a9d4bcb475eba3092f0c3320de64c014856 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3768/CH12/EX12.2/Ex12_2.sce | 956111dd4c96400baff0a9945b6c1a7d22ee2d61 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 291 | sce | Ex12_2.sce | //Example number 12.2, Page number 264
clc;clear;
close;
//Variable declaration
n1=1.563; //Core refractive index
n2=1.498; //Cladding refractive index
//Calculation
delta=(n1-n2)/n1; //fractional index change
//Result
printf("fractional index change is %.5f",delta)
|
29f56651e35d93c5bf610afc279ed5029e6e7d16 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1919/CH6/EX6.14/Ex6_14.sce | 4ce51baf1b776c99ca5a617786d61c1aa61ee7bd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,081 | sce | Ex6_14.sce |
// Theory and Problems of Thermodynamics
// Chapter 6
// Thermodynamic Potentials and Availability
// Example 14
clear ;clc;
//Given data
m1 = 5000 // substance produced at unit 1 in kg
T1 = 1273.15 // unit 1 temperature in K
m2 = 5000 // substance produced at unit 1 in kg
T2 = 873.15 // unit 2 temperature in K
Tf = 313.15 // final temp as a source for heat engine in K
T0 = 298.15 // ambient temperature in K
Cp = 1 // specific heat capacity of product in kJ/kg K
// Calculations
TE = (T1+T2)/2 // Equilibrium temperature
//AE = Q-T0*del_s // Available energy of mixture
AE_m = (m1+m2)*Cp*(TE-Tf) - T0*(m1+m2)*Cp*log(TE/Tf)
// Available energy if products are used seperately
AE_s = m1*Cp*(T1-Tf)- T0*m1*Cp*log(T1/Tf) + m2*Cp*(T2-Tf)- T0*m2*Cp*log(T2/Tf)
AW = AE_s - AE_m // Additional work obtainable by incorporating suggestion
// Output Results
mprintf('Additional work obtainable by incorporating suggestion = %4.2f kJ' ,AW);
|
c24e4f14eda323ba18775da5760b454d53aff637 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2072/CH19/EX19.9/Ex19_9.sce | 0787e57c7c1786fdcd21f8b29195e532c2830be3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 201 | sce | Ex19_9.sce | //Example 19.9
clc
N=100//turns
l=.1//in m
n=N/l//in turns/m
mo=4*%pi*10^-7//Tm/A
I=.5//in A
B=n*I*mo
q=1.6*10^-19//in c
v=375//in m/s
F=q*v*(B/2)
disp(B,"Magnetic field in T=")
disp(F,"Force in N=")
|
09a89bc8bb91dfe7a2e55d1ad111cf030654034b | 449d555969bfd7befe906877abab098c6e63a0e8 | /75/CH5/EX5.2/ex_2.sce | 0b96a662d1a41ddecd8c6109ad2fa8bef4d2d54b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 831 | sce | ex_2.sce | // PG (254)
deff('[y]=f(x)','y=exp(x)*cos(x)')
deff('[y]=fp(x)','y=exp(x)*(cos(x)-sin(x))')
deff('[y]=fpp(x)','y=-2*exp(x)*sin(x)')
x0=0;
x1=%pi;
// True value
integrate('exp(x)*cos(x)','x',x0,x1)
// Using Trapezoidal rule
n=2;
h=(x1-x0)/n;
I1 = (x1-x0) * (f(x0)+f(x1)) /4
E1 = -h^2 * (fp(x1)-fp(x0)) /12
n=4;
h=(x1-x0)/n;
I2 = (x1-x0) * (f(x0)+f(x1)) /4
E2 = -h^2 * (fp(x1)-fp(x0)) /12
n=8;
h=(x1-x0)/n;
I3 = (x1-x0) * (f(x0)+f(x1)) /4
E3 = -h^2 * (fp(x1)-fp(x0)) /12
n=16;
h=(x1-x0)/n;
I4 = (x1-x0) * (f(x0)+f(x1)) /4
E4 = -h^2 * (fp(x1)-fp(x0)) /12
n=32;
h=(x1-x0)/n;
I5 = (x1-x0) * (f(x0)+f(x1)) /4
E5 = -h^2 * (fp(x1)-fp(x0)) /12
n=64;
h=(x1-x0)/n;
I6 = (x1-x0) * (f(x0)+f(x1)) /4
E6 = -h^2 * (fp(x1)-fp(x0)) /12
n=128;
h=(x1-x0)/n;
I7 = (x1-x0) * (f(x0)+f(x1)) /4
E7 = -h^2 * (fp(x1)-fp(x0)) /12
|
76036c6ab6864324cda5909eff9f679b9ceabd34 | 1a00eb132340e145c8a7d8fd0ef79a02b24605a2 | /macros/ARDUINO_SERVO_READ_sim.sci | 2e6af29bf980ee9602e8464ae21988351bfdb15d | [] | no_license | manasdas17/Scilab-Arduino-Toolbox | e848d75dc810cb0700df34b1e5c606802631ada4 | 2a6c9d3f9f2e656e1f201cecccd4adfe737175e7 | refs/heads/master | 2018-12-28T15:51:35.378091 | 2015-08-06T07:22:15 | 2015-08-06T07:22:15 | 37,854,821 | 3 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 1,733 | sci | ARDUINO_SERVO_READ_sim.sci | //
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2011-2011 - DIGITEO - Bruno JOFRET
//
// 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
//
//
function block=ARDUINO_SERVO_READ_sim(block,flag)
global port_com arduino_sample_time;
function DEBUG(message)
disp("[DEBUG time = "+string(scicos_time())+"] {"+block.label+"} ARDUINO_ANALOG_READ Simulation: "+message);
endfunction
select flag
case -5
case 0
case 1
pin="7"+ascii(96+block.rpar(1));
write_serial(1,pin,2);
values=[];
value=ascii(0);
while(value~=ascii(13)) then
value=read_serial(1,1);
values=values+value;
end
v=strsubst(values,string(ascii(10)),'')
v=strsubst(v,string(ascii(13)),'')
block.outptr(1)=evstr(v);
case 2
case 3
evout = block.evout(1);
if evout < 0
evout = arduino_sample_time;
else
evout = evout + arduino_sample_time;
end
block.evout(1) = evout;
case 4
disp("init servo read")
if block.rpar(1)==1 then
pin="6a1"
write_serial(1,pin,3);
elseif block.rpar(1)==2 then
pin="6b1"
write_serial(1,pin,3);
else
messagebox("Problem in the number of the servomotor")
error('problem')
end
case 5
case 6
case 9
else
end
endfunction
|
2be22e5af5592b713dc96fa5fa49ed5986f409d3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1697/CH3/EX3.5/Exa3_5.sce | e82842e3f611611de76f7d3f1bfe54df8392a1c8 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 322 | sce | Exa3_5.sce | //Exa 3.5
clc;
clear;
close;
//given data :
//l=lambda/10 meter
//Assume %pi^2 = 10
Rl=2;//in Ohm
disp("Rr=80*%pi^2*(dl/lambda)^2");
disp("dl/lambda = 1/10 : as l=lambda/10 ");
Rr=80*10*(1/10)^2;//in Ohm
disp(Rr,"Radiation Resistance in Ohm : ");
ETA=Rr/(Rr+Rl);//in Ohm
disp(ETA*100," Efficiency inn % : "); |
596b04d3b23d49d69c79b7af9cf30df05c9644de | 089894a36ef33cb3d0f697541716c9b6cd8dcc43 | /NLP_Project/test/blog/ngram/5.18_13.tst | daa533c4017beae4387afab7ca504225d59ba6a5 | [] | 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 | 483,450 | tst | 5.18_13.tst | 18 60:1 70:1 169:2 172:1 345:2 471:1 1035:1 1109:1 1133:1 1176:1 1327:1 1348:1 1578:1 1618:1 1959:1 2016:1 2117:2 2139:1 2179:1 2864:2 2868:2 3087:1 3439:1 3501:1 3547:1 3586:1 3624:2 3646:1 3828:2 3913:1 3950:1 3971:1 4031:1 4103:1 4117:1 4150:1 4215:1 4383:1 4636:1 4738:1 4846:1 4964:2 4984:1 5108:1 5364:1 5376:1 5499:2 5624:2 6086:1 6143:1 6201:1 6261:2 6262:1 6263:1 6314:1 6373:71 6888:1 6998:1 7096:1 7189:1 7442:2 7585:1 7712:1 7733:1 8034:1 8085:1 8218:1 8222:1 8612:1 8720:1 8779:1 8859:1 8888:1 8947:1 9327:1 9468:1 9540:1 9674:1 9679:2 9683:1 9693:1 9735:1 9960:2 9967:1 10199:1 10248:1 10371:1 10698:3 10810:1 10864:1 11013:1 11045:1 11057:1 11095:1 11202:2 11557:1 11814:1 11957:1 11977:1 12058:1 12190:1 12234:1 12409:1 12445:1 12488:1 12502:1 12504:1 12531:1 12776:1 12783:1 12892:2 13036:1 13046:1 13164:1 13384:1 13433:1 13522:1 13549:2 13703:3 13787:1 13992:1 14094:1 14148:1 14330:1 14458:1 14481:1 14553:1 14617:2 14706:1 14785:1 15055:1 15152:1 15266:1 15329:1 15438:2 15504:1 15786:1 15788:1 16034:2 16234:1 16269:1 16751:1 16762:1 16930:2 16976:1 17064:1 17146:3 17385:1 17489:1 17520:1 17680:1 17687:1 17956:1 17965:1 18022:1 18245:1 18506:1 18767:1 19079:1 19086:1 19158:1 19163:3 19404:1 19572:3 19583:1 19642:1 19663:2 19760:1 19898:1 19937:1 20061:1 20225:1 20282:1 20301:1 20356:2 20964:1 21040:1 21061:2 21099:1 21383:1 21680:1 21780:2 21815:1 21907:1 22288:1 22343:1 22826:1 22939:2 22943:1 23305:1 23406:1 23443:1 23471:1 23583:1 23659:1
18 60:2 70:1 169:3 172:2 235:1 345:4 471:2 931:2 1035:1 1109:1 1133:2 1176:1 1317:1 1327:1 1348:1 1349:1 1578:2 1618:1 1704:1 1959:2 2016:1 2117:4 2139:2 2179:2 2369:1 2493:1 2718:1 2864:4 2868:4 3035:1 3087:2 3187:1 3392:2 3439:2 3501:1 3507:1 3547:2 3562:1 3586:1 3624:3 3646:2 3719:1 3828:4 3913:1 3950:1 3971:1 4031:2 4103:2 4117:2 4150:2 4215:2 4342:1 4383:1 4636:2 4738:1 4846:2 4930:1 4950:1 4964:4 4984:1 5108:2 5364:1 5376:1 5427:1 5499:4 5624:3 6086:1 6143:1 6201:1 6261:3 6262:2 6263:1 6314:2 6373:163 6575:1 6609:1 6888:1 6998:2 7096:2 7189:2 7442:4 7585:1 7712:1 7733:1 8034:3 8085:2 8155:1 8218:1 8222:2 8247:1 8612:1 8720:1 8779:1 8859:2 8888:1 8947:1 9304:1 9327:1 9468:2 9540:2 9562:1 9658:1 9674:1 9679:4 9683:2 9693:2 9735:2 9960:3 9967:1 9986:1 9994:1 10164:1 10169:1 10175:1 10199:1 10248:1 10371:1 10435:1 10698:5 10739:1 10810:1 10864:1 11013:2 11045:1 11057:2 11095:1 11202:4 11557:2 11814:1 11957:1 11977:1 11996:1 12058:1 12060:1 12190:2 12234:1 12409:2 12445:1 12447:1 12488:1 12502:2 12504:2 12531:2 12776:2 12783:2 12892:3 13036:1 13046:2 13164:2 13384:1 13433:2 13474:1 13522:1 13549:4 13608:1 13703:5 13787:1 13847:1 13893:1 13992:2 14007:1 14094:2 14148:2 14330:1 14458:1 14481:2 14553:2 14617:4 14706:1 14785:2 15055:1 15092:1 15152:2 15266:2 15329:2 15438:4 15504:2 15595:1 15786:1 15788:1 16004:1 16034:3 16102:1 16234:2 16269:2 16751:1 16762:2 16930:4 16976:1 17064:2 17134:1 17146:5 17385:1 17489:1 17520:1 17524:1 17657:1 17680:2 17687:2 17956:1 17965:2 18000:1 18022:1 18245:1 18506:1 18767:1 19064:1 19079:1 19086:1 19158:2 19163:5 19404:1 19572:5 19583:2 19642:1 19663:3 19760:1 19862:1 19898:1 19937:1 20061:2 20225:2 20282:2 20301:1 20356:4 20964:1 21040:1 21061:4 21099:2 21316:1 21349:1 21383:1 21680:1 21780:4 21815:2 21907:1 22031:1 22288:2 22343:2 22826:1 22939:3 22943:2 23305:2 23406:2 23443:2 23471:1 23583:2 23659:2
18 55:1 60:2 70:1 94:1 96:1 169:3 172:2 235:1 345:4 471:2 588:1 931:3 980:1 1013:1 1035:1 1109:1 1123:1 1133:2 1176:1 1317:1 1327:1 1348:1 1349:1 1578:2 1618:1 1704:1 1959:2 2016:1 2117:4 2139:2 2179:2 2354:1 2355:1 2369:1 2414:1 2484:1 2493:1 2718:1 2864:4 2868:4 3035:1 3062:1 3087:2 3187:1 3209:1 3253:1 3292:1 3355:1 3392:3 3439:2 3474:1 3490:1 3501:1 3507:1 3547:2 3562:1 3586:1 3624:4 3646:2 3719:1 3734:1 3828:4 3913:1 3950:1 3954:1 3971:1 4024:1 4031:2 4099:1 4103:2 4117:2 4150:2 4215:2 4297:1 4314:1 4321:1 4342:1 4383:1 4495:1 4636:2 4684:1 4738:1 4846:2 4930:1 4950:1 4964:4 4970:1 4984:1 5108:2 5140:1 5230:1 5310:1 5364:1 5376:1 5427:1 5499:4 5624:4 6086:1 6143:1 6201:1 6261:4 6262:2 6263:1 6314:2 6373:299 6575:1 6609:1 6622:1 6888:1 6998:2 7096:2 7189:2 7220:1 7442:4 7461:1 7473:1 7585:1 7712:1 7733:1 7867:1 8034:4 8085:2 8155:1 8218:1 8222:2 8247:1 8612:1 8720:1 8738:1 8779:1 8859:2 8888:1 8947:1 9304:1 9327:1 9468:2 9540:2 9562:1 9583:1 9645:1 9658:1 9674:1 9679:4 9683:2 9693:2 9735:2 9872:1 9960:3 9967:2 9986:1 9994:1 10160:1 10164:1 10169:1 10174:1 10175:1 10199:1 10248:1 10371:1 10435:1 10698:5 10739:1 10773:1 10778:1 10789:1 10810:1 10864:1 11013:2 11045:1 11057:2 11095:1 11202:4 11557:2 11814:2 11957:1 11966:1 11977:1 11996:1 12058:1 12060:1 12190:2 12234:1 12251:1 12409:2 12445:1 12447:1 12488:1 12500:1 12502:2 12504:2 12531:2 12776:2 12783:2 12892:3 13036:1 13046:2 13089:1 13164:2 13323:1 13384:1 13433:2 13474:1 13522:1 13549:4 13608:1 13703:5 13787:1 13847:1 13893:1 13992:2 14007:1 14094:2 14136:1 14148:2 14330:1 14379:1 14458:1 14481:2 14553:2 14580:1 14617:4 14706:1 14785:2 15055:1 15092:1 15152:2 15266:2 15282:1 15329:2 15438:4 15504:2 15595:1 15786:1 15788:1 15877:1 16004:1 16034:4 16102:1 16180:1 16234:2 16269:2 16751:1 16762:2 16930:4 16976:1 17064:2 17134:1 17146:5 17385:1 17430:1 17478:1 17489:1 17520:1 17524:1 17651:1 17657:1 17662:1 17680:2 17687:2 17771:1 17857:1 17956:1 17965:2 18000:1 18022:1 18045:1 18245:1 18400:1 18418:1 18506:1 18578:1 18673:1 18767:1 19064:1 19079:1 19086:1 19158:2 19163:5 19404:1 19572:5 19583:2 19642:1 19663:4 19760:1 19862:1 19898:1 19937:1 20061:2 20153:1 20225:2 20282:2 20301:1 20356:4 20543:1 20786:1 20964:1 21040:1 21061:4 21099:2 21316:1 21349:1 21383:1 21428:1 21552:1 21570:1 21680:1 21780:4 21815:2 21907:2 22031:1 22288:2 22343:2 22826:1 22939:4 22943:2 23085:1 23091:1 23305:2 23356:1 23406:2 23443:2 23471:1 23583:2 23659:2
18 55:1 60:2 70:1 94:1 96:1 169:3 172:2 235:1 345:4 452:1 471:2 554:1 588:1 640:1 931:3 980:1 1013:1 1035:1 1109:1 1123:1 1133:2 1176:1 1183:1 1317:1 1327:1 1348:1 1349:1 1578:2 1618:1 1627:1 1704:1 1892:1 1959:2 2016:1 2117:4 2139:2 2145:1 2179:2 2214:1 2354:1 2355:1 2369:1 2414:2 2444:1 2473:1 2484:1 2493:1 2522:1 2718:1 2791:1 2864:4 2868:4 3035:1 3062:1 3087:2 3187:1 3209:1 3253:1 3267:1 3292:1 3355:1 3392:3 3439:2 3474:2 3484:1 3490:1 3501:1 3507:1 3547:2 3562:1 3586:1 3606:1 3624:5 3646:2 3719:1 3734:2 3745:1 3828:4 3913:1 3950:1 3954:1 3971:1 4024:1 4031:2 4099:1 4103:2 4117:2 4150:2 4210:1 4215:2 4271:1 4297:1 4314:1 4321:1 4342:1 4383:1 4400:1 4495:1 4618:1 4636:2 4684:2 4738:1 4846:2 4861:1 4899:1 4924:1 4930:1 4950:1 4964:4 4970:1 4984:1 5047:1 5085:1 5108:2 5140:1 5230:1 5310:1 5364:1 5376:2 5427:1 5499:4 5624:5 5876:1 6069:1 6083:1 6086:1 6131:1 6143:1 6201:1 6261:5 6262:2 6263:1 6314:2 6373:444 6437:1 6575:1 6609:1 6622:1 6888:1 6947:1 6958:1 6998:2 7003:1 7096:2 7189:2 7220:1 7287:1 7442:4 7461:1 7473:1 7585:1 7588:1 7712:1 7733:1 7739:1 7867:1 8034:4 8085:2 8155:1 8218:1 8222:2 8247:1 8371:1 8597:1 8612:1 8720:1 8738:1 8779:1 8859:2 8888:1 8947:1 9180:1 9194:1 9304:1 9327:1 9468:2 9540:2 9562:1 9583:1 9645:1 9658:1 9674:1 9679:4 9683:2 9693:2 9735:2 9872:1 9960:3 9967:2 9986:1 9990:1 9994:1 10160:1 10164:1 10169:1 10174:1 10175:1 10199:1 10248:1 10370:1 10371:1 10435:1 10504:1 10698:5 10739:1 10754:1 10773:1 10778:1 10789:1 10810:1 10864:1 10954:1 10999:1 11013:2 11045:1 11057:2 11095:1 11103:1 11202:4 11557:2 11814:2 11863:1 11923:1 11957:1 11966:1 11977:1 11996:1 12058:1 12060:1 12190:2 12234:1 12251:1 12408:1 12409:2 12445:1 12447:1 12488:1 12500:1 12502:2 12504:2 12531:2 12776:2 12783:2 12892:3 12929:1 13036:1 13046:2 13089:1 13164:2 13216:1 13286:1 13316:1 13323:2 13334:1 13337:1 13384:1 13433:2 13474:1 13522:2 13549:4 13598:1 13608:1 13703:5 13787:1 13812:1 13847:1 13893:1 13977:1 13992:2 14007:1 14016:1 14094:2 14136:1 14148:2 14246:1 14330:1 14379:1 14415:1 14445:1 14458:1 14481:2 14553:2 14580:1 14617:4 14706:1 14785:2 15055:1 15092:1 15121:1 15152:2 15266:2 15282:1 15329:3 15343:1 15361:1 15438:4 15504:2 15595:1 15786:1 15788:1 15810:1 15877:1 15923:1 16004:1 16034:5 16102:1 16180:1 16234:2 16248:1 16269:2 16666:1 16751:1 16762:2 16780:1 16930:4 16976:1 17064:2 17069:1 17134:1 17146:5 17385:1 17430:1 17478:1 17489:1 17520:1 17524:1 17609:1 17651:1 17657:1 17662:1 17680:2 17687:2 17771:1 17857:1 17956:1 17965:2 18000:1 18022:1 18045:1 18245:1 18304:1 18400:1 18418:1 18506:1 18578:1 18589:1 18627:1 18673:1 18767:1 18811:1 19048:1 19064:1 19079:1 19086:1 19132:1 19142:1 19158:2 19163:5 19404:1 19572:5 19583:2 19642:1 19663:5 19711:1 19760:1 19862:1 19898:1 19937:1 20036:1 20061:2 20153:1 20157:1 20225:2 20282:2 20301:1 20318:1 20356:4 20543:2 20786:1 20964:1 21040:1 21061:4 21099:2 21256:1 21316:1 21349:1 21363:1 21383:1 21403:1 21428:1 21446:1 21454:1 21552:2 21570:1 21680:1 21686:1 21777:1 21780:4 21815:2 21876:1 21907:2 21942:1 22031:1 22166:1 22288:2 22343:2 22494:1 22552:1 22565:1 22826:1 22838:1 22939:5 22943:2 23011:1 23085:1 23091:1 23184:1 23305:2 23310:1 23356:1 23406:2 23443:2 23471:1 23583:2 23659:2
18 13:1 55:1 60:2 70:1 94:1 96:1 169:3 172:2 235:1 345:4 412:1 452:1 471:2 507:1 554:2 588:1 625:1 640:1 931:4 980:1 1013:1 1035:1 1058:1 1081:1 1109:1 1123:1 1133:2 1176:1 1183:1 1317:1 1327:1 1348:1 1349:1 1414:1 1439:1 1578:2 1590:1 1618:1 1627:1 1656:1 1704:1 1892:1 1959:2 2016:1 2018:1 2039:1 2117:4 2139:2 2145:1 2179:2 2214:1 2354:1 2355:1 2369:1 2414:2 2444:1 2473:1 2484:2 2493:1 2522:1 2579:1 2718:1 2788:1 2791:2 2851:1 2864:4 2868:4 3035:1 3044:1 3062:1 3087:2 3187:1 3202:1 3209:1 3253:1 3267:1 3292:1 3355:1 3392:4 3410:1 3439:2 3474:2 3484:1 3490:1 3498:1 3501:1 3507:1 3547:2 3562:1 3586:2 3606:1 3624:7 3646:2 3719:1 3734:2 3745:1 3754:1 3828:4 3913:1 3950:1 3954:1 3971:1 3984:1 4024:1 4031:2 4099:1 4103:2 4117:2 4150:2 4210:1 4215:2 4249:1 4271:1 4287:1 4297:1 4312:1 4314:2 4321:1 4342:1 4383:1 4400:1 4495:2 4563:1 4618:1 4636:2 4679:1 4684:2 4738:1 4846:2 4861:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4984:1 5047:1 5085:1 5108:2 5140:1 5230:1 5310:1 5364:1 5376:4 5427:1 5499:4 5624:7 5876:1 5913:1 5949:1 6069:1 6083:1 6086:1 6131:1 6143:2 6201:1 6261:7 6262:2 6263:1 6314:2 6373:567 6437:1 6575:1 6609:1 6622:1 6708:1 6774:1 6888:1 6947:1 6958:1 6998:2 7003:1 7096:2 7189:2 7220:1 7287:1 7442:4 7461:1 7473:1 7519:1 7528:1 7551:1 7585:1 7588:1 7654:1 7712:1 7733:1 7739:1 7867:1 7951:1 8034:6 8085:2 8102:1 8155:1 8218:1 8222:2 8247:1 8319:1 8371:2 8597:1 8612:1 8626:1 8720:1 8729:1 8738:1 8779:1 8859:2 8888:1 8947:1 9180:1 9194:1 9304:1 9327:1 9366:1 9468:2 9540:2 9562:1 9583:1 9645:1 9658:1 9674:1 9679:4 9683:2 9693:2 9735:2 9829:1 9872:1 9960:3 9967:2 9986:1 9990:1 9994:1 10027:1 10160:1 10164:1 10169:1 10174:1 10175:1 10199:1 10248:1 10370:1 10371:1 10435:1 10504:1 10698:5 10739:1 10754:1 10773:1 10778:1 10789:1 10810:1 10864:1 10954:1 10999:1 11013:2 11037:1 11044:1 11045:1 11057:2 11095:1 11099:1 11103:1 11202:4 11557:2 11814:2 11863:1 11878:1 11923:1 11957:1 11966:1 11977:1 11996:1 12022:1 12058:1 12060:1 12190:2 12234:1 12251:1 12399:1 12408:1 12409:2 12417:1 12445:1 12447:1 12488:2 12500:1 12502:2 12504:2 12519:1 12531:3 12776:2 12783:2 12892:3 12914:1 12929:1 13036:1 13046:2 13089:1 13164:2 13198:1 13216:1 13286:2 13316:1 13323:2 13329:1 13334:1 13337:1 13384:1 13433:2 13474:1 13522:3 13549:4 13598:2 13608:1 13666:1 13703:5 13787:1 13802:1 13812:2 13847:1 13893:1 13977:1 13992:2 14007:1 14016:1 14056:1 14094:2 14136:2 14148:2 14246:1 14330:1 14379:1 14386:1 14415:1 14445:1 14458:1 14481:2 14553:2 14580:1 14617:4 14706:1 14785:2 15054:1 15055:1 15092:1 15121:1 15152:2 15266:2 15282:1 15295:1 15329:3 15343:1 15361:1 15438:4 15504:2 15514:1 15595:1 15786:1 15788:1 15810:1 15877:1 15896:1 15923:1 16004:1 16034:7 16102:1 16180:1 16234:2 16248:1 16269:2 16666:2 16751:1 16762:2 16780:1 16791:1 16862:1 16930:4 16943:1 16976:1 17064:2 17069:1 17083:1 17134:1 17146:5 17194:1 17385:2 17413:1 17430:1 17478:1 17489:1 17520:1 17524:1 17609:1 17651:1 17657:1 17662:1 17680:2 17687:2 17771:1 17857:1 17956:1 17965:2 18000:1 18022:1 18045:1 18245:1 18304:1 18400:1 18418:1 18490:1 18506:1 18576:1 18578:2 18589:1 18627:1 18638:1 18673:1 18700:1 18767:1 18811:1 18980:1 19048:1 19064:1 19079:1 19086:2 19132:1 19142:1 19158:2 19163:5 19302:1 19404:1 19479:1 19491:1 19498:1 19572:5 19583:2 19642:1 19663:7 19711:1 19760:1 19862:1 19898:1 19937:1 20036:1 20061:2 20153:1 20157:1 20186:1 20225:2 20267:1 20282:2 20301:1 20318:1 20356:4 20543:2 20592:1 20639:1 20666:1 20786:1 20964:1 21032:1 21040:1 21061:4 21098:1 21099:2 21256:2 21316:1 21349:2 21363:1 21383:1 21393:1 21403:1 21428:1 21446:1 21454:1 21476:1 21552:2 21570:1 21612:1 21680:1 21686:1 21690:1 21693:1 21777:1 21780:4 21815:2 21876:1 21907:2 21942:1 22011:1 22031:1 22064:1 22166:1 22288:2 22343:2 22494:1 22552:1 22565:1 22634:1 22654:1 22826:1 22838:1 22841:1 22939:7 22943:2 23011:1 23085:2 23091:1 23184:1 23305:2 23310:1 23356:1 23406:2 23443:2 23470:1 23471:1 23583:2 23659:2
18 13:1 38:1 55:1 60:2 70:1 94:1 96:1 169:4 172:2 235:1 345:4 379:1 412:1 452:1 471:2 507:1 524:1 554:2 588:1 625:1 640:1 931:4 980:1 1013:1 1035:1 1058:1 1072:1 1081:1 1109:1 1123:1 1133:2 1176:1 1183:1 1196:1 1317:1 1327:2 1348:1 1349:1 1362:1 1414:1 1439:1 1578:2 1590:2 1618:1 1627:1 1644:1 1656:1 1704:1 1769:1 1892:1 1923:1 1959:2 2016:1 2018:1 2039:1 2117:4 2139:2 2140:1 2145:1 2179:2 2214:1 2354:1 2355:1 2369:1 2414:2 2444:1 2473:1 2484:2 2493:1 2522:1 2579:1 2718:1 2788:1 2791:3 2851:1 2864:4 2868:4 3035:1 3038:1 3044:1 3062:1 3087:2 3121:1 3128:1 3187:1 3202:2 3209:1 3253:1 3267:1 3292:1 3355:1 3392:4 3410:1 3439:2 3474:2 3484:1 3488:1 3490:1 3498:1 3501:1 3507:1 3547:2 3562:1 3566:1 3586:2 3606:1 3607:1 3624:7 3646:2 3719:1 3734:3 3745:1 3754:1 3771:1 3803:1 3828:4 3886:1 3913:1 3950:1 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4065:1 4099:1 4103:2 4117:2 4150:2 4210:1 4215:2 4229:1 4235:1 4249:1 4269:1 4271:1 4287:1 4297:1 4312:1 4314:2 4315:1 4321:1 4342:1 4383:1 4400:1 4495:2 4563:1 4618:1 4636:2 4679:1 4684:2 4738:1 4846:2 4861:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4984:1 5047:1 5085:1 5108:2 5140:1 5230:1 5310:1 5364:1 5376:4 5396:1 5427:1 5454:1 5499:4 5624:7 5876:1 5886:1 5913:2 5949:1 5999:1 6056:1 6069:1 6083:1 6086:1 6131:1 6143:2 6201:1 6261:7 6262:2 6263:1 6314:2 6364:1 6371:1 6373:742 6437:1 6509:1 6575:1 6609:1 6622:1 6708:1 6774:1 6888:1 6947:1 6958:1 6998:2 7003:1 7040:1 7096:2 7189:2 7220:1 7287:1 7324:1 7420:1 7442:4 7461:1 7473:1 7519:1 7528:1 7551:1 7557:1 7585:1 7588:1 7654:2 7712:1 7717:1 7724:1 7733:1 7739:1 7745:1 7867:1 7890:1 7951:1 7976:1 7996:1 8002:1 8034:7 8085:3 8102:1 8155:2 8218:1 8222:2 8247:1 8319:1 8337:1 8371:2 8597:1 8612:1 8626:1 8630:1 8670:1 8703:1 8720:1 8729:1 8738:1 8779:1 8831:1 8840:1 8859:2 8888:1 8945:1 8947:1 9026:1 9150:1 9180:1 9194:1 9304:1 9327:1 9366:1 9397:1 9468:2 9540:2 9562:1 9583:1 9645:1 9656:1 9658:1 9674:1 9679:4 9683:2 9693:2 9735:2 9829:1 9872:1 9895:1 9939:1 9960:4 9967:2 9986:1 9990:1 9994:2 10027:1 10160:1 10164:1 10169:1 10174:1 10175:1 10186:1 10199:1 10248:1 10273:1 10370:1 10371:1 10374:1 10435:1 10504:1 10698:5 10739:1 10754:1 10773:1 10778:1 10789:1 10810:1 10864:1 10954:1 10999:1 11013:2 11037:1 11044:1 11045:1 11057:2 11095:1 11099:1 11103:1 11167:1 11173:1 11202:4 11234:1 11557:2 11814:2 11863:1 11871:1 11878:1 11923:1 11957:1 11966:1 11977:1 11996:1 12022:2 12058:1 12060:1 12190:2 12234:2 12251:1 12263:1 12320:1 12375:1 12399:1 12408:1 12409:2 12417:1 12445:1 12447:1 12488:2 12500:1 12502:2 12504:2 12519:1 12531:4 12586:1 12737:1 12776:2 12781:1 12783:2 12795:1 12848:1 12892:4 12914:1 12929:1 13006:1 13027:1 13036:1 13046:2 13089:1 13164:2 13198:1 13216:2 13286:2 13316:1 13323:2 13329:1 13334:1 13337:1 13384:1 13433:2 13464:1 13474:1 13522:3 13549:4 13598:3 13608:1 13666:2 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13876:1 13893:1 13977:1 13992:2 14007:1 14016:1 14056:1 14094:2 14136:2 14148:2 14246:1 14330:1 14379:1 14386:1 14415:1 14445:1 14458:1 14481:2 14553:2 14580:1 14617:4 14659:1 14679:1 14706:1 14785:2 15054:1 15055:1 15092:1 15121:1 15152:2 15156:1 15266:2 15282:1 15295:1 15329:3 15343:1 15361:1 15438:4 15504:2 15514:1 15584:1 15595:1 15786:1 15788:1 15810:1 15876:1 15877:1 15896:1 15923:1 16004:1 16034:7 16102:1 16180:1 16234:2 16248:1 16269:2 16650:1 16666:2 16751:1 16762:2 16780:1 16791:2 16862:1 16930:4 16943:1 16976:1 17064:2 17069:1 17083:1 17091:1 17134:1 17146:5 17194:1 17385:2 17387:1 17412:1 17413:1 17430:1 17478:1 17489:1 17520:1 17524:1 17609:1 17636:1 17651:1 17657:1 17662:1 17680:2 17687:2 17771:1 17857:1 17956:1 17965:2 18000:1 18022:1 18045:1 18131:1 18245:1 18304:1 18400:1 18418:1 18440:1 18490:1 18506:1 18533:1 18576:1 18578:2 18589:1 18627:1 18638:1 18673:1 18700:1 18767:1 18811:1 18980:1 19048:1 19064:1 19079:1 19086:2 19132:1 19142:1 19158:2 19163:5 19284:1 19302:1 19404:1 19479:1 19491:1 19498:1 19572:5 19583:2 19642:1 19646:1 19663:7 19711:1 19760:1 19813:1 19862:1 19898:1 19937:1 20036:1 20061:2 20090:1 20153:1 20157:1 20186:1 20225:2 20267:1 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20543:2 20592:1 20639:1 20666:1 20685:1 20786:1 20943:1 20964:1 20993:1 21032:1 21040:1 21061:4 21098:1 21099:2 21138:1 21212:1 21256:2 21316:1 21324:1 21343:1 21349:4 21363:1 21383:1 21393:1 21403:1 21421:1 21428:1 21446:1 21454:1 21476:1 21552:2 21570:1 21591:1 21610:1 21612:1 21680:1 21686:1 21690:1 21693:1 21777:1 21780:4 21800:1 21815:2 21852:1 21876:1 21907:2 21942:1 22011:1 22031:1 22064:1 22166:1 22288:2 22343:2 22369:1 22440:1 22494:1 22552:1 22565:1 22634:1 22654:1 22826:1 22838:1 22841:1 22939:7 22943:2 23004:1 23011:1 23085:2 23091:1 23180:1 23184:1 23305:2 23310:1 23356:1 23406:2 23443:2 23445:1 23470:1 23471:1 23583:2 23659:2
18 13:1 38:1 55:1 60:2 70:1 94:1 96:1 169:4 172:2 235:1 345:4 379:1 380:1 412:1 452:1 471:2 507:1 524:1 531:1 554:2 588:1 625:1 640:1 931:4 945:1 980:1 1013:1 1035:1 1058:1 1072:1 1081:1 1109:1 1123:1 1133:2 1176:1 1183:1 1196:1 1197:1 1317:1 1327:2 1348:1 1349:1 1362:1 1414:1 1439:1 1493:1 1578:2 1590:2 1618:1 1623:1 1627:1 1644:2 1656:1 1704:1 1769:1 1892:1 1923:1 1959:2 2016:1 2018:1 2039:1 2062:1 2117:4 2139:2 2140:1 2145:1 2158:1 2179:2 2214:1 2284:1 2329:1 2354:1 2355:1 2369:1 2414:2 2444:1 2473:1 2484:2 2493:1 2522:1 2564:1 2572:1 2579:1 2718:1 2788:1 2791:3 2851:1 2864:4 2868:4 2926:1 3035:1 3038:1 3044:1 3062:1 3087:2 3101:1 3121:1 3128:1 3184:1 3187:1 3202:3 3209:1 3253:1 3267:1 3292:1 3294:1 3355:1 3392:4 3410:1 3439:2 3474:2 3484:1 3488:1 3490:1 3498:1 3501:1 3507:1 3547:2 3562:1 3566:1 3568:1 3586:2 3606:1 3607:1 3624:8 3646:2 3719:1 3734:3 3745:2 3754:1 3771:1 3803:1 3828:4 3865:2 3886:1 3913:1 3950:1 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4117:2 4150:2 4210:1 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:1 4297:1 4312:1 4314:2 4315:1 4321:1 4342:1 4383:1 4400:1 4471:1 4495:2 4563:1 4618:1 4636:2 4679:2 4684:2 4738:1 4821:1 4846:2 4861:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4983:1 4984:1 5047:1 5085:1 5108:2 5140:1 5230:1 5310:1 5364:1 5376:4 5396:1 5427:1 5454:1 5499:4 5624:8 5876:1 5886:1 5913:2 5949:1 5999:1 6056:1 6069:1 6083:1 6086:1 6131:1 6143:2 6201:1 6261:8 6262:2 6263:1 6314:2 6364:1 6371:1 6373:847 6437:1 6490:1 6509:1 6575:1 6593:1 6609:1 6622:1 6703:1 6708:1 6758:1 6769:1 6774:1 6888:1 6947:1 6958:1 6998:2 7003:1 7040:1 7096:2 7189:2 7220:1 7287:1 7324:1 7420:1 7442:4 7461:1 7473:1 7519:1 7528:1 7551:1 7557:1 7585:1 7588:1 7594:1 7654:2 7712:4 7713:1 7717:1 7724:2 7733:1 7739:1 7745:1 7840:1 7867:1 7890:1 7928:1 7951:1 7976:1 7996:1 8002:1 8034:7 8085:3 8102:1 8134:1 8155:2 8218:1 8222:2 8247:1 8319:1 8337:1 8371:2 8579:1 8597:1 8612:1 8626:1 8630:1 8670:1 8703:1 8720:1 8729:1 8738:1 8779:1 8831:1 8840:1 8859:2 8888:1 8945:1 8947:1 8972:1 9026:1 9150:1 9180:1 9194:1 9304:2 9327:1 9366:1 9397:1 9437:1 9468:2 9540:2 9562:1 9583:1 9624:1 9645:1 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9735:2 9829:1 9869:1 9872:1 9895:1 9939:1 9960:4 9967:2 9986:1 9990:1 9994:2 10027:1 10125:1 10160:1 10164:1 10169:1 10174:1 10175:1 10186:1 10199:1 10248:1 10273:1 10370:1 10371:1 10374:1 10435:1 10504:2 10698:5 10739:1 10754:1 10773:1 10778:1 10789:1 10810:1 10856:1 10864:1 10944:1 10954:1 10999:1 11013:2 11037:1 11044:1 11045:1 11057:2 11095:1 11099:1 11103:1 11167:1 11173:1 11202:4 11210:1 11234:1 11335:1 11458:1 11507:1 11520:1 11546:1 11557:2 11573:1 11801:1 11814:2 11863:1 11871:1 11878:1 11923:1 11929:1 11957:1 11966:1 11977:1 11996:1 12022:3 12055:1 12058:1 12060:1 12111:1 12190:2 12220:1 12234:2 12251:1 12263:1 12320:1 12372:1 12375:1 12399:1 12408:1 12409:2 12417:1 12445:1 12447:1 12456:2 12488:2 12500:1 12502:2 12504:2 12506:1 12519:1 12531:5 12586:1 12631:1 12737:1 12776:2 12781:1 12783:2 12795:1 12848:1 12892:4 12914:1 12929:1 13006:1 13027:1 13036:1 13046:2 13089:1 13164:2 13198:1 13216:2 13251:1 13286:2 13316:1 13323:2 13329:1 13334:1 13337:1 13384:1 13433:2 13449:1 13464:1 13474:1 13522:3 13549:4 13598:3 13608:1 13666:3 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13876:1 13893:1 13903:1 13977:1 13992:2 14007:1 14016:1 14056:1 14094:2 14136:2 14148:2 14195:1 14246:1 14330:1 14379:1 14386:1 14401:1 14415:1 14445:1 14458:1 14481:2 14553:2 14562:1 14580:1 14608:1 14617:4 14659:1 14670:1 14679:1 14706:1 14761:1 14785:2 14873:1 15054:1 15055:1 15092:1 15107:1 15121:1 15152:2 15156:1 15164:1 15266:2 15282:1 15295:1 15329:3 15343:1 15361:1 15384:1 15438:4 15504:2 15514:1 15584:1 15595:1 15683:1 15786:1 15788:1 15810:1 15876:1 15877:1 15896:1 15897:1 15923:1 16004:1 16034:8 16102:1 16180:1 16186:1 16234:2 16248:1 16269:2 16424:1 16469:1 16523:1 16570:1 16578:2 16628:1 16650:1 16666:2 16751:1 16762:2 16780:1 16791:3 16831:1 16857:1 16862:1 16919:1 16930:4 16943:2 16976:1 17064:2 17069:1 17083:1 17091:1 17134:1 17146:5 17194:1 17385:2 17387:1 17412:1 17413:1 17430:1 17478:1 17489:1 17520:1 17524:1 17609:1 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17771:1 17797:1 17857:1 17956:1 17965:2 18000:1 18022:1 18045:1 18131:1 18138:1 18245:1 18304:1 18400:1 18418:1 18440:1 18449:1 18490:1 18506:2 18518:1 18533:1 18534:1 18576:1 18578:2 18589:1 18627:1 18638:1 18673:1 18700:1 18767:1 18811:1 18980:1 19048:1 19064:1 19079:1 19086:2 19132:1 19142:1 19158:2 19163:5 19284:1 19302:1 19404:1 19431:1 19479:1 19491:1 19498:1 19572:5 19583:2 19642:1 19646:1 19663:8 19711:1 19760:1 19813:1 19862:1 19898:1 19937:1 20036:1 20061:2 20090:1 20153:1 20157:1 20186:2 20225:2 20267:1 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20471:1 20524:1 20532:1 20543:2 20592:1 20639:1 20646:1 20666:1 20685:1 20786:1 20883:1 20943:1 20964:1 20993:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21138:1 21212:1 21256:2 21316:1 21324:1 21343:2 21349:5 21356:1 21363:1 21383:1 21393:1 21403:1 21409:1 21421:1 21428:1 21446:1 21454:1 21476:1 21552:2 21570:1 21591:1 21594:1 21610:1 21612:1 21680:1 21686:1 21690:1 21693:1 21777:1 21780:4 21800:1 21815:2 21852:1 21876:1 21907:2 21942:1 22011:1 22031:1 22064:1 22103:1 22159:1 22166:1 22288:2 22343:2 22369:1 22440:1 22494:1 22550:1 22552:1 22565:1 22634:1 22654:1 22822:1 22826:1 22838:1 22841:2 22939:8 22943:2 23004:1 23011:1 23085:2 23091:1 23180:1 23184:1 23235:1 23275:1 23305:2 23310:1 23356:1 23406:2 23433:1 23443:2 23445:1 23470:1 23471:1 23561:1 23583:2 23659:2
18 13:1 38:1 55:1 60:2 70:1 94:1 96:1 98:1 133:1 168:1 169:4 172:2 235:1 291:1 345:4 379:1 380:1 412:1 452:1 471:2 485:1 507:1 524:1 531:1 554:2 588:2 625:1 640:1 808:1 931:4 945:1 980:1 1013:1 1035:1 1058:1 1072:1 1081:1 1109:1 1123:1 1133:2 1176:1 1183:1 1196:1 1197:1 1300:1 1317:1 1327:2 1348:1 1349:1 1362:1 1414:1 1439:1 1493:1 1578:2 1590:2 1618:1 1623:1 1627:1 1644:2 1656:1 1704:1 1769:1 1892:2 1923:1 1959:2 2016:1 2018:1 2039:1 2062:1 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2214:1 2284:1 2329:1 2344:1 2354:1 2355:1 2369:1 2414:2 2428:1 2444:1 2473:1 2484:2 2493:1 2522:1 2564:1 2572:1 2579:1 2718:1 2779:1 2788:1 2791:3 2851:1 2864:4 2868:4 2926:1 2959:1 3035:1 3038:1 3044:1 3062:1 3087:2 3101:1 3121:1 3128:1 3184:1 3187:1 3202:3 3209:1 3231:1 3253:1 3267:1 3292:1 3294:1 3355:1 3375:1 3392:4 3410:1 3439:2 3474:2 3484:1 3488:1 3490:1 3498:2 3501:1 3507:1 3547:2 3562:1 3566:1 3568:1 3586:2 3606:1 3607:1 3624:9 3646:2 3719:1 3734:4 3745:2 3754:1 3771:1 3803:1 3828:4 3865:2 3886:1 3913:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4117:2 4150:2 4210:1 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:1 4297:1 4312:1 4314:2 4315:1 4321:1 4342:1 4383:1 4400:1 4471:1 4495:2 4510:1 4563:1 4618:1 4636:2 4651:1 4679:2 4684:3 4738:1 4751:1 4798:1 4821:1 4846:2 4861:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4983:1 4984:1 5047:1 5085:1 5108:2 5140:2 5206:1 5230:1 5310:1 5318:1 5323:1 5364:1 5376:4 5396:1 5427:1 5450:1 5454:1 5499:4 5624:9 5876:1 5886:1 5913:2 5949:1 5959:1 5999:1 6007:1 6056:1 6069:1 6083:1 6086:1 6131:1 6143:2 6201:1 6261:9 6262:2 6263:1 6277:1 6314:2 6364:1 6371:1 6373:966 6437:1 6444:1 6465:1 6490:1 6509:1 6575:1 6593:1 6609:1 6622:1 6703:1 6708:1 6745:1 6758:1 6769:1 6774:1 6888:1 6947:1 6958:1 6998:2 7003:1 7040:1 7096:2 7156:1 7189:2 7220:2 7257:1 7287:1 7324:1 7420:1 7442:4 7461:1 7473:1 7519:1 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7654:2 7712:4 7713:1 7717:1 7724:2 7733:1 7739:1 7745:1 7840:1 7867:2 7890:1 7903:1 7928:1 7937:1 7943:1 7951:1 7976:1 7996:1 8002:1 8034:7 8085:3 8102:1 8134:1 8155:2 8218:1 8222:2 8247:1 8261:1 8319:1 8337:1 8345:1 8371:2 8479:1 8562:1 8579:1 8597:1 8612:1 8626:1 8630:1 8670:1 8692:1 8703:1 8720:1 8729:1 8738:1 8779:1 8786:1 8831:1 8840:1 8859:2 8888:1 8910:1 8945:1 8947:1 8972:1 8985:1 9026:1 9150:1 9180:1 9194:1 9304:2 9327:2 9366:1 9397:1 9437:1 9468:2 9540:2 9562:1 9583:1 9624:1 9645:1 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9735:2 9829:1 9869:1 9872:2 9895:1 9910:1 9939:1 9960:5 9967:3 9986:1 9990:1 9994:2 10027:1 10056:1 10125:1 10160:1 10164:1 10169:1 10170:1 10174:1 10175:1 10186:1 10199:1 10248:1 10273:1 10370:1 10371:2 10374:1 10435:1 10454:1 10494:1 10504:3 10605:1 10698:5 10737:1 10739:1 10754:1 10773:1 10778:1 10789:1 10810:1 10856:1 10864:1 10944:1 10954:1 10999:1 11013:2 11037:1 11044:1 11045:1 11057:2 11095:1 11099:1 11103:1 11167:1 11173:1 11202:4 11210:1 11234:1 11335:1 11458:1 11507:1 11520:1 11546:1 11557:2 11573:1 11801:1 11814:2 11863:1 11871:1 11878:1 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:3 12055:1 12058:1 12060:1 12111:1 12190:2 12214:1 12220:1 12234:2 12251:1 12263:1 12311:1 12320:1 12372:1 12375:1 12399:1 12408:1 12409:2 12417:1 12445:1 12447:1 12456:2 12488:2 12500:1 12502:2 12504:2 12506:1 12514:1 12519:1 12531:5 12568:1 12586:1 12631:1 12733:1 12737:1 12776:2 12781:1 12783:2 12795:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13046:2 13089:1 13147:1 13164:2 13198:1 13216:2 13251:2 13286:2 13316:1 13323:2 13329:1 13334:1 13337:1 13384:1 13433:2 13449:1 13464:1 13474:2 13522:3 13549:4 13598:3 13608:1 13666:3 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13876:1 13893:1 13903:1 13977:1 13992:2 14007:1 14016:1 14056:1 14094:2 14136:2 14148:2 14195:1 14246:1 14330:2 14379:1 14386:1 14401:1 14415:1 14445:1 14458:1 14481:2 14530:1 14553:2 14562:2 14580:1 14608:1 14617:4 14659:1 14670:1 14679:1 14706:1 14761:1 14785:2 14873:1 15054:1 15055:1 15092:1 15107:1 15121:2 15152:2 15156:1 15164:1 15266:2 15282:1 15295:1 15329:3 15343:1 15361:1 15384:1 15438:4 15504:2 15514:1 15584:1 15595:1 15683:1 15761:1 15786:1 15788:1 15810:1 15831:1 15865:1 15871:1 15876:1 15877:1 15896:1 15897:1 15923:1 15988:1 16004:1 16034:9 16102:1 16180:2 16186:1 16234:2 16248:1 16269:2 16424:1 16469:1 16523:1 16570:2 16578:2 16628:1 16650:1 16666:2 16713:1 16751:1 16762:2 16780:1 16791:3 16809:1 16831:1 16857:1 16862:1 16919:1 16930:4 16943:2 16976:1 17064:2 17069:1 17083:1 17091:1 17134:1 17146:5 17194:1 17385:2 17387:1 17407:1 17412:2 17413:1 17417:1 17422:1 17430:1 17478:1 17489:1 17520:1 17524:1 17609:1 17626:1 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17771:1 17797:1 17857:1 17861:1 17956:1 17965:2 18000:1 18022:1 18045:2 18074:1 18131:1 18138:1 18245:1 18304:1 18400:1 18418:1 18440:1 18449:1 18490:1 18506:2 18518:1 18533:1 18534:1 18576:1 18578:2 18589:1 18619:1 18627:1 18638:1 18673:1 18700:1 18767:1 18811:1 18980:1 19007:1 19048:1 19064:1 19079:1 19086:2 19132:1 19142:1 19158:2 19163:5 19193:1 19284:1 19302:1 19404:1 19431:1 19448:1 19479:1 19491:1 19498:1 19572:5 19583:2 19642:1 19646:1 19663:9 19695:1 19711:1 19760:2 19813:1 19862:1 19898:1 19937:1 20036:1 20061:2 20074:1 20090:1 20153:1 20157:1 20186:2 20223:1 20225:2 20267:1 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20471:1 20524:1 20532:1 20543:2 20592:1 20639:1 20646:2 20666:1 20685:1 20785:1 20786:1 20883:1 20943:1 20964:1 20993:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21138:1 21200:1 21212:1 21256:2 21316:1 21324:1 21343:2 21349:5 21356:1 21363:1 21383:1 21393:1 21403:1 21409:1 21421:1 21428:1 21446:1 21454:1 21476:1 21552:2 21570:1 21574:1 21591:1 21594:1 21610:1 21612:1 21680:1 21686:1 21690:1 21693:1 21777:1 21780:4 21800:1 21815:2 21852:1 21876:1 21884:1 21907:3 21942:1 22011:1 22031:1 22051:1 22064:1 22103:1 22159:1 22166:1 22288:2 22343:2 22369:1 22440:1 22477:1 22494:1 22550:1 22552:1 22565:1 22634:1 22654:1 22722:1 22822:1 22826:1 22838:1 22841:2 22939:9 22943:2 23004:1 23011:1 23085:2 23091:1 23180:1 23184:1 23235:1 23275:1 23305:2 23310:1 23356:1 23406:2 23425:1 23433:1 23443:2 23445:1 23470:1 23471:1 23517:1 23561:1 23583:2 23659:2
18 13:1 32:1 38:1 55:1 60:2 70:1 94:1 96:1 98:2 133:1 168:1 169:4 172:2 235:1 291:1 336:1 345:4 379:1 380:1 412:2 452:1 471:2 485:1 503:1 507:1 524:1 531:1 554:2 588:2 625:1 640:1 808:1 931:5 945:1 966:1 980:1 1013:1 1035:1 1058:1 1072:1 1081:1 1109:1 1123:1 1133:2 1171:1 1176:1 1183:1 1196:1 1197:1 1300:1 1317:1 1327:2 1348:1 1349:1 1362:1 1385:1 1414:1 1439:1 1493:1 1578:2 1590:3 1618:1 1623:1 1627:1 1644:2 1656:1 1704:1 1769:1 1892:2 1923:1 1959:2 1964:1 1968:1 2016:1 2018:1 2039:1 2062:1 2081:1 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2214:1 2284:1 2329:1 2344:1 2354:1 2355:1 2366:1 2369:1 2414:2 2428:1 2444:1 2473:1 2484:2 2489:1 2492:1 2493:1 2522:1 2564:1 2572:2 2579:1 2718:1 2779:1 2788:1 2791:3 2851:1 2864:4 2868:4 2926:1 2959:1 3035:1 3038:1 3044:2 3062:1 3087:2 3101:1 3121:1 3128:1 3184:1 3187:1 3202:3 3209:1 3231:1 3253:1 3267:1 3292:1 3294:1 3355:1 3375:1 3392:5 3410:1 3427:1 3439:2 3474:3 3484:1 3488:1 3490:1 3498:2 3501:1 3507:1 3547:2 3558:1 3562:1 3566:1 3568:1 3574:1 3586:2 3590:2 3606:1 3607:2 3624:9 3646:2 3719:1 3734:4 3745:2 3754:1 3771:1 3803:1 3828:4 3865:2 3886:1 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4117:2 4143:1 4150:2 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:1 4297:1 4307:1 4312:1 4314:2 4315:1 4321:1 4342:1 4381:1 4383:1 4400:1 4408:1 4413:1 4471:1 4495:2 4510:1 4563:1 4573:1 4618:1 4636:2 4651:1 4679:2 4684:3 4738:1 4751:1 4798:1 4821:1 4846:2 4861:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4983:1 4984:1 5031:1 5047:1 5085:1 5108:2 5140:3 5206:1 5230:1 5310:1 5318:1 5323:1 5364:1 5376:4 5396:1 5427:1 5450:1 5454:1 5499:4 5624:9 5876:1 5886:1 5913:2 5916:1 5949:1 5959:1 5999:1 6007:1 6056:1 6069:1 6083:1 6086:1 6131:1 6141:1 6143:2 6201:1 6261:9 6262:2 6263:1 6277:1 6314:2 6364:1 6371:1 6373:1101 6413:1 6437:2 6444:1 6465:1 6490:1 6498:1 6509:1 6521:1 6571:1 6575:1 6593:1 6609:1 6622:1 6651:2 6703:1 6708:1 6745:1 6758:1 6769:1 6774:1 6794:1 6888:1 6947:1 6958:1 6998:2 7003:1 7040:1 7096:2 7156:1 7189:2 7220:2 7257:1 7287:1 7324:1 7420:1 7442:4 7461:1 7473:1 7511:1 7519:1 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7654:2 7712:5 7713:1 7717:1 7724:2 7733:1 7739:2 7745:1 7840:2 7867:3 7890:1 7903:1 7927:1 7928:1 7935:1 7937:1 7943:1 7951:1 7976:1 7996:1 8002:1 8034:8 8085:3 8102:2 8134:1 8155:2 8218:1 8222:2 8237:1 8247:1 8261:2 8319:1 8337:1 8345:1 8371:2 8434:1 8457:1 8479:1 8555:1 8562:1 8575:2 8579:1 8597:1 8612:1 8626:2 8630:1 8670:1 8692:1 8703:1 8720:1 8729:1 8738:1 8779:1 8786:1 8831:1 8840:1 8859:2 8888:1 8910:1 8945:1 8947:1 8972:1 8985:1 9026:1 9150:1 9180:1 9194:1 9252:1 9304:2 9327:2 9366:1 9368:1 9397:1 9437:1 9468:2 9540:2 9562:1 9583:1 9624:2 9645:1 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9735:2 9789:1 9829:1 9869:1 9872:2 9895:1 9910:1 9933:1 9939:1 9960:5 9967:3 9986:2 9990:1 9994:2 10027:1 10056:1 10125:1 10160:1 10164:1 10169:1 10170:1 10174:1 10175:1 10186:1 10199:1 10248:1 10273:1 10326:1 10370:1 10371:2 10374:1 10435:1 10454:1 10489:2 10494:1 10504:3 10565:1 10605:1 10698:5 10737:1 10739:1 10751:1 10754:2 10773:1 10778:1 10789:1 10810:1 10824:1 10856:1 10864:1 10910:1 10944:1 10954:1 10999:2 11013:2 11037:1 11044:2 11045:1 11057:2 11095:1 11099:1 11103:1 11167:1 11173:1 11202:4 11206:2 11210:1 11234:1 11335:1 11378:1 11436:1 11458:1 11507:1 11520:1 11546:1 11557:2 11573:1 11744:2 11801:1 11814:2 11863:1 11871:1 11878:1 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:3 12055:1 12058:1 12060:1 12087:1 12111:1 12190:2 12214:1 12220:1 12234:2 12251:1 12263:1 12311:1 12320:1 12350:1 12372:1 12375:1 12399:1 12408:1 12409:2 12417:1 12445:1 12447:1 12456:2 12488:2 12500:1 12502:2 12504:2 12506:1 12514:1 12519:1 12531:8 12549:1 12568:1 12586:1 12631:1 12733:1 12734:1 12737:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13046:2 13089:1 13147:1 13164:2 13198:1 13216:2 13251:3 13286:2 13316:1 13323:2 13329:1 13334:1 13337:1 13384:1 13433:2 13449:1 13464:1 13474:3 13522:3 13549:4 13598:3 13608:1 13666:3 13682:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:1 13876:1 13893:1 13903:1 13977:1 13992:2 14007:1 14016:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14246:1 14330:2 14379:1 14386:1 14401:1 14415:1 14445:1 14458:1 14481:2 14530:1 14553:2 14562:2 14580:1 14608:1 14617:4 14659:1 14670:1 14679:1 14706:1 14761:1 14785:2 14873:1 15023:1 15054:1 15055:1 15092:1 15107:1 15121:2 15130:1 15143:1 15151:1 15152:2 15156:1 15164:1 15266:2 15282:1 15295:1 15329:3 15343:1 15361:1 15384:2 15438:4 15504:2 15514:1 15584:1 15595:1 15683:1 15761:1 15786:1 15788:1 15810:1 15831:1 15837:1 15865:1 15871:1 15876:1 15877:1 15896:1 15897:1 15916:1 15923:1 15947:1 15988:1 16004:1 16034:9 16102:1 16162:1 16180:2 16186:1 16234:2 16248:1 16269:2 16342:2 16424:1 16469:1 16523:1 16570:2 16578:2 16628:1 16650:1 16666:2 16713:1 16738:1 16751:1 16762:2 16780:1 16791:3 16809:1 16831:1 16857:1 16862:1 16919:2 16930:4 16943:2 16962:1 16976:1 17064:2 17069:1 17083:1 17091:1 17134:1 17146:5 17171:1 17194:1 17252:1 17385:2 17387:1 17407:1 17412:2 17413:1 17417:1 17422:1 17430:1 17478:1 17489:1 17491:1 17520:1 17524:1 17609:1 17626:1 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17771:1 17797:1 17857:1 17861:1 17956:1 17965:2 18000:1 18022:1 18045:3 18074:1 18131:1 18138:1 18245:1 18304:1 18392:1 18400:1 18410:1 18418:1 18440:1 18449:1 18490:1 18506:2 18518:1 18531:1 18533:1 18534:1 18576:1 18578:2 18589:1 18603:1 18619:1 18627:1 18638:1 18673:1 18700:1 18767:2 18770:1 18811:1 18980:1 19007:1 19048:1 19064:1 19079:1 19086:2 19132:1 19142:1 19158:2 19163:5 19193:1 19284:1 19302:1 19309:1 19328:1 19404:1 19419:1 19431:2 19448:1 19469:2 19479:1 19491:1 19498:1 19572:5 19583:2 19642:1 19646:1 19663:9 19695:1 19711:1 19760:2 19813:1 19832:1 19862:1 19898:1 19937:1 20036:1 20061:2 20074:1 20090:1 20153:1 20157:1 20186:2 20223:1 20225:2 20267:1 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20407:2 20471:1 20524:1 20526:1 20532:1 20543:2 20592:1 20639:1 20646:2 20666:1 20685:1 20785:1 20786:1 20870:2 20883:1 20943:1 20964:1 20993:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21138:1 21200:1 21202:1 21212:1 21256:2 21271:1 21316:1 21324:1 21343:2 21349:5 21356:1 21363:1 21383:1 21393:1 21403:1 21409:1 21421:1 21428:1 21446:1 21454:1 21476:1 21527:1 21552:2 21570:1 21574:1 21591:1 21594:1 21610:1 21612:1 21680:1 21686:1 21690:1 21693:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:1 21876:1 21884:1 21907:3 21942:1 22011:1 22031:1 22051:1 22064:1 22103:1 22159:1 22166:1 22222:1 22288:2 22343:2 22369:1 22440:1 22477:1 22494:1 22503:1 22550:1 22552:1 22565:1 22621:1 22634:1 22654:1 22671:1 22687:2 22722:1 22822:1 22826:1 22838:1 22841:2 22939:9 22943:2 23004:1 23011:1 23085:2 23091:1 23180:1 23184:1 23199:1 23235:1 23275:1 23305:2 23310:1 23356:1 23406:2 23425:1 23433:1 23443:2 23445:1 23470:1 23471:1 23517:1 23561:1 23583:2 23659:2
18 13:1 32:1 38:1 55:1 60:2 70:1 94:1 96:1 98:2 133:1 168:1 169:4 172:2 235:1 291:1 336:1 345:4 373:1 379:1 380:1 412:2 452:1 471:2 485:1 503:1 507:1 524:1 531:1 554:3 588:2 625:1 640:1 798:2 808:1 931:5 945:1 966:1 980:1 1013:1 1035:1 1058:1 1072:1 1081:1 1109:1 1123:1 1133:2 1171:1 1176:1 1183:1 1196:4 1197:1 1267:1 1300:1 1317:1 1327:2 1348:1 1349:1 1362:1 1385:1 1414:1 1439:1 1489:1 1493:2 1578:2 1590:3 1618:1 1623:1 1627:2 1644:2 1656:1 1659:1 1704:1 1769:1 1892:3 1923:1 1959:2 1964:1 1968:2 2016:1 2018:1 2039:1 2062:1 2081:1 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:1 2284:1 2329:1 2344:1 2354:1 2355:1 2366:1 2369:1 2414:2 2428:1 2444:1 2473:1 2484:2 2486:1 2489:1 2492:2 2493:1 2522:2 2537:1 2564:1 2572:3 2579:1 2623:1 2718:1 2779:1 2788:1 2791:3 2851:1 2864:4 2868:4 2926:1 2959:1 3017:1 3035:1 3038:1 3044:2 3062:1 3087:2 3101:1 3121:1 3128:1 3175:1 3184:1 3187:1 3202:3 3209:1 3231:1 3253:1 3267:1 3292:1 3294:1 3355:1 3375:1 3392:5 3410:1 3427:1 3439:2 3474:3 3484:1 3488:1 3490:1 3498:2 3501:1 3507:1 3547:2 3558:1 3562:1 3566:1 3568:1 3574:1 3576:1 3586:2 3590:2 3606:1 3607:2 3624:9 3646:2 3719:1 3734:4 3745:2 3754:1 3771:1 3803:1 3828:4 3865:2 3886:1 3889:1 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4117:2 4143:1 4150:2 4169:1 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:2 4289:2 4297:1 4307:1 4312:1 4314:2 4315:1 4321:1 4342:1 4381:1 4383:1 4400:1 4408:1 4413:1 4471:1 4495:2 4510:1 4563:1 4573:1 4618:2 4636:2 4651:1 4679:2 4684:3 4738:1 4751:1 4763:1 4798:1 4808:1 4821:1 4846:2 4861:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4983:1 4984:1 5031:1 5047:1 5085:1 5108:2 5140:3 5206:1 5230:1 5310:1 5318:1 5323:1 5364:1 5376:4 5383:1 5394:1 5396:1 5427:1 5450:1 5454:1 5499:4 5624:9 5726:1 5876:2 5886:1 5913:2 5916:1 5949:1 5959:1 5999:1 6007:1 6008:1 6056:1 6069:1 6083:2 6086:1 6131:1 6141:1 6143:2 6201:1 6240:1 6261:9 6262:2 6263:1 6277:1 6314:2 6364:1 6371:1 6373:1233 6413:1 6437:2 6444:1 6465:1 6490:1 6498:1 6509:1 6521:1 6571:1 6575:1 6593:1 6605:1 6609:1 6622:1 6651:2 6667:1 6674:1 6694:1 6703:1 6708:1 6745:1 6758:1 6769:1 6774:1 6794:1 6888:1 6947:1 6958:2 6998:2 7003:1 7040:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:1 7287:1 7324:1 7371:1 7420:1 7442:4 7461:1 7473:1 7511:1 7519:1 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7654:2 7690:1 7712:5 7713:1 7717:1 7724:2 7733:1 7739:3 7745:1 7840:3 7867:3 7890:1 7903:1 7927:1 7928:1 7935:1 7937:1 7943:1 7951:1 7976:1 7996:1 8002:1 8034:8 8085:3 8102:2 8134:1 8142:1 8155:2 8218:1 8222:2 8237:1 8247:1 8261:2 8319:2 8337:1 8345:1 8371:2 8434:1 8457:1 8479:1 8555:1 8562:1 8575:3 8579:1 8597:1 8612:1 8626:2 8630:1 8670:1 8692:1 8703:1 8720:1 8729:1 8738:1 8779:1 8786:1 8831:1 8840:1 8854:1 8859:2 8888:1 8910:1 8945:1 8947:1 8972:1 8985:1 9026:1 9150:1 9180:1 9194:1 9252:1 9304:2 9327:2 9349:1 9366:1 9368:1 9397:1 9437:1 9468:2 9540:2 9562:1 9583:1 9611:1 9624:2 9645:1 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9735:2 9789:1 9829:1 9869:1 9872:3 9895:1 9910:1 9933:1 9939:1 9960:5 9967:3 9986:2 9990:1 9994:2 10027:1 10056:1 10125:1 10160:1 10164:1 10169:1 10170:1 10174:1 10175:1 10186:1 10199:1 10248:1 10273:1 10326:1 10370:1 10371:2 10374:1 10419:1 10435:1 10454:1 10489:3 10494:1 10504:3 10565:1 10605:1 10698:5 10737:1 10739:1 10751:1 10754:2 10773:1 10778:1 10789:1 10810:1 10824:1 10856:1 10864:1 10910:1 10944:1 10954:1 10999:3 11013:2 11037:1 11044:2 11045:1 11057:2 11095:1 11099:1 11103:1 11167:1 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11335:1 11378:1 11436:1 11458:1 11507:1 11520:1 11546:1 11557:2 11573:1 11640:1 11744:3 11801:1 11814:3 11863:1 11871:1 11878:1 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:3 12055:1 12058:1 12060:1 12087:1 12111:1 12190:2 12214:1 12220:1 12234:2 12251:1 12263:1 12311:1 12320:1 12350:1 12372:1 12375:1 12399:1 12408:1 12409:2 12417:1 12445:1 12447:1 12456:2 12488:2 12500:1 12502:2 12504:2 12506:1 12514:1 12519:1 12531:9 12549:1 12568:1 12586:1 12631:1 12733:1 12734:1 12737:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13046:2 13089:1 13147:1 13164:2 13198:1 13216:2 13251:3 13286:2 13316:1 13323:2 13329:1 13334:2 13337:1 13384:1 13433:2 13449:1 13464:1 13474:3 13522:3 13536:1 13549:4 13598:3 13608:1 13666:3 13682:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:1 13876:1 13893:1 13903:1 13977:1 13992:2 14007:1 14016:2 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14246:1 14330:2 14379:1 14386:1 14401:1 14415:1 14445:1 14458:1 14481:2 14530:1 14549:1 14553:2 14562:2 14580:1 14595:1 14608:1 14617:4 14659:1 14670:1 14679:1 14706:1 14761:1 14785:2 14873:1 15023:1 15054:1 15055:1 15092:1 15107:1 15118:1 15121:2 15130:1 15143:1 15151:1 15152:2 15156:1 15164:1 15266:2 15282:1 15295:1 15329:3 15343:1 15359:1 15361:1 15384:3 15438:4 15504:2 15514:1 15544:1 15584:1 15595:1 15617:1 15683:1 15761:1 15786:1 15788:1 15810:1 15831:1 15837:1 15865:1 15871:1 15876:1 15877:1 15896:1 15897:1 15916:1 15923:1 15947:2 15988:1 16004:1 16034:9 16102:1 16162:1 16180:3 16186:1 16234:2 16248:1 16269:2 16342:2 16346:1 16424:1 16469:1 16523:1 16570:2 16578:2 16585:1 16628:1 16650:1 16666:2 16713:1 16738:2 16751:1 16762:2 16780:1 16791:3 16809:1 16831:1 16857:1 16862:1 16864:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:2 17069:1 17083:1 17091:1 17134:1 17146:5 17171:1 17194:1 17235:1 17252:1 17297:1 17385:2 17387:1 17407:1 17412:2 17413:1 17417:1 17422:1 17430:1 17478:1 17489:1 17491:1 17520:1 17524:1 17547:1 17609:1 17626:1 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:1 17909:1 17956:1 17965:2 18000:1 18022:1 18045:3 18074:1 18131:1 18138:1 18235:1 18245:1 18304:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:1 18449:1 18490:1 18506:2 18518:1 18531:1 18533:1 18534:1 18555:1 18576:1 18578:2 18589:2 18603:1 18619:2 18627:1 18638:1 18673:1 18700:1 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 19007:1 19048:1 19064:1 19079:1 19086:2 19132:1 19142:1 19158:2 19163:5 19193:1 19284:1 19302:1 19309:1 19328:1 19404:1 19419:1 19431:2 19448:1 19469:3 19479:1 19491:1 19498:1 19572:5 19583:2 19642:1 19646:1 19663:9 19695:1 19711:1 19760:2 19813:1 19832:1 19862:1 19898:1 19937:1 20036:2 20061:2 20074:1 20090:1 20153:1 20157:1 20186:2 20211:1 20223:1 20225:2 20267:1 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20407:2 20471:1 20524:3 20526:1 20532:1 20543:2 20592:1 20639:1 20646:2 20666:1 20685:1 20785:1 20786:1 20806:1 20870:3 20883:1 20943:1 20964:1 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21138:1 21200:1 21202:1 21212:1 21256:2 21271:1 21316:1 21324:1 21332:1 21343:2 21349:5 21356:1 21363:1 21383:1 21393:1 21403:1 21409:1 21421:1 21428:1 21446:1 21454:1 21476:1 21527:1 21552:2 21570:1 21574:1 21591:1 21594:1 21610:1 21612:1 21680:1 21686:1 21690:1 21693:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:1 21876:1 21884:1 21907:3 21942:2 22011:2 22031:1 22051:1 22064:1 22103:1 22159:1 22166:1 22222:1 22288:2 22343:2 22369:1 22440:1 22477:2 22494:2 22503:1 22550:1 22552:1 22565:1 22621:1 22634:1 22654:1 22671:1 22687:3 22722:1 22822:1 22826:1 22838:1 22841:2 22871:1 22939:9 22943:2 22993:1 23004:1 23011:1 23085:2 23091:1 23179:1 23180:1 23184:1 23199:2 23235:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23425:1 23433:1 23443:2 23445:1 23470:1 23471:1 23517:1 23561:1 23583:2 23659:2
18 13:1 32:1 38:1 55:1 60:2 70:1 94:1 96:1 98:2 133:1 168:1 169:5 172:2 235:1 291:1 336:2 345:4 373:1 379:1 380:1 387:1 412:2 452:1 465:1 471:2 485:1 503:1 507:1 524:1 531:1 554:3 588:2 625:1 640:1 798:2 808:1 837:1 931:5 945:1 966:1 980:1 1013:1 1032:1 1035:1 1058:1 1072:1 1081:1 1109:1 1123:1 1133:2 1171:1 1176:1 1183:1 1196:4 1197:1 1217:1 1267:1 1300:1 1317:1 1327:2 1348:1 1349:1 1362:1 1385:1 1414:1 1439:2 1489:1 1493:2 1578:2 1590:3 1607:1 1618:1 1623:1 1627:2 1644:2 1656:1 1659:1 1704:1 1769:1 1892:3 1923:1 1959:2 1964:1 1968:2 2016:1 2018:1 2039:1 2062:1 2081:2 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:1 2284:1 2329:1 2344:1 2354:1 2355:1 2366:1 2369:1 2372:1 2414:2 2428:1 2444:1 2473:1 2484:2 2486:1 2489:1 2492:2 2493:1 2522:2 2537:1 2564:1 2572:3 2579:1 2623:1 2718:1 2779:1 2788:1 2791:3 2811:1 2851:1 2864:4 2868:4 2926:1 2959:1 3017:1 3035:1 3038:1 3044:2 3062:1 3087:2 3101:1 3121:1 3128:1 3175:1 3184:1 3187:1 3202:4 3209:1 3231:1 3253:1 3267:1 3292:1 3294:1 3355:1 3375:1 3392:5 3410:1 3427:2 3439:2 3474:3 3484:1 3488:1 3490:1 3498:2 3501:1 3506:1 3507:1 3547:2 3548:1 3558:1 3562:1 3566:1 3568:1 3574:1 3576:1 3586:2 3590:3 3606:1 3607:2 3624:10 3646:2 3719:1 3734:4 3745:2 3754:1 3771:1 3803:1 3828:4 3865:2 3886:1 3889:1 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4117:2 4143:1 4150:2 4169:1 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:2 4289:2 4297:1 4307:1 4312:2 4314:2 4315:1 4321:1 4342:1 4381:2 4383:1 4400:1 4408:1 4413:1 4471:1 4495:3 4510:1 4563:1 4573:1 4618:2 4636:2 4651:1 4679:2 4684:3 4738:1 4751:2 4763:1 4798:1 4808:1 4821:1 4846:2 4861:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4983:1 4984:1 5031:1 5047:1 5085:1 5108:2 5140:3 5206:1 5230:1 5310:1 5318:1 5323:1 5364:1 5376:5 5383:1 5384:1 5394:1 5396:1 5427:1 5450:1 5454:1 5469:2 5499:4 5506:1 5539:1 5603:1 5624:10 5726:1 5853:1 5876:2 5886:2 5913:2 5916:1 5949:2 5959:1 5999:1 6007:1 6008:1 6056:1 6069:1 6083:2 6086:1 6131:1 6141:1 6143:2 6174:1 6187:1 6201:1 6240:1 6261:10 6262:2 6263:1 6277:1 6314:2 6364:1 6371:1 6373:1345 6413:1 6437:2 6444:1 6465:1 6490:1 6498:1 6509:1 6521:1 6571:1 6575:1 6593:1 6605:1 6609:1 6622:1 6651:2 6667:1 6674:1 6694:1 6703:1 6708:1 6745:1 6758:1 6769:1 6774:1 6794:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7040:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:1 7287:1 7321:1 7324:1 7371:1 7420:1 7442:4 7461:1 7473:1 7511:1 7519:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7654:3 7690:1 7712:6 7713:1 7717:1 7724:2 7733:1 7739:3 7745:1 7808:1 7840:3 7867:3 7890:1 7903:1 7927:2 7928:1 7935:1 7937:1 7943:1 7951:1 7976:1 7996:1 8002:1 8006:1 8034:8 8085:3 8102:2 8134:1 8142:1 8155:2 8218:1 8222:2 8237:1 8247:1 8261:2 8293:1 8319:2 8337:1 8345:1 8371:2 8434:1 8457:1 8479:1 8555:1 8562:1 8575:3 8579:1 8597:1 8612:1 8626:2 8630:1 8670:1 8692:1 8703:1 8720:1 8729:1 8738:1 8779:1 8786:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:1 8888:1 8910:1 8945:1 8947:1 8972:1 8985:1 9018:1 9026:1 9064:1 9107:1 9150:1 9180:1 9194:1 9252:1 9304:2 9327:2 9349:1 9351:1 9366:1 9368:1 9397:1 9437:1 9468:2 9484:1 9540:2 9562:1 9583:1 9611:1 9624:2 9645:1 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9735:2 9789:1 9829:1 9869:1 9872:3 9895:1 9910:1 9927:1 9933:1 9939:1 9960:5 9967:3 9986:2 9987:1 9990:1 9994:2 10027:1 10044:1 10056:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:1 10174:1 10175:1 10186:1 10199:1 10248:1 10273:1 10326:1 10370:1 10371:2 10374:1 10419:1 10435:1 10454:1 10489:3 10494:1 10504:3 10565:1 10605:1 10640:1 10698:5 10727:1 10737:1 10739:1 10751:1 10754:2 10773:1 10778:1 10789:2 10810:1 10824:1 10856:1 10864:1 10910:1 10944:1 10954:1 10999:3 11013:2 11037:1 11044:2 11045:1 11057:2 11095:1 11099:2 11103:1 11166:1 11167:1 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11335:1 11378:1 11436:1 11458:1 11507:1 11520:1 11546:1 11557:2 11573:1 11626:1 11640:1 11689:1 11744:3 11801:1 11814:3 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:4 12055:1 12058:1 12060:1 12087:1 12111:1 12190:2 12214:1 12220:1 12234:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:1 12372:1 12375:1 12399:2 12408:1 12409:2 12417:1 12445:1 12447:1 12452:1 12456:3 12488:2 12491:1 12500:1 12502:2 12504:2 12506:1 12514:1 12519:1 12531:9 12549:1 12568:2 12586:1 12631:1 12733:1 12734:1 12737:2 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13046:2 13089:1 13147:1 13164:2 13198:1 13216:2 13251:4 13286:2 13316:1 13323:3 13329:1 13334:2 13337:1 13384:1 13394:1 13433:2 13449:1 13464:1 13474:3 13522:4 13536:1 13549:4 13598:3 13608:1 13666:4 13682:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:1 13876:1 13893:1 13903:1 13977:1 13992:2 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14246:1 14330:2 14379:1 14386:1 14401:1 14415:1 14442:1 14445:1 14447:1 14458:1 14473:2 14481:2 14530:1 14549:1 14553:2 14562:2 14580:1 14595:1 14608:1 14617:4 14618:1 14659:1 14670:1 14679:2 14706:1 14761:1 14785:2 14873:1 15023:1 15054:1 15055:1 15062:1 15092:1 15107:1 15118:1 15121:2 15130:1 15143:1 15151:1 15152:2 15156:1 15164:1 15266:2 15282:1 15295:1 15313:1 15329:3 15343:1 15359:1 15361:1 15384:3 15438:4 15504:2 15514:1 15544:1 15584:1 15595:1 15617:1 15683:1 15761:1 15786:1 15788:1 15810:1 15831:1 15837:1 15841:1 15865:1 15871:1 15876:1 15877:1 15896:1 15897:1 15916:1 15923:1 15947:2 15988:1 16004:1 16034:10 16102:1 16162:1 16180:3 16186:1 16234:2 16248:1 16269:2 16342:2 16346:1 16424:1 16446:1 16469:1 16523:1 16570:2 16578:2 16585:1 16628:1 16650:1 16666:2 16695:1 16713:1 16738:3 16751:1 16762:2 16780:1 16791:4 16809:1 16831:1 16857:1 16862:1 16864:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:2 17069:1 17083:1 17091:1 17134:1 17146:5 17171:1 17194:1 17235:1 17252:2 17297:1 17318:1 17357:1 17385:2 17387:1 17407:1 17412:2 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17489:1 17491:1 17520:1 17524:1 17547:1 17609:1 17626:1 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:1 17909:1 17956:1 17965:2 18000:1 18022:1 18045:3 18074:1 18131:1 18138:1 18235:1 18245:1 18286:1 18304:1 18360:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:1 18449:1 18490:1 18506:2 18508:1 18518:1 18521:1 18531:1 18533:1 18534:1 18555:1 18576:1 18578:3 18589:2 18603:1 18619:2 18627:1 18638:1 18673:1 18700:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 19007:1 19048:1 19064:1 19079:1 19086:2 19116:1 19132:1 19142:1 19158:2 19163:5 19193:1 19278:1 19284:1 19302:1 19309:1 19328:1 19404:1 19419:1 19431:4 19448:1 19469:3 19479:2 19491:1 19498:1 19533:1 19572:5 19583:2 19642:1 19646:1 19663:10 19695:1 19711:1 19760:2 19813:1 19832:1 19862:1 19898:1 19937:1 20036:2 20061:2 20074:1 20090:1 20153:1 20157:1 20186:2 20211:1 20223:1 20225:2 20267:1 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20407:2 20471:1 20524:3 20526:1 20532:1 20543:3 20592:1 20633:1 20639:1 20646:2 20666:1 20685:1 20785:1 20786:1 20806:1 20870:3 20883:1 20943:1 20964:1 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21138:1 21200:1 21202:1 21212:1 21256:2 21271:1 21316:1 21324:1 21332:1 21343:2 21349:5 21356:1 21363:1 21383:1 21388:1 21393:1 21403:1 21409:1 21421:1 21428:1 21446:1 21454:2 21476:1 21527:1 21552:3 21570:1 21574:1 21591:1 21594:1 21610:1 21612:1 21680:1 21686:1 21690:1 21693:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:1 21876:1 21884:1 21907:3 21942:2 22011:2 22031:1 22051:1 22064:1 22103:1 22159:1 22166:1 22222:1 22288:2 22343:2 22369:1 22381:1 22440:2 22477:2 22494:2 22503:1 22550:1 22552:1 22565:1 22621:1 22634:1 22654:1 22671:1 22687:3 22722:1 22822:1 22826:1 22838:1 22841:2 22868:1 22871:1 22939:10 22943:2 22987:1 22993:1 23004:1 23011:1 23085:2 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:2 23235:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23425:1 23433:1 23443:2 23445:1 23470:1 23471:1 23517:1 23561:1 23583:2 23653:1 23659:2
18 13:1 32:1 38:1 55:1 60:2 70:1 94:1 96:1 98:2 133:1 168:1 169:5 172:2 235:1 291:1 336:2 345:4 373:1 379:1 380:1 387:1 412:2 452:1 465:1 471:2 485:1 503:1 507:1 524:1 531:1 554:3 588:2 625:1 640:1 798:2 808:1 837:1 931:5 945:1 966:1 980:1 1013:1 1032:1 1035:1 1058:1 1072:1 1081:1 1109:1 1123:1 1133:2 1171:1 1176:1 1183:1 1196:5 1197:1 1217:1 1267:1 1300:2 1317:1 1327:2 1348:1 1349:1 1362:1 1385:1 1414:1 1439:2 1489:1 1493:2 1545:1 1559:1 1578:2 1590:3 1607:1 1618:1 1623:1 1627:2 1644:2 1656:1 1659:1 1704:2 1769:1 1892:3 1923:1 1959:2 1964:1 1968:2 2016:1 2018:1 2039:1 2062:1 2081:2 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2284:1 2329:1 2344:1 2354:1 2355:1 2366:1 2369:1 2372:1 2414:2 2428:1 2444:1 2473:1 2484:2 2486:1 2489:1 2492:2 2493:1 2522:2 2537:1 2564:1 2572:3 2579:1 2623:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2851:1 2864:4 2868:4 2926:1 2959:1 3017:1 3033:1 3035:1 3038:1 3044:2 3062:1 3087:2 3101:1 3121:1 3128:1 3175:1 3184:1 3187:1 3202:4 3209:1 3231:1 3253:1 3267:1 3292:1 3294:1 3355:1 3375:1 3392:5 3410:1 3427:2 3439:2 3474:3 3477:1 3484:1 3488:1 3490:1 3498:2 3501:1 3506:1 3507:1 3521:1 3547:2 3548:1 3558:1 3562:1 3566:1 3568:1 3574:1 3576:1 3586:2 3590:3 3597:1 3606:1 3607:2 3624:11 3646:2 3719:1 3734:4 3745:2 3754:1 3771:2 3803:1 3828:4 3865:2 3886:1 3889:1 3897:1 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4117:2 4143:1 4150:2 4169:1 4183:1 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:2 4289:3 4297:1 4307:1 4312:2 4314:2 4315:1 4321:1 4342:1 4381:2 4383:1 4393:2 4400:1 4408:1 4413:1 4471:1 4495:3 4510:1 4563:1 4573:1 4618:2 4636:2 4651:2 4662:1 4679:2 4684:3 4738:1 4751:2 4763:1 4764:1 4798:1 4808:1 4821:1 4846:2 4861:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4983:1 4984:1 5031:2 5047:1 5085:1 5108:2 5140:3 5157:1 5206:1 5230:1 5310:1 5318:1 5323:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5427:1 5450:1 5454:1 5469:2 5499:4 5506:1 5539:1 5603:1 5624:11 5726:1 5853:1 5876:2 5886:2 5913:2 5916:1 5949:2 5959:2 5999:1 6007:1 6008:1 6056:1 6069:1 6083:2 6086:1 6131:1 6141:1 6143:2 6174:2 6187:1 6201:1 6240:1 6261:11 6262:2 6263:1 6277:1 6314:2 6364:1 6371:1 6373:1484 6413:1 6437:2 6444:1 6465:1 6490:1 6498:1 6509:1 6521:1 6537:1 6571:1 6575:1 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6708:1 6745:1 6758:1 6769:1 6774:1 6794:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7040:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:2 7287:1 7321:1 7324:1 7371:1 7420:1 7442:4 7461:1 7473:1 7511:1 7519:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7690:1 7712:7 7713:1 7717:1 7724:2 7733:1 7739:3 7745:2 7808:1 7832:1 7840:3 7867:3 7890:1 7903:1 7927:2 7928:2 7935:1 7937:1 7943:1 7951:1 7976:1 7996:1 8002:1 8006:1 8034:8 8076:1 8085:3 8102:2 8134:1 8142:1 8155:2 8218:1 8222:2 8237:1 8247:1 8261:2 8293:1 8319:2 8337:1 8345:1 8371:2 8434:1 8451:1 8457:2 8479:1 8555:1 8562:1 8575:4 8579:1 8597:1 8612:1 8626:2 8630:1 8670:1 8692:1 8703:1 8720:1 8729:1 8738:1 8779:1 8786:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:2 8888:1 8910:1 8920:1 8945:1 8947:1 8972:1 8985:1 9018:1 9026:1 9064:1 9107:1 9150:1 9180:1 9194:1 9252:1 9304:2 9327:2 9349:1 9351:2 9366:1 9368:1 9397:1 9437:1 9459:1 9468:2 9484:2 9540:2 9562:1 9583:1 9586:1 9611:1 9624:2 9645:1 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9735:2 9789:1 9829:1 9869:1 9872:4 9895:1 9910:1 9927:1 9933:1 9939:1 9960:6 9967:3 9986:2 9987:1 9990:1 9994:3 10027:1 10044:1 10056:1 10086:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:1 10174:1 10175:1 10186:1 10199:1 10248:1 10273:1 10326:1 10370:1 10371:2 10374:1 10419:1 10435:1 10454:2 10489:4 10494:1 10504:3 10565:1 10605:1 10640:1 10698:5 10727:1 10737:1 10739:1 10751:1 10754:2 10773:1 10778:1 10789:3 10810:1 10824:1 10845:1 10856:1 10864:1 10910:1 10944:1 10954:1 10999:3 11013:2 11037:2 11044:2 11045:1 11057:2 11095:1 11099:2 11103:1 11166:1 11167:1 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11335:1 11378:1 11436:1 11458:1 11507:1 11520:1 11546:1 11557:2 11573:1 11626:1 11640:1 11689:1 11744:4 11796:1 11801:1 11814:4 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:4 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12184:1 12190:2 12214:1 12220:1 12225:1 12234:2 12246:1 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:2 12445:1 12447:2 12452:1 12456:3 12488:2 12491:2 12500:1 12502:2 12504:2 12506:1 12514:1 12519:1 12531:10 12549:1 12568:2 12580:1 12586:1 12631:1 12733:1 12734:1 12737:3 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:1 12836:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13046:2 13080:1 13089:1 13147:1 13164:2 13198:1 13216:2 13251:4 13286:2 13316:1 13323:3 13329:1 13334:2 13337:1 13384:1 13394:1 13433:2 13448:1 13449:1 13464:1 13474:3 13522:5 13536:1 13549:4 13583:1 13598:3 13608:1 13666:4 13682:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:1 13876:1 13893:1 13903:1 13977:1 13978:1 13992:2 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14246:1 14330:2 14379:1 14386:1 14401:1 14415:1 14429:1 14433:1 14442:1 14445:1 14447:1 14458:2 14473:2 14481:2 14530:1 14549:1 14553:2 14562:2 14580:1 14595:1 14608:1 14617:4 14618:1 14659:1 14670:1 14679:2 14706:1 14761:1 14785:2 14873:1 14951:1 15023:1 15054:1 15055:1 15062:1 15092:1 15107:1 15118:1 15121:2 15130:1 15143:1 15151:1 15152:2 15156:1 15164:1 15266:2 15282:1 15295:1 15313:1 15329:3 15343:1 15359:1 15361:1 15384:3 15438:4 15504:2 15514:1 15544:1 15584:1 15595:1 15617:1 15683:1 15761:1 15786:1 15788:1 15810:1 15831:1 15837:1 15841:1 15865:1 15871:1 15876:1 15877:1 15896:1 15897:1 15916:1 15923:1 15947:2 15988:1 16004:2 16006:1 16034:11 16035:1 16102:1 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16342:2 16346:1 16360:1 16424:1 16446:1 16469:1 16523:1 16570:2 16578:2 16585:1 16628:1 16631:1 16650:1 16666:2 16695:1 16713:1 16738:3 16751:1 16762:2 16780:1 16791:4 16809:1 16831:1 16838:1 16857:1 16862:1 16863:1 16864:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:2 17069:1 17083:1 17091:2 17117:1 17134:1 17146:5 17171:1 17194:1 17235:1 17252:2 17297:1 17318:2 17357:2 17385:2 17387:1 17407:1 17412:2 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17489:1 17491:1 17520:1 17524:1 17547:2 17609:1 17626:3 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:1 17909:1 17924:1 17956:1 17965:2 18000:1 18022:1 18045:4 18074:1 18131:1 18138:1 18219:1 18235:1 18245:1 18286:1 18304:1 18360:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18449:1 18490:1 18506:2 18508:1 18518:1 18521:1 18531:2 18533:1 18534:1 18542:1 18555:1 18567:1 18576:1 18578:3 18589:2 18603:1 18619:2 18627:1 18638:1 18673:1 18700:2 18764:1 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 19007:1 19048:1 19064:1 19079:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19278:1 19284:1 19302:1 19309:2 19328:1 19404:1 19419:1 19431:5 19448:1 19469:4 19479:2 19491:1 19498:1 19519:1 19533:1 19572:5 19583:2 19642:1 19646:1 19663:11 19695:1 19711:1 19721:1 19760:2 19813:1 19832:1 19862:1 19898:1 19937:1 19944:1 20036:2 20061:2 20074:1 20090:1 20153:1 20157:1 20186:2 20211:1 20223:1 20225:2 20267:1 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20532:1 20543:3 20592:1 20633:1 20639:1 20646:2 20666:1 20685:1 20781:1 20785:1 20786:1 20806:1 20870:4 20883:1 20943:1 20964:1 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21138:1 21142:1 21200:1 21202:1 21212:1 21256:2 21271:1 21316:1 21324:1 21332:1 21343:2 21349:5 21356:1 21363:1 21383:1 21388:1 21393:1 21403:1 21406:1 21409:2 21421:1 21428:1 21446:1 21454:2 21476:1 21527:1 21552:3 21570:1 21574:1 21591:1 21594:1 21610:1 21612:1 21625:1 21680:1 21686:1 21690:2 21693:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:2 21876:1 21884:1 21907:3 21942:2 22011:2 22015:1 22031:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:1 22288:2 22343:2 22369:1 22381:1 22440:2 22477:2 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22565:1 22621:1 22634:1 22654:1 22671:1 22687:4 22722:1 22773:1 22822:1 22826:1 22838:1 22841:2 22868:1 22871:1 22939:11 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23085:2 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:2 23235:1 23242:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23517:1 23561:1 23583:2 23653:1 23659:2
18 13:1 32:1 38:1 55:1 60:2 70:1 75:1 94:1 96:1 98:2 133:1 144:1 168:1 169:5 172:2 235:1 291:1 308:1 336:2 345:4 373:1 379:1 380:1 387:1 412:2 452:1 465:1 471:2 485:1 503:1 507:1 524:1 531:1 541:1 554:3 588:2 612:1 625:1 640:1 648:1 798:2 808:1 837:1 931:6 934:1 945:1 966:1 980:1 1013:1 1032:1 1035:1 1058:1 1072:1 1081:1 1109:1 1123:2 1133:2 1171:1 1176:1 1183:1 1196:5 1197:1 1217:1 1257:1 1267:1 1300:3 1317:1 1327:2 1348:1 1349:1 1362:1 1385:1 1414:1 1439:2 1489:1 1493:2 1498:1 1529:1 1545:1 1559:1 1578:2 1590:3 1607:1 1618:1 1623:1 1627:2 1644:2 1656:1 1659:1 1704:2 1769:1 1892:3 1923:1 1959:2 1964:1 1968:2 2016:1 2018:1 2039:1 2062:1 2081:2 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2284:1 2329:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2414:2 2428:1 2444:1 2473:1 2484:2 2486:1 2489:1 2492:2 2493:1 2522:2 2537:1 2554:1 2564:1 2572:3 2579:1 2623:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2839:1 2851:1 2864:4 2868:4 2926:1 2959:1 3017:1 3033:2 3035:1 3038:1 3044:2 3062:1 3087:2 3101:1 3121:1 3128:1 3143:1 3175:1 3184:1 3187:1 3202:4 3209:1 3231:1 3253:1 3267:1 3292:1 3294:1 3355:1 3375:1 3392:6 3410:1 3427:2 3439:2 3474:3 3477:1 3484:1 3488:1 3490:1 3498:2 3501:1 3506:1 3507:1 3521:1 3547:2 3548:1 3558:1 3562:1 3566:1 3568:1 3574:1 3576:1 3586:2 3590:3 3597:2 3606:1 3607:2 3624:12 3646:2 3719:1 3734:4 3745:2 3754:1 3771:2 3803:1 3809:1 3828:4 3865:2 3886:1 3889:1 3897:1 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4117:2 4143:1 4150:2 4169:1 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:2 4289:3 4297:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:2 4400:1 4408:1 4413:1 4447:1 4471:1 4495:3 4510:2 4563:1 4573:1 4618:2 4636:2 4651:2 4662:2 4679:2 4684:3 4738:1 4751:3 4763:1 4764:1 4798:1 4808:1 4821:1 4846:2 4861:1 4872:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4983:1 4984:1 5031:2 5047:2 5085:1 5108:2 5140:5 5157:1 5199:1 5206:1 5230:3 5310:1 5318:1 5323:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5427:1 5450:1 5454:1 5469:2 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:12 5726:1 5758:1 5797:1 5853:1 5876:2 5886:2 5913:2 5916:1 5949:2 5959:3 5999:1 6007:1 6008:1 6056:1 6069:1 6083:2 6086:1 6131:1 6141:1 6143:2 6174:2 6187:1 6201:1 6240:1 6249:1 6261:12 6262:2 6263:1 6277:1 6314:2 6364:1 6371:1 6373:1649 6413:1 6437:2 6444:1 6465:1 6490:1 6498:1 6509:1 6521:1 6537:1 6571:1 6575:1 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6708:1 6734:1 6745:1 6758:1 6769:1 6774:1 6782:1 6794:1 6856:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7040:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:1 7371:1 7420:1 7439:1 7442:4 7461:1 7473:1 7511:1 7519:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7690:1 7712:9 7713:1 7717:1 7724:2 7733:1 7739:3 7745:2 7795:1 7808:1 7832:1 7840:3 7867:6 7890:1 7903:1 7927:2 7928:2 7935:1 7937:1 7943:1 7951:1 7976:1 7996:1 8002:1 8006:1 8034:9 8076:1 8085:3 8102:2 8111:1 8134:1 8142:1 8155:2 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8293:1 8319:2 8337:1 8345:1 8371:2 8428:1 8434:1 8451:1 8457:2 8479:1 8555:1 8562:1 8575:4 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:1 8712:1 8720:1 8729:1 8738:2 8767:1 8779:1 8786:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:1 9018:1 9026:1 9064:2 9107:1 9150:1 9180:1 9194:1 9252:1 9304:2 9327:2 9349:1 9351:2 9366:1 9368:1 9397:1 9437:1 9459:1 9468:2 9484:2 9530:1 9540:2 9562:1 9583:1 9586:1 9611:1 9624:2 9645:2 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9735:2 9744:1 9789:1 9829:1 9869:1 9872:4 9882:1 9895:1 9907:1 9910:1 9927:1 9933:1 9939:1 9942:1 9960:6 9967:3 9986:2 9987:1 9990:1 9994:3 10027:1 10044:1 10056:1 10078:1 10086:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:1 10174:2 10175:1 10186:1 10199:1 10248:1 10273:1 10326:1 10370:1 10371:2 10374:1 10419:1 10431:1 10435:1 10454:3 10489:4 10494:1 10504:4 10565:1 10580:1 10605:1 10620:1 10640:1 10679:1 10698:5 10727:1 10737:1 10739:1 10751:1 10754:2 10773:1 10778:1 10789:4 10810:1 10824:1 10845:1 10856:1 10864:1 10910:1 10944:1 10954:1 10999:3 11013:2 11037:2 11044:2 11045:1 11053:1 11057:2 11095:1 11099:2 11103:1 11166:1 11167:1 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11335:1 11378:1 11436:1 11458:1 11507:1 11520:1 11546:1 11557:2 11573:1 11626:1 11640:1 11689:1 11744:4 11796:1 11801:1 11814:4 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:4 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12184:1 12190:2 12214:1 12220:1 12225:1 12234:2 12246:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12445:2 12447:2 12452:1 12456:3 12481:1 12488:2 12491:2 12500:1 12502:2 12504:2 12506:1 12514:1 12519:1 12531:12 12549:1 12568:3 12580:1 12586:2 12603:1 12631:1 12733:1 12734:1 12737:3 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:2 12836:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13046:2 13080:1 13089:2 13147:2 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:4 13286:2 13316:1 13323:4 13329:1 13334:2 13337:1 13384:1 13394:1 13433:2 13448:1 13449:1 13464:1 13474:3 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13629:1 13666:4 13682:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:2 13876:1 13893:1 13903:1 13913:1 13977:1 13978:1 13992:2 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14246:1 14330:2 14374:1 14379:2 14386:1 14401:1 14415:1 14429:1 14433:1 14442:1 14445:1 14447:1 14458:2 14473:2 14481:2 14530:1 14549:1 14553:2 14562:2 14580:1 14595:1 14608:1 14617:4 14618:1 14659:1 14670:1 14679:2 14691:1 14706:1 14761:1 14785:2 14793:1 14873:1 14951:1 15023:1 15054:1 15055:1 15062:1 15092:1 15105:1 15107:1 15118:1 15121:3 15130:1 15135:1 15143:1 15146:1 15151:1 15152:2 15156:1 15164:1 15167:1 15237:1 15266:2 15282:2 15295:1 15313:1 15329:3 15343:1 15359:1 15361:1 15384:4 15438:4 15504:2 15514:1 15544:1 15584:1 15595:1 15617:1 15683:1 15698:1 15761:1 15786:1 15788:1 15810:1 15831:1 15837:1 15841:1 15865:1 15871:1 15876:1 15877:2 15896:1 15897:1 15916:1 15923:1 15947:2 15950:1 15988:1 16004:2 16006:1 16034:12 16035:1 16102:1 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16340:1 16342:2 16346:1 16360:1 16409:1 16424:1 16446:1 16469:1 16480:1 16523:1 16570:2 16578:2 16585:1 16622:1 16627:1 16628:1 16631:1 16650:1 16666:2 16695:1 16713:1 16738:3 16751:1 16762:2 16780:1 16791:4 16809:1 16831:1 16838:1 16857:1 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:2 17117:1 17134:1 17146:5 17171:1 17194:1 17235:1 17246:1 17252:2 17297:1 17318:2 17357:2 17385:2 17387:1 17407:1 17412:2 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17489:1 17491:2 17520:1 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:1 17909:1 17924:1 17956:1 17965:3 18000:1 18022:1 18045:6 18074:1 18131:1 18138:1 18219:1 18235:1 18245:1 18286:1 18304:1 18360:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18449:1 18490:1 18506:2 18508:1 18510:1 18518:1 18521:1 18531:3 18533:1 18534:1 18542:2 18555:1 18567:1 18576:1 18578:3 18589:2 18603:1 18619:2 18627:1 18638:1 18673:1 18700:2 18764:1 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 19007:1 19048:1 19064:1 19079:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19278:1 19284:1 19302:2 19309:2 19328:1 19404:1 19419:1 19431:5 19448:1 19469:4 19479:2 19491:1 19498:1 19514:1 19519:1 19533:1 19572:5 19583:2 19642:1 19646:1 19663:12 19695:1 19711:1 19721:2 19760:2 19813:1 19832:1 19862:1 19898:1 19937:1 19944:1 20036:2 20061:2 20074:1 20090:1 20153:1 20157:1 20186:2 20211:1 20223:1 20225:2 20264:1 20267:2 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20532:1 20543:3 20592:1 20633:2 20639:1 20646:2 20666:1 20685:1 20744:1 20781:1 20785:1 20786:1 20806:1 20835:1 20870:4 20883:1 20943:1 20964:2 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21122:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:1 21256:2 21271:2 21316:1 21324:1 21332:1 21343:2 21349:5 21356:1 21363:1 21383:2 21388:1 21393:1 21403:1 21406:1 21409:2 21421:1 21428:2 21446:1 21454:2 21476:1 21527:1 21552:3 21570:2 21574:1 21591:1 21594:1 21610:1 21612:1 21625:1 21680:1 21686:1 21690:3 21693:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:2 21876:1 21880:1 21884:1 21907:3 21942:2 22011:2 22015:1 22031:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:1 22288:2 22343:2 22369:1 22381:1 22440:2 22477:2 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22565:1 22621:1 22634:1 22654:1 22671:1 22687:4 22722:1 22773:1 22822:1 22826:1 22838:1 22841:2 22868:1 22871:1 22939:12 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23085:2 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:2 23235:1 23242:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23517:1 23561:1 23583:2 23653:1 23659:2
18 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 96:2 98:2 133:1 144:1 168:1 169:5 172:2 235:1 291:1 308:1 336:3 345:4 373:2 379:1 380:1 387:1 412:2 452:1 465:1 471:2 485:1 503:1 507:1 524:1 531:1 541:1 554:3 588:2 612:1 625:1 640:1 648:1 771:1 798:2 808:1 837:1 902:1 931:7 934:1 945:1 966:1 980:1 1013:1 1032:2 1035:1 1058:1 1072:1 1081:1 1109:1 1123:2 1133:2 1171:1 1176:1 1183:1 1196:5 1197:1 1217:1 1257:1 1267:1 1300:3 1317:1 1327:2 1348:1 1349:1 1362:1 1385:1 1414:1 1439:2 1489:1 1493:2 1498:1 1529:1 1545:1 1559:1 1578:2 1590:3 1607:1 1618:1 1623:1 1627:2 1644:2 1656:1 1659:1 1704:2 1739:1 1769:1 1892:3 1923:1 1959:2 1964:1 1968:2 2016:1 2018:1 2039:1 2062:1 2081:2 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2284:1 2329:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2414:2 2428:1 2444:1 2473:1 2484:2 2486:1 2489:1 2492:2 2493:1 2522:2 2537:1 2554:1 2564:1 2572:4 2579:1 2623:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2839:1 2851:1 2864:4 2868:4 2926:1 2959:1 3017:1 3033:2 3035:1 3038:1 3044:2 3062:1 3087:2 3101:1 3121:1 3128:1 3143:1 3175:1 3184:1 3187:1 3202:4 3209:1 3231:1 3253:1 3267:1 3292:1 3294:1 3355:1 3375:1 3392:7 3410:1 3427:2 3439:2 3474:3 3477:1 3484:1 3486:1 3488:1 3490:1 3498:2 3501:1 3506:1 3507:1 3521:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:1 3574:1 3576:1 3586:2 3590:3 3597:2 3606:1 3607:2 3624:13 3646:2 3719:1 3734:4 3745:2 3754:1 3771:2 3803:1 3809:1 3828:4 3865:2 3886:1 3889:1 3897:1 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4143:1 4150:2 4169:1 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:2 4289:3 4297:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:3 4400:1 4408:1 4413:1 4447:1 4471:1 4495:3 4510:2 4531:1 4563:1 4573:1 4618:2 4636:2 4651:2 4662:2 4679:3 4684:3 4738:1 4751:3 4763:1 4764:1 4774:1 4798:1 4808:1 4821:1 4846:2 4861:1 4872:1 4895:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:1 4978:1 4983:1 4984:1 5031:2 5047:2 5085:1 5108:2 5140:6 5157:1 5199:1 5206:1 5210:1 5230:3 5310:1 5318:1 5323:1 5347:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5427:1 5450:1 5454:1 5464:1 5469:2 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:13 5726:1 5758:1 5797:1 5853:1 5876:2 5886:2 5913:2 5916:1 5949:2 5959:3 5999:1 6007:1 6008:1 6056:1 6069:1 6083:2 6086:1 6131:1 6141:1 6143:2 6174:2 6187:1 6191:1 6201:1 6240:1 6249:1 6261:13 6262:2 6263:1 6277:1 6314:2 6364:1 6371:1 6373:1771 6403:1 6413:1 6437:2 6444:1 6465:1 6490:1 6498:2 6509:1 6521:1 6537:1 6571:1 6575:1 6584:1 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6708:1 6734:1 6745:1 6758:2 6769:2 6774:1 6782:1 6794:1 6856:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:1 7040:1 7042:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:1 7371:1 7420:1 7439:1 7442:4 7461:1 7473:1 7511:1 7519:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7690:1 7712:9 7713:1 7717:1 7724:2 7733:1 7739:3 7745:2 7795:1 7808:1 7832:1 7840:4 7867:6 7890:1 7903:1 7927:3 7928:2 7935:1 7937:1 7943:1 7951:1 7972:1 7976:1 7996:1 8002:1 8006:1 8034:10 8076:1 8085:3 8102:2 8111:1 8134:1 8142:1 8155:2 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:1 8319:2 8337:1 8345:1 8371:2 8428:1 8434:1 8451:1 8457:2 8479:1 8555:1 8562:1 8575:4 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:1 8712:1 8720:1 8729:1 8738:2 8767:1 8779:1 8786:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:1 9018:1 9026:1 9064:2 9107:1 9150:1 9180:1 9194:1 9252:1 9304:2 9309:1 9327:2 9349:1 9351:2 9366:1 9368:1 9397:1 9437:1 9459:1 9468:2 9484:2 9530:1 9540:2 9562:1 9583:1 9586:1 9611:1 9624:2 9645:2 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9735:2 9744:1 9789:1 9829:1 9833:1 9869:1 9872:4 9882:1 9895:1 9907:1 9910:1 9927:1 9933:1 9939:1 9942:1 9960:6 9967:4 9986:2 9987:1 9990:1 9994:3 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:1 10174:2 10175:1 10184:1 10186:1 10199:1 10248:1 10273:1 10275:1 10326:1 10370:1 10371:2 10374:1 10419:1 10431:1 10435:1 10454:3 10489:4 10494:1 10504:4 10565:1 10580:1 10605:1 10620:1 10640:1 10679:1 10698:5 10727:1 10737:1 10739:1 10751:1 10754:2 10773:2 10778:1 10789:4 10810:1 10824:1 10845:1 10856:1 10864:1 10910:1 10944:1 10954:1 10999:3 11013:2 11037:2 11044:2 11045:1 11053:1 11057:2 11095:1 11099:2 11103:1 11166:1 11167:1 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11325:1 11335:1 11378:1 11436:1 11458:1 11507:2 11520:1 11546:1 11557:2 11573:1 11626:1 11630:1 11640:1 11689:1 11740:1 11744:4 11796:1 11801:1 11806:1 11814:4 11861:1 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:4 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12184:1 12190:2 12214:1 12220:1 12225:1 12234:2 12246:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:1 12445:2 12447:2 12452:1 12456:3 12481:1 12488:2 12491:2 12500:1 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:12 12549:1 12568:3 12580:1 12586:2 12603:1 12631:1 12649:1 12690:1 12733:1 12734:1 12737:3 12745:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:2 12836:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13037:1 13046:2 13080:1 13089:2 13147:2 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:4 13286:2 13316:1 13323:4 13329:2 13334:2 13337:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:3 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13629:1 13666:4 13682:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:2 13876:1 13893:1 13902:1 13903:1 13913:1 13977:1 13978:1 13992:2 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14246:1 14330:2 14374:1 14379:2 14386:1 14401:1 14415:1 14429:1 14433:1 14442:1 14445:1 14447:1 14458:2 14467:1 14473:2 14481:2 14530:1 14549:1 14553:2 14562:2 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:1 14679:2 14691:1 14706:1 14761:1 14785:2 14793:1 14873:1 14951:1 15023:1 15054:1 15055:1 15062:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:1 15152:2 15156:1 15164:1 15167:1 15237:1 15266:2 15282:2 15295:1 15313:1 15329:3 15343:1 15344:1 15349:1 15359:1 15361:1 15384:5 15389:1 15438:4 15504:2 15514:1 15544:1 15584:1 15595:1 15617:1 15683:1 15698:1 15761:1 15786:1 15788:2 15810:1 15831:1 15837:1 15841:1 15865:1 15871:1 15876:1 15877:2 15896:1 15897:1 15916:1 15923:1 15947:2 15950:1 15988:1 16004:3 16006:1 16034:13 16035:1 16102:1 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16340:1 16342:2 16346:1 16360:1 16409:1 16424:1 16446:1 16469:1 16480:1 16523:1 16570:2 16578:2 16585:1 16596:1 16622:1 16627:1 16628:1 16631:1 16650:1 16666:2 16695:1 16713:1 16738:3 16751:1 16762:2 16780:1 16791:4 16809:1 16831:1 16838:1 16857:1 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:2 17117:1 17134:1 17146:5 17171:1 17194:1 17235:1 17246:1 17252:3 17297:1 17318:2 17357:2 17385:2 17387:1 17407:1 17412:2 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17489:1 17491:2 17520:1 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:1 17909:1 17924:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18131:1 18138:1 18219:1 18229:1 18235:1 18245:1 18286:1 18304:1 18360:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18449:1 18490:1 18506:2 18508:1 18510:1 18518:1 18521:1 18531:3 18533:1 18534:1 18542:2 18555:1 18567:1 18576:1 18578:3 18589:2 18603:1 18619:3 18627:1 18638:1 18673:1 18700:2 18719:1 18764:1 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:1 19007:1 19048:1 19064:1 19079:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19278:1 19284:1 19302:2 19309:2 19328:1 19369:1 19404:1 19419:1 19431:5 19448:1 19469:4 19479:2 19491:1 19498:1 19514:1 19519:1 19533:1 19572:5 19583:2 19587:1 19642:1 19646:1 19663:13 19680:1 19695:1 19711:1 19721:2 19760:2 19813:1 19832:1 19862:1 19898:1 19937:1 19944:1 19988:1 20036:2 20061:2 20074:1 20090:1 20153:1 20157:1 20186:3 20211:1 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:4 20592:1 20633:2 20639:1 20646:2 20666:1 20685:1 20744:1 20781:1 20785:1 20786:1 20806:1 20835:1 20870:4 20883:1 20943:1 20964:2 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21122:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:1 21256:2 21271:2 21285:1 21309:1 21316:1 21324:1 21332:1 21343:2 21349:6 21356:1 21363:1 21383:3 21388:1 21393:1 21403:1 21406:1 21409:2 21421:1 21428:2 21446:1 21454:2 21476:1 21527:1 21552:3 21570:2 21574:1 21591:1 21594:1 21610:1 21612:1 21613:1 21625:1 21680:1 21686:1 21690:3 21693:1 21695:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:2 21876:1 21880:1 21884:1 21907:4 21942:2 22011:2 22015:1 22031:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:1 22288:2 22343:2 22352:1 22369:1 22375:1 22381:1 22440:2 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22565:1 22621:1 22634:1 22654:1 22671:1 22687:4 22722:1 22773:1 22822:1 22826:2 22838:1 22841:2 22860:1 22868:1 22871:1 22939:13 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23085:2 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:3 23235:1 23242:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:1 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23517:1 23561:1 23583:2 23653:1 23659:2
18 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 96:2 98:2 133:1 134:1 144:1 168:1 169:5 172:2 235:1 291:1 308:1 336:3 345:4 373:2 379:1 380:1 387:1 412:2 452:1 465:1 471:2 485:1 491:1 503:1 507:1 524:1 531:1 541:1 554:4 588:2 612:1 625:1 640:1 648:1 672:1 719:1 771:1 798:2 808:1 837:1 902:1 931:7 934:1 945:1 966:1 980:1 1000:1 1013:1 1032:2 1035:1 1058:1 1072:1 1081:1 1109:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:1 1196:5 1197:1 1217:1 1257:1 1267:1 1300:3 1317:1 1327:2 1328:1 1348:1 1349:1 1362:1 1385:1 1414:1 1439:2 1489:1 1493:2 1498:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1607:1 1618:1 1623:1 1627:2 1644:2 1656:1 1659:1 1704:2 1739:1 1769:1 1892:3 1923:1 1928:1 1959:2 1964:1 1968:3 2016:1 2018:1 2039:1 2062:1 2081:2 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2414:2 2428:1 2444:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2537:1 2554:2 2560:1 2564:1 2572:4 2579:1 2623:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2839:1 2851:1 2864:4 2868:4 2926:1 2959:2 3017:1 3033:2 3035:1 3038:1 3044:2 3062:1 3087:2 3101:1 3121:1 3128:1 3143:1 3175:1 3184:1 3187:1 3202:4 3203:1 3209:1 3231:1 3253:1 3267:1 3292:1 3294:1 3355:1 3370:1 3375:1 3381:1 3383:1 3392:7 3410:1 3427:2 3439:2 3474:3 3477:1 3484:1 3486:1 3488:1 3490:1 3498:2 3501:1 3505:1 3506:1 3507:1 3509:1 3521:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:1 3574:1 3576:1 3581:1 3586:2 3590:3 3597:2 3606:1 3607:2 3624:14 3635:1 3646:2 3719:1 3734:4 3745:2 3754:1 3771:3 3803:1 3809:1 3828:4 3865:2 3886:1 3889:1 3897:1 3901:1 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4143:1 4150:2 4169:1 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:3 4400:1 4408:1 4413:1 4447:1 4471:1 4495:4 4510:2 4531:1 4563:1 4573:1 4618:2 4636:2 4651:2 4662:2 4679:3 4684:3 4738:1 4751:4 4763:1 4764:1 4774:2 4798:1 4808:1 4821:1 4846:2 4861:1 4872:1 4895:1 4899:1 4924:2 4930:1 4950:1 4964:4 4970:2 4978:1 4983:1 4984:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5199:1 5206:1 5210:1 5230:4 5301:1 5310:1 5318:1 5323:1 5347:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5427:1 5450:1 5454:1 5464:1 5469:2 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:14 5726:1 5758:1 5797:1 5853:1 5876:2 5886:2 5913:2 5916:1 5949:2 5959:3 5999:1 6007:1 6008:1 6056:1 6065:1 6069:1 6083:2 6086:1 6128:1 6131:1 6141:1 6143:2 6174:2 6187:1 6191:2 6201:1 6240:1 6249:1 6261:14 6262:2 6263:1 6277:1 6314:2 6364:1 6371:1 6373:1863 6403:1 6413:1 6437:2 6444:1 6465:1 6490:1 6498:2 6509:1 6521:1 6537:1 6571:1 6575:1 6584:1 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6706:1 6708:1 6734:1 6745:1 6758:2 6769:2 6774:1 6782:1 6794:1 6856:2 6859:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:1 7040:1 7042:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:1 7371:1 7420:1 7439:2 7442:4 7461:1 7473:1 7496:1 7511:1 7519:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7679:1 7690:1 7712:9 7713:1 7717:1 7724:2 7733:1 7739:3 7741:1 7745:3 7795:2 7808:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:3 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:10 8076:1 8085:3 8102:2 8111:1 8134:1 8142:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:1 8319:3 8337:1 8345:1 8363:1 8371:2 8373:1 8428:1 8434:1 8447:1 8451:1 8457:2 8479:1 8532:1 8555:1 8562:1 8575:5 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:1 8712:1 8720:1 8729:1 8738:2 8767:1 8779:1 8786:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:2 9018:1 9026:1 9064:2 9107:1 9150:1 9180:1 9194:1 9252:1 9304:2 9309:1 9327:2 9349:1 9351:2 9366:1 9368:1 9397:1 9437:1 9459:1 9468:2 9484:2 9530:1 9540:2 9562:1 9583:1 9586:1 9611:1 9624:2 9645:2 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9733:1 9735:2 9744:1 9789:1 9829:1 9833:1 9869:1 9872:4 9882:1 9895:1 9907:1 9910:1 9927:1 9933:1 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9990:1 9994:3 9998:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10121:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:2 10174:2 10175:1 10184:1 10186:1 10199:1 10248:1 10273:1 10275:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:5 10494:1 10504:4 10565:1 10580:1 10588:1 10605:1 10620:1 10640:1 10679:1 10698:5 10727:1 10737:1 10739:1 10751:1 10754:2 10773:2 10778:1 10789:4 10810:1 10824:1 10845:1 10856:1 10864:1 10910:1 10944:1 10954:1 10999:3 11013:2 11037:2 11044:2 11045:1 11053:1 11057:2 11095:1 11099:2 11103:1 11166:1 11167:1 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11325:1 11335:1 11378:1 11396:1 11436:1 11458:1 11507:2 11520:1 11546:1 11557:2 11573:1 11626:1 11630:1 11640:1 11689:1 11740:1 11744:5 11796:1 11801:1 11806:1 11814:4 11861:1 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:4 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12133:1 12184:1 12190:2 12214:1 12220:1 12225:1 12234:2 12246:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:1 12445:2 12447:2 12452:1 12456:3 12481:1 12488:2 12491:2 12500:2 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:12 12549:1 12568:4 12580:1 12586:2 12603:1 12610:1 12631:1 12649:1 12688:1 12690:1 12733:1 12734:1 12737:3 12745:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:2 12836:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13037:1 13046:2 13080:1 13089:2 13108:1 13147:2 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:4 13286:2 13316:1 13323:4 13329:2 13334:2 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:4 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13629:1 13666:4 13682:1 13683:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:2 13876:1 13893:1 13902:1 13903:1 13913:1 13977:1 13978:1 13992:2 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14241:1 14246:1 14273:1 14330:2 14374:1 14379:2 14386:1 14401:1 14415:1 14429:1 14433:1 14442:1 14445:1 14447:1 14458:2 14467:1 14473:2 14481:2 14530:1 14549:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:1 14679:2 14691:1 14706:1 14761:1 14785:2 14793:1 14873:1 14951:2 15023:1 15054:1 15055:1 15062:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:1 15152:2 15156:1 15164:1 15167:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15343:1 15344:1 15349:1 15359:1 15361:1 15384:5 15389:1 15438:4 15504:2 15514:1 15544:1 15584:1 15595:1 15610:1 15617:1 15683:1 15698:1 15761:1 15786:1 15788:2 15810:1 15831:1 15837:1 15841:1 15865:1 15871:1 15876:1 15877:2 15896:1 15897:1 15916:1 15923:1 15947:3 15950:1 15988:1 16004:3 16006:1 16030:1 16034:14 16035:2 16102:1 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16340:1 16342:2 16346:1 16360:1 16409:1 16424:1 16446:1 16469:1 16480:1 16523:1 16570:2 16578:2 16585:1 16596:1 16622:1 16627:1 16628:1 16631:1 16650:1 16666:2 16695:1 16713:1 16738:3 16751:1 16762:2 16772:1 16780:1 16791:4 16809:1 16811:1 16831:1 16838:1 16857:1 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17117:1 17134:1 17146:5 17171:1 17194:1 17235:1 17246:1 17252:3 17297:1 17318:2 17357:2 17381:1 17385:2 17387:1 17407:1 17412:2 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17520:1 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:1 17909:1 17924:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18219:1 18229:1 18235:1 18245:1 18286:1 18304:1 18360:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18449:1 18490:1 18506:2 18508:1 18510:1 18518:1 18521:1 18531:3 18533:1 18534:1 18542:2 18555:1 18567:1 18576:1 18578:4 18589:2 18603:1 18619:3 18627:1 18638:1 18673:1 18700:2 18719:1 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:1 19007:1 19048:1 19064:1 19079:1 19083:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19302:2 19309:2 19328:1 19369:1 19404:1 19419:1 19431:6 19448:1 19469:5 19479:2 19491:1 19498:1 19514:1 19519:1 19533:1 19572:5 19583:2 19587:1 19642:1 19646:1 19663:14 19680:1 19695:1 19711:1 19721:2 19760:2 19813:1 19832:1 19862:1 19898:1 19937:1 19944:1 19988:1 20017:1 20036:2 20061:2 20074:1 20090:1 20153:1 20157:1 20186:3 20211:1 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20300:1 20301:1 20318:1 20331:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:4 20592:1 20633:2 20639:1 20646:2 20666:1 20685:1 20744:1 20781:1 20785:1 20786:1 20806:1 20835:1 20870:5 20883:1 20931:1 20943:1 20964:2 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:1 21309:1 21316:1 21324:1 21332:1 21343:2 21349:6 21356:1 21363:1 21383:3 21388:1 21393:1 21403:1 21406:1 21409:2 21421:1 21428:2 21446:1 21454:2 21476:1 21527:1 21552:3 21570:3 21574:1 21591:1 21594:1 21610:1 21612:1 21613:1 21625:1 21637:1 21680:1 21686:2 21690:3 21693:1 21695:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:2 21876:1 21880:1 21884:1 21907:4 21942:2 22011:2 22015:1 22031:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:1 22288:2 22343:2 22352:1 22369:1 22375:2 22381:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22565:1 22572:1 22621:1 22634:1 22654:1 22671:1 22687:5 22722:1 22773:1 22822:1 22826:2 22838:1 22841:2 22845:1 22860:1 22868:1 22871:1 22939:14 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23085:3 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:3 23235:1 23242:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:1 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23516:1 23517:1 23535:1 23561:2 23583:2 23653:1 23659:2
18 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 96:2 98:2 133:1 134:1 144:1 168:1 169:5 172:2 235:1 291:1 308:1 336:3 345:4 373:2 379:1 380:2 387:1 412:2 452:1 465:1 471:2 485:1 491:1 503:1 507:1 524:1 531:1 541:1 554:4 588:2 612:2 625:1 640:1 648:1 657:2 672:1 719:1 771:1 785:1 798:2 808:1 837:1 902:1 931:7 934:1 945:1 966:1 980:1 1000:1 1013:1 1032:2 1035:1 1058:1 1072:1 1081:1 1109:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:1 1196:5 1197:1 1217:1 1257:1 1267:1 1296:1 1300:3 1317:1 1327:2 1328:1 1348:1 1349:1 1362:1 1385:1 1414:1 1439:2 1441:1 1489:1 1493:2 1498:1 1518:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1607:1 1618:1 1623:1 1627:2 1637:1 1644:2 1656:1 1659:1 1704:2 1739:1 1769:1 1892:3 1923:1 1928:1 1959:2 1964:1 1968:3 2016:1 2018:1 2039:1 2062:1 2076:1 2081:2 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2414:2 2428:1 2444:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2554:2 2560:1 2564:1 2572:4 2579:1 2622:1 2623:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2839:1 2851:1 2864:4 2868:4 2926:1 2959:2 3017:1 3033:2 3035:1 3038:1 3044:2 3062:1 3087:2 3101:1 3121:1 3128:1 3143:1 3175:1 3184:1 3187:1 3202:4 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3292:1 3294:1 3355:1 3370:1 3375:1 3381:1 3383:1 3392:7 3410:1 3427:2 3439:2 3444:1 3474:3 3477:1 3484:1 3486:2 3488:1 3490:1 3498:2 3501:1 3505:1 3506:1 3507:1 3509:1 3521:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:1 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:2 3609:1 3624:15 3635:1 3646:2 3674:1 3710:1 3719:1 3734:4 3745:2 3754:1 3771:3 3803:1 3805:1 3809:1 3828:4 3865:2 3886:1 3889:1 3897:1 3901:1 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4143:1 4150:2 4169:1 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:3 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4495:5 4510:2 4525:1 4531:1 4563:1 4573:1 4618:2 4636:2 4642:1 4651:2 4662:2 4679:3 4684:3 4738:1 4751:5 4763:1 4764:1 4774:2 4798:1 4808:1 4821:1 4846:2 4861:1 4872:1 4895:2 4899:1 4924:2 4930:1 4950:1 4964:4 4970:3 4978:1 4983:1 4984:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5199:1 5206:1 5210:1 5230:4 5301:1 5310:1 5317:1 5318:1 5323:1 5347:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5427:1 5450:2 5454:1 5464:1 5469:2 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:15 5673:1 5726:1 5758:1 5771:1 5797:1 5816:1 5853:1 5876:2 5886:2 5913:2 5916:1 5949:2 5959:3 5999:1 6007:1 6008:1 6045:1 6056:1 6065:1 6069:1 6083:2 6086:1 6128:1 6131:1 6141:1 6143:2 6174:2 6187:1 6191:2 6201:1 6240:1 6249:1 6261:15 6262:2 6263:1 6277:1 6314:2 6333:1 6364:1 6371:1 6373:1913 6403:1 6413:1 6437:2 6444:1 6465:1 6490:1 6498:2 6509:1 6521:1 6537:1 6571:1 6575:1 6584:1 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6706:1 6708:1 6734:1 6745:1 6758:2 6769:2 6774:1 6782:1 6794:1 6856:2 6859:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:1 7040:1 7042:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:2 7371:1 7420:1 7439:2 7442:4 7461:1 7473:1 7496:1 7511:1 7519:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7679:1 7690:1 7712:9 7713:1 7717:1 7724:2 7733:1 7739:3 7741:1 7745:3 7795:2 7808:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:3 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:11 8067:1 8076:1 8085:3 8102:2 8111:1 8118:1 8134:1 8142:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:1 8319:3 8337:1 8345:1 8363:1 8371:2 8373:1 8428:1 8434:1 8447:1 8451:1 8457:2 8479:1 8532:1 8555:1 8562:1 8565:1 8575:5 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:2 8712:1 8720:1 8729:1 8738:3 8767:1 8779:1 8786:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:2 9018:1 9026:1 9064:3 9107:1 9150:1 9166:1 9180:1 9194:1 9252:1 9281:1 9291:1 9304:2 9309:1 9327:2 9349:1 9351:2 9366:1 9368:2 9396:1 9397:1 9437:1 9443:1 9459:1 9468:2 9484:2 9530:1 9540:2 9562:1 9583:1 9586:1 9611:1 9624:2 9645:2 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9733:1 9735:2 9744:2 9789:1 9829:1 9833:1 9869:1 9872:4 9882:1 9895:1 9907:1 9910:1 9927:1 9933:1 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9990:1 9994:3 9998:2 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10121:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:2 10174:2 10175:1 10184:1 10186:1 10199:1 10230:1 10248:1 10273:1 10275:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:5 10494:1 10504:4 10565:1 10580:1 10588:1 10605:1 10620:1 10640:1 10679:1 10698:5 10699:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:4 10810:1 10824:1 10845:1 10856:1 10864:1 10910:1 10935:1 10944:1 10954:1 10999:3 11013:2 11037:2 11044:2 11045:1 11053:1 11057:2 11070:1 11095:1 11099:2 11103:1 11166:1 11167:1 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:2 11520:1 11546:1 11557:2 11573:1 11626:2 11630:1 11640:1 11689:1 11740:1 11744:5 11796:1 11801:1 11806:1 11814:4 11861:1 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:4 12037:1 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12133:1 12184:1 12190:2 12214:1 12220:1 12225:1 12234:2 12246:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:1 12441:1 12445:2 12447:2 12452:1 12456:3 12481:1 12488:2 12491:2 12500:3 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:13 12549:1 12566:1 12568:5 12569:1 12576:1 12580:1 12586:2 12603:1 12610:1 12631:1 12649:1 12688:1 12690:1 12733:1 12734:1 12737:4 12745:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:2 12836:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13037:1 13046:2 13080:1 13089:2 13108:1 13147:2 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:5 13286:2 13316:1 13323:6 13329:2 13334:2 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:4 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:1 13629:1 13666:4 13682:1 13683:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:3 13876:1 13890:1 13893:1 13902:1 13903:1 13913:1 13977:1 13978:1 13992:2 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14241:1 14246:1 14273:1 14330:2 14374:1 14379:2 14386:1 14401:1 14415:1 14429:1 14433:1 14442:1 14445:1 14447:1 14458:2 14467:1 14473:2 14481:2 14530:1 14549:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:1 14679:2 14691:1 14706:1 14761:1 14785:2 14793:1 14873:1 14951:2 14964:1 15023:1 15054:1 15055:1 15062:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:1 15152:2 15156:1 15164:1 15167:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15343:1 15344:1 15349:1 15359:1 15361:1 15384:5 15389:1 15430:1 15438:4 15504:2 15514:1 15544:1 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15761:1 15786:1 15788:2 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:1 15877:2 15896:1 15897:1 15916:1 15923:1 15947:3 15950:2 15988:1 16004:3 16006:1 16030:1 16034:15 16035:2 16102:1 16148:1 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16340:1 16342:2 16346:1 16360:1 16409:1 16424:1 16446:1 16469:1 16480:1 16523:1 16570:2 16578:2 16585:1 16596:1 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:1 16738:3 16751:1 16762:2 16772:1 16780:1 16791:4 16809:1 16811:1 16831:1 16838:1 16857:1 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17117:1 17134:1 17146:5 17171:1 17194:1 17235:1 17246:1 17252:3 17297:1 17318:2 17357:3 17381:1 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17520:1 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:1 17909:1 17924:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18219:1 18229:1 18235:1 18245:1 18286:1 18299:1 18304:1 18360:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18449:2 18490:1 18506:2 18508:1 18510:1 18518:1 18521:1 18531:3 18533:1 18534:1 18542:2 18555:1 18567:1 18576:1 18578:5 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18673:1 18700:2 18719:1 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:1 19007:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19302:2 19309:2 19328:1 19369:1 19404:1 19419:1 19431:6 19448:1 19469:5 19479:2 19491:1 19498:1 19514:2 19519:1 19533:1 19572:5 19583:2 19587:1 19642:1 19646:1 19663:15 19680:1 19695:1 19711:1 19721:2 19760:2 19813:1 19832:1 19862:1 19898:1 19937:1 19944:1 19988:1 20017:1 20036:2 20061:2 20074:1 20090:1 20153:2 20157:1 20186:3 20211:1 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20331:1 20336:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:4 20592:1 20633:3 20639:1 20646:2 20666:1 20685:1 20744:1 20781:1 20785:1 20786:1 20806:1 20835:1 20870:5 20883:1 20931:1 20943:1 20964:2 20973:1 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:1 21309:1 21316:1 21324:1 21332:1 21343:2 21349:6 21356:1 21363:1 21370:1 21383:3 21388:1 21393:1 21403:1 21406:1 21409:2 21421:1 21428:2 21440:1 21446:1 21454:2 21476:1 21527:1 21552:4 21570:3 21574:1 21591:1 21594:1 21610:1 21612:1 21613:1 21625:1 21637:1 21670:1 21680:1 21686:2 21690:3 21693:1 21695:1 21701:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:2 21876:1 21880:2 21884:1 21907:4 21942:2 21976:1 22011:2 22015:1 22031:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:1 22288:2 22343:2 22352:1 22369:1 22375:2 22381:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22565:1 22572:1 22621:1 22634:1 22654:1 22671:1 22687:5 22722:1 22773:1 22816:1 22822:1 22826:2 22838:1 22841:2 22845:1 22860:1 22868:1 22871:1 22939:15 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23021:1 23085:4 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:3 23235:1 23242:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:1 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23516:1 23517:1 23535:1 23561:2 23583:2 23653:1 23659:2
18 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 96:2 98:2 133:1 134:1 144:1 168:1 169:5 172:2 227:1 235:1 291:1 308:1 336:3 345:4 373:2 379:1 380:2 387:1 412:2 452:1 465:1 471:2 485:1 491:1 503:1 507:1 524:1 531:1 541:1 554:4 588:2 612:2 625:2 640:1 648:1 657:2 672:1 719:1 771:1 785:1 798:2 808:2 837:1 902:1 931:7 934:1 945:1 966:1 980:1 1000:1 1013:1 1032:2 1035:1 1058:1 1072:1 1081:1 1109:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:1 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:1 1300:3 1317:1 1327:2 1328:1 1348:1 1349:1 1362:1 1385:1 1414:1 1439:2 1441:1 1489:1 1493:2 1498:1 1518:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1607:1 1618:1 1623:1 1627:2 1637:1 1644:2 1656:1 1659:1 1704:2 1739:1 1769:1 1892:3 1903:1 1923:1 1928:1 1959:2 1964:1 1968:3 2016:1 2018:1 2039:1 2062:1 2076:1 2081:2 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2414:2 2428:1 2444:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2554:2 2560:1 2564:1 2572:4 2579:1 2622:1 2623:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2839:1 2851:1 2864:4 2868:4 2926:1 2959:2 3017:1 3033:2 3035:1 3038:1 3044:3 3062:1 3087:2 3101:1 3121:1 3128:1 3143:1 3165:1 3175:1 3184:1 3187:1 3202:5 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3292:1 3294:1 3355:1 3370:1 3375:1 3381:1 3383:1 3392:7 3410:1 3427:2 3439:2 3444:1 3474:3 3477:1 3484:1 3486:2 3488:1 3490:1 3498:2 3501:1 3505:1 3506:1 3507:1 3509:1 3521:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:2 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:2 3609:1 3624:16 3635:1 3646:2 3674:1 3694:1 3710:1 3719:1 3734:4 3745:2 3754:1 3771:3 3803:1 3805:1 3809:1 3828:4 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:1 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4143:1 4150:2 4169:1 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4495:5 4510:2 4525:1 4531:1 4563:1 4573:1 4618:2 4636:2 4642:1 4651:2 4662:2 4679:3 4684:3 4738:1 4751:6 4763:1 4764:1 4774:2 4798:1 4808:1 4821:1 4846:2 4861:1 4872:1 4895:2 4899:1 4924:2 4930:1 4950:1 4964:4 4970:4 4978:1 4983:1 4984:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5199:1 5206:1 5210:1 5230:4 5301:1 5310:1 5317:1 5318:1 5323:1 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5427:1 5450:2 5454:1 5464:1 5469:2 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:16 5673:1 5726:1 5758:1 5771:1 5797:1 5816:1 5853:1 5876:2 5886:2 5913:2 5916:1 5949:2 5959:3 5999:1 6007:1 6008:1 6045:1 6056:1 6065:1 6069:1 6083:2 6086:1 6128:1 6131:1 6141:2 6143:2 6174:2 6187:1 6191:2 6201:1 6240:1 6249:1 6261:16 6262:2 6263:1 6277:1 6314:2 6333:1 6364:1 6371:1 6373:1981 6403:1 6413:1 6437:2 6444:1 6465:1 6490:1 6498:2 6509:1 6521:1 6537:1 6571:1 6575:1 6584:1 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6745:1 6758:2 6769:2 6774:1 6782:1 6794:1 6856:2 6859:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:1 7040:1 7042:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:2 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7473:1 7496:1 7511:1 7519:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7679:1 7690:1 7712:9 7713:1 7717:1 7724:2 7733:1 7739:3 7741:1 7745:3 7795:2 7808:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:3 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:11 8067:1 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:1 8319:3 8337:1 8345:1 8363:1 8371:2 8373:1 8428:1 8434:1 8447:1 8451:1 8457:2 8479:1 8532:1 8555:1 8562:1 8565:1 8575:5 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:2 8712:1 8720:1 8729:1 8738:3 8767:1 8779:1 8786:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:2 9018:1 9026:1 9064:4 9107:1 9150:1 9166:1 9180:1 9194:1 9252:1 9281:1 9291:1 9304:2 9309:1 9327:2 9349:1 9351:2 9366:1 9368:2 9396:1 9397:1 9437:1 9443:1 9459:1 9468:2 9477:1 9484:2 9530:1 9540:2 9562:1 9583:1 9586:1 9611:1 9624:2 9645:2 9656:1 9658:2 9674:1 9679:4 9683:2 9693:2 9733:1 9735:2 9744:2 9789:1 9829:1 9833:1 9869:1 9872:4 9882:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9990:1 9994:3 9998:3 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10121:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:2 10174:2 10175:1 10184:1 10186:1 10199:1 10230:1 10248:1 10273:1 10275:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:5 10494:1 10504:4 10565:1 10580:1 10588:1 10605:1 10620:1 10640:1 10679:1 10698:5 10699:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:4 10810:1 10824:1 10845:1 10856:1 10864:1 10868:1 10910:1 10935:1 10944:1 10954:1 10999:3 11013:2 11037:2 11044:2 11045:1 11053:1 11057:2 11070:1 11095:1 11099:2 11103:1 11166:1 11167:1 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:2 11520:1 11546:1 11557:2 11573:1 11626:2 11630:1 11640:1 11689:1 11740:1 11744:5 11796:1 11801:1 11806:1 11814:4 11861:1 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:5 12037:1 12047:1 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12133:1 12184:1 12190:2 12214:1 12220:1 12225:1 12234:2 12246:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:1 12441:1 12445:2 12447:2 12452:1 12456:3 12481:1 12488:2 12491:2 12500:4 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:14 12549:1 12566:1 12568:6 12569:1 12576:1 12580:1 12586:2 12603:1 12610:1 12631:1 12649:1 12688:1 12690:1 12733:1 12734:1 12737:4 12745:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:2 12836:1 12848:1 12892:4 12914:1 12929:1 13006:1 13011:1 13027:1 13036:1 13037:1 13046:2 13080:1 13089:2 13108:1 13147:2 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:5 13286:2 13316:1 13323:6 13329:2 13334:2 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:4 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:1 13629:1 13666:5 13682:1 13683:1 13701:1 13703:5 13717:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:3 13876:1 13890:1 13893:1 13902:1 13903:1 13913:1 13977:1 13978:1 13992:2 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14241:1 14246:1 14273:1 14330:2 14374:1 14379:2 14386:2 14401:1 14415:1 14429:1 14433:1 14442:1 14445:1 14447:1 14458:2 14467:1 14473:2 14481:2 14530:1 14549:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:1 14679:2 14691:1 14706:1 14761:1 14785:2 14793:1 14873:1 14951:3 14964:1 15023:1 15054:1 15055:1 15062:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:1 15152:2 15156:1 15164:1 15167:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15343:1 15344:1 15349:1 15359:1 15361:1 15384:5 15389:1 15430:1 15438:4 15504:2 15514:1 15544:1 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15761:1 15786:1 15788:2 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:1 15877:2 15896:1 15897:1 15916:1 15923:1 15947:3 15950:2 15988:1 16004:3 16006:1 16030:2 16034:16 16035:2 16102:1 16148:1 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16340:1 16342:2 16346:1 16360:1 16409:1 16424:1 16446:1 16469:1 16480:1 16523:1 16570:2 16578:2 16585:1 16596:1 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:2 16716:1 16738:3 16751:1 16762:2 16772:1 16780:1 16791:5 16809:1 16811:1 16831:1 16838:1 16857:1 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17117:1 17134:1 17146:5 17171:1 17194:1 17228:1 17235:1 17246:1 17252:3 17259:1 17297:1 17318:2 17357:3 17381:1 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17520:1 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:2 17867:1 17909:1 17924:1 17928:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18219:1 18229:1 18235:1 18245:1 18286:1 18299:1 18304:1 18360:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:1 18521:1 18531:3 18533:1 18534:1 18542:2 18555:1 18567:1 18576:1 18578:5 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18673:1 18687:1 18700:2 18719:1 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:1 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19302:2 19309:2 19328:2 19369:1 19404:1 19419:1 19430:1 19431:6 19448:1 19469:5 19479:2 19491:1 19498:1 19514:3 19519:1 19533:1 19572:5 19583:2 19587:1 19642:1 19646:1 19663:16 19680:1 19695:1 19696:1 19711:1 19721:2 19760:2 19786:1 19813:1 19832:1 19862:1 19898:1 19937:1 19944:1 19988:1 20017:1 20036:2 20061:2 20074:1 20090:1 20153:2 20157:1 20186:3 20211:1 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:1 20331:1 20332:1 20336:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:4 20592:1 20633:3 20639:1 20646:2 20666:1 20685:1 20744:1 20781:1 20785:1 20786:1 20806:1 20835:1 20870:5 20883:1 20931:1 20943:1 20964:2 20973:1 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:1 21309:1 21316:1 21324:1 21332:1 21343:2 21349:6 21356:1 21363:1 21370:1 21383:3 21388:1 21393:1 21403:1 21406:1 21409:2 21421:1 21428:2 21440:1 21446:1 21454:2 21476:1 21527:1 21552:4 21570:3 21574:1 21591:2 21594:1 21610:1 21612:1 21613:1 21625:1 21637:1 21670:1 21680:1 21686:2 21690:3 21693:1 21695:1 21701:1 21762:1 21777:1 21780:4 21800:1 21815:2 21852:1 21860:2 21876:1 21880:2 21884:1 21907:4 21942:2 21976:1 22011:2 22015:1 22031:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:1 22230:1 22288:2 22343:2 22352:1 22369:1 22375:2 22381:1 22428:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22565:1 22572:1 22621:1 22634:1 22654:1 22671:1 22687:5 22722:1 22773:1 22816:1 22822:1 22826:2 22838:1 22841:2 22845:1 22860:1 22868:1 22871:1 22939:16 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23021:1 23085:4 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:3 23204:1 23235:1 23242:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:1 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23516:1 23517:1 23535:1 23561:2 23583:2 23653:1 23659:2
18 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 96:2 98:2 133:1 134:1 144:1 168:1 169:5 172:2 227:1 235:1 291:1 308:1 336:4 345:4 373:2 379:1 380:2 387:1 412:2 452:1 465:1 471:2 485:1 491:1 503:1 507:1 524:1 531:1 541:1 554:4 588:2 612:3 625:2 640:1 648:1 657:4 672:1 719:1 771:3 785:1 798:2 808:2 837:1 902:1 931:7 934:1 945:1 966:1 980:1 1000:1 1013:1 1032:3 1035:1 1058:1 1072:1 1081:1 1109:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:1 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:2 1300:3 1317:1 1327:2 1328:1 1348:1 1349:1 1356:1 1362:1 1385:1 1414:1 1439:2 1441:2 1489:1 1493:2 1498:1 1518:2 1525:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1594:1 1607:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1656:1 1659:1 1704:2 1739:2 1769:1 1892:3 1903:1 1923:1 1928:1 1959:2 1964:1 1968:3 2016:1 2018:1 2023:1 2039:1 2062:1 2076:1 2081:2 2088:1 2117:4 2139:2 2140:1 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2233:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2414:3 2428:1 2444:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2554:2 2560:1 2564:1 2572:4 2579:1 2622:1 2623:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2839:1 2851:1 2864:4 2868:4 2926:1 2959:2 3017:1 3033:2 3035:1 3038:1 3044:3 3062:1 3087:2 3101:1 3121:1 3128:1 3143:1 3165:1 3175:1 3184:1 3187:1 3190:1 3202:5 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3292:1 3294:1 3355:1 3370:1 3375:1 3381:1 3383:1 3392:7 3410:1 3427:2 3439:2 3444:2 3474:3 3477:1 3484:1 3486:3 3488:1 3490:1 3498:2 3501:1 3505:1 3506:1 3507:1 3509:1 3521:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:2 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:2 3609:1 3624:16 3635:1 3646:2 3674:1 3694:1 3710:1 3719:1 3734:4 3745:2 3754:1 3771:3 3803:1 3805:1 3809:1 3828:4 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:2 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4143:1 4150:2 4169:2 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4249:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4495:5 4510:2 4525:1 4531:1 4563:1 4573:1 4618:2 4636:2 4642:1 4651:2 4662:2 4679:4 4684:3 4738:1 4751:6 4763:2 4764:1 4774:2 4798:1 4808:1 4821:1 4846:2 4861:1 4872:1 4895:3 4899:1 4924:2 4930:1 4950:1 4964:4 4970:4 4978:2 4983:1 4984:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5199:1 5206:1 5210:1 5230:4 5301:1 5310:1 5317:2 5318:1 5323:1 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5405:1 5427:1 5450:2 5454:1 5464:1 5469:2 5495:1 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:16 5673:1 5726:1 5758:1 5767:1 5771:1 5797:1 5816:1 5853:1 5876:2 5886:2 5913:2 5916:1 5949:2 5959:3 5999:1 6007:1 6008:1 6045:1 6056:1 6065:1 6069:1 6083:2 6086:1 6128:1 6131:1 6141:2 6143:2 6174:2 6187:1 6191:2 6201:2 6240:1 6249:1 6261:16 6262:2 6263:1 6277:1 6314:2 6333:1 6354:1 6364:1 6371:1 6373:2103 6403:1 6413:1 6437:2 6444:1 6447:1 6465:1 6490:1 6498:2 6509:1 6521:1 6537:1 6571:1 6575:1 6584:2 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6745:1 6758:3 6769:3 6774:1 6782:1 6794:1 6856:2 6859:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:2 7040:1 7042:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:3 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7473:1 7496:1 7511:1 7519:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7679:1 7690:1 7712:10 7713:1 7717:1 7723:1 7724:2 7733:1 7739:3 7741:1 7745:3 7795:2 7808:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:4 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:12 8067:1 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:1 8319:3 8337:1 8345:1 8363:1 8371:2 8373:1 8428:1 8434:1 8447:1 8451:1 8457:2 8478:1 8479:1 8532:1 8555:1 8562:1 8565:2 8575:5 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:3 8712:1 8720:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:2 9018:1 9026:1 9064:4 9107:1 9150:1 9166:1 9180:1 9194:1 9252:1 9281:1 9291:2 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9437:1 9439:1 9443:1 9459:1 9468:2 9477:1 9484:2 9530:1 9540:2 9562:1 9583:1 9586:1 9611:1 9624:2 9645:2 9656:1 9658:3 9674:1 9679:4 9683:2 9693:2 9733:1 9735:2 9744:3 9789:1 9829:1 9833:1 9869:1 9872:4 9882:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9990:1 9994:3 9998:3 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10121:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:2 10174:2 10175:1 10184:1 10186:2 10199:1 10230:1 10248:1 10273:1 10275:2 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:5 10494:1 10504:4 10565:1 10568:1 10580:1 10588:1 10605:1 10620:1 10640:1 10679:1 10698:5 10699:1 10717:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:4 10810:1 10824:1 10845:1 10856:1 10864:1 10868:1 10910:1 10935:1 10944:1 10954:1 10999:3 11013:2 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11070:2 11095:1 11099:2 11103:1 11166:1 11167:2 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:3 11520:1 11546:1 11557:2 11573:1 11626:3 11630:1 11640:1 11663:1 11689:1 11740:2 11744:5 11796:1 11801:1 11806:1 11814:4 11861:1 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:5 12037:2 12047:1 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12133:1 12184:1 12190:2 12214:1 12218:1 12220:1 12225:1 12234:2 12246:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:3 12441:1 12445:2 12447:2 12452:1 12456:3 12481:1 12488:2 12491:2 12500:4 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:16 12549:1 12566:1 12568:6 12569:1 12576:1 12580:1 12586:2 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:2 12836:1 12848:1 12892:4 12914:1 12923:1 12929:1 13006:1 13011:1 13015:1 13027:1 13036:1 13037:2 13046:2 13080:1 13089:2 13108:1 13147:2 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:5 13286:2 13316:1 13323:8 13329:3 13334:2 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:4 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:2 13629:1 13666:5 13682:1 13683:1 13701:1 13703:5 13717:1 13728:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:4 13876:1 13890:1 13893:1 13902:2 13903:1 13913:1 13977:1 13978:1 13992:2 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14241:1 14246:1 14273:1 14330:2 14374:1 14379:2 14386:2 14401:1 14415:1 14429:1 14433:1 14442:1 14445:1 14447:1 14458:2 14467:2 14473:2 14481:2 14530:1 14549:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:1 14679:2 14691:1 14706:1 14708:1 14761:1 14785:2 14793:1 14873:1 14928:1 14951:3 14964:1 15023:1 15054:1 15055:1 15062:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:2 15152:2 15156:1 15164:1 15167:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15337:1 15341:1 15343:1 15344:1 15349:1 15359:1 15361:1 15384:5 15389:1 15418:1 15430:2 15438:4 15504:2 15514:1 15544:1 15554:1 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15761:1 15786:1 15788:3 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15916:1 15923:1 15947:3 15950:3 15988:1 15998:1 16004:3 16006:1 16030:2 16034:16 16035:2 16102:1 16126:1 16148:2 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16340:1 16342:2 16346:1 16360:1 16409:1 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:2 16716:1 16738:3 16751:1 16762:2 16772:1 16780:1 16791:5 16809:1 16811:1 16831:1 16838:1 16857:2 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17117:1 17134:2 17146:5 17171:1 17178:1 17194:1 17228:1 17235:1 17246:1 17252:4 17259:1 17291:1 17297:1 17318:2 17357:3 17381:1 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17520:2 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:1 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17771:1 17797:1 17857:1 17861:2 17867:1 17909:1 17924:1 17928:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18219:1 18229:2 18235:1 18245:1 18286:1 18299:1 18304:1 18360:1 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:1 18521:1 18531:3 18533:1 18534:2 18542:2 18555:1 18567:1 18576:1 18578:5 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18673:1 18687:1 18700:2 18719:2 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:2 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19302:2 19309:2 19328:2 19369:1 19384:1 19404:1 19419:1 19430:1 19431:6 19448:1 19469:5 19473:1 19479:2 19491:1 19498:1 19514:3 19519:1 19533:1 19572:5 19583:2 19587:2 19612:1 19642:1 19646:1 19663:16 19680:1 19695:1 19696:1 19711:1 19721:2 19760:2 19786:1 19813:1 19832:1 19846:1 19862:1 19898:1 19937:1 19944:1 19988:1 20017:1 20036:2 20061:2 20074:1 20090:1 20153:2 20157:1 20186:4 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:1 20331:1 20332:1 20336:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:5 20592:1 20633:4 20639:1 20646:2 20666:1 20685:1 20744:1 20781:1 20785:1 20786:1 20806:1 20835:1 20870:5 20883:1 20931:1 20943:1 20964:2 20973:1 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21082:1 21098:1 21099:2 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:2 21309:2 21316:1 21324:1 21332:1 21343:2 21349:7 21356:1 21363:1 21370:1 21383:3 21388:1 21393:1 21403:1 21406:1 21409:2 21421:1 21428:2 21440:1 21446:1 21454:2 21476:1 21527:1 21552:5 21570:3 21574:1 21591:2 21593:1 21594:1 21610:1 21612:1 21613:1 21625:1 21637:1 21670:2 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21762:2 21777:1 21780:4 21800:1 21815:2 21835:1 21852:1 21860:2 21876:1 21880:3 21884:1 21907:4 21942:2 21976:1 21980:1 22011:2 22015:1 22016:1 22031:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:2 22230:1 22288:2 22294:1 22343:2 22352:1 22369:1 22375:2 22381:1 22385:1 22428:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22565:1 22572:1 22621:1 22634:1 22654:1 22671:1 22687:5 22722:1 22773:1 22816:2 22822:1 22826:3 22838:1 22841:2 22845:1 22860:2 22868:1 22871:1 22939:16 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23021:2 23085:4 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:3 23204:1 23235:1 23242:1 23275:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:2 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23516:1 23517:1 23535:1 23561:2 23583:2 23653:1 23659:2
18 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 96:2 98:2 133:1 134:1 144:1 168:1 169:5 172:2 227:1 235:1 291:1 308:1 336:5 345:4 373:2 379:1 380:2 387:1 412:2 452:1 465:1 471:2 485:1 491:1 503:1 507:1 524:1 531:1 541:1 554:4 588:2 612:3 625:2 640:1 648:1 657:4 672:1 719:1 771:3 785:1 798:2 808:2 837:1 902:1 931:9 934:1 945:1 966:1 980:1 1000:1 1013:1 1032:3 1035:1 1058:1 1072:2 1081:1 1109:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:1 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:2 1300:3 1317:1 1327:2 1328:1 1348:1 1349:1 1356:1 1362:1 1385:1 1414:1 1439:2 1441:2 1489:1 1493:2 1498:2 1518:2 1525:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1594:1 1607:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1656:1 1659:1 1704:2 1739:2 1769:1 1892:3 1903:1 1923:1 1928:1 1959:2 1964:1 1968:3 1969:1 2016:1 2018:1 2023:1 2039:1 2062:1 2076:1 2081:2 2088:1 2117:4 2139:2 2140:2 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2233:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2414:3 2428:1 2444:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2554:2 2560:1 2564:1 2572:4 2579:1 2622:1 2623:1 2680:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2834:1 2839:1 2851:1 2864:4 2868:4 2926:1 2959:2 3017:1 3033:2 3035:1 3038:1 3044:3 3062:1 3087:2 3101:1 3121:1 3128:1 3143:1 3165:1 3175:1 3184:1 3187:1 3190:1 3202:6 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3292:1 3294:1 3355:1 3370:1 3375:1 3381:1 3383:1 3392:9 3410:1 3418:1 3427:2 3439:2 3444:2 3474:3 3477:1 3484:1 3486:3 3488:1 3490:1 3498:3 3501:1 3505:1 3506:1 3507:2 3509:1 3521:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:2 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:2 3609:1 3624:16 3635:1 3646:2 3674:1 3694:1 3710:1 3719:1 3723:1 3734:4 3745:2 3754:1 3771:3 3803:1 3805:1 3809:1 3828:4 3848:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:1 3950:2 3954:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:2 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4143:1 4150:2 4169:2 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4248:1 4249:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4495:5 4510:2 4525:1 4531:1 4563:1 4573:1 4618:2 4636:2 4640:1 4642:1 4651:2 4662:2 4679:5 4684:3 4738:1 4751:6 4763:2 4764:1 4774:2 4798:1 4808:1 4821:1 4846:2 4861:1 4872:1 4895:3 4899:1 4924:2 4930:1 4950:1 4964:4 4970:4 4978:3 4983:1 4984:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5199:1 5206:1 5210:1 5230:4 5301:1 5310:1 5317:2 5318:1 5323:1 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5405:1 5427:1 5450:2 5454:1 5464:1 5469:2 5495:1 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:16 5673:1 5726:1 5758:1 5767:2 5771:1 5797:1 5798:1 5816:1 5853:1 5876:2 5886:2 5913:2 5916:1 5917:1 5949:2 5959:3 5962:1 5999:1 6007:1 6008:1 6045:1 6056:1 6065:1 6069:1 6083:2 6086:1 6128:1 6131:1 6141:2 6143:2 6174:2 6187:1 6191:2 6201:2 6240:1 6249:1 6261:16 6262:2 6263:1 6277:1 6314:2 6333:1 6354:1 6364:1 6371:1 6373:2177 6403:1 6413:1 6437:2 6444:1 6447:1 6465:1 6467:1 6490:1 6498:2 6509:1 6521:1 6537:1 6571:1 6575:1 6584:2 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6745:1 6758:3 6769:3 6774:1 6782:1 6794:1 6807:1 6856:2 6859:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:3 7040:1 7042:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:3 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7469:1 7473:1 7496:1 7511:1 7519:2 7523:1 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7679:1 7690:1 7712:10 7713:1 7717:1 7723:1 7724:2 7733:1 7739:4 7741:1 7745:3 7795:2 7808:1 7831:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:5 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:14 8054:1 8067:1 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:1 8319:3 8337:1 8345:1 8363:1 8371:2 8373:1 8428:1 8434:1 8447:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:2 8575:5 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:3 8712:1 8720:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:2 9018:1 9026:1 9064:4 9107:1 9150:1 9166:1 9180:1 9194:1 9252:1 9281:1 9291:2 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9437:1 9439:2 9443:1 9459:1 9468:2 9477:1 9484:2 9530:1 9540:2 9550:1 9562:1 9583:1 9586:1 9611:1 9624:2 9645:2 9656:1 9658:3 9674:1 9679:4 9683:2 9693:2 9733:1 9735:2 9744:3 9769:1 9789:1 9829:1 9833:1 9869:1 9872:4 9882:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9990:1 9994:4 9998:3 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:1 10121:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:2 10174:3 10175:1 10184:1 10186:2 10199:1 10230:1 10248:1 10253:1 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:5 10494:1 10504:4 10565:1 10568:1 10580:1 10588:1 10605:1 10620:1 10640:1 10679:1 10698:5 10699:1 10717:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:5 10810:1 10824:1 10845:1 10856:1 10864:1 10868:1 10910:1 10935:1 10944:1 10954:1 10999:3 11013:2 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11070:2 11095:1 11099:2 11103:1 11166:1 11167:2 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:3 11520:1 11546:1 11557:2 11573:1 11626:3 11630:1 11640:1 11663:1 11689:1 11740:2 11744:5 11796:1 11801:1 11806:1 11814:4 11861:1 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:6 12037:2 12047:1 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12133:1 12184:1 12190:2 12214:1 12218:1 12220:1 12225:1 12234:2 12245:1 12246:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:3 12441:1 12445:2 12447:2 12452:1 12456:3 12481:1 12488:2 12491:2 12500:4 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:17 12549:1 12566:1 12568:6 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:2 12836:1 12848:1 12892:4 12895:1 12914:1 12923:1 12929:1 13006:1 13011:1 13015:1 13027:1 13036:1 13037:2 13046:2 13080:1 13089:2 13108:1 13147:2 13153:1 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:5 13286:2 13316:1 13323:8 13329:4 13334:2 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:5 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:2 13629:1 13666:6 13682:1 13683:1 13701:1 13703:5 13717:1 13728:1 13770:1 13787:1 13800:1 13802:1 13812:2 13847:1 13855:2 13869:4 13876:1 13890:1 13893:1 13902:2 13903:1 13913:1 13977:1 13978:1 13992:2 13996:1 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14241:1 14246:1 14273:1 14330:2 14374:1 14379:2 14386:2 14401:1 14415:1 14429:1 14433:1 14442:1 14445:1 14447:1 14458:2 14467:2 14473:2 14481:2 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:1 14679:2 14691:1 14706:1 14708:1 14761:1 14773:1 14785:2 14793:1 14873:1 14887:1 14928:1 14951:3 14964:1 15023:1 15054:1 15055:1 15062:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:3 15152:2 15156:1 15160:1 15164:1 15167:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15337:4 15341:1 15343:1 15344:1 15346:1 15349:2 15359:1 15361:1 15376:1 15384:5 15389:2 15418:1 15430:2 15438:4 15504:2 15514:1 15544:1 15554:1 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15761:1 15786:1 15788:3 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15916:1 15923:1 15934:1 15947:3 15950:3 15988:1 15996:1 15998:1 16004:3 16006:1 16030:2 16034:16 16035:2 16102:1 16116:1 16126:1 16148:2 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16340:1 16342:2 16346:1 16360:1 16409:1 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:2 16716:1 16738:3 16751:1 16762:2 16772:1 16780:1 16791:6 16798:1 16807:1 16809:1 16811:1 16831:1 16838:1 16857:2 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:2 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17117:1 17134:2 17137:1 17146:5 17171:1 17178:1 17194:1 17228:1 17235:1 17246:1 17252:5 17259:1 17291:1 17297:1 17318:2 17357:3 17381:2 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:1 17520:2 17523:2 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:2 17657:1 17662:1 17680:2 17685:1 17687:2 17704:1 17707:1 17771:1 17797:2 17799:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17924:1 17928:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18219:1 18229:2 18235:1 18245:1 18286:1 18299:1 18304:1 18360:1 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:1 18521:1 18531:3 18533:1 18534:2 18542:2 18555:1 18567:1 18576:1 18578:5 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18673:1 18687:1 18700:2 18719:2 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:2 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19328:2 19369:1 19384:1 19404:1 19419:1 19430:1 19431:6 19448:1 19469:5 19473:1 19479:2 19491:1 19498:1 19514:3 19519:1 19533:1 19572:5 19583:2 19587:2 19612:1 19642:1 19646:1 19663:16 19680:1 19695:1 19696:1 19711:1 19721:2 19760:2 19786:1 19813:1 19832:1 19846:2 19862:1 19898:1 19937:1 19944:1 19988:1 20017:1 20028:1 20036:2 20061:2 20074:1 20090:1 20153:3 20157:1 20186:5 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:1 20331:1 20332:1 20336:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:6 20592:1 20633:4 20639:1 20646:2 20666:1 20685:1 20744:1 20756:1 20781:1 20785:1 20786:1 20806:1 20835:1 20870:5 20883:1 20931:1 20943:1 20964:2 20973:1 20993:1 20994:1 21006:1 21032:1 21040:1 21061:4 21079:1 21082:1 21098:1 21099:2 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:2 21309:2 21316:1 21324:1 21332:1 21343:2 21349:7 21356:1 21363:1 21370:1 21383:3 21388:1 21393:1 21403:1 21406:1 21409:2 21421:1 21428:2 21440:1 21446:1 21454:2 21476:1 21527:1 21552:5 21570:3 21574:1 21591:2 21593:1 21594:1 21610:2 21612:1 21613:1 21625:1 21637:1 21670:2 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21762:3 21777:1 21780:4 21800:1 21815:2 21835:1 21852:1 21860:2 21876:1 21880:3 21884:1 21907:4 21942:2 21976:1 21980:1 22011:2 22015:1 22016:2 22031:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:3 22230:1 22233:2 22237:2 22288:2 22294:2 22343:2 22352:1 22369:1 22375:2 22381:1 22385:1 22428:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22565:1 22572:1 22621:1 22634:1 22654:1 22671:1 22687:5 22722:1 22773:1 22816:2 22822:1 22826:3 22838:1 22841:2 22845:1 22860:2 22868:1 22871:1 22939:16 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23021:2 23085:4 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23199:3 23204:1 23235:1 23242:1 23275:2 23305:2 23310:1 23356:1 23406:2 23409:1 23419:3 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23516:1 23517:1 23535:1 23561:2 23583:2 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 96:2 98:2 133:1 134:1 144:1 168:1 169:5 172:2 227:1 235:1 262:1 291:1 308:1 336:6 345:4 373:2 379:1 380:2 387:1 412:2 452:1 465:1 471:2 485:2 491:1 503:1 507:1 524:1 531:1 541:1 554:4 588:2 612:3 625:2 640:1 648:1 657:5 672:1 719:1 771:3 785:1 798:2 808:2 837:1 902:1 931:9 934:1 945:1 966:1 969:1 980:1 1000:1 1013:1 1032:3 1035:1 1058:1 1063:1 1072:2 1081:1 1109:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:2 1300:3 1317:1 1327:2 1328:1 1348:1 1349:1 1356:1 1362:1 1385:1 1414:1 1439:2 1441:3 1489:1 1493:2 1498:2 1518:3 1525:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1594:1 1607:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1656:1 1659:1 1704:2 1739:2 1769:1 1892:3 1903:2 1923:1 1928:1 1934:1 1959:2 1964:1 1968:3 1969:1 2016:1 2018:1 2023:1 2039:1 2062:1 2068:1 2076:1 2081:2 2088:1 2093:1 2117:4 2139:2 2140:2 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2233:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2414:3 2415:1 2428:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2622:1 2623:1 2650:1 2680:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2834:1 2839:1 2851:1 2864:4 2868:4 2926:1 2959:3 3017:1 3033:2 3035:1 3038:1 3044:3 3050:1 3062:1 3087:2 3089:1 3101:1 3121:1 3128:1 3143:1 3165:1 3175:1 3184:1 3187:2 3190:1 3202:7 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3292:1 3294:1 3355:1 3370:1 3375:1 3381:1 3383:1 3392:9 3396:1 3410:1 3418:2 3427:2 3439:2 3444:3 3474:3 3477:1 3484:1 3486:3 3488:1 3490:1 3498:3 3501:1 3505:1 3506:1 3507:3 3509:1 3521:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:2 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:2 3609:1 3624:16 3635:1 3646:2 3674:1 3694:1 3710:1 3719:1 3723:1 3727:1 3734:4 3736:1 3745:2 3754:1 3771:3 3803:1 3805:1 3809:1 3828:4 3848:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:1 3950:2 3954:1 3957:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:2 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4143:1 4150:2 4169:2 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4248:1 4249:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4485:1 4495:5 4510:2 4525:1 4531:1 4563:1 4573:1 4618:2 4636:2 4640:1 4642:1 4651:2 4662:2 4679:7 4684:3 4699:1 4738:1 4751:8 4763:2 4764:1 4774:2 4798:1 4808:1 4821:1 4833:1 4846:2 4861:1 4872:1 4895:3 4899:1 4924:2 4930:1 4950:1 4964:4 4970:4 4978:4 4983:1 4984:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5199:1 5206:1 5210:1 5230:4 5301:1 5310:1 5317:2 5318:1 5323:1 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5405:1 5427:1 5450:2 5454:1 5464:1 5469:2 5495:1 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:16 5673:1 5726:1 5758:1 5767:2 5771:1 5797:1 5798:1 5816:1 5853:1 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:3 5962:1 5999:1 6007:1 6008:1 6045:1 6056:1 6065:1 6069:1 6083:2 6086:1 6128:1 6131:1 6141:2 6143:2 6174:2 6187:1 6191:2 6201:3 6240:1 6249:1 6261:16 6262:2 6263:1 6277:1 6283:1 6314:2 6333:1 6354:1 6364:1 6371:1 6373:2270 6403:1 6413:1 6437:2 6444:1 6447:1 6465:1 6467:1 6490:1 6498:2 6509:1 6521:1 6537:1 6571:1 6575:1 6584:3 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6745:1 6758:5 6769:5 6774:1 6782:1 6794:1 6807:1 6856:2 6859:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7040:1 7042:1 7096:2 7156:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:4 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7469:1 7473:1 7496:1 7511:1 7519:3 7523:1 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7679:1 7690:1 7712:12 7713:1 7717:1 7723:1 7724:2 7733:1 7739:4 7741:1 7745:3 7795:2 7804:1 7808:1 7831:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:6 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:15 8054:1 8067:1 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:2 8319:3 8337:1 8345:1 8363:1 8364:1 8371:2 8373:1 8428:1 8434:1 8447:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:3 8575:5 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:4 8712:1 8720:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8881:1 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:3 9018:1 9026:1 9064:5 9107:1 9150:1 9166:1 9180:1 9194:1 9252:1 9281:1 9291:3 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9423:1 9437:3 9439:2 9443:1 9459:1 9468:2 9477:1 9484:2 9530:1 9540:2 9550:1 9562:1 9583:1 9586:1 9611:1 9624:2 9645:2 9656:1 9658:3 9674:1 9679:4 9683:2 9693:2 9709:1 9733:1 9735:2 9744:3 9769:1 9789:1 9829:1 9833:1 9869:1 9872:4 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9990:1 9994:4 9998:4 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:1 10121:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:2 10174:3 10175:1 10184:1 10186:2 10199:1 10230:1 10248:1 10253:1 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:5 10494:1 10504:4 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10698:5 10699:1 10717:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:5 10810:1 10824:1 10832:1 10845:1 10856:1 10864:1 10868:1 10910:1 10920:1 10935:1 10944:1 10954:1 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11070:2 11095:1 11099:2 11103:1 11166:1 11167:2 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:5 11520:1 11546:1 11557:2 11573:1 11626:3 11630:1 11640:1 11642:1 11663:1 11689:1 11740:3 11744:5 11796:1 11801:1 11806:1 11814:4 11850:1 11861:1 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:7 12037:2 12047:1 12055:1 12058:1 12060:1 12087:1 12094:1 12111:1 12133:1 12184:1 12190:2 12214:1 12218:1 12220:1 12225:1 12234:2 12245:1 12246:2 12251:2 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:3 12441:1 12445:2 12447:2 12452:1 12456:3 12481:1 12488:2 12491:2 12500:4 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:17 12549:1 12566:1 12568:8 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12819:1 12826:3 12836:1 12848:1 12892:4 12895:1 12914:1 12923:1 12929:1 13005:1 13006:1 13011:2 13015:1 13027:1 13036:1 13037:3 13046:2 13080:1 13089:2 13108:1 13147:2 13153:1 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:7 13286:2 13316:1 13323:9 13329:4 13334:2 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:6 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:3 13629:1 13666:7 13682:1 13683:1 13701:1 13703:5 13717:1 13728:1 13770:1 13787:1 13800:1 13802:1 13812:2 13830:1 13847:1 13855:2 13860:1 13865:1 13869:4 13876:1 13890:1 13893:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:1 13998:1 14007:1 14016:2 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14241:1 14246:1 14256:1 14273:1 14330:2 14374:1 14379:2 14386:2 14401:1 14415:1 14429:1 14433:1 14442:2 14445:1 14447:1 14458:2 14467:3 14473:2 14481:2 14510:1 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14761:1 14773:1 14785:2 14793:1 14851:1 14873:1 14887:1 14928:1 14951:3 14964:1 14967:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:3 15152:2 15156:1 15160:1 15164:1 15167:1 15176:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15337:4 15341:1 15343:1 15344:1 15346:1 15349:2 15359:1 15361:1 15376:1 15384:5 15389:2 15418:1 15430:2 15438:4 15504:2 15514:2 15544:1 15554:2 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15759:1 15761:1 15786:1 15788:3 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15916:1 15923:1 15934:1 15947:3 15950:3 15988:1 15996:1 15998:1 16004:3 16006:1 16030:2 16034:16 16035:2 16102:1 16116:1 16126:1 16148:3 16162:1 16180:5 16186:1 16234:2 16248:1 16269:2 16340:1 16342:2 16346:1 16360:1 16399:1 16409:1 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:2 16716:1 16738:3 16751:1 16762:2 16772:1 16780:1 16791:7 16798:1 16807:1 16809:1 16811:1 16831:1 16838:1 16857:2 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:3 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17117:1 17134:2 17137:1 17146:5 17150:1 17171:1 17178:1 17194:1 17228:1 17235:2 17246:1 17252:6 17259:1 17291:1 17297:1 17318:2 17357:3 17381:2 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:1 17520:3 17523:2 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:2 17657:2 17662:1 17680:2 17685:1 17687:2 17704:1 17707:1 17747:1 17771:1 17797:2 17799:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17924:1 17928:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18153:1 18218:1 18219:1 18229:3 18235:1 18245:1 18286:1 18299:1 18304:1 18360:1 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:2 18521:1 18531:4 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:5 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18673:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:6 19448:1 19451:1 19469:5 19473:1 19479:2 19491:1 19498:1 19514:4 19519:1 19533:1 19572:5 19583:2 19587:2 19612:1 19642:1 19646:1 19663:16 19680:1 19695:1 19696:1 19711:1 19721:2 19760:2 19780:1 19786:1 19813:1 19832:1 19846:2 19862:1 19898:1 19937:1 19944:1 19988:1 20017:1 20028:1 20036:2 20061:2 20074:1 20090:1 20153:3 20157:1 20186:7 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:2 20331:1 20332:1 20336:1 20356:4 20407:2 20471:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:6 20592:1 20633:4 20639:1 20646:2 20666:1 20685:1 20744:1 20756:1 20781:1 20785:1 20786:1 20806:1 20835:1 20841:1 20870:5 20883:1 20931:1 20943:1 20964:2 20973:1 20993:1 20994:1 21006:1 21032:1 21040:1 21053:1 21061:4 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:2 21309:3 21316:1 21324:1 21332:1 21343:2 21349:9 21356:1 21363:1 21370:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:1 21454:2 21476:1 21527:1 21552:6 21570:3 21574:1 21591:3 21593:1 21594:1 21610:2 21612:1 21613:1 21625:1 21637:1 21670:3 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21762:3 21777:1 21780:4 21800:1 21815:2 21835:1 21852:1 21860:2 21876:1 21880:3 21884:1 21907:4 21942:2 21976:1 21980:1 22011:2 22015:1 22016:2 22031:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:3 22230:1 22233:2 22237:2 22288:2 22294:2 22343:2 22352:1 22369:1 22375:2 22381:1 22385:1 22428:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22565:1 22572:1 22584:1 22621:1 22634:1 22654:1 22671:1 22687:5 22722:1 22773:1 22790:1 22816:3 22822:1 22826:3 22838:1 22841:3 22845:1 22860:2 22868:1 22871:1 22939:16 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23021:3 23085:4 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23305:2 23310:1 23356:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:2 23445:1 23451:1 23470:1 23471:1 23516:1 23517:1 23535:1 23561:3 23583:2 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 96:2 98:2 133:1 134:1 144:1 158:1 168:1 169:5 172:2 227:1 235:1 262:1 291:1 308:1 336:9 345:4 373:2 379:1 380:2 387:1 412:2 452:1 465:1 471:2 485:2 491:1 503:1 507:1 524:1 531:1 541:1 554:4 588:2 612:3 625:2 640:1 648:1 657:5 672:1 677:1 719:1 770:1 771:3 785:1 798:2 808:3 837:2 902:1 931:9 934:1 945:1 966:1 969:1 980:1 1000:1 1003:1 1013:1 1032:3 1035:1 1058:1 1063:2 1072:2 1081:1 1109:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:2 1300:3 1317:1 1327:2 1328:1 1348:1 1349:1 1356:1 1362:1 1385:1 1414:1 1439:2 1441:3 1489:1 1493:2 1498:2 1506:1 1518:3 1525:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1594:1 1607:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:1 1656:1 1659:1 1704:2 1739:2 1769:1 1829:1 1892:4 1903:3 1923:1 1928:1 1934:1 1959:2 1964:1 1968:3 1969:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2076:1 2081:2 2088:1 2093:1 2117:4 2139:2 2140:2 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2233:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2395:1 2414:3 2415:1 2417:1 2428:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:1 2622:1 2623:1 2650:1 2680:1 2718:1 2762:1 2779:1 2788:1 2791:3 2811:1 2834:1 2839:1 2844:1 2851:1 2864:4 2868:4 2926:1 2959:3 3017:1 3033:2 3035:1 3038:1 3044:3 3050:1 3062:1 3087:2 3089:1 3101:1 3121:1 3128:1 3141:1 3143:1 3165:1 3175:1 3184:1 3187:2 3190:1 3202:8 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3292:1 3294:1 3355:1 3370:1 3375:1 3381:1 3383:1 3392:9 3396:2 3410:1 3418:2 3427:2 3439:2 3444:3 3474:3 3477:1 3484:1 3486:3 3488:1 3490:1 3498:3 3501:1 3505:1 3506:1 3507:4 3509:1 3521:1 3524:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:2 3609:1 3624:16 3635:1 3646:2 3674:1 3694:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3754:1 3771:3 3779:1 3803:1 3805:1 3809:1 3828:4 3848:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:1 3950:2 3954:1 3957:1 3963:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:2 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:1 4210:2 4215:2 4229:1 4235:1 4239:1 4248:1 4249:3 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4485:1 4495:5 4510:2 4525:1 4531:1 4563:1 4573:1 4618:2 4636:2 4640:1 4642:1 4651:2 4662:2 4679:9 4684:3 4699:1 4738:1 4751:8 4763:2 4764:1 4774:2 4798:1 4808:1 4821:1 4833:1 4841:1 4846:2 4861:1 4872:1 4895:3 4899:1 4924:2 4930:1 4939:1 4950:1 4964:4 4970:4 4978:4 4983:1 4984:1 5028:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5199:1 5206:1 5210:1 5230:4 5301:1 5310:1 5317:2 5318:1 5323:1 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5405:1 5427:1 5450:2 5454:1 5464:1 5469:2 5495:1 5499:4 5506:1 5524:1 5539:1 5554:1 5603:1 5624:16 5673:1 5726:1 5758:1 5767:2 5771:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:3 5962:1 5999:1 6007:1 6008:1 6021:1 6045:2 6056:1 6065:1 6069:1 6082:1 6083:3 6086:1 6128:1 6131:1 6141:2 6143:2 6174:2 6187:1 6191:2 6201:3 6240:1 6249:1 6261:16 6262:2 6263:1 6277:1 6283:1 6314:2 6333:1 6354:1 6364:1 6371:1 6373:2338 6403:1 6413:1 6437:2 6444:1 6447:1 6465:1 6467:1 6490:1 6498:2 6509:1 6521:1 6537:1 6571:1 6575:1 6584:3 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6745:1 6758:5 6768:1 6769:5 6774:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7040:1 7042:1 7096:2 7156:1 7187:1 7188:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:4 7342:1 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7469:1 7473:1 7496:1 7511:1 7519:3 7523:1 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:1 7622:1 7654:3 7679:1 7690:1 7712:13 7713:1 7717:1 7723:1 7724:2 7733:1 7739:5 7741:1 7745:3 7795:2 7804:1 7808:1 7831:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:9 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:15 8054:1 8067:2 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:2 8319:3 8337:1 8345:1 8363:1 8364:1 8371:2 8373:1 8428:1 8434:1 8447:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:3 8575:5 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:4 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8881:1 8887:2 8888:1 8910:1 8920:2 8945:1 8947:1 8972:1 8985:3 9018:2 9026:1 9064:5 9107:1 9150:1 9166:1 9180:1 9194:1 9252:1 9281:1 9291:3 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9459:1 9468:2 9477:1 9484:3 9530:1 9540:2 9550:1 9562:1 9583:1 9586:1 9604:1 9611:1 9624:2 9645:2 9656:1 9658:3 9674:1 9679:4 9683:2 9693:2 9709:1 9733:1 9735:2 9744:3 9769:2 9789:1 9829:1 9833:1 9869:1 9872:4 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9988:1 9990:1 9994:4 9998:4 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:1 10121:1 10125:1 10151:1 10154:1 10160:1 10164:1 10169:1 10170:2 10174:4 10175:1 10184:1 10186:2 10199:1 10230:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:5 10494:1 10504:4 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10698:5 10699:1 10717:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:7 10810:1 10824:1 10832:1 10845:1 10856:1 10864:1 10868:1 10910:1 10920:1 10935:1 10944:1 10954:1 10994:1 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11070:2 11095:1 11099:2 11103:1 11166:1 11167:2 11173:1 11183:1 11202:4 11206:2 11210:1 11234:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:5 11520:1 11546:1 11557:2 11573:1 11626:3 11630:1 11640:1 11642:1 11663:1 11689:1 11740:3 11744:5 11796:1 11801:1 11806:1 11814:4 11850:1 11861:1 11863:1 11871:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:1 11977:2 11996:1 12022:8 12037:2 12047:1 12055:1 12058:1 12060:1 12071:1 12087:1 12094:1 12103:1 12111:1 12133:1 12184:1 12190:2 12211:1 12214:1 12218:1 12220:1 12225:1 12232:1 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:3 12441:1 12445:2 12447:2 12452:1 12456:4 12481:1 12488:2 12491:2 12500:4 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:18 12549:1 12566:1 12568:8 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:2 12826:3 12836:1 12848:1 12892:4 12895:1 12914:1 12923:1 12929:1 13005:1 13006:1 13011:2 13015:1 13027:1 13036:1 13037:3 13046:2 13080:1 13089:2 13108:1 13147:2 13153:1 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:8 13286:2 13316:1 13323:10 13329:4 13334:2 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:7 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:3 13629:1 13666:8 13682:1 13683:1 13701:1 13703:5 13717:1 13728:1 13770:1 13787:1 13800:1 13802:1 13812:2 13830:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:4 13876:1 13890:1 13893:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:3 14007:1 14016:3 14020:1 14056:1 14072:1 14094:2 14095:1 14136:2 14148:2 14179:2 14195:1 14241:1 14246:1 14256:1 14273:1 14330:2 14374:1 14379:2 14386:2 14401:1 14410:1 14415:1 14429:1 14433:1 14442:2 14445:1 14447:1 14458:2 14467:3 14473:2 14481:2 14510:1 14527:1 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14761:1 14773:1 14785:2 14793:1 14851:1 14873:1 14887:1 14928:1 14951:3 14964:1 14967:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:3 15152:2 15156:1 15160:1 15164:1 15167:1 15176:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15337:4 15341:1 15343:1 15344:1 15346:1 15349:2 15359:1 15361:1 15376:1 15384:5 15389:2 15418:1 15430:2 15438:4 15504:3 15514:2 15544:1 15554:2 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:1 15759:1 15761:1 15786:1 15788:3 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15916:1 15923:1 15934:2 15947:3 15950:3 15988:1 15996:1 15998:1 16004:3 16006:1 16030:2 16034:16 16035:2 16102:1 16116:1 16126:1 16148:3 16162:1 16180:5 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16356:1 16360:1 16399:1 16409:2 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:2 16716:1 16738:3 16749:1 16751:1 16762:2 16772:1 16780:1 16791:8 16798:1 16807:1 16809:1 16811:1 16831:1 16838:1 16857:2 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:3 16962:2 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:2 17137:1 17146:5 17150:1 17171:1 17178:1 17194:1 17221:1 17228:1 17235:2 17246:1 17252:9 17259:1 17291:1 17297:1 17318:2 17357:3 17381:3 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17608:1 17609:1 17626:4 17636:1 17651:2 17657:2 17662:1 17680:2 17685:1 17687:2 17704:1 17707:1 17747:1 17771:1 17797:2 17799:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17920:1 17924:1 17928:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18153:1 18218:1 18219:1 18229:3 18235:1 18245:1 18286:1 18292:1 18299:1 18304:1 18360:1 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:2 18521:2 18531:5 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:5 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18666:1 18673:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19116:2 19132:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:1 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:6 19448:1 19451:1 19469:5 19473:1 19479:2 19491:1 19498:1 19514:4 19519:1 19533:1 19572:5 19583:2 19587:2 19612:1 19642:1 19646:1 19663:16 19680:1 19695:1 19696:1 19711:1 19721:2 19760:2 19780:1 19786:1 19813:1 19832:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19988:1 20017:1 20028:1 20036:3 20061:2 20074:1 20090:1 20153:3 20157:1 20186:9 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:3 20331:1 20332:1 20336:1 20356:4 20369:1 20407:2 20462:1 20467:1 20471:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:7 20592:1 20633:4 20639:1 20646:2 20666:1 20685:1 20744:1 20756:1 20781:1 20785:1 20786:1 20806:1 20835:1 20841:1 20870:5 20883:1 20931:1 20943:1 20964:2 20973:1 20975:1 20993:1 20994:1 21006:1 21032:1 21040:1 21053:1 21061:4 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:2 21309:3 21316:1 21324:1 21332:1 21343:2 21349:10 21356:1 21363:1 21370:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:1 21454:2 21476:1 21527:1 21549:1 21552:7 21570:3 21574:1 21591:4 21593:1 21594:1 21610:2 21612:1 21613:1 21625:1 21637:1 21670:3 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:1 21762:3 21777:1 21780:4 21800:1 21815:2 21835:1 21852:1 21860:2 21876:1 21880:3 21884:1 21907:4 21942:2 21976:1 21980:1 22011:2 22015:1 22016:2 22031:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:3 22229:1 22230:1 22233:2 22237:2 22285:1 22288:2 22294:2 22343:2 22352:1 22369:1 22375:2 22381:1 22385:1 22428:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22565:1 22572:1 22584:1 22621:1 22634:1 22654:1 22671:1 22687:5 22722:1 22773:1 22790:1 22816:3 22822:1 22826:3 22838:1 22841:3 22845:1 22860:2 22868:1 22871:1 22939:16 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23021:3 23085:4 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23278:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:3 23445:1 23451:1 23470:1 23471:1 23516:1 23517:1 23535:1 23537:1 23561:3 23583:2 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 95:1 96:2 98:2 133:1 134:1 144:1 158:1 168:1 169:5 172:2 227:1 235:1 262:1 291:1 308:1 336:9 345:4 373:2 379:1 380:2 387:1 412:2 451:1 452:1 465:1 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 625:2 632:1 640:1 648:1 657:6 672:1 677:1 709:1 716:1 719:1 770:1 771:3 785:1 798:2 808:5 811:1 815:1 837:2 902:1 931:10 934:1 945:1 966:1 969:1 980:1 1000:1 1003:1 1013:1 1031:1 1032:3 1035:1 1058:1 1063:2 1072:2 1081:1 1109:1 1112:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:2 1300:3 1317:1 1327:2 1328:1 1348:1 1349:1 1356:1 1362:1 1372:1 1385:1 1414:1 1439:2 1441:4 1489:1 1493:2 1495:1 1498:2 1506:1 1518:4 1525:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1594:1 1607:1 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:1 1656:1 1659:1 1704:2 1739:2 1769:1 1829:1 1892:4 1903:3 1923:1 1928:1 1934:1 1954:1 1959:2 1964:1 1968:3 1969:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2076:1 2081:2 2088:1 2093:1 2117:4 2139:2 2140:2 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2233:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2395:1 2414:3 2415:1 2417:1 2428:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:1 2622:1 2623:1 2649:1 2650:1 2665:1 2680:1 2718:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:1 2851:1 2864:4 2868:4 2926:1 2938:1 2959:4 3017:1 3033:2 3035:1 3038:1 3042:1 3044:3 3050:1 3062:1 3087:2 3089:1 3101:1 3121:1 3128:1 3141:1 3143:1 3165:1 3175:1 3184:1 3187:3 3190:1 3202:12 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:1 3310:1 3355:2 3370:1 3375:1 3381:2 3383:1 3392:10 3396:2 3410:1 3418:2 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:3 3488:1 3490:1 3498:4 3501:1 3505:1 3506:1 3507:4 3509:1 3521:1 3524:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:2 3609:1 3624:16 3635:1 3646:3 3674:1 3694:1 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3754:1 3771:3 3779:1 3803:1 3805:1 3809:1 3828:4 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:1 3950:2 3954:1 3957:1 3963:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:2 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:1 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:1 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4485:1 4495:6 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:2 4640:1 4642:1 4651:2 4662:2 4679:9 4684:3 4699:1 4738:1 4742:1 4751:10 4763:2 4764:1 4774:2 4798:1 4808:1 4821:1 4833:1 4841:1 4846:2 4861:1 4865:1 4872:1 4895:3 4899:1 4924:2 4930:1 4939:1 4950:1 4964:4 4970:4 4978:4 4983:1 4984:1 5028:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:1 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5405:1 5427:1 5450:2 5454:1 5460:1 5464:1 5469:2 5495:1 5499:4 5506:1 5524:1 5539:1 5545:1 5554:1 5603:1 5624:16 5673:1 5726:1 5741:1 5758:1 5767:2 5771:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:3 5962:1 5999:1 6007:1 6008:1 6021:1 6045:2 6056:1 6065:1 6069:1 6082:1 6083:3 6086:1 6128:1 6131:1 6141:2 6143:2 6174:2 6187:1 6191:2 6201:3 6240:1 6249:1 6261:16 6262:2 6263:1 6277:1 6283:1 6314:2 6324:1 6333:1 6354:1 6364:1 6371:1 6372:1 6373:2401 6403:1 6413:1 6437:2 6444:1 6447:1 6460:1 6465:1 6467:1 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6575:1 6584:3 6593:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6685:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6745:1 6758:5 6768:1 6769:5 6774:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6893:1 6900:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7040:1 7042:1 7096:2 7156:1 7187:1 7188:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:4 7342:1 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7469:1 7473:1 7496:1 7511:1 7519:6 7523:2 7528:1 7551:1 7557:1 7575:1 7585:1 7588:1 7594:2 7622:1 7627:1 7654:3 7679:1 7690:1 7712:13 7713:1 7717:1 7718:1 7723:1 7724:2 7733:1 7739:5 7741:1 7745:3 7795:2 7804:1 7808:1 7831:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:9 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:15 8054:1 8055:1 8067:2 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8152:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:2 8319:3 8337:1 8345:2 8363:1 8364:1 8371:2 8373:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:5 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:4 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8881:1 8887:2 8888:1 8910:1 8920:2 8928:1 8945:1 8947:1 8972:1 8985:4 9018:2 9026:1 9064:6 9107:1 9150:1 9166:1 9180:1 9194:1 9252:1 9281:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9459:1 9468:2 9477:1 9484:3 9495:1 9530:1 9540:2 9550:1 9562:1 9583:1 9586:1 9601:1 9604:1 9611:1 9624:2 9645:2 9656:1 9658:4 9674:1 9679:4 9683:2 9693:2 9709:1 9733:1 9735:2 9744:4 9769:2 9789:1 9793:1 9829:1 9833:1 9869:1 9872:4 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9988:1 9990:1 9994:4 9998:6 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:2 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10184:1 10186:2 10199:1 10230:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:5 10494:1 10504:4 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:5 10699:1 10717:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:7 10810:1 10824:1 10832:1 10845:1 10856:1 10864:1 10868:1 10910:1 10920:1 10935:1 10944:1 10954:1 10994:1 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11070:3 11095:1 11099:2 11103:1 11166:1 11167:2 11173:1 11183:1 11195:1 11202:4 11206:2 11210:1 11234:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:5 11520:1 11527:1 11546:1 11557:2 11573:1 11626:4 11630:1 11637:1 11640:1 11642:1 11663:1 11689:1 11736:1 11740:3 11744:5 11796:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:1 11871:1 11872:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:2 11977:2 11983:1 11996:1 12022:12 12037:2 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12087:1 12092:1 12094:1 12103:1 12111:1 12133:1 12184:1 12190:2 12211:1 12214:1 12218:1 12220:1 12225:1 12232:1 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12285:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12399:2 12408:1 12409:2 12417:3 12420:3 12441:1 12444:1 12445:2 12447:2 12452:1 12456:4 12468:1 12481:1 12488:2 12491:2 12500:4 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:18 12549:1 12566:1 12568:10 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:2 12826:3 12836:1 12848:1 12861:1 12892:4 12895:1 12914:1 12923:1 12929:1 12941:1 12965:1 13005:1 13006:1 13011:3 13015:1 13027:1 13036:1 13037:3 13046:2 13080:1 13089:2 13108:1 13147:2 13153:1 13164:2 13165:1 13168:1 13198:1 13216:2 13222:1 13251:8 13286:2 13316:1 13323:12 13329:5 13334:2 13335:1 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:7 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:4 13629:1 13666:12 13682:1 13683:1 13701:1 13703:5 13717:1 13728:1 13770:1 13787:1 13800:1 13802:1 13812:2 13830:1 13831:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:5 13876:1 13877:1 13890:1 13893:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:3 14007:1 14008:1 14016:3 14020:1 14056:1 14072:1 14094:2 14095:1 14114:1 14136:2 14148:2 14176:1 14179:2 14188:1 14195:1 14241:1 14246:1 14256:1 14273:1 14298:1 14314:1 14330:2 14374:1 14379:2 14386:2 14401:1 14410:1 14415:1 14429:1 14433:1 14442:2 14445:1 14447:1 14458:2 14467:3 14473:2 14481:2 14510:1 14527:1 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14740:1 14761:1 14773:1 14785:2 14793:1 14851:1 14873:1 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:3 15152:2 15156:1 15160:1 15164:1 15167:1 15176:1 15188:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15333:1 15337:6 15341:17 15343:1 15344:1 15346:1 15349:2 15359:1 15361:1 15366:1 15376:1 15384:5 15389:2 15418:1 15430:3 15438:4 15504:3 15514:2 15544:1 15554:2 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:1 15759:1 15761:1 15786:1 15788:3 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15916:1 15923:1 15934:2 15947:3 15950:4 15956:1 15988:1 15996:1 15998:1 16004:3 16006:1 16030:2 16034:16 16035:2 16064:1 16102:1 16116:1 16126:1 16148:4 16162:1 16180:5 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16356:1 16360:1 16399:1 16409:2 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:1 16738:3 16749:1 16751:1 16762:2 16772:1 16780:1 16791:12 16798:1 16807:1 16809:1 16811:1 16816:1 16831:1 16838:1 16856:1 16857:2 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:3 16962:2 16975:1 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:2 17137:1 17146:5 17150:1 17171:1 17178:1 17194:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:9 17259:1 17291:1 17297:1 17318:2 17357:3 17381:3 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17608:1 17609:1 17626:4 17636:1 17651:4 17657:2 17662:1 17680:2 17685:1 17687:2 17704:1 17707:1 17747:1 17771:1 17797:2 17799:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17920:1 17924:1 17928:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18286:1 18292:1 18299:1 18304:1 18308:1 18344:1 18360:1 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:2 18521:2 18531:5 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19098:1 19116:2 19132:1 19140:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:1 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:6 19448:1 19451:1 19469:5 19473:1 19479:2 19491:1 19498:1 19514:5 19519:1 19533:1 19572:5 19583:2 19587:2 19612:1 19642:1 19646:1 19663:16 19680:1 19695:1 19696:1 19711:1 19721:2 19760:2 19780:1 19786:1 19795:1 19813:1 19832:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19974:1 19988:1 20017:1 20028:1 20036:3 20061:2 20074:1 20090:1 20153:4 20157:1 20176:1 20186:9 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:3 20331:1 20332:1 20336:1 20356:4 20362:1 20369:1 20397:1 20407:2 20462:1 20467:1 20471:1 20505:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:7 20592:1 20633:5 20639:1 20646:2 20666:1 20685:1 20744:1 20756:1 20781:1 20785:1 20786:1 20806:1 20835:2 20841:1 20870:5 20883:1 20931:1 20943:1 20964:2 20973:1 20975:1 20993:1 20994:1 21006:1 21032:1 21040:1 21053:1 21061:4 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:2 21309:3 21316:1 21324:1 21332:1 21343:2 21349:11 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:1 21454:2 21464:1 21476:1 21527:2 21549:1 21552:8 21569:1 21570:3 21574:1 21591:4 21593:1 21594:1 21610:2 21612:1 21613:1 21625:1 21637:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:1 21762:3 21777:1 21780:4 21800:1 21815:2 21835:1 21852:1 21860:2 21876:1 21880:4 21884:1 21907:4 21942:2 21976:1 21980:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22222:3 22229:1 22230:1 22233:2 22237:2 22285:1 22288:2 22294:2 22343:2 22352:1 22369:1 22375:2 22381:1 22385:1 22428:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22565:1 22572:1 22584:1 22621:1 22632:1 22634:1 22654:1 22671:1 22687:5 22720:1 22722:1 22724:1 22773:1 22790:1 22816:4 22822:1 22826:3 22838:1 22841:3 22845:1 22860:2 22868:1 22871:1 22939:16 22943:2 22987:1 22993:1 23004:1 23006:1 23011:1 23021:4 23085:5 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23278:1 23284:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:3 23445:1 23451:1 23453:1 23470:1 23471:1 23516:1 23517:1 23535:1 23537:1 23538:1 23541:1 23555:1 23557:1 23561:3 23583:2 23620:1 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 70:1 75:1 94:1 95:1 96:2 98:2 133:1 134:1 144:1 158:1 168:1 169:5 172:2 173:1 227:1 235:1 262:1 291:1 308:1 336:10 345:4 373:2 379:1 380:2 387:1 412:2 451:1 452:1 465:1 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 625:2 632:1 640:1 641:1 648:1 657:6 672:1 677:1 709:1 716:1 719:1 770:1 771:3 785:1 798:2 808:5 811:1 815:1 837:2 887:1 902:1 931:10 934:1 945:1 966:1 969:1 980:1 1000:1 1003:1 1013:1 1031:1 1032:3 1035:1 1058:1 1063:2 1072:2 1081:1 1109:1 1112:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:2 1300:3 1317:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1439:2 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1518:4 1525:1 1529:1 1545:1 1559:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1704:2 1739:2 1769:1 1829:1 1892:5 1903:3 1923:1 1928:1 1934:1 1954:1 1959:2 1964:1 1968:3 1969:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2076:1 2081:2 2088:1 2093:1 2117:4 2133:1 2139:2 2140:2 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2233:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2395:1 2414:3 2415:1 2417:1 2428:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:1 2622:1 2623:1 2649:1 2650:1 2665:1 2680:1 2718:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:1 2864:4 2868:4 2926:1 2938:1 2959:4 3017:1 3033:2 3035:1 3038:1 3042:1 3044:3 3050:1 3062:1 3087:2 3089:1 3101:1 3121:1 3128:1 3141:1 3143:1 3165:1 3175:1 3184:1 3187:3 3190:1 3202:13 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:1 3310:1 3355:2 3364:1 3370:1 3375:1 3381:2 3383:1 3392:10 3396:2 3410:1 3418:2 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:4 3488:1 3490:1 3498:4 3501:1 3505:1 3506:1 3507:4 3509:1 3521:1 3524:1 3547:2 3548:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:3 3609:1 3624:17 3635:1 3646:3 3674:1 3694:1 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3754:1 3771:3 3779:1 3803:1 3805:1 3809:1 3828:4 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:2 3950:2 3954:1 3957:1 3963:1 3966:1 3971:1 3984:1 4024:1 4031:2 4055:2 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:1 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4485:1 4495:6 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:2 4640:1 4642:1 4651:2 4662:2 4679:10 4684:3 4699:1 4738:1 4742:1 4751:10 4763:2 4764:1 4774:2 4798:1 4808:1 4821:1 4833:1 4841:1 4846:2 4861:1 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:4 4970:4 4978:4 4983:1 4984:1 5028:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:1 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5405:1 5427:1 5450:2 5454:1 5460:1 5464:1 5469:2 5495:1 5499:4 5506:1 5524:1 5539:1 5545:1 5554:1 5603:1 5624:17 5673:2 5726:1 5741:1 5758:1 5767:2 5771:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:3 5962:1 5999:1 6007:1 6008:1 6021:2 6045:2 6056:1 6065:1 6069:1 6082:2 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6187:1 6191:2 6201:3 6240:1 6249:1 6261:17 6262:2 6263:1 6277:1 6283:1 6314:2 6324:1 6333:1 6354:1 6364:1 6371:1 6372:1 6373:2466 6403:1 6413:1 6437:2 6444:1 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6575:1 6584:3 6593:2 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6685:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6739:1 6745:1 6758:5 6768:1 6769:5 6774:1 6777:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6893:1 6900:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7040:1 7042:1 7045:1 7096:2 7156:1 7187:1 7188:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:4 7342:2 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7469:1 7473:1 7496:1 7511:1 7519:6 7523:3 7528:1 7551:1 7557:1 7575:1 7585:1 7588:2 7594:2 7622:1 7627:1 7654:3 7679:1 7690:1 7712:14 7713:1 7717:1 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7831:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:10 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:15 8054:1 8055:1 8067:2 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8152:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:2 8319:3 8337:1 8345:2 8363:1 8364:1 8371:2 8373:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:6 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8670:1 8692:1 8703:4 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8881:1 8887:2 8888:1 8910:1 8920:2 8928:1 8945:1 8947:1 8972:1 8985:4 9018:2 9026:1 9064:6 9107:1 9150:1 9166:1 9180:2 9194:1 9252:1 9255:1 9281:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9459:1 9468:2 9469:1 9477:1 9484:4 9495:1 9530:1 9540:2 9550:1 9562:1 9583:1 9586:1 9601:1 9604:1 9611:1 9624:2 9645:2 9656:1 9658:4 9674:1 9679:4 9683:2 9693:2 9709:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:1 9833:1 9869:1 9872:4 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:6 9961:1 9967:4 9986:2 9987:1 9988:1 9990:1 9994:4 9998:6 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10184:1 10186:2 10199:1 10230:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:1 10435:1 10454:3 10489:6 10494:1 10504:4 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:5 10699:1 10717:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:8 10810:1 10824:1 10832:1 10845:1 10856:1 10864:1 10868:1 10896:1 10910:1 10920:1 10935:1 10944:1 10954:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11070:3 11095:1 11099:2 11103:1 11166:1 11167:2 11173:1 11183:1 11195:1 11202:4 11206:2 11210:1 11234:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:5 11520:1 11527:1 11546:1 11557:2 11573:1 11626:4 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11736:1 11740:3 11744:6 11796:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:1 11878:1 11884:2 11923:1 11929:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:13 12037:2 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12087:1 12092:1 12094:1 12103:1 12111:1 12133:1 12184:1 12190:2 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12285:1 12293:1 12311:1 12320:1 12322:1 12350:2 12372:1 12375:1 12392:1 12399:2 12408:1 12409:2 12417:3 12420:3 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12481:1 12488:2 12491:2 12500:5 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:19 12549:1 12566:1 12568:10 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12892:4 12895:1 12914:1 12923:1 12929:2 12941:1 12965:1 13005:1 13006:1 13011:3 13015:1 13027:1 13036:1 13037:3 13046:2 13080:1 13089:2 13108:1 13147:2 13153:1 13164:2 13165:1 13168:1 13198:1 13212:1 13216:2 13222:1 13251:8 13286:2 13316:1 13323:12 13329:5 13334:2 13335:1 13337:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:7 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:4 13629:1 13666:13 13682:1 13683:1 13701:1 13703:5 13717:1 13728:1 13745:1 13770:1 13787:1 13800:1 13802:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:5 13876:1 13877:1 13890:1 13893:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:4 14007:1 14008:1 14016:4 14020:1 14056:1 14072:1 14094:2 14095:1 14114:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14241:1 14246:1 14256:1 14273:1 14298:1 14314:1 14330:2 14374:1 14379:2 14386:2 14401:1 14410:2 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14458:2 14467:3 14473:2 14481:2 14510:1 14527:1 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14740:1 14761:1 14773:1 14785:2 14793:1 14851:1 14873:1 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:3 15152:2 15156:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15237:1 15266:2 15282:3 15295:1 15313:1 15329:3 15333:1 15337:6 15341:17 15343:1 15344:1 15346:1 15349:2 15359:2 15361:1 15366:1 15376:1 15384:5 15389:2 15418:1 15430:3 15438:4 15504:3 15514:2 15544:1 15554:2 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15755:1 15759:1 15761:1 15786:1 15788:3 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15916:1 15923:1 15934:3 15947:3 15950:4 15956:1 15988:1 15996:1 15998:1 16004:3 16006:1 16030:2 16034:17 16035:2 16064:1 16085:1 16102:1 16116:1 16126:1 16148:4 16162:1 16180:5 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16356:1 16360:1 16399:1 16409:2 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:1 16738:3 16749:1 16751:1 16762:2 16772:1 16780:1 16791:13 16798:1 16807:1 16809:1 16811:1 16816:1 16831:1 16838:1 16856:1 16857:2 16862:1 16863:1 16864:1 16911:1 16919:2 16930:4 16943:3 16962:2 16975:1 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:2 17137:1 17146:5 17150:1 17171:1 17178:1 17194:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:10 17259:1 17291:1 17297:1 17318:2 17357:3 17381:3 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17608:1 17609:1 17626:4 17636:1 17651:5 17657:2 17662:1 17680:2 17685:1 17687:2 17704:1 17707:1 17747:1 17771:1 17797:3 17799:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17920:1 17924:1 17928:1 17956:1 17965:3 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18286:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:1 18360:1 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19098:1 19116:3 19132:1 19140:1 19142:1 19158:2 19163:5 19193:1 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:6 19448:1 19451:1 19469:6 19473:1 19479:2 19491:1 19498:1 19514:5 19519:1 19533:1 19572:5 19583:2 19587:2 19612:1 19642:1 19646:1 19661:1 19663:17 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19760:2 19780:1 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19974:1 19978:1 19988:1 20017:1 20028:1 20036:4 20061:2 20074:1 20090:1 20153:5 20157:1 20176:1 20186:10 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:3 20331:1 20332:1 20336:1 20356:4 20362:1 20369:2 20397:1 20407:2 20462:2 20467:1 20471:1 20505:1 20509:1 20524:3 20526:1 20528:1 20532:1 20543:7 20592:1 20633:5 20639:1 20646:2 20666:1 20685:1 20744:1 20756:1 20768:1 20781:1 20785:1 20786:1 20806:1 20835:2 20841:1 20870:6 20883:1 20931:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:2 21309:3 21316:1 21324:1 21332:1 21343:2 21349:11 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:1 21454:2 21464:1 21476:1 21527:2 21549:2 21552:8 21569:1 21570:3 21574:1 21591:4 21593:1 21594:1 21610:2 21612:1 21613:1 21625:1 21637:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:2 21762:3 21777:1 21780:4 21800:1 21815:2 21835:1 21852:1 21860:2 21876:1 21880:4 21884:1 21907:4 21942:2 21976:1 21980:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:1 22140:1 22159:1 22166:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22285:2 22288:2 22294:2 22343:2 22352:1 22369:1 22375:2 22381:1 22385:1 22417:1 22428:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22565:1 22572:1 22584:1 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:6 22720:1 22722:1 22724:1 22773:1 22790:1 22816:4 22822:1 22826:3 22838:1 22841:3 22845:1 22860:2 22868:1 22871:1 22939:17 22943:2 22944:1 22987:1 22993:1 23004:1 23006:1 23011:1 23021:4 23085:5 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23278:1 23284:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:3 23445:1 23451:1 23453:1 23470:1 23471:1 23516:1 23517:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23620:1 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 63:1 70:1 75:1 94:1 95:1 96:2 98:2 133:1 134:1 144:1 158:1 168:1 169:6 172:2 173:1 227:1 235:1 262:1 291:1 308:1 336:10 345:4 373:2 379:1 380:2 387:1 412:2 451:1 452:1 465:1 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 625:2 632:1 640:1 641:1 648:1 657:6 672:1 677:1 709:1 716:1 719:1 770:1 771:3 785:1 798:2 808:5 811:1 813:1 815:1 837:2 848:1 887:1 902:1 931:10 934:1 945:1 966:1 969:1 980:1 1000:1 1003:1 1013:1 1031:1 1032:3 1035:1 1058:1 1063:3 1072:2 1081:1 1109:1 1112:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:2 1300:3 1317:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:2 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1518:4 1525:1 1529:3 1545:1 1559:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1700:1 1704:2 1739:2 1769:1 1829:1 1892:5 1903:3 1923:1 1928:1 1934:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2076:1 2081:2 2088:2 2093:1 2117:4 2133:1 2139:2 2140:2 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2217:1 2233:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2395:1 2414:3 2415:1 2417:1 2428:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:1 2622:1 2623:1 2649:1 2650:1 2665:1 2680:1 2718:2 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:1 2864:4 2868:4 2926:1 2938:1 2959:5 3017:1 3033:2 3035:1 3038:1 3042:1 3044:3 3050:1 3062:1 3087:2 3089:1 3101:1 3121:1 3128:1 3141:1 3143:1 3165:1 3175:1 3184:1 3187:3 3190:1 3202:14 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:1 3310:1 3355:2 3364:1 3370:1 3375:1 3381:2 3383:1 3392:10 3396:3 3410:1 3418:2 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:4 3488:1 3490:1 3498:4 3501:1 3505:1 3506:1 3507:4 3509:1 3514:1 3521:1 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:3 3609:1 3624:19 3635:1 3646:3 3674:1 3694:1 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3764:1 3771:3 3779:1 3803:1 3805:1 3809:1 3828:4 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:2 3950:2 3954:1 3957:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4055:3 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:1 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4651:2 4662:2 4679:10 4684:3 4699:1 4738:1 4742:1 4751:12 4763:2 4764:1 4774:2 4798:1 4801:1 4808:2 4821:1 4833:1 4841:1 4846:2 4861:1 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:4 4970:5 4978:4 4983:1 4984:1 5028:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:1 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:1 5405:1 5427:1 5450:2 5454:1 5460:1 5464:1 5469:2 5495:1 5499:4 5506:1 5524:1 5539:1 5545:1 5554:1 5603:2 5624:19 5673:3 5726:1 5741:1 5758:1 5767:2 5771:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:3 5962:1 5999:1 6007:1 6008:2 6021:2 6045:2 6056:1 6065:1 6069:1 6082:2 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6187:1 6191:2 6201:3 6240:1 6249:1 6261:19 6262:2 6263:1 6277:1 6283:1 6314:2 6324:1 6333:1 6354:1 6364:1 6371:1 6372:1 6373:2527 6403:1 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6575:1 6584:3 6593:3 6600:1 6605:1 6609:1 6622:1 6651:3 6667:1 6674:1 6685:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6739:1 6745:1 6758:5 6768:1 6769:5 6774:1 6777:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6893:1 6900:1 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7040:1 7042:1 7045:1 7096:2 7138:1 7156:1 7187:1 7188:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:4 7342:2 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7469:1 7473:1 7496:1 7511:1 7519:7 7523:3 7528:1 7551:1 7557:1 7575:1 7585:1 7588:2 7594:2 7622:1 7627:1 7631:1 7654:3 7674:1 7679:1 7690:1 7712:14 7713:1 7717:1 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7831:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:10 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:15 8054:1 8055:1 8067:2 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8152:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:2 8266:1 8293:3 8319:3 8337:1 8345:2 8363:1 8364:2 8371:2 8373:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:6 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8703:4 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8881:1 8887:2 8888:1 8910:1 8920:2 8928:1 8945:1 8947:1 8972:1 8985:5 9018:2 9026:1 9064:7 9107:1 9139:1 9150:1 9166:1 9180:2 9194:1 9252:1 9255:1 9281:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:1 9459:1 9468:2 9469:1 9477:1 9484:4 9495:1 9530:1 9540:2 9550:1 9562:1 9583:1 9586:1 9601:1 9604:1 9611:1 9624:2 9645:2 9656:1 9658:5 9674:1 9679:4 9683:2 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:1 9833:1 9869:1 9872:4 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:7 9961:1 9967:4 9986:2 9987:1 9988:1 9990:1 9994:4 9998:7 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10184:1 10186:2 10199:1 10230:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:2 10435:2 10454:3 10489:6 10494:1 10504:4 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:6 10699:1 10717:1 10727:1 10737:1 10739:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:8 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10896:1 10910:1 10920:1 10935:1 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11070:3 11095:1 11099:2 11103:1 11115:1 11166:1 11167:2 11173:1 11183:1 11195:1 11202:4 11206:2 11210:1 11234:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:5 11520:1 11527:1 11546:1 11557:2 11573:1 11626:4 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11736:1 11740:3 11744:6 11796:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:1 11878:1 11884:2 11899:1 11923:1 11929:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:14 12037:2 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12087:1 12092:1 12094:1 12103:1 12111:2 12133:1 12184:1 12189:1 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:1 12285:1 12293:1 12299:1 12311:1 12320:1 12322:2 12350:2 12372:1 12375:1 12392:1 12399:2 12408:1 12409:2 12417:3 12420:3 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:19 12549:1 12566:1 12568:12 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12892:5 12895:1 12914:1 12923:1 12929:2 12941:1 12965:1 13005:1 13006:1 13011:3 13015:1 13027:1 13036:1 13037:3 13046:2 13080:1 13089:2 13108:1 13147:2 13153:1 13164:2 13165:1 13168:1 13198:1 13212:1 13216:2 13222:1 13251:10 13286:2 13300:1 13316:1 13323:12 13329:5 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:8 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:4 13629:1 13666:14 13682:1 13683:1 13690:1 13701:1 13703:6 13717:1 13728:1 13745:1 13770:1 13787:1 13800:1 13802:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:5 13876:1 13877:1 13890:1 13893:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:4 14007:1 14008:1 14016:4 14020:1 14028:1 14056:1 14072:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14241:1 14246:1 14256:1 14273:1 14298:1 14314:1 14330:2 14374:1 14379:2 14386:2 14401:1 14410:2 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:2 14481:2 14510:1 14527:1 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14740:1 14761:1 14773:1 14785:2 14793:1 14851:1 14873:1 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:3 15152:2 15156:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15237:1 15266:2 15282:3 15295:1 15313:1 15322:1 15329:3 15333:1 15337:6 15341:17 15343:1 15344:1 15346:1 15349:2 15359:2 15361:1 15366:1 15376:1 15384:5 15389:2 15418:1 15430:3 15438:4 15504:3 15514:2 15544:1 15554:2 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15755:1 15759:1 15761:1 15786:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15913:1 15916:1 15923:1 15934:3 15947:3 15950:4 15956:1 15988:1 15996:1 15998:1 16004:3 16006:1 16030:2 16034:19 16035:2 16064:1 16085:1 16102:1 16116:1 16126:1 16131:1 16148:4 16162:1 16180:5 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16356:1 16360:1 16399:1 16409:2 16412:1 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:1 16738:3 16749:1 16751:1 16762:2 16772:1 16780:1 16791:14 16798:1 16807:1 16809:1 16811:1 16816:1 16831:1 16838:1 16856:1 16857:3 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16930:4 16943:3 16962:2 16975:1 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:2 17137:1 17146:6 17150:1 17171:1 17178:1 17194:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:10 17259:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17608:1 17609:1 17626:4 17636:1 17651:5 17657:2 17662:1 17680:2 17685:1 17687:2 17704:1 17707:1 17747:1 17771:1 17797:4 17799:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17910:1 17920:1 17924:1 17928:1 17956:1 17965:5 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18286:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:1 18360:2 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19098:1 19105:1 19116:3 19132:1 19140:1 19142:1 19158:2 19163:6 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:6 19448:1 19451:1 19469:6 19473:1 19479:2 19491:1 19498:1 19514:6 19519:1 19533:1 19572:6 19583:2 19587:2 19612:1 19642:1 19646:1 19661:1 19663:19 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19760:2 19780:2 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 20017:1 20028:1 20036:4 20061:2 20074:1 20090:2 20153:6 20157:1 20176:1 20186:10 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:3 20331:1 20332:1 20336:1 20356:4 20362:1 20369:2 20397:1 20407:2 20462:2 20467:1 20471:1 20505:1 20509:1 20524:3 20526:1 20528:1 20529:1 20532:1 20543:7 20592:1 20633:5 20639:1 20646:2 20666:1 20685:1 20719:1 20744:1 20756:1 20768:1 20781:1 20785:1 20786:1 20806:1 20835:2 20841:1 20870:6 20883:1 20931:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:2 21285:2 21309:3 21316:2 21324:1 21332:1 21343:2 21349:11 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:1 21454:2 21464:1 21476:1 21527:2 21549:2 21552:8 21569:1 21570:3 21574:1 21591:4 21593:1 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:2 21762:3 21777:1 21780:4 21791:1 21800:1 21815:2 21835:1 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:4 21942:2 21976:1 21980:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:1 22111:1 22140:1 22159:1 22166:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22285:2 22288:2 22294:2 22343:2 22352:1 22369:1 22375:2 22381:1 22385:1 22417:1 22428:1 22440:2 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22565:1 22572:1 22584:1 22618:1 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:6 22720:1 22722:1 22724:1 22773:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:1 22841:3 22845:1 22860:2 22868:1 22871:1 22939:19 22943:2 22944:1 22987:1 22993:1 23004:1 23006:1 23011:1 23021:4 23085:5 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23278:1 23284:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:3 23445:1 23451:1 23453:1 23470:1 23471:1 23516:1 23517:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23620:1 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 63:1 70:1 75:1 94:1 95:1 96:2 98:3 133:1 134:1 144:1 158:1 168:1 169:6 172:2 173:1 227:1 235:1 262:1 291:1 308:1 336:10 345:4 373:2 379:1 380:2 387:1 412:2 451:1 452:1 465:1 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 625:2 632:1 640:1 641:1 648:1 657:6 672:1 677:1 709:1 716:1 719:1 770:1 771:3 785:1 798:2 808:5 811:1 813:1 815:1 837:2 848:1 887:1 902:1 931:10 934:1 945:1 966:1 969:1 980:1 1000:1 1003:1 1013:1 1031:1 1032:3 1035:1 1058:1 1063:3 1072:2 1081:1 1109:1 1112:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:2 1300:3 1317:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:2 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1518:4 1525:1 1529:3 1545:1 1559:1 1566:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1700:1 1704:2 1739:2 1769:1 1829:1 1892:5 1903:3 1923:1 1928:1 1934:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2076:1 2081:2 2088:2 2093:1 2117:4 2133:1 2139:2 2140:2 2145:2 2158:1 2179:2 2200:1 2203:1 2214:2 2216:1 2217:1 2233:1 2284:1 2329:1 2333:1 2344:1 2354:1 2355:2 2366:1 2369:1 2372:1 2395:1 2414:3 2415:1 2417:1 2428:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:1 2622:1 2623:1 2637:1 2649:1 2650:1 2665:1 2680:1 2718:2 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:1 2864:4 2868:4 2926:1 2938:1 2959:5 3017:1 3033:2 3035:1 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3128:1 3141:1 3143:1 3165:1 3175:1 3184:1 3187:3 3190:1 3202:14 3203:1 3209:1 3231:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:1 3310:1 3355:2 3364:1 3370:1 3375:1 3381:2 3383:2 3392:10 3396:3 3410:1 3418:3 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:4 3488:1 3490:1 3498:4 3501:1 3505:1 3506:1 3507:4 3509:1 3514:2 3521:1 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:3 3609:1 3624:20 3635:1 3646:3 3674:1 3694:1 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3764:1 3771:3 3779:1 3803:1 3805:1 3809:1 3828:4 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:2 3950:2 3954:2 3957:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4055:3 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:2 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4651:2 4662:2 4679:10 4684:3 4699:1 4738:1 4742:1 4751:12 4763:2 4764:1 4774:2 4798:1 4801:1 4808:2 4821:1 4833:1 4841:1 4846:2 4861:1 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:4 4970:5 4978:4 4983:1 4984:1 5028:1 5031:3 5047:3 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:2 5454:1 5460:1 5464:1 5469:2 5495:1 5499:4 5506:1 5524:1 5539:1 5545:1 5554:1 5603:2 5624:20 5673:3 5726:1 5741:1 5758:1 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:3 5962:1 5999:1 6007:1 6008:2 6021:2 6045:2 6056:1 6065:1 6069:1 6082:2 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6187:1 6191:2 6201:3 6240:1 6249:1 6261:20 6262:2 6263:1 6277:1 6283:1 6314:2 6324:1 6333:1 6354:1 6364:1 6371:1 6372:1 6373:2637 6403:1 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6575:1 6584:3 6593:3 6600:1 6605:1 6609:2 6622:1 6651:3 6667:1 6674:1 6685:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6739:1 6745:1 6758:5 6768:1 6769:5 6774:1 6777:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6893:1 6900:2 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7040:1 7042:1 7045:1 7096:2 7138:1 7156:1 7187:1 7188:1 7189:2 7205:1 7220:2 7255:1 7257:3 7287:1 7321:1 7324:5 7342:2 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7469:1 7473:1 7496:1 7511:1 7519:7 7523:3 7528:1 7551:1 7557:1 7575:1 7585:1 7588:2 7594:2 7622:1 7627:2 7631:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:1 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7831:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:10 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:16 8054:1 8055:1 8067:2 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8152:1 8155:2 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:3 8266:1 8293:3 8319:3 8337:1 8345:2 8363:1 8364:2 8371:2 8373:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:6 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8703:5 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8881:1 8887:2 8888:1 8910:1 8920:2 8928:1 8945:1 8947:1 8972:1 8985:5 9018:2 9026:1 9064:7 9107:1 9139:1 9150:1 9166:1 9180:2 9194:1 9252:1 9255:1 9281:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:1 9459:1 9468:2 9469:1 9477:1 9484:4 9495:1 9530:1 9540:2 9550:1 9562:1 9583:1 9586:1 9601:1 9604:1 9611:1 9624:2 9645:2 9656:1 9658:5 9674:1 9679:4 9683:2 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:1 9833:1 9869:1 9872:4 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:1 9960:7 9961:1 9967:4 9986:2 9987:1 9988:1 9990:1 9994:4 9998:7 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10184:1 10186:2 10199:1 10230:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10374:1 10411:1 10419:1 10422:1 10431:2 10435:2 10454:3 10489:6 10494:1 10504:4 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:6 10699:1 10717:1 10727:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:2 10778:1 10789:8 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10896:1 10910:1 10920:1 10935:1 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11070:3 11095:1 11099:2 11103:1 11115:1 11166:1 11167:2 11173:1 11183:1 11195:1 11202:4 11206:2 11210:1 11234:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:5 11520:1 11527:1 11546:1 11557:2 11573:1 11626:4 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11736:1 11740:3 11744:6 11796:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:2 11878:1 11884:2 11899:1 11923:1 11929:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:14 12037:2 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12084:1 12087:1 12092:1 12094:1 12103:1 12111:2 12133:1 12184:1 12189:1 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:1 12285:1 12293:1 12299:1 12311:1 12320:1 12322:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:2 12417:3 12420:3 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:19 12549:1 12566:1 12568:12 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12892:5 12895:1 12914:1 12923:1 12929:2 12941:1 12965:1 13005:1 13006:1 13011:3 13015:1 13027:1 13036:1 13037:3 13046:2 13080:1 13089:2 13108:1 13147:2 13153:1 13164:2 13165:1 13168:1 13198:1 13212:1 13216:2 13222:1 13251:10 13286:2 13300:1 13316:1 13323:13 13329:5 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13474:8 13485:1 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:4 13629:1 13666:14 13682:1 13683:1 13689:1 13690:1 13701:1 13703:6 13717:1 13728:1 13745:1 13770:1 13787:1 13800:1 13802:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:5 13876:1 13877:1 13890:1 13893:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:4 14007:1 14008:1 14016:4 14020:1 14028:1 14056:1 14072:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14256:1 14273:1 14298:2 14314:1 14330:2 14374:1 14379:2 14386:2 14401:1 14410:2 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:2 14481:2 14510:1 14527:1 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14740:2 14761:1 14773:1 14785:2 14793:1 14851:1 14873:1 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:1 15146:1 15151:3 15152:2 15156:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15230:1 15237:1 15266:2 15282:3 15295:1 15313:1 15322:1 15329:3 15333:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:2 15353:1 15359:2 15361:1 15366:1 15376:1 15384:5 15389:2 15418:1 15430:3 15438:4 15504:3 15514:2 15544:1 15554:2 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15755:1 15759:1 15761:1 15786:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 16004:3 16006:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:1 16116:1 16126:1 16131:1 16148:4 16162:1 16180:5 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16356:1 16360:1 16399:1 16409:2 16412:1 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:1 16738:3 16749:1 16751:1 16762:2 16772:2 16780:1 16791:14 16798:1 16807:1 16809:1 16811:1 16816:1 16831:1 16838:1 16856:1 16857:3 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16930:4 16943:3 16962:2 16975:1 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:2 17137:1 17146:6 17150:1 17171:1 17178:1 17194:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:10 17259:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:1 17422:1 17430:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17608:1 17609:1 17626:4 17636:1 17651:5 17657:2 17662:1 17680:2 17685:1 17687:2 17704:1 17707:1 17747:1 17771:1 17797:4 17799:1 17819:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17910:1 17920:1 17924:1 17928:1 17956:1 17965:5 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18286:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:2 18360:2 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18490:1 18506:2 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19097:1 19098:1 19105:1 19116:3 19132:1 19140:2 19142:1 19158:2 19163:6 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:6 19448:1 19451:1 19469:6 19473:1 19479:2 19491:1 19498:1 19514:6 19519:1 19533:1 19547:1 19572:6 19583:2 19587:2 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 20006:1 20017:1 20028:1 20036:4 20061:2 20074:1 20090:2 20153:6 20157:1 20176:1 20186:10 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:3 20331:1 20332:1 20336:1 20356:4 20362:1 20369:2 20397:1 20407:2 20462:2 20467:1 20471:1 20505:2 20509:1 20524:3 20526:1 20528:1 20529:1 20532:1 20543:8 20592:1 20633:5 20639:1 20646:2 20666:1 20685:1 20719:1 20744:1 20756:1 20768:1 20781:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:6 20883:1 20931:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:3 21285:2 21309:3 21316:2 21324:1 21332:1 21343:2 21349:11 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:1 21454:2 21464:1 21476:1 21527:2 21549:2 21552:8 21569:1 21570:3 21574:1 21591:4 21593:1 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:2 21762:3 21777:1 21780:4 21791:1 21800:1 21815:2 21835:1 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:4 21942:2 21976:1 21980:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:1 22111:1 22140:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22285:2 22288:2 22294:2 22343:2 22352:1 22369:3 22375:2 22381:1 22385:1 22417:1 22428:1 22440:4 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22565:1 22572:1 22584:1 22618:1 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:6 22720:1 22722:1 22724:1 22773:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:1 22841:3 22845:1 22860:2 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:2 23006:1 23011:1 23021:4 23085:5 23091:1 23148:1 23172:1 23179:1 23180:1 23184:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23278:1 23284:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:3 23445:1 23451:1 23453:1 23470:1 23471:1 23516:1 23517:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23620:1 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:3 133:1 134:1 144:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:1 262:1 291:1 308:1 336:11 345:4 373:2 379:1 380:2 387:1 412:2 451:1 452:1 465:1 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 770:1 771:3 785:1 798:2 808:5 811:1 813:1 815:1 837:2 848:1 887:1 902:1 931:10 934:1 945:1 966:1 969:1 980:1 1000:1 1003:1 1013:1 1025:1 1031:1 1032:3 1035:1 1058:1 1063:4 1072:2 1081:1 1109:1 1112:1 1123:2 1133:2 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1217:1 1220:1 1257:1 1267:1 1296:3 1300:3 1317:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:3 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1518:4 1525:1 1529:3 1545:1 1559:1 1566:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1700:1 1704:2 1739:2 1769:1 1829:1 1892:5 1903:3 1923:1 1928:1 1934:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2076:1 2081:2 2088:2 2093:1 2117:4 2133:1 2139:2 2140:2 2145:2 2158:1 2179:2 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2244:1 2284:1 2329:1 2333:1 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:1 2414:3 2415:1 2417:1 2428:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:1 2622:1 2623:1 2637:1 2649:1 2650:1 2665:1 2680:1 2718:2 2730:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:1 2864:4 2868:4 2926:1 2938:1 2959:6 3017:1 3033:2 3035:1 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3141:1 3143:1 3165:1 3175:1 3184:1 3187:3 3190:1 3202:14 3203:1 3204:1 3209:1 3231:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:1 3310:1 3355:2 3364:1 3370:1 3375:1 3381:2 3383:2 3392:10 3396:4 3410:1 3418:4 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:4 3488:1 3490:1 3495:1 3498:4 3501:1 3505:1 3506:1 3507:4 3509:1 3514:2 3521:1 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3606:1 3607:3 3609:1 3613:1 3624:20 3635:1 3646:3 3674:1 3694:1 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3764:1 3771:3 3779:1 3803:1 3805:1 3809:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4055:3 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:2 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:2 4342:1 4381:2 4383:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4651:2 4662:2 4679:11 4684:3 4699:1 4738:1 4742:1 4751:13 4763:2 4764:1 4774:2 4798:1 4801:1 4808:2 4821:1 4833:1 4841:1 4846:2 4861:2 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:4 4970:5 4978:4 4983:1 4984:1 5000:1 5028:1 5031:3 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:2 5454:1 5460:1 5464:1 5469:2 5495:1 5499:4 5506:1 5514:1 5524:1 5539:1 5545:1 5554:1 5603:3 5624:20 5673:3 5726:1 5741:1 5758:1 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:4 5962:1 5999:1 6007:1 6008:2 6021:2 6045:2 6056:1 6065:1 6069:1 6082:2 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6182:1 6187:1 6191:2 6201:3 6240:1 6249:1 6254:1 6261:20 6262:2 6263:1 6277:1 6283:1 6314:2 6324:1 6333:1 6354:1 6364:1 6371:1 6372:1 6373:2766 6403:1 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6575:1 6584:3 6593:3 6600:1 6605:1 6609:2 6622:1 6651:3 6667:1 6674:1 6685:1 6694:1 6703:1 6706:1 6708:1 6711:1 6734:1 6739:1 6745:2 6758:5 6768:1 6769:5 6774:1 6777:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6893:1 6900:2 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7040:1 7042:1 7045:1 7096:2 7138:1 7156:1 7187:1 7188:1 7189:2 7205:1 7220:2 7243:1 7255:1 7257:3 7287:1 7321:1 7324:5 7342:2 7371:1 7420:1 7439:2 7442:4 7451:1 7461:1 7469:1 7473:1 7496:1 7510:1 7511:1 7519:7 7523:3 7528:1 7551:1 7557:1 7558:1 7575:1 7585:1 7588:2 7594:2 7622:1 7627:2 7631:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7903:1 7914:1 7927:11 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7996:1 8002:1 8006:1 8034:16 8054:1 8055:1 8067:2 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:3 8266:1 8293:4 8319:3 8337:1 8345:2 8363:2 8364:2 8369:1 8371:2 8373:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:6 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8703:5 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8877:1 8881:1 8887:2 8888:1 8910:1 8920:2 8928:1 8945:1 8947:1 8954:1 8972:1 8985:6 8986:1 8992:1 9018:2 9026:1 9064:7 9107:1 9139:1 9150:1 9166:1 9180:2 9194:1 9252:1 9255:1 9281:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9366:1 9368:2 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:1 9459:1 9468:2 9469:1 9477:1 9484:4 9495:1 9530:1 9540:2 9550:1 9562:1 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:2 9656:1 9658:5 9674:1 9679:4 9683:2 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:2 9960:7 9961:1 9967:5 9986:2 9987:1 9988:1 9990:1 9994:4 9998:7 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10186:2 10199:2 10230:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10411:1 10419:1 10422:1 10431:2 10435:2 10449:1 10454:3 10469:1 10489:6 10494:1 10504:4 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:6 10699:1 10717:1 10727:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:3 10778:1 10789:8 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10896:1 10910:1 10920:1 10935:1 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11061:1 11070:3 11095:1 11099:2 11103:1 11115:1 11142:1 11146:1 11166:1 11167:2 11173:1 11183:1 11195:1 11202:4 11206:2 11210:1 11234:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:5 11520:1 11527:1 11528:1 11546:1 11553:1 11557:2 11573:1 11626:4 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11736:1 11740:3 11744:6 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:2 11878:1 11884:2 11899:1 11923:1 11929:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:14 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12084:1 12087:1 12092:1 12094:1 12103:1 12111:2 12133:1 12184:1 12189:1 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:1 12285:1 12293:1 12299:1 12311:1 12320:1 12322:3 12327:1 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:2 12417:4 12420:3 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:19 12549:1 12566:1 12568:13 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12892:5 12895:1 12914:1 12923:1 12929:2 12941:1 12965:1 13005:1 13006:1 13011:3 13013:1 13015:1 13027:1 13036:1 13037:3 13046:2 13080:1 13089:2 13108:1 13147:2 13153:1 13164:2 13165:1 13168:1 13198:1 13212:1 13216:2 13222:1 13251:10 13286:2 13300:1 13316:1 13323:13 13329:6 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13466:1 13474:9 13485:1 13522:5 13536:1 13549:4 13557:1 13583:1 13598:3 13608:1 13611:4 13629:1 13666:14 13682:1 13683:1 13689:1 13690:1 13701:1 13703:6 13717:1 13728:1 13745:1 13770:1 13787:1 13792:1 13800:1 13802:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:5 13876:1 13877:1 13890:1 13893:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:5 14007:1 14008:1 14016:4 14020:1 14028:1 14056:1 14072:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:1 14256:1 14273:1 14298:2 14314:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:2 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:2 14481:2 14510:1 14527:1 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14740:2 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14873:1 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:3 15152:2 15156:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15192:1 15230:2 15237:1 15266:2 15282:3 15295:1 15313:1 15322:1 15329:3 15333:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:2 15353:1 15359:2 15361:1 15366:1 15372:1 15376:1 15384:5 15389:2 15418:1 15430:3 15438:4 15504:3 15513:1 15514:2 15544:1 15554:2 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15755:1 15759:1 15761:1 15786:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:2 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:1 16116:1 16126:1 16131:1 16146:1 16148:4 16162:1 16180:7 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:1 16399:1 16409:2 16412:1 16424:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:1 16738:3 16749:1 16751:1 16762:2 16772:2 16780:1 16791:14 16798:1 16807:1 16809:1 16811:1 16816:1 16831:1 16838:1 16856:1 16857:3 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16930:4 16943:4 16962:2 16975:1 16976:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:2 17137:1 17146:6 17149:1 17150:1 17171:1 17178:1 17194:1 17205:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:10 17259:1 17272:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17608:1 17609:1 17626:4 17636:1 17651:6 17657:2 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17771:1 17797:4 17799:1 17819:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17910:1 17920:1 17924:1 17928:1 17956:1 17965:5 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18138:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18286:1 18291:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:2 18360:3 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18490:1 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18681:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18809:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19097:1 19098:1 19105:1 19108:1 19116:3 19132:1 19140:2 19142:1 19158:2 19163:6 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:6 19448:1 19451:1 19469:6 19473:1 19479:2 19491:1 19498:1 19514:6 19519:1 19533:1 19547:1 19572:6 19583:2 19587:2 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:1 20006:1 20017:1 20028:1 20036:4 20061:2 20074:1 20090:2 20153:6 20157:1 20176:1 20186:11 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20294:1 20300:1 20301:1 20318:1 20321:3 20331:1 20332:1 20336:1 20356:4 20362:1 20369:2 20397:1 20407:2 20462:2 20467:1 20471:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:9 20592:1 20633:5 20639:1 20646:2 20666:1 20685:1 20719:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:6 20883:1 20931:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:3 21274:1 21285:2 21309:3 21316:2 21324:1 21332:1 21343:2 21349:11 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:1 21454:2 21464:1 21476:1 21527:2 21549:2 21552:8 21569:1 21570:3 21574:1 21591:4 21593:1 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:2 21762:3 21777:1 21780:4 21791:1 21800:1 21815:2 21835:2 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:5 21942:2 21976:1 21980:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:1 22111:1 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22262:1 22285:2 22288:2 22294:2 22343:2 22352:1 22369:3 22375:2 22381:1 22385:1 22417:1 22428:1 22440:4 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:1 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:6 22720:1 22722:1 22724:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:1 22841:4 22845:1 22860:2 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23278:1 23284:1 23305:2 23310:1 23356:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:3 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23513:1 23516:1 23517:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23620:1 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 133:1 134:1 144:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:1 262:1 291:1 308:1 336:11 345:4 373:2 379:1 380:2 387:1 412:2 451:1 452:1 465:1 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 770:1 771:3 785:1 798:2 808:5 811:1 813:1 815:1 837:2 848:1 887:1 890:1 902:1 931:11 934:1 945:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:1 1031:1 1032:3 1035:1 1058:1 1063:4 1072:2 1081:1 1109:2 1112:1 1123:3 1124:1 1133:2 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1206:1 1217:1 1220:1 1257:1 1267:1 1296:3 1300:3 1317:1 1318:1 1320:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:3 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1518:4 1525:1 1529:3 1545:1 1559:1 1566:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1700:1 1704:2 1739:2 1769:1 1829:1 1892:5 1903:3 1923:1 1928:1 1934:1 1935:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2069:1 2076:1 2081:2 2088:2 2093:1 2117:4 2133:1 2139:2 2140:2 2145:2 2158:1 2179:2 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:3 2622:1 2623:1 2637:1 2649:1 2650:1 2665:1 2680:1 2718:2 2730:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:1 2864:5 2868:4 2926:1 2938:1 2959:6 3017:1 3033:2 3035:1 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3141:1 3143:2 3165:1 3175:1 3184:2 3187:3 3190:1 3202:14 3203:1 3204:1 3209:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:1 3310:1 3329:1 3355:2 3364:1 3370:1 3375:1 3381:2 3383:2 3392:11 3396:4 3410:1 3418:4 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:4 3488:1 3490:1 3495:1 3498:4 3501:1 3505:1 3506:1 3507:4 3509:1 3514:2 3521:2 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3600:1 3606:1 3607:3 3609:1 3613:1 3624:20 3635:1 3646:3 3674:1 3694:2 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3764:1 3771:3 3777:1 3779:1 3803:1 3805:1 3809:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4034:1 4055:3 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:2 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:3 4342:1 4381:2 4383:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4651:2 4662:2 4679:11 4684:3 4699:1 4738:1 4742:1 4751:14 4763:2 4764:1 4774:2 4798:1 4801:1 4808:2 4821:1 4833:1 4841:1 4846:2 4861:2 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:5 4970:6 4978:4 4983:1 4984:1 5000:1 5028:1 5031:3 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:2 5454:1 5460:1 5464:1 5469:2 5495:1 5499:5 5506:1 5514:1 5524:1 5539:1 5545:1 5554:1 5603:3 5624:20 5673:3 5721:1 5726:1 5741:1 5758:1 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:4 5962:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:1 6082:2 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6182:1 6187:1 6191:2 6201:3 6231:1 6234:1 6240:1 6249:1 6254:1 6261:20 6262:3 6263:1 6277:1 6283:1 6314:2 6324:1 6333:1 6354:1 6364:1 6371:1 6372:1 6373:2820 6403:1 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6575:1 6584:3 6593:3 6600:1 6605:1 6609:2 6622:1 6651:3 6662:1 6667:1 6674:1 6685:1 6694:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6893:1 6900:2 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7040:1 7042:1 7045:1 7096:2 7117:1 7138:1 7156:1 7187:1 7188:1 7189:3 7205:1 7220:2 7243:1 7255:1 7257:3 7287:1 7321:1 7324:5 7342:2 7371:1 7420:1 7439:3 7442:5 7451:1 7459:1 7461:1 7469:1 7473:1 7496:1 7510:1 7511:1 7519:7 7523:3 7528:1 7551:1 7557:1 7558:1 7560:1 7575:1 7585:1 7588:2 7594:2 7622:1 7627:2 7631:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:11 7928:2 7935:1 7937:1 7943:1 7951:1 7972:2 7976:1 7983:1 7996:1 8002:1 8006:1 8034:17 8054:1 8055:1 8067:2 8076:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:3 8266:1 8283:1 8290:1 8293:4 8319:3 8337:1 8345:2 8363:2 8364:2 8369:1 8371:2 8373:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:6 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8703:5 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:1 8920:2 8923:1 8928:1 8945:1 8947:1 8954:1 8972:1 8985:6 8986:1 8992:1 9018:2 9026:1 9064:8 9107:1 9139:2 9150:1 9166:1 9180:2 9194:1 9252:1 9255:1 9281:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:2 9469:1 9477:1 9484:4 9495:1 9530:1 9540:2 9550:1 9562:1 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:3 9656:1 9658:7 9674:1 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:1 9990:1 9994:4 9998:8 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10186:2 10199:2 10202:1 10230:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10449:1 10454:3 10469:1 10489:6 10494:1 10504:4 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:7 10699:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:3 10778:1 10782:1 10789:8 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10871:1 10896:1 10910:1 10920:1 10935:1 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11061:1 11070:3 11095:1 11099:2 11103:1 11115:1 11142:1 11146:1 11166:1 11167:2 11173:1 11183:1 11195:1 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11520:1 11527:1 11528:1 11533:1 11546:1 11553:1 11557:2 11573:1 11626:4 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11736:1 11740:3 11744:6 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:2 11878:1 11884:2 11894:1 11899:1 11901:1 11923:1 11929:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:14 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12084:1 12087:1 12092:1 12094:1 12103:1 12111:2 12125:1 12130:1 12133:1 12184:1 12189:2 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:1 12285:1 12293:1 12299:1 12311:1 12320:1 12322:3 12327:1 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:2 12417:4 12418:1 12420:3 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:20 12549:1 12566:1 12568:14 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12892:5 12895:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:1 13006:1 13011:3 13013:1 13015:2 13027:1 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13198:1 13212:1 13216:2 13222:1 13251:11 13286:2 13300:1 13316:1 13323:13 13329:6 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13466:1 13474:10 13485:1 13499:1 13522:5 13536:1 13549:5 13557:1 13583:1 13587:1 13598:3 13608:1 13611:4 13629:1 13666:14 13682:1 13683:1 13689:1 13690:1 13701:1 13703:7 13717:1 13728:1 13745:1 13770:1 13787:1 13792:1 13800:1 13802:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:5 13876:1 13877:1 13890:1 13893:1 13898:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:5 14007:1 14008:1 14016:4 14020:1 14028:1 14056:1 14072:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:1 14256:1 14273:1 14298:2 14314:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:2 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14738:1 14740:2 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14873:1 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:3 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15192:1 15195:1 15216:1 15230:2 15237:1 15266:2 15282:4 15295:1 15313:1 15322:2 15329:3 15333:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:2 15353:1 15359:2 15361:1 15366:1 15372:1 15376:1 15384:5 15389:2 15401:1 15418:1 15430:3 15438:4 15504:3 15513:1 15514:2 15544:1 15554:2 15584:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15755:1 15759:1 15761:1 15786:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:3 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:1 16116:1 16126:1 16131:1 16146:1 16148:4 16162:1 16180:7 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:1 16399:1 16409:2 16412:1 16424:1 16425:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:1 16738:3 16749:1 16751:1 16762:2 16772:2 16780:1 16791:14 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:3 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:1 17011:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17146:7 17149:1 17150:1 17171:1 17178:1 17194:1 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:10 17259:1 17272:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17586:1 17608:1 17609:1 17626:4 17636:1 17651:6 17657:2 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17771:1 17797:4 17799:1 17819:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17910:1 17920:1 17924:1 17928:1 17955:1 17956:1 17965:5 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18286:1 18291:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:2 18360:3 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18490:1 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18681:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18809:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19097:1 19098:1 19105:1 19108:1 19116:3 19132:1 19140:2 19142:1 19158:2 19163:7 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:6 19438:1 19448:1 19451:1 19469:6 19473:1 19479:2 19491:1 19498:1 19514:7 19519:1 19533:1 19547:1 19572:7 19583:2 19587:2 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:1 20006:1 20017:1 20028:1 20036:4 20061:2 20074:1 20090:2 20153:7 20157:1 20176:1 20186:11 20211:2 20223:1 20225:2 20233:1 20264:1 20267:2 20282:2 20283:1 20294:1 20300:1 20301:1 20318:1 20320:1 20321:3 20331:1 20332:1 20336:1 20356:4 20362:1 20369:2 20397:1 20407:2 20462:2 20467:1 20471:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:9 20592:1 20633:5 20639:1 20646:2 20666:1 20685:1 20719:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:6 20883:1 20931:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21197:1 21200:1 21202:1 21212:1 21227:2 21256:2 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:12 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:2 21454:2 21464:1 21476:1 21527:2 21549:2 21552:8 21569:1 21570:4 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:2 21762:3 21777:1 21780:5 21791:1 21800:1 21815:2 21835:2 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21976:1 21980:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:1 22111:1 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22262:1 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22417:1 22428:1 22440:4 22452:1 22477:3 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:1 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:6 22720:1 22722:1 22724:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:1 22841:4 22845:1 22848:1 22860:2 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23278:1 23284:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:4 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23513:1 23516:1 23517:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23620:1 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 133:1 134:1 144:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:1 262:1 291:1 308:1 336:11 345:4 373:2 379:1 380:2 387:1 412:2 433:1 451:1 452:1 465:1 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 770:1 771:3 785:1 798:2 808:5 811:1 813:1 815:1 837:2 848:1 877:1 887:1 890:1 902:1 931:11 934:1 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:1 1031:1 1032:3 1035:1 1058:1 1063:5 1072:2 1081:1 1109:2 1112:1 1123:3 1124:1 1133:2 1134:1 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1206:1 1217:1 1220:1 1257:1 1267:1 1296:3 1300:3 1317:1 1318:1 1320:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:3 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1545:1 1559:1 1566:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1700:1 1704:2 1739:2 1769:1 1829:1 1892:5 1903:3 1923:1 1928:1 1934:1 1935:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2069:1 2076:1 2081:2 2088:2 2093:1 2117:4 2133:1 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:3 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:1 2718:2 2730:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:2 2864:6 2868:4 2926:1 2938:1 2959:7 3017:1 3033:2 3035:1 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3141:1 3143:2 3165:1 3175:1 3184:2 3187:3 3190:1 3202:14 3203:1 3204:1 3209:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:1 3310:1 3329:1 3355:2 3364:1 3370:1 3375:2 3381:2 3383:2 3392:11 3396:5 3410:1 3418:4 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:4 3488:1 3490:1 3495:1 3498:4 3500:1 3501:1 3505:1 3506:1 3507:4 3509:1 3514:2 3521:2 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:1 3576:1 3581:1 3586:2 3590:4 3597:2 3600:1 3606:1 3607:3 3609:1 3613:1 3624:20 3635:1 3646:3 3674:1 3694:2 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3803:1 3805:1 3809:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4034:1 4055:4 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:2 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:3 4342:1 4381:2 4383:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:1 4742:1 4751:15 4763:2 4764:1 4774:2 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:2 4861:2 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:6 4970:6 4978:4 4983:1 4984:1 5000:1 5028:1 5031:3 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:3 5454:1 5460:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:1 5514:1 5524:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:20 5673:4 5721:1 5726:1 5741:1 5758:1 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:2 5949:2 5959:4 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:1 6082:2 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6182:1 6187:1 6191:2 6201:3 6231:1 6234:1 6240:1 6249:1 6254:1 6261:20 6262:3 6263:1 6277:1 6283:1 6314:2 6324:1 6333:1 6342:1 6354:1 6364:1 6371:1 6372:1 6373:2924 6403:1 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6575:1 6584:3 6593:3 6600:1 6605:1 6609:2 6622:1 6651:3 6662:1 6667:1 6674:1 6685:1 6694:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6893:1 6900:3 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:4 7037:1 7040:1 7042:1 7045:1 7096:2 7117:1 7138:1 7151:1 7156:1 7187:1 7188:1 7189:3 7205:1 7220:2 7243:1 7255:1 7257:3 7287:1 7321:1 7324:5 7342:2 7363:1 7364:1 7371:1 7420:1 7439:3 7442:6 7451:1 7459:1 7461:1 7469:1 7473:1 7496:1 7510:1 7511:1 7519:7 7523:3 7528:1 7551:1 7557:1 7558:1 7560:1 7575:1 7585:1 7588:2 7594:2 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:11 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7972:2 7976:1 7983:1 7996:1 8002:1 8006:1 8034:17 8054:1 8055:1 8067:2 8076:1 8078:1 8085:3 8101:1 8102:2 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:3 8266:1 8283:1 8290:1 8293:5 8319:3 8337:1 8345:2 8363:3 8364:2 8369:1 8371:2 8373:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:6 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:1 8703:5 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:1 8920:2 8923:1 8928:1 8945:1 8947:1 8954:1 8972:1 8985:7 8986:1 8992:1 9013:1 9018:2 9026:1 9064:8 9107:1 9139:2 9150:1 9166:1 9180:2 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:2 9469:1 9477:1 9484:4 9487:1 9495:1 9530:1 9540:2 9550:1 9562:1 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:3 9656:1 9658:7 9674:1 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:1 9990:1 9994:4 9998:8 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10186:2 10199:2 10202:1 10230:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10449:1 10454:3 10469:1 10489:6 10494:1 10504:4 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:8 10699:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:3 10778:1 10782:1 10789:8 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10871:1 10896:1 10910:1 10920:1 10935:1 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:1 11057:2 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11160:1 11166:1 11167:2 11173:1 11183:1 11195:1 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11520:1 11527:1 11528:1 11533:1 11546:1 11553:1 11557:2 11573:1 11626:4 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11736:1 11740:3 11744:6 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11901:1 11923:1 11929:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:14 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12084:1 12087:1 12092:1 12094:1 12103:1 12111:2 12125:1 12130:1 12133:1 12184:1 12189:2 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:2 12285:1 12293:1 12299:1 12307:1 12311:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:2 12417:4 12418:1 12420:3 12439:1 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:20 12549:1 12566:1 12568:15 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12752:1 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:1 13006:1 13011:3 13013:1 13015:2 13027:1 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13198:1 13212:1 13216:2 13222:1 13251:11 13286:2 13300:1 13316:1 13323:13 13329:6 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13466:1 13474:10 13485:1 13499:1 13522:5 13536:1 13549:6 13557:1 13583:1 13587:1 13598:3 13608:1 13611:4 13629:1 13666:14 13682:1 13683:1 13689:1 13690:1 13701:1 13703:8 13717:1 13728:1 13745:1 13770:1 13787:1 13792:1 13800:1 13802:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:5 13876:1 13877:1 13890:1 13893:1 13898:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:5 14007:1 14008:1 14016:4 14020:1 14028:1 14056:1 14072:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:1 14256:1 14273:1 14298:2 14314:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:2 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14738:1 14740:2 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:1 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:3 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15192:2 15195:2 15216:1 15230:2 15237:1 15266:2 15282:4 15295:1 15311:1 15313:1 15322:3 15326:1 15329:3 15333:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:2 15353:1 15359:2 15361:1 15366:1 15372:1 15376:1 15384:5 15389:2 15396:1 15401:1 15418:1 15430:3 15438:4 15504:3 15513:1 15514:2 15544:1 15554:2 15584:1 15590:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15755:1 15759:1 15761:1 15786:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:3 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:1 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:7 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:1 16371:1 16399:1 16409:2 16412:2 16424:1 16425:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:1 16720:1 16738:3 16749:1 16751:1 16762:2 16772:2 16780:1 16791:14 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:4 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:1 17011:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17146:8 17149:1 17150:1 17171:1 17178:1 17194:1 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:10 17259:1 17272:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17586:1 17608:1 17609:1 17626:4 17636:1 17651:7 17657:2 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17771:1 17797:4 17799:1 17819:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17910:1 17920:1 17924:1 17928:1 17955:1 17956:1 17965:5 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:1 18147:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18286:1 18291:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:1 18392:1 18400:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18490:2 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18681:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18809:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19097:1 19098:1 19105:1 19108:1 19116:3 19132:1 19140:3 19142:1 19158:2 19163:8 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:6 19473:1 19479:2 19491:1 19498:2 19514:7 19519:1 19533:1 19547:1 19572:8 19583:2 19587:2 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:1 20006:1 20017:1 20028:1 20036:4 20061:2 20074:1 20090:3 20153:9 20157:1 20176:1 20186:11 20211:2 20223:1 20224:1 20225:2 20233:1 20264:1 20267:2 20282:2 20283:1 20294:1 20300:1 20301:1 20318:1 20320:2 20321:3 20331:1 20332:1 20336:1 20356:4 20362:1 20369:2 20397:1 20407:2 20462:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:9 20592:1 20633:5 20639:1 20646:2 20666:1 20681:1 20685:1 20719:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:6 20883:1 20931:1 20935:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:2 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:12 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:2 21454:2 21464:1 21476:1 21512:1 21527:2 21549:2 21552:8 21569:1 21570:4 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:2 21757:1 21762:3 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21976:1 21980:1 21994:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:1 22111:1 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22262:2 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22417:1 22428:1 22440:4 22452:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:6 22699:1 22720:1 22722:1 22724:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:1 22841:4 22845:1 22848:2 22860:2 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:2 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:4 23425:1 23433:1 23443:4 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23513:1 23516:1 23517:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23620:1 23653:1 23659:2
18 1:1 13:1 32:1 34:1 38:1 48:1 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 133:1 134:1 144:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:1 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 412:2 433:1 451:1 452:1 465:1 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 617:1 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:2 802:1 808:5 811:1 813:1 815:1 837:2 848:1 877:1 887:1 890:1 902:1 931:12 934:1 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:1 1031:1 1032:3 1035:1 1058:1 1063:5 1072:3 1081:1 1109:2 1112:1 1123:3 1124:1 1133:2 1134:1 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1206:1 1217:1 1220:1 1257:1 1267:1 1296:3 1300:3 1317:1 1318:1 1320:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:3 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1545:1 1559:1 1566:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1700:1 1704:2 1739:2 1769:1 1829:1 1892:6 1903:3 1923:1 1928:1 1934:2 1935:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2069:1 2076:1 2081:2 2088:2 2093:1 2117:4 2133:1 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2340:1 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:2 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:3 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:2 2864:6 2868:4 2926:1 2938:1 2959:8 3017:1 3033:2 3035:2 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3136:1 3141:1 3143:2 3165:1 3175:2 3184:2 3187:3 3190:1 3202:14 3203:1 3204:1 3209:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:1 3310:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:1 3375:2 3381:2 3383:2 3392:12 3396:5 3410:1 3418:5 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:5 3488:1 3490:1 3495:1 3498:4 3500:1 3501:1 3505:1 3506:1 3507:4 3509:1 3514:2 3521:2 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:2 3590:4 3597:2 3600:1 3606:1 3607:3 3609:1 3613:1 3624:20 3635:1 3643:1 3646:3 3674:1 3694:2 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3803:1 3805:1 3809:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4034:1 4055:4 4065:1 4099:1 4103:2 4112:1 4113:1 4117:2 4123:1 4143:1 4150:2 4169:2 4183:2 4191:2 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4254:1 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:3 4342:1 4381:2 4383:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:1 4742:1 4751:16 4763:2 4764:1 4774:2 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:2 4861:2 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:6 4970:6 4978:5 4983:1 4984:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:3 5454:1 5460:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:1 5514:1 5524:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:20 5673:4 5721:1 5726:1 5741:1 5758:1 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:3 5949:2 5959:4 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:1 6081:1 6082:3 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6182:1 6187:1 6191:2 6201:3 6231:1 6234:1 6240:1 6249:1 6254:1 6261:20 6262:3 6263:1 6277:1 6283:1 6314:2 6324:1 6333:1 6342:1 6354:1 6364:1 6371:1 6372:1 6373:2957 6403:1 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6575:1 6584:3 6593:3 6600:1 6605:1 6609:2 6622:1 6651:3 6662:1 6667:1 6674:1 6685:1 6694:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:1 6794:1 6807:2 6856:2 6859:1 6888:1 6893:1 6900:3 6911:1 6947:1 6958:2 6998:2 7003:1 7019:1 7029:5 7037:1 7040:1 7042:1 7045:1 7096:2 7117:1 7138:1 7151:1 7156:1 7187:1 7188:1 7189:3 7199:1 7205:1 7220:2 7243:1 7255:1 7257:3 7287:1 7321:1 7324:5 7342:3 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:1 7469:1 7473:1 7496:1 7510:1 7511:1 7519:7 7523:3 7528:1 7551:1 7557:1 7558:1 7560:1 7575:1 7585:1 7588:2 7594:2 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7972:2 7976:1 7983:1 7996:1 8002:1 8006:1 8034:18 8054:2 8055:1 8067:2 8076:1 8078:1 8085:3 8101:1 8102:2 8104:1 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:1 8218:2 8222:2 8237:1 8247:1 8261:3 8266:1 8283:1 8290:1 8293:5 8319:3 8328:1 8337:1 8345:2 8363:3 8364:2 8369:1 8371:2 8373:1 8399:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:6 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:1 8703:5 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:1 8920:2 8923:1 8928:1 8945:1 8947:1 8954:1 8972:1 8985:8 8986:1 8992:1 9013:1 9018:2 9026:1 9064:8 9107:1 9139:2 9150:1 9166:1 9180:2 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:2 9469:1 9477:1 9484:4 9487:1 9495:1 9530:1 9540:2 9550:1 9562:1 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:3 9656:1 9658:7 9674:1 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:1 9990:1 9994:5 9998:9 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10186:2 10199:2 10202:1 10230:1 10246:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10437:1 10449:1 10454:3 10469:1 10489:6 10494:1 10504:4 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:8 10699:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:3 10778:1 10782:1 10789:8 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10871:1 10896:1 10910:1 10920:1 10935:1 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:2 11045:1 11053:2 11057:2 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11160:1 11166:1 11167:2 11173:1 11183:1 11195:1 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11520:1 11527:1 11528:1 11533:1 11546:1 11553:1 11557:2 11573:1 11626:4 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11729:1 11736:1 11740:3 11744:6 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11901:1 11923:1 11929:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:14 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12084:1 12087:1 12092:1 12094:1 12103:1 12111:2 12125:1 12130:1 12133:1 12184:1 12189:2 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:2 12285:1 12293:1 12299:1 12307:1 12311:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:2 12417:4 12418:1 12420:3 12439:1 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:21 12549:1 12566:1 12568:16 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12752:1 12753:1 12776:2 12781:1 12783:2 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:2 13006:1 13011:3 13013:1 13015:2 13027:1 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13198:1 13212:1 13216:2 13222:1 13251:11 13286:2 13300:1 13316:1 13323:13 13329:6 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13394:1 13395:1 13433:2 13448:1 13449:1 13464:1 13466:1 13474:11 13485:1 13499:1 13522:5 13536:1 13549:6 13557:1 13583:1 13587:1 13598:3 13608:1 13611:4 13629:1 13666:14 13682:2 13683:1 13689:1 13690:1 13701:1 13703:8 13717:1 13728:1 13745:1 13770:1 13787:1 13792:1 13800:1 13802:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:5 13876:1 13877:1 13890:1 13893:1 13898:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:4 14020:1 14028:1 14056:1 14072:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:1 14256:1 14273:1 14298:2 14314:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:3 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14595:1 14606:1 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14738:1 14740:2 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:1 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:3 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15192:2 15195:2 15216:1 15230:2 15237:1 15266:2 15280:1 15282:4 15295:1 15311:1 15313:1 15322:3 15326:1 15329:3 15333:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:3 15353:1 15359:2 15361:1 15366:1 15372:1 15376:1 15384:5 15389:3 15396:1 15401:1 15404:1 15418:1 15430:3 15438:4 15504:3 15513:1 15514:2 15544:1 15554:2 15584:1 15590:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:3 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 16003:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:1 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:7 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:1 16371:1 16399:1 16409:2 16412:2 16424:1 16425:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:2 16720:1 16738:3 16749:1 16751:1 16762:2 16772:2 16780:1 16791:14 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:4 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:1 17011:1 17032:1 17054:1 17064:3 17069:2 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17146:8 17149:1 17150:1 17169:1 17171:1 17178:1 17194:1 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:11 17259:1 17272:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17586:1 17608:1 17609:1 17626:4 17636:1 17651:7 17657:2 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17771:1 17797:4 17799:1 17808:1 17819:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17910:1 17920:1 17924:1 17928:1 17955:1 17956:1 17965:5 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:1 18147:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18286:1 18291:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:2 18392:1 18400:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18490:2 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18681:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18809:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:3 19132:1 19140:3 19142:1 19158:2 19163:8 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19404:1 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:6 19473:1 19479:2 19491:1 19498:2 19514:7 19519:1 19533:1 19547:1 19572:8 19583:2 19587:2 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:1 20006:1 20017:1 20028:1 20036:4 20061:2 20074:1 20090:3 20153:9 20157:1 20176:1 20186:11 20211:2 20223:1 20224:1 20225:2 20233:1 20264:1 20267:2 20282:2 20283:1 20294:1 20300:1 20301:1 20318:1 20320:2 20321:3 20331:1 20332:1 20336:1 20356:4 20362:1 20369:3 20397:1 20407:2 20462:2 20466:1 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:9 20592:1 20633:5 20639:1 20646:2 20666:1 20681:1 20685:1 20719:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:6 20883:1 20931:1 20935:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:2 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:12 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:2 21454:2 21464:1 21476:1 21512:1 21527:2 21549:3 21552:8 21569:1 21570:4 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:3 21757:1 21762:3 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21976:1 21980:1 21994:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:1 22111:1 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22262:2 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22417:1 22428:1 22440:4 22452:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:6 22699:1 22720:1 22722:1 22724:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:1 22841:4 22845:1 22848:2 22860:2 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:1 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23431:1 23433:1 23443:5 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23513:1 23516:1 23517:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23620:1 23653:1 23659:2
18 1:1 13:1 17:1 32:1 34:1 38:1 48:1 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 133:1 134:2 144:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:1 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 412:2 433:1 451:1 452:1 465:2 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:2 612:4 617:1 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:2 802:2 808:5 811:1 813:1 815:1 837:2 848:1 877:1 887:1 890:1 902:2 931:12 934:1 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:1 1031:1 1032:3 1035:1 1058:1 1063:5 1072:3 1081:1 1109:2 1112:1 1123:3 1124:1 1133:2 1134:1 1148:1 1171:1 1176:1 1183:2 1196:5 1197:1 1206:1 1217:1 1220:1 1257:1 1267:1 1274:1 1296:3 1300:3 1317:1 1318:1 1320:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:3 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1545:1 1559:1 1566:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1682:1 1700:1 1704:2 1739:2 1756:1 1769:1 1829:2 1848:1 1892:6 1903:3 1923:1 1928:1 1934:2 1935:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2069:1 2076:1 2079:1 2081:2 2088:2 2093:1 2117:4 2133:1 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2340:1 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:2 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:3 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:2 2864:6 2868:4 2897:1 2926:1 2938:1 2955:1 2959:8 3017:1 3033:2 3035:2 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3136:1 3141:1 3143:2 3165:1 3175:2 3184:2 3187:3 3190:1 3202:15 3203:1 3204:1 3209:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3310:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:1 3375:2 3381:2 3383:2 3392:12 3396:5 3410:1 3418:5 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:5 3488:1 3490:1 3495:1 3498:4 3500:1 3501:1 3505:1 3506:1 3507:4 3509:1 3514:2 3521:2 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:2 3590:4 3597:2 3600:1 3603:1 3606:1 3607:3 3609:1 3613:1 3624:20 3635:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3803:1 3805:1 3809:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:1 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4034:1 4055:5 4065:1 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:2 4183:2 4191:2 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:3 4325:1 4342:1 4345:1 4381:2 4383:1 4386:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:1 4742:1 4751:18 4763:2 4764:1 4774:2 4785:1 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:2 4861:2 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:6 4970:6 4978:5 4983:1 4984:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:3 5454:1 5460:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:2 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:20 5673:4 5721:1 5726:1 5741:1 5750:1 5758:1 5760:1 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:3 5949:2 5959:4 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:1 6081:1 6082:3 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6182:1 6187:1 6191:2 6201:3 6231:1 6234:1 6240:1 6249:1 6254:1 6256:1 6261:20 6262:3 6263:1 6277:1 6278:1 6283:1 6314:2 6324:1 6333:1 6342:1 6354:1 6364:1 6371:1 6372:1 6373:3014 6403:1 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6573:1 6575:1 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:3 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:1 6807:2 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:2 6947:1 6958:2 6998:2 7003:1 7019:1 7029:5 7037:1 7040:1 7042:1 7045:1 7096:2 7117:1 7138:1 7151:1 7156:1 7187:1 7188:1 7189:3 7199:2 7205:1 7220:2 7243:1 7255:1 7257:3 7287:1 7321:1 7324:5 7342:3 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:1 7469:1 7473:1 7496:1 7510:1 7511:1 7519:8 7523:3 7528:1 7551:1 7557:1 7558:1 7560:1 7575:1 7585:1 7588:2 7594:3 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7972:2 7976:1 7983:1 7996:1 8002:1 8006:1 8009:1 8034:18 8054:2 8055:1 8067:2 8076:1 8078:1 8085:3 8101:1 8102:2 8104:1 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:2 8218:2 8222:2 8237:1 8247:1 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8319:3 8328:1 8337:1 8345:2 8363:3 8364:2 8369:1 8371:2 8373:1 8399:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:6 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:1 8920:2 8923:1 8928:1 8945:1 8947:1 8954:1 8972:1 8985:9 8986:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9139:2 9150:1 9166:1 9180:2 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:2 9469:1 9477:1 9484:4 9487:1 9495:1 9530:1 9540:2 9550:1 9562:1 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:3 9656:1 9658:9 9674:1 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:1 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:1 9990:1 9994:5 9998:10 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10230:1 10246:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10437:1 10449:1 10454:3 10469:1 10489:6 10494:1 10504:4 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:8 10699:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:3 10778:1 10782:1 10789:8 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10871:1 10896:1 10910:1 10920:1 10935:2 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:3 11045:1 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11160:1 11166:2 11167:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:5 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11729:1 11736:1 11740:3 11744:6 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11901:1 11923:1 11929:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:15 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12084:1 12087:1 12092:1 12094:1 12103:3 12111:3 12118:1 12125:1 12130:1 12133:1 12184:1 12189:2 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:2 12285:1 12293:1 12299:2 12307:1 12311:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:2 12417:4 12418:1 12420:3 12439:1 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:22 12549:1 12566:1 12568:18 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:2 12752:1 12753:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:2 13006:1 13011:3 13013:1 13015:2 13027:1 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13198:1 13212:1 13216:2 13222:1 13251:12 13286:2 13300:1 13316:1 13323:14 13329:6 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13394:1 13395:2 13433:2 13448:1 13449:1 13464:1 13466:1 13474:11 13485:1 13499:1 13522:5 13536:1 13549:6 13557:1 13583:1 13587:1 13598:3 13608:1 13611:4 13629:1 13663:1 13666:15 13682:2 13683:1 13689:1 13690:1 13701:1 13703:8 13717:1 13728:1 13745:1 13764:1 13770:1 13787:1 13792:1 13800:1 13802:1 13805:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:6 13876:1 13877:2 13879:1 13890:1 13893:1 13898:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:4 14020:1 14028:2 14056:1 14072:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:1 14256:1 14273:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:3 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14591:1 14595:1 14606:1 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14738:1 14740:2 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:3 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15192:2 15195:2 15216:1 15230:2 15237:1 15266:2 15280:1 15282:4 15295:1 15311:1 15313:1 15322:3 15326:1 15329:3 15333:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:3 15353:1 15359:2 15361:1 15366:1 15372:1 15376:1 15384:5 15389:3 15396:1 15401:1 15404:1 15418:1 15430:3 15438:4 15504:3 15513:1 15514:2 15544:1 15554:2 15573:1 15584:1 15590:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:3 15887:1 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16003:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:1 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:7 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:1 16371:1 16399:1 16409:2 16412:2 16424:1 16425:2 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:2 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:2 16720:1 16738:3 16746:1 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:15 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:5 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:1 17011:1 17032:1 17054:1 17064:3 17069:2 17074:1 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17146:8 17149:1 17150:1 17169:1 17171:1 17178:1 17194:1 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:11 17259:1 17272:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17586:1 17608:1 17609:1 17626:4 17636:1 17651:7 17657:2 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17771:1 17797:5 17799:1 17808:1 17819:1 17844:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17910:1 17920:1 17924:1 17928:1 17955:1 17956:1 17965:5 17971:1 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:2 18147:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:2 18392:1 18400:1 18402:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18490:2 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18675:1 18681:1 18687:1 18700:2 18719:3 18764:2 18767:2 18770:1 18784:1 18809:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:3 19132:1 19140:3 19142:1 19158:2 19163:8 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19398:1 19404:1 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:6 19473:1 19479:2 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:8 19583:2 19587:2 19602:1 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19927:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:1 20006:1 20017:2 20028:1 20036:4 20061:2 20074:1 20090:3 20153:9 20157:1 20176:1 20186:11 20211:2 20223:1 20224:1 20225:2 20233:1 20264:1 20267:2 20282:2 20283:1 20294:1 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:4 20362:1 20369:3 20397:1 20407:2 20462:2 20466:1 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:10 20592:1 20614:1 20633:6 20639:1 20646:2 20666:1 20681:1 20685:1 20719:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:6 20883:1 20931:1 20935:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:2 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:14 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21439:1 21440:1 21446:2 21454:3 21464:1 21476:1 21512:1 21527:2 21549:3 21552:9 21569:1 21570:4 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:1 21642:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:3 21757:1 21762:3 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21960:1 21976:1 21980:1 21994:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22130:1 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22262:2 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22417:1 22428:1 22440:4 22452:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:6 22699:1 22720:1 22722:1 22724:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:1 22841:4 22845:1 22848:2 22853:1 22860:2 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:2 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23431:1 23433:1 23443:6 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23505:1 23513:1 23516:1 23517:1 23524:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23597:1 23620:1 23634:1 23653:1 23659:2
18 1:1 13:1 17:1 32:1 34:1 38:1 48:1 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 133:1 134:2 144:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:1 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 412:2 433:1 451:1 452:1 465:2 471:2 477:1 485:2 491:1 503:1 507:2 524:1 531:1 541:1 554:4 588:3 612:4 617:2 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:4 802:2 808:5 811:1 813:1 815:1 826:1 837:2 848:1 877:1 887:1 890:1 902:2 931:12 934:1 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:2 1031:1 1032:3 1035:1 1058:1 1063:5 1072:3 1081:1 1109:2 1112:1 1123:3 1124:1 1133:2 1134:1 1148:1 1171:1 1176:1 1183:2 1196:6 1197:1 1206:1 1217:1 1220:1 1257:1 1267:1 1274:1 1296:3 1300:3 1317:1 1318:1 1320:1 1327:2 1328:1 1347:1 1348:1 1349:2 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:3 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1545:1 1559:1 1566:1 1578:2 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1682:1 1700:1 1704:2 1739:2 1756:1 1769:1 1829:2 1848:1 1892:6 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2062:1 2066:1 2068:1 2069:1 2076:1 2079:1 2081:2 2088:2 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:2 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2516:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:3 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:2 2864:6 2868:4 2897:1 2901:1 2926:1 2938:1 2955:1 2959:9 3017:1 3033:2 3035:2 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:2 3184:2 3187:3 3190:1 3202:15 3203:1 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3310:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:2 3375:2 3381:2 3383:2 3392:12 3396:5 3410:1 3418:6 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:5 3488:1 3490:1 3495:1 3498:4 3500:1 3501:1 3505:1 3506:1 3507:4 3509:1 3514:2 3521:2 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:2 3590:4 3597:2 3600:1 3603:1 3606:1 3607:3 3609:1 3613:2 3624:20 3635:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:1 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3803:1 3805:1 3809:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:3 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4034:1 4055:5 4065:1 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:2 4183:2 4191:4 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:3 4325:1 4342:1 4345:2 4381:2 4383:1 4386:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:1 4742:1 4751:19 4763:2 4764:1 4774:2 4785:1 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:2 4861:2 4865:1 4872:1 4895:4 4899:1 4924:2 4930:1 4939:1 4950:1 4964:6 4970:6 4978:5 4983:1 4984:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:3 5454:1 5460:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:2 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:20 5673:4 5721:1 5726:1 5741:1 5750:1 5758:1 5760:1 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:3 5949:2 5959:4 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:1 6081:1 6082:4 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:3 6182:1 6187:1 6191:2 6201:3 6231:1 6234:1 6240:1 6249:1 6254:1 6256:1 6261:20 6262:3 6263:1 6277:1 6278:1 6283:1 6314:2 6324:1 6333:1 6342:1 6354:1 6364:1 6371:1 6372:1 6373:3077 6403:1 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:2 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:3 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:1 6807:2 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:2 6947:1 6958:2 6998:2 7003:1 7019:1 7029:5 7037:1 7040:1 7042:1 7045:1 7096:2 7117:1 7138:1 7151:1 7156:1 7187:1 7188:1 7189:3 7199:2 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:4 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:1 7469:1 7473:1 7496:1 7510:1 7511:1 7519:8 7523:3 7528:1 7551:1 7557:1 7558:2 7560:1 7575:1 7585:1 7588:2 7594:3 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7972:2 7976:1 7983:1 7996:1 8002:1 8006:1 8009:1 8034:18 8044:1 8054:2 8055:1 8067:2 8076:1 8078:1 8085:3 8101:1 8102:2 8104:1 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:2 8237:1 8247:1 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8319:3 8328:1 8337:1 8345:2 8363:4 8364:2 8369:1 8371:2 8373:1 8399:2 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:7 8579:1 8597:1 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:1 8920:2 8923:1 8928:1 8945:1 8947:1 8954:1 8972:1 8985:10 8986:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9139:2 9150:1 9166:1 9180:2 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:2 9469:1 9477:1 9484:4 9487:1 9495:1 9530:1 9540:2 9550:1 9562:2 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:3 9656:1 9658:9 9674:1 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:1 9990:1 9994:5 9998:10 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:3 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10230:1 10246:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10437:2 10449:1 10454:3 10469:1 10489:7 10494:1 10504:4 10512:1 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10679:1 10683:1 10698:8 10699:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:8 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10871:1 10896:1 10910:1 10920:1 10935:2 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:3 11045:1 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11160:1 11166:2 11167:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:1 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:5 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11729:1 11736:1 11740:3 11744:7 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:1 12000:1 12022:15 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12084:1 12087:1 12092:1 12094:1 12103:3 12111:3 12118:1 12125:1 12130:1 12133:1 12184:1 12189:2 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:2 12285:1 12293:1 12299:2 12307:1 12311:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:2 12417:4 12418:1 12420:3 12439:1 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:22 12549:1 12566:1 12568:19 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:3 12752:1 12753:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:1 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13198:1 13212:1 13216:2 13222:1 13251:12 13286:2 13300:1 13316:1 13323:14 13329:6 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13394:1 13395:2 13433:2 13448:1 13449:1 13464:1 13466:1 13474:12 13485:1 13499:1 13522:5 13536:1 13549:6 13557:1 13583:1 13587:1 13598:3 13608:1 13611:4 13629:1 13663:1 13666:15 13682:3 13683:1 13689:1 13690:1 13701:1 13703:8 13717:1 13728:1 13745:1 13764:1 13770:1 13787:1 13792:1 13800:1 13802:1 13805:1 13812:2 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:6 13876:1 13877:2 13879:1 13890:1 13893:1 13898:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:4 14020:1 14028:2 14056:1 14072:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:2 14256:1 14273:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:4 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14738:1 14740:2 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:3 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15192:3 15195:2 15216:1 15230:2 15237:1 15266:2 15280:1 15282:4 15295:1 15311:1 15313:1 15322:3 15326:1 15329:3 15333:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:3 15353:1 15359:2 15361:1 15366:1 15372:1 15376:1 15384:5 15389:3 15396:1 15401:1 15404:1 15418:2 15430:3 15438:4 15504:3 15513:1 15514:2 15544:1 15554:2 15573:1 15584:1 15590:1 15595:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15703:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:3 15887:1 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16003:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:2 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:7 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:1 16371:1 16399:1 16409:2 16412:2 16424:1 16425:2 16442:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:3 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:2 16720:1 16738:3 16746:1 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:15 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:5 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:1 17011:1 17032:1 17054:1 17064:3 17069:2 17074:1 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17146:8 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:11 17259:1 17264:1 17272:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17586:1 17608:1 17609:1 17626:4 17636:1 17651:7 17657:2 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17771:1 17797:5 17799:1 17808:2 17819:1 17844:1 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17965:5 17971:1 18000:1 18022:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:2 18147:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:2 18392:1 18400:1 18402:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18490:2 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18675:1 18681:1 18687:1 18700:2 18719:3 18764:3 18767:2 18770:1 18784:1 18809:1 18811:1 18862:1 18980:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:3 19132:1 19140:3 19142:1 19158:2 19163:8 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19398:1 19404:1 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:7 19473:1 19479:2 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:8 19583:2 19587:2 19602:1 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19813:1 19832:1 19844:1 19846:2 19862:1 19898:1 19927:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:1 20006:1 20017:2 20028:1 20036:4 20061:2 20074:1 20090:3 20153:9 20157:1 20176:1 20186:11 20211:2 20223:1 20224:1 20225:2 20233:1 20264:1 20267:2 20282:2 20283:1 20294:1 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:4 20362:1 20369:4 20397:1 20407:2 20462:2 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:10 20592:1 20614:1 20633:6 20639:1 20646:2 20666:1 20681:1 20685:1 20719:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:7 20883:1 20931:1 20935:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:1 21053:1 21061:4 21077:1 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:2 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:14 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:2 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21431:1 21439:1 21440:1 21446:2 21454:3 21464:1 21476:1 21512:1 21527:2 21549:4 21552:9 21569:1 21570:4 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:1 21642:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:4 21757:1 21762:3 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21960:1 21976:1 21980:1 21994:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22130:1 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22262:3 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22417:2 22428:1 22440:4 22452:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:7 22699:1 22720:1 22722:1 22724:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:1 22841:4 22845:1 22848:2 22853:1 22860:3 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:2 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23431:1 23433:1 23443:6 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23505:1 23513:1 23516:1 23517:1 23524:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23597:1 23620:1 23634:1 23653:1 23659:2
18 1:1 13:1 17:1 32:1 34:1 38:1 48:1 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 133:1 134:3 144:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 404:1 412:2 433:1 439:1 451:1 452:1 465:3 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 588:3 612:4 617:2 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:4 802:2 808:5 811:1 813:1 815:1 826:1 837:2 848:1 877:1 887:1 890:1 902:3 931:12 934:1 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:2 1031:1 1032:3 1035:1 1058:1 1063:6 1072:3 1081:1 1109:2 1112:1 1123:3 1124:1 1133:2 1134:1 1148:1 1171:1 1176:1 1183:2 1196:6 1197:1 1206:1 1217:1 1220:1 1257:1 1267:1 1274:1 1296:3 1300:3 1317:1 1318:1 1320:1 1327:2 1328:1 1347:1 1348:1 1349:3 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1545:1 1559:1 1566:1 1578:2 1583:1 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1682:1 1700:1 1704:2 1739:2 1756:1 1769:1 1829:2 1848:1 1892:6 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2056:1 2062:1 2066:1 2068:1 2069:1 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:3 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2516:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:3 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:2 2864:6 2868:4 2897:1 2901:1 2926:1 2938:1 2955:1 2959:9 3017:1 3033:2 3035:2 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:2 3184:2 3187:3 3190:1 3202:16 3203:1 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3296:1 3310:1 3314:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:2 3375:2 3381:2 3383:2 3392:12 3396:6 3410:1 3418:6 3427:2 3439:2 3444:4 3474:3 3477:1 3484:1 3486:5 3488:1 3490:1 3495:1 3498:5 3500:1 3501:1 3502:1 3505:1 3506:1 3507:4 3509:1 3514:3 3521:2 3524:2 3547:2 3548:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:2 3590:4 3597:2 3600:1 3603:1 3606:1 3607:3 3609:1 3613:2 3624:20 3635:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3803:1 3805:1 3809:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:3 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4034:1 4055:5 4065:1 4079:1 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:2 4183:2 4191:4 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:3 4325:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:2 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:1 4742:1 4751:19 4763:2 4764:1 4774:2 4785:2 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:2 4861:2 4865:1 4872:1 4895:4 4899:1 4924:3 4930:1 4939:1 4950:1 4964:6 4970:6 4978:5 4983:1 4984:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:3 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:2 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:20 5673:4 5721:1 5726:1 5741:1 5750:1 5758:1 5760:2 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:3 5949:2 5959:4 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:1 6081:1 6082:4 6083:4 6086:1 6128:1 6131:1 6141:2 6143:2 6174:4 6182:1 6187:1 6191:2 6201:3 6231:1 6234:1 6240:1 6249:1 6254:1 6256:1 6261:20 6262:3 6263:1 6277:1 6278:1 6283:1 6314:2 6324:1 6333:1 6342:1 6354:1 6364:1 6371:1 6372:1 6373:3198 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:1 6467:3 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:1 6807:2 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:3 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7096:2 7117:1 7138:1 7151:1 7156:1 7159:1 7187:1 7188:1 7189:3 7199:2 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:4 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:1 7469:1 7473:1 7496:1 7510:1 7511:1 7519:8 7523:4 7528:1 7551:1 7557:1 7558:2 7560:1 7575:1 7585:1 7588:2 7594:3 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:18 8044:1 8054:2 8055:1 8067:2 8076:1 8078:1 8085:3 8101:1 8102:2 8104:1 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:2 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8319:3 8328:1 8337:1 8345:2 8363:4 8364:2 8369:1 8371:3 8373:1 8399:2 8407:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:8 8579:1 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:1 8920:2 8923:1 8928:1 8945:1 8947:1 8954:1 8972:1 8985:10 8986:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9139:2 9150:1 9166:1 9180:2 9186:2 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:2 9469:1 9477:1 9484:6 9487:1 9495:1 9530:1 9540:2 9550:1 9562:2 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:3 9656:1 9658:9 9674:1 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:1 9990:1 9994:5 9998:10 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:4 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10230:1 10246:1 10248:1 10253:2 10273:1 10275:2 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10437:2 10449:1 10454:3 10469:1 10489:8 10494:1 10504:4 10512:1 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10664:1 10679:1 10683:1 10698:8 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:10 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10871:1 10885:1 10896:1 10910:1 10920:1 10935:2 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:3 11045:1 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11160:1 11166:3 11167:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:6 11630:1 11637:1 11640:1 11642:1 11663:1 11678:1 11689:1 11729:1 11736:1 11740:3 11744:8 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:2 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:16 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:1 12084:1 12087:1 12092:1 12094:1 12103:3 12111:3 12118:1 12125:1 12130:1 12133:1 12139:1 12184:1 12189:2 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:2 12285:1 12293:1 12299:2 12307:2 12311:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:2 12417:4 12418:1 12420:3 12439:1 12441:1 12444:1 12445:2 12447:2 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:22 12549:1 12553:1 12566:1 12568:20 12569:1 12576:1 12580:1 12583:1 12586:3 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:3 12752:1 12753:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:1 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13196:1 13198:1 13212:1 13216:2 13222:1 13251:13 13286:3 13300:1 13316:1 13323:15 13329:6 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13433:2 13448:1 13449:1 13464:1 13466:1 13474:13 13485:1 13499:1 13522:5 13536:1 13549:6 13557:1 13583:1 13587:1 13598:3 13608:1 13611:4 13629:1 13663:1 13666:16 13682:3 13683:1 13689:1 13690:1 13701:1 13703:8 13717:1 13728:1 13745:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:1 13812:3 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:7 13876:1 13877:2 13879:1 13890:1 13893:1 13898:1 13902:2 13903:1 13913:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:4 14020:1 14028:2 14055:1 14056:1 14072:1 14091:1 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:2 14256:1 14273:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:4 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14738:1 14740:2 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:3 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15192:3 15195:2 15216:1 15230:2 15237:1 15266:2 15280:1 15282:4 15295:1 15311:1 15313:1 15322:3 15326:1 15329:3 15333:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:3 15353:1 15359:2 15361:1 15366:1 15372:1 15376:1 15384:5 15389:3 15396:1 15401:1 15404:1 15418:2 15430:3 15438:4 15470:1 15504:3 15513:1 15514:2 15544:1 15554:2 15573:1 15584:1 15590:1 15595:2 15603:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:3 15878:1 15887:1 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16003:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:2 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:7 16185:1 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16399:1 16409:2 16410:1 16412:2 16424:1 16425:2 16442:1 16444:1 16446:1 16452:1 16469:1 16480:1 16523:1 16563:1 16570:2 16578:2 16585:1 16596:3 16622:1 16627:1 16628:2 16631:1 16650:1 16666:2 16695:1 16713:3 16716:2 16720:2 16738:3 16746:1 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:16 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:5 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:1 17011:1 17032:1 17054:1 17064:3 17069:2 17074:1 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17146:8 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:11 17259:1 17264:1 17272:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17626:4 17636:1 17651:7 17657:3 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17844:2 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17965:5 17971:1 18000:1 18015:1 18022:1 18037:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:1 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:2 18392:1 18400:1 18402:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:1 18673:1 18675:2 18681:1 18687:1 18700:2 18719:3 18764:3 18767:2 18770:1 18784:1 18809:1 18811:1 18862:1 18980:1 18985:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:4 19132:1 19140:3 19142:1 19158:2 19163:8 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19398:2 19404:1 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:8 19473:1 19479:2 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:8 19583:2 19587:2 19602:1 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19806:1 19813:1 19832:1 19844:2 19846:2 19862:1 19898:1 19927:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:1 20006:1 20017:3 20028:1 20036:4 20061:2 20074:1 20090:3 20103:1 20153:9 20157:1 20176:1 20186:11 20211:2 20223:1 20224:1 20225:2 20233:1 20264:1 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:4 20397:1 20407:2 20462:2 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:11 20592:1 20614:1 20633:7 20639:1 20646:2 20666:1 20681:1 20685:1 20719:1 20729:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:8 20883:1 20931:1 20935:1 20943:1 20964:2 20973:1 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:1 21053:1 21061:4 21077:2 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:14 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:2 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21431:1 21439:1 21440:1 21446:2 21454:4 21464:1 21476:1 21512:1 21527:2 21549:4 21552:10 21569:1 21570:4 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:1 21642:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:4 21757:1 21762:3 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:1 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21960:1 21976:1 21980:1 21994:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22130:2 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22262:3 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22414:1 22417:2 22428:1 22440:4 22452:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:8 22699:1 22720:1 22722:1 22724:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:3 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:2 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:6 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23505:1 23513:1 23516:1 23517:1 23524:1 23535:1 23537:1 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23597:2 23620:1 23634:2 23653:1 23659:2
18 1:1 13:1 17:1 32:1 34:1 38:1 48:1 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 99:1 133:1 134:3 144:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 404:1 412:2 433:1 439:1 451:1 452:1 465:3 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 588:3 612:4 617:2 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:4 801:1 802:2 808:5 811:1 813:1 815:1 826:1 837:2 848:1 877:1 887:1 890:1 902:3 931:14 934:1 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:2 1031:1 1032:3 1035:1 1058:1 1063:6 1072:4 1081:1 1109:2 1112:1 1123:4 1124:1 1133:2 1134:1 1148:1 1171:1 1176:1 1183:2 1196:6 1197:1 1206:1 1217:1 1220:1 1257:1 1267:1 1274:1 1296:3 1300:3 1310:1 1317:1 1318:1 1320:1 1327:3 1328:1 1347:1 1348:1 1349:3 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1534:1 1545:1 1559:1 1566:1 1578:2 1583:1 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1674:1 1682:1 1700:1 1704:4 1739:2 1756:1 1769:1 1829:3 1848:1 1892:7 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2056:1 2062:1 2066:1 2068:1 2069:1 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:3 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2516:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2579:1 2580:3 2596:1 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2762:1 2779:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:1 2844:2 2851:2 2864:6 2868:4 2897:1 2901:1 2926:1 2938:1 2955:1 2959:10 3017:1 3033:2 3035:2 3038:1 3042:1 3044:3 3050:1 3055:1 3062:1 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:2 3184:2 3187:3 3190:1 3202:16 3203:1 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3296:1 3310:1 3314:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:2 3375:2 3381:2 3383:2 3387:1 3392:14 3396:6 3410:1 3418:6 3427:2 3439:2 3444:4 3448:1 3474:3 3477:1 3484:1 3486:5 3488:1 3490:1 3495:1 3498:5 3500:1 3501:1 3502:1 3505:1 3506:1 3507:4 3509:1 3514:4 3521:2 3524:2 3527:1 3547:2 3548:1 3549:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:2 3590:4 3597:2 3600:1 3603:1 3606:1 3607:3 3609:1 3613:2 3624:20 3635:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3795:1 3803:1 3805:1 3809:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:3 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 4008:1 4024:1 4031:2 4034:1 4055:5 4065:1 4079:2 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:2 4183:2 4191:4 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:1 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:4 4325:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:2 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4578:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:1 4742:1 4751:20 4763:2 4764:1 4774:2 4785:2 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:3 4861:2 4865:1 4872:1 4895:4 4899:1 4924:3 4930:1 4939:1 4950:1 4964:6 4970:7 4978:5 4983:1 4984:1 4985:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5230:4 5241:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5450:3 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:2 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:20 5673:4 5721:1 5726:1 5741:1 5750:1 5758:1 5760:2 5767:2 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:3 5949:2 5959:4 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:2 6081:1 6082:5 6083:5 6086:1 6128:1 6131:1 6141:2 6143:2 6174:4 6182:1 6187:1 6191:2 6201:3 6231:1 6234:1 6240:1 6249:1 6254:1 6256:1 6261:20 6262:3 6263:1 6277:1 6278:1 6283:1 6314:2 6324:1 6333:1 6342:1 6354:1 6364:2 6371:1 6372:1 6373:3284 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:2 6467:3 6490:1 6498:2 6509:1 6521:1 6537:1 6554:1 6560:1 6571:2 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:1 6807:2 6813:1 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:3 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7096:2 7117:1 7138:1 7151:1 7156:1 7159:1 7187:2 7188:1 7189:3 7199:2 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:5 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:2 7469:1 7473:1 7496:1 7510:1 7511:1 7514:1 7519:8 7523:4 7528:1 7551:1 7557:1 7558:2 7560:1 7575:1 7585:1 7588:2 7594:3 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7778:1 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:20 8044:1 8054:2 8055:1 8067:2 8076:1 8078:1 8085:4 8101:1 8102:2 8104:1 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:2 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8319:3 8328:1 8337:1 8345:2 8363:5 8364:2 8369:1 8371:3 8373:1 8399:2 8407:1 8428:1 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:8 8579:1 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:1 8920:2 8923:1 8928:1 8945:1 8947:1 8954:1 8972:1 8985:11 8986:1 8990:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9117:1 9139:2 9150:1 9166:1 9180:2 9186:2 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:3 9469:1 9472:1 9477:1 9484:6 9487:1 9495:1 9499:1 9530:1 9540:2 9550:1 9562:2 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:4 9656:1 9658:9 9674:1 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:2 9990:1 9994:7 9998:11 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:4 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10230:1 10246:1 10248:1 10253:2 10273:1 10275:2 10286:1 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10437:2 10449:1 10454:3 10469:1 10489:8 10494:1 10504:4 10512:1 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10664:1 10679:1 10683:1 10698:8 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:10 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10871:1 10885:1 10896:1 10910:1 10920:1 10935:2 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:3 11045:1 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11160:1 11166:3 11167:2 11169:1 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:6 11630:1 11637:1 11640:1 11642:1 11663:1 11678:2 11689:1 11729:1 11736:1 11740:3 11744:8 11780:1 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:2 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:16 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:2 12084:1 12087:1 12092:1 12094:1 12103:4 12111:3 12118:1 12125:1 12130:1 12133:1 12139:2 12184:1 12189:2 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:2 12285:1 12293:1 12299:2 12307:2 12311:1 12316:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:3 12417:4 12418:1 12420:3 12439:1 12441:2 12444:1 12445:2 12447:4 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:22 12549:1 12553:1 12566:1 12568:21 12569:1 12576:1 12580:1 12583:1 12586:3 12601:1 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:3 12752:1 12753:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:2 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13196:1 13198:1 13212:1 13216:2 13222:1 13251:13 13286:3 13300:1 13316:1 13323:15 13329:6 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13433:2 13448:1 13449:1 13464:1 13466:1 13474:13 13485:1 13499:1 13522:5 13536:1 13549:6 13557:1 13583:1 13587:1 13592:1 13598:3 13608:1 13611:4 13629:1 13663:1 13666:16 13682:3 13683:1 13689:1 13690:1 13701:1 13703:8 13717:1 13728:1 13745:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:1 13812:3 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:7 13876:1 13877:2 13879:1 13890:1 13893:1 13898:1 13902:2 13903:1 13913:1 13931:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:5 14020:1 14028:2 14055:1 14056:1 14072:1 14091:2 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:2 14256:1 14273:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:5 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14559:1 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14679:2 14691:1 14706:1 14708:1 14738:1 14740:2 14748:1 14749:1 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:3 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:1 15176:1 15188:1 15192:3 15195:2 15216:1 15230:2 15237:1 15266:2 15280:1 15282:5 15295:1 15311:1 15313:1 15322:3 15326:1 15328:1 15329:3 15333:1 15335:1 15337:6 15341:32 15343:1 15344:1 15346:1 15349:3 15353:1 15359:2 15361:1 15366:1 15372:1 15376:1 15384:5 15389:3 15396:1 15401:1 15404:1 15418:2 15430:3 15438:4 15470:1 15504:3 15513:1 15514:2 15544:1 15554:2 15573:1 15580:1 15584:1 15590:1 15595:2 15603:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:4 15878:1 15887:1 15896:1 15897:1 15913:1 15916:2 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16003:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:2 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:7 16185:1 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16373:1 16399:1 16409:2 16410:1 16412:2 16424:1 16425:2 16442:1 16444:1 16446:1 16452:1 16469:1 16480:1 16515:1 16523:1 16563:1 16565:1 16570:2 16578:2 16585:1 16596:3 16622:1 16627:1 16628:2 16631:1 16647:1 16650:1 16666:2 16686:1 16695:1 16713:3 16716:2 16720:2 16738:3 16746:1 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:16 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:5 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:2 17011:1 17032:1 17054:1 17064:3 17069:2 17074:1 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17141:1 17146:8 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17246:1 17252:11 17259:1 17264:1 17272:1 17276:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17475:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17626:4 17632:1 17636:1 17651:8 17657:3 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17821:1 17844:2 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17965:5 17971:1 18000:1 18015:1 18022:1 18037:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:2 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:2 18392:1 18398:1 18400:2 18402:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:2 18673:1 18675:2 18681:1 18687:1 18700:2 18719:3 18764:3 18767:2 18770:1 18784:1 18809:1 18811:1 18862:1 18957:1 18980:1 18985:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:4 19132:1 19140:3 19142:1 19158:2 19163:8 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19392:1 19398:2 19404:1 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:8 19473:1 19479:2 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:8 19583:2 19587:2 19602:1 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19806:1 19813:1 19832:1 19844:2 19846:2 19862:1 19898:1 19927:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:1 20006:1 20017:3 20028:1 20036:5 20061:2 20074:1 20090:3 20103:1 20153:10 20157:1 20176:1 20186:11 20211:2 20223:1 20224:1 20225:2 20233:1 20264:1 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:5 20397:1 20407:2 20462:3 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:11 20592:1 20614:1 20633:7 20639:1 20646:2 20666:1 20681:1 20685:1 20719:1 20729:1 20740:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:2 20841:1 20870:8 20883:1 20931:1 20935:1 20943:1 20964:2 20973:2 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:1 21053:1 21061:4 21077:2 21079:1 21082:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:14 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:2 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21431:1 21439:1 21440:1 21446:2 21454:4 21464:1 21476:1 21512:1 21527:2 21549:5 21552:10 21569:1 21570:5 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:2 21642:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:5 21757:1 21760:1 21762:3 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:2 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21960:1 21976:1 21980:1 21994:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22130:2 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:3 22229:1 22230:1 22233:2 22237:2 22262:3 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22414:1 22417:2 22428:1 22440:4 22452:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:8 22699:1 22720:1 22722:1 22724:1 22755:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:3 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:2 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:6 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23505:1 23513:1 23516:1 23517:1 23518:1 23524:1 23535:1 23537:2 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23583:2 23597:2 23620:1 23634:2 23653:1 23659:2
18 1:1 13:1 17:1 32:1 34:1 38:1 48:2 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 99:1 133:1 134:3 144:1 148:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 404:1 412:2 433:1 439:1 451:1 452:1 465:4 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 588:3 612:4 617:3 625:2 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:4 801:1 802:2 808:5 811:1 813:2 815:1 826:1 837:2 848:1 870:1 877:1 887:1 890:1 902:3 931:15 934:2 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:3 1031:1 1032:4 1035:1 1058:1 1063:6 1072:4 1081:1 1106:1 1109:2 1112:1 1123:4 1124:1 1133:2 1134:1 1148:1 1156:1 1171:1 1176:1 1183:2 1196:6 1197:1 1206:1 1217:1 1220:1 1257:2 1267:1 1274:1 1296:3 1300:3 1310:1 1317:1 1318:1 1320:1 1327:3 1328:1 1347:1 1348:1 1349:3 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1534:2 1545:1 1553:1 1559:1 1566:1 1578:2 1583:1 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1674:1 1682:1 1700:1 1704:4 1739:2 1756:1 1769:1 1809:1 1829:3 1847:1 1848:1 1892:7 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:2 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2056:1 2062:1 2066:1 2068:1 2069:1 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:3 2421:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2516:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2575:1 2579:1 2580:3 2596:1 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2762:1 2779:1 2780:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:3 2844:2 2851:2 2864:6 2868:4 2897:1 2901:1 2926:1 2938:1 2955:1 2959:10 3017:1 3033:2 3035:2 3038:1 3042:1 3044:3 3050:1 3055:1 3062:2 3087:2 3089:1 3101:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:2 3184:2 3187:3 3190:1 3202:16 3203:1 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3296:1 3310:1 3313:1 3314:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:3 3375:2 3381:2 3383:2 3387:1 3392:15 3396:6 3410:1 3418:6 3427:2 3431:1 3439:2 3444:4 3448:1 3474:3 3477:1 3484:1 3486:5 3488:1 3490:1 3495:1 3498:6 3500:1 3501:1 3502:1 3505:1 3506:1 3507:4 3509:1 3514:4 3521:3 3524:2 3527:1 3547:2 3548:1 3549:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:3 3590:4 3597:2 3600:1 3603:2 3606:1 3607:3 3609:1 3613:3 3624:20 3635:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3795:1 3803:1 3805:1 3809:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:3 3897:1 3901:2 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 3991:1 4008:1 4024:1 4031:2 4034:1 4055:5 4065:1 4079:2 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:2 4183:2 4191:4 4210:2 4215:3 4229:1 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:4 4325:1 4330:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:3 4388:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4563:1 4573:1 4578:1 4598:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:1 4742:1 4751:20 4763:2 4764:1 4765:1 4774:2 4785:3 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:3 4861:2 4865:2 4872:1 4895:4 4899:1 4924:3 4930:1 4939:1 4950:1 4964:6 4969:1 4970:7 4978:5 4983:1 4984:1 4985:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5213:1 5230:4 5241:1 5253:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:6 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5448:1 5450:3 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:2 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:20 5673:4 5687:1 5721:1 5726:1 5741:1 5750:1 5758:1 5760:3 5767:2 5768:1 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:3 5949:2 5959:4 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:2 6078:1 6081:1 6082:6 6083:5 6086:1 6128:1 6131:1 6141:2 6143:2 6174:4 6182:1 6187:1 6191:2 6201:3 6231:1 6234:1 6240:1 6249:1 6254:1 6256:1 6261:20 6262:3 6263:1 6277:1 6278:1 6283:1 6314:2 6324:1 6333:1 6342:1 6354:1 6364:2 6371:1 6372:1 6373:3371 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:2 6467:3 6490:1 6498:2 6509:1 6518:1 6521:1 6537:1 6554:1 6560:1 6571:2 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:2 6807:2 6813:1 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:4 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7057:1 7096:2 7117:1 7138:1 7151:1 7156:1 7159:1 7187:2 7188:1 7189:3 7199:2 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:6 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:2 7469:1 7473:1 7491:1 7496:1 7510:1 7511:1 7514:1 7519:8 7523:4 7528:1 7551:1 7557:1 7558:3 7560:1 7575:1 7585:1 7588:2 7594:3 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:14 7713:1 7717:2 7718:1 7723:1 7724:2 7733:1 7739:7 7741:1 7745:3 7778:1 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:21 8044:1 8054:2 8055:1 8067:2 8076:1 8078:1 8085:4 8101:1 8102:2 8104:1 8111:1 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:2 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8319:3 8328:1 8337:1 8345:2 8363:5 8364:2 8369:1 8371:3 8373:1 8399:2 8407:1 8428:2 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:8 8579:1 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:1 8915:1 8920:2 8923:1 8928:1 8945:1 8947:1 8954:1 8972:1 8985:11 8986:1 8990:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9117:1 9139:2 9150:1 9166:1 9180:2 9186:2 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:3 9469:1 9472:1 9477:1 9484:6 9487:1 9495:1 9499:1 9530:1 9540:2 9550:1 9562:2 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:4 9656:1 9658:9 9674:1 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:2 9990:1 9994:7 9998:11 10006:1 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:4 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10225:1 10230:1 10246:1 10248:1 10252:1 10253:2 10273:1 10275:2 10286:1 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10437:2 10449:2 10454:3 10469:1 10489:8 10494:1 10504:4 10512:1 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10664:1 10679:1 10683:1 10698:8 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10753:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:10 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:1 10868:1 10871:1 10885:1 10896:1 10910:1 10920:1 10935:2 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:3 11045:1 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11160:1 11166:4 11167:2 11169:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11509:1 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:7 11630:1 11637:1 11640:1 11642:1 11663:1 11678:2 11689:1 11729:1 11736:1 11740:3 11744:8 11780:1 11795:1 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:2 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:16 12037:3 12041:1 12047:1 12055:1 12058:1 12060:1 12071:2 12084:1 12087:1 12092:1 12094:1 12103:4 12111:3 12118:1 12125:1 12130:1 12133:1 12139:2 12184:1 12189:2 12190:2 12193:1 12211:1 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12263:1 12266:2 12285:1 12293:1 12299:2 12307:2 12311:1 12316:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:3 12417:4 12418:1 12420:3 12439:1 12441:2 12444:1 12445:2 12447:4 12452:2 12456:5 12468:1 12480:1 12481:1 12488:3 12491:2 12500:6 12502:2 12504:2 12506:1 12514:1 12518:1 12519:1 12531:24 12549:1 12553:1 12566:1 12568:21 12569:1 12576:1 12580:1 12583:1 12586:3 12601:1 12603:1 12610:1 12631:1 12649:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:3 12750:1 12752:1 12753:1 12760:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:2 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13196:1 13198:1 13212:1 13216:2 13222:1 13251:13 13286:3 13300:1 13308:1 13316:1 13323:16 13329:7 13332:1 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13433:2 13448:1 13449:1 13464:1 13466:1 13474:13 13485:1 13499:1 13522:5 13536:1 13549:6 13557:1 13562:1 13583:1 13587:1 13592:1 13598:3 13608:1 13611:4 13629:1 13656:1 13663:1 13666:16 13682:3 13683:1 13689:1 13690:1 13701:1 13703:8 13717:1 13718:1 13728:1 13745:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:1 13812:3 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:8 13876:1 13877:2 13879:1 13890:1 13893:1 13898:1 13902:2 13903:1 13913:1 13931:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:5 14020:1 14028:2 14042:1 14055:1 14056:1 14072:1 14091:2 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:3 14256:1 14273:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:2 14401:1 14410:6 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14559:1 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14674:1 14679:2 14691:1 14706:1 14708:1 14738:1 14740:2 14748:1 14749:1 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:4 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:3 15176:1 15188:1 15192:3 15195:2 15203:1 15215:1 15216:1 15230:2 15237:1 15266:2 15280:1 15282:5 15295:1 15311:1 15313:1 15322:3 15326:1 15328:1 15329:3 15333:1 15335:1 15337:6 15341:32 15343:1 15344:1 15345:1 15346:1 15349:3 15353:1 15359:2 15361:1 15366:2 15372:1 15376:1 15384:5 15389:3 15396:1 15401:1 15404:1 15418:2 15430:3 15438:4 15470:1 15500:1 15504:3 15513:1 15514:2 15534:1 15544:1 15553:1 15554:2 15573:1 15580:1 15584:1 15590:1 15595:2 15603:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:4 15878:1 15887:1 15896:1 15897:1 15913:1 15916:3 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16003:1 16004:3 16006:1 16014:1 16030:2 16034:20 16035:2 16064:1 16085:1 16102:2 16115:1 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:7 16185:1 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16373:1 16399:1 16409:2 16410:1 16412:2 16424:1 16425:2 16442:1 16444:1 16446:1 16452:1 16469:1 16480:1 16515:1 16523:1 16563:1 16565:1 16570:2 16578:2 16585:1 16596:3 16622:1 16627:1 16628:2 16631:1 16647:1 16650:1 16666:2 16686:1 16695:1 16713:3 16716:3 16720:2 16738:3 16746:2 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:16 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:5 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:2 17011:1 17032:1 17054:1 17064:3 17069:2 17074:1 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17141:1 17146:8 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17196:2 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17243:1 17246:1 17252:11 17259:1 17264:1 17272:1 17276:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:2 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17475:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:3 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17626:4 17632:1 17636:1 17651:9 17657:3 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17756:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17821:1 17844:3 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17963:1 17965:5 17971:1 18000:1 18015:1 18022:1 18037:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:2 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:2 18392:1 18398:1 18400:2 18402:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18506:3 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18656:1 18659:1 18666:2 18673:1 18675:3 18681:1 18687:1 18700:2 18719:3 18764:3 18765:2 18767:2 18770:1 18774:1 18784:1 18809:1 18811:1 18862:1 18899:1 18902:1 18957:1 18980:1 18985:1 18989:3 19007:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:4 19132:1 19140:3 19142:1 19158:2 19163:8 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19385:1 19392:1 19398:2 19404:1 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:8 19473:1 19479:2 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:8 19583:2 19587:2 19602:1 19612:1 19642:1 19646:1 19661:1 19663:20 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19806:1 19813:1 19832:1 19844:2 19846:2 19862:1 19898:1 19919:1 19927:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:2 20006:1 20017:3 20028:1 20036:5 20061:2 20074:1 20090:3 20103:1 20153:10 20157:1 20176:1 20186:11 20211:2 20223:1 20224:1 20225:2 20233:1 20264:2 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:6 20397:1 20407:2 20462:4 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:12 20592:1 20614:1 20633:8 20639:1 20646:2 20666:1 20681:1 20685:1 20719:1 20729:1 20740:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:3 20841:1 20870:8 20883:1 20902:1 20931:1 20935:1 20943:1 20964:2 20973:2 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:1 21053:1 21061:4 21077:2 21079:1 21082:1 21094:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:14 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:2 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21430:1 21431:1 21439:1 21440:1 21446:2 21454:5 21464:1 21476:1 21512:1 21527:2 21549:6 21552:11 21569:1 21570:5 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:2 21642:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:6 21715:1 21757:1 21760:1 21762:4 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:2 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21960:1 21976:1 21980:1 21994:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22130:3 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:4 22229:1 22230:1 22233:2 22237:2 22262:3 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22414:1 22417:2 22428:1 22440:4 22452:1 22453:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:8 22699:1 22720:1 22722:1 22724:1 22755:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:3 22868:1 22871:1 22939:20 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23122:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:2 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23248:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:6 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:1 23505:1 23513:1 23516:1 23517:1 23518:1 23524:1 23535:1 23537:2 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23571:1 23583:2 23597:3 23620:1 23634:3 23653:1 23659:2
18 1:1 13:1 17:1 29:1 32:1 34:1 38:1 48:2 55:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 99:1 133:1 134:3 144:1 148:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 404:1 412:2 433:1 439:1 451:1 452:1 465:4 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 588:3 612:4 617:3 625:3 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:4 801:1 802:2 808:6 811:1 813:2 815:1 826:1 837:2 848:1 870:1 877:1 887:1 890:1 902:3 931:15 934:2 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:3 1031:1 1032:4 1035:2 1058:1 1063:7 1072:4 1081:1 1106:1 1109:2 1112:1 1123:4 1124:1 1133:2 1134:1 1148:1 1156:1 1171:1 1176:1 1183:2 1196:6 1197:1 1206:1 1217:1 1220:1 1257:2 1267:1 1274:1 1296:3 1300:3 1310:1 1317:1 1318:1 1320:1 1327:3 1328:1 1347:1 1348:1 1349:3 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1534:2 1545:1 1553:1 1559:1 1566:1 1578:2 1583:1 1588:1 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1674:1 1682:1 1700:1 1704:4 1739:2 1756:1 1769:1 1809:1 1829:3 1847:1 1848:1 1892:7 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:3 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2039:1 2056:1 2062:1 2066:1 2068:1 2069:1 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:1 2233:2 2242:1 2244:1 2284:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:4 2421:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2516:1 2522:2 2527:1 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2575:1 2579:1 2580:3 2596:1 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2732:1 2752:1 2762:1 2779:1 2780:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:3 2843:1 2844:2 2851:2 2864:6 2868:4 2897:2 2901:1 2926:1 2938:1 2955:1 2959:10 3017:1 3033:2 3035:2 3038:1 3042:1 3044:4 3050:1 3055:1 3062:2 3087:2 3089:1 3101:1 3107:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:2 3184:2 3187:3 3190:1 3202:16 3203:1 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3296:1 3310:1 3313:1 3314:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:3 3375:2 3381:2 3383:2 3387:1 3392:15 3396:6 3410:1 3418:6 3427:2 3431:1 3439:2 3444:4 3448:1 3474:3 3477:1 3484:1 3486:6 3488:1 3490:1 3495:1 3498:6 3500:1 3501:1 3502:1 3505:2 3506:1 3507:4 3509:1 3514:4 3521:3 3524:2 3527:1 3547:2 3548:1 3549:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:3 3590:4 3597:2 3600:1 3603:2 3606:1 3607:3 3609:1 3613:3 3624:22 3635:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3795:1 3803:1 3805:1 3809:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:3 3897:1 3901:3 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 3991:1 4008:1 4024:1 4031:2 4034:1 4055:5 4065:1 4079:2 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:2 4183:2 4191:4 4210:2 4215:3 4229:1 4230:1 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:2 4315:1 4321:4 4325:1 4330:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:3 4388:1 4393:4 4398:1 4400:1 4408:1 4413:1 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4551:1 4563:1 4573:1 4578:1 4598:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:2 4742:1 4751:20 4761:1 4763:2 4764:1 4765:1 4774:2 4785:3 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:3 4861:2 4865:2 4872:1 4895:5 4899:1 4924:3 4930:1 4939:1 4950:1 4964:6 4969:1 4970:7 4978:5 4983:1 4984:1 4985:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5134:1 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5213:1 5230:4 5241:1 5253:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:7 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5427:1 5448:1 5450:3 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:2 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:22 5673:4 5687:1 5721:1 5726:1 5741:1 5750:1 5758:1 5760:3 5767:2 5768:1 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:2 5886:2 5913:2 5916:1 5917:3 5949:2 5959:4 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:2 6078:1 6081:1 6082:7 6083:5 6086:1 6128:1 6131:1 6141:2 6143:2 6153:1 6174:4 6175:1 6182:1 6187:1 6191:2 6201:4 6231:1 6234:1 6240:1 6249:1 6254:1 6256:1 6261:22 6262:3 6263:1 6277:1 6278:1 6283:1 6305:1 6314:2 6324:1 6333:1 6342:1 6354:1 6364:2 6371:1 6372:1 6373:3419 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:2 6467:3 6490:1 6498:2 6509:1 6518:1 6521:1 6537:1 6544:1 6554:1 6560:1 6571:2 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:2 6807:2 6813:1 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:4 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7057:1 7096:2 7117:1 7138:1 7151:1 7156:1 7159:1 7187:2 7188:1 7189:3 7199:2 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:7 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:2 7469:1 7473:1 7491:1 7496:1 7510:1 7511:1 7514:1 7519:8 7523:4 7528:1 7551:1 7557:1 7558:3 7560:1 7575:1 7585:1 7588:2 7594:3 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:15 7713:1 7717:2 7718:1 7723:1 7724:2 7733:2 7739:7 7741:1 7745:3 7778:1 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:21 8044:1 8054:3 8055:1 8067:2 8076:1 8078:1 8085:4 8101:1 8102:2 8104:1 8111:2 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:3 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8319:3 8328:1 8337:1 8345:2 8363:5 8364:2 8369:1 8371:3 8373:1 8399:2 8407:1 8428:2 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8575:8 8579:1 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:1 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:2 8915:1 8920:2 8923:1 8928:1 8945:1 8947:2 8954:1 8972:1 8985:11 8986:1 8990:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9117:1 9139:2 9150:1 9166:1 9180:2 9181:1 9186:2 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9423:1 9437:4 9439:2 9443:1 9445:2 9459:1 9468:3 9469:1 9472:1 9477:1 9484:7 9487:1 9495:1 9499:1 9530:1 9540:2 9550:1 9562:2 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:4 9656:1 9658:9 9674:2 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:6 9882:1 9885:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:6 9986:2 9987:1 9988:2 9990:1 9994:7 9998:11 9999:1 10006:1 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:4 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10225:1 10230:1 10246:1 10248:2 10252:1 10253:2 10273:1 10275:2 10286:1 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:2 10437:2 10449:2 10454:3 10469:1 10471:1 10489:8 10494:1 10496:1 10504:4 10512:1 10513:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10664:1 10679:1 10683:1 10698:9 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10753:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:11 10810:1 10824:1 10825:1 10832:1 10845:1 10856:1 10864:2 10868:1 10871:1 10885:1 10896:1 10910:1 10920:1 10935:2 10944:1 10954:1 10980:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:3 11045:2 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11159:1 11160:1 11166:4 11167:2 11169:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11509:1 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:7 11630:1 11637:1 11640:1 11642:1 11663:1 11678:2 11689:1 11729:1 11736:1 11740:3 11744:8 11780:1 11795:1 11796:1 11800:1 11801:1 11806:1 11812:1 11814:4 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:2 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:16 12037:3 12041:1 12047:1 12055:1 12058:2 12060:1 12071:2 12072:1 12084:1 12087:1 12092:1 12094:1 12103:4 12111:3 12118:1 12125:1 12130:1 12133:1 12139:2 12184:1 12189:2 12190:2 12193:1 12211:2 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12256:1 12263:1 12266:2 12285:1 12293:1 12299:2 12307:2 12311:1 12316:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:3 12417:4 12418:1 12420:3 12439:1 12441:2 12444:1 12445:2 12447:4 12452:2 12456:5 12468:1 12480:1 12481:1 12488:4 12491:2 12500:6 12502:2 12504:2 12506:1 12508:1 12514:1 12518:1 12519:1 12531:24 12549:1 12553:1 12566:1 12568:21 12569:1 12576:1 12580:1 12583:1 12586:3 12601:1 12603:1 12610:1 12631:1 12649:1 12651:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:4 12750:1 12752:1 12753:1 12760:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:2 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13196:1 13198:1 13212:1 13216:2 13222:1 13251:13 13286:3 13300:1 13308:1 13316:1 13323:16 13329:7 13332:1 13334:2 13335:1 13337:1 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13433:2 13448:1 13449:1 13464:1 13466:1 13474:13 13485:1 13499:1 13522:6 13536:1 13549:6 13557:1 13562:1 13583:1 13587:1 13592:1 13598:3 13608:1 13611:4 13629:1 13656:1 13663:1 13666:16 13682:3 13683:1 13689:1 13690:1 13701:1 13703:9 13713:1 13717:1 13718:1 13728:1 13745:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:1 13812:3 13830:1 13831:1 13846:1 13847:1 13853:1 13855:2 13860:1 13865:2 13869:8 13873:1 13876:1 13877:2 13879:1 13890:1 13893:1 13898:1 13902:2 13903:2 13913:1 13931:1 13960:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:5 14020:1 14028:2 14042:1 14055:1 14056:1 14072:1 14091:2 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:3 14256:1 14273:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:3 14401:1 14410:7 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14559:1 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14674:1 14679:2 14691:1 14706:2 14708:1 14738:1 14740:2 14748:1 14749:1 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:4 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:3 15176:1 15188:1 15192:3 15195:2 15203:1 15215:1 15216:1 15230:2 15235:1 15237:1 15266:2 15280:1 15282:5 15295:1 15311:1 15313:1 15322:3 15326:1 15328:1 15329:3 15333:1 15335:1 15337:6 15341:32 15343:1 15344:1 15345:1 15346:1 15349:3 15353:1 15359:2 15361:1 15366:2 15372:1 15376:1 15384:5 15389:4 15396:1 15401:1 15404:1 15418:3 15430:3 15438:4 15470:1 15500:1 15504:3 15513:1 15514:2 15534:1 15544:1 15553:1 15554:2 15573:1 15580:1 15584:1 15590:1 15595:2 15603:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:4 15878:1 15887:1 15896:1 15897:1 15913:1 15916:3 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16003:1 16004:3 16006:1 16014:1 16030:3 16034:22 16035:2 16064:1 16085:1 16102:2 16115:1 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:7 16185:1 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16373:1 16399:1 16409:2 16410:1 16412:2 16424:1 16425:2 16442:2 16444:1 16446:1 16452:1 16469:1 16480:1 16515:1 16523:1 16563:1 16565:1 16570:2 16578:2 16585:1 16596:4 16622:1 16627:1 16628:2 16631:1 16647:1 16650:1 16666:2 16686:1 16695:1 16713:3 16716:3 16720:2 16738:3 16746:2 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:16 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:5 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16943:4 16962:2 16967:1 16975:1 16976:2 17011:1 17032:1 17054:1 17064:3 17069:2 17074:1 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17141:1 17146:9 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17196:2 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17243:1 17246:1 17252:11 17259:1 17264:1 17272:1 17276:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:3 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17475:1 17478:1 17479:1 17489:1 17491:2 17492:1 17500:2 17520:4 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17626:4 17632:1 17636:1 17651:9 17657:3 17662:1 17680:2 17685:1 17687:2 17688:1 17704:1 17707:1 17747:1 17756:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17821:1 17844:3 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17963:1 17965:5 17971:1 18000:1 18015:1 18022:2 18037:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18199:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:2 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:2 18392:1 18398:1 18400:2 18402:1 18410:1 18418:1 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18506:4 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18646:1 18656:1 18659:1 18666:2 18673:1 18675:3 18681:1 18687:1 18700:2 18719:3 18764:3 18765:2 18767:2 18770:1 18774:1 18784:1 18809:1 18811:1 18862:1 18899:1 18902:1 18957:1 18980:1 18985:1 18989:3 19007:2 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:4 19132:1 19140:3 19142:1 19158:2 19163:9 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19385:1 19392:1 19398:2 19404:2 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:8 19473:1 19479:2 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:9 19583:2 19587:2 19596:1 19602:1 19612:1 19642:1 19646:1 19661:1 19663:22 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19806:1 19810:1 19813:1 19832:1 19844:2 19846:2 19862:1 19898:1 19919:1 19927:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:2 20006:1 20017:3 20028:1 20036:5 20061:2 20074:1 20090:3 20103:1 20153:10 20157:1 20176:1 20186:11 20211:2 20220:1 20223:1 20224:1 20225:2 20233:1 20264:2 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:7 20397:1 20407:2 20462:4 20464:1 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:12 20558:1 20592:1 20614:1 20633:8 20639:1 20646:2 20666:1 20681:1 20685:1 20719:1 20729:1 20740:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:1 20785:1 20786:1 20788:1 20806:1 20835:3 20841:1 20870:8 20883:1 20902:1 20931:1 20935:1 20943:1 20964:2 20973:2 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:2 21053:1 21061:4 21077:2 21079:1 21082:1 21094:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:15 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:2 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21430:1 21431:1 21439:1 21440:1 21446:2 21454:5 21464:1 21476:1 21512:1 21527:2 21549:7 21552:11 21569:1 21570:5 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:2 21642:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:7 21715:1 21757:1 21760:1 21762:4 21772:1 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:2 21860:2 21871:1 21876:1 21880:4 21884:1 21907:6 21942:2 21960:1 21976:1 21980:1 21994:1 22007:1 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22130:3 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:4 22229:1 22230:1 22233:2 22237:2 22262:3 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22414:1 22417:2 22428:1 22440:4 22452:1 22453:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:8 22699:1 22720:1 22722:1 22724:1 22755:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:4 22868:1 22871:1 22939:22 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23122:1 23140:1 23148:1 23172:1 23179:1 23180:1 23184:1 23185:3 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23248:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:6 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:2 23505:1 23513:1 23516:1 23517:1 23518:1 23524:1 23535:1 23537:2 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23571:1 23583:2 23597:3 23620:1 23634:3 23653:1 23659:2
18 1:1 13:1 17:1 29:1 32:1 34:1 38:1 48:2 55:1 57:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 99:1 126:1 133:1 134:3 144:1 148:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 404:1 412:2 433:1 439:1 451:1 452:1 465:4 469:1 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 572:1 588:3 612:4 617:3 625:3 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:5 801:1 802:2 808:6 811:1 813:2 815:1 826:1 837:2 844:1 848:1 870:1 877:1 887:1 890:1 902:3 931:15 934:2 945:1 965:1 966:1 969:1 980:2 1000:1 1003:1 1013:1 1025:3 1031:1 1032:4 1035:3 1058:1 1063:7 1072:4 1081:1 1106:1 1109:2 1112:1 1123:4 1124:1 1133:2 1134:1 1145:1 1148:1 1156:1 1171:1 1173:1 1176:1 1183:2 1196:7 1197:1 1206:1 1217:1 1220:1 1257:2 1267:1 1274:1 1296:3 1300:3 1310:1 1317:1 1318:1 1320:1 1327:3 1328:1 1347:1 1348:1 1349:3 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1534:2 1543:1 1545:2 1553:1 1559:1 1566:1 1578:2 1583:1 1588:2 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:1 1674:1 1682:1 1700:1 1703:1 1704:4 1739:2 1756:2 1769:1 1809:1 1829:3 1847:1 1848:1 1892:7 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:3 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2034:1 2039:1 2056:1 2062:1 2066:1 2068:1 2069:1 2072:1 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:2 2233:2 2242:1 2244:1 2284:1 2309:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:5 2421:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2516:1 2522:2 2527:2 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2575:1 2579:1 2580:3 2596:1 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2732:1 2752:1 2762:1 2779:1 2780:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:3 2843:1 2844:2 2851:2 2864:6 2868:4 2897:2 2901:1 2926:1 2938:1 2955:1 2959:10 3017:1 3033:2 3035:2 3038:1 3042:1 3044:4 3050:1 3055:1 3062:2 3087:2 3089:1 3101:1 3107:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:3 3184:2 3187:3 3190:1 3202:16 3203:1 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3296:1 3310:1 3313:1 3314:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:3 3375:2 3381:3 3383:2 3387:1 3392:15 3396:6 3410:1 3418:6 3427:2 3431:1 3439:2 3444:4 3448:1 3474:3 3477:1 3484:1 3486:6 3488:1 3490:1 3495:1 3498:6 3500:1 3501:1 3502:1 3505:2 3506:1 3507:4 3509:1 3514:4 3521:4 3524:2 3527:1 3547:2 3548:1 3549:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:3 3590:4 3597:2 3600:1 3603:2 3606:1 3607:3 3609:1 3613:3 3624:23 3635:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3795:1 3803:1 3805:1 3809:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:4 3897:1 3901:3 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 3991:1 3999:1 4008:1 4024:1 4031:2 4034:1 4055:5 4065:1 4079:2 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:2 4183:2 4191:5 4198:1 4200:1 4210:2 4215:3 4229:1 4230:1 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:3 4315:1 4321:4 4325:1 4330:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:3 4388:1 4393:4 4398:1 4400:1 4408:1 4413:2 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4551:1 4563:1 4573:1 4578:1 4598:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:2 4742:1 4751:20 4761:1 4763:2 4764:1 4765:1 4774:2 4785:3 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:3 4861:2 4865:2 4872:1 4895:5 4899:1 4907:1 4924:3 4930:1 4939:1 4950:1 4964:6 4969:1 4970:7 4978:5 4983:1 4984:1 4985:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5134:1 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5213:1 5230:4 5241:1 5253:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:7 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5410:1 5411:1 5427:1 5448:1 5450:3 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:3 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:23 5673:4 5687:1 5721:1 5726:1 5741:1 5750:1 5758:1 5760:3 5767:2 5768:1 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:2 5886:2 5911:1 5913:2 5916:1 5917:3 5949:2 5959:5 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:2 6078:1 6081:1 6082:7 6083:5 6086:1 6128:1 6131:1 6141:2 6143:2 6153:1 6174:4 6175:1 6182:1 6187:1 6191:2 6201:4 6231:1 6234:1 6240:1 6249:1 6254:1 6256:1 6261:23 6262:3 6263:1 6277:1 6278:1 6283:1 6305:1 6314:2 6324:1 6333:1 6338:1 6342:1 6354:1 6364:2 6371:1 6372:1 6373:3578 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:2 6467:3 6490:1 6498:2 6509:1 6518:1 6521:1 6537:1 6544:1 6554:1 6560:1 6571:3 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:2 6807:2 6813:1 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:4 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7057:1 7096:2 7117:1 7123:1 7138:1 7151:1 7156:1 7159:1 7187:2 7188:1 7189:3 7199:2 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:7 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:2 7469:1 7473:1 7491:1 7496:1 7510:1 7511:1 7514:1 7519:8 7523:4 7528:1 7551:1 7557:1 7558:3 7560:1 7575:1 7585:1 7588:2 7594:3 7612:1 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:16 7713:1 7717:2 7718:1 7723:1 7724:2 7733:2 7735:1 7739:7 7741:1 7745:3 7778:1 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7940:1 7943:1 7951:1 7961:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:21 8044:1 8054:4 8055:1 8067:2 8076:1 8078:1 8085:4 8101:1 8102:2 8104:1 8111:2 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:3 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8319:3 8328:1 8337:1 8345:2 8363:5 8364:2 8369:1 8371:3 8373:1 8399:2 8407:1 8421:1 8428:2 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8571:1 8575:9 8579:1 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:2 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:2 8913:1 8915:1 8920:2 8923:1 8928:1 8945:1 8947:2 8954:1 8972:1 8985:11 8986:1 8990:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9117:1 9139:2 9150:1 9166:1 9180:2 9181:1 9186:3 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9414:1 9423:1 9437:4 9439:2 9443:2 9445:2 9459:1 9468:3 9469:1 9472:1 9477:1 9484:7 9487:1 9495:1 9499:1 9530:1 9540:2 9550:1 9562:2 9583:2 9586:1 9601:1 9604:1 9611:1 9624:2 9645:4 9656:1 9658:9 9674:2 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:7 9882:1 9885:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:7 9986:2 9987:1 9988:2 9990:1 9994:7 9998:11 9999:1 10006:1 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:4 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:4 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10225:1 10230:1 10246:1 10248:2 10252:1 10253:2 10259:1 10273:1 10275:2 10286:1 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:3 10437:2 10449:2 10454:3 10469:1 10471:1 10489:9 10494:1 10496:1 10504:4 10512:1 10513:1 10517:1 10562:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10664:1 10679:1 10683:1 10698:9 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10753:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:11 10810:1 10824:1 10825:2 10832:1 10845:1 10856:1 10862:1 10864:2 10868:1 10871:1 10885:1 10896:1 10910:1 10920:1 10923:1 10935:2 10944:1 10954:1 10980:1 10991:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:3 11045:2 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11159:2 11160:1 11166:4 11167:2 11169:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11426:1 11436:1 11458:1 11507:6 11509:1 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:7 11630:1 11637:1 11640:1 11642:1 11648:1 11663:1 11678:2 11689:1 11729:1 11736:1 11740:3 11744:9 11780:1 11795:1 11796:1 11800:1 11801:1 11806:1 11812:1 11814:5 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:3 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:16 12037:3 12041:1 12047:1 12055:1 12058:2 12060:1 12071:2 12072:1 12084:1 12087:1 12092:1 12094:1 12103:4 12111:3 12118:1 12125:1 12130:1 12133:1 12139:2 12184:1 12189:3 12190:2 12193:1 12211:2 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12256:1 12263:1 12266:2 12285:1 12293:1 12299:3 12307:2 12311:1 12316:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12408:1 12409:3 12417:4 12418:1 12420:3 12439:1 12441:2 12444:1 12445:2 12447:4 12452:2 12456:5 12468:1 12480:1 12481:1 12488:4 12491:2 12500:6 12502:2 12504:2 12506:1 12508:1 12514:1 12518:1 12519:1 12531:24 12549:1 12553:1 12566:1 12568:21 12569:1 12576:1 12580:1 12583:1 12586:3 12601:1 12603:1 12610:1 12631:1 12641:1 12649:1 12651:1 12688:1 12690:2 12711:1 12733:1 12734:1 12737:4 12745:5 12750:1 12752:1 12753:1 12760:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:2 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13148:1 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13196:1 13198:1 13212:1 13216:2 13222:1 13251:14 13286:3 13300:1 13308:1 13316:1 13323:16 13329:7 13332:1 13334:2 13335:1 13337:2 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13433:2 13448:1 13449:1 13464:1 13466:1 13474:13 13485:1 13499:1 13522:6 13536:1 13549:6 13557:1 13562:1 13583:1 13587:1 13592:1 13598:3 13608:1 13611:4 13629:1 13656:1 13663:1 13666:16 13682:3 13683:1 13689:1 13690:1 13701:1 13703:9 13713:2 13717:1 13718:1 13728:1 13745:1 13758:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:1 13812:3 13830:1 13831:1 13840:1 13846:2 13847:1 13853:1 13855:2 13860:1 13865:2 13869:8 13873:1 13876:1 13877:2 13879:1 13882:1 13890:1 13893:1 13898:1 13902:2 13903:3 13913:1 13931:1 13960:1 13961:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:5 14020:1 14028:3 14042:1 14055:1 14056:1 14072:1 14091:2 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:3 14256:1 14273:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:3 14401:1 14410:7 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14559:1 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14674:1 14679:2 14691:1 14706:2 14708:1 14738:1 14740:2 14748:1 14749:1 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:1 14941:1 14951:3 14962:1 14964:1 14967:1 14982:1 15023:1 15031:1 15032:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:4 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:3 15176:1 15188:1 15192:3 15195:2 15203:1 15215:1 15216:1 15230:2 15235:1 15237:2 15266:2 15280:1 15282:5 15295:1 15311:1 15313:1 15322:3 15326:1 15328:1 15329:3 15333:1 15335:1 15337:6 15341:32 15343:1 15344:1 15345:1 15346:1 15349:4 15353:1 15359:2 15361:1 15366:2 15372:1 15376:1 15384:5 15389:5 15396:1 15401:1 15404:1 15418:4 15430:3 15438:4 15470:1 15500:1 15504:3 15513:1 15514:3 15534:1 15544:1 15553:1 15554:2 15563:1 15565:1 15573:1 15580:1 15584:1 15590:1 15594:1 15595:2 15603:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:4 15878:1 15887:1 15896:1 15897:1 15913:1 15916:3 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16003:1 16004:3 16006:1 16014:1 16030:3 16034:23 16035:2 16064:1 16085:1 16102:2 16115:1 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:8 16185:1 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16373:1 16399:1 16409:2 16410:1 16412:2 16424:1 16425:2 16442:3 16444:1 16446:1 16452:1 16469:1 16479:1 16480:1 16515:1 16523:1 16563:1 16565:1 16570:2 16578:2 16585:1 16596:5 16608:1 16622:1 16627:1 16628:2 16631:1 16647:1 16650:2 16666:2 16686:1 16695:1 16713:3 16716:3 16720:2 16738:3 16746:2 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:16 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:5 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16933:1 16943:4 16962:2 16967:1 16975:1 16976:2 17011:1 17032:1 17054:1 17064:3 17069:2 17074:1 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17141:1 17146:9 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17196:2 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17243:1 17246:1 17252:11 17259:1 17264:1 17272:1 17276:1 17279:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:3 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17475:1 17478:2 17479:1 17489:1 17491:2 17492:1 17500:2 17520:4 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17611:1 17626:4 17632:1 17636:1 17651:9 17657:3 17662:1 17680:2 17685:1 17687:2 17688:2 17704:1 17707:1 17747:1 17756:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17821:1 17839:1 17844:3 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17879:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17963:1 17965:5 17971:1 18000:1 18015:1 18022:2 18037:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18187:1 18199:1 18215:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:2 18299:1 18304:1 18308:1 18326:1 18344:3 18360:4 18373:1 18379:2 18387:1 18392:1 18398:1 18400:2 18402:1 18410:1 18418:2 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18506:4 18508:1 18510:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18646:1 18656:1 18659:1 18666:2 18673:1 18675:3 18681:1 18687:1 18700:2 18719:3 18764:3 18765:2 18767:2 18770:1 18774:1 18784:2 18809:1 18811:1 18862:1 18899:1 18902:1 18952:1 18957:1 18971:1 18980:1 18985:1 18989:3 19007:2 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:4 19132:1 19140:3 19142:1 19158:2 19163:9 19193:2 19200:1 19245:1 19278:1 19284:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19385:1 19392:1 19398:2 19404:2 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:9 19473:1 19479:2 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:9 19583:2 19587:2 19588:1 19596:1 19602:1 19612:1 19642:1 19646:1 19661:1 19663:23 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19806:1 19810:1 19813:1 19832:1 19844:2 19846:2 19855:1 19862:1 19898:1 19919:1 19927:1 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:2 20006:1 20017:3 20028:1 20036:5 20061:2 20074:1 20090:3 20103:1 20153:10 20157:1 20174:1 20176:1 20186:11 20211:2 20220:1 20223:1 20224:1 20225:2 20233:1 20264:3 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:7 20397:1 20407:2 20433:1 20462:4 20464:1 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:12 20558:1 20592:1 20614:1 20633:8 20639:1 20646:2 20648:1 20666:1 20681:1 20685:1 20710:1 20719:1 20729:1 20740:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:2 20785:1 20786:1 20788:1 20806:1 20835:3 20841:1 20870:9 20883:1 20902:1 20931:1 20935:1 20943:1 20964:2 20973:3 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:3 21049:1 21053:1 21061:4 21077:2 21079:1 21082:1 21094:1 21097:1 21098:1 21099:2 21101:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:16 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:3 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21430:1 21431:1 21439:1 21440:1 21446:2 21454:5 21464:1 21476:1 21512:1 21527:3 21549:7 21552:11 21569:1 21570:5 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:2 21642:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:7 21715:1 21757:1 21760:1 21762:4 21772:1 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:2 21860:2 21871:1 21876:1 21880:4 21884:1 21907:7 21919:1 21942:2 21960:1 21976:1 21980:1 21994:1 22007:2 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22130:3 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:4 22229:1 22230:1 22233:2 22237:2 22262:4 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22414:1 22417:2 22428:1 22440:4 22452:2 22453:1 22473:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22671:1 22684:1 22687:9 22699:1 22720:1 22722:1 22724:1 22755:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:5 22868:1 22871:1 22939:23 22943:2 22944:1 22987:1 22993:1 23004:3 23006:1 23011:1 23021:4 23085:5 23091:1 23122:1 23127:1 23140:2 23148:1 23172:1 23179:1 23180:1 23184:1 23185:3 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23248:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:6 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:2 23505:1 23513:1 23516:1 23517:1 23518:1 23524:1 23535:1 23537:2 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23571:1 23583:2 23597:3 23620:1 23634:3 23653:1 23659:2
18 1:1 13:1 17:1 29:1 32:1 34:1 38:1 48:2 55:1 57:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 99:2 126:1 133:1 134:3 144:1 148:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 404:1 412:2 426:1 433:1 439:1 451:1 452:1 465:4 469:1 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 572:1 588:3 612:4 617:3 625:3 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 798:5 801:1 802:2 808:6 811:1 813:2 815:1 826:1 837:2 844:1 848:1 870:1 877:1 887:1 890:1 902:3 931:16 934:2 945:1 965:1 966:1 969:1 980:2 986:1 1000:1 1003:1 1013:1 1025:3 1031:1 1032:4 1035:3 1058:1 1063:7 1072:4 1081:1 1106:1 1109:2 1112:1 1123:4 1124:1 1133:2 1134:1 1145:1 1148:1 1156:1 1171:1 1173:1 1176:1 1183:2 1196:7 1197:1 1206:1 1217:1 1220:1 1257:2 1267:1 1274:1 1296:3 1300:3 1310:1 1317:2 1318:1 1320:1 1327:3 1328:1 1347:1 1348:1 1349:3 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1534:2 1543:1 1545:2 1553:1 1559:1 1566:1 1578:2 1583:1 1588:2 1590:3 1594:1 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:2 1674:1 1682:1 1683:1 1700:1 1703:1 1704:4 1739:2 1756:2 1769:1 1809:1 1829:3 1847:1 1848:1 1892:7 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:4 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2034:2 2039:1 2056:1 2062:1 2066:1 2068:2 2069:1 2072:2 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:2 2233:2 2242:1 2244:1 2284:1 2309:1 2320:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2395:2 2414:3 2415:1 2417:5 2421:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2516:1 2522:2 2527:3 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2575:1 2579:1 2580:3 2596:1 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2732:1 2752:1 2762:1 2779:1 2780:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:3 2843:1 2844:2 2851:2 2863:1 2864:6 2868:4 2897:2 2901:1 2926:1 2938:1 2955:1 2959:10 3017:1 3033:2 3035:2 3038:1 3042:1 3044:4 3050:1 3055:1 3062:2 3087:2 3089:1 3101:1 3107:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:3 3184:2 3187:3 3190:1 3202:16 3203:2 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3296:1 3310:1 3313:1 3314:1 3325:1 3329:1 3355:2 3364:1 3365:1 3370:1 3374:3 3375:2 3381:3 3383:2 3387:1 3392:16 3396:6 3410:1 3418:6 3427:2 3431:1 3439:2 3444:4 3448:1 3474:3 3477:1 3484:1 3486:6 3488:1 3490:1 3495:1 3498:7 3500:1 3501:1 3502:1 3505:2 3506:1 3507:4 3509:1 3514:4 3521:4 3524:2 3527:1 3547:2 3548:1 3549:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:3 3590:4 3597:2 3600:1 3603:2 3606:1 3607:3 3609:1 3613:3 3624:23 3635:1 3641:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:1 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3795:1 3803:1 3805:1 3809:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:4 3897:1 3901:3 3909:1 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 3991:1 3999:1 4008:1 4024:1 4031:2 4034:1 4055:5 4065:1 4079:2 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:2 4183:2 4191:5 4198:1 4200:1 4210:2 4215:3 4219:1 4229:1 4230:1 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:2 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:3 4315:1 4321:4 4325:1 4330:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:3 4388:1 4393:4 4398:1 4400:1 4408:1 4413:2 4420:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4551:1 4563:1 4573:1 4578:1 4598:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:3 4742:1 4751:20 4761:1 4763:2 4764:1 4765:1 4774:2 4785:3 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:3 4861:2 4865:2 4872:1 4895:5 4899:1 4907:1 4924:3 4930:1 4939:1 4950:2 4964:6 4969:1 4970:7 4978:5 4983:1 4984:1 4985:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5134:1 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5213:1 5217:1 5230:4 5241:1 5253:1 5301:1 5310:1 5317:3 5318:1 5323:2 5347:1 5350:1 5364:1 5376:7 5381:1 5383:1 5384:1 5394:1 5396:3 5405:1 5410:1 5411:1 5427:1 5448:1 5450:3 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:1 5499:6 5506:4 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:23 5673:4 5687:1 5721:1 5726:1 5741:1 5750:1 5758:1 5760:3 5767:2 5768:1 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:2 5886:2 5911:1 5913:2 5916:1 5917:3 5949:2 5959:5 5962:1 5982:1 5999:1 6007:1 6008:3 6021:2 6045:2 6056:1 6065:1 6069:2 6078:1 6081:1 6082:7 6083:5 6086:1 6128:1 6131:1 6141:2 6143:2 6153:1 6174:4 6175:1 6182:1 6187:1 6191:2 6201:5 6231:1 6234:1 6240:1 6243:1 6249:1 6254:1 6256:1 6261:23 6262:3 6263:1 6277:1 6278:1 6283:1 6305:1 6314:2 6324:1 6333:1 6338:1 6342:1 6354:1 6364:2 6371:1 6372:1 6373:3641 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:2 6467:3 6490:1 6498:2 6509:1 6518:1 6521:1 6537:1 6544:1 6554:1 6560:1 6571:3 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:2 6807:2 6813:1 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:4 6941:1 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7057:1 7096:2 7117:1 7123:1 7138:1 7151:1 7156:1 7159:1 7187:2 7188:1 7189:3 7199:3 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:7 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:2 7469:1 7473:1 7491:1 7496:1 7510:1 7511:1 7514:1 7519:8 7523:4 7528:1 7551:1 7557:1 7558:3 7560:1 7575:1 7585:1 7588:2 7594:3 7612:1 7614:1 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7674:1 7679:1 7690:1 7712:17 7713:1 7717:2 7718:1 7723:1 7724:2 7733:3 7735:1 7739:7 7741:1 7745:3 7778:1 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7938:1 7940:1 7943:1 7951:1 7961:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:22 8044:1 8054:4 8055:1 8067:2 8076:1 8078:1 8080:1 8085:4 8101:1 8102:2 8104:1 8111:2 8118:1 8134:1 8142:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:4 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8297:1 8319:3 8328:1 8337:1 8345:2 8363:5 8364:2 8369:1 8371:3 8373:1 8387:1 8399:2 8407:1 8421:1 8428:2 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8571:1 8575:9 8579:1 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8692:1 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:2 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:2 8913:1 8915:1 8920:2 8923:1 8928:1 8945:1 8947:3 8954:1 8972:1 8985:11 8986:1 8990:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9117:1 9139:2 9150:1 9166:1 9180:2 9181:1 9186:4 9194:1 9217:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:2 9351:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9400:1 9414:1 9423:1 9437:4 9439:2 9443:3 9445:2 9459:1 9468:3 9469:1 9472:1 9477:1 9484:7 9487:1 9495:1 9499:1 9530:1 9540:2 9550:1 9562:2 9583:2 9586:1 9589:1 9601:1 9604:1 9611:1 9624:2 9645:4 9656:1 9658:9 9674:2 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:7 9882:1 9885:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:7 9986:2 9987:1 9988:2 9990:1 9994:7 9998:11 9999:1 10006:1 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:4 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:5 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10225:1 10230:1 10246:1 10248:2 10252:1 10253:2 10259:1 10273:1 10275:2 10286:1 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:3 10437:2 10449:2 10454:3 10469:1 10471:1 10489:9 10494:1 10496:1 10504:4 10512:1 10513:1 10517:1 10562:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10664:1 10679:1 10683:1 10698:9 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10753:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:12 10810:1 10824:1 10825:2 10832:1 10845:1 10856:1 10862:1 10864:3 10868:1 10871:1 10885:1 10896:1 10910:1 10920:1 10923:1 10935:2 10944:1 10954:1 10980:1 10991:1 10994:2 10999:3 11013:2 11028:1 11034:1 11037:2 11044:3 11045:2 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11159:2 11160:1 11166:4 11167:2 11169:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11397:1 11426:1 11436:1 11458:1 11507:6 11509:1 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:7 11630:1 11637:1 11640:1 11642:1 11648:1 11663:1 11678:2 11689:1 11729:1 11736:2 11740:3 11744:9 11780:1 11795:1 11796:1 11800:1 11801:1 11806:1 11812:1 11814:5 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:4 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:16 12037:3 12041:1 12047:1 12055:1 12058:2 12060:2 12071:2 12072:1 12084:1 12087:1 12092:1 12094:1 12103:4 12111:3 12118:1 12125:1 12130:1 12133:1 12139:2 12184:1 12189:3 12190:2 12193:1 12211:2 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12256:1 12263:1 12266:2 12285:1 12293:1 12299:3 12307:2 12311:1 12314:1 12316:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12407:1 12408:1 12409:3 12417:4 12418:1 12420:3 12439:1 12441:2 12444:1 12445:2 12447:4 12452:2 12456:5 12468:1 12480:1 12481:1 12488:4 12491:2 12500:6 12502:2 12504:2 12506:1 12508:1 12514:1 12518:1 12519:1 12531:24 12549:1 12553:1 12566:1 12568:21 12569:1 12576:1 12580:1 12581:1 12583:1 12586:3 12601:1 12603:1 12610:1 12631:1 12641:1 12649:1 12651:1 12688:1 12690:2 12711:2 12733:1 12734:1 12737:4 12745:5 12750:1 12752:1 12753:1 12760:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:2 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13148:1 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13196:1 13198:1 13212:1 13216:2 13222:1 13251:16 13286:3 13300:1 13308:1 13316:1 13323:16 13329:7 13332:1 13334:2 13335:1 13337:2 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13433:2 13448:1 13449:1 13464:1 13466:1 13474:13 13476:1 13485:1 13499:1 13522:6 13536:1 13549:6 13557:1 13562:1 13583:1 13587:1 13592:1 13598:3 13608:1 13611:4 13629:1 13656:1 13663:1 13666:16 13682:3 13683:1 13689:1 13690:1 13701:1 13703:9 13713:3 13717:1 13718:1 13728:1 13745:1 13758:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:1 13812:3 13830:1 13831:1 13840:1 13846:2 13847:2 13853:1 13855:2 13860:1 13865:2 13869:8 13873:1 13876:1 13877:2 13879:1 13882:1 13890:1 13893:1 13898:1 13902:2 13903:4 13913:1 13931:1 13960:1 13961:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:5 14020:1 14028:3 14042:1 14055:1 14056:1 14072:1 14091:2 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:3 14256:1 14273:1 14292:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:3 14401:1 14410:7 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14559:1 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14674:1 14679:2 14691:1 14706:2 14708:1 14738:1 14740:2 14748:1 14749:1 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:1 14941:1 14951:3 14955:1 14962:1 14964:1 14967:1 14982:1 15023:1 15031:1 15032:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:4 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:3 15176:1 15188:1 15192:3 15195:2 15203:1 15215:1 15216:1 15230:2 15235:1 15237:2 15266:2 15280:1 15282:5 15295:1 15308:1 15311:1 15313:1 15322:3 15326:1 15328:1 15329:3 15333:1 15335:1 15337:6 15341:32 15343:1 15344:1 15345:1 15346:1 15349:4 15353:1 15359:2 15361:1 15366:2 15372:1 15376:1 15384:5 15389:5 15396:1 15401:1 15404:1 15418:4 15430:3 15438:4 15470:1 15500:1 15503:1 15504:3 15513:1 15514:3 15534:1 15544:1 15553:1 15554:2 15563:1 15565:1 15573:1 15580:1 15584:1 15590:1 15594:1 15595:2 15603:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:2 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:4 15878:1 15887:1 15896:1 15897:1 15913:1 15916:3 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16003:1 16004:3 16006:1 16014:1 16030:3 16034:23 16035:2 16064:1 16085:1 16102:2 16115:1 16116:1 16126:1 16131:1 16146:2 16148:4 16162:1 16180:8 16185:1 16186:1 16234:3 16248:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16373:1 16378:1 16399:1 16409:2 16410:1 16412:2 16424:1 16425:2 16442:3 16444:1 16446:1 16452:1 16469:1 16479:1 16480:1 16515:1 16523:1 16551:1 16563:1 16565:1 16570:2 16578:2 16585:1 16596:5 16608:1 16622:1 16627:1 16628:2 16631:1 16647:1 16650:2 16666:2 16686:1 16695:1 16713:3 16716:3 16720:3 16738:3 16746:2 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:16 16798:1 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:5 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16933:1 16943:4 16962:2 16967:1 16975:1 16976:2 17011:1 17032:1 17054:1 17064:3 17069:2 17074:2 17083:1 17091:3 17111:1 17117:1 17134:3 17137:1 17141:1 17146:9 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17196:2 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17243:1 17246:1 17252:11 17259:1 17264:1 17272:1 17276:1 17279:1 17291:1 17297:1 17318:2 17357:3 17381:4 17385:3 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17475:1 17478:2 17479:1 17489:1 17491:2 17492:1 17500:2 17520:5 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17611:1 17626:4 17632:1 17636:1 17651:10 17657:3 17662:1 17680:2 17685:1 17687:2 17688:2 17704:1 17707:1 17747:1 17756:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17821:1 17839:1 17844:3 17856:1 17857:1 17858:2 17861:2 17867:1 17873:1 17879:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17963:1 17965:5 17971:1 18000:1 18015:1 18022:2 18037:1 18045:7 18074:1 18109:1 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18187:1 18199:1 18215:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:2 18299:1 18304:1 18308:1 18326:1 18340:1 18344:3 18360:4 18373:1 18379:2 18387:1 18392:1 18398:1 18400:2 18402:1 18410:1 18418:2 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18506:4 18508:1 18510:1 18514:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18646:1 18656:1 18659:1 18666:2 18673:1 18675:3 18681:1 18687:1 18700:2 18719:3 18764:3 18765:2 18767:2 18770:1 18774:1 18784:2 18809:1 18811:1 18862:1 18899:1 18902:1 18952:1 18957:1 18971:1 18980:1 18985:1 18989:3 19007:2 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:4 19132:1 19140:3 19142:1 19158:2 19163:9 19193:2 19200:1 19245:1 19278:1 19280:1 19284:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19385:1 19392:1 19398:2 19404:3 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:9 19473:1 19479:2 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:9 19583:2 19587:2 19588:1 19596:1 19602:1 19612:1 19642:1 19646:1 19661:1 19663:23 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19806:1 19810:1 19813:1 19832:1 19844:2 19846:2 19855:1 19862:1 19898:1 19919:1 19927:2 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:2 20006:1 20017:3 20028:1 20036:5 20061:2 20074:1 20090:3 20103:1 20153:11 20157:1 20174:1 20176:1 20186:11 20211:2 20220:1 20223:1 20224:1 20225:2 20233:1 20264:3 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:7 20397:1 20407:2 20433:1 20462:4 20464:1 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:12 20558:1 20592:1 20614:1 20633:8 20639:1 20646:2 20648:1 20666:1 20681:1 20685:1 20710:1 20719:1 20729:1 20740:1 20744:1 20756:1 20768:1 20770:1 20781:1 20784:2 20785:1 20786:1 20788:1 20806:1 20835:3 20841:1 20870:9 20883:1 20902:1 20931:1 20935:1 20943:1 20964:2 20973:3 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:3 21049:1 21053:1 21061:4 21077:2 21079:1 21082:1 21094:1 21097:1 21098:1 21099:2 21101:1 21110:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:16 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:3 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21430:1 21431:1 21439:1 21440:1 21446:2 21454:5 21464:1 21476:1 21512:1 21527:3 21549:7 21552:11 21569:1 21570:5 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:2 21642:1 21648:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:7 21715:1 21757:1 21760:1 21762:4 21772:1 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:2 21860:2 21871:1 21876:1 21880:4 21884:1 21907:7 21919:1 21942:2 21960:1 21976:1 21980:1 21994:1 22007:2 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22130:3 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:4 22229:1 22230:1 22233:2 22237:2 22262:4 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:1 22414:1 22417:2 22428:1 22440:4 22452:2 22453:1 22473:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22654:1 22656:1 22671:1 22684:1 22687:9 22699:1 22720:1 22722:1 22724:1 22755:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:5 22868:1 22871:1 22939:23 22943:2 22944:1 22987:1 22993:1 23004:4 23006:1 23011:1 23021:4 23085:5 23091:1 23122:1 23127:1 23140:2 23148:1 23172:1 23179:1 23180:1 23184:1 23185:3 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23248:1 23273:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:7 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:2 23505:1 23513:1 23516:1 23517:1 23518:1 23524:1 23535:1 23537:2 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23571:1 23583:2 23597:3 23620:1 23634:3 23653:1 23659:2
18 1:1 13:1 17:1 29:1 32:1 34:1 38:1 48:2 55:1 57:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 99:2 126:1 133:1 134:3 144:1 148:1 158:1 168:1 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 404:1 412:2 426:1 433:1 439:1 451:1 452:1 465:4 469:1 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 572:1 588:3 612:4 617:3 625:3 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 785:1 793:1 798:5 801:1 802:2 808:6 811:1 813:2 815:1 826:1 837:2 844:1 848:1 870:1 877:1 887:1 890:1 902:3 931:17 934:2 945:1 965:1 966:1 969:1 980:2 985:1 986:1 1000:1 1003:1 1013:1 1025:3 1031:1 1032:4 1035:3 1058:1 1063:7 1072:4 1081:1 1106:1 1109:2 1112:1 1123:4 1124:1 1133:2 1134:1 1145:1 1148:1 1156:1 1171:1 1173:1 1176:1 1183:2 1196:7 1197:1 1206:1 1217:1 1220:1 1257:3 1267:1 1274:1 1296:3 1300:3 1310:1 1317:2 1318:1 1320:1 1327:3 1328:1 1347:1 1348:1 1349:3 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1534:2 1543:1 1545:2 1553:1 1559:1 1566:1 1578:2 1583:1 1588:2 1590:3 1594:2 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:2 1674:1 1682:1 1683:1 1695:1 1700:1 1703:1 1704:4 1739:2 1756:2 1769:1 1809:1 1829:3 1847:1 1848:1 1892:8 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:4 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2034:2 2039:1 2056:1 2062:1 2066:1 2068:2 2069:1 2072:2 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:2 2233:2 2242:1 2244:1 2284:1 2309:1 2320:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2375:1 2395:2 2414:3 2415:1 2417:5 2421:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2496:1 2516:1 2522:2 2527:3 2537:1 2538:1 2554:2 2560:1 2564:1 2572:4 2575:1 2579:1 2580:3 2596:1 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2732:2 2752:1 2762:1 2779:1 2780:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:3 2843:1 2844:3 2851:2 2863:1 2864:6 2868:4 2874:1 2897:2 2901:1 2926:1 2938:1 2955:1 2959:10 3017:1 3033:2 3035:2 3038:1 3041:1 3042:1 3044:4 3050:1 3055:1 3062:2 3087:2 3089:1 3101:1 3107:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:3 3184:2 3187:3 3190:1 3202:16 3203:2 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3290:1 3292:1 3294:2 3296:1 3310:1 3313:2 3314:1 3325:1 3329:1 3355:2 3358:1 3364:1 3365:1 3370:1 3374:3 3375:2 3381:3 3383:2 3387:1 3392:17 3396:6 3410:1 3418:6 3427:2 3431:2 3436:1 3439:2 3444:4 3448:1 3474:3 3477:1 3484:1 3486:6 3488:1 3490:1 3495:1 3498:7 3500:1 3501:1 3502:1 3505:2 3506:1 3507:5 3509:1 3514:4 3521:4 3524:2 3527:1 3547:2 3548:1 3549:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:3 3590:4 3597:2 3600:1 3603:2 3606:1 3607:3 3609:1 3613:3 3624:24 3635:1 3641:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:2 3727:2 3734:4 3736:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3795:1 3803:1 3805:1 3809:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:4 3897:1 3901:3 3909:1 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 3991:1 3999:1 4008:1 4024:1 4031:2 4034:1 4055:6 4065:1 4079:2 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:3 4183:2 4191:5 4198:1 4200:1 4210:2 4215:3 4219:1 4229:1 4230:2 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:3 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:3 4315:1 4321:4 4325:1 4330:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:3 4388:1 4393:4 4398:1 4400:1 4408:1 4413:2 4420:1 4440:1 4447:1 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4551:2 4563:1 4573:1 4578:1 4598:1 4601:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:3 4742:1 4751:20 4761:2 4763:3 4764:1 4765:1 4774:2 4785:3 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:3 4861:2 4865:3 4872:1 4895:5 4899:1 4907:1 4924:3 4930:1 4939:1 4950:2 4964:6 4969:1 4970:7 4978:5 4983:1 4984:1 4985:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5134:1 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5213:1 5217:1 5230:4 5241:1 5253:1 5301:1 5310:1 5317:3 5318:2 5323:2 5347:1 5350:1 5364:1 5376:7 5381:1 5383:1 5384:1 5394:1 5396:3 5405:2 5410:1 5411:1 5427:1 5448:1 5450:3 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:2 5499:6 5506:4 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:24 5673:4 5687:1 5721:1 5726:1 5741:1 5750:1 5758:1 5760:3 5767:2 5768:1 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:2 5886:2 5911:1 5913:2 5916:1 5917:3 5949:2 5959:5 5962:1 5982:1 5999:1 6007:1 6008:3 6021:3 6045:2 6056:1 6065:1 6069:2 6078:1 6081:1 6082:8 6083:5 6086:1 6127:1 6128:1 6131:1 6141:2 6143:2 6153:1 6157:1 6174:4 6175:1 6182:1 6187:1 6191:2 6201:5 6231:1 6234:1 6240:1 6243:1 6249:1 6254:1 6256:1 6261:24 6262:3 6263:1 6277:1 6278:1 6283:1 6305:1 6314:2 6324:1 6333:1 6338:1 6342:1 6354:1 6364:2 6371:1 6372:1 6373:3665 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:2 6467:3 6490:1 6498:2 6509:1 6518:1 6521:1 6537:1 6544:1 6554:1 6560:1 6570:1 6571:3 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:2 6807:2 6813:1 6823:1 6856:2 6859:1 6888:1 6893:1 6900:3 6911:4 6941:1 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7057:1 7096:2 7117:1 7123:1 7138:1 7151:1 7156:1 7159:1 7187:2 7188:1 7189:3 7199:3 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:8 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:2 7469:1 7473:1 7491:1 7496:1 7510:1 7511:1 7514:1 7519:8 7523:4 7528:1 7551:1 7557:1 7558:3 7560:1 7575:1 7585:1 7588:2 7593:1 7594:3 7612:1 7614:1 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7671:1 7674:1 7679:1 7690:1 7712:17 7713:1 7717:2 7718:1 7723:1 7724:2 7733:3 7735:1 7739:7 7741:1 7745:3 7778:1 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7938:1 7940:1 7943:1 7951:1 7961:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:23 8044:1 8054:5 8055:1 8067:2 8076:1 8078:1 8080:1 8085:4 8101:1 8102:2 8104:1 8111:2 8118:1 8134:1 8142:1 8143:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:4 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:5 8297:1 8319:3 8328:1 8337:1 8345:2 8363:5 8364:2 8369:1 8371:3 8373:1 8387:1 8399:2 8407:1 8412:1 8421:1 8428:2 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8555:1 8562:1 8565:4 8571:1 8575:9 8579:1 8582:1 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8674:1 8692:2 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:3 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:3 8913:1 8915:1 8920:2 8923:1 8928:1 8945:1 8947:3 8954:1 8972:1 8985:11 8986:1 8990:1 8992:1 9013:1 9018:2 9026:1 9064:9 9107:1 9117:1 9139:2 9150:1 9166:1 9180:2 9181:1 9186:4 9194:1 9217:1 9223:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:3 9351:2 9354:1 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9400:1 9414:1 9423:1 9437:4 9439:2 9443:3 9445:2 9459:1 9468:3 9469:1 9472:1 9477:1 9484:7 9487:1 9495:1 9499:1 9530:1 9540:2 9544:1 9550:2 9562:2 9583:2 9586:1 9589:1 9601:1 9604:1 9611:1 9624:2 9645:4 9656:1 9658:9 9674:2 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:7 9882:1 9885:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:7 9986:2 9987:1 9988:2 9990:1 9994:7 9998:11 9999:2 10006:1 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:4 10121:1 10125:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:5 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10225:1 10230:1 10246:1 10248:2 10252:1 10253:2 10259:1 10273:1 10275:2 10286:1 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:3 10437:2 10447:1 10449:2 10454:3 10469:1 10471:1 10489:9 10494:1 10496:1 10504:4 10512:1 10513:1 10517:1 10562:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10664:1 10679:1 10683:1 10698:9 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10753:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:12 10810:1 10824:1 10825:2 10832:1 10845:1 10856:1 10862:1 10864:3 10868:1 10871:1 10885:1 10891:1 10896:1 10910:1 10920:1 10923:1 10935:2 10944:1 10954:1 10980:1 10991:1 10994:2 10999:3 11013:2 11028:1 11034:2 11037:2 11044:3 11045:2 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11159:2 11160:1 11166:4 11167:2 11169:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11397:1 11426:1 11436:1 11458:1 11507:6 11509:1 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:7 11630:1 11633:1 11637:1 11640:1 11642:1 11648:1 11663:2 11671:1 11678:2 11689:1 11729:1 11736:2 11740:3 11744:9 11771:1 11780:1 11795:1 11796:1 11800:1 11801:1 11806:1 11812:1 11814:5 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:4 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:16 12037:3 12041:1 12047:1 12055:1 12058:2 12060:2 12071:2 12072:1 12084:1 12087:1 12092:1 12094:1 12103:4 12111:3 12118:1 12125:1 12130:1 12133:1 12139:2 12184:1 12189:3 12190:2 12193:1 12211:2 12214:1 12218:1 12220:1 12225:1 12232:2 12234:2 12245:1 12246:2 12250:1 12251:3 12256:1 12263:1 12266:2 12285:1 12293:1 12299:3 12307:2 12311:1 12314:1 12316:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12407:1 12408:1 12409:3 12417:4 12418:1 12420:3 12439:1 12441:2 12444:1 12445:2 12447:4 12452:2 12456:5 12468:1 12480:1 12481:1 12488:4 12491:2 12500:6 12502:2 12504:2 12506:1 12508:2 12514:1 12518:1 12519:1 12531:24 12549:1 12553:1 12566:1 12568:21 12569:1 12576:1 12580:1 12581:1 12583:1 12586:3 12601:1 12603:1 12610:1 12631:1 12641:1 12649:1 12651:1 12688:1 12690:2 12711:2 12733:1 12734:1 12737:4 12745:6 12750:1 12752:1 12753:1 12760:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:2 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13148:1 13153:1 13163:1 13164:2 13165:1 13168:1 13180:1 13196:1 13198:1 13212:1 13216:2 13222:1 13251:16 13286:3 13300:1 13308:1 13316:1 13323:16 13329:8 13332:1 13334:2 13335:1 13337:2 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13433:2 13448:1 13449:1 13464:1 13466:1 13474:14 13476:1 13485:1 13499:1 13515:1 13522:6 13536:1 13544:1 13549:6 13557:1 13562:1 13583:1 13587:1 13592:1 13598:3 13608:1 13611:4 13629:1 13649:1 13656:1 13663:1 13666:16 13682:3 13683:1 13689:1 13690:1 13701:1 13703:9 13713:3 13717:1 13718:1 13728:1 13745:1 13758:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:1 13812:3 13830:1 13831:1 13840:1 13846:2 13847:2 13853:1 13855:2 13860:1 13865:2 13869:8 13873:1 13876:1 13877:2 13879:1 13882:1 13890:1 13893:1 13898:1 13902:2 13903:4 13913:1 13931:1 13960:1 13961:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:5 14020:1 14028:3 14042:1 14055:1 14056:1 14072:1 14091:2 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14188:1 14195:1 14240:1 14241:1 14246:1 14255:3 14256:1 14273:1 14292:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:3 14401:1 14410:8 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14559:1 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14674:1 14679:2 14691:1 14706:2 14708:1 14738:1 14740:2 14748:1 14749:1 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:2 14941:1 14951:3 14955:1 14962:1 14964:1 14967:1 14982:1 15023:1 15031:1 15032:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15094:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:4 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:3 15176:1 15188:1 15192:3 15195:2 15203:1 15215:1 15216:1 15230:2 15235:1 15237:2 15266:2 15280:1 15282:5 15295:1 15308:1 15311:1 15313:1 15322:3 15326:1 15328:1 15329:3 15333:1 15335:1 15337:7 15341:33 15343:1 15344:1 15345:1 15346:1 15349:4 15353:1 15359:2 15361:1 15366:2 15372:1 15376:1 15384:5 15389:6 15396:1 15401:1 15404:1 15418:5 15430:3 15438:4 15440:1 15465:1 15470:1 15500:1 15503:1 15504:3 15513:1 15514:3 15534:1 15544:1 15553:1 15554:2 15563:1 15565:1 15573:1 15580:1 15584:1 15590:1 15594:1 15595:2 15603:1 15610:1 15617:1 15639:1 15683:1 15698:1 15700:3 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:4 15878:1 15887:1 15896:1 15897:1 15913:1 15916:3 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16000:1 16003:1 16004:3 16006:1 16014:1 16030:3 16034:24 16035:2 16064:1 16085:1 16102:2 16115:1 16116:1 16126:2 16131:1 16146:2 16148:4 16162:1 16180:8 16185:1 16186:1 16234:3 16248:1 16250:1 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16373:1 16378:1 16399:1 16409:2 16410:1 16412:3 16424:1 16425:2 16442:3 16444:2 16446:1 16452:1 16469:1 16479:1 16480:1 16515:1 16523:1 16551:1 16563:1 16565:1 16570:2 16578:2 16585:1 16596:6 16608:1 16622:1 16627:1 16628:2 16631:1 16647:1 16650:2 16666:2 16686:1 16695:1 16713:3 16716:3 16720:3 16738:3 16746:2 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:16 16798:2 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:6 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16933:1 16943:4 16962:2 16967:1 16975:1 16976:2 17011:1 17032:1 17054:1 17064:3 17069:2 17074:2 17083:1 17091:3 17098:1 17111:1 17117:1 17134:3 17137:1 17141:1 17146:9 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17196:2 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17243:1 17246:1 17252:11 17259:1 17264:1 17272:1 17276:1 17279:1 17291:1 17297:1 17318:2 17357:3 17381:5 17385:3 17387:1 17407:1 17412:3 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17475:1 17478:2 17479:1 17489:1 17491:2 17492:1 17500:2 17520:5 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17611:1 17626:4 17632:1 17636:1 17644:1 17651:10 17657:3 17662:1 17680:2 17685:1 17687:2 17688:2 17704:1 17707:1 17747:1 17756:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17821:1 17839:1 17844:3 17856:1 17857:1 17858:3 17861:2 17867:1 17873:1 17879:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17963:1 17965:5 17971:1 18000:1 18015:1 18022:2 18037:1 18045:7 18074:1 18109:1 18117:1 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18187:1 18199:1 18215:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:1 18273:1 18286:1 18291:1 18292:2 18297:1 18299:1 18304:1 18308:1 18326:1 18340:1 18344:3 18360:4 18373:1 18379:2 18387:1 18392:1 18398:1 18400:2 18402:2 18410:1 18418:2 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18504:1 18506:4 18508:1 18510:1 18514:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18646:1 18656:1 18659:1 18666:2 18673:1 18675:3 18681:1 18687:1 18700:2 18719:3 18720:1 18764:3 18765:2 18767:2 18770:1 18774:1 18784:2 18809:1 18811:1 18862:1 18899:1 18902:1 18950:1 18952:1 18957:1 18968:1 18971:1 18980:1 18985:1 18989:3 19007:3 19019:1 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:4 19132:1 19140:3 19142:1 19158:2 19163:9 19193:2 19200:1 19245:1 19278:1 19280:1 19284:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19385:1 19392:1 19398:2 19404:3 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:9 19473:2 19479:2 19483:1 19490:1 19491:1 19498:2 19514:8 19519:1 19533:1 19547:1 19572:9 19583:2 19587:2 19588:1 19596:1 19602:1 19612:1 19642:1 19646:1 19661:1 19663:24 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19780:2 19786:1 19795:1 19806:1 19810:1 19813:1 19832:1 19844:2 19846:2 19855:1 19862:1 19898:1 19919:1 19927:2 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:2 20006:1 20017:3 20028:1 20036:5 20061:2 20074:1 20090:3 20103:1 20153:11 20157:1 20174:1 20176:1 20186:11 20211:3 20220:1 20223:2 20224:1 20225:2 20233:1 20261:1 20264:3 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:8 20397:1 20407:2 20433:1 20440:1 20462:4 20464:2 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20513:1 20524:3 20526:1 20528:1 20529:2 20532:1 20543:12 20558:1 20592:1 20614:1 20633:8 20639:1 20646:2 20648:1 20666:1 20681:1 20685:1 20710:1 20719:1 20729:1 20740:1 20744:1 20756:1 20767:1 20768:1 20770:1 20781:1 20784:2 20785:1 20786:1 20788:1 20806:1 20835:3 20841:1 20870:9 20883:1 20902:1 20931:1 20935:1 20943:1 20964:2 20973:3 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:3 21049:1 21053:1 21061:4 21077:2 21079:1 21082:1 21094:1 21097:1 21098:1 21099:2 21101:1 21110:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:16 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:3 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21430:1 21431:1 21439:1 21440:1 21446:2 21454:5 21464:1 21476:1 21506:1 21512:1 21527:3 21549:8 21552:11 21569:1 21570:5 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:2 21642:1 21648:1 21654:1 21664:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:8 21715:1 21757:1 21760:1 21762:4 21772:1 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:2 21860:2 21871:1 21876:1 21880:4 21884:2 21907:7 21919:1 21942:2 21948:1 21960:1 21976:1 21980:2 21987:1 21994:1 22007:2 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22129:1 22130:3 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:4 22229:1 22230:1 22233:2 22237:2 22262:4 22272:1 22284:1 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:2 22414:1 22417:2 22428:1 22440:4 22452:2 22453:1 22473:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22642:1 22654:1 22656:1 22671:1 22684:1 22687:9 22699:1 22720:1 22722:1 22724:1 22755:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:6 22868:1 22871:1 22939:24 22943:2 22944:1 22980:1 22987:1 22993:1 23004:4 23006:1 23011:1 23012:1 23021:4 23079:1 23085:5 23091:1 23122:1 23127:1 23134:1 23140:2 23148:1 23172:1 23179:1 23180:1 23184:1 23185:3 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23248:1 23271:1 23273:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:7 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:2 23505:1 23513:1 23516:1 23517:1 23518:1 23524:1 23535:1 23537:2 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23571:1 23583:2 23597:3 23620:1 23634:3 23653:1 23659:2
18 1:1 13:1 17:1 29:1 32:1 34:1 38:1 48:2 55:1 57:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 99:2 126:1 133:1 134:3 144:1 148:1 158:1 168:2 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 387:1 404:1 412:2 426:2 433:1 439:1 451:1 452:1 465:4 469:1 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 572:1 588:3 612:4 617:3 625:3 632:1 640:1 641:1 648:1 657:7 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 779:1 785:1 793:2 798:5 801:1 802:2 808:6 811:1 813:2 815:1 826:1 837:2 844:1 848:1 870:1 877:1 887:1 890:1 902:3 931:17 934:2 945:1 965:1 966:1 969:1 980:2 985:1 986:1 1000:1 1003:1 1013:1 1025:3 1031:1 1032:4 1035:3 1058:1 1063:7 1072:4 1081:1 1106:1 1109:2 1112:1 1123:4 1124:1 1133:2 1134:1 1145:1 1148:1 1156:1 1171:1 1173:1 1176:1 1183:2 1196:7 1197:1 1206:1 1217:1 1220:1 1257:3 1267:1 1274:1 1296:3 1300:3 1310:1 1317:2 1318:1 1320:1 1327:3 1328:1 1347:1 1348:1 1349:4 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1534:2 1543:1 1545:2 1553:1 1559:1 1566:1 1578:2 1583:1 1588:2 1590:3 1594:2 1607:2 1616:1 1618:1 1623:1 1627:2 1631:1 1637:1 1644:2 1645:2 1656:1 1659:2 1674:1 1682:1 1683:2 1695:2 1700:1 1703:1 1704:4 1739:2 1756:2 1769:1 1809:1 1829:3 1847:1 1848:1 1892:8 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:4 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2034:2 2039:1 2056:1 2062:1 2066:2 2068:2 2069:1 2072:2 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:2 2233:2 2242:1 2244:1 2284:1 2309:1 2320:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2375:1 2395:2 2414:3 2415:1 2417:5 2421:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2496:1 2516:1 2522:2 2527:3 2537:1 2538:1 2541:1 2554:2 2560:1 2564:1 2572:4 2575:1 2579:1 2580:3 2596:1 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2732:2 2752:1 2762:1 2779:1 2780:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:3 2843:1 2844:3 2851:2 2863:1 2864:6 2868:4 2874:1 2897:2 2901:1 2926:1 2938:1 2955:1 2959:10 3017:1 3033:2 3035:2 3038:1 3041:2 3042:1 3044:4 3050:1 3055:1 3062:2 3087:2 3089:1 3101:1 3107:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:3 3184:2 3187:3 3190:1 3202:17 3203:2 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3277:1 3278:1 3290:1 3292:1 3294:2 3296:1 3310:1 3313:2 3314:1 3325:2 3329:1 3355:2 3358:1 3364:1 3365:1 3370:1 3374:3 3375:2 3381:3 3383:2 3387:1 3392:17 3396:6 3410:1 3418:6 3427:2 3431:2 3436:1 3439:2 3444:4 3448:1 3474:3 3477:1 3484:1 3486:6 3488:1 3490:1 3495:1 3498:7 3500:1 3501:1 3502:1 3505:2 3506:1 3507:5 3509:1 3514:4 3521:4 3524:2 3527:1 3547:2 3548:1 3549:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:3 3590:4 3597:2 3600:1 3603:2 3606:1 3607:3 3609:1 3613:3 3624:24 3635:1 3641:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:2 3727:2 3734:4 3736:1 3742:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3795:1 3803:1 3805:1 3809:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:4 3897:1 3901:3 3909:1 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 3991:1 3999:1 4008:1 4024:1 4031:2 4034:1 4055:6 4065:1 4079:2 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:3 4183:2 4191:5 4198:1 4200:1 4210:2 4215:3 4219:1 4229:1 4230:2 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:5 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:3 4315:1 4321:4 4325:1 4330:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:3 4388:1 4393:4 4398:1 4400:1 4403:1 4408:1 4413:2 4420:1 4440:1 4447:2 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4551:2 4563:1 4573:1 4578:1 4598:1 4601:1 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:3 4742:1 4751:21 4761:2 4763:3 4764:1 4765:1 4774:2 4785:3 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:3 4861:2 4865:5 4872:1 4895:5 4899:1 4907:1 4924:3 4930:1 4939:1 4950:2 4964:6 4969:1 4970:7 4978:5 4983:1 4984:1 4985:1 5000:1 5028:1 5031:4 5047:4 5085:1 5108:2 5134:1 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5213:1 5217:1 5230:4 5241:1 5253:1 5301:1 5310:1 5317:3 5318:2 5323:2 5347:1 5350:1 5364:1 5374:1 5376:8 5381:1 5383:1 5384:1 5394:1 5396:3 5405:2 5410:1 5411:1 5427:1 5448:1 5450:4 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:2 5499:6 5506:4 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:24 5673:4 5687:1 5721:1 5726:1 5741:1 5750:1 5758:1 5760:3 5767:2 5768:1 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:2 5886:2 5911:1 5913:3 5916:1 5917:3 5949:2 5959:5 5962:1 5969:1 5982:1 5999:1 6007:1 6008:3 6021:3 6045:2 6056:1 6065:1 6069:2 6078:1 6081:1 6082:8 6083:5 6086:1 6127:1 6128:1 6131:1 6141:2 6143:2 6153:1 6157:2 6174:5 6175:1 6182:1 6187:1 6191:2 6201:5 6231:1 6234:1 6240:1 6243:1 6249:1 6254:1 6256:1 6261:24 6262:3 6263:1 6277:1 6278:1 6283:1 6305:1 6314:2 6324:1 6333:1 6338:1 6342:1 6354:1 6364:2 6371:1 6372:1 6373:3718 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:2 6467:5 6490:1 6498:2 6509:1 6518:1 6521:1 6537:1 6544:1 6554:1 6560:1 6570:2 6571:3 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6710:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:2 6807:2 6813:1 6823:2 6856:2 6859:1 6868:1 6888:1 6893:1 6900:3 6911:4 6941:1 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7057:1 7096:2 7102:1 7117:1 7123:1 7138:1 7151:1 7156:1 7159:1 7187:2 7188:1 7189:3 7199:3 7205:1 7220:3 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:8 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:2 7469:1 7473:1 7491:1 7496:1 7510:1 7511:1 7514:1 7519:8 7523:5 7528:1 7551:1 7557:1 7558:3 7560:1 7575:1 7585:1 7588:2 7593:1 7594:3 7612:1 7614:1 7622:1 7627:2 7631:1 7634:1 7654:3 7660:1 7671:1 7674:1 7679:1 7690:1 7712:17 7713:1 7717:2 7718:1 7723:1 7724:2 7733:3 7735:1 7739:7 7741:1 7745:3 7778:1 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7938:2 7940:1 7943:1 7951:1 7961:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:23 8044:1 8054:6 8055:1 8067:2 8076:1 8078:1 8080:1 8085:4 8101:1 8102:2 8104:1 8111:2 8118:1 8134:1 8142:1 8143:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:4 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:6 8297:2 8319:3 8328:1 8337:1 8345:2 8363:5 8364:2 8369:1 8371:3 8373:1 8387:1 8399:2 8407:1 8412:1 8421:1 8428:2 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8535:1 8555:1 8562:1 8565:4 8571:1 8575:9 8579:1 8582:2 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8674:2 8692:2 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8761:1 8767:1 8779:1 8786:1 8813:1 8816:3 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:3 8913:1 8915:1 8920:2 8923:1 8928:1 8945:1 8947:3 8954:1 8972:1 8985:11 8986:1 8990:1 8992:1 9013:1 9018:2 9026:1 9064:10 9107:1 9117:1 9139:2 9150:1 9166:1 9180:2 9181:1 9186:4 9194:1 9198:1 9217:1 9223:1 9230:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:3 9351:2 9354:2 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9400:1 9414:1 9423:1 9437:4 9439:2 9443:3 9445:2 9453:1 9459:1 9468:3 9469:1 9472:1 9477:1 9484:7 9487:1 9495:1 9499:1 9530:1 9540:2 9544:1 9550:2 9562:2 9583:2 9586:1 9589:1 9601:1 9604:1 9611:1 9624:2 9645:4 9656:1 9658:9 9674:2 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9869:1 9872:7 9882:1 9885:1 9888:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:7 9969:1 9986:2 9987:1 9988:2 9990:1 9994:7 9998:11 9999:2 10006:1 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:6 10121:1 10125:1 10136:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:5 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10225:1 10230:1 10246:1 10248:2 10252:1 10253:2 10259:1 10273:1 10275:2 10286:1 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:3 10437:2 10447:2 10449:2 10454:3 10469:1 10471:1 10489:9 10494:1 10496:1 10504:4 10512:1 10513:1 10517:1 10562:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10664:1 10679:1 10683:1 10698:9 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10753:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:12 10810:1 10824:1 10825:2 10832:1 10845:1 10856:1 10862:1 10864:3 10868:1 10871:1 10885:1 10891:1 10896:1 10910:1 10920:1 10923:1 10931:1 10935:2 10944:1 10954:1 10980:1 10981:1 10991:1 10994:2 10999:3 11013:2 11028:1 11034:2 11037:2 11044:3 11045:2 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11159:2 11160:1 11166:4 11167:2 11169:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11397:2 11426:1 11436:1 11458:1 11507:6 11509:1 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:7 11630:1 11633:1 11637:1 11640:1 11642:1 11648:1 11663:2 11671:1 11678:2 11689:1 11729:1 11736:2 11740:3 11744:9 11771:1 11780:1 11795:1 11796:1 11800:1 11801:1 11806:1 11812:1 11814:5 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:4 11901:1 11923:1 11929:1 11934:1 11935:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:17 12037:3 12041:1 12047:1 12055:1 12058:2 12060:2 12071:2 12072:1 12084:1 12087:1 12092:1 12094:1 12103:4 12111:3 12118:1 12125:1 12130:1 12133:1 12139:2 12184:1 12189:3 12190:2 12193:1 12211:2 12214:1 12218:1 12220:1 12225:1 12232:2 12233:1 12234:2 12245:1 12246:2 12250:1 12251:3 12256:1 12263:1 12266:2 12285:1 12293:1 12299:3 12307:2 12311:1 12314:1 12316:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12407:1 12408:1 12409:3 12417:4 12418:1 12420:3 12439:1 12441:2 12444:1 12445:2 12447:4 12452:2 12456:5 12468:1 12480:1 12481:1 12488:4 12491:2 12500:6 12502:2 12504:2 12506:1 12508:2 12514:1 12518:1 12519:1 12531:24 12549:1 12553:1 12566:1 12568:22 12569:1 12576:1 12580:1 12581:1 12583:1 12586:3 12601:1 12603:1 12610:1 12631:1 12641:1 12649:1 12651:1 12688:1 12690:2 12711:3 12733:2 12734:1 12737:4 12745:6 12750:1 12752:1 12753:1 12760:1 12776:2 12781:1 12783:2 12789:1 12795:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:2 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13148:1 13153:1 13163:1 13164:2 13165:1 13168:1 13180:2 13196:1 13198:1 13212:1 13216:2 13222:1 13251:17 13286:3 13300:1 13308:1 13316:1 13323:16 13329:10 13332:1 13334:2 13335:1 13337:2 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13419:1 13433:2 13448:1 13449:1 13464:1 13466:1 13474:14 13476:1 13485:1 13499:1 13515:2 13522:7 13536:1 13544:1 13549:6 13557:1 13562:1 13583:1 13587:1 13592:1 13598:3 13608:1 13611:4 13626:1 13629:1 13649:1 13656:1 13663:1 13666:17 13682:3 13683:1 13689:1 13690:1 13701:1 13703:9 13713:3 13717:1 13718:1 13728:1 13745:1 13758:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:2 13812:3 13830:1 13831:1 13840:1 13846:2 13847:2 13853:1 13855:2 13860:1 13865:2 13869:8 13873:1 13876:1 13877:2 13879:1 13882:1 13890:1 13893:1 13898:1 13902:2 13903:4 13913:2 13931:1 13960:1 13961:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:5 14018:1 14020:1 14028:3 14042:1 14055:1 14056:1 14072:1 14091:2 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14181:1 14188:1 14195:1 14240:1 14241:1 14246:1 14255:3 14256:1 14273:1 14292:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:3 14401:1 14410:8 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14559:1 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14674:1 14679:2 14691:1 14706:2 14708:1 14738:1 14740:2 14748:1 14749:1 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:2 14941:1 14951:3 14955:1 14962:1 14964:1 14967:1 14982:1 15023:1 15031:1 15032:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:1 15092:1 15094:1 15105:1 15107:1 15118:1 15121:3 15125:1 15130:1 15135:1 15143:2 15146:1 15151:4 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:3 15176:1 15188:1 15192:3 15195:2 15203:1 15215:1 15216:1 15230:2 15235:1 15237:2 15266:2 15280:1 15282:5 15295:1 15308:1 15311:1 15313:1 15322:3 15326:1 15328:1 15329:3 15333:1 15335:1 15337:8 15341:33 15343:1 15344:1 15345:1 15346:1 15349:5 15353:1 15359:2 15361:1 15366:3 15372:1 15376:1 15384:5 15389:7 15396:1 15401:1 15404:1 15418:5 15430:3 15438:4 15440:1 15465:2 15470:1 15500:2 15503:1 15504:3 15513:1 15514:3 15534:1 15544:1 15553:1 15554:2 15563:1 15565:1 15573:1 15580:1 15584:1 15590:1 15594:1 15595:2 15603:1 15610:1 15614:1 15617:1 15632:1 15639:1 15683:1 15698:1 15700:3 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:4 15878:1 15887:1 15896:1 15897:1 15913:1 15916:3 15923:1 15934:3 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16000:1 16003:1 16004:3 16006:1 16014:1 16030:3 16034:24 16035:2 16064:1 16085:1 16102:2 16115:1 16116:1 16126:2 16131:1 16146:2 16148:4 16162:1 16180:8 16185:1 16186:1 16208:1 16234:3 16248:1 16250:2 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16373:1 16378:2 16399:1 16409:2 16410:1 16412:3 16424:1 16425:2 16442:3 16444:2 16446:1 16452:1 16469:1 16479:1 16480:1 16515:1 16523:1 16551:1 16563:1 16565:1 16570:2 16578:2 16585:1 16596:6 16608:1 16622:1 16627:1 16628:2 16631:1 16647:1 16650:2 16666:2 16686:1 16695:1 16713:3 16716:3 16720:4 16730:1 16738:3 16746:2 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:17 16798:2 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:6 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16933:1 16943:4 16962:2 16967:1 16975:1 16976:2 17011:2 17032:1 17054:1 17064:3 17069:2 17074:3 17083:1 17091:3 17098:1 17111:1 17117:1 17134:3 17137:1 17141:1 17146:9 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17196:2 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17243:1 17246:1 17252:11 17259:1 17264:1 17272:1 17276:1 17279:1 17291:1 17297:1 17318:2 17357:3 17381:5 17385:3 17386:1 17387:1 17407:1 17412:4 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17475:1 17478:2 17479:1 17489:1 17491:2 17492:1 17500:2 17520:5 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17611:1 17626:4 17632:1 17636:1 17644:1 17651:10 17657:3 17662:1 17680:2 17685:1 17687:2 17688:2 17704:1 17707:1 17747:1 17756:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17821:1 17839:1 17844:3 17856:1 17857:1 17858:3 17861:2 17867:1 17873:1 17879:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17963:1 17965:5 17971:1 18000:1 18015:1 18022:2 18037:1 18045:7 18074:2 18109:1 18117:2 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18187:1 18199:1 18215:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:2 18273:1 18286:1 18291:1 18292:2 18297:2 18299:1 18304:1 18308:1 18326:1 18340:1 18344:3 18360:4 18373:1 18379:2 18387:1 18392:1 18398:1 18400:2 18402:2 18410:1 18418:2 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18504:1 18506:4 18508:1 18510:1 18514:1 18518:2 18521:2 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18646:1 18656:1 18659:1 18666:2 18673:1 18675:3 18681:1 18687:1 18700:2 18719:3 18720:2 18764:3 18765:2 18767:2 18770:1 18774:1 18784:2 18809:1 18811:1 18862:1 18899:1 18902:1 18950:1 18952:1 18957:1 18968:1 18971:1 18980:1 18985:1 18989:3 19007:3 19019:2 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:5 19132:1 19140:3 19142:1 19158:2 19163:9 19193:2 19200:1 19245:1 19278:1 19280:1 19284:1 19286:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19385:1 19392:1 19398:2 19404:3 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:9 19473:2 19479:2 19483:1 19490:2 19491:1 19498:2 19514:9 19519:1 19533:1 19547:1 19572:9 19583:2 19587:2 19588:1 19596:1 19602:1 19612:1 19642:1 19646:1 19661:1 19663:24 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19768:1 19780:2 19786:1 19795:1 19806:1 19810:1 19813:1 19832:1 19844:2 19846:2 19855:1 19862:1 19898:1 19919:1 19927:3 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:2 20006:1 20017:3 20028:1 20036:5 20061:2 20074:1 20090:3 20103:1 20153:11 20157:1 20174:1 20176:1 20186:11 20211:3 20220:1 20223:2 20224:1 20225:2 20233:1 20261:1 20264:3 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:8 20397:1 20407:2 20410:1 20431:1 20433:1 20440:1 20462:4 20464:2 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20513:2 20524:3 20526:1 20528:1 20529:2 20532:1 20543:12 20558:1 20587:1 20592:1 20614:1 20633:8 20639:1 20646:2 20647:1 20648:1 20666:1 20681:1 20685:1 20710:1 20719:1 20729:1 20740:1 20744:1 20756:1 20767:1 20768:1 20770:1 20781:1 20784:2 20785:1 20786:1 20788:1 20806:1 20835:4 20841:1 20870:9 20883:1 20902:1 20931:1 20935:1 20943:1 20964:2 20973:3 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:3 21049:1 21053:1 21061:4 21077:3 21079:2 21082:1 21094:1 21097:1 21098:1 21099:2 21101:1 21110:1 21115:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:16 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:3 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21430:1 21431:1 21439:1 21440:1 21446:2 21454:5 21464:1 21476:1 21506:1 21512:1 21527:3 21549:8 21552:11 21569:1 21570:5 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:1 21637:2 21641:2 21642:1 21648:1 21654:2 21664:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:8 21715:1 21757:1 21760:1 21762:4 21772:1 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:2 21860:2 21871:1 21876:1 21880:4 21884:2 21907:7 21919:1 21942:2 21948:1 21960:1 21976:1 21980:2 21987:1 21988:1 21994:1 22007:2 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22129:1 22130:3 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:4 22229:1 22230:1 22233:2 22237:2 22262:4 22272:1 22284:1 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:2 22414:1 22417:2 22428:1 22440:4 22452:2 22453:1 22473:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22550:1 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22642:1 22654:1 22656:1 22671:1 22684:1 22687:9 22699:1 22720:1 22722:1 22724:1 22755:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:6 22868:1 22871:1 22939:24 22943:2 22944:1 22980:1 22987:1 22993:1 23004:4 23006:1 23011:1 23012:1 23021:4 23079:1 23085:5 23091:1 23102:1 23122:1 23127:1 23134:1 23140:2 23148:1 23172:1 23179:1 23180:1 23184:1 23185:3 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23248:1 23256:1 23271:1 23273:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:7 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:2 23505:1 23513:1 23516:1 23517:1 23518:1 23524:1 23535:1 23537:2 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23571:1 23583:2 23597:3 23620:1 23634:3 23653:1 23659:2
18 1:1 13:1 17:1 29:1 32:1 34:1 38:1 48:2 55:1 57:1 60:2 61:1 63:1 70:1 75:1 94:1 95:1 96:3 98:4 99:2 126:1 133:1 134:3 144:1 148:1 158:1 168:2 169:6 172:2 173:1 182:1 227:1 235:2 262:1 291:1 308:1 336:12 345:4 373:2 379:1 380:2 381:1 387:1 404:1 412:2 426:2 433:1 439:1 451:1 452:1 465:4 469:1 471:2 477:1 485:2 491:1 503:1 507:3 524:1 531:1 541:1 554:4 572:1 588:4 612:4 617:3 625:4 632:1 640:1 641:1 648:1 656:1 657:7 661:1 672:1 673:1 677:1 680:1 709:1 716:1 719:1 750:1 770:1 771:3 779:1 785:1 793:2 798:5 801:1 802:2 808:6 811:1 813:2 815:1 826:1 837:2 844:1 848:1 870:1 877:1 887:1 890:1 902:3 931:18 934:2 945:1 965:1 966:1 969:1 980:2 985:1 986:1 1000:1 1003:1 1013:1 1025:3 1031:1 1032:4 1035:3 1058:1 1063:7 1072:4 1081:1 1106:1 1109:2 1112:1 1123:4 1124:1 1133:2 1134:1 1145:1 1148:1 1156:1 1171:1 1173:1 1176:1 1183:2 1196:7 1197:1 1206:1 1217:1 1220:1 1257:3 1267:1 1274:1 1296:3 1300:3 1310:1 1317:2 1318:1 1320:1 1327:3 1328:1 1347:1 1348:1 1349:4 1356:1 1362:1 1372:1 1385:1 1414:1 1437:1 1439:4 1441:4 1470:1 1489:1 1493:2 1495:1 1498:2 1506:1 1511:1 1518:4 1525:1 1529:3 1534:2 1543:1 1545:3 1553:1 1559:1 1566:1 1578:2 1583:1 1588:2 1590:3 1594:2 1607:2 1616:1 1618:1 1623:1 1627:3 1631:1 1637:1 1644:2 1645:2 1656:1 1659:2 1660:1 1674:1 1682:1 1683:2 1695:3 1700:1 1703:1 1704:4 1739:2 1756:2 1769:1 1795:1 1809:1 1829:3 1847:1 1848:1 1892:8 1903:3 1923:1 1928:1 1934:3 1935:1 1940:1 1954:1 1959:4 1964:1 1968:3 1969:1 2011:1 2016:1 2018:1 2023:1 2034:2 2039:1 2056:1 2062:1 2066:2 2068:2 2069:1 2072:2 2076:1 2079:1 2081:2 2088:2 2090:1 2093:1 2117:4 2133:2 2139:2 2140:2 2145:2 2158:1 2179:3 2193:1 2200:1 2203:1 2214:2 2216:1 2217:1 2231:2 2233:2 2242:1 2244:1 2284:1 2309:1 2320:1 2329:1 2333:1 2340:2 2344:1 2354:2 2355:2 2366:1 2369:1 2372:1 2375:1 2395:2 2414:3 2415:1 2417:5 2421:1 2428:1 2440:1 2444:1 2447:1 2473:1 2482:1 2484:2 2486:1 2489:1 2491:1 2492:2 2493:1 2496:1 2516:1 2522:3 2527:3 2537:1 2538:1 2541:1 2554:2 2560:1 2564:1 2572:4 2575:1 2579:1 2580:3 2596:1 2608:1 2622:1 2623:1 2637:1 2638:1 2649:1 2650:1 2665:1 2680:2 2718:2 2730:1 2732:2 2752:1 2762:1 2779:1 2780:1 2788:1 2791:3 2801:1 2811:1 2834:1 2839:3 2843:1 2844:3 2851:2 2863:1 2864:6 2868:4 2874:1 2897:2 2901:1 2926:1 2938:1 2955:1 2959:10 2994:1 3017:1 3033:2 3035:2 3038:1 3041:2 3042:1 3044:5 3050:1 3055:1 3062:2 3087:2 3089:1 3101:1 3107:1 3121:1 3124:1 3128:1 3136:2 3141:1 3143:2 3165:1 3175:3 3180:1 3184:2 3187:3 3190:1 3202:17 3203:2 3204:1 3209:1 3213:1 3231:1 3249:1 3253:1 3256:1 3267:1 3277:1 3278:1 3290:1 3292:1 3294:2 3296:1 3310:1 3313:2 3314:1 3325:2 3329:1 3355:2 3358:1 3364:1 3365:1 3370:1 3374:3 3375:2 3381:3 3383:2 3386:1 3387:1 3392:18 3396:6 3410:1 3418:6 3427:2 3431:2 3435:1 3436:1 3439:2 3444:4 3448:1 3474:3 3477:1 3484:1 3486:6 3488:1 3490:1 3495:1 3498:7 3500:1 3501:1 3502:1 3505:2 3506:1 3507:5 3509:1 3514:4 3521:4 3524:2 3527:2 3547:2 3548:1 3549:1 3550:1 3553:1 3558:1 3562:1 3566:1 3568:3 3574:2 3576:1 3581:1 3586:3 3590:4 3597:2 3600:1 3603:2 3606:1 3607:3 3609:1 3613:3 3622:1 3624:26 3635:1 3641:1 3643:1 3646:3 3674:1 3694:3 3695:1 3710:2 3719:1 3723:2 3727:2 3734:4 3736:1 3742:1 3745:2 3751:1 3754:1 3760:1 3764:1 3771:3 3777:1 3779:1 3795:1 3803:1 3805:1 3809:1 3820:1 3826:1 3828:4 3839:1 3848:1 3861:1 3865:2 3886:1 3889:4 3897:1 3901:4 3909:1 3913:1 3914:2 3950:2 3954:3 3957:1 3958:1 3963:1 3966:1 3971:1 3984:1 3991:1 3999:1 4008:1 4024:1 4031:2 4034:1 4055:6 4065:1 4079:2 4099:1 4103:2 4112:1 4113:1 4117:3 4123:1 4143:1 4150:2 4169:3 4183:2 4191:5 4198:1 4200:1 4210:2 4215:3 4219:1 4229:1 4230:2 4235:1 4239:1 4248:1 4249:3 4254:1 4260:1 4262:5 4269:1 4271:1 4287:3 4289:3 4297:1 4298:1 4307:2 4312:2 4314:3 4315:1 4321:4 4325:1 4330:1 4335:1 4342:1 4345:2 4381:2 4382:1 4383:1 4386:3 4388:1 4393:4 4398:1 4400:1 4403:1 4408:1 4413:2 4420:1 4440:2 4447:2 4465:1 4471:1 4478:1 4485:1 4495:6 4499:1 4510:2 4525:1 4531:1 4544:1 4551:2 4563:1 4573:1 4578:1 4598:1 4600:1 4601:2 4618:2 4636:3 4640:1 4642:1 4647:1 4651:2 4662:2 4679:11 4684:3 4699:1 4733:1 4738:3 4742:1 4751:21 4761:2 4763:3 4764:1 4765:1 4774:2 4785:3 4798:1 4801:1 4808:3 4821:1 4833:1 4841:1 4846:3 4861:2 4865:5 4872:1 4895:5 4899:1 4907:1 4924:3 4930:1 4939:1 4950:2 4964:6 4969:1 4970:7 4978:5 4983:1 4984:1 4985:1 5000:1 5028:1 5031:4 5047:4 5085:1 5107:1 5108:2 5134:1 5140:6 5157:1 5176:1 5199:1 5206:1 5210:1 5213:1 5217:1 5230:4 5241:1 5253:1 5301:1 5310:1 5317:3 5318:2 5323:2 5347:1 5350:2 5364:1 5374:1 5376:8 5381:1 5383:1 5384:1 5394:1 5396:3 5405:2 5410:1 5411:1 5427:1 5448:1 5450:4 5454:1 5460:1 5461:1 5462:1 5464:1 5469:2 5495:2 5499:6 5506:4 5514:1 5524:1 5529:1 5535:1 5539:1 5545:1 5554:1 5603:4 5624:26 5673:4 5687:2 5721:1 5726:1 5741:1 5745:1 5750:1 5758:1 5760:3 5767:2 5768:1 5771:1 5776:1 5797:1 5798:1 5816:1 5843:1 5853:2 5876:3 5886:2 5911:1 5913:3 5916:1 5917:3 5949:2 5959:5 5962:1 5969:1 5982:1 5999:1 6007:1 6008:4 6021:3 6045:2 6056:1 6065:1 6069:2 6078:1 6081:1 6082:9 6083:5 6086:1 6127:1 6128:1 6131:1 6141:2 6143:2 6153:1 6157:3 6174:5 6175:1 6182:1 6187:1 6191:2 6201:5 6231:1 6234:1 6240:1 6243:1 6249:1 6254:1 6256:1 6261:26 6262:3 6263:1 6277:1 6278:1 6283:1 6305:1 6314:2 6324:1 6333:1 6338:1 6342:1 6354:1 6364:2 6371:1 6372:1 6373:3788 6403:2 6413:1 6437:2 6444:2 6447:1 6460:1 6465:2 6467:5 6490:1 6498:2 6509:1 6518:1 6521:1 6537:1 6544:1 6554:1 6560:1 6570:3 6571:3 6573:1 6575:2 6584:3 6593:4 6600:1 6605:1 6609:2 6622:1 6651:4 6654:1 6662:1 6667:1 6674:1 6685:1 6694:1 6700:1 6703:1 6706:1 6708:1 6710:1 6711:1 6722:2 6734:1 6739:1 6745:2 6758:5 6761:1 6768:1 6769:5 6774:1 6777:1 6782:2 6794:2 6807:2 6813:1 6823:2 6856:2 6859:1 6868:1 6888:1 6893:1 6900:3 6911:4 6941:1 6947:1 6949:1 6958:2 6998:2 7003:1 7019:1 7029:5 7031:1 7037:1 7040:1 7042:1 7045:1 7057:1 7096:2 7102:1 7117:1 7121:1 7123:1 7138:1 7151:1 7156:1 7159:1 7187:2 7188:1 7189:3 7199:3 7205:1 7220:4 7243:1 7255:1 7257:3 7272:1 7287:1 7321:1 7324:5 7342:9 7351:1 7363:1 7364:1 7371:1 7420:1 7423:1 7439:3 7442:6 7451:1 7459:1 7461:2 7469:1 7473:1 7491:1 7496:1 7510:1 7511:1 7514:1 7519:8 7523:5 7528:1 7551:1 7557:1 7558:3 7560:1 7575:1 7585:1 7588:2 7593:1 7594:3 7612:1 7614:2 7622:1 7627:2 7631:2 7634:1 7654:3 7660:1 7671:1 7674:1 7679:1 7690:1 7712:18 7713:1 7717:2 7718:1 7723:1 7724:2 7733:3 7735:1 7739:7 7741:1 7745:3 7778:1 7795:2 7804:1 7808:1 7821:1 7831:1 7832:1 7840:4 7867:6 7890:1 7894:1 7903:1 7914:1 7927:12 7928:2 7935:1 7937:1 7938:2 7940:1 7943:1 7951:1 7961:1 7972:2 7976:2 7983:1 7996:1 8002:1 8006:1 8009:1 8034:24 8044:1 8054:7 8055:1 8067:2 8076:1 8078:1 8080:1 8085:4 8101:2 8102:2 8104:1 8111:2 8118:1 8134:1 8142:1 8143:1 8152:1 8155:3 8156:1 8182:2 8201:1 8218:2 8222:4 8237:1 8247:2 8261:3 8266:1 8283:1 8287:1 8290:1 8293:6 8297:2 8319:3 8326:1 8328:1 8337:1 8345:2 8363:5 8364:2 8369:1 8371:3 8373:1 8387:1 8399:2 8407:1 8412:1 8421:1 8428:2 8434:1 8447:1 8449:1 8451:1 8457:2 8463:1 8478:1 8479:1 8493:1 8532:1 8535:1 8555:1 8562:1 8565:4 8571:1 8575:9 8579:1 8582:2 8597:2 8612:1 8617:1 8626:2 8630:1 8650:1 8666:1 8670:1 8674:3 8692:2 8699:2 8703:5 8712:1 8720:1 8723:1 8729:1 8732:1 8738:3 8752:1 8761:1 8767:1 8779:1 8786:1 8813:1 8816:3 8831:1 8840:1 8842:1 8854:1 8859:2 8871:1 8877:1 8881:1 8887:2 8888:1 8910:3 8913:1 8915:1 8920:2 8923:1 8928:1 8945:1 8947:3 8954:1 8972:1 8985:11 8986:1 8990:1 8992:1 9013:1 9018:2 9026:1 9064:10 9080:1 9107:1 9117:1 9139:3 9150:1 9166:1 9180:2 9181:1 9186:4 9194:1 9198:1 9217:1 9218:1 9223:1 9230:1 9252:1 9255:1 9281:1 9284:1 9291:4 9304:2 9309:1 9327:2 9349:3 9351:2 9354:3 9363:1 9366:1 9368:2 9385:1 9396:1 9397:1 9400:1 9414:1 9423:1 9437:4 9439:2 9443:3 9445:3 9453:1 9459:1 9468:3 9469:1 9472:1 9477:1 9484:7 9487:1 9495:1 9499:1 9530:1 9540:2 9544:1 9550:2 9562:2 9583:2 9586:1 9589:1 9601:1 9604:1 9611:1 9624:2 9645:4 9656:1 9658:9 9674:2 9679:4 9683:3 9693:2 9709:1 9714:1 9733:1 9735:2 9744:4 9769:3 9789:1 9793:1 9829:2 9833:1 9843:1 9869:1 9872:7 9882:1 9885:1 9888:1 9895:1 9907:2 9910:1 9927:1 9933:2 9934:1 9939:1 9942:2 9960:7 9961:1 9967:7 9969:1 9986:2 9987:1 9988:2 9990:1 9994:7 9998:11 9999:2 10006:1 10025:1 10027:1 10043:1 10044:1 10056:1 10078:1 10086:1 10090:1 10115:6 10121:1 10125:1 10136:1 10151:3 10154:1 10160:1 10164:1 10165:1 10169:1 10170:2 10173:1 10174:5 10175:1 10178:1 10182:1 10184:1 10185:1 10186:2 10190:1 10199:2 10202:1 10225:1 10230:1 10246:1 10248:2 10252:1 10253:2 10259:1 10273:1 10275:2 10286:1 10307:1 10326:1 10370:1 10371:2 10373:1 10374:1 10399:1 10411:1 10419:1 10422:1 10431:2 10435:3 10437:2 10447:3 10449:2 10454:3 10469:1 10471:1 10489:9 10494:1 10496:1 10504:4 10512:1 10513:1 10517:1 10562:1 10565:1 10568:1 10580:1 10588:1 10605:1 10620:2 10634:1 10640:1 10661:1 10664:1 10679:1 10683:1 10698:9 10699:1 10701:1 10717:1 10727:1 10732:1 10737:1 10739:1 10749:1 10751:1 10753:1 10754:2 10758:1 10773:3 10778:1 10782:1 10788:1 10789:13 10810:1 10824:1 10825:2 10832:1 10845:1 10856:1 10862:1 10864:3 10868:1 10871:1 10885:1 10891:1 10896:1 10910:1 10920:1 10923:1 10931:1 10935:2 10944:1 10954:1 10980:2 10981:1 10991:1 10994:2 10999:3 11013:2 11028:1 11034:2 11037:2 11044:3 11045:2 11053:3 11057:2 11059:1 11061:1 11070:3 11095:1 11099:2 11103:1 11115:2 11142:1 11146:1 11159:2 11160:1 11166:4 11167:2 11169:2 11173:1 11183:1 11195:2 11202:4 11206:2 11210:1 11234:1 11235:1 11248:1 11251:1 11322:2 11325:1 11335:1 11378:1 11396:1 11397:2 11426:1 11436:1 11458:1 11494:1 11507:6 11509:1 11520:1 11527:1 11528:1 11533:2 11546:1 11553:1 11557:2 11573:1 11626:7 11630:1 11633:1 11637:1 11640:1 11642:1 11648:1 11663:2 11670:1 11671:1 11678:2 11689:1 11698:1 11729:1 11736:2 11740:3 11744:9 11771:1 11780:1 11795:1 11796:1 11800:1 11801:1 11806:1 11812:1 11814:5 11825:1 11850:1 11851:1 11861:1 11863:2 11871:1 11872:3 11878:1 11884:2 11894:1 11899:1 11900:4 11901:1 11923:1 11929:1 11934:1 11935:1 11948:1 11957:1 11966:2 11977:2 11983:1 11996:2 12000:1 12022:17 12037:3 12041:1 12047:2 12055:1 12058:2 12060:2 12071:2 12072:1 12084:1 12087:1 12092:1 12094:1 12103:4 12111:3 12118:1 12125:1 12130:1 12133:1 12139:2 12184:1 12189:3 12190:2 12193:1 12211:2 12214:1 12218:1 12220:1 12225:1 12232:2 12233:1 12234:2 12245:1 12246:2 12250:1 12251:3 12256:1 12263:1 12266:2 12285:1 12293:1 12299:3 12307:2 12311:1 12314:1 12316:1 12320:1 12322:4 12327:2 12350:2 12372:1 12375:1 12392:2 12399:2 12407:1 12408:1 12409:3 12417:4 12418:1 12420:3 12439:1 12441:2 12444:1 12445:2 12447:4 12452:2 12456:5 12468:1 12480:1 12481:1 12488:4 12491:2 12500:6 12502:2 12504:2 12506:1 12508:2 12514:1 12515:1 12518:1 12519:1 12531:24 12549:1 12553:1 12566:1 12568:22 12569:1 12576:1 12580:1 12581:1 12583:1 12586:3 12601:1 12603:1 12610:1 12631:1 12641:1 12649:1 12651:1 12688:1 12690:2 12711:3 12733:2 12734:1 12737:4 12745:6 12750:1 12752:1 12753:1 12760:1 12776:2 12781:1 12783:2 12789:1 12795:1 12796:1 12806:1 12810:1 12811:1 12819:3 12826:3 12836:1 12848:1 12861:1 12874:1 12889:1 12892:5 12895:1 12901:1 12914:1 12918:1 12923:1 12929:2 12941:1 12965:1 13005:3 13006:1 13011:3 13013:1 13015:2 13027:2 13036:1 13037:3 13046:2 13072:1 13080:1 13089:3 13094:1 13108:1 13147:2 13148:1 13153:1 13163:1 13164:2 13165:1 13168:1 13180:2 13187:1 13196:1 13198:1 13212:1 13216:2 13222:1 13251:17 13286:3 13300:1 13308:1 13316:1 13323:16 13329:11 13332:1 13334:3 13335:1 13337:2 13372:1 13380:1 13384:1 13391:1 13394:1 13395:3 13419:1 13433:2 13448:1 13449:1 13464:1 13466:1 13474:14 13476:1 13485:1 13499:1 13515:3 13522:7 13536:1 13544:2 13549:6 13557:1 13562:1 13583:1 13587:1 13592:1 13598:3 13608:1 13611:4 13626:1 13629:1 13649:1 13656:1 13663:1 13666:17 13682:3 13683:1 13689:1 13690:1 13701:1 13703:9 13713:3 13717:1 13718:1 13728:1 13745:1 13758:1 13764:1 13770:1 13787:1 13792:1 13793:1 13800:1 13802:1 13805:2 13812:3 13830:1 13831:1 13840:1 13846:2 13847:2 13853:1 13855:2 13860:1 13865:2 13869:8 13873:1 13876:1 13877:2 13879:1 13882:1 13890:1 13893:1 13898:1 13902:2 13903:4 13913:2 13931:1 13960:1 13961:1 13977:1 13978:1 13992:2 13996:2 13998:6 14007:1 14008:1 14016:5 14018:1 14020:1 14028:3 14042:1 14055:1 14056:1 14072:1 14091:2 14094:2 14095:1 14114:1 14135:1 14136:2 14148:2 14164:1 14176:1 14179:2 14181:1 14188:1 14195:1 14240:1 14241:1 14246:1 14255:3 14256:1 14273:1 14292:1 14298:2 14314:1 14319:1 14330:3 14374:1 14379:2 14386:4 14401:1 14410:9 14415:2 14429:1 14433:1 14442:2 14445:1 14447:1 14456:1 14458:2 14467:3 14473:3 14478:1 14481:2 14510:1 14518:1 14527:1 14530:1 14534:1 14541:1 14549:1 14552:1 14553:2 14559:1 14562:2 14567:1 14580:1 14591:1 14595:1 14606:2 14608:1 14614:1 14617:4 14618:1 14623:1 14628:1 14659:1 14670:2 14674:1 14679:2 14691:1 14706:2 14708:1 14738:1 14740:2 14748:1 14749:1 14761:1 14773:1 14785:2 14793:1 14821:1 14851:1 14862:1 14873:2 14887:1 14912:1 14928:2 14941:1 14951:3 14955:1 14962:1 14964:1 14967:1 14982:1 15023:1 15031:1 15032:1 15054:1 15055:1 15062:1 15070:1 15071:1 15072:1 15088:1 15090:2 15092:1 15094:1 15105:1 15107:1 15118:1 15121:3 15125:1 15127:1 15130:1 15135:1 15143:2 15146:1 15151:4 15152:2 15156:1 15157:1 15160:1 15161:1 15164:1 15167:3 15176:1 15188:1 15192:3 15195:2 15203:1 15215:1 15216:1 15230:2 15235:1 15237:2 15266:2 15280:1 15282:5 15295:1 15308:1 15311:2 15313:1 15322:3 15326:1 15328:1 15329:3 15333:1 15335:1 15337:8 15341:33 15343:1 15344:1 15345:1 15346:1 15349:5 15353:1 15359:2 15361:1 15366:3 15372:1 15376:1 15384:5 15389:7 15396:1 15401:1 15404:1 15418:5 15430:3 15438:4 15440:1 15465:3 15470:1 15500:2 15503:1 15504:3 15513:1 15514:3 15534:1 15544:1 15553:1 15554:2 15563:1 15565:1 15573:1 15580:1 15584:1 15590:1 15594:1 15595:2 15603:1 15610:1 15614:1 15617:1 15632:1 15639:1 15683:1 15698:1 15700:3 15703:1 15715:1 15755:1 15759:1 15761:1 15786:1 15787:1 15788:4 15810:1 15831:1 15837:1 15839:1 15841:1 15865:1 15871:1 15876:2 15877:4 15878:1 15887:1 15896:1 15897:1 15913:2 15916:3 15923:1 15934:3 15946:1 15947:3 15950:4 15956:1 15958:1 15988:1 15996:1 15998:1 15999:1 16000:1 16003:1 16004:3 16006:1 16014:1 16020:1 16030:3 16034:26 16035:2 16041:1 16064:1 16085:1 16102:2 16115:1 16116:1 16126:2 16131:1 16146:2 16148:4 16162:1 16180:8 16185:1 16186:1 16208:1 16234:3 16248:1 16250:2 16269:2 16340:1 16342:2 16346:1 16351:1 16356:1 16360:2 16371:1 16373:1 16378:2 16399:1 16409:2 16410:1 16412:3 16424:1 16425:2 16442:3 16444:2 16446:1 16452:1 16469:1 16479:1 16480:1 16513:1 16515:1 16523:1 16551:1 16563:1 16565:1 16570:2 16578:2 16585:1 16596:6 16608:1 16622:1 16627:1 16628:2 16631:1 16647:1 16650:2 16666:2 16686:1 16695:1 16713:3 16716:3 16720:4 16730:1 16738:3 16746:2 16749:1 16751:1 16762:2 16770:1 16772:2 16780:1 16791:17 16798:2 16807:1 16809:1 16811:1 16816:1 16830:1 16831:1 16838:1 16856:1 16857:6 16862:1 16863:1 16864:1 16880:1 16911:1 16919:2 16924:1 16928:1 16930:4 16933:1 16943:4 16962:3 16967:1 16975:1 16976:2 17011:2 17032:1 17054:1 17064:3 17069:2 17074:3 17083:1 17091:3 17098:1 17111:1 17117:1 17134:3 17137:1 17141:1 17146:9 17149:2 17150:1 17169:1 17171:1 17178:1 17194:1 17196:2 17205:1 17207:1 17221:1 17228:1 17235:2 17241:1 17243:1 17246:1 17252:11 17259:1 17264:1 17272:1 17276:1 17279:1 17291:1 17297:1 17318:2 17357:3 17381:5 17385:3 17386:1 17387:1 17407:1 17412:4 17413:1 17417:2 17422:2 17429:1 17430:1 17434:1 17450:1 17452:1 17475:1 17478:2 17479:1 17489:1 17491:2 17492:1 17500:2 17520:5 17523:2 17524:1 17547:2 17578:1 17586:1 17600:1 17608:1 17609:1 17611:1 17626:4 17632:1 17636:1 17644:1 17651:10 17657:3 17662:1 17680:2 17685:1 17687:2 17688:2 17704:1 17707:1 17747:1 17756:1 17771:1 17775:1 17797:5 17799:1 17808:2 17819:1 17821:1 17839:1 17844:3 17856:1 17857:1 17858:3 17861:2 17867:1 17873:1 17879:1 17883:1 17909:1 17910:1 17920:1 17924:1 17928:1 17933:1 17955:1 17956:1 17963:1 17965:6 17971:1 18000:1 18015:1 18022:2 18037:1 18045:7 18074:2 18109:1 18117:2 18131:1 18137:1 18138:3 18147:1 18149:1 18153:1 18187:1 18199:1 18215:1 18218:1 18219:1 18229:3 18235:1 18245:1 18261:2 18265:1 18273:1 18286:1 18291:1 18292:2 18297:3 18299:1 18304:1 18308:1 18326:1 18340:1 18344:3 18360:4 18373:1 18379:2 18387:1 18392:1 18398:1 18400:2 18402:2 18410:1 18418:2 18419:1 18440:2 18448:1 18449:2 18461:1 18478:1 18490:2 18501:1 18504:1 18506:4 18508:1 18510:1 18514:1 18518:2 18521:2 18529:1 18531:6 18533:1 18534:2 18542:3 18550:1 18555:1 18567:1 18576:1 18578:6 18579:1 18589:2 18603:1 18610:1 18619:3 18627:1 18638:1 18646:1 18656:1 18659:1 18666:2 18673:1 18675:3 18681:1 18687:1 18700:2 18719:3 18720:3 18764:3 18765:2 18767:2 18770:1 18774:1 18784:2 18799:1 18809:1 18811:1 18862:2 18899:1 18902:1 18950:1 18952:1 18957:1 18968:1 18971:1 18980:1 18985:1 18989:3 19007:3 19019:3 19027:1 19048:1 19058:1 19064:1 19079:1 19083:1 19086:2 19096:1 19097:1 19098:1 19105:1 19108:1 19116:5 19132:1 19140:3 19142:1 19158:2 19163:9 19193:2 19200:1 19245:1 19278:1 19280:1 19284:1 19286:1 19291:1 19301:1 19302:2 19309:2 19323:2 19328:2 19369:1 19384:1 19385:1 19392:1 19398:2 19404:3 19419:1 19430:2 19431:7 19438:1 19448:1 19451:1 19469:9 19473:2 19479:2 19483:2 19490:2 19491:1 19498:2 19514:9 19519:1 19533:1 19547:1 19572:9 19583:2 19587:2 19588:1 19596:1 19602:1 19612:1 19642:1 19646:1 19661:1 19663:26 19680:1 19682:1 19695:1 19696:1 19711:1 19721:2 19729:1 19760:2 19768:1 19780:2 19786:1 19795:1 19806:1 19810:1 19813:1 19815:1 19832:1 19844:2 19846:2 19855:1 19862:1 19893:1 19898:1 19919:1 19927:3 19937:1 19944:1 19947:1 19952:1 19974:1 19978:1 19988:1 19994:2 19996:1 20006:1 20017:3 20028:1 20036:5 20061:2 20074:1 20090:3 20103:1 20153:11 20157:1 20174:1 20176:1 20186:11 20211:3 20220:1 20223:2 20224:1 20225:2 20233:1 20261:1 20264:3 20267:2 20282:2 20283:1 20294:2 20300:1 20301:1 20314:2 20318:1 20320:2 20321:3 20331:1 20332:1 20334:1 20336:1 20356:5 20362:1 20369:9 20397:1 20407:2 20410:1 20431:1 20433:2 20440:2 20462:5 20464:2 20466:2 20467:1 20471:1 20498:1 20505:2 20509:1 20511:1 20513:3 20524:3 20526:1 20528:1 20529:2 20532:1 20543:12 20558:1 20587:1 20592:1 20614:1 20633:8 20639:1 20646:2 20647:1 20648:1 20666:1 20681:1 20685:1 20686:1 20710:1 20719:1 20729:1 20740:1 20744:1 20756:1 20767:1 20768:1 20770:1 20781:1 20784:2 20785:1 20786:1 20788:1 20806:1 20835:4 20841:1 20870:9 20883:1 20902:1 20931:1 20935:1 20943:1 20964:2 20973:3 20975:1 20977:1 20993:1 20994:1 21006:2 21032:1 21034:1 21040:3 21049:1 21053:1 21061:4 21077:3 21079:2 21082:1 21094:1 21097:1 21098:1 21099:2 21101:1 21110:1 21115:1 21120:1 21122:1 21130:1 21138:1 21142:1 21157:1 21180:1 21197:1 21200:1 21202:1 21207:1 21212:1 21227:2 21228:1 21256:3 21271:3 21274:1 21285:2 21303:1 21309:3 21316:2 21324:1 21332:1 21343:2 21349:16 21355:1 21356:1 21363:1 21370:1 21380:1 21383:3 21388:1 21392:1 21393:3 21397:1 21403:1 21406:1 21408:1 21409:2 21421:1 21428:2 21430:1 21431:1 21439:1 21440:1 21446:2 21454:5 21464:1 21476:1 21506:1 21512:1 21527:3 21549:9 21552:11 21569:1 21570:5 21574:1 21591:4 21593:2 21594:1 21610:2 21612:1 21613:1 21625:1 21633:2 21637:2 21641:2 21642:1 21648:1 21654:2 21664:1 21670:4 21680:1 21686:2 21690:3 21693:1 21695:2 21701:1 21702:9 21715:1 21757:1 21760:1 21762:4 21772:1 21777:1 21780:6 21791:1 21800:1 21815:2 21835:2 21852:2 21860:2 21871:1 21876:1 21880:4 21884:2 21886:1 21907:7 21919:1 21942:3 21948:2 21960:1 21976:1 21980:2 21987:1 21988:1 21994:1 21998:1 22007:2 22011:2 22015:1 22016:2 22031:1 22032:1 22033:1 22051:1 22064:1 22103:2 22111:1 22129:1 22130:3 22140:1 22143:1 22159:1 22166:1 22180:1 22181:1 22222:4 22229:1 22230:1 22233:2 22237:2 22262:4 22272:1 22284:1 22285:2 22288:2 22294:2 22343:3 22352:1 22369:3 22375:2 22381:1 22385:2 22414:1 22417:2 22428:1 22440:4 22452:2 22453:1 22471:1 22473:1 22477:3 22479:1 22494:2 22495:1 22502:1 22503:1 22509:1 22550:2 22552:1 22553:1 22555:1 22565:1 22572:1 22584:1 22618:2 22621:1 22632:1 22634:1 22642:1 22654:1 22656:1 22671:1 22684:1 22687:9 22699:1 22720:1 22722:1 22724:1 22755:1 22773:1 22776:1 22790:1 22816:4 22822:1 22826:3 22833:1 22838:2 22841:4 22845:1 22848:2 22853:1 22860:6 22868:1 22871:1 22939:26 22943:2 22944:1 22980:1 22987:1 22993:1 23004:4 23006:1 23011:1 23012:1 23021:4 23079:1 23085:5 23091:1 23102:1 23122:1 23127:1 23134:1 23140:2 23148:1 23172:1 23179:1 23180:1 23184:1 23185:3 23197:1 23199:3 23204:1 23232:1 23235:1 23242:1 23248:1 23256:1 23271:2 23273:1 23275:3 23278:1 23284:1 23292:1 23305:2 23310:1 23356:1 23392:1 23406:2 23409:1 23419:5 23425:1 23429:1 23431:1 23433:1 23443:7 23444:1 23445:1 23451:1 23453:1 23458:1 23470:1 23471:2 23505:1 23513:1 23516:1 23517:1 23518:1 23524:1 23535:1 23537:2 23538:1 23541:1 23544:1 23555:1 23557:1 23561:3 23571:1 23583:2 23597:3 23620:1 23634:3 23653:1 23659:2
|
d65d08aa802436e72189f2f8b5f42ee7bfa06642 | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/sci2blif_added_blocks/nmirror_vmm.sce | fc09c5ca6d1555ba571d1ce452a02d7e4d6e1240 | [] | 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 | 500 | sce | nmirror_vmm.sce | //**************************** NMIRROR_vmm *********************************
if (blk_name.entries(bl) =='nmirror_vmm') then
mputl("#NMIRROR "+string(bl),fd_w);
addvmm = %t;
for ss=1:scs_m.objs(bl).model.opar(1)
nmirror_str= ".subckt nmirror_vmm in[0]=vcc out=net"+ string(blk(blk_objs(bl),2+numofip))+'_' + string(ss)+" #nmirror_bias[0] =" +string(sprintf('%1.3e',scs_m.objs(blk_objs(bl)).model.opar(2*ss)));
mputl(nmirror_str,fd_w);
mputl(" ",fd_w);
end
end
|
6acac39174b6724899826c09cba5ea32a42b915e | f7e335e2af57c686554eb057f28ddd8d21aab1e4 | /tests/fuzz/comment/0066.tst | 0764e26c45de837a15a765478d94233947a3ba40 | [
"MIT"
] | permissive | scravy/abnf | 76515bd820b3b9d8e2dbc2cec2a2f845720a6022 | cc4228f403b436cc4e34ff4d6a7def83922174be | refs/heads/master | 2023-01-09T14:30:50.095268 | 2020-06-07T16:18:09 | 2020-06-07T16:18:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 7 | tst | 0066.tst | ;_$0g
|
2aa7cb0cf32db873d61a93d8e8f3fe6f33f3a80c | 36c5f94ce0d09d8d1cc8d0f9d79ecccaa78036bd | /Sumo Strafe.sce | cdc14a7c7477a108009fc05093e5f4fa1a500061 | [] | no_license | Ahmad6543/Scenarios | cef76bf19d46e86249a6099c01928e4e33db5f20 | 6a4563d241e61a62020f76796762df5ae8817cc8 | refs/heads/master | 2023-03-18T23:30:49.653812 | 2020-09-23T06:26:05 | 2020-09-23T06:26:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 41,925 | sce | Sumo Strafe.sce | Name=Sumo Strafe
PlayerCharacters=sumo_player_char
BotCharacters=sumo_enemy_bot.bot
IsChallenge=true
Timelimit=60.0
PlayerProfile=sumo_player_char
AddedBots=sumo_enemy_bot.bot
PlayerMaxLives=1
BotMaxLives=0
PlayerTeam=1
BotTeams=2
MapName=sumo_strafe.map
MapScale=6.0
BlockProjectilePredictors=true
BlockCheats=true
InvinciblePlayer=true
InvincibleBots=false
Timescale=1.0
BlockHealthbars=false
TimeRefilledByKill=0.0
ScoreToWin=1.0
ScorePerDamage=1.0
ScorePerKill=0.0
ScorePerMidairDirect=0.0
ScorePerAnyDirect=0.0
ScorePerTime=0.0
ScoreLossPerDamageTaken=0.0
ScoreLossPerDeath=0.0
ScoreLossPerMidairDirected=0.0
ScoreLossPerAnyDirected=0.0
ScoreMultAccuracy=false
ScoreMultDamageEfficiency=false
ScoreMultKillEfficiency=false
GameTag=
WeaponHeroTag=Harite
DifficultyTag=3
AuthorsTag=NFNT
BlockHitMarkers=false
BlockHitSounds=false
BlockMissSounds=false
BlockFCT=false
Description=A scenario that mimics Japanese sumo wrestling.The weapon is Harite, which has knockback.The bot also gives you knockback.If you fall from the circular ring, the game is over.
GameVersion=2.0.2.0
ScorePerDistance=0.0
MBSEnable=false
MBSTime1=0.25
MBSTime2=0.5
MBSTime3=0.75
MBSTime1Mult=1.0
MBSTime2Mult=2.0
MBSTime3Mult=3.0
MBSFBInstead=false
MBSRequireEnemyAlive=false
LockFOVRange=false
LockedFOVMin=60.0
LockedFOVMax=120.0
LockedFOVScale=Clamped Horizontal
[Aim Profile]
Name=Aimgod
MinReactionTime=0.25
MaxReactionTime=0.25
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=90.0
FlickSpeed=10.0
FlickError=0.0
TrackSpeed=10.0
TrackError=0.0
MaxTurnAngleFromPadCenter=360.0
MinRecenterTime=0.0
MaxRecenterTime=0.0
OptimalAimFOV=360.0
OuterAimPenalty=0.0
MaxError=0.0
ShootFOV=90.0
VerticalAimOffset=-50.0
MaxTolerableSpread=0.0
MinTolerableSpread=0.0
TolerableSpreadDist=100.0
MaxSpreadDistFactor=1.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Aim Profile]
Name=Default
MinReactionTime=0.3
MaxReactionTime=0.4
MinSelfMovementCorrectionTime=0.001
MaxSelfMovementCorrectionTime=0.05
FlickFOV=30.0
FlickSpeed=1.5
FlickError=15.0
TrackSpeed=3.5
TrackError=3.5
MaxTurnAngleFromPadCenter=75.0
MinRecenterTime=0.3
MaxRecenterTime=0.5
OptimalAimFOV=30.0
OuterAimPenalty=1.0
MaxError=40.0
ShootFOV=15.0
VerticalAimOffset=0.0
MaxTolerableSpread=5.0
MinTolerableSpread=1.0
TolerableSpreadDist=2000.0
MaxSpreadDistFactor=2.0
AimingStyle=Original
ScanSpeedMultiplier=1.0
MaxSeekPitch=30.0
MaxSeekYaw=30.0
AimingSpeed=5.0
MinShootDelay=0.3
MaxShootDelay=0.6
[Bot Profile]
Name=sumo_enemy_bot
DodgeProfileNames=sumo_dodge
DodgeProfileWeights=1.0
DodgeProfileMaxChangeTime=5.0
DodgeProfileMinChangeTime=1.0
WeaponProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0
AimingProfileNames=Aimgod;Default;Default;Default;Default;Default;Default;Default
WeaponSwitchTime=3.0
UseWeapons=false
CharacterProfile=sumo_enemy_char
SeeThroughWalls=false
NoDodging=false
NoAiming=false
AbilityUseTimer=0.1
UseAbilityFrequency=1.0
UseAbilityFreqMinTime=0.1
UseAbilityFreqMaxTime=0.1
ShowLaser=false
LaserRGB=X=1.000 Y=0.300 Z=0.000
LaserAlpha=1.0
[Character Profile]
Name=sumo_player_char
MaxHealth=150.0
WeaponProfileNames=Harite;;;;;;;
MinRespawnDelay=1.0
MaxRespawnDelay=5.0
StepUpHeight=75.0
CrouchHeightModifier=0.8
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=10.0
MovementType=Base
MaxSpeed=1080.0
MaxCrouchSpeed=500.0
Acceleration=1750.0
AirAcceleration=16000.0
Friction=20.0
BrakingFrictionFactor=2.0
JumpVelocity=1900.0
Gravity=8.0
AirControl=0.5
CanCrouch=true
CanPogoJump=true
CanCrouchInAir=true
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=1
AirJumpVelocity=1900.0
MainBBType=Cylindrical
MainBBHeight=600.0
MainBBRadius=110.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=true
ProjBBType=Cylindrical
ProjBBHeight=600.0
ProjBBRadius=110.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=;;;
HideWeapon=true
AerialFriction=8.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.5
AllowBufferedJumps=false
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=50.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=16.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Character Profile]
Name=sumo_enemy_char
MaxHealth=500.0
WeaponProfileNames=;;;;;;;
MinRespawnDelay=0.1
MaxRespawnDelay=0.1
StepUpHeight=150.0
CrouchHeightModifier=0.6
CrouchAnimationSpeed=1.0
CameraOffset=X=0.000 Y=0.000 Z=0.000
HeadshotOnly=false
DamageKnockbackFactor=10.0
MovementType=Base
MaxSpeed=1400.0
MaxCrouchSpeed=200.0
Acceleration=40000.0
AirAcceleration=16000.0
Friction=8.0
BrakingFrictionFactor=2.0
JumpVelocity=1600.0
Gravity=6.0
AirControl=0.0
CanCrouch=true
CanPogoJump=false
CanCrouchInAir=false
CanJumpFromCrouch=false
EnemyBodyColor=X=255.000 Y=0.000 Z=0.000
EnemyHeadColor=X=255.000 Y=255.000 Z=255.000
TeamBodyColor=X=0.000 Y=0.000 Z=255.000
TeamHeadColor=X=255.000 Y=255.000 Z=255.000
BlockSelfDamage=false
InvinciblePlayer=false
InvincibleBots=false
BlockTeamDamage=false
AirJumpCount=0
AirJumpVelocity=800.0
MainBBType=Cylindrical
MainBBHeight=600.0
MainBBRadius=300.0
MainBBHasHead=true
MainBBHeadRadius=45.0
MainBBHeadOffset=0.0
MainBBHide=false
ProjBBType=Cylindrical
ProjBBHeight=600.0
ProjBBRadius=300.0
ProjBBHasHead=true
ProjBBHeadRadius=45.0
ProjBBHeadOffset=0.0
ProjBBHide=true
HasJetpack=false
JetpackActivationDelay=0.2
JetpackFullFuelTime=4.0
JetpackFuelIncPerSec=1.0
JetpackFuelRegensInAir=false
JetpackThrust=6000.0
JetpackMaxZVelocity=400.0
JetpackAirControlWithThrust=0.25
AbilityProfileNames=knockback.abilmelee;;;
HideWeapon=true
AerialFriction=0.0
StrafeSpeedMult=1.0
BackSpeedMult=1.0
RespawnInvulnTime=0.0
BlockedSpawnRadius=0.0
BlockSpawnFOV=0.0
BlockSpawnDistance=0.0
RespawnAnimationDuration=0.0
AllowBufferedJumps=true
BounceOffWalls=false
LeanAngle=0.0
LeanDisplacement=0.0
AirJumpExtraControl=0.0
ForwardSpeedBias=1.0
HealthRegainedonkill=0.0
HealthRegenPerSec=0.0
HealthRegenDelay=0.0
JumpSpeedPenaltyDuration=0.0
JumpSpeedPenaltyPercent=0.25
ThirdPersonCamera=false
TPSArmLength=300.0
TPSOffset=X=0.000 Y=150.000 Z=150.000
BrakingDeceleration=2048.0
VerticalSpawnOffset=0.0
TerminalVelocity=0.0
CharacterModel=None
CharacterSkin=Default
SpawnXOffset=0.0
SpawnYOffset=0.0
InvertBlockedSpawn=false
ViewBobTime=0.0
ViewBobAngleAdjustment=0.0
ViewBobCameraZOffset=0.0
ViewBobAffectsShots=false
IsFlyer=false
FlightObeysPitch=false
FlightVelocityUp=800.0
FlightVelocityDown=800.0
[Dodge Profile]
Name=sumo_dodge
MaxTargetDistance=500.0
MinTargetDistance=200.0
ToggleLeftRight=true
ToggleForwardBack=false
MinLRTimeChange=0.5
MaxLRTimeChange=1.0
MinFBTimeChange=0.2
MaxFBTimeChange=0.5
DamageReactionChangesDirection=false
DamageReactionChanceToIgnore=0.5
DamageReactionMinimumDelay=0.0
DamageReactionMaximumDelay=0.0
DamageReactionCooldown=1.0
DamageReactionThreshold=0.0
DamageReactionResetTimer=0.1
JumpFrequency=0.0
CrouchInAirFrequency=0.0
CrouchOnGroundFrequency=0.0
TargetStrafeOverride=Ignore
TargetStrafeMinDelay=0.125
TargetStrafeMaxDelay=0.25
MinProfileChangeTime=0.0
MaxProfileChangeTime=0.0
MinCrouchTime=0.2
MaxCrouchTime=0.3
MinJumpTime=0.2
MaxJumpTime=0.3
LeftStrafeTimeMult=1.0
RightStrafeTimeMult=1.0
StrafeSwapMinPause=0.05
StrafeSwapMaxPause=0.05
BlockedMovementPercent=1.0
BlockedMovementReactionMin=0.0
BlockedMovementReactionMax=0.0
WaypointLogic=Ignore
WaypointTurnRate=200.0
MinTimeBeforeShot=0.15
MaxTimeBeforeShot=0.25
IgnoreShotChance=0.0
ForwardTimeMult=0.8
BackTimeMult=0.8
DamageReactionChangesFB=false
[Weapon Profile]
Name=Harite
Type=Hitscan
ShotsPerClick=1
DamagePerShot=5.0
KnockbackFactor=80.0
TimeBetweenShots=0.3846
Pierces=false
Category=SemiAuto
BurstShotCount=1
TimeBetweenBursts=0.5
ChargeStartDamage=10.0
ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000
ChargeTimeToAutoRelease=2.0
ChargeTimeToCap=1.0
ChargeMoveSpeedModifier=1.0
MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000
MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000
InheritOwnerVelocity=0.0
OriginOffset=X=0.000 Y=0.000 Z=0.000
MaxTravelTime=5.0
MaxHitscanRange=3000.0
GravityScale=1.0
HeadshotCapable=true
HeadshotMultiplier=4.0
MagazineMax=0
AmmoPerShot=1
ReloadTimeFromEmpty=0.00001
ReloadTimeFromPartial=0.00001
DamageFalloffStartDistance=100000.0
DamageFalloffStopDistance=100000.0
DamageAtMaxRange=5.0
DelayBeforeShot=0.0
ProjectileGraphic=Ball
VisualLifetime=0.1
BounceOffWorld=false
BounceFactor=0.5
BounceCount=0
HomingProjectileAcceleration=0.0
ProjectileEnemyHitRadius=1.0
CanAimDownSight=false
ADSZoomDelay=0.0
ADSZoomSensFactor=0.7
ADSMoveFactor=1.0
ADSStartDelay=0.0
ShootSoundCooldown=0.001
HitSoundCooldown=0.001
HitscanVisualOffset=X=0.000 Y=0.000 Z=-50.000
ADSBlocksShooting=false
ShootingBlocksADS=false
KnockbackFactorAir=20.0
RecoilNegatable=false
DecalType=1
DecalSize=30.0
DelayAfterShooting=0.0
BeamTracksCrosshair=true
AlsoShoot=
ADSShoot=
StunDuration=0.0
CircularSpread=true
SpreadStationaryVelocity=0.0
PassiveCharging=false
BurstFullyAuto=true
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
HitscanRadius=0.0
HitscanVisualRadius=6.0
TaggingDuration=0.0
TaggingMaxFactor=1.0
TaggingHitFactor=1.0
RecoilCrouchScale=1.0
RecoilADSScale=1.0
PSRCrouchScale=1.0
PSRADSScale=1.0
ProjectileAcceleration=0.0
AccelIncludeVertical=false
AimPunchAmount=0.0
AimPunchResetTime=0.2
AimPunchCooldown=0.5
AimPunchHeadshotOnly=false
AimPunchCosmeticOnly=false
MinimumDecelVelocity=0.0
PSRManualNegation=false
PSRAutoReset=true
AimPunchUpTime=0.05
AmmoReloadedOnKill=0
CancelReloadOnKill=false
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
ADSScope=No Scope
ADSFOVOverride=104.0
ADSFOVScale=Apex Legends
ADSAllowUserOverrideFOV=false
IsBurstWeapon=false
ForceFirstPersonInADS=true
ZoomBlockedInAir=false
ADSCameraOffsetX=0.0
ADSCameraOffsetY=0.0
ADSCameraOffsetZ=0.0
QuickSwitchTime=0.1
WeaponModel=Healing Baller
WeaponAnimation=Primary
UseIncReload=false
IncReloadStartupTime=0.1
IncReloadLoopTime=0.1
IncReloadAmmoPerLoop=1
IncReloadEndTime=0.1
IncReloadCancelWithShoot=true
WeaponSkin=Default
ProjectileVisualOffset=X=0.000 Y=0.000 Z=-50.000
SpreadDecayDelay=0.0
ReloadBeforeRecovery=true
3rdPersonWeaponModel=None
3rdPersonWeaponSkin=Default
ParticleMuzzleFlash=None
ParticleWallImpact=Spark
ParticleBodyImpact=Spark
ParticleProjectileTrail=
ParticleHitscanTrace=None
ParticleMuzzleFlashScale=1.0
ParticleWallImpactScale=1.0
ParticleBodyImpactScale=1.0
ParticleProjectileTrailScale=1.0
Explosive=false
Radius=500.0
DamageAtCenter=100.0
DamageAtEdge=0.0
SelfDamageMultiplier=0.5
ExplodesOnContactWithEnemy=false
DelayAfterEnemyContact=0.0
ExplodesOnContactWithWorld=false
DelayAfterWorldContact=0.0
ExplodesOnNextAttack=false
DelayAfterSpawn=0.0
BlockedByWorld=false
SpreadSSA=1.0,1.0,-1.0,0.0
SpreadSCA=1.0,1.0,-1.0,0.0
SpreadMSA=1.0,1.0,-1.0,0.0
SpreadMCA=1.0,1.0,-1.0,0.0
SpreadSSH=1.0,1.0,-1.0,0.0
SpreadSCH=1.0,1.0,-1.0,0.0
SpreadMSH=1.0,1.0,-1.0,0.0
SpreadMCH=1.0,1.0,-1.0,0.0
MaxRecoilUp=0.0
MinRecoilUp=0.0
MinRecoilHoriz=0.0
MaxRecoilHoriz=0.0
FirstShotRecoilMult=1.0
RecoilAutoReset=false
TimeToRecoilPeak=0.05
TimeToRecoilReset=0.35
AAMode=0
AAPreferClosestPlayer=false
AAAlpha=0.05
AAMaxSpeed=1.0
AADeadZone=0.0
AAFOV=30.0
AANeedsLOS=true
TrackHorizontal=true
TrackVertical=true
AABlocksMouse=false
AAOffTimer=0.0
AABackOnTimer=0.0
TriggerBotEnabled=false
TriggerBotDelay=0.0
TriggerBotFOV=1.0
StickyLock=false
HeadLock=false
VerticalOffset=0.0
DisableLockOnKill=false
UsePerShotRecoil=false
PSRLoopStartIndex=0
PSRViewRecoilTracking=0.45
PSRCapUp=9.0
PSRCapRight=4.0
PSRCapLeft=4.0
PSRTimeToPeak=0.175
PSRResetDegreesPerSec=40.0
UsePerBulletSpread=false
PBS0=0.0,0.0
[Melee Ability Profile]
Name=knockback
MaxCharges=1.0
ChargeTimer=0.1
ChargesRefundedOnKill=0.0
DelayAfterUse=0.1
FullyAuto=true
AbilityDuration=0.1
HurtboxRadius=300.0
HurtboxDamage=10.0
HurtboxGroundKnockbackFactor=100.0
HurtboxAirKnockbackFactor=0.0
BlockAttackTimer=0.5
AbilityBlockedWhenAttacking=false
AmmoPerShot=1
FlatKnockbackHorizontal=0.0
FlatKnockbackVertical=0.0
FlatKnockbackHorizontalMin=0.0
FlatKnockbackVerticalMin=0.0
AIUseInCombat=true
AIUseOutOfCombat=true
AIUseOnGround=true
AIUseInAir=true
AIReuseTimer=0.1
AIMinSelfHealth=0.0
AIMaxSelfHealth=100.0
AIMinTargHealth=0.0
AIMaxTargHealth=100.0
AIMinTargDist=0.0
AIMaxTargDist=1000000.0
AIMaxTargFOV=360.0
AIDamageReaction=false
AIDamageReactionIgnoreChance=0.0
AIDamageReactionMinDelay=0.125
AIDamageReactionMaxDelay=0.25
AIDamageReactionCooldown=1.0
AIDamageReactionThreshold=0.0
AIDamageReactionResetTimer=0.1
[Map Data]
reflex map version 8
global
entity
type WorldSpawn
String32 targetGameOverCamera end
UInt8 playersMin 1
UInt8 playersMax 16
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-500.000000 -32.000000 0.000022
-495.000000 -32.000000 -94.999977
-495.000000 -16.000000 -94.999977
-500.000000 -16.000000 0.000022
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 5 4 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-495.000000 -32.000000 -94.999977
-480.000000 -32.000000 -179.999969
-480.000000 -16.000000 -179.999969
-495.000000 -16.000000 -94.999977
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-480.000000 -32.000000 -179.999969
-455.000000 -32.000000 -255.000000
-455.000000 -16.000000 -255.000000
-480.000000 -16.000000 -179.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-455.000000 -32.000000 -255.000000
-420.000000 -32.000000 -320.000000
-420.000000 -16.000000 -320.000000
-455.000000 -16.000000 -255.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-420.000000 -32.000000 -320.000000
-375.000000 -32.000000 -375.000000
-375.000000 -16.000000 -375.000000
-420.000000 -16.000000 -320.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-375.000000 -32.000000 -375.000000
-320.000000 -32.000000 -420.000031
-320.000000 -16.000000 -420.000031
-375.000000 -16.000000 -375.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-320.000000 -32.000000 -420.000031
-255.000031 -32.000000 -455.000031
-255.000031 -16.000000 -455.000031
-320.000000 -16.000000 -420.000031
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-255.000031 -32.000000 -455.000031
-180.000000 -32.000000 -479.999939
-180.000000 -16.000000 -479.999939
-255.000031 -16.000000 -455.000031
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-180.000000 -32.000000 -479.999939
-95.000031 -32.000000 -494.999969
-95.000031 -16.000000 -494.999969
-180.000000 -16.000000 -479.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
-95.000031 -32.000000 -494.999969
0.000000 -32.000000 -500.000000
0.000000 -16.000000 -500.000000
-95.000031 -16.000000 -494.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
0.000030 -32.000000 500.000061
-94.999969 -32.000000 495.000000
-94.999969 -16.000000 495.000000
0.000030 -16.000000 500.000061
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 5 4 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-94.999969 -32.000000 495.000000
-179.999939 -32.000000 479.999969
-179.999939 -16.000000 479.999969
-94.999969 -16.000000 495.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-179.999939 -32.000000 479.999969
-254.999939 -32.000000 454.999969
-254.999939 -16.000000 454.999969
-179.999939 -16.000000 479.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-254.999939 -32.000000 454.999969
-319.999969 -32.000000 419.999969
-319.999969 -16.000000 419.999969
-254.999939 -16.000000 454.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-319.999969 -32.000000 419.999969
-374.999817 -32.000000 374.999908
-374.999817 -16.000000 374.999908
-319.999969 -16.000000 419.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-374.999817 -32.000000 374.999908
-419.999908 -32.000000 320.000031
-419.999908 -16.000000 320.000031
-374.999817 -16.000000 374.999908
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-419.999908 -32.000000 320.000031
-454.999908 -32.000000 255.000031
-454.999908 -16.000000 255.000031
-419.999908 -16.000000 320.000031
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
-0.000000 -32.000000 0.000000
-454.999908 -32.000000 255.000031
-479.999847 -32.000000 179.999969
-479.999847 -16.000000 179.999969
-454.999908 -16.000000 255.000031
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
-479.999847 -32.000000 179.999969
-494.999878 -32.000000 95.000053
-494.999878 -16.000000 95.000053
-479.999847 -16.000000 179.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
-494.999878 -32.000000 95.000053
-499.999908 -32.000000 0.000032
-499.999908 -16.000000 0.000032
-494.999878 -16.000000 95.000053
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
500.000000 -32.000000 -0.000023
494.999939 -32.000000 94.999924
494.999939 -16.000000 94.999924
500.000000 -16.000000 -0.000023
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 5 4 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
494.999939 -32.000000 94.999924
479.999847 -32.000000 179.999878
479.999847 -16.000000 179.999878
494.999939 -16.000000 94.999924
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
479.999847 -32.000000 179.999878
454.999939 -32.000000 254.999939
454.999939 -16.000000 254.999939
479.999847 -16.000000 179.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
454.999939 -32.000000 254.999939
419.999939 -32.000000 319.999939
419.999939 -16.000000 319.999939
454.999939 -16.000000 254.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
419.999939 -32.000000 319.999939
374.999817 -32.000000 374.999756
374.999817 -16.000000 374.999756
419.999939 -16.000000 319.999939
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
374.999817 -32.000000 374.999756
320.000000 -32.000000 419.999878
320.000000 -16.000000 419.999878
374.999817 -16.000000 374.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
320.000000 -32.000000 419.999878
255.000031 -32.000000 454.999786
255.000031 -16.000000 454.999786
320.000000 -16.000000 419.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
255.000031 -32.000000 454.999786
179.999939 -32.000000 479.999786
179.999939 -16.000000 479.999786
255.000031 -16.000000 454.999786
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
179.999939 -32.000000 479.999786
95.000092 -32.000000 494.999756
95.000092 -16.000000 494.999756
179.999939 -16.000000 479.999786
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
95.000092 -32.000000 494.999756
0.000038 -32.000000 499.999817
0.000038 -16.000000 499.999817
95.000092 -16.000000 494.999756
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
0.000015 -32.000000 -499.999969
94.999886 -32.000000 -494.999908
94.999886 -16.000000 -494.999908
0.000015 -16.000000 -499.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 5 4 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
94.999886 -32.000000 -494.999908
179.999832 -32.000000 -479.999786
179.999832 -16.000000 -479.999786
94.999886 -16.000000 -494.999908
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
179.999832 -32.000000 -479.999786
254.999893 -32.000000 -454.999908
254.999893 -16.000000 -454.999908
179.999832 -16.000000 -479.999786
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
254.999893 -32.000000 -454.999908
319.999908 -32.000000 -419.999908
319.999908 -16.000000 -419.999908
254.999893 -16.000000 -454.999908
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
319.999908 -32.000000 -419.999908
374.999756 -32.000000 -374.999817
374.999756 -16.000000 -374.999817
319.999908 -16.000000 -419.999908
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
374.999756 -32.000000 -374.999817
419.999847 -32.000000 -319.999969
419.999847 -16.000000 -319.999969
374.999756 -16.000000 -374.999817
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
419.999847 -32.000000 -319.999969
454.999695 -32.000000 -255.000046
454.999695 -16.000000 -255.000046
419.999847 -16.000000 -319.999969
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
454.999695 -32.000000 -255.000046
479.999725 -32.000000 -179.999908
479.999725 -16.000000 -179.999908
454.999695 -16.000000 -255.000046
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 5 2 1 0 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
479.999725 -32.000000 -179.999908
494.999695 -32.000000 -95.000076
494.999695 -16.000000 -95.000076
479.999725 -16.000000 -179.999908
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
0.000000 -16.000000 0.000000
0.000000 -32.000000 0.000000
494.999695 -32.000000 -95.000076
499.999817 -32.000000 -0.000046
499.999817 -16.000000 -0.000046
494.999695 -16.000000 -95.000076
faces
0.000000 0.000000 1.000000 1.000000 0.000000 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 4 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 0 1 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 0 5 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 4 3 2 5 0x00000000
brush
vertices
-896.000000 -48.000000 896.000000
896.000000 -48.000000 896.000000
896.000000 -48.000000 -896.000000
-896.000000 -48.000000 -896.000000
-896.000000 -64.000000 896.000000
896.000000 -64.000000 896.000000
896.000000 -64.000000 -896.000000
-896.000000 -64.000000 -896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 structural/dev/dev_grey128
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 structural/dev/dev_grey128
brush
vertices
-896.000000 -32.000000 896.000000
896.000000 -32.000000 896.000000
896.000000 -32.000000 -896.000000
-896.000000 -32.000000 -896.000000
-896.000000 -48.000000 896.000000
896.000000 -48.000000 896.000000
896.000000 -48.000000 -896.000000
-896.000000 -48.000000 -896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/misc/blackout
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/misc/blackout
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/misc/blackout
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/misc/blackout
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/misc/blackout
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/misc/blackout
brush
vertices
-896.000000 576.000000 -880.000000
896.000000 576.000000 -880.000000
896.000000 576.000000 -896.000000
-896.000000 576.000000 -896.000000
-896.000000 -32.000000 -880.000000
896.000000 -32.000000 -880.000000
896.000000 -32.000000 -896.000000
-896.000000 -32.000000 -896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
-896.000000 576.000000 -896.000000
-896.000366 576.000000 895.999573
-880.000366 576.000000 895.999634
-880.000183 576.000000 -896.000000
-896.000000 -32.000000 -896.000000
-896.000366 -32.000000 895.999573
-880.000366 -32.000000 895.999634
-880.000183 -32.000000 -896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
896.000000 576.000000 896.000000
896.000000 576.000000 -895.999023
880.000000 576.000000 -896.000000
880.000000 576.000000 896.000000
896.000000 -32.000000 896.000000
896.000000 -32.000000 -895.999023
880.000000 -32.000000 -896.000000
880.000000 -32.000000 896.000000
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
brush
vertices
896.000244 576.000000 879.999878
-895.999756 576.000000 879.999878
-895.999756 576.000000 895.999878
896.000244 576.000000 895.999878
896.000244 -32.000000 879.999878
-895.999756 -32.000000 879.999878
-895.999756 -32.000000 895.999878
896.000244 -32.000000 895.999878
faces
0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000
0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000
entity
type CameraPath
UInt8 posLerp 2
UInt8 angleLerp 2
entity
type PlayerSpawn
Vector3 position 0.000000 0.000000 -200.000000
Bool8 teamB 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
entity
type PlayerSpawn
Vector3 position 0.000000 150.000000 0.000000
Vector3 angles 180.000000 0.000000 0.000000
Bool8 teamA 0
Bool8 initialSpawn 0
Bool8 modeCTF 0
Bool8 modeFFA 0
Bool8 modeTDM 0
Bool8 mode1v1 0
Bool8 modeRace 0
Bool8 mode2v2 0
|
44cf018eb19664adce2ebf17a99a28bb44e81ee9 | 08631f9e445215856d7b592572df27adc7c4ec49 | /d_examples/h5ex_g_create.tst | d1c92359b112db6a2b5a671cff3c7bb7532e2c75 | [
"LicenseRef-scancode-llnl",
"LicenseRef-scancode-hdf4",
"LicenseRef-scancode-hdf5",
"BSL-1.0"
] | permissive | FrankLIKE/d_hdf5 | 51a1717c81e63bb9dc3acf0dd72610f70ae735b9 | f076b61dfd3dfe16c6113c787f6b8d69dcb6c78a | refs/heads/master | 2021-01-22T17:28:09.836700 | 2014-12-22T08:22:03 | 2014-12-22T08:22:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 141,981 | tst | h5ex_g_create.tst | <!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" lang="en-US">
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" lang="en-US">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html lang="en-US">
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Kaleidic Commentary | Laeeth's thoughts on markets and society</title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="http://laeeth.com/podcast/xmlrpc.php">
<!--[if lt IE 9]>
<script src="http://laeeth.com/podcast/wp-content/themes/twentyfourteen/js/html5.js"></script>
<![endif]-->
<link rel="alternate" type="application/rss+xml" title="Kaleidic Commentary » Feed" href="http://laeeth.com/podcast/?feed=rss2" />
<link rel="alternate" type="application/rss+xml" title="Kaleidic Commentary » Comments Feed" href="http://laeeth.com/podcast/?feed=comments-rss2" />
<link rel='stylesheet' id='jetpack-subscriptions-css' href='http://laeeth.com/podcast/wp-content/plugins/jetpack/modules/subscriptions/subscriptions.css?ver=3.9.2' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack-widgets-css' href='http://laeeth.com/podcast/wp-content/plugins/jetpack/modules/widgets/widgets.css?ver=20121003' type='text/css' media='all' />
<link rel='stylesheet' id='twentyfourteen-lato-css' href='//fonts.googleapis.com/css?family=Lato%3A300%2C400%2C700%2C900%2C300italic%2C400italic%2C700italic' type='text/css' media='all' />
<link rel='stylesheet' id='genericons-css' href='http://laeeth.com/podcast/wp-content/plugins/jetpack/_inc/genericons/genericons.css?ver=3.0.3' type='text/css' media='all' />
<link rel='stylesheet' id='twentyfourteen-style-css' href='http://laeeth.com/podcast/wp-content/themes/twentyfourteen/style.css?ver=3.9.2' type='text/css' media='all' />
<!--[if lt IE 9]>
<link rel='stylesheet' id='twentyfourteen-ie-css' href='http://laeeth.com/podcast/wp-content/themes/twentyfourteen/css/ie.css?ver=20131205' type='text/css' media='all' />
<![endif]-->
<link rel='stylesheet' id='sharedaddy-css' href='http://laeeth.com/podcast/wp-content/plugins/jetpack/modules/sharedaddy/sharing.css?ver=2.9.3' type='text/css' media='all' />
<script type='text/javascript' src='http://laeeth.com/podcast/wp-includes/js/jquery/jquery.js?ver=1.11.0'></script>
<script type='text/javascript' src='http://laeeth.com/podcast/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://laeeth.com/podcast/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://laeeth.com/podcast/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 3.9.2" />
<link rel='shortlink' href='http://wp.me/4APCy' />
<style type='text/css'>img#wpstats{display:none}</style> <style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
<style type="text/css">.broken_link, a.broken_link {
text-decoration: line-through;
}</style>
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Kaleidic Commentary" />
<meta property="og:description" content="Laeeth's thoughts on markets and society" />
<meta property="og:url" content="http://laeeth.com/podcast/" />
<meta property="og:site_name" content="Kaleidic Commentary" />
<meta property="og:image" content="http://wordpress.com/i/blank.jpg" />
<meta name="twitter:site" content="@jetpack" />
</head>
<body class="home blog custom-background masthead-fixed list-view grid">
<div id="page" class="hfeed site">
<header id="masthead" class="site-header" role="banner">
<div class="header-main">
<h1 class="site-title"><a href="http://laeeth.com/podcast/" rel="home">Kaleidic Commentary</a></h1>
<div class="search-toggle">
<a href="#search-container" class="screen-reader-text">Search</a>
</div>
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
<h1 class="menu-toggle">Primary Menu</h1>
<a class="screen-reader-text skip-link" href="#content">Skip to content</a>
<div class="nav-menu"></div>
</nav>
</div>
<div id="search-container" class="search-box-wrapper hide">
<div class="search-box">
<form role="search" method="get" class="search-form" action="http://laeeth.com/podcast/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" title="Search for:" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form> </div>
</div>
</header><!-- #masthead -->
<div id="main" class="site-main">
<div id="main-content" class="main-content">
<div id="featured-content" class="featured-content">
<div class="featured-content-inner">
<article id="post-349" class="post-349 post type-post status-publish format-standard hentry category-agriculture category-baltics category-bitcoin category-commodities category-contrarian category-gold category-hyperinflation category-inflation category-mcgilchrist category-musings category-newmonetaryeconomics category-psychology category-thinking tag-bitcoin tag-featured">
<a class="post-thumbnail" href="http://laeeth.com/podcast/?p=349">
</a>
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=6" title="View all posts in agriculture" rel="category">agriculture</a>, <a href="http://laeeth.com/podcast/?cat=28" title="View all posts in baltics" rel="category">baltics</a>, <a href="http://laeeth.com/podcast/?cat=35" title="View all posts in bitcoin" rel="category">bitcoin</a>, <a href="http://laeeth.com/podcast/?cat=7" title="View all posts in commodities" rel="category">commodities</a>, <a href="http://laeeth.com/podcast/?cat=17" title="View all posts in contrarian" rel="category">contrarian</a>, <a href="http://laeeth.com/podcast/?cat=13" title="View all posts in gold" rel="category">gold</a>, <a href="http://laeeth.com/podcast/?cat=10" title="View all posts in hyperinflation" rel="category">hyperinflation</a>, <a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a>, <a href="http://laeeth.com/podcast/?cat=25" title="View all posts in mcgilchrist" rel="category">mcgilchrist</a>, <a href="http://laeeth.com/podcast/?cat=5" title="View all posts in musings" rel="category">musings</a>, <a href="http://laeeth.com/podcast/?cat=36" title="View all posts in newmonetaryeconomics" rel="category">newmonetaryeconomics</a>, <a href="http://laeeth.com/podcast/?cat=18" title="View all posts in psychology" rel="category">psychology</a>, <a href="http://laeeth.com/podcast/?cat=24" title="View all posts in thinking" rel="category">thinking</a></span>
</div><!-- .entry-meta -->
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=349" rel="bookmark">“Is Bitcoin a bubble?” Not really…</a></h1> </header><!-- .entry-header -->
</article><!-- #post-## -->
<article id="post-220" class="post-220 post type-post status-publish format-standard hentry category-philosophy tag-featured">
<a class="post-thumbnail" href="http://laeeth.com/podcast/?p=220">
</a>
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=4" title="View all posts in philosophy" rel="category">philosophy</a></span>
</div><!-- .entry-meta -->
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=220" rel="bookmark">Why Markets Have Been ‘Difficult’</a></h1> </header><!-- .entry-header -->
</article><!-- #post-## -->
<article id="post-356" class="post-356 post type-post status-publish format-standard hentry category-agriculture category-commodities category-inflation category-mcgilchrist category-philosophy category-psychology category-solar tag-featured">
<a class="post-thumbnail" href="http://laeeth.com/podcast/?p=356">
</a>
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=6" title="View all posts in agriculture" rel="category">agriculture</a>, <a href="http://laeeth.com/podcast/?cat=7" title="View all posts in commodities" rel="category">commodities</a>, <a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a>, <a href="http://laeeth.com/podcast/?cat=25" title="View all posts in mcgilchrist" rel="category">mcgilchrist</a>, <a href="http://laeeth.com/podcast/?cat=4" title="View all posts in philosophy" rel="category">philosophy</a>, <a href="http://laeeth.com/podcast/?cat=18" title="View all posts in psychology" rel="category">psychology</a>, <a href="http://laeeth.com/podcast/?cat=31" title="View all posts in solar" rel="category">solar</a></span>
</div><!-- .entry-meta -->
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=356" rel="bookmark">Breakeven inflation – reflation time?</a></h1> </header><!-- .entry-header -->
</article><!-- #post-## -->
</div><!-- .featured-content-inner -->
</div><!-- #featured-content .featured-content -->
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<article id="post-431" class="post-431 post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=431" rel="bookmark">Quora reply: “What will finance look like in a decade?”</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=431" rel="bookmark"><time class="entry-date" datetime="2014-09-04T22:31:42+00:00">September 4, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=431#respond" title="Comment on Quora reply: “What will finance look like in a decade?”">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>Hi.</p>
<p>My background – Cambridge (Trinity) Economics, DE Shaw, Citadel, startup macro fund. I appreciate technology (at school I designed computers for fun) but at the same time I think we lose a great deal by applying it in a way that is not conscious or thought-through.</p>
<p>I don’t have time to write much for now. But I do agree with David Friedman about the importance of bitcoin, or bitcoin-like technologies. It is a classic development out of the Innovator’s Dilemma by Clayton Christensen. New innovations often begin at the low end and have many unsatisfactory attributes; over time the bugs are worked out and a supporting infrastructure emerges. By the time the incumbents realize the threat it may be too late to kill the incumbent. (And it’s not clear what established financial institutions might be able to offer in the place of bitcoin).</p>
<p>The reason it has broader significance for financial markets and the economy is that it comes in the context of the financial industry being ‘blown to bits’ – as a former inv bank CEO remarked to me, what happened to the music business is now happening to banking.</p>
<p>Money performs three functions: unit of account, medium of exchange, and store of value. Bitcoin is a horrible unit of account, not so great as a store of value (for non-speculators), but a very effective medium of exchange (especially in certain contexts: today including the black+grey economies and emerging markets, but the useable domains will widen with time). So the concerns about deflation due to fixed supply are utterly specious (I have longer blog post if interested).</p>
<p>This relates to some work done in the 90s and earlier on the ‘new monetary economics’ – on which topic the best book is by Randall Kroszner (now senior at the Fed) and Tyler Cowen (of <a href="http://marginalrevolution.com/">Marginal REVOLUTION</a>).<br />Why are commercial and retail banks necessary? A textbook says that they are important for the payments system, to hold deposits, and for their provision of lending services. Each of these functions can now to a certain extent be provided by alternative institutions and market structures, and this extent will grow very significantly over the coming decade. Money market mutual funds have long substituted for deposits (let’s abstract away from questions of credit quality for now); bitcoin has demonstrated that non-bank payment systems are quite feasible; and lending is changing too.</p>
<p>In the past banks had a monopoly on being able to make informed lending decisions because they were the only ones that knew the borrower. On the one hand, branch managers would actually often have personal contact with the borrower; and on the other, transaction data would be stuck with the bank and nobody else could easily get access to it. Clearly that has changed on both fronts – in many countries there has been a hollowing out of expertise so that branch managers do not truly know their customers anymore; and on the other, accessing and processing transaction data is a completely different game today.<br />So hedge fund lending (as well as to a small extent today, crowd funding and crowd lending) has started to become a credible substitute for bank lending in many domains, and these domains will grow over time as these financial innovations mature and make better use of technology. As is often the case, it starts at the fringe and in niche uses – but what is niche today becomes mainstream in a decade.<br />The consequence is that one can imagine a situation (which I imagine is not so unlikely) where banks no longer have the strategic importance that they do today. Because if a bank goes bust the cash machines keep functioning, and firms are continue to able to access credit. This will have important implications for how they are regulated, and should we reach this stage, one could imagine the withering away of deposit insurance and the moral hazard that accompanies it.</p>
<p>With regards to the investment side, I agree on the one hand that there is much more mileage left in the further application of technology to the investment process, but on the other I think that we are starting to see the limits of pure analysis (and therefore the benefits of other kinds of thinking that are not purely analytical).<br />For the former point, one can go elsewhere for discussion of the impact of big data and machine learning on the financial industry. (It’s a super important development, but hard to summarize in a powerful way because it changes every part of the investment process).</p>
<p>For the latter point, I think what is key is that no analytical approach anticipated the 2008 crisis (and many did not anticipate the recovery in 2009, only responding to it fairly late). And of those who did see things coming (Marc Faber, Jim Rogers, Fred Sheehan, and a few others) in a timely way and who were not in the habit of crying wolf, most did so by their use of the application of economic principles in an intuitive manner.</p>
<p>Most models – even today – are not very good at anticipating that the music is about to change. For the time being (and perhaps for a very long time indeed) human beings with experience and expertise are very much better. Financial markets are about change, and a Cartesian model cannot capture what is outside its set of parameters.</p>
<p>This being said, technology can act as a tremendous amplifier of discretionary human expertise, so I think we are likely to see some development in this direction. Sentiment and media analysis has been a hot area for a while, mostly for quant models, but they may turn out to be of even greater benefit for enhancing the discretionary investment process.</p>
<p>I hope that was clear enough, and I am open to any questions/disagreements etc.</p>
<p>Laeeth.</p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-429" class="post-429 post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=429" rel="bookmark">Comment on Koppl: Animal Spirits vs Policy Uncertainty</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=429" rel="bookmark"><time class="entry-date" datetime="2014-09-01T21:37:40+00:00">September 1, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=429#respond" title="Comment on Comment on Koppl: Animal Spirits vs Policy Uncertainty">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>Koppl:</p>
<blockquote><p>I take a rather different view of both economic theory and the crisis in my recent IEA Hobart paper <em><a href="http://www.iea.org.uk/blog/from-crisis-to-confidence-macroeconomics-after-the-crash">From Crisis to Confidence: Macroeconomics after the Crash</a>.</em>
<p>Overall, Blanchard’s message is meant to be reassuring: We the smart macro-finance experts have now got the message on nonlinearities. So no further need to worry, we’ve got the situation in hand. To keep the system out of the “dark corners,” however, we will need more discretionary authority. You don’t mind trading off a bit of financial freedom for greater financial safety do you?
<p> </p>
</blockquote>
<p>One very simple test to distinguish between the effects of animal spirits and policy uncertainty is to observe the pronouncements and forecasts of policymakers at extremes in asset prices and to relate these to those of financial practitioners, academic economists, and entrepreneurs. Policymakers presumably – even under the most hardcore public choice view of the world – generally believe that their policy is the right one for the circumstances.
<p>If the policy uncertainty view is the more important explanation of things,, it would imply a relative optimism amongst policymakers, perhaps too amongst academics, and a depressed view of things amongst entrepreneurs and financial practitioners.
<p>Beyond looking at patterns of dispersion in forecasts, one may arrive at a tolerable gauge of the affect of a group by applying machine learning techniques to the set of writings generated by this group.
<p>If on the other hand, it is affect that is more important during an episode then one should see complacency and optimism amongst all participants at the peak, and despondency and gloom, at the bottom and for some period afterwards.and one would not expect this pattern of dispersion.
<p>I note that the relative importance of affect versus policy uncertainty need not have direct implications for how activist policy should be. Indeed should it be the case that animal spirits dominate then it constitutes an important reason not to be activist since it means that policy makers suffer from the same perceptual warping experienced by private agents.
<p>My own view, for what it is worth, is that negative affect drives policy uncertainty. The mass emotional response to a downturn is to make sure it doesn’t happen again and to lash out and punish those perceived to be responsible, or any convenient scapegoat failing that. So affect is primary, but policy uncertainty may prolong the downturn.
<p>An implication of this view (for which I do not claim originality) is to expect de facto policy rules loosened as a boom progresses, and tightened after a downturn. Ceteris paribus – there are other factors at play.
<p>Laeeth.</p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-427" class="post-427 post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=427" rel="bookmark">Withered Emotional Life in Modernity</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=427" rel="bookmark"><time class="entry-date" datetime="2014-08-10T23:07:02+00:00">August 10, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=427#respond" title="Comment on Withered Emotional Life in Modernity">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<h4>Via <a href="http://www.gornahoor.net/?p=7429">Gornahoor</a>:</h4>
<p> </p>
<blockquote><p>What <strong>Abbe Prevost</strong> wrote some 300 years in his novel <em>Manon Lescaut</em> applies all the more today:
<p>The ordinary run of men are susceptible to only five or six passions, within whose compass they live their whole lives, and to which all their emotions are reduced. Remove love and hate, pleasure and pain hope and fear, and there is nothing left for them to feel. But people whose characters are more noble can be stirred in a thousand different ways; it is as if they had more than five senses, and could receive ideas and sensations that transcend the ordinary limits of human nature.
<p>Perhaps this is a slight exaggeration, unless you consider that anger, anxiety, worry—all experienced by moderns—are forms of fear, sexual desire a form of pleasure, and so on. What is missing, however, are feelings of awe, wonder, and reverence. Or shame of one’s nakedness. Or guilt about practices that used to be condemned by well-born and healthy minded men, yet are praised today.
<p>The Knight had deep feelings of loyalty and fidelity to his superiors and his land, which he could never bring himself to broach. Who experiences that today, other than perhaps partisans? Yet they do not look out for the common good, but only for the good of their party.</p>
</blockquote>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-425" class="post-425 post type-post status-publish format-standard hentry category-civilization category-culture">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=19" title="View all posts in civilization" rel="category">civilization</a>, <a href="http://laeeth.com/podcast/?cat=22" title="View all posts in culture" rel="category">culture</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=425" rel="bookmark">Understatement in Beowulf</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=425" rel="bookmark"><time class="entry-date" datetime="2014-06-02T18:58:11+00:00">June 2, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=425#respond" title="Comment on Understatement in Beowulf">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>(via BGC)</p>
<p>from “Beowulf” by Marc Hudson and Martin Garrett</p>
<p> </p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/06/image.png"><img title="image" style="border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0px; display: inline" border="0" alt="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/06/image_thumb.png" width="572" height="127"></a> </p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/06/image1.png"><img title="image" style="border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0px; display: inline" border="0" alt="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/06/image_thumb1.png" width="635" height="624"></a> </p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/06/image2.png"><img title="image" style="border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0px; display: inline" border="0" alt="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/06/image_thumb2.png" width="581" height="252"></a></p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-417" class="post-417 post type-post status-publish format-standard hentry category-civilization category-culture category-mcgilchrist">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=19" title="View all posts in civilization" rel="category">civilization</a>, <a href="http://laeeth.com/podcast/?cat=22" title="View all posts in culture" rel="category">culture</a>, <a href="http://laeeth.com/podcast/?cat=25" title="View all posts in mcgilchrist" rel="category">mcgilchrist</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=417" rel="bookmark">Dr Sheldrake on the loss from professionalisation and specialisation in academe</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=417" rel="bookmark"><time class="entry-date" datetime="2014-05-31T20:03:44+00:00">May 31, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=417#respond" title="Comment on Dr Sheldrake on the loss from professionalisation and specialisation in academe">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>“In Charles Darwin’s time there was no great division between serious scientific enquiry and natural history, largely the province of amateurs. Darwin himself was a natural historian, and lived as a private gentleman with no academic post. However, the professionalization of biology which began in the late nineteenth century has now created a wide gulf between academic scientists busily pursuing their careers, and natural historians, studying various aspects of the natural world for the love of doing so. The knowledge and understanding of the naturalist is generally considered to be inferior to that of the professional scientist. But it seems to me that the opposite is true; the knowledge of the naturalist, which comes from an intimate relationship with nature, is deeper and truer than the kind obtained by detached mechanistic analysis. Of course, ideally, the direct experience of the naturalist and the systematic investigations of the professional scientist can complement and illuminate each other. Contemporary examples of such a synthesis are the study of bird migration, which involves a fruitful collaboration between professional scientists and amateur ornithologists, and the wonderfully illuminating accounts of the development of the English countryside by the botanist Oliver Rackham.<br />Knowledge gained through experience of plants and animals is not an inferior substitute for proper scientific knowledge; it is the real thing. Direct experience is the only way to build up an understanding which is not only intellectual, but intuitive and practical, involving the senses and the heart as well as the rational mind. Scientific investigations can illuminate and enrich this direct practical knowledge, but they are no substitute for it — indeed they depend on it themselves.”</p>
<p><u>(The parallel to the relationship of practitioners and academic economists ought to be obvious</u></p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-415" class="post-415 post type-post status-publish format-standard hentry category-civilization category-musings category-psychology category-solar">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=19" title="View all posts in civilization" rel="category">civilization</a>, <a href="http://laeeth.com/podcast/?cat=5" title="View all posts in musings" rel="category">musings</a>, <a href="http://laeeth.com/podcast/?cat=18" title="View all posts in psychology" rel="category">psychology</a>, <a href="http://laeeth.com/podcast/?cat=31" title="View all posts in solar" rel="category">solar</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=415" rel="bookmark">Repentance, morale, and solar activity</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=415" rel="bookmark"><time class="entry-date" datetime="2014-05-31T19:59:22+00:00">May 31, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=415#respond" title="Comment on Repentance, morale, and solar activity">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>Note to a friend:
<p>Our time might be characterized both by a loss of courage, and a remarkable tendency of people in the West to believe that no matter what they may do (or fail to do) they are ‘good people’ and without fault. (One is reminded of the murderer who was a patient of ‘Theodore Dalrymple’). A surprising shift indeed given that so many previous generations should have thought themselves to be poor sinners.
<p>I sent before some charts from google ngrams showing interest in religious themes (eg mention of the devil) and truth (mention of truth and of falsehood). Google ngrams counts the incidence of a particular word in the books google has indexed for that year, and shows the time series.
<p>I have been thinking about this topic for almost eight years now, wondering how we moved from the London portrayed by Hogarth (his depiction seems not to be wholly unfair) to that of the Victorians, obviously in the context of what one observed in London nightlife c. 2006 (and later on, it became clear, in the behaviour of business people during the day).
<p>In our Cartesian era, we tend to believe that any kind of shift in society must be driven by a chain of linear causality. Having studied markets for a while now, I have come to be skeptical of this idea – as applied to markets, but also to broader social trends. Sometimes things just shift of their own accord because people en masse are tired of feeling and acting in certain ways; often, however, there may be an external influence that may not always sit well with our self-conception as autonomous agents.
<p>I took a look now on repentance specifically, and you see a similar pattern (to that of religious interest, and an interest in truth). A climax quite late into the Maunder and Dalton solar minima (from memory, I think truth spiked up quite early).
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/05/image5.png"><img title="image" style="border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0px; display: inline" border="0" alt="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/05/image_thumb5.png" width="1351" height="508"></a> </p>
<p>According to this source (which may be missing some nuances): <a href="http://psychology.wikia.com/wiki/Repentance">http://psychology.wikia.com/wiki/Repentance</a></p>
<p>In Christianity, “The chastisements of God are sometimes for the purpose of bringing His wandering children back to repentance” and indeed these solar minima were certainly times of greater adversity – higher food prices, and greater mortality (I believe).
<p>Furthermore, I think that what holds people back from admitting their sins is a moral fragility (you have said something similar I think). People deep down fear that if they admit their sins it will be overwhelming; they will not be able to cope, and they will collapse in on themselves.
<p>The ability to confront reality as it is rather than as we wish it would be (and that includes the awful truth about our own weaknesses) is, I believe, linked to morale – an important concept about which I have been able to find little written in modern times (perhaps due to my lack of skill and knowledge). It seems to be a profound basic variable that exerts a global influence on cognitive perception, processing, and acting. (I am kind of making a link to what Sloman has written about depression as an adaptive response to a person experiencing repeated setbacks, but not accepting their new lower-status position; the neuroendocrine system kicks in to keep them alive in the ancestral environment. Low morale seems to be a sister to depression, but having a highly contagious, mass aspect to it).
<p>I think that colder weather tends to make people more vigorous and to increase morale – I got this idea from Wheeler but I have found nothing elsewhere on it – and that too-warm weather makes people lose their nerve and succumb to decadence. One can imagine that in the ancestral environment you didn’t stay alive long in a cold climate if you gave up too easily. Possibly one might compare the determination of the Germans vs the Italians in WW2, both fighting a hopeless cause. (Incidentally it was very warm then, up until the shocking and unexpected Russian winter which, coincidentally or not, marked the high tide in German fortunes). This idea is of course scientifically indefensible – I have no studies to point to that I have found. But there might be something to it, even so.
<p>(Cold, wet weather is especially conducive to vigour and morale according to Wheeler. I don’t know how to form a view about rainfall, but I would not be surprised if we are also in a wet era for a while).
<p>So that might be another route by which periods of extended low solar activity (grand minima) lead to higher morale and then to repentance. On the one hand people experience greater adversity, and on the other they are given the moral courage to confront their weaknesses, and recognition of this leads eventually to repentance.
<p>Since I am making indefensible assertions, I would suggest also that people tend more towards monogamy when it is colder. Amusingly, that was the finding of a ‘highly scientific’ dating site survey (taken as propaganda by the AGW proponents – my interest was from a different perspective).
<p>The relevance of all this today, is that many respectable specialists in the field believe the sun entered a grand minimum in 2000 (the Eddy Minimum), and that we have decades of cooling ahead. People have to softsoap the latter to get published – they say that it will somewhat offset the impact of AGW, but I suspect the reality may be rather different. Ocean cycles are also a factor, but their influence is not straightforward (some of these were only very recently discovered).
<p>I have the idea that such episodes have lasting effects, and it is many decades at least before they are entirely dissipated.
<p>
<p>Link here to a Brigham Young speech on repentance:<br />
<blockquote>
<p><a href="http://speeches.byu.edu/?act=viewitem&id=96">http://speeches.byu.edu/?act=viewitem&id=96</a><br />“While assisting individuals who want to overcome their moral weaknesses, I have noticed problems in how they approach the repentance process. In analyzing these problems, I have found it helpful to organize the elements of repentance under three broad categories.<br />First is self-confrontation. This involves recognizing that a sin has been committed and that repentance is needed. Also, experiencing sorrow or remorse, making confession, and suffering the consequences of having broken the moral law are involved.
<p>The second category concerns self-control. This requires forsaking the sin and developing a pattern of self-regulation that is incorporated into a new and morally benevolent lifestyle.
<p>The third category concerns self-sacrifice. Under this heading I include restitution and reconciling, restoring, forgiving, obeying, and serving.
<p>Today I will focus primarily on the first, self-confrontation, and the third, self-sacrifice, because these are the two areas in which I have frequently noticed deficiencies in our understanding of repentance and in our ability to implement it. To the extent that we fail to fully apply these two phases, we become vulnerable to moral relapse and to repeating the behaviors we had temporarily forsaken. We seem to do a better job of self-control by forsaking immoral conduct for periods of time while we are under the pressure of the repentance process and feeling the direction of the Lord or of a Church authority.
<p>Self-confrontation seems difficult for many of us. It requires understanding how we avoid the truth about ourselves and what is needed to overcome that avoidance. It is said that we must recognize our errors, feel remorse or sorrow, and make confession; but this creates an immediate threat to our self-image—and by nature we tend to protect ourselves from full disclosure of our faults or, when exposed, to justify or rationalize our misconduct.
<p>Evidences of the fears and conflicts that are provoked by self-confrontation arose in a study of sixty BYU students that some of my colleagues and I did with support from the BYU Counseling Center and the BYU Comprehensive Clinic. We found it encouraging that a majority of the students reported abiding by the standards of the gospel. On the other hand, we found among those who had deviated that many avoided the repentance process as outlined in the scriptures and the writings of General Authorities.
<p>Their ways of handling deviations were diverse, such as simply waiting until their feelings of guilt subsided; attempting to convince themselves that what they had done was really not that bad; doing something righteous to balance their account; promising themselves (and God) that they would avoid it the next time; punishing themselves by calling themselves worthless and feeling bad for one or two days; trying not to think about it; and avoiding spiritual contexts because they felt unclean.
<p>These practices represent defense mechanisms (denial, suppression, and rationalization)—their purpose is to defend self-esteem. The students had defined themselves as righteous, and evidence to the contrary threatened their self-images. To follow the practice of confession and repentance would have required them to acknowledge their unrighteous actions. This reflects the problem of emphasizing an external image so much that honest self-disclosure is avoided (see page 97 of Bergin, A. E., Stinchfield, R. D., Gaskin, T. A., Masters, K. S., Sullivan, C. E., “Religious Lifestyles and Mental Health: An Exploratory Study,” Journal of Counseling Psychology 35 [1988]: 91–98).”</p>
</blockquote>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-411" class="post-411 post type-post status-publish format-standard hentry category-civilization">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=19" title="View all posts in civilization" rel="category">civilization</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=411" rel="bookmark">A bull market in nagging</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=411" rel="bookmark"><time class="entry-date" datetime="2014-05-30T19:58:28+00:00">May 30, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=411#respond" title="Comment on A bull market in nagging">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/05/image4.png"><img title="image" style="border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0px; display: inline" border="0" alt="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/05/image_thumb4.png" width="1028" height="426"></a>
<p>pronounced in Africa and some other emerging regions. (I stripped out things like nagging cough).</p>
<p>This is from google trends search data.</p>
<p>I suspect this relates to a rise in morale – people no longer willing to put up with things that should be changed, and expression takes the form that is possible, even if perhaps there are better ways. Women are less easily demoralized, perhaps because in history it was less dangerous to assert themselves in womanly ways (whereas a man would get himself killed by persisting following a series of defeats), and so it makes some sense that coming out of the kind of period we are in, women would take the lead in righting wrongs. (This insight I owe to Prechter).</p>
<p>I have not done a study of past periods. Pre internet one would need to select the right columns in the right publications and find some way to categorize articles – quite a lot of work. I do recall seeing a study by Prechter on the gender composition of political leadership during periods of negative and positive affect. And in Britain during the 80s one was struck by the contrast between the demoralized establishment Conservatives and Thatcher (this observation standing on its own, whatever one’s political views may be).</p>
<p>I had not seen this when I started writing, but from Wiki this is what Stephen Richey says about Joan of Arc (note the explicit reference to morale):</p>
<p>Historian Stephen W. Richey explains her attraction to the royal court by pointing out that they may have viewed her as the only source of hope for a regime that was near collapse:<br />
<blockquote>
<p>After years of one humiliating defeat after another, both the military and civil leadership of France were demoralized and discredited. When the Dauphin Charles granted Joan’s urgent request to be equipped for war and placed at the head of his army, his decision must have been based in large part on the knowledge that every orthodox, every rational option had been tried and had failed. Only a regime in the final straits of desperation would pay any heed to an illiterate farm girl who claimed that the voice of God was instructing her to take charge of her country’s army and lead it to victory.</p>
</blockquote>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-407" class="post-407 post type-post status-publish format-standard hentry category-civilization category-mcgilchrist category-psychology">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=19" title="View all posts in civilization" rel="category">civilization</a>, <a href="http://laeeth.com/podcast/?cat=25" title="View all posts in mcgilchrist" rel="category">mcgilchrist</a>, <a href="http://laeeth.com/podcast/?cat=18" title="View all posts in psychology" rel="category">psychology</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=407" rel="bookmark">Maladaptive response to setbacks: inability to admit any weakness or error, and a tendency to put others down</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=407" rel="bookmark"><time class="entry-date" datetime="2014-05-30T17:19:16+00:00">May 30, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=407#respond" title="Comment on Maladaptive response to setbacks: inability to admit any weakness or error, and a tendency to put others down">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>From a recent email to friends:</p>
<p> </p>
<p>It strikes me that this passive aggressive/put down behaviour characterises the financial world over past few years (based on rather direct personal experience)</p>
<p>And that the recent ills of the west (recent, meaning in England beginning in 1870) are related to a sense of demoralisation. This latter being a word that, stripped from its roots, no longer has vitality, and can only be understood by reading it in the context of much older works. But in modern terms it can be seen as a basic mental variable having a profound neuroendocrine impact on global perception, processing, and decision making.</p>
<p>Without morale, people don’t even pretend to be honest, or to do what is right (but difficult).</p>
<p>For somewhat mysterious reasons this era appears now to be coming to a close.</p>
<p>
<p>
<p><a href="http://www.epjournal.net/wp-content/uploads/ep0292104.pdf">http://www.epjournal.net/wp-content/uploads/ep0292104.pdf</a></p>
<p>The converse of the cycle of success is a maladaptive cycle associated with the negative reaction to failure and loss. In battle, it is well-known that a losing army can be paralyzed by feelings of helplessness and hopelessness so that it ceases to be an effective fighting force. One observes this too in competitive sports where an individual or a team that feels defeated loses confidence and ceases to be a threat to the opposition. This is associated with negative mood and can culminate in clinical depression (Kendler et al, 2003; Sloman, Gilbert and Hasey, 2003). </p>
<p>The maladaptive cycle is triggered by failure and becomes more likely after repeated failure, but it is not a necessary consequence of failure. For example, when the individual perceives that defeat is inevitable, it is often in his/her best interests to disengage from the struggle expeditiously. True submission involves acceptance of the subordinate role and, in primitive times, this would have served the function of avoiding serious injury or even death. However, in some cases the individual’s anger or resentment is so powerful, that he cannot submit, thus causing him to persist in a hopeless struggle. This leads, in turn, to a more powerful triggering of the individual’s subordination strategy, which is associated with escalating negative feelings of helplessness, hopelessness and inadequacy. This may eventually culminant in a clinical depression (Price et al, 1994; Sloman, 2000). In other cases, <b>the individual’s inability to handle the negative affect associated with defeat causes the individual, whose subordination strategy has already been activated, to become preoccupied with avoiding the pain of further loss.</b> This may lead to <b>fruitless power struggles characterized by an inability to admit any weakness or error and by a tendency to put others down.</b></p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-404" class="post-404 post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=404" rel="bookmark">Thoughts on China In the Context of Recent Reforms</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=404" rel="bookmark"><time class="entry-date" datetime="2014-05-12T20:29:22+00:00">May 12, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=404#respond" title="Comment on Thoughts on China In the Context of Recent Reforms">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>China’s response to the 2008 financial crisis led to money and credit growing at a pace of 40% annualized, with a heavy focus on infrastructure. There were problems with malinvestment and with inflation, and clearly we should not have expected or hoped for this pace of stimulus to be sustained as the global economy recovers. Chinese growth has slowed since 2011, and people are today quite gloomy. I think we need to avoid getting distracted by tracking every blip and keep the bigger picture in mind.
<p>The bigger picture is that as China develops it needs to change its formula for growth, and that means a change in the composition of growth – over time tilting towards domestic consumption and away from exports. Rising Chinese wages constitute an important part of this rebalancing, even if exporters have been suffering. It’s a very positive thing that the authorities are letting exports slow, and not trying artificially to sustain what needs to change.
<p>Exports have also been hit by weakness in Europe, but that is a region where things are already beginning to heal. Public sector leverage is modest, particularly when one considers the asset side of the balance sheet. Ghost towns are signs of excess on the part of local authorities, but the reforms involve introducing greater rigour in the selection process for new projects.
<p>Any emerging economy goes through ups and downs, and the Chinese experience should be seen in this context. Somewhat slower growth in future is in accordance with the normal pattern of development. The authorities recognize the problems, and seem to be taking real steps to address them – that is where we ought to place our focus.
<p>People have tended to dismiss the capital market reforms as being nothing more than what was announced after the Third Plenum, and they are worried about new supply from IPOs weighing on the market. I think you have to see these in the context of the broader economic reforms: China is addressing its problems, and on the path to become a sophisticated, developed economy. Free capital markets and a decent infrastructure for their operation are indispensable for the proper allocation of capital in the economy.
<p>I am positive on Chinese equity markets, and on the prospects of economies linked to China, although I think it’s likely we see some currency weakness in the years ahead.</p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-402" class="post-402 post type-post status-publish format-standard hentry category-agriculture category-inflation category-modelportolio">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=6" title="View all posts in agriculture" rel="category">agriculture</a>, <a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a>, <a href="http://laeeth.com/podcast/?cat=40" title="View all posts in modelportolio" rel="category">modelportolio</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=402" rel="bookmark">Model Portfolio Update – buying corn and wheat</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=402" rel="bookmark"><time class="entry-date" datetime="2014-05-08T06:32:42+00:00">May 8, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=402#respond" title="Comment on Model Portfolio Update – buying corn and wheat">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>B 211 July Wheat paying 734.25 stop 639.5 (risk = c 1%)<br />
B 274 July Corn paying 516.5 stop 480 (risk = c 0.5%)<br />
B 320 July Wheat 775 calls paying 15.625 (premium = c 0.25%)</p>
<p> </p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-399" class="post-399 post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=399" rel="bookmark">Global Disinflation</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=399" rel="bookmark"><time class="entry-date" datetime="2014-05-07T16:47:49+00:00">May 7, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=399#respond" title="Comment on Global Disinflation">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/05/image3.png"><img title="image" style="border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0px; display: inline" border="0" alt="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/05/image_thumb3.png" width="799" height="329"></a></p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-394" class="post-394 post type-post status-publish format-standard hentry category-agriculture category-commodities category-contrarian category-inflation category-musings">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=6" title="View all posts in agriculture" rel="category">agriculture</a>, <a href="http://laeeth.com/podcast/?cat=7" title="View all posts in commodities" rel="category">commodities</a>, <a href="http://laeeth.com/podcast/?cat=17" title="View all posts in contrarian" rel="category">contrarian</a>, <a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a>, <a href="http://laeeth.com/podcast/?cat=5" title="View all posts in musings" rel="category">musings</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=394" rel="bookmark">Wheat is not terribly expensive in historical terms</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=394" rel="bookmark"><time class="entry-date" datetime="2014-05-06T22:28:21+00:00">May 6, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=394#respond" title="Comment on Wheat is not terribly expensive in historical terms">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>I am aware of, and take due note of developments in fertilizers, pest control, and farm technology and also that in a more integrated world the impacts of crop failures in a single region is less acute. This being said, it is a given that we would have seen these kinds of developments given the past evolution of the relative price of wheat, and the question is what the future holds – possibly very different developments. In this context, then, I find the long-term chart below of the ratio of the spot wheat price to spot gold to be quite intriguing:</p>
<p> </p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/05/image.png"><img style="display: inline; border: 0px;" title="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/05/image_thumb.png" alt="image" width="596" height="283" border="0" /></a></p>
<p> </p>
<p>Zooming in to the post 97 period:</p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/05/image1.png"><img style="display: inline; border: 0px;" title="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/05/image_thumb1.png" alt="image" width="598" height="284" border="0" /></a></p>
<p> </p>
<p>Front month roll-adjusted future:</p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/05/image2.png"><img style="display: inline; border: 0px;" title="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/05/image_thumb2.png" alt="image" width="600" height="239" border="0" /></a></p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-380" class="post-380 post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=380" rel="bookmark">Mr T has some words on corn</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=380" rel="bookmark"><time class="entry-date" datetime="2014-04-29T18:43:56+00:00">April 29, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=380#respond" title="Comment on Mr T has some words on corn">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p><a href="https://www.youtube.com/watch?v=Z1TxiVhrkZA">You want a prediction? My prediction is PAIN!</a></p>
<p> </p>
<p>Top rusty/brown line is the price of corn. Lower/black line is net retail CFTC positioning (outright terms).</p>
<p>Retail adding to shorts on a breakout that for certain reasons I expect is going to run and run.</p>
<p> </p>
<p> </p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/04/image12.png"><img title="image" style="border-top: 0px; border-right: 0px; border-bottom: 0px; border-left: 0px; display: inline" border="0" alt="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/04/image_thumb12.png" width="244" height="112"></a></p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-376" class="post-376 post type-post status-publish format-standard hentry category-uncategorized">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=1" title="View all posts in Uncategorized" rel="category">Uncategorized</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=376" rel="bookmark">Not so much a bond bubble, as a bubble in both pessimism about growth, and belief in central banks</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=376" rel="bookmark"><time class="entry-date" datetime="2014-04-29T10:24:42+00:00">April 29, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=376#respond" title="Comment on Not so much a bond bubble, as a bubble in both pessimism about growth, and belief in central banks">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>Over the past few years there has been much talk of whether bonds are a bubble.</p>
<p>Given the impressive total return of fixed income since the major bottom in prices in 1981/81, it’s not surprising that people have been asking that question. The chart below shows the roll-adjusted performance of buying the long bond future in the US. (In other words in addition to 5% annualized return from price appreciation in excess of the forwards, investors would have received the compounded short-rate over that period).</p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/04/image11.png"><img style="display: inline; border: 0px;" title="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/04/image_thumb11.png" alt="image" width="543" height="218" border="0" /></a></p>
<p>And the return had one bought a 30 year zero, and rolled it each year would have been even more impressive (better than the SPX, I recollect).</p>
<p>But to speak of a bubble in bonds is to misunderstand the nature of bubbles, and the motivation for bond purchases, and the institutional structure that supports them.</p>
<p>I shall write a longer post at a later date, but bubbles are characterized by the mass psychology pattern, and not purely by price appreciation. One can in principle and in practice observe this psychology and develop a sense for the structure of herd emotions, perceptions, and decision-making patterns. It is important to look at this factor independently, because of the profound importance of the behavioural finance phenomenon of misattribution of mood in shaping how market participants perceive economic fundamentals.</p>
<p>In theory one could imagine bonds becoming a speculative vehicle that lies at the heart of a bubble. One needs to consider of course that different dynamics may be playing out at different time horizons. So for example in 1993, there certainly was a bubble in bond carry trades globally. However it was confined more or less to the investment activities of banks, and of the then rather unimportant at a global level hedge fund sector. So the bursting, whilst painful, had limited impact; and this occurred on a shorter-term horizon that we can now recognize was in the context of a continued long-term bull market in bonds.</p>
<p>So today, I don’t believe bonds can be thought of as a bubble at all. What has driven appreciation since 1982 has been a reduction in real rates, a reduction in implied inflation expectations, and a reduction in the risk premium for both – this latter reflecting also a decline in macroeconomic volatility, including perceived volatility of real rates and inflation and their underlying drivers.</p>
<p>Implicitly one should note that real rates in the long term reflect expectations about growth, and that long-term inflation expectations reflect belief in the willingness and ability of central banks to maintain price stability in the medium term.</p>
<p>Consider this thought experiment. Suppose there were to be a bubble in pessimism over growth, and belief in central banks. What would you see? As regards growth: one would see deep pessimism about the dynamism of the economy, a belief in secular stagnation, that productivity growth would remain soft for many years to come, that the labour market would continue to be difficult for the imaginable future. As regards inflation, one would see a belief that the central bank was absolutely in control of inflation and could choose whichever inflation rate it desired, that we knew how to defeat inflation should it ever arrive and that in light of the negative consequences of deflation, central banks should actually try to create some inflation to truncate that tail possibility.</p>
<p>As it happens, I believe this does characterize the present.</p>
<p>For reasons I have set out before, and on which I will elaborate further in coming work, I believe both beliefs (pessimism about) growth, and belief in the power of central banks are very much misplaced and that we will shortly see a ‘marking to market’’’ as economic and financial developments unfold in a manner that will surprise most observers, but nonetheless can be unanticipated via the application of Goethean <em>active perception</em> and reasoning about economics based on principles rather than mere Cartesian <em>analysis</em>.</p>
<p>I intend to write more on this in coming weeks.</p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-372" class="post-372 post type-post status-publish format-standard hentry category-modelportolio">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=40" title="View all posts in modelportolio" rel="category">modelportolio</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=372" rel="bookmark">Model Portfolio Update – selling bunds, gilts, chf; adding to long 10y French breakevens</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=372" rel="bookmark"><time class="entry-date" datetime="2014-04-29T09:21:32+00:00">April 29, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=372#respond" title="Comment on Model Portfolio Update – selling bunds, gilts, chf; adding to long 10y French breakevens">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>Written Tuesday 29th April 10:00</p>
<p>Trade write-up and rationale to follow, but I wanted to put this up whilst markets remain at interesting levels.</p>
<p>I intend to split portfolio from here.</p>
<p>A: Inflation Strategy (comprising existing trades from 6th March)<br />
B: Macro Strategy less purely inflation focused</p>
<p><strong><span style="text-decoration: underline;">New Trades</span></strong><br />
<span style="text-decoration: underline;">A: Inflation Strategy</span><br />
Increase position size in French breakevens.<br />
Long 10 year at 1.47 in $33k/bp. Stop 1.35</p>
<p><span style="text-decoration: underline;">B: Macro Strategy<br />
</span>New trade – sell 145 G M4 at 110.19. Stop 112.24<br />
New trade – sell 367 RXM4 at 143.94. Stop 144.53<br />
New trade – sell 54 SFM4 at 113.73. Stop 118.19 (using futures for ease of tracking carry, but in practice I would prefer cash).</p>
<p>I would like to buy swaption payers in UK, US, and EU too but need to take the time to price them up properly.</p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-366" class="post-366 post type-post status-publish format-standard hentry category-civilization category-inflation category-musings tag-ibnkhaldun tag-newleaders tag-toynbee">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=19" title="View all posts in civilization" rel="category">civilization</a>, <a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a>, <a href="http://laeeth.com/podcast/?cat=5" title="View all posts in musings" rel="category">musings</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=366" rel="bookmark">Will a secular bond bear market bring new winners in finance?</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=366" rel="bookmark"><time class="entry-date" datetime="2014-04-22T17:29:04+00:00">April 22, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=366#respond" title="Comment on Will a secular bond bear market bring new winners in finance?">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>Via NP:</p>
<p><span id="yiv2840830368yui_3_13_0_12_1398102389580_18">“was thinking about new era of rising yields, and fact there will be new winners in finance”</p>
<p><a id="yiv2840830368yui_3_13_0_1_1398102389580_35105" href="http://www.goodreads.com/work/quotes/664484-only-the-paranoid-survive" target="_blank" rel="nofollow">http://www.goodreads.com/work/quotes/664484-only-the-paranoid-survive</a><br />
</span></p>
<div id="yiv2840830368yui_3_13_0_12_1398102389580_12">
“The person who is the star of previous era is often the last one to adapt to change, the last one to yield to logic of a strategic inflection point and tends to fall harder than most.”<br />
― <a href="http://www.goodreads.com/author/show/37708.Andrew_S_Grove">Andrew S. Grove</a>, <i> <a href="http://www.goodreads.com/work/quotes/664484">Only the Paranoid Survive</a> </i></p>
<p>“Admitting that you need to learn something new is always difficult. It is even harder if you are a senior manager who is accustomed to the automatic deference which people accord you owing to your position. But if you don’t fight it, that very deference may become a wall that isolates you from learning new things. It all takes self-discipline.”<br />
― <a id="yiv2840830368yui_3_13_0_1_1398102389580_41149" href="http://www.goodreads.com/author/show/37708.Andrew_S_Grove" target="_blank" rel="nofollow">Andrew S. Grove</a>, <i id="yiv2840830368yui_3_13_0_12_1398102389580_27"> <a id="yiv2840830368yui_3_13_0_1_1398102389580_41150" href="http://www.goodreads.com/work/quotes/664484" target="_blank" rel="nofollow">Only the Paranoid Survive</a></i></div>
<div></div>
<div>One thinks also of Ibn Khaldun and his observations about civilizational renewal due to the infusion of barbarians. (Ie new leadership will not necessarily come from those who today have the greatest prestige).</p>
</div>
<div>https://en.wikipedia.org/wiki/Asabiyyah</p>
<blockquote><p><a title="Ibn Khaldun" href="https://en.wikipedia.org/wiki/Ibn_Khaldun">Ibn Khaldun</a> uses the term <i>Asabiyyah</i> to describe the bond of cohesion among humans in a group forming <a title="Community" href="https://en.wikipedia.org/wiki/Community">community</a>. The bond, Asabiyyah, exists at any level of civilization, from nomadic society to states and empires.<sup id="cite_ref-tibi_3-0"><a href="https://en.wikipedia.org/wiki/Asabiyyah#cite_note-tibi-3">[3]</a></sup> Asabiyyah is most strong in the nomadic phase, and decreases as civilization advances.<sup id="cite_ref-tibi_3-1"><a href="https://en.wikipedia.org/wiki/Asabiyyah#cite_note-tibi-3">[3]</a></sup> As this Asabiyyah declines, another more compelling Asabiyyah may take its place; thus, civilizations rise and fall, and history describes these cycles of Asabiyyah as they play out.<sup id="cite_ref-tibi_3-2"><a href="https://en.wikipedia.org/wiki/Asabiyyah#cite_note-tibi-3">[3]</a></sup></p>
<p>Ibn Khaldun argues that each <a title="Dynasty" href="https://en.wikipedia.org/wiki/Dynasty">dynasty</a> (or <a title="Civilization" href="https://en.wikipedia.org/wiki/Civilization">civilization</a>) has within itself the seeds of its own downfall. He explains that ruling houses tend to emerge on the peripheries of great <a title="Empire" href="https://en.wikipedia.org/wiki/Empire">empires</a> and use the much stronger `asabiyya present in those areas to their advantage, in order to bring about a change in leadership. This implies that the new rulers are at first considered “<a title="Barbarian" href="https://en.wikipedia.org/wiki/Barbarian">barbarians</a>” by comparison to the old ones. As they establish themselves at the center of their empire, they become increasingly lax, less coordinated, disciplined and watchful, and more concerned with maintaining their new power and lifestyle at the centre of the empire—i.e, their internal cohesion and ties to the original peripheral group, the `asabiyya, dissolves into factionalism and individualism, diminishing their capacity as a political unit. Thus, conditions are created wherein a new dynasty can emerge at the periphery of their control, grow strong, and effect a change in leadership, beginning the cycle anew.</p>
<p>Khaldun’s central concept of <i>asabiyah</i>, or “<a title="Structural cohesion" href="https://en.wikipedia.org/wiki/Structural_cohesion">social cohesion</a>“, seems to anticipate modern conceptions of <a title="Social capital" href="https://en.wikipedia.org/wiki/Social_capital">social capital</a> arising in <a title="Social network" href="https://en.wikipedia.org/wiki/Social_network">social networks</a><sup>[<i><a title="Wikipedia:Citation needed" href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed">citation needed</a></i>]</sup>:</p>
<p>This cohesion arises spontaneously in tribes and other small kinship groups; and it can be intensified and enlarged by a religious ideology. Khaldun’s analysis looks at how this cohesion carries groups to power but contains within itself the seeds – psychological, sociological, economic, political – of the group’s downfall, to be replaced by a new group, dynasty or empire bound by a stronger (or at least younger and more vigorous) cohesion.<sup>[<i><a title="Wikipedia:Avoid weasel words" href="https://en.wikipedia.org/wiki/Wikipedia:Avoid_weasel_words">who?</a></i>]</sup></p></blockquote>
</div>
<div></div>
<div></div>
<div>Or of Toynbee’s observations about the importance of the ‘creative minority’ in helping a civilization adapt to new challenges:</div>
<div>
<p>. Every major civilization, Toynbee contended, goes through a series of stages: genesis, growth, breakdown, and disintegration, after which it disappears, giving way to another civilization. Discerning similarities in the social processes that occur in all civilizations, Toynbee sought to derive from them empirical laws of social development, on the basis of which it would be possible to predict major events in the modern world as well.</p>
<p>http://encyclopedia2.thefreedictionary.com/Toynbee,+Arnold+Joseph</p>
<blockquote><p>Following H. Bergson, Toynbee considered the moving force in a civilization’s development to be the “creative minority, ” defined as the bearer of the mystical <i>élan vital</i>. This minority, by responding successfully to various historical challenges, is able to carry the “inert majority” along with it. The nature of these challenges and responses determines the distinctive features of a civilization, among which are its hierarchy of social values and the philosophical views it holds on the meaning of life. Once a creative elite, however, proves incapable of solving the social or historical problems confronting it, it becomes a dominant minority, seeking to impose its will by force rather than through accepted authority</p></blockquote>
<p>Or here:</p>
<p>http://the-great-learning.com/toynbee.htm</p>
<blockquote><p><span style="font-family: 'Times New Roman';"> Civilization is heavily depending on the role of a “creative minority”. Decline sets in, when the latter cannot inspire the masses anymore. Generally, leaders seem to be able but following only “one great idea”. In the beginning this great idea is the vehicle upon which society is flourishing. However, through sticking to this paradigm, despite changing circumstances, the leaders are becoming an obstacle, rather than a catalyst. Their reaction is to keep, what they have achieved, thus turning them from creative individuals into the “ruling minority”. From that moment on their only aim is to uphold their privileged position. Sooner or later this is causing a split in society between the ruling elite and the “internal proletariat”. Frenetic control, a police state and militarism are the possible consequences. The paradox is this: because of increasing expansion, aggression and military campaigns (in order to keep society together), an empire is exhausting itself. Parallels between the Roman Empire and the current US global hegemony are but all too evident.</span></p>
<p><span style="font-family: 'Times New Roman';">5. The next stage in the life of a civilization is that of decay, disintegration. First of all, it is characterized by schism in the social organism, the latter falling apart in roughly three groups: ruling minority, internal proletariat and external proletariat. The ruling elite consists of all those, who are trying to keep up the status quo, like politicians, bureaucrats, moneymakers, exploiters, militarists and those who serve them, like scientists, philosophers, teachers and artists…The internal proletariat on the other hand consists of the “masses”. As long as the masses can identify itself with the aims of society, put forward by the elite, it will conform to the “general rule”. However, from the first moment, that this will be not the case anymore, the same masses start to feel alienated from the society. While the majority is staying passive, trying to distract itself in escapism, adaptation, vulgarization and resignation, a new minority will either try to revolt externally through trying to bring about social change, or by taking refuge in spirituality, trying to create an inner revolution. The external proletariat on the other hand includes all those, who do not belong to the core civilization, but are living around its borders. As long as the dominant society can keep its inspiration and radiance, these “barbarians” will try to follow its example. However, from the first moment decay is setting in, these people are becoming hostile, with time working in favor of the latter…</span></p>
<p><span style="font-family: 'Times New Roman';">6. There are three different responses to the decay, depending on the various groups in society. As has been said above, the ruling elite will try to establish and maintain a universal state or empire, in order to secure its interests. Note that an empire at the heights of its power does NOT correspond with a milestone/highlight in civilization! On the contrary, rather than being inspired by creative and beneficial values, it has turned to being dominated by a “degenerated” power elite, the latter only aiming at maintaining its own privileges. The characteristics of such an empire are emphasizing its “greatness”, developing a myth of superiority, chauvinism and nationalism, protecting its privileged position (at the expense of others), expansion of its philosophy, “lifestyle” and rule in neighboring countries, very often – especially when feeling threatened – culminating in raw militarism. The new creative minority – part of the internal proletariat – on the other hand, has been starting to develop a new spirituality, aiming at establishing a new universal religion. Although despising the aims of society (materialism, power) it is using the facilities of the empire – its “tolerance” in order to maintain “unity”, “liberties”, “stability”, “peace”, means of communication, administration and technology – to its own advantage.</span></p>
<p><span style="font-family: 'Times New Roman';">7. The third response concerns the implosion of boundaries. Extension of empire is weakening its power to keep “things together”. Sooner or later the pressure on the “limes” (as the borders of the Roman Empire were called) will be mounting to a critical climax. Two factors are aggravating the situation. First of all, the guardians of the empire being forced to use the services of the external proletariat, in order to keep up the basic functions of society…secondly the spreading of high sophisticated weaponry in neighboring (“barbaric”) countries*. The combination of these two factors will prove to be lethal to the empire. At such a stage developments may go dramatically fast. The hatred of the surrounding societies toward the dominant one, will unleash an uncontrollable aggression, in which the former are overturning the latter, trying to get what they can get or either destroy what they can destroy. It is the stage of chaos, trouble, (immense) suffering and the birth of a new heroism, this time on the part of the invaders. It is characterized by “dark ages”, in which everything is first disintegrating, while subsequently being slowly rebuilt (something that may take centuries). The invaders – having had no experience in ruling a complicated society – appear not to be able to restore the original high standard of living. The impulse for renewal is on the other hand coming from the new religion, as being developed by the new creative minority in the last days of the original empire. Vitalized by the influx of and mixing with the former barbarians…this new religion will then be slowly penetrate the various sectors of society, transforming them according to the new teachings, starting a new round of civilization.</span></p></blockquote>
</div>
</div><!-- .entry-content -->
<footer class="entry-meta"><span class="tag-links"><a href="http://laeeth.com/podcast/?tag=ibnkhaldun" rel="tag">ibnkhaldun</a><a href="http://laeeth.com/podcast/?tag=newleaders" rel="tag">newleaders</a><a href="http://laeeth.com/podcast/?tag=toynbee" rel="tag">toynbee</a></span></footer></article><!-- #post-## -->
<article id="post-363" class="post-363 post type-post status-publish format-standard hentry category-inflation">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=363" rel="bookmark">Orphanides (2003) and the implications for Fed policy today</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=363" rel="bookmark"><time class="entry-date" datetime="2014-04-21T17:32:51+00:00">April 21, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=363#respond" title="Comment on Orphanides (2003) and the implications for Fed policy today">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>PDF here</p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/04/edited-note-about-output-gap-20140421.pdf">click HERE for note about output gap 20140421</a></p>
<p>Note to a market contact:</p>
<p>(Images in the PDF attached – the key point is that the data gave a disastrously misleading picture of the output gap in realtime, and this was true of both the US and UK. There is a tendency to believe that our greater sophistication and access to processing power means that we are unlikely to experience anything similar. I do not believe such a complacent view will turn out to be justified).</p>
<p>Thank you for your thoughts on the inflation in the 1970s – as I understand it, you attribute the monetary policy mistake (we both agree there was one) to an overly political orientation of monetary policy, and a misplaced belief in the power of prices and incomes policy. Furthermore, you believe that in 1972 there was an inadequate appreciation of the combined inflationary impact of international loose monetary + fiscal policy in the context of the Vietnam war (you don’t mention it, but I would add that this came in the context of a prior commitment to Great Society programmes, and the war on poverty – guns AND butter).</p>
<p>More generally, I think that you hold to the established doctrine of 2014 – if wage inflation starts to pick up, then provided the Fed responds appropriately by raising rates, there is no reason to expect a loss of credibility, or that prior loose monetary policy will have an impact that cannot easily be defeated by tighter policy going forward.<br />
With regards to the 1970s, I have pointed to the work of Orphanides and Thomas Mayer on the real-time difficulties of assessing the output gap. In particular, the data from the 1970s was revised to give a totally different picture today from what people understood to be the case at the time. I don’t deny that mistaken views about policy mattered too. (I would put these down to a failure of nerve, and lack of backbone leading people to rationalize what seemed to be a kinder and less brutal approach of attempting to controlling inflation via prices and incomes policy rather than accepting the price in terms of higher unemployment). But making decisions on the basis of the wrong data surely played an important part.</p>
<p><span style="line-height: 1.5;">Orphanides notes that McCallum criticized the Taylor rule as not operational because policymakers need to form a view on what is the natural rate, and what is potential output. Greenspan – not in general the most insightful writer on macro, but who has some genuine insights amidst everything else noted that “like all rules, [Taylor-type formulations] embody a forecast that the future will be </span>like the past. Unfortunately, however, history is not an infallible guide to the future, and the levels of the two variables [the Wicksellian neutral real rate, and potential output] are currently under active debate”. Orphanides notes that “the classic Taylor rule lacks an explicit role for forecasts and related judgements about prospective economic developments”</p>
<p> </p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-361" class="post-361 post type-post status-publish format-standard hentry category-agriculture category-contrarian category-inflation">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=6" title="View all posts in agriculture" rel="category">agriculture</a>, <a href="http://laeeth.com/podcast/?cat=17" title="View all posts in contrarian" rel="category">contrarian</a>, <a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=361" rel="bookmark">Intellectual Origins of Today’s Monetary Policy Mistake</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=361" rel="bookmark"><time class="entry-date" datetime="2014-04-20T15:30:03+00:00">April 20, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=361#respond" title="Comment on Intellectual Origins of Today’s Monetary Policy Mistake">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p><a href="http://www.nber.org/papers/w13325.pdf?new_window=1">Woodford (2007)</a> seems to have been the most influential crystallization of the tendency in thought that has provided intellectual support for recent errors in monetary policy.</p>
<p>By starting with a model without money (and that does not consider the psychology that shapes its influence), he concludes unsurprisingly that money provides no useful additional information.</p>
<p>I believe that the years ahead will demonstrate the pernicious error in this way of thinking (although no doubt the inflationary episode will be blamed initially on cost-price inflation driven by food, with it being claimed that the <a href="https://www.google.com/search?hl=en&gl=uk&tbm=nws&authuser=0&q=wheat+rust">supply-side shocks we are in the process of experiencing</a> could not have been foreseen).</p>
<div><a href="http://www.nber.org/papers/w13325.pdf?new_window=1" shape="rect">http://www.nber.org/papers/w13325.pdf?new_window=1</a></div>
<div></div>
<div>
<p><span style="color: #767676; font-size: 19px; font-style: italic; line-height: 1.2631578947;">“In fact, if all that one cares about is whether an average inflation rate of two percent is maintained over a period of several decades, this is quite easy to ensure. It is only necessary that one be able to measure the inflation rate itself — and not necessarily in real time; it suffices that the lag in data availability be one of weeks rather than years — and that one be able to tell whether policy is being adjusted in a way that should lower inflation as opposed to raising it (for which an interest- rate instrument suffices). A suitable policy is then one that monitors the cumulative increase in prices relative to the two-percent-per-year target, and tightens policy if prices have risen too much, loosening it if they have risen too little.</span><b style="color: #767676; font-size: 19px; font-style: italic; line-height: 1.2631578947;"> One does not need to monitor money growth to tell if an undesirable long-run inflation trend is developing; measurement of </b><b style="color: #767676; font-size: 19px; font-style: italic; line-height: 1.2631578947;">inflation itself </b><b style="color: #767676; font-size: 19px; font-style: italic; line-height: 1.2631578947;">suffices for this!</b><span style="color: #767676; font-size: 19px; font-style: italic; line-height: 1.2631578947;"> As long as one does in fact know how to measure price increases, and to use policy to accelerate or decelerate the rate of inflation (at least over the next few years), there is little difficulty in ensuring a desired rate of inflation over a sufficiently long period of time. Of course, there are significant practical questions connected with the measurement of current inflation at high frequencies, and even greater difficulties in assessing the near-term inflation outlook given the current stance of policy; but the existence of a long-term relation between money growth and inflation does not imply any advantage of money-growth statistics in addressing those questions.</span></p>
</div>
<div>
<div>
<blockquote><p>Finally, it might be thought that the existence of a long-run relation between money growth and inflation should imply that measures of money growth will be valuable in forecasting inflation, over “the medium-to-long run” even if not at shorter horizons. But this is not the case. Cointegration of money growth with the inflation rate would imply that if one were to know what the average rate of money growth will be over some sufficiently long future horizon, one would need no other information in order to be able to forecast the average inflation rate over that same horizon. But one does not know in advance what the rate of money growth over the long run will be (that is, unless one knows it because the central bank is determined to adjust policy to ensure a particular rate of money growth). And<b> there is no reason to assume that the </b><b>recent rate of growth of the money supply provides the best predictor of the future long-run rate of money growth”.</b></p></blockquote>
</div>
</div>
<p> </p>
<p> </p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-332" class="post-332 post type-post status-publish format-standard hentry category-contrarian category-inflation">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=17" title="View all posts in contrarian" rel="category">contrarian</a>, <a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=332" rel="bookmark">is it truly the case that the Fed has demonstrated systematically an excessive concern over inflation?</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=332" rel="bookmark"><time class="entry-date" datetime="2014-04-07T04:40:29+00:00">April 7, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=332#respond" title="Comment on is it truly the case that the Fed has demonstrated systematically an excessive concern over inflation?">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>I first read the work of my friend David Glasner as a student at Trinity, Cambridge in the early 90s, and I found his work on Free Banking to be amongst the best theoretically that I have read on the topic. I would also commend highly his masterwork of an encyclopedia on Business Cycles.</p>
<p>It is with the greatest respect therefore, that I feel compelled to use his view as a foil when setting out my own perspective. I am finishing up a twenty page report that Dr Marc Faber has kindly agreed to republish in his Monthly Market Commentary, but for the time being I have said the following (originally on <a href="http://uneasymoney.com/2014/03/04/why-fed-inflation-phobia-mattered/#comment-64150">Uneasy Money</a>).</p>
<p> </p>
<p>Hi David.
<p>I do not always agree with your perspective, but your blog is highly thought-provoking.
<p>With regards to a putative inflation-phobia amongst Fed members, in order to prove this, would it not be necessary to demonstrate not just that they were too worried about inflation in July 2008, but that they exhibited a systematic bias in this direction over the course of a few business cycles.
<p>I have myself done this work, as well as lived it since my career as an interest rate speculator began.
<p>It’s actually an exercise I suggest for new hires. Pick a chart of the 2 year T note in your favourite country. Circle the major turning points – highs and lows – and pull up the official minutes, the transcripts (if available) and speeches and comments from central banking officials at the times of these major highs and lows.
<p>The general pattern (and it is pretty consistent) is that policymakers are always ‘wrong’ (ie biased in the direction of the previous trend, and implicitly extrapolating recent developments at that point, and not anticipating the shifts in basic economic conditions that subsequently lead to a change in direction. I am implicitly asking you to trust me here that when the market changes direction it is associated with a run of data releases that support the change in direction. However, I am pretty sure that you will arrive at the same result if you look more directly at shifts in the trend of data representing economic activity itself and study the evolution of the rhetoric around these turning points.
<p>One has the same experience talking to policymakers directly as one lives through major turning points.
<p>Remember summer 2003 when there were all these worries about deflation? A certain former Fed official very close to Greenspan and who retained very good contacts at the Fed after he moved to his consulting business came by and saw us in London. He is a very nice man, and very bright. However, instead of explaining why CPI was artificially depressed due to used cars (0% financing for new cars) and owner’s equivalent rent (utilities are packaged with housing, and energy went up whilst rents did not – perhaps a question of temporarily sticky prices), his focus was on exactly how the Fed might buy bonds, and the particular operational challenges of doing so. All terribly interesting, but of not practical investment utility because the deflation scare was based upon spurious considerations.
<p>So there is one counterexample for you. The Fed were too worried about inflation in July 2008, and too worried about deflation in July 2003.
<p>The point is that policymakers and conventional economists simply do not have a good record of anticipating economic shifts, as these economic shifts are never seen first in hard data whilst no respectable economist is able to avoid looking primarily at the hard data even though he may know in his heart of hearts that it doesn’t anticipate the future at the very time you most need to be able to do so.
<p>I believe that my points stand on their own, but for what it is worth I did anticipate a deflation bust in July to early August 2008 as commodities and breakeven inflation (the market’s implied anticipation of future inflation) topped, and also the bottom in early Jan 2009 as they bottomed. I may post a link to pieces written at that time in case it may be of interest,
<p>So either I am talking nonsense about the central banks being consistently wrong when things shift (I am not, and you can do the work yourself in a few hours), or you are obliged to go further in demonstrating that not only are they always wrong at turns, but they are especially wrong at disinflationary turns.
<p>(I note that the ECB is perhaps worse than the Fed in this respect. Because of the rather Buba-inspired doctrine of ‘steady hand’ in setting monetary policy, the ECB doesn’t like to change direction in a hurry even when the picture is clearly – to someone who thinks in the way I do – shifting against the old trend. So for example in July 2008, the last ECB hike was exactly the opposite of what was required, and similarly in July 2012).
<p>One question I have for you that is less about logic, and more about one’s approach to being open to modifying one’s thought process in the light of surprises. Suppose that inflation turns out to be substantially higher over the next 3-5 years in the face of policy that is not substantially more accommodative than at present. (Such an outturn likely being signalled rather sooner than 3-5 years by a large rally in breakeven inflation rates).
<p>Would that make you open to reconsidering your perspective and the mode of thought behind it? If so, would you mind if I set a note in my calendar for 18 months time so we can revisit this discussion?
<p>I happen to have a different view to you, and I have set it out in the piece I emailed. This view is based upon the idea that one loses a great deal by doing only analysis and paying inordinate attention to hard data susceptible to models rather than softer, more inchoate impressions about which one may nonetheless think in a systematic fashion.
<p>“its pathological nature at those meetings does have a certain breathtaking quality; it had already been operating for a long time before that. If you look at the St. Louis Fed’s statistics on the monetary base, you will find that the previous recession in 2001 had been preceded in 2000 by a drop of 3.6% in the monetary base.”
<p>3.6% sure doesn’t seem like much given that the Fed eased aggressively in quantitative terms in 1999 to be sure nothing would go wrong over Y2K. given the extent to which they eased, was it really so wrong to take a little bit back? bear in mind the insane equity environment at the time (I do think the Y2K ease in 1999 was responsible for that last leg up that damaged so many reputations of those who had the right view but were just a bit early).
<p>“The housing bubble burst in 2006, but the Fed was evidently determined to squeeze inflation out of the system, as if trying to atone for its sins in allowing the housing bubble in the first place.”
<p>well, it is an open question as to whether the bubble was in housing or credit. I believe it was the latter, and that that is where the real excesses were. my explanation – of a global credit bubble originally triggered by a desperate search for yield at the 2003 low in yields, but one that eventually took on a life of its own – is much more parsimonious as it explains the insanity distributed around the world. you have to have lots of stories that are not obviously linked – one for US and Irish housing, another for Dubai infrastructure, another for industrial-commodity linked plays, another for European peripheral credit.
<p>bear in mind that in this context, although US housing showed clear signs of weakness already in 2006 (and I asked Kohn about it at lunch just after he had been made vice-chair and he wasn’t worried about housing, or the impact of resets – and to be honest nobody else at lunch was worried either), credit spreads continued to compress into February 2007. and since the excesses were clearly in credit (I trust you will grant that at least they were clearly, also, in credit) and the overwhelming consensus economic view (I couldn’t find a soul on my side back then) was that we had rare synchronized global growth, it wasn’t unreasonable within the way the Fed thinks about the world to keep tightening.
<p>“If the Fed had moderated its stance in 2008 in response to ample evidence that the economy was slowing, there is good reason to think that the economy would not have contracted as rapidly as it did, starting, even before the Lehman collapse, in the third quarter of 2008, when, we now know, the economy had already begun one of the sharpest contractions of the entire post World War II era”.
<p>it would have been better if they had eased more quickly. however 1) do you believe there was a credit bubble? 2) can you find any instance of a credit bubble bursting that was not horrible, to a greater or lesser extent?
<p>bear in mind also that the Fed has institutional memory of making the opposite kind of mistake. The Fed loosened in response to the 87 crash (which if you study the sectoral capacity utilisation data turned out to be associated with a shift in the pattern of economic activity, although not a collapse)i, and arguably that made the subsequent S&L bust worse when the silly boom did finally reach its natural conclusion.
<p>“A financial panic is an acute breakdown of the financial system, always associated with a period of monetary stringency when demands for liquidity cannot be satisfied owing to a contagious loss of confidence in the solvency of borrowers and lenders. The crisis is typically precipitated by a too aggressive tightening of monetary conditions by the monetary authority seeking to rein in inflationary pressures.”
<p>Like the panics of 1907, 1914, 1873, the Overend and Guerney episode and the C19 Barings crisis? Would we not be better off returning to the doctrine of Mills and recognize that a panic is a mass psychological phenomenon relating to a loss of confidence in credit that we still do not fully understand and are unable to predict and that may have multiple triggers, and monetary policy tightening may serve as one of these?
<p>Is there any real evidence to suggest that over-tightening monetary policy has a particular tendency to induce panics, and that the great preponderance of panics have been induced by too-tight policy? Bear in mind that pre central banking it is hard to untangle cause from effect, since a loss of confidence would be reflected in a loss of specie and tendency to force the central bank to tighten to protect its reserve. And on the other hand, post central banking a panic arriving some way into the boom from causes that are putatively of non-monetary policy origin will ex post facto make it appear that obviously policy was too tight, when it simply wasn’t realistically clear to anyone at the time not successfully peering into the misty future.
<p>Shall we put it another way? Of people writing in the period say June 2006-July 2008, which serious people were warning of a credit bust and nasty downturn in the economy. And which of these were right for the right reason, and have had a consistently good track-record rather than being permanently bearish? A stopped clock will be right twice a day.
<p>I know of two: Marc Faber, and Jim Rogers. Marc has the perception of being permanently bearish, but if one reads his serious work rather than just listening to how he is forced to simplify it on TV, one may see that he wrote in summer 2003 a piece on reflation. Fred Sheehan, Kurt Richebacher and Doug Noland were ultimately right for a while, but one must recognize too that they started sounding the warning alarms rather too early! (This may be unfair to Sheehan as I don’t recall so clearly now).
<p>And for what it is worth, personally I did speak to the IMF Financial Stability chap in early 2005 at the request of the Bank of England. Quaintly, they were worried about the USD/JPY carry trade by hedge funds (always fighting the last war, these policy-makers). I told him not to worry about the hedge funds, but about the banks, and what they were buying. I wasn’t the only practitioner to see things developing nastily, but there was a very limited audience for this kind of view, and it was perceived as extreme and investors are put off by this kind of thing.
<p>One should also credit Crispin Odey, who put out (rather early) a very good study on the emerging credit bubble by a serious student of bubbles (whose name temporarily escapes me).
<p>Don’t you see it as a problem to explain what the Fed should have done after the fact bearing in mind one had the opportunity to say so at the time, and for whatever reason chose not to say so? Wouldn’t it be more in keeping with the scientific spirit to make pattern predictions?
<p>- the Fed is currently doing X. I believe X’ would be more appropriate, and really, Y is the proper policy<br />- if it continues to do X, as I believe likely, then this is the shape of events that I believe is likely.
<p>I shall throw a hostage to fortune and suggest the following
<p>a. central banks have maintained very easy policy for too long in the belief that the labour market (and maintaining nominal GDP growth) is what is key and in the belief that inflation is the least of their worries following a financial crisis and that should it begin to appear this is a problem that they know well how to solve and that they will at that point act promptly to raise rates and that this will eliminate any prospect of serious inflation taking hold (bearing in mind that it would be desirable to risk somewhat higher median inflation to truncate the disastrous tail of deflation)
<p>b. forward guidance (as adopted most clearly by the bank of england) makes sense if the central bank has superior insight to the market. however central banks (and the Old Lady is no exception) have a horrible track record in economic forecasting, whereas historically market movements in yields anticipate shifts in economic activity much better than any forecasting model not itself incorporating such shifts. since the central bank is only able to react with a lag, and in fact has committed itself to act late, this is a recipe for instability.
<p>c. as the work of Samuel Reynard at the SNB demonstrates, it simply is not the case that post financial crisis the link between money/credit and inflation breaks down. what happens is that so long as risk appetite is depressed it does, but risk appetite can shift quickly. when that happens, a great deal of inflation is baked in the cake and it is simply too late to get to price stability without an unacceptable loss of output, whatever comforting stories central bankers tell themselves in order to be able to sleep at night.
<p>d. the labour market has been horrible. it has lately been perking up, and is likely to do so dramatically on a 2-3 year horizon.
<p>e. when this happens there is going to be payback time for the period of subdued wage growth that followed 2000. offshoring and automation as net job destroying processes may turn out to be yesterday’s story. furthermore rising rates will tend to make it less attractive at the margin to replace labour by capital (noting also that a one-shot adjustment lower in rates leads to a stock adjustment spread out in time, meaning that one is in for a surprise if one extrapolates the spurt of adjustment forward indefinitely into the future).
<p>f. inflation is going a lot higher over the next 3-5 years (and we should see breakeven inflation rise markedly, even on an 18 month horizon).
<p>I do hope the tone of my comment is not unduly combative. I believe this is the critical question of the moment, and would love to hear how I am mistaken.
<p>
<p>Further to that comment, the chart below may help place things in context:
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/04/image10.png"><img title="image" style="border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; display: inline; border-top-width: 0px" border="0" alt="image" src="http://laeeth.com/podcast/wp-content/uploads/2014/04/image_thumb10.png" width="613" height="296"></a></p>
<p> </p>
<p>And the Fed transcript from 25 June 2003 may be found <a href="http://www.federalreserve.gov/monetarypolicy/files/FOMC20030625meeting.pdf">here</a>.</p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<article id="post-249" class="post-249 post type-post status-publish format-standard hentry category-hyperinflation category-inflation category-musings">
<header class="entry-header">
<div class="entry-meta">
<span class="cat-links"><a href="http://laeeth.com/podcast/?cat=10" title="View all posts in hyperinflation" rel="category">hyperinflation</a>, <a href="http://laeeth.com/podcast/?cat=9" title="View all posts in inflation" rel="category">inflation</a>, <a href="http://laeeth.com/podcast/?cat=5" title="View all posts in musings" rel="category">musings</a></span>
</div>
<h1 class="entry-title"><a href="http://laeeth.com/podcast/?p=249" rel="bookmark">Long-term risks of hyperinflation?</a></h1>
<div class="entry-meta">
<span class="entry-date"><a href="http://laeeth.com/podcast/?p=249" rel="bookmark"><time class="entry-date" datetime="2014-04-06T19:49:41+00:00">April 6, 2014</time></a></span> <span class="byline"><span class="author vcard"><a class="url fn n" href="http://laeeth.com/podcast/?author=1" rel="author">admin</a></span></span> <span class="comments-link"><a href="http://laeeth.com/podcast/?p=249#respond" title="Comment on Long-term risks of hyperinflation?">Leave a comment</a></span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p><span style="line-height: 1.5;">My personal view is that it seems political instability precedes hyperinflation (which tends to be associated with a loss of confidence not just in the monetary, but also political authorities).</span></p>
<p>Trends often go parabolic when they end, and it may be we have many more years of relative economic stability ahead before the denouement of a situation where the seeds of the ultimate outcome are already today present and nascent.</p>
<p>However, it is not too soon to contemplate this scenario as one possible end-game even if one avoids explicitly betting on this today. The problem really comes in a future cycle where there may be a conflict between financial stability – given the Wadhwani effect – and targeting price stability.</p>
<p>What is the Wadhwani effect? I believe it was given this name by Sir Alan Budd in a paper I read in the late 1980s, but I have not been able to learn from Dr Wadhwani or other sources where this was first described.</p>
<p>Consider a scenario where the real rate is 2% and inflation is zero – a $2mm apartment will cost $40,000 per annum to finance, and this may be seen as eminently affordable for a certain set of potential purchasers. Consider on the other hand a scenario where the real rate is -2% and inflation is 12%, implying a nominal rate of 10%.</p>
<p>Surely an excellent scenario for the owner of such an asset who has financed it with debt, and who will repay the debt with depreciated dollars! Unfortunately, this would imply a financing cost of $200,000, which will push the asset out of the affordability of many of the original set of purchasers and is likely to serve to depress its price on the relevant investment horizon. Now this illustration was entirely theoretical, since I don’t expect inflation in the developed world to reach this level for some time – but it ought to be quite clear that there are circumstances in which real estate may not serve as effectively as an inflation hedge as many today believe.</p>
<p>Specifically, it means that to a certain extent it will be the level of nominal rates that it is important for asset prices (often held on a levered basis). So if one starts from a situation where the debt stock is high, it may be difficult to raise real rates sustainably to a positive level. Conventional wisdom that thinks in terms of inflation being driven by output-gap type models would suggest that this is not a problem for inflation, given that financial distress will exert a drag on demand, with the consequence that inflation ought not to be a problem (even if the distress occurs at a negative level of real rates): by the time distress occurs, inflation is the last thing one ought to worry about.</p>
<p>But this presumes that the central bank is successful in keeping inflation expectations anchored. The fashion today is to believe that thanks to credibility induced by advanced econometric modelling, devotion to inflation as a primary target, and superior transparency and communications, it simply is not a risk that the central bank loses credibility.</p>
<p>I am not sure if this will be borne out by developments in subsequent years. Credibility relates to trust, and trust is a feeling with neurophysiological correlates that has a logic of its own and is to a certain extent susceptible to contagion and the influence of mass psychology. People do not always act rationally when they are part of a crowd, and this is worse when conventional anchors have been unmoored.</p>
<p>We experienced this during the 60s, where as inflation in the West started to pick up, people were initially habituated to the stability induced by many previous decades of experienced under the gold standard. When that belief was destroyed, it was shocking to most observers how quickly inflation appeared to develop a momentum of its own.</p>
<p>The situation today is rather different. Although there is a ‘wild-eyed’ fringe that has predicted for some years now that the historic monetary expansion post the 2007/2008 crisis would lead eventually to galloping, and perhaps even hyper- inflation, their credibility (one might prefer the term used by Gustave Le Bon – ‘prestige’) has been severely dented by the failure of inflation to appear. For the most part, all sound and reasonable thinkers are quite certain that inflation is the least of our problems for the time being.</p>
<p>My point is that should – despite the clearly and rationally articulated logical explanations why this cannot happen – inflation actually in coming years start to pick up, the prestige, and therefore the credibility, of central banks is likely to be rather more fragile than people realize today. There is a degree of complacency – ‘inflation is a problem we know how to defeat’ that is very different from the attitude customary amongst economists when I started studying the subject in the 1980s. And this complacency has fed through into a de facto emphasis on factors beyond price stability.</p>
<p>That remarkably un-politically-correct genius of social science, Gustave Le Bon, wrote in his 1895 study of mass psychology (“The Crowd”):</p>
<blockquote><p>Great power is given to ideas propagated by affirmation,<br />
repetition, and contagion by the circumstance that they acquire in time that mysterious force known as prestige.</p>
<p>Whatever has been a ruling power in the world, whether it be<br />
ideas or men, has in the main enforced its authority by means of that irresistible force expressed by the word “prestige.” The<br />
term is one whose meaning is grasped by everybody, but the wordis employed in ways too different for it to be easy to define it. Prestige may involve such sentiments as admiration or fear.<br />
Occasionally even these sentiments are its basis, but it can<br />
perfectly well exist without them.</p>
<p><strong>Prestige in reality is a sort of domination exercised on our mind </strong><strong>by an individual, a work, or an idea. This domination entirely </strong><strong>paralyses our critical faculty</strong>, and fills our soul with<br />
astonishment and respect. The sentiment provoked is<br />
inexplicable, like all sentiments, but it would appear to be of<br />
the same kind as the fascination to which a magnetised person is subjected. Prestige is the mainspring of all authority. Neither<br />
gods, kings, nor women have ever reigned without it.</p>
<p> </p>
<p><strong>The special characteristic of prestige is to prevent us seeing things as they are and to entirely paralyse our judgement.</strong> Crowds always, and individuals as a rule, stand in need of ready-made opinions on all subjects. The popularity of these opinions is independent of the measure of truth or error they contain, and is solely regulated by their prestige.</p>
<p><strong>It is seen from what precedes that a number of factors may be </strong><strong>concerned in the genesis of prestige; among them success was </strong><strong>always one of the most important. Every successful man, every </strong><strong>idea that forces itself into recognition, ceases, ipso facto, to </strong><strong>be called in question. The proof that success is one of the </strong><strong>principal stepping-stones to prestige is that the disappearance </strong><strong>of the one is almost always followed by the disappearance of the other. The hero whom the crowd acclaimed yesterday is insulted to-day should he have been overtaken by failure. The reaction, indeed, will be the stronger in proportion as the prestige has been great.</strong> The crowd in this case considers the fallen hero as an equal, and takes its revenge for having bowed to a superiority whose existence it no longer admits. While Robespierre was causing the execution of his colleagues and of a great number of his contemporaries, he possessed an immense prestige. When the transposition of a few votes deprived him of power, he immediately lost his prestige, and the crowd followed him to the guillotine with the self-same imprecations with which shortly before it had pursued his victims. Believers always break the statues of their former gods with every symptom of fury.</p>
<p>Prestige lost by want of success disappears in a brief space of<br />
time. It can also be worn away, but more slowly by being<br />
subjected to discussion. This latter power, however, is<br />
exceedingly sure. <strong>From the moment prestige is called in question it ceases to be prestige. The gods and men who have kept their prestige for long have never tolerated discussion. For the crowd to admire, it must be kept at a distance</strong>.</p></blockquote>
<p>If one believes Le Bon to be right in his understanding, one may wonder about how wise it may turn out to have been to demystify the workings of the central bank and monetary policy. But the really key point is that the credibility of central banks is more fragile than currently perceived. They have it, until they don’t. At that point, we may be surprised at just how quickly expectations shift.</p>
<p>I do not mean to say that I see hyperinflation – even in some decades – as a central scenario, and I certainly do not expect it imminently. But given the consequences for asset pricing, it is perhaps worth spending some time exploring its eventual possibility.</p>
<p>Reproduced with permission:</p>
<p> </p>
<blockquote><p>It is worth remembering that Ben Bernanke in his now widely quoted “Deflation; Making Sure “It” Doesn’t Happen Here speech of November 2002 argued that deflation is in fact quite easy to deal with: “The U.S. government has a technology, called a printing press (or, today, its electronic equivalent), that allows it to produce as many U.S. dollars as it wishes at essentially no cost. By increasing the number of U.S. dollars in circulation, or even by credibly threatening to do so, the U.S. government can also reduce the value of a dollar in terms of goods and services, which is equivalent to raising the prices in dollars of those goods and services. We conclude that, under a paper-money system, a determined government can always generate higher spending and hence positive inflation”.</p>
<p>Could it be that we are waging an Orwellian war against an enemy that only really exists as a figment of our imaginations? Japan for example “suffered” deflation in its lost decade right? Wrong. Deflation is defined as a sustained decrease in the general price level of goods and services. Even though asset prices fell precipitously over this period<br />
(1992-2001) consumer prices actually rose by nearly 2%. Core consumer prices (ex-food and energy) rose by 3%. Neither did money supply contract: during the lost decade the money base doubled and the broad measure M2 + CDs rose at an annualized rate of 2.7%.</p>
<p>Not only are the arguments against deflation overstated, and the Japanese experience misrepresented, the benefits of deflation are rarely articulated. Nobody would dispute that inflation is a bad thing for consumers, other things equal, because it erodes their purchasing power. Analogously deflation is a good thing, other things equal, because it boosts consumer purchasing power. Few would argue that the collapse in oil prices between July and December 2008 was a bad thing, and it was perhaps the most important reason why US consumption stabilized in the first quarter of 2009.</p>
<p>In the last ten years to 2007 the price of personal computers has fallen at an average rate of 19% a year in the US. Over the same period, nominal spending on personal computers has risen at annual rate of 6%, implying a 31% real annual increase (1998 to 2007). This example illustrates that the income effect – the boost to purchasing power from falling prices – will easily dominate any tendency for buyers to sit back and let prices fall.</p>
<p>Benign deflations associated with technological advances are usually a good thing. And if a malign deflation threatens – defined as a deflation associated with a contraction of money and credit – then as Bernanke articulated central banks can deal with the problem. Institutionalized inflation targets, ostensibly designed to guard against inflation, tend to be set around a small positive rate of inflation, say 2%, where the purchasing power of money roughly halves once a generation. This is not really price stability; it is in fact a continuation of the steep upward sloping line in chart three. The rationale for positive inflation targets is that it gives monetary policy more wiggle room – i.e., scope to manipulate real rates negative if necessary – and Keynesian nominal wage rigidity may worsen the alleged trade-off between inflation and unemployment below a certain rate of inflation. However nominal wage rigidity is arguably an outdated 20th century concept, which has been rendered obsolete in a globalised labor market. Moreover, if credit targeting is a superior regime to interest rate targeting then the wiggle room problem is also rendered obsolete. In a credit targeting regime, genuine price stability – a stabilization of the price level – would be a more likely proposition.</p>
<p>…</p>
<p>Given the enormous and unprecedented policy stimulus, risks are weighted to continued positive data surprises, unless or until the bond market collapses under its own colossal weight. Rather than allow the end of cycle cleansing to run its natural course the thrust of policy is to rekindle credit creation, but this can only happen if asset prices can be manipulated higher. Essentially policymakers are repeating the same mistakes of the past but in much bigger doses. The scope for this to end up in tears is considerable. The risks are skewed to inflation rather than deflation given the scale of policy stimulus already put in place, and because of the deafening chorus for policymakers to be brave and not withdraw stimulus prematurely when their<br />
track record has been to leave stimulus in place for too long.</p>
<p>We may be about to enter the second crisis of Keynesian economics as the economy catches a dose of stagflation, something that many economists will claim cannot happen in the current environment. In a worst case the policy response to the end of the great moderation will sow the seeds of the collapse of our fiat money system. The next policy template is likely to be based on sound money and fiscal responsibility.</p></blockquote>
<p>Full report is available here: <a href="http://laeeth.com/podcast/wp-content/uploads/2014/04/amstad.pdf"><br />
</a></p>
<p><a href="http://laeeth.com/podcast/wp-content/uploads/2014/04/amstad.pdf">Ian Amstad: the Great Reflationary Gamble – Fat Tails and Unintended Consequences</a></p>
</div><!-- .entry-content -->
</article><!-- #post-## -->
<nav class="navigation paging-navigation" role="navigation">
<h1 class="screen-reader-text">Posts navigation</h1>
<div class="pagination loop-pagination">
<span class='page-numbers current'>1</span>
<a class='page-numbers' href='http://laeeth.com/podcast/1_8/C/H5G/testfiles/h5ex_g_create.tst/?paged=2'>2</a>
<span class="page-numbers dots">…</span>
<a class='page-numbers' href='http://laeeth.com/podcast/1_8/C/H5G/testfiles/h5ex_g_create.tst/?paged=6'>6</a>
<a class="next page-numbers" href="http://laeeth.com/podcast/1_8/C/H5G/testfiles/h5ex_g_create.tst/?paged=2">Next →</a> </div><!-- .pagination -->
</nav><!-- .navigation -->
</div><!-- #content -->
</div><!-- #primary -->
<div id="content-sidebar" class="content-sidebar widget-area" role="complementary">
<aside id="iclw-2" class="widget widget_iclw"><h1 class="widget-title">Blogroll</h1><ul><li><a target="_blank" href="http://kaleidicassociates.com">Kaleidic Associates</a></li><li><a target="_blank" href="http://uneasymoney.com">David Glasner's Uneasy Money</a></li><li><a target="_blank" href="http://gloomboomdoom.com">Marc Faber's Gloom Boom Doom</a></li><li><a target="_blank" href="https://mikeashton.wordpress.com/author/mikeashton/">Michael Ashton's E-piphany (Inflation)</a></li><li><a target="_blank" href="http://soberlook.com/">Sober Look Blog</a></li><li><a target="_blank" href="http://pragcap.com/">Pragmatic Capitalism</a></li><aside id="tag_cloud-2" class="widget widget_tag_cloud"><h1 class="widget-title">Topics</h1><div class="tagcloud"><a href='http://laeeth.com/podcast/?tag=bitcoin' class='tag-link-35' title='1 topic' style='font-size: 8pt;'>bitcoin</a>
<a href='http://laeeth.com/podcast/?tag=featured' class='tag-link-33' title='3 topics' style='font-size: 22pt;'>featured</a>
<a href='http://laeeth.com/podcast/?tag=ibnkhaldun' class='tag-link-38' title='1 topic' style='font-size: 8pt;'>ibnkhaldun</a>
<a href='http://laeeth.com/podcast/?tag=newleaders' class='tag-link-39' title='1 topic' style='font-size: 8pt;'>newleaders</a>
<a href='http://laeeth.com/podcast/?tag=toynbee' class='tag-link-37' title='1 topic' style='font-size: 8pt;'>toynbee</a></div>
</aside></div><!-- #content-sidebar -->
</div><!-- #main-content -->
<div id="secondary">
<h2 class="site-description">Laeeth's thoughts on markets and society</h2>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<aside id="search-2" class="widget widget_search"><form role="search" method="get" class="search-form" action="http://laeeth.com/podcast/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" title="Search for:" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form></aside> <aside id="recent-posts-2" class="widget widget_recent_entries"> <h1 class="widget-title">Recent Posts</h1> <ul>
<li>
<a href="http://laeeth.com/podcast/?p=431">Quora reply: “What will finance look like in a decade?”</a>
</li>
<li>
<a href="http://laeeth.com/podcast/?p=429">Comment on Koppl: Animal Spirits vs Policy Uncertainty</a>
</li>
<li>
<a href="http://laeeth.com/podcast/?p=427">Withered Emotional Life in Modernity</a>
</li>
<li>
<a href="http://laeeth.com/podcast/?p=425">Understatement in Beowulf</a>
</li>
<li>
<a href="http://laeeth.com/podcast/?p=417">Dr Sheldrake on the loss from professionalisation and specialisation in academe</a>
</li>
</ul>
</aside><aside id="recent-comments-2" class="widget widget_recent_comments"><h1 class="widget-title">Recent Comments</h1><ul id="recentcomments"></ul></aside><aside id="archives-2" class="widget widget_archive"><h1 class="widget-title">Archives</h1> <ul>
<li><a href='http://laeeth.com/podcast/?m=201409'>September 2014</a></li>
<li><a href='http://laeeth.com/podcast/?m=201408'>August 2014</a></li>
<li><a href='http://laeeth.com/podcast/?m=201406'>June 2014</a></li>
<li><a href='http://laeeth.com/podcast/?m=201405'>May 2014</a></li>
<li><a href='http://laeeth.com/podcast/?m=201404'>April 2014</a></li>
<li><a href='http://laeeth.com/podcast/?m=201403'>March 2014</a></li>
<li><a href='http://laeeth.com/podcast/?m=201310'>October 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201309'>September 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201308'>August 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201307'>July 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201306'>June 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201305'>May 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201304'>April 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201303'>March 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201302'>February 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201301'>January 2013</a></li>
<li><a href='http://laeeth.com/podcast/?m=201207'>July 2012</a></li>
<li><a href='http://laeeth.com/podcast/?m=201206'>June 2012</a></li>
<li><a href='http://laeeth.com/podcast/?m=201112'>December 2011</a></li>
<li><a href='http://laeeth.com/podcast/?m=201111'>November 2011</a></li>
<li><a href='http://laeeth.com/podcast/?m=201109'>September 2011</a></li>
<li><a href='http://laeeth.com/podcast/?m=201108'>August 2011</a></li>
<li><a href='http://laeeth.com/podcast/?m=201107'>July 2011</a></li>
<li><a href='http://laeeth.com/podcast/?m=201106'>June 2011</a></li>
<li><a href='http://laeeth.com/podcast/?m=201105'>May 2011</a></li>
<li><a href='http://laeeth.com/podcast/?m=201012'>December 2010</a></li>
<li><a href='http://laeeth.com/podcast/?m=201011'>November 2010</a></li>
<li><a href='http://laeeth.com/podcast/?m=201005'>May 2010</a></li>
<li><a href='http://laeeth.com/podcast/?m=201004'>April 2010</a></li>
<li><a href='http://laeeth.com/podcast/?m=201003'>March 2010</a></li>
<li><a href='http://laeeth.com/podcast/?m=201002'>February 2010</a></li>
<li><a href='http://laeeth.com/podcast/?m=201001'>January 2010</a></li>
<li><a href='http://laeeth.com/podcast/?m=200912'>December 2009</a></li>
<li><a href='http://laeeth.com/podcast/?m=200911'>November 2009</a></li>
<li><a href='http://laeeth.com/podcast/?m=200910'>October 2009</a></li>
<li><a href='http://laeeth.com/podcast/?m=200909'>September 2009</a></li>
<li><a href='http://laeeth.com/podcast/?m=200908'>August 2009</a></li>
<li><a href='http://laeeth.com/podcast/?m=200907'>July 2009</a></li>
<li><a href='http://laeeth.com/podcast/?m=200906'>June 2009</a></li>
<li><a href='http://laeeth.com/podcast/?m=200901'>January 2009</a></li>
<li><a href='http://laeeth.com/podcast/?m=200812'>December 2008</a></li>
<li><a href='http://laeeth.com/podcast/?m=200809'>September 2008</a></li>
<li><a href='http://laeeth.com/podcast/?m=200808'>August 2008</a></li>
<li><a href='http://laeeth.com/podcast/?m=200807'>July 2008</a></li>
</ul>
</aside><aside id="categories-2" class="widget widget_categories"><h1 class="widget-title">Categories</h1> <ul>
<li class="cat-item cat-item-6"><a href="http://laeeth.com/podcast/?cat=6" title="View all posts filed under agriculture">agriculture</a>
</li>
<li class="cat-item cat-item-28"><a href="http://laeeth.com/podcast/?cat=28" title="View all posts filed under baltics">baltics</a>
</li>
<li class="cat-item cat-item-35"><a href="http://laeeth.com/podcast/?cat=35" title="View all posts filed under bitcoin">bitcoin</a>
</li>
<li class="cat-item cat-item-11"><a href="http://laeeth.com/podcast/?cat=11" title="View all posts filed under business cycle">business cycle</a>
</li>
<li class="cat-item cat-item-26"><a href="http://laeeth.com/podcast/?cat=26" title="View all posts filed under charlton">charlton</a>
</li>
<li class="cat-item cat-item-12"><a href="http://laeeth.com/podcast/?cat=12" title="View all posts filed under china">china</a>
</li>
<li class="cat-item cat-item-19"><a href="http://laeeth.com/podcast/?cat=19" title="View all posts filed under civilization">civilization</a>
</li>
<li class="cat-item cat-item-7"><a href="http://laeeth.com/podcast/?cat=7" title="View all posts filed under commodities">commodities</a>
</li>
<li class="cat-item cat-item-17"><a href="http://laeeth.com/podcast/?cat=17" title="View all posts filed under contrarian">contrarian</a>
</li>
<li class="cat-item cat-item-22"><a href="http://laeeth.com/podcast/?cat=22" title="View all posts filed under culture">culture</a>
</li>
<li class="cat-item cat-item-8"><a href="http://laeeth.com/podcast/?cat=8" title="View all posts filed under cycles">cycles</a>
</li>
<li class="cat-item cat-item-14"><a href="http://laeeth.com/podcast/?cat=14" title="View all posts filed under dollar">dollar</a>
</li>
<li class="cat-item cat-item-27"><a href="http://laeeth.com/podcast/?cat=27" title="View all posts filed under education">education</a>
</li>
<li class="cat-item cat-item-29"><a href="http://laeeth.com/podcast/?cat=29" title="View all posts filed under emerging markets">emerging markets</a>
</li>
<li class="cat-item cat-item-15"><a href="http://laeeth.com/podcast/?cat=15" title="View all posts filed under fx">fx</a>
</li>
<li class="cat-item cat-item-13"><a href="http://laeeth.com/podcast/?cat=13" title="View all posts filed under gold">gold</a>
</li>
<li class="cat-item cat-item-16"><a href="http://laeeth.com/podcast/?cat=16" title="View all posts filed under housing">housing</a>
</li>
<li class="cat-item cat-item-10"><a href="http://laeeth.com/podcast/?cat=10" title="View all posts filed under hyperinflation">hyperinflation</a>
</li>
<li class="cat-item cat-item-9"><a href="http://laeeth.com/podcast/?cat=9" title="View all posts filed under inflation">inflation</a>
</li>
<li class="cat-item cat-item-21"><a href="http://laeeth.com/podcast/?cat=21" title="View all posts filed under kondratiev">kondratiev</a>
</li>
<li class="cat-item cat-item-25"><a href="http://laeeth.com/podcast/?cat=25" title="View all posts filed under mcgilchrist">mcgilchrist</a>
</li>
<li class="cat-item cat-item-20"><a href="http://laeeth.com/podcast/?cat=20" title="View all posts filed under middle east">middle east</a>
</li>
<li class="cat-item cat-item-40"><a href="http://laeeth.com/podcast/?cat=40" title="View all posts filed under modelportolio">modelportolio</a>
</li>
<li class="cat-item cat-item-5"><a href="http://laeeth.com/podcast/?cat=5" title="View all posts filed under musings">musings</a>
</li>
<li class="cat-item cat-item-36"><a href="http://laeeth.com/podcast/?cat=36" title="View all posts filed under newmonetaryeconomics">newmonetaryeconomics</a>
</li>
<li class="cat-item cat-item-4"><a href="http://laeeth.com/podcast/?cat=4" title="View all posts filed under philosophy">philosophy</a>
</li>
<li class="cat-item cat-item-3"><a href="http://laeeth.com/podcast/?cat=3" title="View all posts filed under podcasts">podcasts</a>
</li>
<li class="cat-item cat-item-18"><a href="http://laeeth.com/podcast/?cat=18" title="View all posts filed under psychology">psychology</a>
</li>
<li class="cat-item cat-item-23"><a href="http://laeeth.com/podcast/?cat=23" title="View all posts filed under quiet">quiet</a>
</li>
<li class="cat-item cat-item-31"><a href="http://laeeth.com/podcast/?cat=31" title="View all posts filed under solar">solar</a>
</li>
<li class="cat-item cat-item-24"><a href="http://laeeth.com/podcast/?cat=24" title="View all posts filed under thinking">thinking</a>
</li>
<li class="cat-item cat-item-1"><a href="http://laeeth.com/podcast/?cat=1" title="View all posts filed under Uncategorized">Uncategorized</a>
</li>
<li class="cat-item cat-item-32"><a href="http://laeeth.com/podcast/?cat=32" title="View all posts filed under volcanoes">volcanoes</a>
</li>
<li class="cat-item cat-item-30"><a href="http://laeeth.com/podcast/?cat=30" title="View all posts filed under war">war</a>
</li>
</ul>
</aside><aside id="meta-2" class="widget widget_meta"><h1 class="widget-title">Meta</h1> <ul>
<li><a href="http://laeeth.com/podcast/wp-login.php?action=register">Register</a></li> <li><a href="http://laeeth.com/podcast/wp-login.php">Log in</a></li>
<li><a href="http://laeeth.com/podcast/?feed=rss2" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="http://laeeth.com/podcast/?feed=comments-rss2" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="https://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li> </ul>
</aside> </div><!-- #primary-sidebar -->
</div><!-- #secondary -->
</div><!-- #main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<a href="http://wordpress.org/">Proudly powered by WordPress</a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<div style="display:none">
</div>
<script type='text/javascript' src='http://s0.wp.com/wp-content/js/devicepx-jetpack.js?ver=201445'></script>
<script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?ver=2014Novaa'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var WPGroHo = {"my_hash":""};
/* ]]> */
</script>
<script type='text/javascript' src='http://laeeth.com/podcast/wp-content/plugins/jetpack/modules/wpgroho.js?ver=3.9.2'></script>
<script type='text/javascript' src='http://laeeth.com/podcast/wp-content/themes/twentyfourteen/js/functions.js?ver=20131209'></script>
<script src="http://stats.wordpress.com/e-201445.js" type="text/javascript"></script>
<script type="text/javascript">
st_go({v:'ext',j:'1:2.9.3',blog:'67883586',post:'0',tz:'0'});
var load_cmc = function(){linktracker_init(67883586,0,2);};
if ( typeof addLoadEvent != 'undefined' ) addLoadEvent(load_cmc);
else load_cmc();
</script></body>
</html> |
98037c8d582725ede587b1546a16d0aaaf6d7162 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.3.1/Unix-Windows/scilab-2.3/macros/scicos_blocks/CURV_f.sci | fe639676194aa68195f67ee77c801963f5b69fca | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,727 | sci | CURV_f.sci | function [x,y,typ]=CURV_f(job,arg1,arg2)
x=[];y=[];typ=[];
select job
case 'plot' then
standard_draw(arg1)
case 'getinputs' then
[x,y,typ]=standard_inputs(arg1)
case 'getoutputs' then
[x,y,typ]=standard_outputs(arg1)
case 'getorigin' then
[x,y]=standard_origin(arg1)
case 'set' then
x=arg1
model=arg1(3)
graphics=arg1(2)
[rpar,ipar]=model(8:9)
n=ipar(1)
xx=rpar(1:n);yy=rpar(n+1:2*n)
curwin=xget('window')
win=maxi(windows(:,2))+1
xset('window',win);xsetech([0 0 1 1])
gc=list(rpar(2*n+1:2*n+4),ipar(2:5))
while %t do
[xx,yy,ok,gc]=edit_curv(xx,yy,'axy',[' ',' ',' '],gc)
if ~ok then break,end
n=size(xx,'*')
if or(xx(2:n)-xx(1:n-1)<0) then
message('You have not defined a function')
ok=%f
end
if ok then
model(1)='intplt'
model(11)=[] //compatibility
rect=gc(1)
model(8)=[xx(:);yy(:);rect(:)]
axisdata=gc(2)
model(9)=[size(xx,'*');axisdata(:)]
x(2)=graphics;x(3)=model
break
end
end
xdel(win)
xset('window',curwin)
case 'define' then
xx=[0;1;2];yy=[-5;5;0]
rect=[0,-5,2,5];
axisdata=[2;10;2;10]
ipar=[size(xx,1);axisdata(:)]
rpar=[xx;yy;rect(:)]
model=list('intplt',[],1,[],[],[],[],rpar,ipar,'c',[],[%f %t],' ',list())
gr_i=['model=arg1(3);rpar=model(8);ipar=model(9);n=ipar(1);';
'thick=xget(''thickness'');xset(''thickness'',2);';
'xx=rpar(1:n);yy=rpar(n+1:2*n);';
'rect=rpar(2*n+1:2*n+4);';
'mxx=rect(3)-rect(1);';
'mxy=rect(4)-rect(2);';
'xx=orig(1)+sz(1)*(1/10+(4/5)*((xx-rect(1))/mxx));';
'yy=orig(2)+sz(2)*(1/10+(4/5)*((yy-rect(2))/mxy));';
'xpoly(xx,yy,''lines'');';
'xset(''thickness'',thick);']
x=standard_define([2 2],model,[],gr_i)
end
|
c480c0c82dbe6ea09ea98ac011ae5d8f0a440308 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1358/CH6/EX6.5/Example65.sce | 4e95dbc751bfbf131048c0bf9006f78e531aee84 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 898 | sce | Example65.sce | // Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
clear;
clc;
disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 6, Example 5")
disp("At the state point 2, the dryness fraction is 0.85 and the pressure is 0.1 MPa.")
disp("This problem can be solved easily by the Mollier chart or by calculations.")
disp("Enthalpy and entropy may be determined using the following equations:")
disp("h2 = hf2 + x2hfg2 and s2 = sf2 + x2sfg2;")
hf2 = 417.46
x2 = 0.85
hfg2 = 2258
h1 = hf2+x2*hfg2
sf2 = 1.3026
sfg2 = 6.0568
s2 = sf2+x2*sfg2
disp("Since s1 = s2, the state 1 is fixed by s1 = 6.451 kJ/kg K, and point 1 is at the dry saturated line.")
disp("Therefore pressure P1 may be determined by the Mollier chart or by calculations: i.e.: P1 = 1.474 MPa.")
disp("Elthalpies are in kJ/kg, entropy in kJ/kgK and Pressure in MPa")
|
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=") |
429270a285d46892bd706a4df9340433503e8333 | 50145ac9e4eb8bce8975bf874a027c4a4620a092 | /Assignment3/Least_square_line.sce | 8eb599a6d353b25bbf9aad0ef3f394315c7faacf | [] | no_license | RahilNModi/LA_assignment | 86d274214fb3ac86b900af2e4c187bd692ebcb07 | 5d1905548bad9eb9b01f7e3269b837fb924b3ddc | refs/heads/master | 2021-07-05T09:15:29.848895 | 2021-05-11T17:39:52 | 2021-05-11T17:39:52 | 236,529,008 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,536 | sce | Least_square_line.sce | clear
clc
close
a=[]
b=[]
printf("For equations of form b=C+D*t or y=c+m*x or values of x and y:\n")
printf("Enter in given fashion.\n")
printf("Enter the number of equations or values:\n")
n=input("");
for i=1:n
printf("Enter term a(%d,1) or else Enter 1(best fit line):\n",i)
a(i,1)=input("")
printf("Enter term a(%d,2) or else Enter the value of t%d or x%d(best fit line):\n",i,i,i)
a(i,2)=input("")
end
for i=1:n
printf("Enter term b(%d,1) or Enter the value of b%d or y%d(best fit line):\n",i,i,i)
b(i,1)=input("")
end
disp(a,"The co-efficient matrix A is:")
disp(b,"The constant matrix b is:")
printf("\nTo find best fit line using least square method we use normalisation formula:\n")
printf("Let C be A transpose\n")
printf("C*A*x=C*b\n")
lhs=a'*a
rhs=a'*b
disp(rhs,lhs)
printf("\nWe solve for C and D or c or m:\n")
x=inv(lhs)*rhs
disp(x)
printf("\nThe best fit line obtained using least square method is :\n\n")
printf("b=(%f)+(%f)*t\n",x(1,1),x(2,1))
printf("or\n")
printf("y=(%f)+(%f)*x\n\n",x(1,1),x(2,1))
printf("The projection of b onto column space of A would be:\n")
p=a*x
disp(p)
printf("\nFinally the minimised error vector and its squared value are:\n")
e=b-p
disp(e,"Error Vector")
s=0
for i=1:n
s=s + (e(i,1)^2)
end
printf("\nSquared value of minimum error is %f\n\n",s)
printf("At last we can verify that error is perpendicular to columns of A.\n")
ip1=e'*a(:,1)
ip2=e'*a(:,2)
disp(ip1,"Inner Product 1")
disp(ip2,"Inner product 2")
|
95cdd9b8032b90447bb921264e6b19462c57168d | ac1f8441b0319b4a391cd5a959bd3bb7988edfa7 | /data/news2015/news2015/EnKo/enko12.tst | 3e1ccbed68ba37ed1b193a01f662d2258c2fafad | [
"MIT"
] | permissive | SaeedNajafi/transliterator | 4d58b8604fa31f52ee2dce7845e002a18214fd5e | 523a087b777a5d6eec041165dabb43848f6222e6 | refs/heads/master | 2021-09-18T17:02:59.083727 | 2018-07-17T06:01:21 | 2018-07-17T06:01:21 | 129,796,130 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,575 | tst | enko12.tst | abdel
abdollah
abdulaziz
abdulqader
abela
abizaid
aczel
adamu
adi
advocaat
aerts
afer
ag
agbani
agre
ahmadinejad
ahmet
airy
akerlof
akilov
alarcon
alcide
aldrich
aleksandrovich
aleksey
alemanno
alexandros
alexius
alguersuari
alimamy
aliyev
alla
allport
allyson
aloys
altukhov
amalie
amartya
amerigo
amirov
amor
amvrosijevich
anastas
anatoli
andjelko
andreevich
andrija
aneurin
angelsen
annaeus
annunzio
antiokh
aoun
apostolo
arafat
araoz
arbour
archibald
arensky
ariane
aristide
arkin
armani
arnett
arrab
arsala
arzu
asgrimsson
assis
astair
atchimon
atkinson
attlee
audiard
auguistin
aulard
aumann
aurelius
ausonius
avedon
awn
aybak
azarov
azouz
babacan
babychev
bachchan
badoglio
bagabandi
bair
bakary
balakirev
baldassare
balkenende
baltasar
baratier
barcelo
barnica
barshefsky
baruj
basdeo
basinger
batcheller
bazhenov
beckert
bedjaoui
begum
belisario
belluzzo
bembo
benflis
benizri
bercow
bergkamp
beriz
bernanke
berri
berthelot
bessette
beyssade
bezos
bhutto
bienvenido
bihari
bindyukov
birendra
bizimungu
blanchett
blatter
bleuler
blokhuijsen
boateng
boehner
boisclair
bolocco
bolyai
bondevik
boorda
borel
boro
botev
boudou
bourdieu
bowersox
brahe
branch
brazauskas
brenton
bridges
brin
brockhouse
brosnan
brufau
brunfels
bryntsalov
buemi
bujak
bulat
bulman
burdzhanadze
butch
buzek
byacheslav
cabanis
cadete
caillois
callas
camal
cannizzaro
capria
cardoso
carissimi
carossa
carreras
casona
castagno
catharine
cavalieri
cela
celski
chaadaev
chailly
chalid
char
charlize
charron
chavannes
cheikh
cherie
cherpitel
chialo
chillida
chirico
chowdhury
christine
chrowder
chugainov
cilla
clair
clarke
claudie
cleghorn
cliburn
clouet
coates
cocceius
coeur
coligny
colom
compay
condoleezza
consuelo
cooley
corazzini
cordero
corelli
coriolis
corot
corvino
cosmas
cottrer
coulanges
coulomb
courbet
coverdale
craner
craxi
crick
croft
crooks
crutzen
cubas
cusack
d'amboise
dagfinn
dalia
danchenko
dankmar
darbo
darren
daveluy
de amicis
de forest
de morgan
de sica
defrantz
deeken
deisenhofer
delaroche
delors
demy
dennecker
derwent
descartes
detrani
dhanapala
diarra
didier
diliberto
dini
dirck
djoghlaf
dobrica
dolfuss
dominikus
domnina
donnall
dorie
dorwin
drachmann
drinker
du vigneaud
dufay
duhalde
dunwoody
duvvuri
dzhokhar
ebbensen
ed
edme
eduardovich
efimovich
egorovich
eidur
eizenstat
el
elbegdorj
elezi
elisha
elpidio
elytis
emiliano
emomali
endara
ennio
eriugena
ertl
esko
espiritu
essy
estournelles
eusebius
evangelista
evgenii
evseevich
fabien
fabrizio
faisal
falcon
falla
famundi
farish
fassino
fawzi
febres
fedot
fenech
feofilaktovich
fermo
fert
feyder
fil
fillon
firminaus
fjellanger
florens
foday
fomich
foxx
fradkov
franov
freeh
friesz
fulgencio
fyodor
fyodrovich
gagarin
galaktionovich
gallimard
galushkin
gambell
garrigue
gauck
gavyn
gegard
geim
gekas
gem
genjac
gennadiy
georgievich
georgy
geyser
ghani
ghirlandajo
giacomo
gibran
giesebrecht
giovanardi
girma
gitry
glafcos
glev
glock
gobind
goldenthal
gonchigdorj
gopalakrishnan
gordhan
gotama
grabbe
graebe
granados
greider
grignard
grigoris
grinius
grossetest
gruenwald
gruss
gudnason
guelleh
guevara
guingona
gunmunro
gurgenidze
gusenkov
gutierres
gwyneth
haarde
hackworth
hadid
hailsham
halford
halonen
hamad
hamid
hannesson
hardouin
hartwell
hassanein
hausdorff
heaney
heidemarie
heikki
hendricus
henney
hermite
herschbach
hevesy
hild
hipolito
hirtius
hitler
hoagy
hofmannswaldau
hollande
horvitz
houdin
huckle
hunziker
husain
hussein
iajuddin
idi
iffland
ignatenko
igor'
il'ya
iliich
iloilo
imangali
ingemar
ippolitov
irvin
isakovich
ishaq
isidoro
issing
ivanovich
ivashentsov
iwaszkiewicz
jabang
jacopo
jagdeo
jahnn
jalal
jammeh
jannuzi
jarno
jayakumar
jefferts
jeffreys
jendayi
jerry
jessye
jhala
jimmie
jody
johnsrud
jopling
josefa
josip
jowell
judt
juliuss
jurij
jutta
kabalevskii
kablan
kafougouna
kairaba
kaliq
kamerlingh
kansteiner
karaev
karavaeva
karle
kartman
kasimir
kastler
katia
kazakov
kazinczy
keitel
kemmons
kerkorian
ketterle
kezich
khalifa
khankder
khashoggi
khodorkovsky
khouna
khrustaleva
kibaki
kiljan
kinelyov
kirchhoff
kirill
kislyak
kiviniemi
klapka
kleisterlee
kleybanova
kocharyan
koffi
kollontai
kondratiev
konstantinovna
korda
kornilov
korthals
kostas
kountsche
kovar
krajisnik
kresimir
kristopans
kroto
kuchma
kuma
kund
kurkova
kussevitzky
kwame
kyshenko
la harpe
la salle
labro
laclos
lactantius
lahoud
lal
lamberto
landsbergis
lant
larbaud
lartet
laue
lauritz
lavagna
lavrentii
lazare
le chatelier
leah
leavis
leblanc
lefkowitz
legna
leibl
leite
lemire
leonidas
leontief
lesage
leterme
leuckart
lhote
licinianus
liikanen
lilletun
lindblad
liouville
liuzzi
livni
ll'estrac
lochhead
loitzl
lorca
losev
lotze
lousie
lucanus
lucio
ludovico
lukasiewicz
lundestad
luthuli
lykketoft
lyson
macbride
macleish
macharaviaya
macquorn
maderno
mafani
magomedovna
magyasi
mahfouz
maicon
maisto
makarova
makkhali
makuza
malchow
malinovskii
malmierca
malumino
mandelson
manigat
mannan
mantegna
marat
marcos
margaryan
marine
marlies
martialis
martiros
marzano
maskhadov
massin
matenge
mathuriu
mattarella
matti
matveevich
maumoon
maximianus
mayol
mazzini
mcaleese
mccartney
mcclung
mccormick
mcdonald
mcdougall
mcgimpsey
mckiernan
mcloughlin
mchimik
medvedtseva
meguid
meira
mejia
melikyan
mendeleev
mercado
mersenne
messina
metsu
michelangelo
mickelson
miers
mignard
mihal
milagros
milii
millon
mingus
mirbeau
mirko
mirrione
mises
miyet
mobutu
moderatus
moffet
mohamed
mohammadi
mohaqqeq
moldovan
montagnier
monti
morauta
morricone
mosharraf
motlanthe
mountbatten
mousavi
moyer
mravinski
mugur
mujibur
mulisch
mundia
musab
musorgskii
mutawakil
mwai
mydans
myranus
nabil
nahles
nambaryn
narayanan
nathanael
naum
nazeri
ndiaye
necmettin
nekrutenko
nemtsov
neptune
neumeier
niasse
nicolien
nietzsche
nikisch
nikolaas
nikolaus
niksch
niyazov
noboa
nordahl
note
nsibambi
nursultan
nze
o'connor
o'neil
obaid
oberdorfer
odd
odysseus
okalik
olafur
olaus
ole
oliviero
omurbek
onopko
oppegard
orff
orser
osheroff
osterwalder
otakar
ottey
ottovich
oumar
overeem
paal
padberg
paksas
paltrow
paniagua
papain
paracelsus
paschke
pastrana
paulino
pavle
pavol
pelosi
perenlein
persoz
petkovic
petrosky
pettersen
philander
phumzile
pieterszoon
piot
pitirim
pius
plautus
plinius
podesta
polignac
pompeo
porcius
poturak
pranab
pressel
principi
propertius
prusiner
pugachov
purnell
qaddafi
quader
quintero
quirino
ra'anan
rademaker
radishchev
radovan
rafikovich
ragnar
raguz
rahmannizami
rajendra
rakowski
ramazan
ranariddh
ranke
raoult
rateau
ratu
rawabdeh
razzoli
reding
reffi
reithmayer
renchinnyamiin
resto
reynaldo
rheed
richthofen
rider
riester
rilling
rinser
ritzer
rizal
robbia
rochette
rodham
rodolphus
rohrsted
rolihlahla
romanovich
ronaldo
ronis
rory
roscoe
rot
rouseau
roze
rubbia
rufino
rushailo
ruy
rykov
sabah
saccheri
sadeq
salad
saleilles
sallie
salvator
samori
samuilovich
sankoh
saramago
sargsyan
sarkozy
sarto
sasono
savart
savinien
scajola
scarron
schanelec
schiavo
schioppa
schmoegnerova
schrock
schwebel
scoon
scribe
seddiqi
seferis
seleznyov
semak
semyonovich
serah
sergeevich
sergeyevich
sevastova
severinus
sezer
shahn
shalev
shanmugaratnam
sharpless
shcherbatskoi
sheikh
shevardnadze
shimon
shishkin
shohat
shtykov
shvernik
sibelis
sidorsky
sig
sigurd
sikelianos
siles
simhon
sinead
siraj
sismondi
skip
skou
sleptsova
smithies
soderbergh
solans
somabia
souzay
spellings
spong
stadtfeld
stanborough
stanislao
stefania
stepanovich
stollmann
stradivari
strindberg
stump
subhas
suhaila
sulston
sundby
sutil
svarstad
svindal
sybel
sysuyev
szeryng
tabuli
tahir
talass
tansu
tarar
tariq
tarjei
tashi
tatiyana
tavella
tchoudov
tekebayev
tembo
teodoro
terenty
terri
tevita
tharman
theodosius
theron
thibaut
thinley
thorstein
tiamiou
tibullus
tiff
tillich
timofeyevich
tiziano
tluway
tolstoi
tommaso
torbern
toro
toscanini
tranquillus
tremonti
trichet
troeltsch
troussier
tsakh
tsui
tuitert
tullio
turunen
twain
tyrone
tziolis
uhland
ullrik
ulysses
uosukainen
urjinlhundev
ustad
utkir
vaile
valcourt
valentinovich
vallentino
van eyck
van sant
van der hoeven
vanhanen
varfolomeevich
vasile
vasilii
vaslav
vedrine
velarde
veneman
venkatraman
veranes
vereshchetin
vermeulen
vesalius
vickrey
vigilar
vikramaditya
vilhelm
villiger
vipsanius
visentini
vitalievich
vitruvius
vlad
vladislavlev
vnukov
volcher
vollertsen
voulkos
vuillard
vyacheslavovich
vytautas
waldemar
walid
waltz
warcup
wat
weidmann
wendell
whilhelm
widal
wieschaus
willaert
winfrey
witold
wojciech
wolfferrari
woosnam
wyville
yakovlevich
yasser
yefimovich
yekhanurov
yersin
yilmaz
ylagi
younoussi
ysidro
yurii
yves
zadran
zaitseva
zapadnova
zaveryukha
zecchino
zhirinovsky
zhukovsky
zinaida
zinovy
znaniecki
zsigmond
zubak
zuma
zyl
|
082e28e94116bf6adaa14492e556e3964599c6ba | 449d555969bfd7befe906877abab098c6e63a0e8 | /3648/CH17/EX17.11/Ex17_11.sce | a6e65ab81de3cedbd99f0f1ee5c1190a5add102b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 471 | sce | Ex17_11.sce | //Example 17_11
clc();
clear;
//To find the current in the wires
v1=12 //Units in V
r3=20 //Units in Ohms
v2=6 //Units in V
r2=10 //Units in Ohms
r1=5 //Units in Ohms
i3=((v1*r3)-(v2*r1))/((r2*r3)+(r1*r3)+(r1*r2)) //Units in A
i2=((r2*i3)+v2)/r3 //Units in A
i1=i3+i2 //Units in A
printf("Current in wire 1 is I1=%.1f A\nCurrent in wire 2 is I2=%.1f A\nCurrent in wire 3 is I3=%.1f A\n",i1,i2,i3)
|
e28ea05a5acd9ab1607b31920bc40cb80f99ed53 | abed134eb329d44a339af93997f34c76b7649173 | /P4Codes/mod.tst | 5b0db8edc64f7d1d0704efcbd53cc09f68cb8baa | [] | no_license | Patrickyyh/CSCE-312 | 8823df9f53d378b96c8018064da3823faef95ce3 | b9ba0fd8592ce5d91d1689219ff48d638a66aee0 | refs/heads/master | 2023-05-03T18:46:15.689810 | 2021-05-22T06:02:17 | 2021-05-22T06:02:17 | 369,727,875 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 703 | tst | mod.tst | // Name and UIN
//Yuhao Ye
// 529006730
// Filename = mod.tst
load mod.hack,
output-file mod.out,
compare-to mod.cmp,
output-list RAM[0]%D2.6.2 RAM[1]%D2.6.2 RAM[2]%D2.6.2;
set PC 0,
set RAM[0] 0,
set RAM[1] 9,
set RAM[2] 0,
repeat 50 {
ticktock;
}
output;
set PC 0,
set RAM[0] 4,
set RAM[1] 9,
set RAM[2] 0,
repeat 50 {
ticktock;
}
output;
set PC 0,
set RAM[0] 9,
set RAM[1] 9,
set RAM[2] 0,
repeat 50 {
ticktock;
}
output;
set PC 0,
set RAM[0] 9,
set RAM[1] 2,
set RAM[2] 0,
repeat 50 {
ticktock;
}
output;
set PC 0,
set RAM[0] 9,
set RAM[1] 5,
set RAM[2] 0,
repeat 50 {
ticktock;
}
output;
set PC 0,
set RAM[0] 8,
set RAM[1] 5,
set RAM[2] 0,
repeat 50 {
ticktock;
}
output; |
e931855abc6944ad1e360ced5f73cdd5ecaef182 | 271e1c7556443952fc17a95243f62923f3b742a4 | /scilab/aec.sce | 0686ccac9b4bded334e89a3db4f7a8d86b8f35cc | [] | no_license | Edlward/aec | 5b38f9d8d502e27ae7037c6bc20568ee0ccb4f50 | 3aa5e2f81be6818c5b9b837512431f527a85dc2c | refs/heads/master | 2021-06-01T03:57:16.874040 | 2016-07-13T18:33:01 | 2016-07-13T18:33:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,418 | sce | aec.sce | // 2nd order high-pass Butterworth filter with cut-off freq 100 Hz
function [y] = applyHighPassFilter(x)
B = [0.9460 -1.8920 0.9460];
A = [1 -1.8890 0.8949];
y = filter(B, A, x);
endfunction
// 2nd order low-pass Butterworth filter with cut-off freq 3400 Hz
function [y] = applyLowPassFilter(x)
B = [0.7157 1.4315 0.7157];
A = [1 1.3490 0.5140];
y = filter(B, A, x);
endfunction
N_C = 240;
L_C = 50;
function ro_OL = doubleTalkDetection(x, y)
xlen = length(x);
ylen = length(y);
z = zeros(1, L_C + 1);
for l = 0 : L_C
xx = x((xlen - N_C + 1 - l) : (xlen - l));
yy = y((ylen - N_C + 1) : $);
z1 = abs(xx * yy');
z2 = abs(xx) * abs(yy');
if (z2 ~= 0)
z(l + 1) = z1 / z2;
end
end
ro_OL = max(z);
endfunction
function [d_d, e] = doNlms(spk, mic)
M = 5;
len = length(spk);
h = zeros(M, 1);
spk0 = [zeros(1, M - 1) spk]; // spk signal preceded by zeros
d_d = zeros(1, len);
e = zeros(1, len);
mikro = 0.7;
for i = 1 : len
// calculate echo estimate
x = spk0(i : (i + M - 1));
d_d(i) = x * flipdim(h, 1);
// update tap-weight
e(i) = mic(i) - d_d(i);
stepsize = mikro * e(i) * x / (x * x');
if (i < 20)
h = h + stepsize';
end
end
endfunction
|
f42a9ce32d57832869a60572f3944a1a1f8a6dba | 449d555969bfd7befe906877abab098c6e63a0e8 | /1061/CH5/EX5.11/Ex5_11.sce | 0601560963e7c0bb854bee035e8945ee6508ccb2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 534 | sce | Ex5_11.sce | //Ex:5.11
clc;
clear;
close;
L=6*10^-2;// beat length in m
dy=6*10^-9;// spectral width in m
y=1.3*10^-6;// operating wavelength in m
BF=y/(L);//model birefrigence in um
Lc=y^2/(BF*dy);// coherence length in m
db=2*3.14/(L);// difference beween two propagation constants
dB=(2*3.14*BF)/y;
printf("The model birefrigence =%f um", BF*10^6);
printf("\n The coherence length=%f m", Lc);
printf("\n The difference beween two propagation constants=%f", db);
printf("\n The difference beween two propagation constants=%f", dB); |
bd58ab8b6dad6ad9a6050523ba5d55033c246702 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2024/CH11/EX11.11/11_11.sce | 0922ec2f4a79b5a5b31ff22560fdaca91aaf03f5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | 11_11.sce | clc
//Initialization of variables
x1=8.7
x2=8.9
x3=0.3
x4=0.3
x5=3.7
x6=14.7
//calculations
a=x1+x2+x3
b= x4*4 + x5*2 + x6*2
//results
printf("Molecule is C %.1f H %d + 20.8 O2 + 78.1 N2",a,b)
|
868dc095aacad69ee0dd8c276cdbc64f7c92c7fd | 449d555969bfd7befe906877abab098c6e63a0e8 | /863/CH4/EX4.2/Ex4_2.sce | 3e56cb765146bcc448da6a11c8020062ac6e934c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 578 | sce | Ex4_2.sce | //Caption:Calculate the transistor power dissipation at (a)Cutoff (b)Saturation (c)When Vce is 2V
//Ex4.2
clc;
clear;
close;
Vcc=10//Collector voltage(in volts)
Ic=50//Collector current(in nA)
Rc=1//Collector resistor(in kilo ohm)
Vs=0.2//Voltage of collector emitter junction at saturation(in volts)
Vce=2//Collector emitter voltage(in volts)
P1=Ic*Vcc/1000
disp(P1,'(a)Power dissipation at cutoff(in micro watt)=')
P2=(Vcc/Rc)*Vs
disp(P2,'(b)Power dissipation at saturation(in mW)=')
I=(Vcc-Vce)/Rc
P3=I*Vce
disp(P3,'(c)Power dissipation at given Vce(in mW)=') |
9fc82ba39457367c054fb6af368ab0339b4bda14 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1808/CH5/EX5.15/Chapter5_Exampl15.sce | 109b26392af9592898cdc00146f5e91b485b3c19 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,026 | sce | Chapter5_Exampl15.sce | clc
clear
//INPUT DATA
pa=1;//Ambient pressure in bar
p1=0.98;//pressure in bar
p2=4;//pressure in bar
p3=15;//pressure in bar
ta=293;//Ambient temperature in K
t1=303;//temperature in K
t5=303;//temperature in K
n=1.3;//for two stage compressor
c=0.05;//clearance volume
R=0.287;//gas constant
//CALCULATIONS
nvs=1+c-c*((p2/p1)^(1/n));//Volumetric efficiency in percentage
nva=((p1/pa)*(ta/t1)*(nvs))*100;//Volumetric efficiency referred to ambient condition in percentage
wlp=(n/(n-1))*R*t1*(((p2/p1)^((n-1)/n))-1);//work done in Lp cylinder
whp=(n/(n-1))*R*t5*(((p3/p2)^((n-1)/n))-1);//work done in Hp cylinder
wt=wlp+whp;//work done in total cylinder
wiso=R*t1*log(p3/p1);//Isothermal work done per kg of air
niso=(wiso/wt)*100;//Isothermal efficiency in percentage
//OUTPUT
printf('(i)The volumetric efficiency referred to ambient condition is %3.2f percentage \n (ii)work done to deliver air by compressor is %3.2f kJ/kg \n (iii)Isothermal efficiency is %3.2f percentage',nva,wt,niso)
|
05abd5123a9776253525ef406fca2f1848a4af05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3809/CH16/EX16.5/EX16_5.sce | 06581c30a1af9bf10aad0d3703c69b8ab22a272d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 290 | sce | EX16_5.sce | //Chapter 16, Example 16.5
clc
//Initialisation
dv=20 //change in voltage w.r.t time
t=10*10**-3 //time in sec
//Calculation
vc=t*dv //peak ripple voltage on capacitor
//Results
printf("Peak Ripple Voltage = %.1f V",vc)
|
6309d43c1168edf70dd45e31294a60b040b6044a | 449d555969bfd7befe906877abab098c6e63a0e8 | /698/CH14/EX14.8/P8_Determination_of_number_of_plates.sce | 4e630dc299e157eb6673bf02bb38d58837599c29 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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,473 | sce | P8_Determination_of_number_of_plates.sce | clc
// Example 14.8
//Determine number of plates
//------------------------------------------------------------------------------
//Given Data:
//Torque
t=45//Nm
//Service factor
Ka=2
//Outer Radius
Ro=0.1/2//m
//Inner radius
Ri=0.065/2//m
//Mean raius
Rm=(Ro+Ri)/2//m
//coefficient of friction
f=0.08
//Maximum allowable pressure
pmax=0.7*(10^6)//Pa
//Design torque
T=Ka*t
//------------------------------------------------------------------------------
//Assuimg uniform wear conditions
//Axial force
F=2*%pi*pmax*Ri*(Ro-Ri)
//Number of contacting surfaces
n=T/(f*F*Rm)
N=ceil(n)
//n1= number of driver plates
//n2=number of friction plates
//n=n1+n2-1
//n2=n1-1 or n2=n1
//solving above two equations
n1=(N/2)
N1=ceil(n1)
n2=n1
N2=ceil(n2)
//------------------------------------------------------------------------------
//Printing result file to .txt
res8=mopen(TMPDIR+'8_determination_of_number_of_plates.txt','wt')
mfprintf (res8,"Number of contacting surfaces %d\n",N)
mfprintf(res8,"Number of driver plates are %d\n",N1)
mfprintf(res8,"Number of friction plates are %d\n\n",N2)
mfprintf(res8,"There are %d total number of plates, with %d pressure and %d friction discs",N,N1,N2)
mclose(res8)
editor(TMPDIR+'8_determination_of_number_of_plates.txt')
//------------------------------------------------------------------------------
//------------------------------End of program---------------------------------- |
204ae1b6b44f4b54db36ef0d30b8dffc371097cc | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Computing/testclean.sce | 69822fa9e91a9bdd6b62e2c86ae5b7e548515d3f | [] | 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 | 169 | sce | testclean.sce | clean(10^(-9)) // not rounded
clean(10^(-10)) // rounded to 0
%e^(%i*%pi) // rounding error on complex part
clean(%e^(%i*%pi)) // error rounded to 0
|
a31bac611614a346603e64442d63e42ba1117156 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1151/CH1/EX1.3/example3.sce | 8976872ec6b1e6bc0b02a5e19015449fa23360b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 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 | example3.sce | //find transfer function of V2(s)/V1(s
printf("syms R1 R2 C")
printf("G=(R2+R1*R2*C*s)/(R1+R2+R1*R2*C*s)\n transfer function V2(s)/V1(s)=G")
|
ea2948f4d4a11afb7441cd160183b87556eebc19 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3782/CH7/EX7.6/Ex7_6.sce | b1bd1ad6318eb115b492fb96cf441dae87480fe2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 223 | sce | Ex7_6.sce |
//cha 7 page -225 pb-1
//
//givwn readings
ir=9.377
fr=3.336
m=100
c=23.521
n=1
a1=m*(fr-ir+10*(n)+c)//cm2
a2=m*(fr-ir-10*(n)+c)//cm2
printf("\n A= %0.3f ",a2)
printf("\n required area is %0.3f square meters',a2)
|
f264cb88893b7100a69b4f6a98286e4234dd1fb9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1514/CH18/EX18.7/18_7.sce | 0a4b730b4f6fb8a85e90055744583eb8f8e84e5b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | 18_7.sce | //chapter 18
//example 18.7
//page 580
clear;
clc ;
//given
VB1B2=15;
Vd=0.7;
eta=0.82;//intrinsic standoff ratio
Ip=2;//maximum current
Vp=Vd+(eta*VB1B2);
REmax=(VB1B2-Vp)/Ip;
printf("\nREmax=%d Mohm",REmax);
VEBsat=2.5;
IV=2;//in mA
REmin=(VB1B2-VEBsat)/IV;
printf("\nREmin=%.2f kohm",REmin);
|
8fb730660dad428940b46836e661ebee8c59f06d | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/helperHarmonicDistortionAmplifier.sci | 511b3a9578e63a8a7a8a4eecc08fc9b0fc290e1b | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 835 | sci | helperHarmonicDistortionAmplifier.sci | function outputVoltage = helperHarmonicDistortionAmplifier(inputVoltage)
//helperHarmonicDistortionADC Helper function for HarmonicDistortionExample.m
// model parameters
noiseVrms = 0.4e-6; // RMS voltage of input noisefloor
// polynomial coefficients
a0 = 25e-3; // dc bias (25mV)
a1 = 1; // voltage gain
a2 = 6e-5; // second order term
a3 = -1e-3; // third order term
a4 = 5e-6; // fourth order term
a5 = 1e-5; // fifth order term
// polyval function has constant term at the end.
polyCoeff = [a5 a4 a3 a2 a1 a0];
// get number of input samples
n = size(inputVoltage,2);
// add noise at input
inputNoise = noiseVrms*rand(1,n,"normal");
distortedInput = inputVoltage + inputNoise;
// adjust input by DC bias, voltage gain and higher order terms
outputVoltage = polyval(polyCoeff, distortedInput);
endfunction
|
7f4dadde0d8a1fa684a1da7a9e45882c457f9155 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1760/CH3/EX3.35/EX3_35.sce | dd5e310ffd8b7682d6c9dc455c42855b0ddaf344 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 545 | sce | EX3_35.sce | //EXAMPLE -3.35 PG NO-195
I.P=163.44; //POWER INPUT
T.A.P=253.44; //TOTAL ACTIVE POWER
R.P=122.58; //REACTIVE POWER INDUCTION MOTOR
L=40; //REACTIVE POWER OF SPECIAL LOAD
T.P=R.P+L; //TOTAL REACTIVE POWER
S=301.1; //P+JQ
X=T.A.P/S; //OVERALL POWRER FACTOR
IL=S*10^3/(1.732*400)
disp('i)TOTAL REACTIVE POWER = '+string (T.P)+' Kvar')
disp('i) S = '+string (S)+' KVA')
disp('i)OVERALL POWER FACTOR (x) = '+string (X)+' lagging')
disp('iiii)LOAD CURRENT (IL) = '+string (IL)+' A')
|
b5479184df6426fd1f72d31b73d6051de233cefc | 449d555969bfd7befe906877abab098c6e63a0e8 | /149/CH2/EX2.1/ex1.sce | a98a29805311ea3611e65f547b9c29b052123b39 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 88 | sce | ex1.sce | clc
syms a;
syms h;
syms g;
syms b;
syms f;
syms c;
A=[a h g;h b f;g f c]
det(A) |
6cf39f4c507124e00c90640fe837827a541f9451 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3834/CH3/EX3.3.2/Ex3_3_2.sce | fa6cc683fc05278f4d741e2c7b4cf769fe941463 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 619 | sce | Ex3_3_2.sce | //Fiber-optics communication technology, by Djafer K. Mynbaev and Lowell L. Scheiner
//Example 3.3.2
//windows 7
//Scilab version-6.0.0
clc;
clear;
//given
L=5;//fiber length in km
NA=0.275;//numerical aperture
c=3E5;//speed of light in km
n1=1.48;//refractive index
p=2*c*n1;
e=NA*NA;
d=L*e;
deltatsi=(d/p)*1E9;//pulse spreading in ns //answer vary due round-off
deltatsi_by_L=(deltatsi/L)//pulse spreading per unit length in ns/Km//answer vary due round-off
mprintf("\n Light pulse spreading= %.2f ns",deltatsi);
mprintf("\n Pulse spreading per unit length is=%.2f ns/Km",deltatsi_by_L);
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.