aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-11-16 01:30:23 +0000
committerJustin Clark-Casey (justincc)2013-11-16 01:30:23 +0000
commit62006baaef46cc11816a90471454f256e3c8dd82 (patch)
tree7ea65eff2bf6a62740e4a5c391f54f32fa1d6498
parentrefactor LSL_EventTests.TestStateEntryEvent into single method to test compile (diff)
downloadopensim-SC_OLD-62006baaef46cc11816a90471454f256e3c8dd82.zip
opensim-SC_OLD-62006baaef46cc11816a90471454f256e3c8dd82.tar.gz
opensim-SC_OLD-62006baaef46cc11816a90471454f256e3c8dd82.tar.bz2
opensim-SC_OLD-62006baaef46cc11816a90471454f256e3c8dd82.tar.xz
Make state_exit, moving_end, moving_start, not_at_rot_target, not_at_target and timer LSL events generate a syntax error if inappropriately given arguments.
This matches behaviour seen on the LL grid and a previous change for state_entry. These are all the events which should take no arguments
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs60
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs14907
2 files changed, 7520 insertions, 7447 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
index a297309..6c51060 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
@@ -39,6 +39,46 @@ namespace OpenSim.Region.ScriptEngine.Shared.Tests
39 CSCodeGenerator m_cg = new CSCodeGenerator(); 39 CSCodeGenerator m_cg = new CSCodeGenerator();
40 40
41 [Test] 41 [Test]
42 public void TestMovingEndEvent()
43 {
44 TestHelpers.InMethod();
45// TestHelpers.EnableLogging();
46
47 TestCompile("default { moving_end() {} }", false);
48 TestCompile("default { moving_end(integer n) {} }", true);
49 }
50
51 [Test]
52 public void TestMovingStartEvent()
53 {
54 TestHelpers.InMethod();
55// TestHelpers.EnableLogging();
56
57 TestCompile("default { moving_start() {} }", false);
58 TestCompile("default { moving_start(integer n) {} }", true);
59 }
60
61 [Test]
62 public void TestNotAtRotTargetEvent()
63 {
64 TestHelpers.InMethod();
65// TestHelpers.EnableLogging();
66
67 TestCompile("default { not_at_rot_target() {} }", false);
68 TestCompile("default { not_at_rot_target(integer n) {} }", true);
69 }
70
71 [Test]
72 public void TestNotAtTargetEvent()
73 {
74 TestHelpers.InMethod();
75// TestHelpers.EnableLogging();
76
77 TestCompile("default { not_at_target() {} }", false);
78 TestCompile("default { not_at_target(integer n) {} }", true);
79 }
80
81 [Test]
42 public void TestStateEntryEvent() 82 public void TestStateEntryEvent()
43 { 83 {
44 TestHelpers.InMethod(); 84 TestHelpers.InMethod();
@@ -48,6 +88,26 @@ namespace OpenSim.Region.ScriptEngine.Shared.Tests
48 TestCompile("default { state_entry(integer n) {} }", true); 88 TestCompile("default { state_entry(integer n) {} }", true);
49 } 89 }
50 90
91 [Test]
92 public void TestStateExitEvent()
93 {
94 TestHelpers.InMethod();
95// TestHelpers.EnableLogging();
96
97 TestCompile("default { state_exit() {} }", false);
98 TestCompile("default { state_exit(integer n) {} }", true);
99 }
100
101 [Test]
102 public void TestTimerEvent()
103 {
104 TestHelpers.InMethod();
105// TestHelpers.EnableLogging();
106
107 TestCompile("default { timer() {} }", false);
108 TestCompile("default { timer(integer n) {} }", true);
109 }
110
51 private void TestCompile(string script, bool expectException) 111 private void TestCompile(string script, bool expectException)
52 { 112 {
53 bool gotException = false; 113 bool gotException = false;
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
index 1e3c6f6..96dcea9 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
@@ -130,14 +130,14 @@ public class StateEvent : SYMBOL{
130public override string yyname { get { return "StateEvent"; }} 130public override string yyname { get { return "StateEvent"; }}
131public override int yynum { get { return 103; }} 131public override int yynum { get { return 103; }}
132public StateEvent(Parser yyp):base(yyp){}} 132public StateEvent(Parser yyp):base(yyp){}}
133//%+StateEntryStateEvent+104 133//%+VoidArgStateEvent+104
134public class StateEntryStateEvent : StateEvent{ 134public class VoidArgStateEvent : StateEvent{
135 public StateEntryStateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax 135 public VoidArgStateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax
136)yyp), name , cs ){} 136)yyp), name , cs ){}
137 137
138public override string yyname { get { return "StateEntryStateEvent"; }} 138public override string yyname { get { return "VoidArgStateEvent"; }}
139public override int yynum { get { return 104; }} 139public override int yynum { get { return 104; }}
140public StateEntryStateEvent(Parser yyp):base(yyp){}} 140public VoidArgStateEvent(Parser yyp):base(yyp){}}
141//%+ArgumentDeclarationList+105 141//%+ArgumentDeclarationList+105
142public class ArgumentDeclarationList : SYMBOL{ 142public class ArgumentDeclarationList : SYMBOL{
143 public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax 143 public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax
@@ -193,14 +193,14 @@ public class Event : SYMBOL{
193public override string yyname { get { return "Event"; }} 193public override string yyname { get { return "Event"; }}
194public override int yynum { get { return 108; }} 194public override int yynum { get { return 108; }}
195public Event(Parser yyp):base(yyp){}} 195public Event(Parser yyp):base(yyp){}}
196//%+EntryEvent+109 196//%+VoidArgEvent+109
197public class EntryEvent : Event{ 197public class VoidArgEvent : Event{
198 public EntryEvent (Parser yyp, string text ):base(((LSLSyntax 198 public VoidArgEvent (Parser yyp, string text ):base(((LSLSyntax
199)yyp), text ){} 199)yyp), text ){}
200 200
201public override string yyname { get { return "EntryEvent"; }} 201public override string yyname { get { return "VoidArgEvent"; }}
202public override int yynum { get { return 109; }} 202public override int yynum { get { return 109; }}
203public EntryEvent(Parser yyp):base(yyp){}} 203public VoidArgEvent(Parser yyp):base(yyp){}}
204//%+CompoundStatement+110 204//%+CompoundStatement+110
205public class CompoundStatement : SYMBOL{ 205public class CompoundStatement : SYMBOL{
206 public CompoundStatement (Parser yyp):base(((LSLSyntax 206 public CompoundStatement (Parser yyp):base(((LSLSyntax
@@ -810,14 +810,14 @@ public class StateBody_2 : StateBody {
810 810
811public class StateBody_3 : StateBody { 811public class StateBody_3 : StateBody {
812 public StateBody_3(Parser yyq):base(yyq, 812 public StateBody_3(Parser yyq):base(yyq,
813 ((StateEntryStateEvent)(yyq.StackAt(0).m_value)) 813 ((VoidArgStateEvent)(yyq.StackAt(0).m_value))
814 ){}} 814 ){}}
815 815
816public class StateBody_4 : StateBody { 816public class StateBody_4 : StateBody {
817 public StateBody_4(Parser yyq):base(yyq, 817 public StateBody_4(Parser yyq):base(yyq,
818 ((StateBody)(yyq.StackAt(1).m_value)) 818 ((StateBody)(yyq.StackAt(1).m_value))
819 , 819 ,
820 ((StateEntryStateEvent)(yyq.StackAt(0).m_value)) 820 ((VoidArgStateEvent)(yyq.StackAt(0).m_value))
821 ){}} 821 ){}}
822 822
823public class StateEvent_1 : StateEvent { 823public class StateEvent_1 : StateEvent {
@@ -829,12 +829,12 @@ public class StateEvent_1 : StateEvent {
829 ((CompoundStatement)(yyq.StackAt(0).m_value)) 829 ((CompoundStatement)(yyq.StackAt(0).m_value))
830 ){}} 830 ){}}
831 831
832public class StateEntryStateEvent_1 : StateEntryStateEvent { 832public class VoidArgStateEvent_1 : VoidArgStateEvent {
833 public StateEntryStateEvent_1(Parser yyq):base(yyq, 833 public VoidArgStateEvent_1(Parser yyq):base(yyq,
834 ((EntryEvent)(yyq.StackAt(3).m_value)) 834 ((VoidArgEvent)(yyq.StackAt(3).m_value))
835 .yytext, 835 .yytext,
836 ((CompoundStatement)(yyq.StackAt(0).m_value)) 836 ((CompoundStatement)(yyq.StackAt(0).m_value))
837 ){}} 837 ){}}
838 838
839public class ArgumentDeclarationList_1 : ArgumentDeclarationList { 839public class ArgumentDeclarationList_1 : ArgumentDeclarationList {
840 public ArgumentDeclarationList_1(Parser yyq):base(yyq, 840 public ArgumentDeclarationList_1(Parser yyq):base(yyq,
@@ -1900,87 +1900,87 @@ public class Event_17 : Event {
1900 1900
1901public class Event_18 : Event { 1901public class Event_18 : Event {
1902 public Event_18(Parser yyq):base(yyq, 1902 public Event_18(Parser yyq):base(yyq,
1903 ((MOVING_END_EVENT)(yyq.StackAt(0).m_value)) 1903 ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value))
1904 .yytext){}} 1904 .yytext){}}
1905 1905
1906public class Event_19 : Event { 1906public class Event_19 : Event {
1907 public Event_19(Parser yyq):base(yyq, 1907 public Event_19(Parser yyq):base(yyq,
1908 ((MOVING_START_EVENT)(yyq.StackAt(0).m_value)) 1908 ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value))
1909 .yytext){}} 1909 .yytext){}}
1910 1910
1911public class Event_20 : Event { 1911public class Event_20 : Event {
1912 public Event_20(Parser yyq):base(yyq, 1912 public Event_20(Parser yyq):base(yyq,
1913 ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value)) 1913 ((ON_REZ_EVENT)(yyq.StackAt(0).m_value))
1914 .yytext){}} 1914 .yytext){}}
1915 1915
1916public class Event_21 : Event { 1916public class Event_21 : Event {
1917 public Event_21(Parser yyq):base(yyq, 1917 public Event_21(Parser yyq):base(yyq,
1918 ((NOT_AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) 1918 ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value))
1919 .yytext){}} 1919 .yytext){}}
1920 1920
1921public class Event_22 : Event { 1921public class Event_22 : Event {
1922 public Event_22(Parser yyq):base(yyq, 1922 public Event_22(Parser yyq):base(yyq,
1923 ((NOT_AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) 1923 ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value))
1924 .yytext){}} 1924 .yytext){}}
1925 1925
1926public class Event_23 : Event { 1926public class Event_23 : Event {
1927 public Event_23(Parser yyq):base(yyq, 1927 public Event_23(Parser yyq):base(yyq,
1928 ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value)) 1928 ((SENSOR_EVENT)(yyq.StackAt(0).m_value))
1929 .yytext){}} 1929 .yytext){}}
1930 1930
1931public class Event_24 : Event { 1931public class Event_24 : Event {
1932 public Event_24(Parser yyq):base(yyq, 1932 public Event_24(Parser yyq):base(yyq,
1933 ((ON_REZ_EVENT)(yyq.StackAt(0).m_value)) 1933 ((TOUCH_EVENT)(yyq.StackAt(0).m_value))
1934 .yytext){}} 1934 .yytext){}}
1935 1935
1936public class Event_25 : Event { 1936public class Event_25 : Event {
1937 public Event_25(Parser yyq):base(yyq, 1937 public Event_25(Parser yyq):base(yyq,
1938 ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value)) 1938 ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value))
1939 .yytext){}} 1939 .yytext){}}
1940 1940
1941public class Event_26 : Event { 1941public class Event_26 : Event {
1942 public Event_26(Parser yyq):base(yyq, 1942 public Event_26(Parser yyq):base(yyq,
1943 ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value)) 1943 ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value))
1944 .yytext){}} 1944 .yytext){}}
1945 1945
1946public class Event_27 : Event { 1946public class Event_27 : Event {
1947 public Event_27(Parser yyq):base(yyq, 1947 public Event_27(Parser yyq):base(yyq,
1948 ((SENSOR_EVENT)(yyq.StackAt(0).m_value)) 1948 ((HTTP_REQUEST_EVENT)(yyq.StackAt(0).m_value))
1949 .yytext){}} 1949 .yytext){}}
1950 1950
1951public class Event_28 : Event { 1951public class VoidArgEvent_1 : VoidArgEvent {
1952 public Event_28(Parser yyq):base(yyq, 1952 public VoidArgEvent_1(Parser yyq):base(yyq,
1953 ((STATE_EXIT_EVENT)(yyq.StackAt(0).m_value)) 1953 ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value))
1954 .yytext){}} 1954 .yytext){}}
1955 1955
1956public class Event_29 : Event { 1956public class VoidArgEvent_2 : VoidArgEvent {
1957 public Event_29(Parser yyq):base(yyq, 1957 public VoidArgEvent_2(Parser yyq):base(yyq,
1958 ((TIMER_EVENT)(yyq.StackAt(0).m_value)) 1958 ((STATE_EXIT_EVENT)(yyq.StackAt(0).m_value))
1959 .yytext){}} 1959 .yytext){}}
1960 1960
1961public class Event_30 : Event { 1961public class VoidArgEvent_3 : VoidArgEvent {
1962 public Event_30(Parser yyq):base(yyq, 1962 public VoidArgEvent_3(Parser yyq):base(yyq,
1963 ((TOUCH_EVENT)(yyq.StackAt(0).m_value)) 1963 ((MOVING_END_EVENT)(yyq.StackAt(0).m_value))
1964 .yytext){}} 1964 .yytext){}}
1965 1965
1966public class Event_31 : Event { 1966public class VoidArgEvent_4 : VoidArgEvent {
1967 public Event_31(Parser yyq):base(yyq, 1967 public VoidArgEvent_4(Parser yyq):base(yyq,
1968 ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value)) 1968 ((MOVING_START_EVENT)(yyq.StackAt(0).m_value))
1969 .yytext){}} 1969 .yytext){}}
1970 1970
1971public class Event_32 : Event { 1971public class VoidArgEvent_5 : VoidArgEvent {
1972 public Event_32(Parser yyq):base(yyq, 1972 public VoidArgEvent_5(Parser yyq):base(yyq,
1973 ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value)) 1973 ((NOT_AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value))
1974 .yytext){}} 1974 .yytext){}}
1975 1975
1976public class Event_33 : Event { 1976public class VoidArgEvent_6 : VoidArgEvent {
1977 public Event_33(Parser yyq):base(yyq, 1977 public VoidArgEvent_6(Parser yyq):base(yyq,
1978 ((HTTP_REQUEST_EVENT)(yyq.StackAt(0).m_value)) 1978 ((NOT_AT_TARGET_EVENT)(yyq.StackAt(0).m_value))
1979 .yytext){}} 1979 .yytext){}}
1980 1980
1981public class EntryEvent_1 : EntryEvent { 1981public class VoidArgEvent_7 : VoidArgEvent {
1982 public EntryEvent_1(Parser yyq):base(yyq, 1982 public VoidArgEvent_7(Parser yyq):base(yyq,
1983 ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value)) 1983 ((TIMER_EVENT)(yyq.StackAt(0).m_value))
1984 .yytext){}} 1984 .yytext){}}
1985public class yyLSLSyntax 1985public class yyLSLSyntax
1986: YyParser { 1986: YyParser {
@@ -2572,80 +2572,124 @@ public yyLSLSyntax
257218,1,242,177,2, 257218,1,242,177,2,
25730,1,2471,350,18, 25730,1,2471,350,18,
25741,2471,351,20,352, 25741,2471,351,20,352,
25754,34,83,0,84, 25754,22,84,0,73,
25760,65,0,84,0, 25760,77,0,69,0,
257769,0,95,0,69, 257782,0,95,0,69,
25780,78,0,84,0, 25780,86,0,69,0,
257982,0,89,0,95, 257978,0,84,0,1,
25800,69,0,86,0, 258087,1,1,2,0,
258169,0,78,0,84, 25811,2472,353,18,1,
25820,1,85,1,1, 25822472,354,20,355,4,
25832,0,1,2472,353, 258338,78,0,79,0,
258418,1,2472,354,20, 258484,0,95,0,65,
2585355,4,36,72,0, 25850,84,0,95,0,
258684,0,84,0,80, 258684,0,65,0,82,
25870,95,0,82,0, 25870,71,0,69,0,
258869,0,81,0,85,
25890,69,0,83,0,
259084,0,95,0,69, 258884,0,95,0,69,
25910,86,0,69,0, 25890,86,0,69,0,
259278,0,84,0,1, 259078,0,84,0,1,
259391,1,1,2,0, 259179,1,1,2,0,
25941,2473,356,18,1, 25921,2473,356,18,1,
25952473,357,20,358,4, 25932473,357,20,358,4,
259634,84,0,79,0, 259446,78,0,79,0,
259785,0,67,0,72, 259584,0,95,0,65,
25960,84,0,95,0,
259782,0,79,0,84,
25980,95,0,84,0,
259965,0,82,0,71,
26000,69,0,84,0,
260195,0,69,0,86,
26020,69,0,78,0,
260384,0,1,78,1,
26041,2,0,1,2474,
2605359,18,1,2474,360,
260620,361,4,36,77,
26070,79,0,86,0,
260873,0,78,0,71,
25980,95,0,83,0, 26090,95,0,83,0,
259984,0,65,0,82, 261084,0,65,0,82,
26000,84,0,95,0, 26110,84,0,95,0,
260169,0,86,0,69, 261269,0,86,0,69,
26020,78,0,84,0, 26130,78,0,84,0,
26031,89,1,1,2, 26141,76,1,1,2,
26040,1,2474,359,18, 26150,1,2475,362,18,
26051,2474,360,20,361, 26161,2475,363,20,364,
26064,30,84,0,79, 26174,32,77,0,79,
26070,85,0,67,0, 26180,86,0,73,0,
260872,0,95,0,69, 261978,0,71,0,95,
26090,78,0,68,0, 26200,69,0,78,0,
262168,0,95,0,69,
26220,86,0,69,0,
262378,0,84,0,1,
262475,1,1,2,0,
26251,2476,365,18,1,
26262476,366,20,367,4,
262732,83,0,84,0,
262865,0,84,0,69,
26290,95,0,69,0,
263088,0,73,0,84,
26310,95,0,69,0,
263286,0,69,0,78,
26330,84,0,1,86,
26341,1,2,0,1,
26352477,368,18,1,2477,
2636369,20,370,4,34,
263783,0,84,0,65,
26380,84,0,69,0,
263995,0,69,0,78,
26400,84,0,82,0,
264189,0,95,0,69,
26420,86,0,69,0,
264378,0,84,0,1,
264485,1,1,2,0,
26451,2478,371,18,1,
26462478,372,20,373,4,
264736,72,0,84,0,
264884,0,80,0,95,
26490,82,0,69,0,
265081,0,85,0,69,
26510,83,0,84,0,
261095,0,69,0,86, 265295,0,69,0,86,
26110,69,0,78,0, 26530,69,0,78,0,
261284,0,1,90,1, 265484,0,1,91,1,
26131,2,0,1,2475, 26551,2,0,1,2479,
2614362,18,1,2475,363, 2656374,18,1,2479,375,
261520,364,4,22,84, 265720,376,4,34,84,
26160,79,0,85,0, 26580,79,0,85,0,
261767,0,72,0,95, 265967,0,72,0,95,
26180,69,0,86,0, 26600,83,0,84,0,
261969,0,78,0,84, 266165,0,82,0,84,
26200,1,88,1,1, 26620,95,0,69,0,
26212,0,1,2476,365, 266386,0,69,0,78,
262218,1,2476,366,20, 26640,84,0,1,89,
2623367,4,22,84,0, 26651,1,2,0,1,
262473,0,77,0,69, 26662480,377,18,1,2480,
26250,82,0,95,0, 2667378,20,379,4,30,
266884,0,79,0,85,
26690,67,0,72,0,
267095,0,69,0,78,
26710,68,0,95,0,
262669,0,86,0,69, 267269,0,86,0,69,
26270,78,0,84,0, 26730,78,0,84,0,
26281,87,1,1,2, 26741,90,1,1,2,
26290,1,2477,368,18, 26750,1,2481,380,18,
26301,2477,369,20,370, 26761,2481,381,20,382,
26314,32,83,0,84, 26774,22,84,0,79,
26320,65,0,84,0, 26780,85,0,67,0,
263369,0,95,0,69, 267972,0,95,0,69,
26340,88,0,73,0,
263584,0,95,0,69,
26360,86,0,69,0, 26800,86,0,69,0,
263778,0,84,0,1, 268178,0,84,0,1,
263886,1,1,2,0, 268288,1,1,2,0,
26391,2478,371,18,1, 26831,2482,383,18,1,
26402478,372,20,373,4, 26842482,384,20,385,4,
264124,83,0,69,0, 268524,83,0,69,0,
264278,0,83,0,79, 268678,0,83,0,79,
26430,82,0,95,0, 26870,82,0,95,0,
264469,0,86,0,69, 268869,0,86,0,69,
26450,78,0,84,0, 26890,78,0,84,0,
26461,84,1,1,2, 26901,84,1,1,2,
26470,1,2479,374,18, 26910,1,2483,386,18,
26481,2479,375,20,376, 26921,2483,387,20,388,
26494,52,82,0,85, 26934,52,82,0,85,
26500,78,0,95,0, 26940,78,0,95,0,
265184,0,73,0,77, 269584,0,73,0,77,
@@ -2658,1581 +2702,1550 @@ public yyLSLSyntax
26580,86,0,69,0, 27020,86,0,69,0,
265978,0,84,0,1, 270378,0,84,0,1,
266083,1,1,2,0, 270483,1,1,2,0,
26611,2480,377,18,1, 27051,256,389,18,1,
26622480,378,20,379,4, 2706256,390,20,391,4,
266334,82,0,69,0, 270714,80,0,69,0,
266477,0,79,0,84, 270882,0,67,0,69,
26650,69,0,95,0,
266668,0,65,0,84,
26670,65,0,95,0,
266869,0,86,0,69,
26690,78,0,84,0, 27090,78,0,84,0,
26701,82,1,1,2, 27101,22,1,1,2,
26710,1,2481,380,18, 27110,1,1371,392,18,
26721,2481,381,20,382, 27121,1371,222,2,0,
26734,24,79,0,78, 27131,2486,393,18,1,
26740,95,0,82,0, 27142486,394,20,395,4,
267569,0,90,0,95, 271532,79,0,66,0,
26760,69,0,86,0, 271674,0,69,0,67,
267769,0,78,0,84,
26780,1,81,1,1,
26792,0,1,2482,383,
268018,1,2482,384,20,
2681385,4,32,79,0,
268266,0,74,0,69,
26830,67,0,84,0,
268495,0,82,0,69,
26850,90,0,95,0,
268669,0,86,0,69,
26870,78,0,84,0,
26881,80,1,1,2,
26890,1,2483,386,18,
26901,2483,387,20,388,
26914,38,78,0,79,
26920,84,0,95,0,
269365,0,84,0,95,
26940,84,0,65,0,
269582,0,71,0,69,
26960,84,0,95,0, 27170,84,0,95,0,
271882,0,69,0,90,
27190,95,0,69,0,
272086,0,69,0,78,
27210,84,0,1,80,
27221,1,2,0,1,
27232487,396,18,1,2487,
2724397,20,398,4,30,
272578,0,79,0,95,
27260,83,0,69,0,
272778,0,83,0,79,
27280,82,0,95,0,
269769,0,86,0,69, 272969,0,86,0,69,
26980,78,0,84,0, 27300,78,0,84,0,
26991,79,1,1,2, 27311,77,1,1,2,
27000,1,256,389,18, 27320,1,1931,399,18,
27011,256,390,20,391, 27331,1931,269,2,0,
27024,14,80,0,69, 27341,1932,400,18,1,
27030,82,0,67,0, 27351932,401,20,402,4,
27364,73,0,70,0,
27371,42,1,1,2,
27380,1,262,403,18,
27391,262,177,2,0,
27401,1377,404,18,1,
27411377,177,2,0,1,
27422492,405,18,1,2492,
2743406,20,407,4,48,
274476,0,65,0,78,
27450,68,0,95,0,
274667,0,79,0,76,
27470,76,0,73,0,
274883,0,73,0,79,
27490,78,0,95,0,
275069,0,78,0,68,
27510,95,0,69,0,
275286,0,69,0,78,
27530,84,0,1,70,
27541,1,2,0,1,
27551876,408,18,1,1876,
2756135,2,0,1,2494,
2757409,18,1,2494,410,
275820,411,4,38,72,
27590,84,0,84,0,
276080,0,95,0,82,
27610,69,0,83,0,
276280,0,79,0,78,
27630,83,0,69,0,
276495,0,69,0,86,
27650,69,0,78,0,
276684,0,1,68,1,
27671,2,0,1,2495,
2768412,18,1,2495,413,
276920,414,4,22,69,
27700,77,0,65,0,
277173,0,76,0,95,
27720,69,0,86,0,
270469,0,78,0,84, 277369,0,78,0,84,
27050,1,22,1,1, 27740,1,67,1,1,
27062,0,1,1371,392, 27752,0,1,1939,415,
270718,1,1371,222,2, 277618,1,1939,177,2,
27080,1,2486,393,18, 27770,1,2497,416,18,
27091,2486,394,20,395, 27781,2497,417,20,418,
27104,36,77,0,79, 27794,26,67,0,79,
27110,86,0,73,0, 27800,78,0,84,0,
271278,0,71,0,95, 278182,0,79,0,76,
27130,83,0,84,0,
271465,0,82,0,84,
27150,95,0,69,0, 27820,95,0,69,0,
271686,0,69,0,78, 278386,0,69,0,78,
27170,84,0,1,76, 27840,84,0,1,65,
27181,1,2,0,1, 27851,1,2,0,1,
27192487,396,18,1,2487, 2786827,419,18,1,827,
2720397,20,398,4,32, 2787177,2,0,1,2499,
272177,0,79,0,86, 2788420,18,1,2499,421,
27220,73,0,78,0, 278920,422,4,38,67,
272371,0,95,0,69, 27900,79,0,76,0,
279176,0,73,0,83,
27920,73,0,79,0,
279378,0,95,0,69,
27240,78,0,68,0, 27940,78,0,68,0,
272595,0,69,0,86, 279595,0,69,0,86,
27260,69,0,78,0, 27960,69,0,78,0,
272784,0,1,75,1, 279784,0,1,63,1,
27281,2,0,1,1931, 27981,2,0,1,2500,
2729399,18,1,1931,269, 2799423,18,1,2500,424,
27302,0,1,1932,400, 280020,425,4,30,67,
273118,1,1932,401,20, 28010,79,0,76,0,
2732402,4,4,73,0, 280276,0,73,0,83,
273370,0,1,42,1, 28030,73,0,79,0,
27341,2,0,1,262, 280478,0,95,0,69,
2735403,18,1,262,177,
27362,0,1,1377,404,
273718,1,1377,177,2,
27380,1,2492,405,18,
27391,2492,406,20,407,
27404,48,76,0,65,
27410,78,0,68,0,
274295,0,67,0,79,
27430,76,0,76,0,
274473,0,83,0,73,
27450,79,0,78,0,
274695,0,69,0,78,
27470,68,0,95,0,
274869,0,86,0,69,
27490,78,0,84,0,
27501,70,1,1,2,
27510,1,1876,408,18,
27521,1876,135,2,0,
27531,2494,409,18,1,
27542494,410,20,411,4,
275538,72,0,84,0,
275684,0,80,0,95,
27570,82,0,69,0,
275883,0,80,0,79,
27590,78,0,83,0,
276069,0,95,0,69,
27610,86,0,69,0, 28050,86,0,69,0,
276278,0,84,0,1, 280678,0,84,0,1,
276368,1,1,2,0, 280762,1,1,2,0,
27641,2495,412,18,1, 28081,2501,426,18,1,
27652495,413,20,414,4, 28092501,427,20,428,4,
276622,69,0,77,0, 281026,67,0,72,0,
276765,0,73,0,76, 281165,0,78,0,71,
28120,69,0,68,0,
281395,0,69,0,86,
28140,69,0,78,0,
281584,0,1,61,1,
28161,2,0,1,2502,
2817429,18,1,2502,430,
281820,431,4,24,65,
28190,84,0,84,0,
282065,0,67,0,72,
27680,95,0,69,0, 28210,95,0,69,0,
276986,0,69,0,78, 282286,0,69,0,78,
27700,84,0,1,67, 28230,84,0,1,60,
27711,1,2,0,1, 28241,1,2,0,1,
27721939,415,18,1,1939, 28252503,432,18,1,2503,
2773177,2,0,1,2497, 2826433,20,434,4,30,
2774416,18,1,2497,417, 282765,0,84,0,95,
277520,418,4,26,67, 28280,84,0,65,0,
27760,79,0,78,0, 282982,0,71,0,69,
277784,0,82,0,79, 28300,84,0,95,0,
27780,76,0,95,0,
277969,0,86,0,69, 283169,0,86,0,69,
27800,78,0,84,0, 28320,78,0,84,0,
27811,65,1,1,2, 28331,59,1,1,2,
27820,1,827,419,18, 28340,1,2504,435,18,
27831,827,177,2,0, 28351,2504,436,20,437,
27841,2499,420,18,1, 28364,38,65,0,84,
27852499,421,20,422,4, 28370,95,0,82,0,
278638,67,0,79,0, 283879,0,84,0,95,
278776,0,76,0,73, 28390,84,0,65,0,
27880,83,0,73,0, 284082,0,71,0,69,
278979,0,78,0,95, 28410,84,0,95,0,
27900,69,0,78,0,
279168,0,95,0,69,
27920,86,0,69,0,
279378,0,84,0,1,
279463,1,1,2,0,
27951,2500,423,18,1,
27962500,424,20,425,4,
279730,67,0,79,0,
279876,0,76,0,73,
27990,83,0,73,0,
280079,0,78,0,95,
28010,69,0,86,0,
280269,0,78,0,84,
28030,1,62,1,1,
28042,0,1,2501,426,
280518,1,2501,427,20,
2806428,4,26,67,0,
280772,0,65,0,78,
28080,71,0,69,0,
280968,0,95,0,69,
28100,86,0,69,0,
281178,0,84,0,1,
281261,1,1,2,0,
28131,2502,429,18,1,
28142502,430,20,431,4,
281524,65,0,84,0,
281684,0,65,0,67,
28170,72,0,95,0,
281869,0,86,0,69, 284269,0,86,0,69,
28190,78,0,84,0, 28430,78,0,84,0,
28201,60,1,1,2, 28441,58,1,1,2,
28210,1,2503,432,18, 28450,1,277,438,18,
28221,2503,433,20,434, 28461,277,439,20,440,
28234,30,65,0,84, 28474,10,83,0,76,
28240,95,0,84,0, 28480,65,0,83,0,
282565,0,82,0,71, 284972,0,1,21,1,
28260,69,0,84,0, 28501,2,0,1,2506,
282795,0,69,0,86, 2851441,18,1,2506,135,
28280,69,0,78,0, 28522,0,1,2507,442,
282984,0,1,59,1, 285318,1,2507,159,2,
28301,2,0,1,2504, 28540,1,2509,443,18,
2831435,18,1,2504,436, 28551,2509,342,2,0,
283220,437,4,38,65, 28561,2510,444,18,1,
28330,84,0,95,0, 28572510,445,20,446,4,
283482,0,79,0,84, 285810,69,0,118,0,
28350,95,0,84,0, 2859101,0,110,0,116,
283665,0,82,0,71, 28600,1,108,1,2,
28370,69,0,84,0, 28612,0,1,283,447,
283895,0,69,0,86, 286218,1,283,177,2,
28390,69,0,78,0, 28630,1,1958,448,18,
284084,0,1,58,1, 28641,1958,159,2,0,
28411,2,0,1,277, 28651,1406,449,18,1,
2842438,18,1,277,439, 28661406,169,2,0,1,
284320,440,4,10,83, 28671407,450,18,1,1407,
28440,76,0,65,0, 2868216,2,0,1,2522,
284583,0,72,0,1, 2869451,18,1,2522,159,
284621,1,1,2,0, 28702,0,1,2524,452,
28471,2506,441,18,1, 287118,1,2524,342,2,
28482506,135,2,0,1, 28720,1,2526,453,18,
28492507,442,18,1,2507, 28731,2526,454,20,455,
2850159,2,0,1,2509, 28744,18,83,0,116,
2851443,18,1,2509,342, 28750,97,0,116,0,
28522,0,1,2510,444, 2876101,0,66,0,111,
285318,1,2510,445,20, 28770,100,0,121,0,
2854446,4,10,69,0, 28781,102,1,2,2,
28790,1,299,456,18,
28801,299,457,20,458,
28814,8,83,0,84,
28820,65,0,82,0,
28831,20,1,1,2,
28840,1,1370,459,18,
28851,1370,169,2,0,
28861,305,460,18,1,
2887305,177,2,0,1,
28882458,461,18,1,2458,
2889269,2,0,1,2459,
2890462,18,1,2459,150,
28912,0,1,2464,463,
289218,1,2464,150,2,
28930,1,1989,464,18,
28941,1989,269,2,0,
28951,1990,465,18,1,
28961990,466,20,467,4,
28978,69,0,76,0,
289883,0,69,0,1,
289943,1,1,2,0,
29001,2470,468,18,1,
29012470,162,2,0,1,
2902322,469,18,1,322,
2903234,2,0,1,1933,
2904470,18,1,1933,135,
29052,0,1,883,471,
290618,1,883,177,2,
29070,1,328,472,18,
29081,328,177,2,0,
29091,1443,473,18,1,
29101443,252,2,0,1,
29111449,474,18,1,1449,
2912177,2,0,1,2485,
2913475,18,1,2485,476,
291420,477,4,24,79,
29150,78,0,95,0,
291682,0,69,0,90,
29170,95,0,69,0,
291886,0,69,0,78,
29190,84,0,1,81,
29201,1,2,0,1,
29212565,478,18,1,2565,
2922150,2,0,1,2566,
2923479,18,1,2566,480,
292420,481,4,34,86,
29250,111,0,105,0,
2926100,0,65,0,114,
29270,103,0,83,0,
2928116,0,97,0,116,
29290,101,0,69,0,
2855118,0,101,0,110, 2930118,0,101,0,110,
28560,116,0,1,108, 29310,116,0,1,104,
28571,2,2,0,1, 29321,2,2,0,1,
2858283,447,18,1,283, 29332488,482,18,1,2488,
2859177,2,0,1,1958, 2934483,20,484,4,22,
2860448,18,1,1958,159, 293577,0,79,0,78,
28612,0,1,1406,449, 29360,69,0,89,0,
286218,1,1406,169,2,
28630,1,1407,450,18,
28641,1407,216,2,0,
28651,2522,451,18,1,
28662522,159,2,0,1,
28672524,452,18,1,2524,
2868342,2,0,1,2526,
2869453,18,1,2526,454,
287020,455,4,18,83,
28710,116,0,97,0,
2872116,0,101,0,66,
28730,111,0,100,0,
2874121,0,1,102,1,
28752,2,0,1,299,
2876456,18,1,299,457,
287720,458,4,8,83,
28780,84,0,65,0,
287982,0,1,20,1,
28801,2,0,1,1370,
2881459,18,1,1370,169,
28822,0,1,305,460,
288318,1,305,177,2,
28840,1,2458,461,18,
28851,2458,269,2,0,
28861,2459,462,18,1,
28872459,150,2,0,1,
28882464,463,18,1,2464,
2889150,2,0,1,1989,
2890464,18,1,1989,269,
28912,0,1,1990,465,
289218,1,1990,466,20,
2893467,4,8,69,0,
289476,0,83,0,69,
28950,1,43,1,1,
28962,0,1,2470,468,
289718,1,2470,162,2,
28980,1,322,469,18,
28991,322,234,2,0,
29001,1933,470,18,1,
29011933,135,2,0,1,
2902883,471,18,1,883,
2903177,2,0,1,328,
2904472,18,1,328,177,
29052,0,1,1443,473,
290618,1,1443,252,2,
29070,1,1449,474,18,
29081,1449,177,2,0,
29091,2485,475,18,1,
29102485,476,20,477,4,
291130,78,0,79,0,
291295,0,83,0,69,
29130,78,0,83,0,
291479,0,82,0,95,
29150,69,0,86,0,
291669,0,78,0,84,
29170,1,77,1,1,
29182,0,1,2565,478,
291918,1,2565,150,2,
29200,1,2566,479,18,
29211,2566,480,20,481,
29224,40,83,0,116,
29230,97,0,116,0,
2924101,0,69,0,110,
29250,116,0,114,0,
2926121,0,83,0,116,
29270,97,0,116,0,
2928101,0,69,0,118,
29290,101,0,110,0,
2930116,0,1,104,1,
29312,2,0,1,2488,
2932482,18,1,2488,483,
293320,484,4,22,77,
29340,79,0,78,0,
293569,0,89,0,95,
29360,69,0,86,0,
293769,0,78,0,84,
29380,1,74,1,1,
29392,0,1,2489,485,
294018,1,2489,486,20,
2941487,4,24,76,0,
294273,0,83,0,84,
29430,69,0,78,0,
294495,0,69,0,86, 293795,0,69,0,86,
29450,69,0,78,0, 29380,69,0,78,0,
294684,0,1,73,1, 293984,0,1,74,1,
29471,2,0,1,2490, 29401,2,0,1,2489,
2948488,18,1,2490,489, 2941485,18,1,2489,486,
294920,490,4,36,76, 294220,487,4,24,76,
29500,73,0,78,0, 29430,73,0,83,0,
295175,0,95,0,77, 294484,0,69,0,78,
29520,69,0,83,0, 29450,95,0,69,0,
295383,0,65,0,71, 294686,0,69,0,78,
29540,69,0,95,0, 29470,84,0,1,73,
29481,1,2,0,1,
29492490,488,18,1,2490,
2950489,20,490,4,36,
295176,0,73,0,78,
29520,75,0,95,0,
295377,0,69,0,83,
29540,83,0,65,0,
295571,0,69,0,95,
29560,69,0,86,0,
295769,0,78,0,84,
29580,1,72,1,1,
29592,0,1,2491,491,
296018,1,2491,492,20,
2961493,4,52,76,0,
296265,0,78,0,68,
29630,95,0,67,0,
296479,0,76,0,76,
29650,73,0,83,0,
296673,0,79,0,78,
29670,95,0,83,0,
296884,0,65,0,82,
29690,84,0,95,0,
295569,0,86,0,69, 297069,0,86,0,69,
29560,78,0,84,0, 29710,78,0,84,0,
29571,72,1,1,2, 29721,71,1,1,2,
29580,1,2491,491,18, 29730,1,2493,494,18,
29591,2491,492,20,493, 29741,2493,495,20,496,
29604,52,76,0,65, 29754,40,76,0,65,
29610,78,0,68,0, 29760,78,0,68,0,
296295,0,67,0,79, 297795,0,67,0,79,
29630,76,0,76,0, 29780,76,0,76,0,
296473,0,83,0,73, 297973,0,83,0,73,
29650,79,0,78,0, 29800,79,0,78,0,
296695,0,83,0,84, 298195,0,69,0,86,
29670,65,0,82,0, 29820,69,0,78,0,
296884,0,95,0,69, 298384,0,1,69,1,
29690,86,0,69,0, 29841,2,0,1,1413,
297078,0,84,0,1, 2985497,18,1,1413,177,
297171,1,1,2,0, 29862,0,1,346,498,
29721,2493,494,18,1, 298718,1,346,499,20,
29732493,495,20,496,4, 2988500,4,8,80,0,
297440,76,0,65,0, 298976,0,85,0,83,
297578,0,68,0,95, 29900,1,18,1,1,
29760,67,0,79,0, 29912,0,1,2496,501,
297776,0,76,0,73, 299218,1,2496,502,20,
29780,83,0,73,0, 2993503,4,32,68,0,
297979,0,78,0,95, 299465,0,84,0,65,
29800,69,0,86,0, 29950,83,0,69,0,
298169,0,78,0,84, 299682,0,86,0,69,
29820,1,69,1,1, 29970,82,0,95,0,
29832,0,1,1413,497, 299869,0,86,0,69,
298418,1,1413,177,2, 29990,78,0,84,0,
29850,1,346,498,18, 30001,66,1,1,2,
29861,346,499,20,500, 30010,1,2021,504,18,
29874,8,80,0,76, 30021,2021,269,2,0,
29880,85,0,83,0, 30031,2022,505,18,1,
29891,18,1,1,2, 30042022,346,2,0,1,
29900,1,2496,501,18, 3005352,506,18,1,352,
29911,2496,502,20,503, 3006177,2,0,1,2024,
29924,32,68,0,65, 3007507,18,1,2024,132,
29930,84,0,65,0, 30082,0,1,2025,508,
299483,0,69,0,82, 300918,1,2025,509,20,
29950,86,0,69,0, 3010510,4,8,74,0,
299682,0,95,0,69, 301185,0,77,0,80,
29970,86,0,69,0, 30120,1,49,1,1,
299878,0,84,0,1, 30132,0,1,2026,511,
299966,1,1,2,0, 301418,1,2026,132,2,
30001,2021,504,18,1, 30150,1,2027,512,18,
30012021,269,2,0,1, 30161,2027,513,20,514,
30022022,505,18,1,2022, 30174,4,65,0,84,
3003346,2,0,1,352, 30180,1,23,1,1,
3004506,18,1,352,177, 30192,0,1,2028,515,
30052,0,1,2024,507, 302018,1,2028,132,2,
300618,1,2024,132,2, 30210,1,2029,516,18,
30070,1,2025,508,18, 30221,2029,342,2,0,
30081,2025,509,20,510, 30231,2030,517,18,1,
30094,8,74,0,85, 30242030,518,20,519,4,
30100,77,0,80,0, 302514,70,0,111,0,
30111,49,1,1,2, 3026114,0,76,0,111,
30120,1,2026,511,18, 30270,111,0,112,0,
30131,2026,132,2,0, 30281,123,1,2,2,
30141,2027,512,18,1, 30290,1,2031,520,18,
30152027,513,20,514,4, 30301,2031,521,20,522,
30164,65,0,84,0, 30314,32,68,0,111,
30171,23,1,1,2, 30320,87,0,104,0,
30180,1,2028,515,18, 3033105,0,108,0,101,
30191,2028,132,2,0, 30340,83,0,116,0,
30201,2029,516,18,1, 303597,0,116,0,101,
30212029,342,2,0,1, 30360,109,0,101,0,
30222030,517,18,1,2030, 3037110,0,116,0,1,
3023518,20,519,4,14, 3038122,1,2,2,0,
302470,0,111,0,114, 30391,2032,523,18,1,
30250,76,0,111,0, 30402032,524,20,525,4,
3026111,0,112,0,1, 304128,87,0,104,0,
3027123,1,2,2,0, 3042105,0,108,0,101,
30281,2031,520,18,1, 30430,83,0,116,0,
30292031,521,20,522,4, 304497,0,116,0,101,
303032,68,0,111,0, 30450,109,0,101,0,
303187,0,104,0,105, 3046110,0,116,0,1,
30320,108,0,101,0, 3047121,1,2,2,0,
30481,2033,526,18,1,
30492033,527,20,528,4,
305022,73,0,102,0,
303383,0,116,0,97, 305183,0,116,0,97,
30340,116,0,101,0, 30520,116,0,101,0,
3035109,0,101,0,110, 3053109,0,101,0,110,
30360,116,0,1,122, 30540,116,0,1,120,
30371,2,2,0,1, 30551,2,2,0,1,
30382032,523,18,1,2032, 30562034,529,18,1,2034,
3039524,20,525,4,28, 3057530,20,531,4,22,
304087,0,104,0,105,
30410,108,0,101,0,
304283,0,116,0,97, 305883,0,116,0,97,
30430,116,0,101,0, 30590,116,0,101,0,
3044109,0,101,0,110, 306067,0,104,0,97,
30450,116,0,1,121, 30610,110,0,103,0,
3062101,0,1,119,1,
30632,2,0,1,1478,
3064532,18,1,1478,169,
30652,0,1,1479,533,
306618,1,1479,285,2,
30670,1,2037,534,18,
30681,2037,201,2,0,
30691,2038,535,18,1,
30702038,536,20,537,4,
307118,74,0,117,0,
3072109,0,112,0,76,
30730,97,0,98,0,
3074101,0,108,0,1,
3075117,1,2,2,0,
30761,2039,538,18,1,
30772039,201,2,0,1,
30782040,539,18,1,2040,
3079540,20,541,4,30,
308082,0,101,0,116,
30810,117,0,114,0,
3082110,0,83,0,116,
30830,97,0,116,0,
3084101,0,109,0,101,
30850,110,0,116,0,
30861,116,1,2,2,
30870,1,2041,542,18,
30881,2041,201,2,0,
30891,1485,543,18,1,
30901485,177,2,0,1,
3091372,544,18,1,372,
3092189,2,0,1,373,
3093545,18,1,373,132,
30942,0,1,374,546,
309518,1,374,185,2,
30960,1,375,547,18,
30971,375,132,2,0,
30981,376,548,18,1,
3099376,192,2,0,1,
3100377,549,18,1,377,
3101132,2,0,1,378,
3102550,18,1,378,185,
31032,0,1,379,551,
310418,1,379,132,2,
31050,1,380,552,18,
31061,380,553,20,554,
31074,16,67,0,111,
31080,110,0,115,0,
3109116,0,97,0,110,
31100,116,0,1,129,
30461,2,2,0,1, 31111,2,2,0,1,
30472033,526,18,1,2033, 3112381,555,18,1,381,
3048527,20,528,4,22, 3113299,2,0,1,371,
304973,0,102,0,83, 3114556,18,1,371,557,
30500,116,0,97,0, 311520,558,4,24,70,
3051116,0,101,0,109, 31160,117,0,110,0,
30520,101,0,110,0, 311799,0,116,0,105,
3053116,0,1,120,1, 31180,111,0,110,0,
30542,2,0,1,2034, 311967,0,97,0,108,
3055529,18,1,2034,530, 31200,108,0,1,125,
305620,531,4,22,83, 31211,2,2,0,1,
3122942,559,18,1,942,
3123177,2,0,1,387,
3124560,18,1,387,177,
31252,0,1,1514,561,
312618,1,1514,169,2,
31270,1,1515,562,18,
31281,1515,307,2,0,
31291,2606,563,18,1,
31302606,454,2,0,1,
31312074,564,18,1,2074,
3132169,2,0,1,2075,
3133565,18,1,2075,159,
31342,0,1,406,566,
313518,1,406,143,2,
31360,1,1521,567,18,
31371,1521,177,2,0,
31381,412,568,18,1,
3139412,177,2,0,1,
31402484,569,18,1,2484,
3141570,20,571,4,34,
314282,0,69,0,77,
31430,79,0,84,0,
314469,0,95,0,68,
31450,65,0,84,0,
314665,0,95,0,69,
31470,86,0,69,0,
314878,0,84,0,1,
314982,1,1,2,0,
31501,2023,572,18,1,
31512023,573,20,574,4,
315226,68,0,69,0,
315370,0,65,0,85,
31540,76,0,84,0,
315595,0,83,0,84,
31560,65,0,84,0,
315769,0,1,47,1,
31581,2,0,1,2564,
3159575,18,1,2564,576,
316020,577,4,20,83,
30570,116,0,97,0, 31610,116,0,97,0,
3058116,0,101,0,67, 3162116,0,101,0,69,
30590,104,0,97,0, 31630,118,0,101,0,
3060110,0,103,0,101, 3164110,0,116,0,1,
30610,1,119,1,2, 3165103,1,2,2,0,
30622,0,1,1478,532, 31661,2648,578,18,1,
306318,1,1478,169,2, 31672648,579,20,580,4,
30640,1,1479,533,18, 316812,83,0,116,0,
30651,1479,285,2,0, 316997,0,116,0,101,
30661,2037,534,18,1, 31700,115,0,1,100,
30672037,201,2,0,1,
30682038,535,18,1,2038,
3069536,20,537,4,18,
307074,0,117,0,109,
30710,112,0,76,0,
307297,0,98,0,101,
30730,108,0,1,117,
30741,2,2,0,1, 31711,2,2,0,1,
30752039,538,18,1,2039, 31722567,581,18,1,2567,
3076201,2,0,1,2040, 3173576,2,0,1,1442,
3077539,18,1,2040,540, 3174582,18,1,1442,169,
307820,541,4,30,82, 31752,0,1,2569,583,
30790,101,0,116,0, 317618,1,2569,162,2,
3080117,0,114,0,110, 31770,1,2652,584,18,
31781,2652,165,2,0,
31791,2653,585,18,1,
31802653,132,2,0,1,
31812654,586,18,1,2654,
3182135,2,0,1,2035,
3183587,18,1,2035,201,
31842,0,1,2036,588,
318518,1,2036,589,20,
3186590,4,26,74,0,
3187117,0,109,0,112,
30810,83,0,116,0, 31880,83,0,116,0,
308297,0,116,0,101, 318997,0,116,0,101,
30830,109,0,101,0, 31900,109,0,101,0,
3084110,0,116,0,1, 3191110,0,116,0,1,
3085116,1,2,2,0, 3192118,1,2,2,0,
30861,2041,542,18,1, 31931,431,591,18,1,
30872041,201,2,0,1, 3194431,143,2,0,1,
30881485,543,18,1,1485, 31952105,592,18,1,2105,
3089177,2,0,1,372, 3196269,2,0,1,2106,
3090544,18,1,372,189, 3197593,18,1,2106,466,
30912,0,1,373,545, 31982,0,1,1550,594,
309218,1,373,132,2, 319918,1,1550,169,2,
30930,1,374,546,18, 32000,1,437,595,18,
30941,374,185,2,0, 32011,437,177,2,0,
30951,375,547,18,1, 32021,2044,596,18,1,
3096375,132,2,0,1, 32032044,597,20,598,4,
3097376,548,18,1,376, 320428,69,0,109,0,
3098192,2,0,1,377, 3205112,0,116,0,121,
3099549,18,1,377,132, 32060,83,0,116,0,
31002,0,1,378,550, 320797,0,116,0,101,
310118,1,378,185,2, 32080,109,0,101,0,
31020,1,379,551,18, 3209110,0,116,0,1,
31031,379,132,2,0, 3210113,1,2,2,0,
31041,380,552,18,1, 32111,2045,599,18,1,
3105380,553,20,554,4, 32122045,201,2,0,1,
310616,67,0,111,0, 32131555,600,18,1,1555,
3107110,0,115,0,116, 3214177,2,0,1,2670,
31080,97,0,110,0, 3215601,18,1,2670,307,
3109116,0,1,129,1, 32162,0,1,2511,602,
31102,2,0,1,381, 321718,1,2511,135,2,
3111555,18,1,381,299, 32180,1,1001,603,18,
31122,0,1,371,556, 32191,1001,557,2,0,
311318,1,371,557,20, 32201,1002,604,18,1,
3114558,4,24,70,0, 32211002,553,2,0,1,
3115117,0,110,0,99, 3222447,605,18,1,447,
31160,116,0,105,0, 3223316,2,0,1,2676,
3117111,0,110,0,67, 3224606,18,1,2676,177,
31180,97,0,108,0, 32252,0,1,2520,607,
3119108,0,1,125,1, 322618,1,2520,140,2,
31202,2,0,1,942, 32270,1,1010,608,18,
3121559,18,1,942,177, 32281,1010,169,2,0,
31222,0,1,387,560, 32291,1011,609,18,1,
312318,1,387,177,2, 32301011,159,2,0,1,
31240,1,1514,561,18, 32311012,610,18,1,1012,
31251,1514,169,2,0, 3232177,2,0,1,1013,
31261,1515,562,18,1, 3233611,18,1,1013,159,
31271515,307,2,0,1, 32342,0,1,459,612,
31282606,563,18,1,2606, 323518,1,459,613,20,
3129454,2,0,1,2074, 3236614,4,24,76,0,
3130564,18,1,2074,169, 323769,0,70,0,84,
31312,0,1,2075,565, 32380,95,0,66,0,
313218,1,2075,159,2, 323982,0,65,0,67,
31330,1,406,566,18, 32400,75,0,69,0,
31341,406,143,2,0, 324184,0,1,27,1,
31351,1521,567,18,1, 32421,2,0,1,1574,
31361521,177,2,0,1, 3243615,18,1,1574,201,
3137412,568,18,1,412, 32442,0,1,461,616,
3138177,2,0,1,2484, 324518,1,461,617,20,
3139569,18,1,2484,570, 3246618,4,24,65,0,
314020,571,4,46,78, 3247114,0,103,0,117,
31410,79,0,84,0, 32480,109,0,101,0,
314295,0,65,0,84, 3249110,0,116,0,76,
31430,95,0,82,0, 32500,105,0,115,0,
314479,0,84,0,95, 3251116,0,1,126,1,
31450,84,0,65,0, 32522,2,0,1,462,
314682,0,71,0,69, 3253619,18,1,462,143,
32542,0,1,464,620,
325518,1,464,621,20,
3256622,4,16,65,0,
3257114,0,103,0,117,
32580,109,0,101,0,
3259110,0,116,0,1,
3260127,1,2,2,0,
32611,2136,623,18,1,
32622136,269,2,0,1,
32632729,104,1,2695,624,
326418,1,2695,201,2,
32650,1,1585,625,18,
32661,1585,626,20,627,
32674,12,82,0,69,
32680,84,0,85,0,
326982,0,78,0,1,
327050,1,1,2,0,
32711,476,628,18,1,
3272476,629,20,630,4,
327330,83,0,84,0,
327482,0,73,0,78,
32750,71,0,95,0,
327667,0,79,0,78,
32770,83,0,84,0,
327865,0,78,0,84,
32790,1,3,1,1,
32802,0,1,477,631,
328118,1,477,632,20,
3282633,4,28,70,0,
328376,0,79,0,65,
31470,84,0,95,0, 32840,84,0,95,0,
314869,0,86,0,69, 328567,0,79,0,78,
31490,78,0,84,0, 32860,83,0,84,0,
31501,78,1,1,2, 328765,0,78,0,84,
31510,1,2023,572,18, 32880,1,95,1,1,
31521,2023,573,20,574, 32892,0,1,478,634,
31534,26,68,0,69, 329018,1,478,635,20,
31540,70,0,65,0, 3291636,4,40,72,0,
315585,0,76,0,84, 329269,0,88,0,95,
31560,95,0,83,0, 32930,73,0,78,0,
315784,0,65,0,84,
31580,69,0,1,47,
31591,1,2,0,1,
31602564,575,18,1,2564,
3161576,20,577,4,20,
316283,0,116,0,97,
31630,116,0,101,0,
316469,0,118,0,101,
31650,110,0,116,0,
31661,103,1,2,2,
31670,1,2648,578,18,
31681,2648,579,20,580,
31694,12,83,0,116,
31700,97,0,116,0,
3171101,0,115,0,1,
3172100,1,2,2,0,
31731,2567,581,18,1,
31742567,576,2,0,1,
31751442,582,18,1,1442,
3176169,2,0,1,2569,
3177583,18,1,2569,162,
31782,0,1,2652,584,
317918,1,2652,165,2,
31800,1,2653,585,18,
31811,2653,132,2,0,
31821,2654,586,18,1,
31832654,135,2,0,1,
31842035,587,18,1,2035,
3185201,2,0,1,2036,
3186588,18,1,2036,589,
318720,590,4,26,74,
31880,117,0,109,0,
3189112,0,83,0,116,
31900,97,0,116,0,
3191101,0,109,0,101,
31920,110,0,116,0,
31931,118,1,2,2,
31940,1,431,591,18,
31951,431,143,2,0,
31961,2105,592,18,1,
31972105,269,2,0,1,
31982106,593,18,1,2106,
3199466,2,0,1,1550,
3200594,18,1,1550,169,
32012,0,1,437,595,
320218,1,437,177,2,
32030,1,2044,596,18,
32041,2044,597,20,598,
32054,28,69,0,109,
32060,112,0,116,0,
3207121,0,83,0,116,
32080,97,0,116,0,
3209101,0,109,0,101,
32100,110,0,116,0,
32111,113,1,2,2,
32120,1,2045,599,18,
32131,2045,201,2,0,
32141,1555,600,18,1,
32151555,177,2,0,1,
32162670,601,18,1,2670,
3217307,2,0,1,2511,
3218602,18,1,2511,135,
32192,0,1,1001,603,
322018,1,1001,557,2,
32210,1,1002,604,18,
32221,1002,553,2,0,
32231,447,605,18,1,
3224447,316,2,0,1,
32252676,606,18,1,2676,
3226177,2,0,1,2520,
3227607,18,1,2520,140,
32282,0,1,1010,608,
322918,1,1010,169,2,
32300,1,1011,609,18,
32311,1011,159,2,0,
32321,1012,610,18,1,
32331012,177,2,0,1,
32341013,611,18,1,1013,
3235159,2,0,1,459,
3236612,18,1,459,613,
323720,614,4,24,76,
32380,69,0,70,0,
323984,0,95,0,66,
32400,82,0,65,0,
324167,0,75,0,69,
32420,84,0,1,27,
32431,1,2,0,1,
32441574,615,18,1,1574,
3245201,2,0,1,461,
3246616,18,1,461,617,
324720,618,4,24,65,
32480,114,0,103,0,
3249117,0,109,0,101,
32500,110,0,116,0,
325176,0,105,0,115,
32520,116,0,1,126,
32531,2,2,0,1,
3254462,619,18,1,462,
3255143,2,0,1,464,
3256620,18,1,464,621,
325720,622,4,16,65,
32580,114,0,103,0,
3259117,0,109,0,101,
32600,110,0,116,0,
32611,127,1,2,2,
32620,1,2136,623,18,
32631,2136,269,2,0,
32641,2729,104,1,2695,
3265624,18,1,2695,201,
32662,0,1,1585,625,
326718,1,1585,626,20,
3268627,4,12,82,0,
326969,0,84,0,85,
32700,82,0,78,0,
32711,50,1,1,2,
32720,1,476,628,18,
32731,476,629,20,630,
32744,30,83,0,84,
32750,82,0,73,0,
327678,0,71,0,95,
32770,67,0,79,0,
327878,0,83,0,84,
32790,65,0,78,0,
328084,0,1,3,1,
32811,2,0,1,477,
3282631,18,1,477,632,
328320,633,4,28,70,
32840,76,0,79,0,
328565,0,84,0,95,
32860,67,0,79,0,
328778,0,83,0,84,
32880,65,0,78,0,
328984,0,1,95,1,
32901,2,0,1,478,
3291634,18,1,478,635,
329220,636,4,40,72,
32930,69,0,88,0,
329495,0,73,0,78,
32950,84,0,69,0,
329671,0,69,0,82,
32970,95,0,67,0,
329879,0,78,0,83,
32990,84,0,65,0,
330078,0,84,0,1,
330194,1,1,2,0,
33021,479,637,18,1,
3303479,638,20,639,4,
330432,73,0,78,0,
330584,0,69,0,71, 329484,0,69,0,71,
33060,69,0,82,0, 32950,69,0,82,0,
330795,0,67,0,79, 329695,0,67,0,79,
33080,78,0,83,0, 32970,78,0,83,0,
330984,0,65,0,78, 329884,0,65,0,78,
33100,84,0,1,93, 32990,84,0,1,94,
33111,1,2,0,1, 33001,1,2,0,1,
3312480,640,18,1,480, 3301479,637,18,1,479,
3313641,20,642,4,26, 3302638,20,639,4,32,
331482,0,73,0,71, 330373,0,78,0,84,
33150,72,0,84,0, 33040,69,0,71,0,
331695,0,66,0,82, 330569,0,82,0,95,
33170,65,0,67,0, 33060,67,0,79,0,
331875,0,69,0,84, 330778,0,83,0,84,
33190,1,28,1,1, 33080,65,0,78,0,
33202,0,1,481,643, 330984,0,1,93,1,
332118,1,481,621,2, 33101,2,0,1,480,
33220,1,2718,644,18, 3311640,18,1,480,641,
33231,2718,579,2,0, 331220,642,4,26,82,
33241,1048,645,18,1, 33130,73,0,71,0,
33251048,177,2,0,1, 331472,0,84,0,95,
33262725,646,18,1,2725, 33150,66,0,82,0,
3327153,2,0,1,2726, 331665,0,67,0,75,
3328647,18,1,2726,648, 33170,69,0,84,0,
332920,649,4,50,71, 33181,28,1,1,2,
33300,108,0,111,0, 33190,1,481,643,18,
333198,0,97,0,108, 33201,481,621,2,0,
33320,86,0,97,0, 33211,2718,644,18,1,
3333114,0,105,0,97, 33222718,579,2,0,1,
33340,98,0,108,0, 33231048,645,18,1,1048,
3335101,0,68,0,101, 3324177,2,0,1,2725,
33360,99,0,108,0, 3325646,18,1,2725,153,
333797,0,114,0,97, 33262,0,1,2726,647,
33380,116,0,105,0, 332718,1,2726,648,20,
3339111,0,110,0,1, 3328649,4,50,71,0,
334098,1,2,2,0, 3329108,0,111,0,98,
33411,2563,650,18,1, 33300,97,0,108,0,
33422563,480,2,0,1, 333186,0,97,0,114,
33432728,651,18,1,2728, 33320,105,0,97,0,
3344648,2,0,1,2042, 333398,0,108,0,101,
3345652,18,1,2042,653, 33340,68,0,101,0,
334620,654,4,20,65, 333599,0,108,0,97,
33470,115,0,115,0, 33360,114,0,97,0,
3348105,0,103,0,110, 3337116,0,105,0,111,
33490,109,0,101,0, 33380,110,0,1,98,
3350110,0,116,0,1, 33391,2,2,0,1,
3351114,1,2,2,0, 33402563,650,18,1,2563,
33521,2043,655,18,1, 3341480,2,0,1,2728,
33532043,201,2,0,1, 3342651,18,1,2728,648,
33542568,656,18,1,2568, 33432,0,1,2042,652,
3355573,2,0,1,1620, 334418,1,2042,653,20,
3356657,18,1,1620,169, 3345654,4,20,65,0,
33572,0,1,1621,658, 3346115,0,115,0,105,
335818,1,1621,156,2, 33470,103,0,110,0,
33590,1,1622,659,18, 3348109,0,101,0,110,
33601,1622,307,2,0, 33490,116,0,1,114,
33611,509,660,18,1, 33501,2,2,0,1,
3362509,143,2,0,1, 33512043,655,18,1,2043,
33632498,661,18,1,2498, 3352201,2,0,1,2568,
3364662,20,663,4,42, 3353656,18,1,2568,573,
336567,0,79,0,76, 33542,0,1,1620,657,
33660,76,0,73,0, 335518,1,1620,169,2,
336783,0,73,0,79, 33560,1,1621,658,18,
33680,78,0,95,0, 33571,1621,156,2,0,
336983,0,84,0,65, 33581,1622,659,18,1,
33700,82,0,84,0, 33591622,307,2,0,1,
337195,0,69,0,86, 3360509,660,18,1,509,
33720,69,0,78,0, 3361143,2,0,1,2498,
337384,0,1,64,1, 3362661,18,1,2498,662,
33741,2,0,1,1628, 336320,663,4,42,67,
3375664,18,1,1628,177, 33640,79,0,76,0,
33762,0,1,515,665, 336576,0,73,0,83,
337718,1,515,177,2, 33660,73,0,79,0,
33780,1,2505,666,18, 336778,0,95,0,83,
33791,2505,667,20,668, 33680,84,0,65,0,
33804,20,69,0,110, 336982,0,84,0,95,
33810,116,0,114,0, 33700,69,0,86,0,
3382121,0,69,0,118, 337169,0,78,0,84,
33830,101,0,110,0, 33720,1,64,1,1,
3384116,0,1,109,1, 33732,0,1,1628,664,
33852,2,0,1,2663, 337418,1,1628,177,2,
3386669,18,1,2663,140, 33750,1,515,665,18,
33872,0,1,2665,670, 33761,515,177,2,0,
338818,1,2665,159,2, 33771,2505,666,18,1,
33890,1,2667,671,18, 33782505,667,20,668,4,
33901,2667,342,2,0, 337924,86,0,111,0,
33911,525,672,18,1, 3380105,0,100,0,65,
3392525,316,2,0,1, 33810,114,0,103,0,
33932197,673,18,1,2197, 338269,0,118,0,101,
3394169,2,0,1,2198, 33830,110,0,116,0,
3395674,18,1,2198,159, 33841,109,1,2,2,
33962,0,1,1591,675, 33850,1,2663,669,18,
339718,1,1591,177,2, 33861,2663,140,2,0,
33980,1,1094,676,18, 33871,2665,670,18,1,
33991,1094,617,2,0, 33882665,159,2,0,1,
34001,1096,677,18,1, 33892667,671,18,1,2667,
34011096,159,2,0,1, 3390342,2,0,1,525,
34021657,678,18,1,1657, 3391672,18,1,525,316,
3403201,2,0,1,1658, 33922,0,1,2197,673,
3404679,18,1,1658,680, 339318,1,2197,169,2,
340520,681,4,6,70, 33940,1,2198,674,18,
34060,79,0,82,0, 33951,2198,159,2,0,
34071,46,1,1,2, 33961,1591,675,18,1,
34080,1,1659,682,18, 33971591,177,2,0,1,
34091,1659,135,2,0, 33981094,676,18,1,1094,
34101,1665,683,18,1, 3399617,2,0,1,1096,
34111665,177,2,0,1, 3400677,18,1,1096,159,
34121113,684,18,1,1113, 34012,0,1,1657,678,
3413185,2,0,685,5, 340218,1,1657,201,2,
34140,686,5,329,1, 34030,1,1658,679,18,
34152,687,19,262,1, 34041,1658,680,20,681,
34162,688,5,6,1, 34054,6,70,0,79,
34172651,689,17,690,15, 34060,82,0,1,46,
3418691,4,14,37,0, 34071,1,2,0,1,
341983,0,116,0,97, 34081659,682,18,1,1659,
34200,116,0,101,0, 3409135,2,0,1,1665,
3421115,0,1,-1,1, 3410683,18,1,1665,177,
34225,692,20,693,4, 34112,0,1,1113,684,
342316,83,0,116,0, 341218,1,1113,185,2,
342497,0,116,0,101, 34130,685,5,0,686,
34250,115,0,95,0, 34145,329,1,2,687,
342650,0,1,155,1, 341519,262,1,2,688,
34273,1,3,1,2, 34165,6,1,2651,689,
3428694,22,1,12,1, 341717,690,15,691,4,
34292652,695,17,696,15, 341814,37,0,83,0,
3430691,1,-1,1,5, 3419116,0,97,0,116,
3431697,20,698,4,16, 34200,101,0,115,0,
343283,0,116,0,97, 34211,-1,1,5,692,
34330,116,0,101,0, 342220,693,4,16,83,
3434115,0,95,0,49,
34350,1,154,1,3,
34361,2,1,1,699,
343722,1,11,1,2565,
3438700,17,701,15,702,
34394,12,37,0,83,
34400,116,0,97,0, 34230,116,0,97,0,
3441116,0,101,0,1, 3424116,0,101,0,115,
3442-1,1,5,703,20, 34250,95,0,50,0,
3443704,4,14,83,0, 34261,155,1,3,1,
34273,1,2,694,22,
34281,12,1,2652,695,
342917,696,15,691,1,
3430-1,1,5,697,20,
3431698,4,16,83,0,
3432116,0,97,0,116,
34330,101,0,115,0,
343495,0,49,0,1,
3435154,1,3,1,2,
34361,1,699,22,1,
343711,1,2565,700,17,
3438701,15,702,4,12,
343937,0,83,0,116,
34400,97,0,116,0,
3441101,0,1,-1,1,
34425,703,20,704,4,
344314,83,0,116,0,
344497,0,116,0,101,
34450,95,0,50,0,
34461,157,1,3,1,
34476,1,5,705,22,
34481,14,1,2645,706,
344917,707,15,702,1,
3450-1,1,5,708,20,
3451709,4,14,83,0,
3444116,0,97,0,116, 3452116,0,97,0,116,
34450,101,0,95,0, 34530,101,0,95,0,
344650,0,1,157,1, 345449,0,1,156,1,
34473,1,6,1,5, 34553,1,5,1,4,
3448705,22,1,14,1, 3456710,22,1,13,1,
34492645,706,17,707,15, 34572718,711,17,712,15,
3450702,1,-1,1,5, 3458713,4,30,37,0,
3451708,20,709,4,14, 345976,0,83,0,76,
345283,0,116,0,97, 34600,80,0,114,0,
34530,116,0,101,0, 3461111,0,103,0,114,
34620,97,0,109,0,
346382,0,111,0,111,
34640,116,0,1,-1,
34651,5,714,20,715,
34664,32,76,0,83,
34670,76,0,80,0,
3468114,0,111,0,103,
34690,114,0,97,0,
3470109,0,82,0,111,
34710,111,0,116,0,
345495,0,49,0,1, 347295,0,49,0,1,
3455156,1,3,1,5, 3473144,1,3,1,3,
34561,4,710,22,1, 34741,2,716,22,1,
345713,1,2718,711,17, 34751,1,2648,717,17,
3458712,15,713,4,30, 3476718,15,713,1,-1,
345937,0,76,0,83, 34771,5,719,20,720,
34784,32,76,0,83,
34600,76,0,80,0, 34790,76,0,80,0,
3461114,0,111,0,103, 3480114,0,111,0,103,
34620,114,0,97,0, 34810,114,0,97,0,
3463109,0,82,0,111, 3482109,0,82,0,111,
34640,111,0,116,0, 34830,111,0,116,0,
34651,-1,1,5,714, 348495,0,50,0,1,
346620,715,4,32,76, 3485145,1,3,1,2,
34670,83,0,76,0, 34861,1,721,22,1,
346880,0,114,0,111, 34872,1,3,722,19,
34690,103,0,114,0, 3488630,1,3,723,5,
347097,0,109,0,82, 348995,1,256,724,16,
34710,111,0,111,0, 34900,628,1,1261,725,
3472116,0,95,0,49, 349116,0,628,1,509,
34730,1,144,1,3, 3492726,16,0,628,1,
34741,3,1,2,716, 34931515,727,16,0,628,
347522,1,1,1,2648, 34941,2021,728,17,729,
3476717,17,718,15,713, 349515,730,4,24,37,
34771,-1,1,5,719, 34960,73,0,102,0,
347820,720,4,32,76, 349783,0,116,0,97,
34790,83,0,76,0, 34980,116,0,101,0,
348080,0,114,0,111, 3499109,0,101,0,110,
34810,103,0,114,0, 35000,116,0,1,-1,
348297,0,109,0,82, 35011,5,731,20,732,
34830,111,0,111,0, 35024,26,73,0,102,
3484116,0,95,0,50, 35030,83,0,116,0,
34850,1,145,1,3, 350497,0,116,0,101,
34861,2,1,1,721, 35050,109,0,101,0,
348722,1,2,1,3, 3506110,0,116,0,95,
3488722,19,630,1,3, 35070,50,0,1,190,
3489723,5,95,1,256, 35081,3,1,8,1,
3490724,16,0,628,1, 35097,733,22,1,48,
34911261,725,16,0,628, 35101,1775,734,16,0,
34921,509,726,16,0, 3511628,1,2029,735,17,
3493628,1,1515,727,16, 3512736,15,737,4,20,
34940,628,1,2021,728, 351337,0,83,0,116,
349517,729,15,730,4,
349624,37,0,73,0,
3497102,0,83,0,116,
34980,97,0,116,0, 35140,97,0,116,0,
3499101,0,109,0,101, 3515101,0,109,0,101,
35000,110,0,116,0, 35160,110,0,116,0,
35011,-1,1,5,731, 35171,-1,1,5,738,
350220,732,4,26,73, 351820,739,4,24,83,
35030,102,0,83,0,
3504116,0,97,0,116,
35050,101,0,109,0,
3506101,0,110,0,116,
35070,95,0,50,0,
35081,190,1,3,1,
35098,1,7,733,22,
35101,48,1,1775,734,
351116,0,628,1,2029,
3512735,17,736,15,737,
35134,20,37,0,83,
35140,116,0,97,0, 35190,116,0,97,0,
3515116,0,101,0,109, 3520116,0,101,0,109,
35160,101,0,110,0, 35210,101,0,110,0,
3517116,0,1,-1,1, 3522116,0,95,0,49,
35185,738,20,739,4, 35230,51,0,1,184,
35241,3,1,2,1,
35251,740,22,1,42,
35261,2030,741,17,742,
352715,737,1,-1,1,
35285,743,20,744,4,
351924,83,0,116,0, 352924,83,0,116,0,
352097,0,116,0,101, 353097,0,116,0,101,
35210,109,0,101,0, 35310,109,0,101,0,
3522110,0,116,0,95, 3532110,0,116,0,95,
35230,49,0,51,0, 35330,49,0,50,0,
35241,184,1,3,1, 35341,183,1,3,1,
35252,1,1,740,22, 35352,1,1,745,22,
35261,42,1,2030,741, 35361,41,1,2031,746,
352717,742,15,737,1, 353717,747,15,737,1,
3528-1,1,5,743,20, 3538-1,1,5,748,20,
3529744,4,24,83,0, 3539749,4,24,83,0,
3530116,0,97,0,116, 3540116,0,97,0,116,
35310,101,0,109,0, 35410,101,0,109,0,
3532101,0,110,0,116, 3542101,0,110,0,116,
35330,95,0,49,0, 35430,95,0,49,0,
353450,0,1,183,1, 354449,0,1,182,1,
35353,1,2,1,1, 35453,1,2,1,1,
3536745,22,1,41,1, 3546750,22,1,40,1,
35372031,746,17,747,15, 35472032,751,17,752,15,
3538737,1,-1,1,5, 3548737,1,-1,1,5,
3539748,20,749,4,24, 3549753,20,754,4,24,
354083,0,116,0,97, 355083,0,116,0,97,
35410,116,0,101,0, 35510,116,0,101,0,
3542109,0,101,0,110, 3552109,0,101,0,110,
35430,116,0,95,0, 35530,116,0,95,0,
354449,0,49,0,1, 355449,0,48,0,1,
3545182,1,3,1,2, 3555181,1,3,1,2,
35461,1,750,22,1, 35561,1,755,22,1,
354740,1,2032,751,17, 355739,1,2033,756,17,
3548752,15,737,1,-1, 3558757,15,737,1,-1,
35491,5,753,20,754, 35591,5,758,20,759,
35504,24,83,0,116, 35604,22,83,0,116,
35510,97,0,116,0, 35610,97,0,116,0,
3552101,0,109,0,101, 3562101,0,109,0,101,
35530,110,0,116,0, 35630,110,0,116,0,
355495,0,49,0,48, 356495,0,57,0,1,
35550,1,181,1,3, 3565180,1,3,1,2,
35561,2,1,1,755, 35661,1,760,22,1,
355722,1,39,1,2033, 356738,1,277,761,16,
3558756,17,757,15,737, 35680,628,1,2035,762,
35591,-1,1,5,758, 356917,763,15,737,1,
356020,759,4,22,83, 3570-1,1,5,764,20,
3571765,4,22,83,0,
3572116,0,97,0,116,
35730,101,0,109,0,
3574101,0,110,0,116,
35750,95,0,56,0,
35761,179,1,3,1,
35773,1,2,766,22,
35781,37,1,2037,767,
357917,768,15,737,1,
3580-1,1,5,769,20,
3581770,4,22,83,0,
3582116,0,97,0,116,
35830,101,0,109,0,
3584101,0,110,0,116,
35850,95,0,55,0,
35861,178,1,3,1,
35873,1,2,771,22,
35881,36,1,2039,772,
358917,773,15,737,1,
3590-1,1,5,774,20,
3591775,4,22,83,0,
3592116,0,97,0,116,
35930,101,0,109,0,
3594101,0,110,0,116,
35950,95,0,54,0,
35961,177,1,3,1,
35973,1,2,776,22,
35981,35,1,32,777,
359916,0,628,1,2041,
3600778,17,779,15,737,
36011,-1,1,5,780,
360220,781,4,22,83,
35610,116,0,97,0, 36030,116,0,97,0,
3562116,0,101,0,109, 3604116,0,101,0,109,
35630,101,0,110,0, 36050,101,0,110,0,
3564116,0,95,0,57, 3606116,0,95,0,53,
35650,1,180,1,3, 36070,1,176,1,3,
35661,2,1,1,760, 36081,3,1,2,782,
356722,1,38,1,277, 360922,1,34,1,2293,
3568761,16,0,628,1, 3610783,16,0,628,1,
35692035,762,17,763,15, 36112043,784,17,785,15,
3570737,1,-1,1,5, 3612737,1,-1,1,5,
3571764,20,765,4,22, 3613786,20,787,4,22,
357283,0,116,0,97, 361483,0,116,0,97,
35730,116,0,101,0, 36150,116,0,101,0,
3574109,0,101,0,110, 3616109,0,101,0,110,
35750,116,0,95,0, 36170,116,0,95,0,
357656,0,1,179,1, 361851,0,1,174,1,
35773,1,3,1,2, 36193,1,3,1,2,
3578766,22,1,37,1, 3620788,22,1,32,1,
35792037,767,17,768,15, 36212045,789,17,790,15,
3580737,1,-1,1,5, 3622737,1,-1,1,5,
3581769,20,770,4,22, 3623791,20,792,4,22,
358283,0,116,0,97, 362483,0,116,0,97,
35830,116,0,101,0, 36250,116,0,101,0,
3584109,0,101,0,110, 3626109,0,101,0,110,
35850,116,0,95,0, 36270,116,0,95,0,
358655,0,1,178,1, 362849,0,1,172,1,
35873,1,3,1,2, 36293,1,3,1,2,
3588771,22,1,36,1, 3630793,22,1,30,1,
35892039,772,17,773,15, 363141,794,16,0,628,
3590737,1,-1,1,5, 36321,1297,795,16,0,
3591774,20,775,4,22, 3633628,1,43,796,16,
359283,0,116,0,97, 36340,628,1,1803,797,
35930,116,0,101,0, 363517,798,15,799,4,
3594109,0,101,0,110, 363616,37,0,70,0,
35950,116,0,95,0,
359654,0,1,177,1,
35973,1,3,1,2,
3598776,22,1,35,1,
359932,777,16,0,628,
36001,2041,778,17,779,
360115,737,1,-1,1,
36025,780,20,781,4,
360322,83,0,116,0,
360497,0,116,0,101,
36050,109,0,101,0,
3606110,0,116,0,95,
36070,53,0,1,176,
36081,3,1,3,1,
36092,782,22,1,34,
36101,2293,783,16,0,
3611628,1,2043,784,17,
3612785,15,737,1,-1,
36131,5,786,20,787,
36144,22,83,0,116,
36150,97,0,116,0,
3616101,0,109,0,101,
36170,110,0,116,0,
361895,0,51,0,1,
3619174,1,3,1,3,
36201,2,788,22,1,
362132,1,2045,789,17,
3622790,15,737,1,-1,
36231,5,791,20,792,
36244,22,83,0,116,
36250,97,0,116,0,
3626101,0,109,0,101,
36270,110,0,116,0,
362895,0,49,0,1,
3629172,1,3,1,3,
36301,2,793,22,1,
363130,1,41,794,16,
36320,628,1,1297,795,
363316,0,628,1,43,
3634796,16,0,628,1,
36351803,797,17,798,15,
3636799,4,16,37,0,
363770,0,111,0,114,
36380,76,0,111,0,
3639111,0,112,0,1,
3640-1,1,5,800,20,
3641801,4,18,70,0,
3642111,0,114,0,76, 3637111,0,114,0,76,
36430,111,0,111,0, 36380,111,0,111,0,
3644112,0,95,0,49, 3639112,0,1,-1,1,
36450,1,197,1,3, 36405,800,20,801,4,
36461,10,1,9,802,
364722,1,55,1,1804,
3648803,16,0,628,1,
3649299,804,16,0,628,
36501,52,805,16,0,
3651628,1,2318,806,16,
36520,628,1,62,807,
365316,0,628,1,2075,
3654808,16,0,628,1,
36551574,809,17,810,15,
3656737,1,-1,1,5,
3657811,20,812,4,22,
365883,0,116,0,97,
36590,116,0,101,0,
3660109,0,101,0,110,
36610,116,0,95,0,
366252,0,1,175,1,
36633,1,3,1,2,
3664813,22,1,33,1,
366571,814,16,0,628,
36661,76,815,16,0,
3667628,1,1834,816,16,
36680,628,1,2337,817,
366916,0,628,1,79,
3670818,16,0,628,1,
36711335,819,16,0,628,
36721,322,820,16,0,
3673628,1,85,821,16,
36740,628,1,89,822,
367516,0,628,1,346,
3676823,16,0,628,1,
36772105,824,17,825,15,
3678730,1,-1,1,5,
3679826,20,827,4,26,
368073,0,102,0,83,
36810,116,0,97,0,
3682116,0,101,0,109,
36830,101,0,110,0,
3684116,0,95,0,51,
36850,1,191,1,3,
36861,6,1,5,828,
368722,1,49,1,2106,
3688829,16,0,628,1,
368997,830,16,0,628,
36901,1860,831,17,832,
369115,833,4,34,37,
36920,68,0,111,0,
369387,0,104,0,105,
36940,108,0,101,0,
369583,0,116,0,97,
36960,116,0,101,0,
3697109,0,101,0,110,
36980,116,0,1,-1,
36991,5,834,20,835,
37004,36,68,0,111,
37010,87,0,104,0,
3702105,0,108,0,101,
37030,83,0,116,0,
370497,0,116,0,101,
37050,109,0,101,0,
3706110,0,116,0,95,
37070,49,0,1,195,
37081,3,1,8,1,
37097,836,22,1,53,
37101,2364,837,17,838,
371115,799,1,-1,1,
37125,839,20,840,4,
371318,70,0,111,0, 364118,70,0,111,0,
3714114,0,76,0,111, 3642114,0,76,0,111,
37150,111,0,112,0, 36430,111,0,112,0,
371695,0,50,0,1, 364495,0,49,0,1,
3717198,1,3,1,9, 3645197,1,3,1,10,
37181,8,841,22,1, 36461,9,802,22,1,
371956,1,102,842,16, 364755,1,1804,803,16,
37200,628,1,112,843, 36480,628,1,299,804,
372116,0,628,1,1117, 364916,0,628,1,52,
3722844,16,0,628,1, 3650805,16,0,628,1,
37231873,845,17,846,15, 36512318,806,16,0,628,
3724833,1,-1,1,5, 36521,62,807,16,0,
3725847,20,848,4,36, 3653628,1,2075,808,16,
372668,0,111,0,87, 36540,628,1,1574,809,
37270,104,0,105,0, 365517,810,15,737,1,
3728108,0,101,0,83, 3656-1,1,5,811,20,
37290,116,0,97,0, 3657812,4,22,83,0,
3730116,0,101,0,109, 3658116,0,97,0,116,
37310,101,0,110,0, 36590,101,0,109,0,
3732116,0,95,0,50, 3660101,0,110,0,116,
37330,1,196,1,3, 36610,95,0,52,0,
37341,8,1,7,849, 36621,175,1,3,1,
373522,1,54,1,1876, 36633,1,2,813,22,
3736850,16,0,628,1, 36641,33,1,71,814,
3737124,851,16,0,628, 366516,0,628,1,76,
37381,2136,852,17,853, 3666815,16,0,628,1,
373915,730,1,-1,1, 36671834,816,16,0,628,
37405,854,20,855,4, 36681,2337,817,16,0,
374126,73,0,102,0, 3669628,1,79,818,16,
374283,0,116,0,97, 36700,628,1,1335,819,
37430,116,0,101,0, 367116,0,628,1,322,
3744109,0,101,0,110, 3672820,16,0,628,1,
37450,116,0,95,0, 367385,821,16,0,628,
374652,0,1,192,1, 36741,89,822,16,0,
37473,1,8,1,7, 3675628,1,346,823,16,
3748856,22,1,50,1, 36760,628,1,2105,824,
3749381,857,16,0,628, 367717,825,15,730,1,
37501,525,858,16,0, 3678-1,1,5,826,20,
3751628,1,137,859,16, 3679827,4,26,73,0,
37520,628,1,1901,860, 3680102,0,83,0,116,
375316,0,628,1,1153, 36810,97,0,116,0,
3754861,16,0,628,1, 3682101,0,109,0,101,
3755151,862,16,0,628, 36830,110,0,116,0,
37561,1407,863,16,0, 368495,0,51,0,1,
3757628,1,1659,864,16, 3685191,1,3,1,6,
37580,628,1,2413,865, 36861,5,828,22,1,
375916,0,628,1,406, 368749,1,2106,829,16,
3760866,16,0,628,1, 36880,628,1,97,830,
37611371,867,16,0,628, 368916,0,628,1,1860,
37621,166,868,16,0, 3690831,17,832,15,833,
3763628,1,1622,869,16, 36914,34,37,0,68,
37640,628,1,1931,870, 36920,111,0,87,0,
376517,871,15,872,4,
376630,37,0,87,0,
3767104,0,105,0,108, 3693104,0,105,0,108,
37680,101,0,83,0, 36940,101,0,83,0,
3769116,0,97,0,116, 3695116,0,97,0,116,
37700,101,0,109,0, 36960,101,0,109,0,
3771101,0,110,0,116, 3697101,0,110,0,116,
37720,1,-1,1,5, 36980,1,-1,1,5,
3773873,20,874,4,32, 3699834,20,835,4,36,
377487,0,104,0,105, 370068,0,111,0,87,
37750,108,0,101,0, 37010,104,0,105,0,
377683,0,116,0,97, 3702108,0,101,0,83,
37770,116,0,101,0,
3778109,0,101,0,110,
37790,116,0,95,0,
378049,0,1,193,1,
37813,1,6,1,5,
3782875,22,1,51,1,
37831933,876,16,0,628,
37841,431,877,16,0,
3785628,1,1585,878,16,
37860,628,1,182,879,
378716,0,628,1,1189,
3788880,16,0,628,1,
37891443,881,16,0,628,
37901,1695,882,16,0,
3791628,1,2198,883,16,
37920,628,1,447,884,
379316,0,628,1,2458,
3794885,17,886,15,887,
37954,28,37,0,83,
37960,116,0,97,0,
3797116,0,101,0,109,
37980,101,0,110,0,
3799116,0,76,0,105,
38000,115,0,116,0,
38011,-1,1,5,888,
380220,889,4,30,83,
38030,116,0,97,0, 37030,116,0,97,0,
3804116,0,101,0,109, 3704116,0,101,0,109,
38050,101,0,110,0, 37050,101,0,110,0,
3806116,0,76,0,105, 3706116,0,95,0,49,
38070,115,0,116,0, 37070,1,195,1,3,
37081,8,1,7,836,
370922,1,53,1,2364,
3710837,17,838,15,799,
37111,-1,1,5,839,
371220,840,4,18,70,
37130,111,0,114,0,
371476,0,111,0,111,
37150,112,0,95,0,
371650,0,1,198,1,
37173,1,9,1,8,
3718841,22,1,56,1,
3719102,842,16,0,628,
37201,112,843,16,0,
3721628,1,1117,844,16,
37220,628,1,1873,845,
372317,846,15,833,1,
3724-1,1,5,847,20,
3725848,4,36,68,0,
3726111,0,87,0,104,
37270,105,0,108,0,
3728101,0,83,0,116,
37290,97,0,116,0,
3730101,0,109,0,101,
37310,110,0,116,0,
380895,0,50,0,1, 373295,0,50,0,1,
3809170,1,3,1,3, 3733196,1,3,1,8,
38101,2,890,22,1, 37341,7,849,22,1,
381128,1,2459,891,17, 373554,1,1876,850,16,
3812892,15,893,4,36, 37360,628,1,124,851,
381337,0,67,0,111, 373716,0,628,1,2136,
38140,109,0,112,0, 3738852,17,853,15,730,
3815111,0,117,0,110, 37391,-1,1,5,854,
38160,100,0,83,0, 374020,855,4,26,73,
37410,102,0,83,0,
3817116,0,97,0,116, 3742116,0,97,0,116,
38180,101,0,109,0, 37430,101,0,109,0,
3819101,0,110,0,116, 3744101,0,110,0,116,
38200,1,-1,1,5, 37450,95,0,52,0,
3821894,20,895,4,38, 37461,192,1,3,1,
382267,0,111,0,109, 37478,1,7,856,22,
38230,112,0,111,0, 37481,50,1,381,857,
3824117,0,110,0,100, 374916,0,628,1,525,
3750858,16,0,628,1,
3751137,859,16,0,628,
37521,1901,860,16,0,
3753628,1,1153,861,16,
37540,628,1,151,862,
375516,0,628,1,1407,
3756863,16,0,628,1,
37571659,864,16,0,628,
37581,2413,865,16,0,
3759628,1,406,866,16,
37600,628,1,1371,867,
376116,0,628,1,166,
3762868,16,0,628,1,
37631622,869,16,0,628,
37641,1931,870,17,871,
376515,872,4,30,37,
37660,87,0,104,0,
3767105,0,108,0,101,
38250,83,0,116,0, 37680,83,0,116,0,
382697,0,116,0,101, 376997,0,116,0,101,
38270,109,0,101,0, 37700,109,0,101,0,
3828110,0,116,0,95, 3771110,0,116,0,1,
38290,50,0,1,168, 3772-1,1,5,873,20,
38301,3,1,4,1, 3773874,4,32,87,0,
38313,896,22,1,26, 3774104,0,105,0,108,
38321,1958,897,16,0, 37750,101,0,83,0,
3833628,1,2462,898,17, 3776116,0,97,0,116,
3834899,15,887,1,-1, 37770,101,0,109,0,
38351,5,900,20,901, 3778101,0,110,0,116,
37790,95,0,49,0,
37801,193,1,3,1,
37816,1,5,875,22,
37821,51,1,1933,876,
378316,0,628,1,431,
3784877,16,0,628,1,
37851585,878,16,0,628,
37861,182,879,16,0,
3787628,1,1189,880,16,
37880,628,1,1443,881,
378916,0,628,1,1695,
3790882,16,0,628,1,
37912198,883,16,0,628,
37921,447,884,16,0,
3793628,1,2458,885,17,
3794886,15,887,4,28,
379537,0,83,0,116,
37960,97,0,116,0,
3797101,0,109,0,101,
37980,110,0,116,0,
379976,0,105,0,115,
38000,116,0,1,-1,
38011,5,888,20,889,
38364,30,83,0,116, 38024,30,83,0,116,
38370,97,0,116,0, 38030,97,0,116,0,
3838101,0,109,0,101, 3804101,0,109,0,101,
38390,110,0,116,0, 38050,110,0,116,0,
384076,0,105,0,115, 380676,0,105,0,115,
38410,116,0,95,0, 38070,116,0,95,0,
384249,0,1,169,1, 380850,0,1,170,1,
38433,1,2,1,1,
3844902,22,1,27,1,
38451657,903,17,904,15,
3846737,1,-1,1,5,
3847905,20,906,4,22,
384883,0,116,0,97,
38490,116,0,101,0,
3850109,0,101,0,110,
38510,116,0,95,0,
385250,0,1,173,1,
38533,1,3,1,2, 38093,1,3,1,2,
3854907,22,1,31,1, 3810890,22,1,28,1,
38552464,908,17,909,15, 38112459,891,17,892,15,
3856893,1,-1,1,5, 3812893,4,36,37,0,
3857910,20,911,4,38,
385867,0,111,0,109, 381367,0,111,0,109,
38590,112,0,111,0, 38140,112,0,111,0,
3860117,0,110,0,100, 3815117,0,110,0,100,
38610,83,0,116,0, 38160,83,0,116,0,
386297,0,116,0,101, 381797,0,116,0,101,
38630,109,0,101,0, 38180,109,0,101,0,
3864110,0,116,0,95, 3819110,0,116,0,1,
38650,49,0,1,167, 3820-1,1,5,894,20,
38661,3,1,3,1, 3821895,4,38,67,0,
38672,912,22,1,25, 3822111,0,109,0,112,
38681,199,913,16,0, 38230,111,0,117,0,
3869628,1,459,914,16, 3824110,0,100,0,83,
38700,628,1,462,915, 38250,116,0,97,0,
387116,0,628,1,217, 3826116,0,101,0,109,
3872916,16,0,628,1, 38270,101,0,110,0,
38732227,917,17,918,15, 3828116,0,95,0,50,
3874872,1,-1,1,5, 38290,1,168,1,3,
3875919,20,920,4,32, 38301,4,1,3,896,
387687,0,104,0,105, 383122,1,26,1,1958,
38770,108,0,101,0, 3832897,16,0,628,1,
38332462,898,17,899,15,
3834887,1,-1,1,5,
3835900,20,901,4,30,
383683,0,116,0,97,
38370,116,0,101,0,
3838109,0,101,0,110,
38390,116,0,76,0,
3840105,0,115,0,116,
38410,95,0,49,0,
38421,169,1,3,1,
38432,1,1,902,22,
38441,27,1,1657,903,
384517,904,15,737,1,
3846-1,1,5,905,20,
3847906,4,22,83,0,
3848116,0,97,0,116,
38490,101,0,109,0,
3850101,0,110,0,116,
38510,95,0,50,0,
38521,173,1,3,1,
38533,1,2,907,22,
38541,31,1,2464,908,
385517,909,15,893,1,
3856-1,1,5,910,20,
3857911,4,38,67,0,
3858111,0,109,0,112,
38590,111,0,117,0,
3860110,0,100,0,83,
38610,116,0,97,0,
3862116,0,101,0,109,
38630,101,0,110,0,
3864116,0,95,0,49,
38650,1,167,1,3,
38661,3,1,2,912,
386722,1,25,1,199,
3868913,16,0,628,1,
3869459,914,16,0,628,
38701,462,915,16,0,
3871628,1,217,916,16,
38720,628,1,2227,917,
387317,918,15,872,1,
3874-1,1,5,919,20,
3875920,4,32,87,0,
3876104,0,105,0,108,
38770,101,0,83,0,
3878116,0,97,0,116,
38790,101,0,109,0,
3880101,0,110,0,116,
38810,95,0,50,0,
38821,194,1,3,1,
38836,1,5,921,22,
38841,52,1,1225,922,
388516,0,628,1,1479,
3886923,16,0,628,1,
38871731,924,16,0,628,
38881,1989,925,17,926,
388915,730,1,-1,1,
38905,927,20,928,4,
389126,73,0,102,0,
387883,0,116,0,97, 389283,0,116,0,97,
38790,116,0,101,0, 38930,116,0,101,0,
3880109,0,101,0,110, 3894109,0,101,0,110,
38810,116,0,95,0, 38950,116,0,95,0,
388250,0,1,194,1, 389649,0,1,189,1,
38833,1,6,1,5, 38973,1,6,1,5,
3884921,22,1,52,1, 3898929,22,1,47,1,
38851225,922,16,0,628, 38991990,930,16,0,628,
38861,1479,923,16,0, 39001,236,931,16,0,
3887628,1,1731,924,16, 3901628,1,2670,932,16,
38880,628,1,1989,925, 39020,628,1,1756,933,
388917,926,15,730,1, 390316,0,628,1,4,
3890-1,1,5,927,20, 3904934,19,193,1,4,
3891928,4,26,73,0, 3905935,5,100,1,256,
3892102,0,83,0,116, 3906936,16,0,548,1,
38930,97,0,116,0, 39071261,937,16,0,548,
3894101,0,109,0,101, 39081,509,938,16,0,
3909548,1,1515,939,16,
39100,548,1,2021,728,
39111,1775,940,16,0,
3912548,1,2029,735,1,
39132030,741,1,2031,746,
39141,2032,751,1,2033,
3915756,1,277,941,16,
39160,548,1,2035,762,
39171,2037,767,1,2039,
3918772,1,32,942,16,
39190,548,1,2041,778,
39201,2293,943,16,0,
3921548,1,2043,784,1,
39222045,789,1,40,944,
392316,0,195,1,41,
3924945,16,0,548,1,
39251297,946,16,0,548,
39261,43,947,16,0,
3927548,1,44,948,16,
39280,195,1,1803,797,
39291,1804,949,16,0,
3930548,1,299,950,16,
39310,548,1,47,951,
393216,0,191,1,52,
3933952,16,0,548,1,
39342318,953,16,0,548,
39351,63,954,16,0,
3936211,1,66,955,16,
39370,209,1,2075,956,
393816,0,548,1,1574,
3939809,1,71,957,16,
39400,548,1,76,958,
394116,0,548,1,1834,
3942959,16,0,548,1,
39432337,960,16,0,548,
39441,79,961,16,0,
3945548,1,1335,962,16,
39460,548,1,322,963,
394716,0,548,1,85,
3948964,16,0,548,1,
394989,965,16,0,548,
39501,346,966,16,0,
3951548,1,97,967,16,
39520,548,1,2106,968,
395316,0,548,1,102,
3954969,16,0,548,1,
39551860,831,1,2364,837,
39561,1114,970,16,0,
3957191,1,112,971,16,
39580,548,1,1117,972,
395916,0,548,1,1873,
3960845,1,1876,973,16,
39610,548,1,124,974,
396216,0,548,1,2136,
3963852,1,381,975,16,
39640,548,1,525,976,
396516,0,548,1,137,
3966977,16,0,548,1,
39671901,978,16,0,548,
39681,1153,979,16,0,
3969548,1,151,980,16,
39700,548,1,1407,981,
397116,0,548,1,1659,
3972982,16,0,548,1,
39732413,983,16,0,548,
39741,406,984,16,0,
3975548,1,1371,985,16,
39760,548,1,2105,824,
39771,166,986,16,0,
3978548,1,1622,987,16,
39790,548,1,1931,870,
39801,1933,988,16,0,
3981548,1,431,989,16,
39820,548,1,1585,990,
398316,0,548,1,182,
3984991,16,0,548,1,
39851189,992,16,0,548,
39861,1443,993,16,0,
3987548,1,1695,994,16,
39880,548,1,2198,995,
398916,0,548,1,447,
3990996,16,0,548,1,
39912458,885,1,2459,891,
39921,1958,997,16,0,
3993548,1,2462,898,1,
39941657,903,1,2464,908,
39951,199,998,16,0,
3996548,1,459,999,16,
39970,548,1,462,1000,
399816,0,548,1,217,
39991001,16,0,548,1,
40002227,917,1,1225,1002,
400116,0,548,1,1479,
40021003,16,0,548,1,
40031731,1004,16,0,548,
40041,1989,925,1,1990,
40051005,16,0,548,1,
4006236,1006,16,0,548,
40071,2670,1007,16,0,
4008548,1,1756,1008,16,
40090,548,1,5,1009,
401019,190,1,5,1010,
40115,100,1,256,1011,
401216,0,544,1,1261,
40131012,16,0,544,1,
4014509,1013,16,0,544,
40151,1515,1014,16,0,
4016544,1,2021,728,1,
40171775,1015,16,0,544,
40181,2029,735,1,2030,
4019741,1,2031,746,1,
40202032,751,1,2033,756,
40211,277,1016,16,0,
4022544,1,2035,762,1,
40232037,767,1,2039,772,
40241,32,1017,16,0,
4025544,1,2041,778,1,
40262293,1018,16,0,544,
40271,2043,784,1,2045,
4028789,1,40,1019,16,
40290,194,1,41,1020,
403016,0,544,1,1297,
40311021,16,0,544,1,
403243,1022,16,0,544,
40331,44,1023,16,0,
4034194,1,1803,797,1,
40351804,1024,16,0,544,
40361,299,1025,16,0,
4037544,1,47,1026,16,
40380,188,1,52,1027,
403916,0,544,1,2318,
40401028,16,0,544,1,
404163,1029,16,0,210,
40421,66,1030,16,0,
4043208,1,2075,1031,16,
40440,544,1,1574,809,
40451,71,1032,16,0,
4046544,1,76,1033,16,
40470,544,1,1834,1034,
404816,0,544,1,2337,
40491035,16,0,544,1,
405079,1036,16,0,544,
40511,1335,1037,16,0,
4052544,1,322,1038,16,
40530,544,1,85,1039,
405416,0,544,1,89,
40551040,16,0,544,1,
4056346,1041,16,0,544,
40571,97,1042,16,0,
4058544,1,2106,1043,16,
40590,544,1,102,1044,
406016,0,544,1,1860,
4061831,1,2364,837,1,
40621114,1045,16,0,188,
40631,112,1046,16,0,
4064544,1,1117,1047,16,
40650,544,1,1873,845,
40661,1876,1048,16,0,
4067544,1,124,1049,16,
40680,544,1,2136,852,
40691,381,1050,16,0,
4070544,1,525,1051,16,
40710,544,1,137,1052,
407216,0,544,1,1901,
40731053,16,0,544,1,
40741153,1054,16,0,544,
40751,151,1055,16,0,
4076544,1,1407,1056,16,
40770,544,1,1659,1057,
407816,0,544,1,2413,
40791058,16,0,544,1,
4080406,1059,16,0,544,
40811,1371,1060,16,0,
4082544,1,2105,824,1,
4083166,1061,16,0,544,
40841,1622,1062,16,0,
4085544,1,1931,870,1,
40861933,1063,16,0,544,
40871,431,1064,16,0,
4088544,1,1585,1065,16,
40890,544,1,182,1066,
409016,0,544,1,1189,
40911067,16,0,544,1,
40921443,1068,16,0,544,
40931,1695,1069,16,0,
4094544,1,2198,1070,16,
40950,544,1,447,1071,
409616,0,544,1,2458,
4097885,1,2459,891,1,
40981958,1072,16,0,544,
40991,2462,898,1,1657,
4100903,1,2464,908,1,
4101199,1073,16,0,544,
41021,459,1074,16,0,
4103544,1,462,1075,16,
41040,544,1,217,1076,
410516,0,544,1,2227,
4106917,1,1225,1077,16,
41070,544,1,1479,1078,
410816,0,544,1,1731,
41091079,16,0,544,1,
41101989,925,1,1990,1080,
411116,0,544,1,236,
41121081,16,0,544,1,
41132670,1082,16,0,544,
41141,1756,1083,16,0,
4115544,1,6,1084,19,
4116286,1,6,1085,5,
41172,1,1114,1086,16,
41180,284,1,40,1087,
411916,0,533,1,7,
41201088,19,253,1,7,
41211089,5,2,1,1114,
41221090,16,0,251,1,
412340,1091,16,0,473,
41241,8,1092,19,217,
41251,8,1093,5,2,
41261,1114,1094,16,0,
4127215,1,40,1095,16,
41280,450,1,9,1096,
412919,223,1,9,1097,
41305,2,1,1114,1098,
413116,0,221,1,40,
41321099,16,0,392,1,
413310,1100,19,173,1,
413410,1101,5,2,1,
41351114,1102,16,0,171,
41361,40,1103,16,0,
4137332,1,11,1104,19,
4138202,1,11,1105,5,
4139146,1,1260,1106,17,
41401107,15,1108,4,34,
414137,0,83,0,105,
41420,109,0,112,0,
4143108,0,101,0,65,
41440,115,0,115,0,
4145105,0,103,0,110,
41460,109,0,101,0,
4147110,0,116,0,1,
4148-1,1,5,1109,20,
41491110,4,38,83,0,
4150105,0,109,0,112,
41510,108,0,101,0,
415265,0,115,0,115,
41530,105,0,103,0,
4154110,0,109,0,101,
38950,110,0,116,0, 41550,110,0,116,0,
389695,0,49,0,1, 415695,0,50,0,49,
3897189,1,3,1,6, 41570,1,225,1,3,
38981,5,929,22,1, 41581,6,1,5,1111,
389947,1,1990,930,16, 415922,1,83,1,1011,
39000,628,1,236,931, 41601112,17,1113,15,1114,
390116,0,628,1,2670, 41614,44,37,0,80,
3902932,16,0,628,1, 41620,97,0,114,0,
39031756,933,16,0,628, 4163101,0,110,0,116,
39041,4,934,19,193, 41640,104,0,101,0,
39051,4,935,5,100, 4165115,0,105,0,115,
39061,256,936,16,0, 41660,69,0,120,0,
3907548,1,1261,937,16, 4167112,0,114,0,101,
39080,548,1,509,938, 41680,115,0,115,0,
390916,0,548,1,1515, 4169105,0,111,0,110,
3910939,16,0,548,1, 41700,1,-1,1,5,
39112021,728,1,1775,940, 41711115,20,1116,4,46,
391216,0,548,1,2029, 417280,0,97,0,114,
3913735,1,2030,741,1, 41730,101,0,110,0,
39142031,746,1,2032,751, 4174116,0,104,0,101,
39151,2033,756,1,277, 41750,115,0,105,0,
3916941,16,0,548,1, 4176115,0,69,0,120,
39172035,762,1,2037,767, 41770,112,0,114,0,
39181,2039,772,1,32, 4178101,0,115,0,115,
3919942,16,0,548,1, 41790,105,0,111,0,
39202041,778,1,2293,943, 4180110,0,95,0,50,
392116,0,548,1,2043, 41810,1,272,1,3,
3922784,1,2045,789,1, 41821,4,1,3,1117,
392340,944,16,0,195, 418322,1,130,1,1514,
39241,41,945,16,0, 41841118,17,1119,15,1108,
3925548,1,1297,946,16, 41851,-1,1,5,1120,
39260,548,1,43,947, 418620,1121,4,38,83,
392716,0,548,1,44,
3928948,16,0,195,1,
39291803,797,1,1804,949,
393016,0,548,1,299,
3931950,16,0,548,1,
393247,951,16,0,191,
39331,52,952,16,0,
3934548,1,2318,953,16,
39350,548,1,63,954,
393616,0,211,1,66,
3937955,16,0,209,1,
39382075,956,16,0,548,
39391,1574,809,1,71,
3940957,16,0,548,1,
394176,958,16,0,548,
39421,1834,959,16,0,
3943548,1,2337,960,16,
39440,548,1,79,961,
394516,0,548,1,1335,
3946962,16,0,548,1,
3947322,963,16,0,548,
39481,85,964,16,0,
3949548,1,89,965,16,
39500,548,1,346,966,
395116,0,548,1,97,
3952967,16,0,548,1,
39532106,968,16,0,548,
39541,102,969,16,0,
3955548,1,1860,831,1,
39562364,837,1,1114,970,
395716,0,191,1,112,
3958971,16,0,548,1,
39591117,972,16,0,548,
39601,1873,845,1,1876,
3961973,16,0,548,1,
3962124,974,16,0,548,
39631,2136,852,1,381,
3964975,16,0,548,1,
3965525,976,16,0,548,
39661,137,977,16,0,
3967548,1,1901,978,16,
39680,548,1,1153,979,
396916,0,548,1,151,
3970980,16,0,548,1,
39711407,981,16,0,548,
39721,1659,982,16,0,
3973548,1,2413,983,16,
39740,548,1,406,984,
397516,0,548,1,1371,
3976985,16,0,548,1,
39772105,824,1,166,986,
397816,0,548,1,1622,
3979987,16,0,548,1,
39801931,870,1,1933,988,
398116,0,548,1,431,
3982989,16,0,548,1,
39831585,990,16,0,548,
39841,182,991,16,0,
3985548,1,1189,992,16,
39860,548,1,1443,993,
398716,0,548,1,1695,
3988994,16,0,548,1,
39892198,995,16,0,548,
39901,447,996,16,0,
3991548,1,2458,885,1,
39922459,891,1,1958,997,
399316,0,548,1,2462,
3994898,1,1657,903,1,
39952464,908,1,199,998,
399616,0,548,1,459,
3997999,16,0,548,1,
3998462,1000,16,0,548,
39991,217,1001,16,0,
4000548,1,2227,917,1,
40011225,1002,16,0,548,
40021,1479,1003,16,0,
4003548,1,1731,1004,16,
40040,548,1,1989,925,
40051,1990,1005,16,0,
4006548,1,236,1006,16,
40070,548,1,2670,1007,
400816,0,548,1,1756,
40091008,16,0,548,1,
40105,1009,19,190,1,
40115,1010,5,100,1,
4012256,1011,16,0,544,
40131,1261,1012,16,0,
4014544,1,509,1013,16,
40150,544,1,1515,1014,
401616,0,544,1,2021,
4017728,1,1775,1015,16,
40180,544,1,2029,735,
40191,2030,741,1,2031,
4020746,1,2032,751,1,
40212033,756,1,277,1016,
402216,0,544,1,2035,
4023762,1,2037,767,1,
40242039,772,1,32,1017,
402516,0,544,1,2041,
4026778,1,2293,1018,16,
40270,544,1,2043,784,
40281,2045,789,1,40,
40291019,16,0,194,1,
403041,1020,16,0,544,
40311,1297,1021,16,0,
4032544,1,43,1022,16,
40330,544,1,44,1023,
403416,0,194,1,1803,
4035797,1,1804,1024,16,
40360,544,1,299,1025,
403716,0,544,1,47,
40381026,16,0,188,1,
403952,1027,16,0,544,
40401,2318,1028,16,0,
4041544,1,63,1029,16,
40420,210,1,66,1030,
404316,0,208,1,2075,
40441031,16,0,544,1,
40451574,809,1,71,1032,
404616,0,544,1,76,
40471033,16,0,544,1,
40481834,1034,16,0,544,
40491,2337,1035,16,0,
4050544,1,79,1036,16,
40510,544,1,1335,1037,
405216,0,544,1,322,
40531038,16,0,544,1,
405485,1039,16,0,544,
40551,89,1040,16,0,
4056544,1,346,1041,16,
40570,544,1,97,1042,
405816,0,544,1,2106,
40591043,16,0,544,1,
4060102,1044,16,0,544,
40611,1860,831,1,2364,
4062837,1,1114,1045,16,
40630,188,1,112,1046,
406416,0,544,1,1117,
40651047,16,0,544,1,
40661873,845,1,1876,1048,
406716,0,544,1,124,
40681049,16,0,544,1,
40692136,852,1,381,1050,
407016,0,544,1,525,
40711051,16,0,544,1,
4072137,1052,16,0,544,
40731,1901,1053,16,0,
4074544,1,1153,1054,16,
40750,544,1,151,1055,
407616,0,544,1,1407,
40771056,16,0,544,1,
40781659,1057,16,0,544,
40791,2413,1058,16,0,
4080544,1,406,1059,16,
40810,544,1,1371,1060,
408216,0,544,1,2105,
4083824,1,166,1061,16,
40840,544,1,1622,1062,
408516,0,544,1,1931,
4086870,1,1933,1063,16,
40870,544,1,431,1064,
408816,0,544,1,1585,
40891065,16,0,544,1,
4090182,1066,16,0,544,
40911,1189,1067,16,0,
4092544,1,1443,1068,16,
40930,544,1,1695,1069,
409416,0,544,1,2198,
40951070,16,0,544,1,
4096447,1071,16,0,544,
40971,2458,885,1,2459,
4098891,1,1958,1072,16,
40990,544,1,2462,898,
41001,1657,903,1,2464,
4101908,1,199,1073,16,
41020,544,1,459,1074,
410316,0,544,1,462,
41041075,16,0,544,1,
4105217,1076,16,0,544,
41061,2227,917,1,1225,
41071077,16,0,544,1,
41081479,1078,16,0,544,
41091,1731,1079,16,0,
4110544,1,1989,925,1,
41111990,1080,16,0,544,
41121,236,1081,16,0,
4113544,1,2670,1082,16,
41140,544,1,1756,1083,
411516,0,544,1,6,
41161084,19,286,1,6,
41171085,5,2,1,1114,
41181086,16,0,284,1,
411940,1087,16,0,533,
41201,7,1088,19,253,
41211,7,1089,5,2,
41221,1114,1090,16,0,
4123251,1,40,1091,16,
41240,473,1,8,1092,
412519,217,1,8,1093,
41265,2,1,1114,1094,
412716,0,215,1,40,
41281095,16,0,450,1,
41299,1096,19,223,1,
41309,1097,5,2,1,
41311114,1098,16,0,221,
41321,40,1099,16,0,
4133392,1,10,1100,19,
4134173,1,10,1101,5,
41352,1,1114,1102,16,
41360,171,1,40,1103,
413716,0,332,1,11,
41381104,19,202,1,11,
41391105,5,146,1,1260,
41401106,17,1107,15,1108,
41414,34,37,0,83,
41420,105,0,109,0, 41870,105,0,109,0,
4143112,0,108,0,101, 4188112,0,108,0,101,
41440,65,0,115,0, 41890,65,0,115,0,
4145115,0,105,0,103, 4190115,0,105,0,103,
41460,110,0,109,0, 41910,110,0,109,0,
4147101,0,110,0,116, 4192101,0,110,0,116,
41480,1,-1,1,5, 41930,95,0,49,0,
41491109,20,1110,4,38, 419452,0,1,218,1,
41953,1,4,1,3,
41961122,22,1,76,1,
41979,1123,17,1124,15,
41981125,4,24,37,0,
419968,0,101,0,99,
42000,108,0,97,0,
4201114,0,97,0,116,
42020,105,0,111,0,
4203110,0,1,-1,1,
42045,1126,20,1127,4,
420526,68,0,101,0,
420699,0,108,0,97,
42070,114,0,97,0,
4208116,0,105,0,111,
42090,110,0,95,0,
421049,0,1,166,1,
42113,1,3,1,2,
42121128,22,1,24,1,
4213262,1129,17,1130,15,
42141131,4,34,37,0,
421566,0,105,0,110,
42160,97,0,114,0,
4217121,0,69,0,120,
42180,112,0,114,0,
4219101,0,115,0,115,
42200,105,0,111,0,
4221110,0,1,-1,1,
42225,1132,20,1133,4,
422336,66,0,105,0,
4224110,0,97,0,114,
42250,121,0,69,0,
4226120,0,112,0,114,
42270,101,0,115,0,
4228115,0,105,0,111,
42290,110,0,95,0,
423053,0,1,254,1,
42313,1,4,1,3,
42321134,22,1,112,1,
42331267,1135,17,1136,15,
42341108,1,-1,1,5,
42351137,20,1138,4,36,
415083,0,105,0,109, 423683,0,105,0,109,
41510,112,0,108,0, 42370,112,0,108,0,
4152101,0,65,0,115, 4238101,0,65,0,115,
41530,115,0,105,0, 42390,115,0,105,0,
4154103,0,110,0,109, 4240103,0,110,0,109,
41550,101,0,110,0, 42410,101,0,110,0,
4156116,0,95,0,50, 4242116,0,95,0,56,
41570,49,0,1,225, 42430,1,212,1,3,
41581,3,1,6,1, 42441,6,1,5,1139,
41595,1111,22,1,83, 424522,1,70,1,2021,
41601,1011,1112,17,1113, 4246728,1,1521,1140,17,
416115,1114,4,44,37, 42471141,15,1108,1,-1,
41620,80,0,97,0, 42481,5,1142,20,1143,
4163114,0,101,0,110,
41640,116,0,104,0,
4165101,0,115,0,105,
41660,115,0,69,0,
4167120,0,112,0,114,
41680,101,0,115,0,
4169115,0,105,0,111,
41700,110,0,1,-1,
41711,5,1115,20,1116,
41724,46,80,0,97,
41730,114,0,101,0,
4174110,0,116,0,104,
41750,101,0,115,0,
4176105,0,115,0,69,
41770,120,0,112,0,
4178114,0,101,0,115,
41790,115,0,105,0,
4180111,0,110,0,95,
41810,50,0,1,272,
41821,3,1,4,1,
41833,1117,22,1,130,
41841,1514,1118,17,1119,
418515,1108,1,-1,1,
41865,1120,20,1121,4,
418738,83,0,105,0,
4188109,0,112,0,108,
41890,101,0,65,0,
4190115,0,115,0,105,
41910,103,0,110,0,
4192109,0,101,0,110,
41930,116,0,95,0,
419449,0,52,0,1,
4195218,1,3,1,4,
41961,3,1122,22,1,
419776,1,9,1123,17,
41981124,15,1125,4,24,
419937,0,68,0,101,
42000,99,0,108,0,
420197,0,114,0,97,
42020,116,0,105,0,
4203111,0,110,0,1,
4204-1,1,5,1126,20,
42051127,4,26,68,0,
4206101,0,99,0,108,
42070,97,0,114,0,
420897,0,116,0,105,
42090,111,0,110,0,
421095,0,49,0,1,
4211166,1,3,1,3,
42121,2,1128,22,1,
421324,1,262,1129,17,
42141130,15,1131,4,34,
421537,0,66,0,105,
42160,110,0,97,0,
4217114,0,121,0,69,
42180,120,0,112,0,
4219114,0,101,0,115,
42200,115,0,105,0,
4221111,0,110,0,1,
4222-1,1,5,1132,20,
42231133,4,36,66,0,
4224105,0,110,0,97,
42250,114,0,121,0,
422669,0,120,0,112,
42270,114,0,101,0,
4228115,0,115,0,105,
42290,111,0,110,0,
423095,0,53,0,1,
4231254,1,3,1,4,
42321,3,1134,22,1,
4233112,1,1267,1135,17,
42341136,15,1108,1,-1,
42351,5,1137,20,1138,
42364,36,83,0,105, 42494,36,83,0,105,
42370,109,0,112,0, 42500,109,0,112,0,
4238108,0,101,0,65, 4251108,0,101,0,65,
@@ -4240,209 +4253,178 @@ public yyLSLSyntax
4240105,0,103,0,110, 4253105,0,103,0,110,
42410,109,0,101,0, 42540,109,0,101,0,
4242110,0,116,0,95, 4255110,0,116,0,95,
42430,56,0,1,212, 42560,49,0,1,205,
42441,3,1,6,1, 42571,3,1,4,1,
42455,1139,22,1,70, 42583,1144,22,1,63,
42461,2021,728,1,1521, 42591,2024,1145,17,1146,
42471140,17,1141,15,1108, 426015,1147,4,24,37,
42481,-1,1,5,1142, 42610,83,0,116,0,
424920,1143,4,36,83, 426297,0,116,0,101,
42500,105,0,109,0, 42630,67,0,104,0,
4251112,0,108,0,101, 426497,0,110,0,103,
42520,65,0,115,0, 42650,101,0,1,-1,
4253115,0,105,0,103, 42661,5,1148,20,1149,
42540,110,0,109,0, 42674,26,83,0,116,
4255101,0,110,0,116, 42680,97,0,116,0,
42560,95,0,49,0, 4269101,0,67,0,104,
42571,205,1,3,1, 42700,97,0,110,0,
42584,1,3,1144,22, 4271103,0,101,0,95,
42591,63,1,2024,1145, 42720,49,0,1,187,
426017,1146,15,1147,4, 42731,3,1,3,1,
426124,37,0,83,0, 42742,1150,22,1,45,
4262116,0,97,0,116, 42751,1775,1151,17,1152,
42630,101,0,67,0, 427615,1153,4,30,37,
4264104,0,97,0,110, 42770,69,0,109,0,
42650,103,0,101,0, 4278112,0,116,0,121,
42661,-1,1,5,1148, 42790,83,0,116,0,
426720,1149,4,26,83, 428097,0,116,0,101,
42680,116,0,97,0, 42810,109,0,101,0,
4269116,0,101,0,67, 4282110,0,116,0,1,
42700,104,0,97,0, 4283-1,1,5,1154,20,
4271110,0,103,0,101, 42841155,4,32,69,0,
42720,95,0,49,0,
42731,187,1,3,1,
42743,1,2,1150,22,
42751,45,1,1775,1151,
427617,1152,15,1153,4,
427730,37,0,69,0,
4278109,0,112,0,116, 4285109,0,112,0,116,
42790,121,0,83,0, 42860,121,0,83,0,
4280116,0,97,0,116, 4287116,0,97,0,116,
42810,101,0,109,0, 42880,101,0,109,0,
4282101,0,110,0,116, 4289101,0,110,0,116,
42830,1,-1,1,5, 42900,95,0,49,0,
42841154,20,1155,4,32, 42911,171,1,3,1,
428569,0,109,0,112, 42921,1,0,1156,22,
42860,116,0,121,0, 42931,29,1,19,1157,
428783,0,116,0,97, 429417,1124,1,2,1128,
42880,116,0,101,0, 42951,2028,1158,17,1159,
4289109,0,101,0,110, 429615,1160,4,20,37,
42900,116,0,95,0, 42970,74,0,117,0,
429149,0,1,171,1, 4298109,0,112,0,76,
42923,1,1,1,0, 42990,97,0,98,0,
42931156,22,1,29,1, 4300101,0,108,0,1,
429419,1157,17,1124,1, 4301-1,1,5,1161,20,
42952,1128,1,2028,1158, 43021162,4,22,74,0,
429617,1159,15,1160,4,
429720,37,0,74,0,
4298117,0,109,0,112, 4303117,0,109,0,112,
42990,76,0,97,0, 43040,76,0,97,0,
430098,0,101,0,108, 430598,0,101,0,108,
43010,1,-1,1,5, 43060,95,0,49,0,
43021161,20,1162,4,22, 43071,185,1,3,1,
430374,0,117,0,109, 43083,1,2,1163,22,
43040,112,0,76,0, 43091,43,1,2029,735,
430597,0,98,0,101, 43101,2281,1164,17,1165,
43060,108,0,95,0, 431115,1166,4,34,37,
430749,0,1,185,1, 43120,70,0,111,0,
43083,1,3,1,2, 4313114,0,76,0,111,
43091163,22,1,43,1, 43140,111,0,112,0,
43102029,735,1,2281,1164, 431583,0,116,0,97,
431117,1165,15,1166,4, 43160,116,0,101,0,
431234,37,0,70,0, 4317109,0,101,0,110,
4313111,0,114,0,76, 43180,116,0,1,-1,
43140,111,0,111,0, 43191,5,1167,20,1168,
4315112,0,83,0,116, 43204,36,70,0,111,
43160,97,0,116,0, 43210,114,0,76,0,
4317101,0,109,0,101, 4322111,0,111,0,112,
43180,110,0,116,0, 43230,83,0,116,0,
43191,-1,1,5,1167, 432497,0,116,0,101,
432020,1168,4,36,70, 43250,109,0,101,0,
43210,111,0,114,0, 4326110,0,116,0,95,
432276,0,111,0,111, 43270,50,0,1,200,
43230,112,0,83,0, 43281,3,1,2,1,
4324116,0,97,0,116, 43291,1169,22,1,58,
43250,101,0,109,0, 43301,2031,746,1,2032,
4326101,0,110,0,116, 4331751,1,2033,756,1,
43270,95,0,50,0, 43322034,1170,16,0,587,
43281,200,1,3,1, 43331,2035,762,1,2036,
43292,1,1,1169,22, 43341171,16,0,534,1,
43301,58,1,2031,746, 43352037,767,1,2038,1172,
43311,2032,751,1,2033, 433616,0,538,1,2039,
4332756,1,2034,1170,16, 4337772,1,32,1173,17,
43330,587,1,2035,762, 43381152,1,0,1156,1,
43341,2036,1171,16,0, 43392041,778,1,2042,1174,
4335534,1,2037,767,1, 434016,0,655,1,2043,
43362038,1172,16,0,538, 4341784,1,2044,1175,16,
43371,2039,772,1,32, 43420,599,1,2045,789,
43381173,17,1152,1,0, 43431,2299,1176,16,0,
43391156,1,2041,778,1, 4344236,1,1296,1177,17,
43402042,1174,16,0,655, 43451178,15,1108,1,-1,
43411,2043,784,1,2044, 43461,5,1179,20,1180,
43421175,16,0,599,1, 43474,38,83,0,105,
43432045,789,1,2299,1176, 43480,109,0,112,0,
434416,0,236,1,1296, 4349108,0,101,0,65,
43451177,17,1178,15,1108, 43500,115,0,115,0,
43461,-1,1,5,1179, 4351105,0,103,0,110,
434720,1180,4,38,83, 43520,109,0,101,0,
43480,105,0,109,0, 4353110,0,116,0,95,
4349112,0,108,0,101, 43540,50,0,48,0,
43500,65,0,115,0, 43551,224,1,3,1,
4351115,0,105,0,103, 43566,1,5,1181,22,
43520,110,0,109,0, 43571,82,1,283,1182,
4353101,0,110,0,116, 435817,1183,15,1131,1,
43540,95,0,50,0, 4359-1,1,5,1184,20,
435548,0,1,224,1, 43601185,4,36,66,0,
43563,1,6,1,5, 4361105,0,110,0,97,
43571181,22,1,82,1, 43620,114,0,121,0,
4358283,1182,17,1183,15, 436369,0,120,0,112,
43591131,1,-1,1,5, 43640,114,0,101,0,
43601184,20,1185,4,36, 4365115,0,115,0,105,
436166,0,105,0,110, 43660,111,0,110,0,
43620,97,0,114,0, 436795,0,52,0,1,
4363121,0,69,0,120, 4368253,1,3,1,4,
43640,112,0,114,0, 43691,3,1186,22,1,
4365101,0,115,0,115, 4370111,1,40,1187,17,
43660,105,0,111,0, 43711188,15,1189,4,32,
4367110,0,95,0,52, 437237,0,73,0,100,
43680,1,253,1,3, 43730,101,0,110,0,
43691,4,1,3,1186,
437022,1,111,1,40,
43711187,17,1188,15,1189,
43724,32,37,0,73,
43730,100,0,101,0,
4374110,0,116,0,69,
43750,120,0,112,0,
4376114,0,101,0,115,
43770,115,0,105,0,
4378111,0,110,0,1,
4379-1,1,5,1190,20,
43801191,4,34,73,0,
4381100,0,101,0,110,
43820,116,0,69,0,
4383120,0,112,0,114,
43840,101,0,115,0,
4385115,0,105,0,111,
43860,110,0,95,0,
438749,0,1,239,1,
43883,1,2,1,1,
43891192,22,1,97,1,
439044,1193,17,1188,1,
43911,1192,1,1803,797,
43921,47,1194,17,1195,
439315,1196,4,38,37,
43940,73,0,100,0,
4395101,0,110,0,116,
43960,68,0,111,0,
4397116,0,69,0,120, 4374116,0,69,0,120,
43980,112,0,114,0, 43750,112,0,114,0,
4399101,0,115,0,115, 4376101,0,115,0,115,
44000,105,0,111,0, 43770,105,0,111,0,
4401110,0,1,-1,1, 4378110,0,1,-1,1,
44025,1197,20,1198,4, 43795,1190,20,1191,4,
440340,73,0,100,0, 438034,73,0,100,0,
4404101,0,110,0,116, 4381101,0,110,0,116,
44050,68,0,111,0, 43820,69,0,120,0,
4406116,0,69,0,120, 4383112,0,114,0,101,
44070,112,0,114,0, 43840,115,0,115,0,
4408101,0,115,0,115, 4385105,0,111,0,110,
44090,105,0,111,0, 43860,95,0,49,0,
4410110,0,95,0,49, 43871,239,1,3,1,
44110,1,240,1,3, 43882,1,1,1192,22,
44121,4,1,3,1199, 43891,97,1,44,1193,
441322,1,98,1,48, 439017,1188,1,1,1192,
44141200,17,1201,15,1202, 43911,1803,797,1,47,
44154,58,37,0,73, 43921194,17,1195,15,1196,
44160,110,0,99,0, 43934,38,37,0,73,
4417114,0,101,0,109, 43940,100,0,101,0,
44180,101,0,110,0, 4395110,0,116,0,68,
4419116,0,68,0,101, 43960,111,0,116,0,
44200,99,0,114,0,
4421101,0,109,0,101,
44220,110,0,116,0,
442369,0,120,0,112, 439769,0,120,0,112,
44240,114,0,101,0, 43980,114,0,101,0,
4425115,0,115,0,105, 4399115,0,115,0,105,
44260,111,0,110,0, 44000,111,0,110,0,
44271,-1,1,5,1203, 44011,-1,1,5,1197,
442820,1204,4,60,73, 440220,1198,4,40,73,
44290,110,0,99,0, 44030,100,0,101,0,
4430114,0,101,0,109, 4404110,0,116,0,68,
44310,101,0,110,0, 44050,111,0,116,0,
4432116,0,68,0,101,
44330,99,0,114,0,
4434101,0,109,0,101,
44350,110,0,116,0,
443669,0,120,0,112, 440669,0,120,0,112,
44370,114,0,101,0, 44070,114,0,101,0,
4438115,0,115,0,105, 4408115,0,115,0,105,
44390,111,0,110,0, 44090,111,0,110,0,
444095,0,52,0,1, 441095,0,49,0,1,
4441244,1,3,1,5, 4411240,1,3,1,4,
44421,4,1205,22,1, 44121,3,1199,22,1,
4443102,1,49,1206,17, 441398,1,48,1200,17,
44441207,15,1202,1,-1, 44141201,15,1202,4,58,
44451,5,1208,20,1209, 441537,0,73,0,110,
44160,99,0,114,0,
4417101,0,109,0,101,
44180,110,0,116,0,
441968,0,101,0,99,
44200,114,0,101,0,
4421109,0,101,0,110,
44220,116,0,69,0,
4423120,0,112,0,114,
44240,101,0,115,0,
4425115,0,105,0,111,
44260,110,0,1,-1,
44271,5,1203,20,1204,
44464,60,73,0,110, 44284,60,73,0,110,
44470,99,0,114,0, 44290,99,0,114,0,
4448101,0,109,0,101, 4430101,0,109,0,101,
@@ -4455,12 +4437,12 @@ public yyLSLSyntax
44550,101,0,115,0, 44370,101,0,115,0,
4456115,0,105,0,111, 4438115,0,105,0,111,
44570,110,0,95,0, 44390,110,0,95,0,
445851,0,1,243,1, 444052,0,1,244,1,
44593,1,5,1,4, 44413,1,5,1,4,
44601210,22,1,101,1, 44421205,22,1,102,1,
446150,1211,17,1212,15, 444349,1206,17,1207,15,
44621202,1,-1,1,5, 44441202,1,-1,1,5,
44631213,20,1214,4,60, 44451208,20,1209,4,60,
446473,0,110,0,99, 444673,0,110,0,99,
44650,114,0,101,0, 44470,114,0,101,0,
4466109,0,101,0,110, 4448109,0,101,0,110,
@@ -4472,13 +4454,13 @@ public yyLSLSyntax
4472112,0,114,0,101, 4454112,0,114,0,101,
44730,115,0,115,0, 44550,115,0,115,0,
4474105,0,111,0,110, 4456105,0,111,0,110,
44750,95,0,50,0, 44570,95,0,51,0,
44761,242,1,3,1, 44581,243,1,3,1,
44773,1,2,1215,22, 44595,1,4,1210,22,
44781,100,1,51,1216, 44601,101,1,50,1211,
447917,1217,15,1202,1, 446117,1212,15,1202,1,
4480-1,1,5,1218,20, 4462-1,1,5,1213,20,
44811219,4,60,73,0, 44631214,4,60,73,0,
4482110,0,99,0,114, 4464110,0,99,0,114,
44830,101,0,109,0, 44650,101,0,109,0,
4484101,0,110,0,116, 4466101,0,110,0,116,
@@ -4490,67 +4472,71 @@ public yyLSLSyntax
4490114,0,101,0,115, 4472114,0,101,0,115,
44910,115,0,105,0, 44730,115,0,105,0,
4492111,0,110,0,95, 4474111,0,110,0,95,
44930,49,0,1,241, 44750,50,0,1,242,
44941,3,1,3,1, 44761,3,1,3,1,
44952,1220,22,1,99, 44772,1215,22,1,100,
44961,305,1221,17,1222, 44781,51,1216,17,1217,
449715,1131,1,-1,1, 447915,1202,1,-1,1,
44985,1223,20,1224,4, 44805,1218,20,1219,4,
449936,66,0,105,0, 448160,73,0,110,0,
4500110,0,97,0,114, 448299,0,114,0,101,
45010,121,0,69,0, 44830,109,0,101,0,
4502120,0,112,0,114, 4484110,0,116,0,68,
45030,101,0,115,0,
4504115,0,105,0,111,
45050,110,0,95,0,
450651,0,1,252,1,
45073,1,4,1,3,
45081225,22,1,110,1,
4509525,1226,17,1227,15,
45101228,4,34,37,0,
451182,0,111,0,116,
45120,97,0,116,0,
4513105,0,111,0,110,
45140,67,0,111,0,
4515110,0,115,0,116,
45160,97,0,110,0,
4517116,0,1,-1,1,
45185,1229,20,1230,4,
451936,82,0,111,0,
4520116,0,97,0,116,
45210,105,0,111,0,
4522110,0,67,0,111,
45230,110,0,115,0,
4524116,0,97,0,110,
45250,116,0,95,0,
452649,0,1,237,1,
45273,1,10,1,9,
45281231,22,1,95,1,
452963,1232,17,1233,15,
45301234,4,38,37,0,
453184,0,121,0,112,
45320,101,0,99,0,
453397,0,115,0,116,
45340,69,0,120,0,
4535112,0,114,0,101,
45360,115,0,115,0,
4537105,0,111,0,110,
45380,1,-1,1,5,
45391235,20,1236,4,40,
454084,0,121,0,112,
45410,101,0,99,0, 44850,101,0,99,0,
454297,0,115,0,116, 4486114,0,101,0,109,
44870,101,0,110,0,
4488116,0,69,0,120,
44890,112,0,114,0,
4490101,0,115,0,115,
44910,105,0,111,0,
4492110,0,95,0,49,
44930,1,241,1,3,
44941,3,1,2,1220,
449522,1,99,1,305,
44961221,17,1222,15,1131,
44971,-1,1,5,1223,
449820,1224,4,36,66,
44990,105,0,110,0,
450097,0,114,0,121,
45430,69,0,120,0, 45010,69,0,120,0,
4544112,0,114,0,101, 4502112,0,114,0,101,
45450,115,0,115,0, 45030,115,0,115,0,
4546105,0,111,0,110, 4504105,0,111,0,110,
45470,95,0,50,0, 45050,95,0,51,0,
45481,274,1,3,1, 45061,252,1,3,1,
45495,1,4,1237,22, 45074,1,3,1225,22,
45501,132,1,66,1238, 45081,110,1,525,1226,
455117,1239,15,1234,1, 450917,1227,15,1228,4,
4552-1,1,5,1240,20, 451034,37,0,82,0,
45531241,4,40,84,0, 4511111,0,116,0,97,
45120,116,0,105,0,
4513111,0,110,0,67,
45140,111,0,110,0,
4515115,0,116,0,97,
45160,110,0,116,0,
45171,-1,1,5,1229,
451820,1230,4,36,82,
45190,111,0,116,0,
452097,0,116,0,105,
45210,111,0,110,0,
452267,0,111,0,110,
45230,115,0,116,0,
452497,0,110,0,116,
45250,95,0,49,0,
45261,237,1,3,1,
452710,1,9,1231,22,
45281,95,1,63,1232,
452917,1233,15,1234,4,
453038,37,0,84,0,
4531121,0,112,0,101,
45320,99,0,97,0,
4533115,0,116,0,69,
45340,120,0,112,0,
4535114,0,101,0,115,
45360,115,0,105,0,
4537111,0,110,0,1,
4538-1,1,5,1235,20,
45391236,4,40,84,0,
4554121,0,112,0,101, 4540121,0,112,0,101,
45550,99,0,97,0, 45410,99,0,97,0,
4556115,0,116,0,69, 4542115,0,116,0,69,
@@ -4558,12 +4544,12 @@ public yyLSLSyntax
4558114,0,101,0,115, 4544114,0,101,0,115,
45590,115,0,105,0, 45450,115,0,105,0,
4560111,0,110,0,95, 4546111,0,110,0,95,
45610,51,0,1,275, 45470,50,0,1,274,
45621,3,1,7,1, 45481,3,1,5,1,
45636,1242,22,1,133, 45494,1237,22,1,132,
45641,67,1243,17,1244, 45501,66,1238,17,1239,
456515,1234,1,-1,1, 455115,1234,1,-1,1,
45665,1245,20,1246,4, 45525,1240,20,1241,4,
456740,84,0,121,0, 455340,84,0,121,0,
4568112,0,101,0,99, 4554112,0,101,0,99,
45690,97,0,115,0, 45550,97,0,115,0,
@@ -4571,13 +4557,13 @@ public yyLSLSyntax
45710,112,0,114,0, 45570,112,0,114,0,
4572101,0,115,0,115, 4558101,0,115,0,115,
45730,105,0,111,0, 45590,105,0,111,0,
4574110,0,95,0,55, 4560110,0,95,0,51,
45750,1,279,1,3, 45610,1,275,1,3,
45761,8,1,7,1247, 45621,7,1,6,1242,
457722,1,137,1,68, 456322,1,133,1,67,
45781248,17,1249,15,1234, 45641243,17,1244,15,1234,
45791,-1,1,5,1250, 45651,-1,1,5,1245,
458020,1251,4,40,84, 456620,1246,4,40,84,
45810,121,0,112,0, 45670,121,0,112,0,
4582101,0,99,0,97, 4568101,0,99,0,97,
45830,115,0,116,0, 45690,115,0,116,0,
@@ -4585,12 +4571,12 @@ public yyLSLSyntax
45850,114,0,101,0, 45710,114,0,101,0,
4586115,0,115,0,105, 4572115,0,115,0,105,
45870,111,0,110,0, 45730,111,0,110,0,
458895,0,53,0,1, 457495,0,55,0,1,
4589277,1,3,1,8, 4575279,1,3,1,8,
45901,7,1252,22,1, 45761,7,1247,22,1,
4591135,1,69,1253,17, 4577137,1,68,1248,17,
45921254,15,1234,1,-1, 45781249,15,1234,1,-1,
45931,5,1255,20,1256, 45791,5,1250,20,1251,
45944,40,84,0,121, 45804,40,84,0,121,
45950,112,0,101,0, 45810,112,0,101,0,
459699,0,97,0,115, 458299,0,97,0,115,
@@ -4599,12 +4585,12 @@ public yyLSLSyntax
45990,101,0,115,0, 45850,101,0,115,0,
4600115,0,105,0,111, 4586115,0,105,0,111,
46010,110,0,95,0, 45870,110,0,95,0,
460254,0,1,278,1, 458853,0,1,277,1,
46033,1,6,1,5, 45893,1,8,1,7,
46041257,22,1,136,1, 45901252,22,1,135,1,
460570,1258,17,1259,15, 459169,1253,17,1254,15,
46061234,1,-1,1,5, 45921234,1,-1,1,5,
46071260,20,1261,4,40, 45931255,20,1256,4,40,
460884,0,121,0,112, 459484,0,121,0,112,
46090,101,0,99,0, 45950,101,0,99,0,
461097,0,115,0,116, 459697,0,115,0,116,
@@ -4612,13 +4598,13 @@ public yyLSLSyntax
4612112,0,114,0,101, 4598112,0,114,0,101,
46130,115,0,115,0, 45990,115,0,115,0,
4614105,0,111,0,110, 4600105,0,111,0,110,
46150,95,0,52,0, 46010,95,0,54,0,
46161,276,1,3,1, 46021,278,1,3,1,
46176,1,5,1262,22, 46036,1,5,1257,22,
46181,134,1,74,1263, 46041,136,1,70,1258,
461917,1264,15,1234,1, 460517,1259,15,1234,1,
4620-1,1,5,1265,20, 4606-1,1,5,1260,20,
46211266,4,40,84,0, 46071261,4,40,84,0,
4622121,0,112,0,101, 4608121,0,112,0,101,
46230,99,0,97,0, 46090,99,0,97,0,
4624115,0,116,0,69, 4610115,0,116,0,69,
@@ -4626,302 +4612,305 @@ public yyLSLSyntax
4626114,0,101,0,115, 4612114,0,101,0,115,
46270,115,0,105,0, 46130,115,0,105,0,
4628111,0,110,0,95, 4614111,0,110,0,95,
46290,57,0,1,281, 46150,52,0,1,276,
46301,3,1,7,1,
46316,1267,22,1,139,
46321,1013,1268,17,1269,
463315,1114,1,-1,1,
46345,1270,20,1271,4,
463546,80,0,97,0,
4636114,0,101,0,110,
46370,116,0,104,0,
4638101,0,115,0,105,
46390,115,0,69,0,
4640120,0,112,0,114,
46410,101,0,115,0,
4642115,0,105,0,111,
46430,110,0,95,0,
464449,0,1,271,1,
46453,1,4,1,3,
46461272,22,1,129,1,
46471332,1273,17,1274,15,
46481108,1,-1,1,5,
46491275,20,1276,4,38,
465083,0,105,0,109,
46510,112,0,108,0,
4652101,0,65,0,115,
46530,115,0,105,0,
4654103,0,110,0,109,
46550,101,0,110,0,
4656116,0,95,0,49,
46570,57,0,1,223,
46581,3,1,6,1, 46161,3,1,6,1,
46595,1277,22,1,81, 46175,1262,22,1,134,
46601,2337,1278,17,1152, 46181,74,1263,17,1264,
46611,0,1156,1,1585, 461915,1234,1,-1,1,
46621279,17,1280,15,1281, 46205,1265,20,1266,4,
46634,32,37,0,82, 462140,84,0,121,0,
46640,101,0,116,0, 4622112,0,101,0,99,
4665117,0,114,0,110, 46230,97,0,115,0,
46660,83,0,116,0, 4624116,0,69,0,120,
466797,0,116,0,101,
46680,109,0,101,0,
4669110,0,116,0,1,
4670-1,1,5,1282,20,
46711283,4,34,82,0,
4672101,0,116,0,117,
46730,114,0,110,0,
467483,0,116,0,97,
46750,116,0,101,0,
4676109,0,101,0,110,
46770,116,0,95,0,
467850,0,1,230,1,
46793,1,2,1,1,
46801284,22,1,88,1,
46812023,1285,17,1286,15,
46821147,1,-1,1,5,
46831287,20,1288,4,26,
468483,0,116,0,97,
46850,116,0,101,0,
468667,0,104,0,97,
46870,110,0,103,0,
4688101,0,95,0,50,
46890,1,188,1,3,
46901,3,1,2,1289,
469122,1,46,1,2136,
4692852,1,82,1290,17,
46931291,15,1292,4,32,
469437,0,85,0,110,
46950,97,0,114,0,
4696121,0,69,0,120,
46970,112,0,114,0, 46250,112,0,114,0,
4698101,0,115,0,115, 4626101,0,115,0,115,
46990,105,0,111,0, 46270,105,0,111,0,
4700110,0,1,-1,1, 4628110,0,95,0,57,
47015,1293,20,1294,4, 46290,1,281,1,3,
470234,85,0,110,0, 46301,7,1,6,1267,
470397,0,114,0,121, 463122,1,139,1,1013,
46321268,17,1269,15,1114,
46331,-1,1,5,1270,
463420,1271,4,46,80,
46350,97,0,114,0,
4636101,0,110,0,116,
46370,104,0,101,0,
4638115,0,105,0,115,
47040,69,0,120,0, 46390,69,0,120,0,
4705112,0,114,0,101, 4640112,0,114,0,101,
47060,115,0,115,0, 46410,115,0,115,0,
4707105,0,111,0,110, 4642105,0,111,0,110,
47080,95,0,51,0,
47091,270,1,3,1,
47103,1,2,1295,22,
47111,128,1,2026,1296,
471217,1297,15,1298,4,
471328,37,0,74,0,
4714117,0,109,0,112,
47150,83,0,116,0,
471697,0,116,0,101,
47170,109,0,101,0,
4718110,0,116,0,1,
4719-1,1,5,1299,20,
47201300,4,30,74,0,
4721117,0,109,0,112,
47220,83,0,116,0,
472397,0,116,0,101,
47240,109,0,101,0,
4725110,0,116,0,95,
47260,49,0,1,186,
47271,3,1,3,1,
47282,1301,22,1,44,
47291,1591,1302,17,1303,
473015,1281,1,-1,1,
47315,1304,20,1305,4,
473234,82,0,101,0,
4733116,0,117,0,114,
47340,110,0,83,0,
4735116,0,97,0,116,
47360,101,0,109,0,
4737101,0,110,0,116,
47380,95,0,49,0, 46430,95,0,49,0,
47391,229,1,3,1, 46441,271,1,3,1,
47403,1,2,1306,22, 46454,1,3,1272,22,
47411,87,1,1341,1307, 46461,129,1,1332,1273,
474217,1308,15,1108,1, 464717,1274,15,1108,1,
4743-1,1,5,1309,20, 4648-1,1,5,1275,20,
47441310,4,36,83,0, 46491276,4,38,83,0,
4745105,0,109,0,112, 4650105,0,109,0,112,
47460,108,0,101,0, 46510,108,0,101,0,
474765,0,115,0,115, 465265,0,115,0,115,
47480,105,0,103,0, 46530,105,0,103,0,
4749110,0,109,0,101, 4654110,0,109,0,101,
47500,110,0,116,0, 46550,110,0,116,0,
475195,0,54,0,1, 465695,0,49,0,57,
4752210,1,3,1,4, 46570,1,223,1,3,
47531,3,1311,22,1, 46581,6,1,5,1277,
475468,1,2030,741,1, 465922,1,81,1,2337,
4755328,1312,17,1313,15, 46601278,17,1152,1,0,
47561131,1,-1,1,5, 46611156,1,1585,1279,17,
47571314,20,1315,4,36, 46621280,15,1281,4,32,
475866,0,105,0,110, 466337,0,82,0,101,
47590,97,0,114,0, 46640,116,0,117,0,
4760121,0,69,0,120, 4665114,0,110,0,83,
47610,112,0,114,0, 46660,116,0,97,0,
4762101,0,115,0,115, 4667116,0,101,0,109,
47630,105,0,111,0, 46680,101,0,110,0,
4764110,0,95,0,50, 4669116,0,1,-1,1,
47650,1,251,1,3, 46705,1282,20,1283,4,
47661,4,1,3,1316, 467134,82,0,101,0,
476722,1,109,1,1303, 4672116,0,117,0,114,
47681317,17,1318,15,1108, 46730,110,0,83,0,
47691,-1,1,5,1319, 4674116,0,97,0,116,
477020,1320,4,36,83, 46750,101,0,109,0,
47710,105,0,109,0,
4772112,0,108,0,101,
47730,65,0,115,0,
4774115,0,105,0,103,
47750,110,0,109,0,
4776101,0,110,0,116, 4676101,0,110,0,116,
47770,95,0,55,0, 46770,95,0,50,0,
47781,211,1,3,1, 46781,230,1,3,1,
47796,1,5,1321,22, 46792,1,1,1284,22,
47801,69,1,1096,1322, 46801,88,1,2023,1285,
478117,1323,15,1324,4, 468117,1286,15,1147,1,
478226,37,0,70,0, 4682-1,1,5,1287,20,
4783117,0,110,0,99, 46831288,4,26,83,0,
47840,116,0,105,0, 4684116,0,97,0,116,
4785111,0,110,0,67, 46850,101,0,67,0,
47860,97,0,108,0, 4686104,0,97,0,110,
4787108,0,1,-1,1, 46870,103,0,101,0,
47885,1325,20,1326,4, 468895,0,50,0,1,
478928,70,0,117,0, 4689188,1,3,1,3,
46901,2,1289,22,1,
469146,1,2136,852,1,
469282,1290,17,1291,15,
46931292,4,32,37,0,
469485,0,110,0,97,
46950,114,0,121,0,
469669,0,120,0,112,
46970,114,0,101,0,
4698115,0,115,0,105,
46990,111,0,110,0,
47001,-1,1,5,1293,
470120,1294,4,34,85,
47020,110,0,97,0,
4703114,0,121,0,69,
47040,120,0,112,0,
4705114,0,101,0,115,
47060,115,0,105,0,
4707111,0,110,0,95,
47080,51,0,1,270,
47091,3,1,3,1,
47102,1295,22,1,128,
47111,2026,1296,17,1297,
471215,1298,4,28,37,
47130,74,0,117,0,
4714109,0,112,0,83,
47150,116,0,97,0,
4716116,0,101,0,109,
47170,101,0,110,0,
4718116,0,1,-1,1,
47195,1299,20,1300,4,
472030,74,0,117,0,
4721109,0,112,0,83,
47220,116,0,97,0,
4723116,0,101,0,109,
47240,101,0,110,0,
4725116,0,95,0,49,
47260,1,186,1,3,
47271,3,1,2,1301,
472822,1,44,1,1591,
47291302,17,1303,15,1281,
47301,-1,1,5,1304,
473120,1305,4,34,82,
47320,101,0,116,0,
4733117,0,114,0,110,
47340,83,0,116,0,
473597,0,116,0,101,
47360,109,0,101,0,
4737110,0,116,0,95,
47380,49,0,1,229,
47391,3,1,3,1,
47402,1306,22,1,87,
47411,1341,1307,17,1308,
474215,1108,1,-1,1,
47435,1309,20,1310,4,
474436,83,0,105,0,
4745109,0,112,0,108,
47460,101,0,65,0,
4747115,0,115,0,105,
47480,103,0,110,0,
4749109,0,101,0,110,
47500,116,0,95,0,
475154,0,1,210,1,
47523,1,4,1,3,
47531311,22,1,68,1,
47542030,741,1,328,1312,
475517,1313,15,1131,1,
4756-1,1,5,1314,20,
47571315,4,36,66,0,
4758105,0,110,0,97,
47590,114,0,121,0,
476069,0,120,0,112,
47610,114,0,101,0,
4762115,0,115,0,105,
47630,111,0,110,0,
476495,0,50,0,1,
4765251,1,3,1,4,
47661,3,1316,22,1,
4767109,1,1303,1317,17,
47681318,15,1108,1,-1,
47691,5,1319,20,1320,
47704,36,83,0,105,
47710,109,0,112,0,
4772108,0,101,0,65,
47730,115,0,115,0,
4774105,0,103,0,110,
47750,109,0,101,0,
4776110,0,116,0,95,
47770,55,0,1,211,
47781,3,1,6,1,
47795,1321,22,1,69,
47801,1096,1322,17,1323,
478115,1324,4,26,37,
47820,70,0,117,0,
4790110,0,99,0,116, 4783110,0,99,0,116,
47910,105,0,111,0, 47840,105,0,111,0,
4792110,0,67,0,97, 4785110,0,67,0,97,
47930,108,0,108,0, 47860,108,0,108,0,
479495,0,49,0,1, 47871,-1,1,5,1325,
4795282,1,3,1,5, 478820,1326,4,28,70,
47961,4,1327,22,1, 47890,117,0,110,0,
4797140,1,93,1328,17, 479099,0,116,0,105,
47981329,15,1292,1,-1, 47910,111,0,110,0,
47991,5,1330,20,1331, 479267,0,97,0,108,
48004,34,85,0,110, 47930,108,0,95,0,
48010,97,0,114,0, 479449,0,1,282,1,
4802121,0,69,0,120, 47953,1,5,1,4,
48030,112,0,114,0, 47961327,22,1,140,1,
4804101,0,115,0,115, 479793,1328,17,1329,15,
48050,105,0,111,0, 47981292,1,-1,1,5,
4806110,0,95,0,50, 47991330,20,1331,4,34,
48070,1,269,1,3, 480085,0,110,0,97,
48081,3,1,2,1332, 48010,114,0,121,0,
480922,1,127,1,1550, 480269,0,120,0,112,
48101333,17,1334,15,1108, 48030,114,0,101,0,
48111,-1,1,5,1335, 4804115,0,115,0,105,
481220,1336,4,38,83, 48050,111,0,110,0,
48130,105,0,109,0, 480695,0,50,0,1,
4814112,0,108,0,101, 4807269,1,3,1,3,
48150,65,0,115,0, 48081,2,1332,22,1,
4816115,0,105,0,103, 4809127,1,1550,1333,17,
48170,110,0,109,0, 48101334,15,1108,1,-1,
4818101,0,110,0,116, 48111,5,1335,20,1336,
48190,95,0,49,0, 48124,38,83,0,105,
482051,0,1,217,1, 48130,109,0,112,0,
48213,1,4,1,3, 4814108,0,101,0,65,
48221337,22,1,75,1, 48150,115,0,115,0,
48232040,1338,16,0,542, 4816105,0,103,0,110,
48241,2106,1339,17,1152, 48170,109,0,101,0,
48251,0,1156,1,1555, 4818110,0,116,0,95,
48261340,16,0,615,1, 48190,49,0,51,0,
4827827,1341,17,1342,15, 48201,217,1,3,1,
48281131,1,-1,1,5, 48214,1,3,1337,22,
48291343,20,1344,4,38, 48221,75,1,2040,1338,
483066,0,105,0,110, 482316,0,542,1,2106,
48310,97,0,114,0, 48241339,17,1152,1,0,
4832121,0,69,0,120, 48251156,1,1555,1340,16,
48330,112,0,114,0, 48260,615,1,827,1341,
4834101,0,115,0,115, 482717,1342,15,1131,1,
48350,105,0,111,0, 4828-1,1,5,1343,20,
4836110,0,95,0,49, 48291344,4,38,66,0,
48370,53,0,1,264,
48381,3,1,4,1,
48393,1345,22,1,122,
48401,1859,1346,16,0,
4841313,1,1860,831,1,
48421804,1347,17,1152,1,
48430,1156,1,107,1348,
484417,1349,15,1292,1,
4845-1,1,5,1350,20,
48461351,4,34,85,0,
4847110,0,97,0,114,
48480,121,0,69,0,
4849120,0,112,0,114,
48500,101,0,115,0,
4851115,0,105,0,111,
48520,110,0,95,0,
485349,0,1,268,1,
48543,1,3,1,2,
48551352,22,1,126,1,
48561114,1353,17,1195,1,
48573,1199,1,1048,1354,
485817,1355,15,1131,1,
4859-1,1,5,1356,20,
48601357,4,38,66,0,
4861105,0,110,0,97, 4830105,0,110,0,97,
48620,114,0,121,0, 48310,114,0,121,0,
486369,0,120,0,112, 483269,0,120,0,112,
48640,114,0,101,0, 48330,114,0,101,0,
4865115,0,115,0,105, 4834115,0,115,0,105,
48660,111,0,110,0, 48350,111,0,110,0,
486795,0,49,0,56, 483695,0,49,0,53,
48680,1,267,1,3, 48370,1,264,1,3,
48691,4,1,3,1358, 48381,4,1,3,1345,
487022,1,125,1,352, 483922,1,122,1,1859,
48711359,17,1360,15,1131, 48401346,16,0,313,1,
48721,-1,1,5,1361, 48411860,831,1,1804,1347,
487320,1362,4,36,66, 484217,1152,1,0,1156,
48740,105,0,110,0, 48431,107,1348,17,1349,
484415,1292,1,-1,1,
48455,1350,20,1351,4,
484634,85,0,110,0,
487597,0,114,0,121, 484797,0,114,0,121,
48760,69,0,120,0, 48480,69,0,120,0,
4877112,0,114,0,101, 4849112,0,114,0,101,
48780,115,0,115,0, 48500,115,0,115,0,
4879105,0,111,0,110, 4851105,0,111,0,110,
48800,95,0,49,0, 48520,95,0,49,0,
48811,250,1,3,1, 48531,268,1,3,1,
48824,1,3,1363,22, 48543,1,2,1352,22,
48831,108,1,1872,1364, 48551,126,1,1114,1353,
488416,0,323,1,1873, 485617,1195,1,3,1199,
4885845,1,118,1365,17, 48571,1048,1354,17,1355,
48861366,15,1131,1,-1, 485815,1131,1,-1,1,
48871,5,1367,20,1368, 48595,1356,20,1357,4,
48884,38,66,0,105, 486038,66,0,105,0,
4861110,0,97,0,114,
48620,121,0,69,0,
4863120,0,112,0,114,
48640,101,0,115,0,
4865115,0,105,0,111,
48660,110,0,95,0,
486749,0,56,0,1,
4868267,1,3,1,4,
48691,3,1358,22,1,
4870125,1,352,1359,17,
48711360,15,1131,1,-1,
48721,5,1361,20,1362,
48734,36,66,0,105,
48890,110,0,97,0, 48740,110,0,97,0,
4890114,0,121,0,69, 4875114,0,121,0,69,
48910,120,0,112,0, 48760,120,0,112,0,
4892114,0,101,0,115, 4877114,0,101,0,115,
48930,115,0,105,0, 48780,115,0,105,0,
4894111,0,110,0,95, 4879111,0,110,0,95,
48950,49,0,52,0, 48800,49,0,1,250,
48961,263,1,3,1, 48811,3,1,4,1,
48974,1,3,1369,22, 48823,1363,22,1,108,
48981,121,1,1123,1370, 48831,1872,1364,16,0,
489917,1371,15,1108,1, 4884323,1,1873,845,1,
4900-1,1,5,1372,20, 4885118,1365,17,1366,15,
49011373,4,38,83,0, 48861131,1,-1,1,5,
4902105,0,109,0,112, 48871367,20,1368,4,38,
49030,108,0,101,0, 488866,0,105,0,110,
490465,0,115,0,115, 48890,97,0,114,0,
49050,105,0,103,0, 4890121,0,69,0,120,
4906110,0,109,0,101, 48910,112,0,114,0,
49070,110,0,116,0, 4892101,0,115,0,115,
490895,0,49,0,50, 48930,105,0,111,0,
49090,1,216,1,3, 4894110,0,95,0,49,
49101,6,1,5,1374, 48950,52,0,1,263,
491122,1,74,1,371, 48961,3,1,4,1,
49121375,17,1376,15,1377, 48973,1369,22,1,121,
49134,46,37,0,70, 48981,1123,1370,17,1371,
49140,117,0,110,0, 489915,1108,1,-1,1,
491599,0,116,0,105, 49005,1372,20,1373,4,
49160,111,0,110,0, 490138,83,0,105,0,
491767,0,97,0,108, 4902109,0,112,0,108,
49180,108,0,69,0, 49030,101,0,65,0,
4919120,0,112,0,114, 4904115,0,115,0,105,
49200,101,0,115,0, 49050,103,0,110,0,
4921115,0,105,0,111, 4906109,0,101,0,110,
49220,110,0,1,-1, 49070,116,0,95,0,
49231,5,1378,20,1379, 490849,0,50,0,1,
49244,48,70,0,117, 4909216,1,3,1,6,
49101,5,1374,22,1,
491174,1,371,1375,17,
49121376,15,1377,4,46,
491337,0,70,0,117,
49250,110,0,99,0, 49140,110,0,99,0,
4926116,0,105,0,111, 4915116,0,105,0,111,
49270,110,0,67,0, 49160,110,0,67,0,
@@ -4930,43 +4919,36 @@ public yyLSLSyntax
4930112,0,114,0,101, 4919112,0,114,0,101,
49310,115,0,115,0, 49200,115,0,115,0,
4932105,0,111,0,110, 4921105,0,111,0,110,
49330,95,0,49,0, 49220,1,-1,1,5,
49341,249,1,3,1, 49231378,20,1379,4,48,
49352,1,1,1380,22, 492470,0,117,0,110,
49361,107,1,1377,1381, 49250,99,0,116,0,
493717,1382,15,1108,1, 4926105,0,111,0,110,
4938-1,1,5,1383,20, 49270,67,0,97,0,
49391384,4,36,83,0, 4928108,0,108,0,69,
4940105,0,109,0,112, 49290,120,0,112,0,
49410,108,0,101,0, 4930114,0,101,0,115,
494265,0,115,0,115, 49310,115,0,105,0,
49430,105,0,103,0, 4932111,0,110,0,95,
4944110,0,109,0,101, 49330,49,0,1,249,
49450,110,0,116,0, 49341,3,1,2,1,
494695,0,53,0,1, 49351,1380,22,1,107,
4947209,1,3,1,4, 49361,1377,1381,17,1382,
49481,3,1385,22,1, 493715,1108,1,-1,1,
494967,1,375,1386,17, 49385,1383,20,1384,4,
49501387,15,1202,1,-1, 493936,83,0,105,0,
49511,5,1388,20,1389, 4940109,0,112,0,108,
49524,60,73,0,110, 49410,101,0,65,0,
49530,99,0,114,0, 4942115,0,115,0,105,
4954101,0,109,0,101, 49430,103,0,110,0,
49550,110,0,116,0,
495668,0,101,0,99,
49570,114,0,101,0,
4958109,0,101,0,110, 4944109,0,101,0,110,
49590,116,0,69,0, 49450,116,0,95,0,
4960120,0,112,0,114, 494653,0,1,209,1,
49610,101,0,115,0, 49473,1,4,1,3,
4962115,0,105,0,111, 49481385,22,1,67,1,
49630,110,0,95,0, 4949375,1386,17,1387,15,
496456,0,1,248,1,
49653,1,5,1,4,
49661390,22,1,106,1,
4967377,1391,17,1392,15,
49681202,1,-1,1,5, 49501202,1,-1,1,5,
49691393,20,1394,4,60, 49511388,20,1389,4,60,
497073,0,110,0,99, 495273,0,110,0,99,
49710,114,0,101,0, 49530,114,0,101,0,
4972109,0,101,0,110, 4954109,0,101,0,110,
@@ -4978,13 +4960,13 @@ public yyLSLSyntax
4978112,0,114,0,101, 4960112,0,114,0,101,
49790,115,0,115,0, 49610,115,0,115,0,
4980105,0,111,0,110, 4962105,0,111,0,110,
49810,95,0,53,0, 49630,95,0,56,0,
49821,245,1,3,1, 49641,248,1,3,1,
49833,1,2,1395,22, 49655,1,4,1390,22,
49841,103,1,379,1396, 49661,106,1,377,1391,
498517,1397,15,1202,1, 496717,1392,15,1202,1,
4986-1,1,5,1398,20, 4968-1,1,5,1393,20,
49871399,4,60,73,0, 49691394,4,60,73,0,
4988110,0,99,0,114, 4970110,0,99,0,114,
49890,101,0,109,0, 49710,101,0,109,0,
4990101,0,110,0,116, 4972101,0,110,0,116,
@@ -4996,81 +4978,51 @@ public yyLSLSyntax
4996114,0,101,0,115, 4978114,0,101,0,115,
49970,115,0,105,0, 49790,115,0,105,0,
4998111,0,110,0,95, 4980111,0,110,0,95,
49990,55,0,1,247, 49810,53,0,1,245,
50001,3,1,5,1, 49821,3,1,3,1,
50014,1400,22,1,105, 49832,1395,22,1,103,
50021,380,1401,17,1402, 49841,379,1396,17,1397,
500315,1403,4,38,37, 498515,1202,1,-1,1,
50040,67,0,111,0, 49865,1398,20,1399,4,
5005110,0,115,0,116, 498760,73,0,110,0,
50060,97,0,110,0, 498899,0,114,0,101,
5007116,0,69,0,120, 49890,109,0,101,0,
50080,112,0,114,0, 4990110,0,116,0,68,
5009101,0,115,0,115, 49910,101,0,99,0,
50100,105,0,111,0, 4992114,0,101,0,109,
5011110,0,1,-1,1, 49930,101,0,110,0,
50125,1404,20,1405,4,
501340,67,0,111,0,
5014110,0,115,0,116,
50150,97,0,110,0,
5016116,0,69,0,120, 4994116,0,69,0,120,
50170,112,0,114,0, 49950,112,0,114,0,
5018101,0,115,0,115, 4996101,0,115,0,115,
50190,105,0,111,0, 49970,105,0,111,0,
5020110,0,95,0,49, 4998110,0,95,0,55,
50210,1,238,1,3, 49990,1,247,1,3,
50221,2,1,1,1406, 50001,5,1,4,1400,
502322,1,96,1,883, 500122,1,105,1,380,
50241407,17,1408,15,1131, 50021401,17,1402,15,1403,
50251,-1,1,5,1409, 50034,38,37,0,67,
502620,1410,4,38,66, 50040,111,0,110,0,
50270,105,0,110,0, 5005115,0,116,0,97,
502897,0,114,0,121,
50290,69,0,120,0,
5030112,0,114,0,101,
50310,115,0,115,0,
5032105,0,111,0,110,
50330,95,0,49,0,
503454,0,1,265,1,
50353,1,4,1,3,
50361411,22,1,123,1,
50371628,1412,17,1413,15,
50381414,4,22,37,0,
503965,0,115,0,115,
50400,105,0,103,0,
5041110,0,109,0,101,
50420,110,0,116,0, 50060,110,0,116,0,
50431,-1,1,5,1415, 500769,0,120,0,112,
504420,1416,4,24,65, 50080,114,0,101,0,
50450,115,0,115,0, 5009115,0,115,0,105,
5046105,0,103,0,110, 50100,111,0,110,0,
50470,109,0,101,0, 50111,-1,1,5,1404,
5048110,0,116,0,95, 501220,1405,4,40,67,
50490,49,0,1,203, 50130,111,0,110,0,
50501,3,1,4,1, 5014115,0,116,0,97,
50513,1417,22,1,61,
50521,2075,1418,17,1152,
50531,0,1156,1,373,
50541419,17,1420,15,1202,
50551,-1,1,5,1421,
505620,1422,4,60,73,
50570,110,0,99,0,
5058114,0,101,0,109,
50590,101,0,110,0,
5060116,0,68,0,101,
50610,99,0,114,0,
5062101,0,109,0,101,
50630,110,0,116,0, 50150,110,0,116,0,
506469,0,120,0,112, 501669,0,120,0,112,
50650,114,0,101,0, 50170,114,0,101,0,
5066115,0,115,0,105, 5018115,0,115,0,105,
50670,111,0,110,0, 50190,111,0,110,0,
506895,0,54,0,1, 502095,0,49,0,1,
5069246,1,3,1,3, 5021238,1,3,1,2,
50701,2,1423,22,1, 50221,1,1406,22,1,
5071104,1,130,1424,17, 502396,1,883,1407,17,
50721425,15,1131,1,-1, 50241408,15,1131,1,-1,
50731,5,1426,20,1427, 50251,5,1409,20,1410,
50744,38,66,0,105, 50264,38,66,0,105,
50750,110,0,97,0, 50270,110,0,97,0,
5076114,0,121,0,69, 5028114,0,121,0,69,
@@ -5078,70 +5030,161 @@ public yyLSLSyntax
5078114,0,101,0,115, 5030114,0,101,0,115,
50790,115,0,105,0, 50310,115,0,105,0,
5080111,0,110,0,95, 5032111,0,110,0,95,
50810,49,0,51,0, 50330,49,0,54,0,
50821,262,1,3,1, 50341,265,1,3,1,
50834,1,3,1428,22, 50354,1,3,1411,22,
50841,120,1,143,1429, 50361,123,1,1628,1412,
508517,1430,15,1131,1, 503717,1413,15,1414,4,
5086-1,1,5,1431,20, 503822,37,0,65,0,
50871432,4,38,66,0, 5039115,0,115,0,105,
5088105,0,110,0,97, 50400,103,0,110,0,
50890,114,0,121,0, 5041109,0,101,0,110,
509069,0,120,0,112, 50420,116,0,1,-1,
50431,5,1415,20,1416,
50444,24,65,0,115,
50450,115,0,105,0,
5046103,0,110,0,109,
50470,101,0,110,0,
5048116,0,95,0,49,
50490,1,203,1,3,
50501,4,1,3,1417,
505122,1,61,1,2075,
50521418,17,1152,1,0,
50531156,1,373,1419,17,
50541420,15,1202,1,-1,
50551,5,1421,20,1422,
50564,60,73,0,110,
50570,99,0,114,0,
5058101,0,109,0,101,
50590,110,0,116,0,
506068,0,101,0,99,
50910,114,0,101,0, 50610,114,0,101,0,
5062109,0,101,0,110,
50630,116,0,69,0,
5064120,0,112,0,114,
50650,101,0,115,0,
5066115,0,105,0,111,
50670,110,0,95,0,
506854,0,1,246,1,
50693,1,3,1,2,
50701423,22,1,104,1,
5071130,1424,17,1425,15,
50721131,1,-1,1,5,
50731426,20,1427,4,38,
507466,0,105,0,110,
50750,97,0,114,0,
5076121,0,69,0,120,
50770,112,0,114,0,
5078101,0,115,0,115,
50790,105,0,111,0,
5080110,0,95,0,49,
50810,51,0,1,262,
50821,3,1,4,1,
50833,1428,22,1,120,
50841,143,1429,17,1430,
508515,1131,1,-1,1,
50865,1431,20,1432,4,
508738,66,0,105,0,
5088110,0,97,0,114,
50890,121,0,69,0,
5090120,0,112,0,114,
50910,101,0,115,0,
5092115,0,105,0,111,
50930,110,0,95,0,
509449,0,50,0,1,
5095261,1,3,1,4,
50961,3,1433,22,1,
5097119,1,1901,1434,17,
50981152,1,0,1156,1,
50991152,1435,17,1436,15,
51001108,1,-1,1,5,
51011437,20,1438,4,38,
510283,0,105,0,109,
51030,112,0,108,0,
5104101,0,65,0,115,
51050,115,0,105,0,
5106103,0,110,0,109,
51070,101,0,110,0,
5108116,0,95,0,50,
51090,52,0,1,228,
51101,3,1,6,1,
51115,1439,22,1,86,
51121,1406,1440,17,1441,
511315,1108,1,-1,1,
51145,1442,20,1443,4,
511538,83,0,105,0,
5116109,0,112,0,108,
51170,101,0,65,0,
5092115,0,115,0,105, 5118115,0,115,0,105,
50930,111,0,110,0, 51190,103,0,110,0,
509495,0,49,0,50, 5120109,0,101,0,110,
50950,1,261,1,3, 51210,116,0,95,0,
50961,4,1,3,1433, 512249,0,55,0,1,
509722,1,119,1,1901, 5123221,1,3,1,4,
50981434,17,1152,1,0, 51241,3,1444,22,1,
50991156,1,1152,1435,17, 512579,1,1659,1445,16,
51001436,15,1108,1,-1, 51260,278,1,2413,1446,
51011,5,1437,20,1438, 512717,1152,1,0,1156,
51024,38,83,0,105, 51281,1159,1447,17,1448,
51030,109,0,112,0, 512915,1108,1,-1,1,
5104108,0,101,0,65, 51305,1449,20,1450,4,
51050,115,0,115,0, 513138,83,0,105,0,
5106105,0,103,0,110, 5132109,0,112,0,108,
51070,109,0,101,0, 51330,101,0,65,0,
5108110,0,116,0,95, 5134115,0,115,0,105,
51090,50,0,52,0, 51350,103,0,110,0,
51101,228,1,3,1, 5136109,0,101,0,110,
51116,1,5,1439,22, 51370,116,0,95,0,
51121,86,1,1406,1440, 513849,0,49,0,1,
511317,1441,15,1108,1, 5139215,1,3,1,6,
5114-1,1,5,1442,20, 51401,5,1451,22,1,
51151443,4,38,83,0, 514173,1,157,1452,17,
51421453,15,1131,1,-1,
51431,5,1454,20,1455,
51444,38,66,0,105,
51450,110,0,97,0,
5146114,0,121,0,69,
51470,120,0,112,0,
5148114,0,101,0,115,
51490,115,0,105,0,
5150111,0,110,0,95,
51510,49,0,49,0,
51521,260,1,3,1,
51534,1,3,1456,22,
51541,118,1,1413,1457,
515517,1458,15,1108,1,
5156-1,1,5,1459,20,
51571460,4,36,83,0,
5116105,0,109,0,112, 5158105,0,109,0,112,
51170,108,0,101,0, 51590,108,0,101,0,
511865,0,115,0,115, 516065,0,115,0,115,
51190,105,0,103,0, 51610,105,0,103,0,
5120110,0,109,0,101, 5162110,0,109,0,101,
51210,110,0,116,0, 51630,110,0,116,0,
512295,0,49,0,55, 516495,0,52,0,1,
51230,1,221,1,3, 5165208,1,3,1,4,
51241,4,1,3,1444, 51661,3,1461,22,1,
512522,1,79,1,1659, 516766,1,2669,1462,16,
51261445,16,0,278,1, 51680,303,1,1478,1463,
51272413,1446,17,1152,1, 516917,1464,15,1108,1,
51280,1156,1,1159,1447, 5170-1,1,5,1465,20,
512917,1448,15,1108,1, 51711466,4,38,83,0,
5130-1,1,5,1449,20,
51311450,4,38,83,0,
5132105,0,109,0,112, 5172105,0,109,0,112,
51330,108,0,101,0, 51730,108,0,101,0,
513465,0,115,0,115, 517465,0,115,0,115,
51350,105,0,103,0, 51750,105,0,103,0,
5136110,0,109,0,101, 5176110,0,109,0,101,
51370,110,0,116,0, 51770,110,0,116,0,
513895,0,49,0,49, 517895,0,49,0,53,
51390,1,215,1,3, 51790,1,219,1,3,
51401,6,1,5,1451, 51801,4,1,3,1467,
514122,1,73,1,157, 518122,1,77,1,2676,
51421452,17,1453,15,1131, 51821468,16,0,624,1,
51431,-1,1,5,1454, 51831621,1469,16,0,678,
514420,1455,4,38,66, 51841,1574,809,1,172,
51851470,17,1471,15,1131,
51861,-1,1,5,1472,
518720,1473,4,38,66,
51450,105,0,110,0, 51880,105,0,110,0,
514697,0,114,0,121, 518997,0,114,0,121,
51470,69,0,120,0, 51900,69,0,120,0,
@@ -5149,42 +5192,54 @@ public yyLSLSyntax
51490,115,0,115,0, 51920,115,0,115,0,
5150105,0,111,0,110, 5193105,0,111,0,110,
51510,95,0,49,0, 51940,95,0,49,0,
515249,0,1,260,1, 519548,0,1,259,1,
51533,1,4,1,3, 51963,1,4,1,3,
51541456,22,1,118,1, 51971474,22,1,117,1,
51551413,1457,17,1458,15, 51981931,870,1,1665,1475,
51561108,1,-1,1,5, 519917,1476,15,1166,1,
51571459,20,1460,4,36, 5200-1,1,5,1477,20,
515883,0,105,0,109, 52011478,4,36,70,0,
51590,112,0,108,0, 5202111,0,114,0,76,
5160101,0,65,0,115, 52030,111,0,111,0,
51610,115,0,105,0, 5204112,0,83,0,116,
5162103,0,110,0,109, 52050,97,0,116,0,
51630,101,0,110,0, 5206101,0,109,0,101,
5164116,0,95,0,52, 52070,110,0,116,0,
51650,1,208,1,3, 520895,0,49,0,1,
51661,4,1,3,1461, 5209199,1,3,1,2,
516722,1,66,1,2669, 52101,1,1479,22,1,
51681462,16,0,303,1, 521157,1,2364,837,1,
51691478,1463,17,1464,15, 52122105,824,1,1188,1480,
51701108,1,-1,1,5, 521317,1481,15,1108,1,
51711465,20,1466,4,38, 5214-1,1,5,1482,20,
517283,0,105,0,109, 52151483,4,38,83,0,
51730,112,0,108,0, 5216105,0,109,0,112,
5174101,0,65,0,115, 52170,108,0,101,0,
51750,115,0,105,0, 521865,0,115,0,115,
5176103,0,110,0,109, 52190,105,0,103,0,
51770,101,0,110,0, 5220110,0,109,0,101,
5178116,0,95,0,49, 52210,110,0,116,0,
51790,53,0,1,219, 522295,0,50,0,51,
51801,3,1,4,1, 52230,1,227,1,3,
51813,1467,22,1,77, 52241,6,1,5,1484,
51821,2676,1468,16,0, 522522,1,85,1,1442,
5183624,1,1621,1469,16, 52261485,17,1486,15,1108,
51840,678,1,1574,809, 52271,-1,1,5,1487,
51851,172,1470,17,1471, 522820,1488,4,38,83,
52290,105,0,109,0,
5230112,0,108,0,101,
52310,65,0,115,0,
5232115,0,105,0,103,
52330,110,0,109,0,
5234101,0,110,0,116,
52350,95,0,49,0,
523654,0,1,220,1,
52373,1,4,1,3,
52381489,22,1,78,1,
52391694,1490,16,0,200,
52401,942,1491,17,1492,
518615,1131,1,-1,1, 524115,1131,1,-1,1,
51875,1472,20,1473,4, 52425,1493,20,1494,4,
518838,66,0,105,0, 524338,66,0,105,0,
5189110,0,97,0,114, 5244110,0,97,0,114,
51900,121,0,69,0, 52450,121,0,69,0,
@@ -5192,69 +5247,112 @@ public yyLSLSyntax
51920,101,0,115,0, 52470,101,0,115,0,
5193115,0,105,0,111, 5248115,0,105,0,111,
51940,110,0,95,0, 52490,110,0,95,0,
519549,0,48,0,1, 525049,0,55,0,1,
5196259,1,3,1,4, 5251266,1,3,1,4,
51971,3,1474,22,1, 52521,3,1495,22,1,
5198117,1,1931,870,1, 5253124,1,2198,1496,17,
51991665,1475,17,1476,15, 52541152,1,0,1156,1,
52001166,1,-1,1,5, 52551195,1497,17,1498,15,
52011477,20,1478,4,36,
520270,0,111,0,114,
52030,76,0,111,0,
5204111,0,112,0,83,
52050,116,0,97,0,
5206116,0,101,0,109,
52070,101,0,110,0,
5208116,0,95,0,49,
52090,1,199,1,3,
52101,2,1,1,1479,
521122,1,57,1,2364,
5212837,1,2105,824,1,
52131188,1480,17,1481,15,
52141108,1,-1,1,5, 52561108,1,-1,1,5,
52151482,20,1483,4,38, 52571499,20,1500,4,38,
521683,0,105,0,109, 525883,0,105,0,109,
52170,112,0,108,0, 52590,112,0,108,0,
5218101,0,65,0,115, 5260101,0,65,0,115,
52190,115,0,105,0, 52610,115,0,105,0,
5220103,0,110,0,109, 5262103,0,110,0,109,
52210,101,0,110,0, 52630,101,0,110,0,
5222116,0,95,0,50, 5264116,0,95,0,49,
52230,51,0,1,227, 52650,48,0,1,214,
52241,3,1,6,1, 52661,3,1,6,1,
52255,1484,22,1,85, 52675,1501,22,1,72,
52261,1442,1485,17,1486, 52681,1449,1502,17,1503,
522715,1108,1,-1,1, 526915,1108,1,-1,1,
52285,1487,20,1488,4, 52705,1504,20,1505,4,
522938,83,0,105,0, 527136,83,0,105,0,
5230109,0,112,0,108, 5272109,0,112,0,108,
52310,101,0,65,0, 52730,101,0,65,0,
5232115,0,115,0,105, 5274115,0,115,0,105,
52330,103,0,110,0, 52750,103,0,110,0,
5234109,0,101,0,110, 5276109,0,101,0,110,
52350,116,0,95,0, 52770,116,0,95,0,
523649,0,54,0,1, 527851,0,1,207,1,
5237220,1,3,1,4, 52793,1,4,1,3,
52381,3,1489,22,1, 52801506,22,1,65,1,
523978,1,1694,1490,16, 52811701,1507,17,1508,15,
52400,200,1,942,1491, 52821166,1,-1,1,5,
524117,1492,15,1131,1, 52831509,20,1510,4,36,
5242-1,1,5,1493,20, 528470,0,111,0,114,
52431494,4,38,66,0, 52850,76,0,111,0,
5286111,0,112,0,83,
52870,116,0,97,0,
5288116,0,101,0,109,
52890,101,0,110,0,
5290116,0,95,0,51,
52910,1,201,1,3,
52921,4,1,3,1511,
529322,1,59,1,447,
52941512,17,1513,15,1514,
52954,30,37,0,86,
52960,101,0,99,0,
5297116,0,111,0,114,
52980,67,0,111,0,
5299110,0,115,0,116,
53000,97,0,110,0,
5301116,0,1,-1,1,
53025,1515,20,1516,4,
530332,86,0,101,0,
530499,0,116,0,111,
53050,114,0,67,0,
5306111,0,110,0,115,
53070,116,0,97,0,
5308110,0,116,0,95,
53090,49,0,1,236,
53101,3,1,8,1,
53117,1517,22,1,94,
53121,2458,885,1,2459,
5313891,1,1958,1518,17,
53141152,1,0,1156,1,
5315188,1519,17,1520,15,
53161131,1,-1,1,5,
53171521,20,1522,4,36,
531866,0,105,0,110,
53190,97,0,114,0,
5320121,0,69,0,120,
53210,112,0,114,0,
5322101,0,115,0,115,
53230,105,0,111,0,
5324110,0,95,0,57,
53250,1,258,1,3,
53261,4,1,3,1523,
532722,1,116,1,2462,
5328898,1,1657,903,1,
53292464,908,1,205,1524,
533017,1525,15,1131,1,
5331-1,1,5,1526,20,
53321527,4,36,66,0,
5244105,0,110,0,97, 5333105,0,110,0,97,
52450,114,0,121,0, 53340,114,0,121,0,
524669,0,120,0,112, 533569,0,120,0,112,
52470,114,0,101,0, 53360,114,0,101,0,
5248115,0,115,0,105, 5337115,0,115,0,105,
52490,111,0,110,0, 53380,111,0,110,0,
525095,0,49,0,55, 533995,0,56,0,1,
52510,1,266,1,3, 5340257,1,3,1,4,
52521,4,1,3,1495, 53411,3,1528,22,1,
525322,1,124,1,2198, 5342115,1,1620,1529,17,
52541496,17,1152,1,0, 53431530,15,1414,1,-1,
52551156,1,1195,1497,17, 53441,5,1531,20,1532,
52561498,15,1108,1,-1, 53454,24,65,0,115,
52571,5,1499,20,1500, 53460,115,0,105,0,
5347103,0,110,0,109,
53480,101,0,110,0,
5349116,0,95,0,50,
53500,1,204,1,3,
53511,2,1,1,1533,
535222,1,62,1,2227,
5353917,1,1224,1534,17,
53541535,15,1108,1,-1,
53551,5,1536,20,1537,
52584,38,83,0,105, 53564,38,83,0,105,
52590,109,0,112,0, 53570,109,0,112,0,
5260108,0,101,0,65, 5358108,0,101,0,65,
@@ -5262,25 +5360,25 @@ public yyLSLSyntax
5262105,0,103,0,110, 5360105,0,103,0,110,
52630,109,0,101,0, 53610,109,0,101,0,
5264110,0,116,0,95, 5362110,0,116,0,95,
52650,49,0,48,0, 53630,50,0,50,0,
52661,214,1,3,1, 53641,226,1,3,1,
52676,1,5,1501,22, 53656,1,5,1538,22,
52681,72,1,1449,1502, 53661,84,1,223,1539,
526917,1503,15,1108,1, 536717,1540,15,1131,1,
5270-1,1,5,1504,20, 5368-1,1,5,1541,20,
52711505,4,36,83,0, 53691542,4,36,66,0,
5272105,0,109,0,112, 5370105,0,110,0,97,
52730,108,0,101,0, 53710,114,0,121,0,
527465,0,115,0,115, 537269,0,120,0,112,
52750,105,0,103,0, 53730,114,0,101,0,
5276110,0,109,0,101, 5374115,0,115,0,105,
52770,110,0,116,0, 53750,111,0,110,0,
527895,0,51,0,1, 537695,0,55,0,1,
5279207,1,3,1,4, 5377256,1,3,1,4,
52801,3,1506,22,1, 53781,3,1543,22,1,
528165,1,1701,1507,17, 5379114,1,1730,1544,17,
52821508,15,1166,1,-1, 53801545,15,1166,1,-1,
52831,5,1509,20,1510, 53811,5,1546,20,1547,
52844,36,70,0,111, 53824,36,70,0,111,
52850,114,0,76,0, 53830,114,0,76,0,
5286111,0,111,0,112, 5384111,0,111,0,112,
@@ -5288,238 +5386,126 @@ public yyLSLSyntax
528897,0,116,0,101, 538697,0,116,0,101,
52890,109,0,101,0, 53870,109,0,101,0,
5290110,0,116,0,95, 5388110,0,116,0,95,
52910,51,0,1,201, 53890,52,0,1,202,
52921,3,1,4,1,
52933,1511,22,1,59,
52941,447,1512,17,1513,
529515,1514,4,30,37,
52960,86,0,101,0,
529799,0,116,0,111,
52980,114,0,67,0,
5299111,0,110,0,115,
53000,116,0,97,0,
5301110,0,116,0,1,
5302-1,1,5,1515,20,
53031516,4,32,86,0,
5304101,0,99,0,116,
53050,111,0,114,0,
530667,0,111,0,110,
53070,115,0,116,0,
530897,0,110,0,116,
53090,95,0,49,0,
53101,236,1,3,1,
53118,1,7,1517,22,
53121,94,1,2458,885,
53131,2459,891,1,1958,
53141518,17,1152,1,0,
53151156,1,188,1519,17,
53161520,15,1131,1,-1,
53171,5,1521,20,1522,
53184,36,66,0,105,
53190,110,0,97,0,
5320114,0,121,0,69,
53210,120,0,112,0,
5322114,0,101,0,115,
53230,115,0,105,0,
5324111,0,110,0,95,
53250,57,0,1,258,
53261,3,1,4,1, 53901,3,1,4,1,
53273,1523,22,1,116, 53913,1548,22,1,60,
53281,2462,898,1,1657, 53921,476,1549,17,1550,
5329903,1,2464,908,1, 539315,1551,4,18,37,
5330205,1524,17,1525,15, 53940,67,0,111,0,
53311131,1,-1,1,5, 5395110,0,115,0,116,
53321526,20,1527,4,36, 53960,97,0,110,0,
533366,0,105,0,110, 5397116,0,1,-1,1,
53340,97,0,114,0, 53985,1552,20,1553,4,
5335121,0,69,0,120, 539920,67,0,111,0,
53360,112,0,114,0, 5400110,0,115,0,116,
5337101,0,115,0,115, 54010,97,0,110,0,
53380,105,0,111,0, 5402116,0,95,0,52,
5339110,0,95,0,56, 54030,1,234,1,3,
53400,1,257,1,3, 54041,2,1,1,1554,
53411,4,1,3,1528, 540522,1,92,1,477,
534222,1,115,1,1620, 54061555,17,1556,15,1551,
53431529,17,1530,15,1414, 54071,-1,1,5,1557,
53441,-1,1,5,1531, 540820,1558,4,20,67,
534520,1532,4,24,65, 54090,111,0,110,0,
5410115,0,116,0,97,
54110,110,0,116,0,
541295,0,51,0,1,
5413233,1,3,1,2,
54141,1,1559,22,1,
541591,1,1231,1560,17,
54161561,15,1108,1,-1,
54171,5,1562,20,1563,
54184,36,83,0,105,
54190,109,0,112,0,
5420108,0,101,0,65,
53460,115,0,115,0, 54210,115,0,115,0,
5347105,0,103,0,110, 5422105,0,103,0,110,
53480,109,0,101,0, 54230,109,0,101,0,
5349110,0,116,0,95, 5424110,0,116,0,95,
53500,50,0,1,204, 54250,57,0,1,213,
53511,3,1,2,1, 54261,3,1,6,1,
53521,1533,22,1,62, 54275,1564,22,1,71,
53531,2227,917,1,1224, 54281,479,1565,17,1566,
53541534,17,1535,15,1108,
53551,-1,1,5,1536,
535620,1537,4,38,83,
53570,105,0,109,0,
5358112,0,108,0,101,
53590,65,0,115,0,
5360115,0,105,0,103,
53610,110,0,109,0,
5362101,0,110,0,116,
53630,95,0,50,0,
536450,0,1,226,1,
53653,1,6,1,5,
53661538,22,1,84,1,
5367223,1539,17,1540,15,
53681131,1,-1,1,5,
53691541,20,1542,4,36,
537066,0,105,0,110,
53710,97,0,114,0,
5372121,0,69,0,120,
53730,112,0,114,0,
5374101,0,115,0,115,
53750,105,0,111,0,
5376110,0,95,0,55,
53770,1,256,1,3,
53781,4,1,3,1543,
537922,1,114,1,1730,
53801544,17,1545,15,1166,
53811,-1,1,5,1546,
538220,1547,4,36,70,
53830,111,0,114,0,
538476,0,111,0,111,
53850,112,0,83,0,
5386116,0,97,0,116,
53870,101,0,109,0,
5388101,0,110,0,116,
53890,95,0,52,0,
53901,202,1,3,1,
53914,1,3,1548,22,
53921,60,1,476,1549,
539317,1550,15,1551,4,
539418,37,0,67,0,
5395111,0,110,0,115,
53960,116,0,97,0,
5397110,0,116,0,1,
5398-1,1,5,1552,20,
53991553,4,20,67,0,
5400111,0,110,0,115,
54010,116,0,97,0,
5402110,0,116,0,95,
54030,52,0,1,234,
54041,3,1,2,1,
54051,1554,22,1,92,
54061,477,1555,17,1556,
540715,1551,1,-1,1, 542915,1551,1,-1,1,
54085,1557,20,1558,4, 54305,1567,20,1568,4,
540920,67,0,111,0, 543120,67,0,111,0,
5410110,0,115,0,116, 5432110,0,115,0,116,
54110,97,0,110,0, 54330,97,0,110,0,
5412116,0,95,0,51, 5434116,0,95,0,49,
54130,1,233,1,3, 54350,1,231,1,3,
54141,2,1,1,1559, 54361,2,1,1,1569,
541522,1,91,1,1231, 543722,1,89,1,480,
54161560,17,1561,15,1108, 54381570,17,1571,15,1572,
54171,-1,1,5,1562, 54394,26,37,0,76,
541820,1563,4,36,83,
54190,105,0,109,0,
5420112,0,108,0,101,
54210,65,0,115,0,
5422115,0,105,0,103,
54230,110,0,109,0,
5424101,0,110,0,116,
54250,95,0,57,0,
54261,213,1,3,1,
54276,1,5,1564,22,
54281,71,1,479,1565,
542917,1566,15,1551,1,
5430-1,1,5,1567,20,
54311568,4,20,67,0,
5432111,0,110,0,115,
54330,116,0,97,0,
5434110,0,116,0,95,
54350,49,0,1,231,
54361,3,1,2,1,
54371,1569,22,1,89,
54381,480,1570,17,1571,
543915,1572,4,26,37,
54400,76,0,105,0,
5441115,0,116,0,67,
54420,111,0,110,0,
5443115,0,116,0,97,
54440,110,0,116,0,
54451,-1,1,5,1573,
544620,1574,4,28,76,
54470,105,0,115,0, 54400,105,0,115,0,
5448116,0,67,0,111, 5441116,0,67,0,111,
54490,110,0,115,0, 54420,110,0,115,0,
5450116,0,97,0,110, 5443116,0,97,0,110,
54510,116,0,95,0, 54440,116,0,1,-1,
545249,0,1,235,1, 54451,5,1573,20,1574,
54533,1,4,1,3, 54464,28,76,0,105,
54541575,22,1,93,1, 54470,115,0,116,0,
54551485,1576,17,1577,15,
54561108,1,-1,1,5,
54571578,20,1579,4,36,
545883,0,105,0,109,
54590,112,0,108,0,
5460101,0,65,0,115,
54610,115,0,105,0,
5462103,0,110,0,109,
54630,101,0,110,0,
5464116,0,95,0,50,
54650,1,206,1,3,
54661,4,1,3,1580,
546722,1,64,1,1737,
54681581,16,0,280,1,
54691989,925,1,1990,1582,
547017,1152,1,0,1156,
54711,242,1583,17,1584,
547215,1131,1,-1,1,
54735,1585,20,1586,4,
547436,66,0,105,0,
5475110,0,97,0,114,
54760,121,0,69,0,
5477120,0,112,0,114,
54780,101,0,115,0,
5479115,0,105,0,111,
54800,110,0,95,0,
548154,0,1,255,1,
54823,1,4,1,3,
54831587,22,1,113,1,
5484478,1588,17,1589,15,
54851551,1,-1,1,5,
54861590,20,1591,4,20,
548767,0,111,0,110, 544867,0,111,0,110,
54880,115,0,116,0, 54490,115,0,116,0,
548997,0,110,0,116, 545097,0,110,0,116,
54900,95,0,50,0, 54510,95,0,49,0,
54911,232,1,3,1, 54521,235,1,3,1,
54922,1,1,1592,22, 54534,1,3,1575,22,
54931,90,1,1370,1593, 54541,93,1,1485,1576,
549417,1594,15,1108,1, 545517,1577,15,1108,1,
5495-1,1,5,1595,20, 5456-1,1,5,1578,20,
54961596,4,38,83,0, 54571579,4,36,83,0,
5497105,0,109,0,112, 5458105,0,109,0,112,
54980,108,0,101,0, 54590,108,0,101,0,
549965,0,115,0,115, 546065,0,115,0,115,
55000,105,0,103,0, 54610,105,0,103,0,
5501110,0,109,0,101, 5462110,0,109,0,101,
55020,110,0,116,0, 54630,110,0,116,0,
550395,0,49,0,56, 546495,0,50,0,1,
55040,1,222,1,3, 5465206,1,3,1,4,
55051,4,1,3,1597, 54661,3,1580,22,1,
550622,1,80,1,1001, 546764,1,1737,1581,16,
55071598,17,1599,15,1234, 54680,280,1,1989,925,
55081,-1,1,5,1600, 54691,1990,1582,17,1152,
550920,1601,4,40,84, 54701,0,1156,1,242,
55100,121,0,112,0, 54711583,17,1584,15,1131,
5511101,0,99,0,97, 54721,-1,1,5,1585,
55120,115,0,116,0, 547320,1586,4,36,66,
551369,0,120,0,112, 54740,105,0,110,0,
55140,114,0,101,0, 547597,0,114,0,121,
54760,69,0,120,0,
5477112,0,114,0,101,
54780,115,0,115,0,
5479105,0,111,0,110,
54800,95,0,54,0,
54811,255,1,3,1,
54824,1,3,1587,22,
54831,113,1,478,1588,
548417,1589,15,1551,1,
5485-1,1,5,1590,20,
54861591,4,20,67,0,
5487111,0,110,0,115,
54880,116,0,97,0,
5489110,0,116,0,95,
54900,50,0,1,232,
54911,3,1,2,1,
54921,1592,22,1,90,
54931,1370,1593,17,1594,
549415,1108,1,-1,1,
54955,1595,20,1596,4,
549638,83,0,105,0,
5497109,0,112,0,108,
54980,101,0,65,0,
5515115,0,115,0,105, 5499115,0,115,0,105,
55160,111,0,110,0, 55000,103,0,110,0,
551795,0,56,0,1, 5501109,0,101,0,110,
5518280,1,3,1,5, 55020,116,0,95,0,
55191,4,1602,22,1, 550349,0,56,0,1,
5520138,1,1002,1603,17, 5504222,1,3,1,4,
55211604,15,1234,1,-1, 55051,3,1597,22,1,
55221,5,1605,20,1606, 550680,1,1001,1598,17,
55071599,15,1234,1,-1,
55081,5,1600,20,1601,
55234,40,84,0,121, 55094,40,84,0,121,
55240,112,0,101,0, 55100,112,0,101,0,
552599,0,97,0,115, 551199,0,97,0,115,
@@ -5528,158 +5514,196 @@ public yyLSLSyntax
55280,101,0,115,0, 55140,101,0,115,0,
5529115,0,105,0,111, 5515115,0,105,0,111,
55300,110,0,95,0, 55160,110,0,95,0,
553149,0,1,273,1, 551756,0,1,280,1,
55323,1,5,1,4, 55183,1,5,1,4,
55331607,22,1,131,1, 55191602,22,1,138,1,
553412,1608,19,163,1, 55201002,1603,17,1604,15,
553512,1609,5,44,1, 55211234,1,-1,1,5,
55361901,1610,16,0,161, 55221605,20,1606,4,40,
55371,2075,1611,16,0, 552384,0,121,0,112,
5538161,1,1860,831,1, 55240,101,0,99,0,
55391803,797,1,1804,1612, 552597,0,115,0,116,
554016,0,161,1,2413, 55260,69,0,120,0,
55411613,16,0,161,1, 5527112,0,114,0,101,
55422198,1614,16,0,161, 55280,115,0,115,0,
55431,1873,845,1,1657, 5529105,0,111,0,110,
5544903,1,1989,925,1, 55300,95,0,49,0,
55451990,1615,16,0,161, 55311,273,1,3,1,
55461,31,1616,16,0, 55325,1,4,1607,22,
5547161,1,32,1617,16, 55331,131,1,12,1608,
55480,161,1,2105,824, 553419,163,1,12,1609,
55491,2106,1618,16,0, 55355,44,1,1901,1610,
5550161,1,2227,917,1, 553616,0,161,1,2075,
55512337,1619,16,0,161, 55371611,16,0,161,1,
55521,2665,1620,16,0, 55381860,831,1,1803,797,
5553161,1,2021,728,1, 55391,1804,1612,16,0,
55542458,885,1,2459,891, 5540161,1,2413,1613,16,
55551,2462,898,1,2136, 55410,161,1,2198,1614,
5556852,1,2464,908,1, 554216,0,161,1,1873,
55572029,735,1,2030,741, 5543845,1,1657,903,1,
55581,2031,746,1,2032, 55441989,925,1,1990,1615,
5559751,1,2469,1621,16, 554516,0,161,1,31,
55600,468,1,2035,762, 55461616,16,0,161,1,
55611,2364,837,1,2039, 554732,1617,16,0,161,
5562772,1,1931,870,1, 55481,2105,824,1,2106,
55632041,778,1,2507,1622, 55491618,16,0,161,1,
556416,0,161,1,2043, 55502227,917,1,2337,1619,
5565784,1,2045,789,1, 555116,0,161,1,2665,
55661775,1623,16,0,161, 55521620,16,0,161,1,
55671,2568,1624,16,0, 55532021,728,1,2458,885,
5568583,1,2033,756,1, 55541,2459,891,1,2462,
55692522,1625,16,0,161, 5555898,1,2136,852,1,
55701,2037,767,1,1574, 55562464,908,1,2029,735,
5571809,1,1958,1626,16, 55571,2030,741,1,2031,
55720,161,1,13,1627, 5558746,1,2032,751,1,
557319,151,1,13,1628, 55592469,1621,16,0,468,
55745,37,1,2509,1629, 55601,2035,762,1,2364,
557517,1630,15,1631,4, 5561837,1,2039,772,1,
557642,37,0,83,0, 55621931,870,1,2041,778,
5577116,0,97,0,116, 55631,2507,1622,16,0,
55780,101,0,69,0, 5564161,1,2043,784,1,
5579110,0,116,0,114, 55652045,789,1,1775,1623,
55800,121,0,83,0, 556616,0,161,1,2568,
55671624,16,0,583,1,
55682033,756,1,2522,1625,
556916,0,161,1,2037,
5570767,1,1574,809,1,
55711958,1626,16,0,161,
55721,13,1627,19,151,
55731,13,1628,5,37,
55741,2509,1629,17,1630,
557515,1631,4,36,37,
55760,86,0,111,0,
5577105,0,100,0,65,
55780,114,0,103,0,
557983,0,116,0,97,
55800,116,0,101,0,
558169,0,118,0,101,
55820,110,0,116,0,
55831,-1,1,5,1632,
558420,1633,4,38,86,
55850,111,0,105,0,
5586100,0,65,0,114,
55870,103,0,83,0,
5581116,0,97,0,116, 5588116,0,97,0,116,
55820,101,0,69,0, 55890,101,0,69,0,
5583118,0,101,0,110, 5590118,0,101,0,110,
55840,116,0,1,-1, 55910,116,0,95,0,
55851,5,1632,20,1633, 559249,0,1,163,1,
55864,44,83,0,116, 55933,1,5,1,4,
55870,97,0,116,0, 55941634,22,1,20,1,
5588101,0,69,0,110, 55951860,831,1,1803,797,
55890,116,0,114,0, 55961,2413,1635,16,0,
5590121,0,83,0,116, 5597462,1,2524,1636,17,
55981637,15,1638,4,22,
559937,0,83,0,116,
55910,97,0,116,0, 56000,97,0,116,0,
5592101,0,69,0,118, 5601101,0,69,0,118,
55930,101,0,110,0, 56020,101,0,110,0,
5594116,0,95,0,49, 5603116,0,1,-1,1,
55950,1,163,1,3, 56045,1639,20,1640,4,
55961,5,1,4,1634, 560524,83,0,116,0,
559722,1,20,1,1860,
5598831,1,1803,797,1,
55992413,1635,16,0,462,
56001,2524,1636,17,1637,
560115,1638,4,22,37,
56020,83,0,116,0,
560397,0,116,0,101, 560697,0,116,0,101,
56040,69,0,118,0, 56070,69,0,118,0,
5605101,0,110,0,116, 5608101,0,110,0,116,
56060,1,-1,1,5, 56090,95,0,49,0,
56071639,20,1640,4,24, 56101,162,1,3,1,
560883,0,116,0,97, 56116,1,5,1641,22,
56090,116,0,101,0, 56121,19,1,2526,1642,
561069,0,118,0,101, 561316,0,478,1,1873,
56110,110,0,116,0, 5614845,1,1657,903,1,
561295,0,49,0,1, 56151989,925,1,32,1643,
5613162,1,3,1,6, 561616,0,463,1,2567,
56141,5,1641,22,1, 56171644,17,1645,15,1646,
561519,1,2526,1642,16, 56184,20,37,0,83,
56160,478,1,1873,845, 56190,116,0,97,0,
56171,1657,903,1,1989, 5620116,0,101,0,66,
5618925,1,32,1643,16, 56210,111,0,100,0,
56190,463,1,2567,1644, 5622121,0,1,-1,1,
562017,1645,15,1646,4, 56235,1647,20,1648,4,
562120,37,0,83,0, 562422,83,0,116,0,
562597,0,116,0,101,
56260,66,0,111,0,
5627100,0,121,0,95,
56280,49,0,1,158,
56291,3,1,2,1,
56301,1649,22,1,15,
56311,2105,824,1,2364,
5632837,1,2227,917,1,
56331574,809,1,2563,1650,
563417,1651,15,1646,1,
5635-1,1,5,1652,20,
56361653,4,22,83,0,
5622116,0,97,0,116, 5637116,0,97,0,116,
56230,101,0,66,0, 56380,101,0,66,0,
5624111,0,100,0,121, 5639111,0,100,0,121,
56250,1,-1,1,5, 56400,95,0,52,0,
56261647,20,1648,4,22, 56411,161,1,3,1,
562783,0,116,0,97, 56423,1,2,1654,22,
56280,116,0,101,0, 56431,18,1,2564,1655,
562966,0,111,0,100, 564417,1656,15,1646,1,
56300,121,0,95,0, 5645-1,1,5,1657,20,
563149,0,1,158,1, 56461658,4,22,83,0,
56323,1,2,1,1, 5647116,0,97,0,116,
56331649,22,1,15,1, 56480,101,0,66,0,
56342105,824,1,2364,837, 5649111,0,100,0,121,
56351,2227,917,1,1574, 56500,95,0,50,0,
5636809,1,2563,1650,17, 56511,159,1,3,1,
56371651,15,1646,1,-1, 56523,1,2,1659,22,
56381,5,1652,20,1653, 56531,16,1,2566,1660,
56394,22,83,0,116, 565417,1661,15,1646,1,
56400,97,0,116,0, 5655-1,1,5,1662,20,
5641101,0,66,0,111, 56561663,4,22,83,0,
56420,100,0,121,0, 5657116,0,97,0,116,
564395,0,52,0,1, 56580,101,0,66,0,
5644161,1,3,1,3, 5659111,0,100,0,121,
56451,2,1654,22,1, 56600,95,0,51,0,
564618,1,2564,1655,17, 56611,160,1,3,1,
56471656,15,1646,1,-1, 56622,1,1,1664,22,
56481,5,1657,20,1658, 56631,17,1,2458,885,
56494,22,83,0,116, 56641,2459,891,1,2462,
56500,97,0,116,0, 5665898,1,2136,852,1,
5651101,0,66,0,111, 56662464,908,1,2029,735,
56520,100,0,121,0, 56671,2030,741,1,2031,
565395,0,50,0,1, 5668746,1,2032,751,1,
5654159,1,3,1,3, 56692033,756,1,2035,762,
56551,2,1659,22,1, 56701,2037,767,1,2039,
565616,1,2566,1660,17, 5671772,1,1931,870,1,
56571661,15,1646,1,-1, 56722041,778,1,2021,728,
56581,5,1662,20,1663, 56731,2043,784,1,2045,
56594,22,83,0,116, 5674789,1,2606,1665,16,
56750,149,1,14,1666,
567619,144,1,14,1667,
56775,105,1,2511,1668,
567817,1669,15,1670,4,
567948,37,0,65,0,
5680114,0,103,0,117,
56810,109,0,101,0,
5682110,0,116,0,68,
56830,101,0,99,0,
5684108,0,97,0,114,
56600,97,0,116,0, 56850,97,0,116,0,
5661101,0,66,0,111, 5686105,0,111,0,110,
56620,100,0,121,0, 56870,76,0,105,0,
566395,0,51,0,1, 5688115,0,116,0,1,
5664160,1,3,1,2, 5689-1,1,5,140,1,
56651,1,1664,22,1, 56900,1,0,1671,22,
566617,1,2458,885,1, 56911,21,1,1260,1106,
56672459,891,1,2462,898, 56921,1011,1112,1,1514,
56681,2136,852,1,2464, 56931118,1,9,1123,1,
5669908,1,2029,735,1, 569410,1672,17,1673,15,
56702030,741,1,2031,746, 56951670,1,-1,1,5,
56711,2032,751,1,2033, 5696140,1,0,1,0,
5672756,1,2035,762,1, 56971671,1,262,1129,1,
56732037,767,1,2039,772, 56981267,1135,1,1521,1140,
56741,1931,870,1,2041, 56991,1773,1674,16,0,
5675778,1,2021,728,1, 5700148,1,19,1157,1,
56762043,784,1,2045,789, 570120,1675,16,0,142,
56771,2606,1665,16,0, 57021,2281,1164,1,525,
5678149,1,14,1666,19, 57031226,1,30,1676,17,
5679144,1,14,1667,5, 57041677,15,1670,1,-1,
5680105,1,2511,1668,17, 57051,5,1678,20,1679,
56811669,15,1670,4,48, 57064,50,65,0,114,
568237,0,65,0,114,
56830,103,0,117,0, 57070,103,0,117,0,
5684109,0,101,0,110, 5708109,0,101,0,110,
56850,116,0,68,0, 57090,116,0,68,0,
@@ -5688,1682 +5712,1084 @@ public yyLSLSyntax
568897,0,116,0,105, 571297,0,116,0,105,
56890,111,0,110,0, 57130,111,0,110,0,
569076,0,105,0,115, 571476,0,105,0,115,
56910,116,0,1,-1, 57150,116,0,95,0,
56921,5,140,1,0, 571650,0,1,165,1,
56931,0,1671,22,1, 57173,1,4,1,3,
569421,1,1260,1106,1, 57181680,22,1,23,1,
56951011,1112,1,1514,1118, 5719283,1182,1,40,1187,
56961,9,1123,1,10, 57201,41,1681,17,1682,
56971672,17,1673,15,1670, 572115,1683,4,26,37,
56981,-1,1,5,140, 57220,65,0,114,0,
56991,0,1,0,1671,
57001,262,1129,1,1267,
57011135,1,1521,1140,1,
57021773,1674,16,0,148,
57031,19,1157,1,20,
57041675,16,0,142,1,
57052281,1164,1,525,1226,
57061,30,1676,17,1677,
570715,1670,1,-1,1,
57085,1678,20,1679,4,
570950,65,0,114,0,
5710103,0,117,0,109, 5723103,0,117,0,109,
57110,101,0,110,0, 57240,101,0,110,0,
5712116,0,68,0,101, 5725116,0,76,0,105,
57130,99,0,108,0, 57260,115,0,116,0,
571497,0,114,0,97, 57271,-1,1,5,617,
57150,116,0,105,0, 57281,0,1,0,1684,
5716111,0,110,0,76, 572922,1,141,1,42,
57170,105,0,115,0, 57301685,17,1686,15,1687,
5718116,0,95,0,50, 57314,38,37,0,69,
57190,1,165,1,3, 57320,120,0,112,0,
57201,4,1,3,1680, 5733114,0,101,0,115,
572122,1,23,1,283, 57340,115,0,105,0,
57221182,1,40,1187,1, 5735111,0,110,0,65,
572341,1681,17,1682,15, 57360,114,0,103,0,
57241683,4,26,37,0, 5737117,0,109,0,101,
572565,0,114,0,103, 57380,110,0,116,0,
57260,117,0,109,0, 57391,-1,1,5,1688,
5727101,0,110,0,116, 574020,1689,4,40,69,
57280,76,0,105,0, 57410,120,0,112,0,
5729115,0,116,0,1, 5742114,0,101,0,115,
5730-1,1,5,617,1, 57430,115,0,105,0,
57310,1,0,1684,22, 5744111,0,110,0,65,
57321,141,1,42,1685, 57450,114,0,103,0,
573317,1686,15,1687,4, 5746117,0,109,0,101,
573438,37,0,69,0, 57470,110,0,116,0,
5735120,0,112,0,114, 574895,0,49,0,1,
57360,101,0,115,0, 5749285,1,3,1,2,
5737115,0,105,0,111, 57501,1,1690,22,1,
57380,110,0,65,0, 5751144,1,44,1193,1,
5739114,0,103,0,117, 575247,1194,1,48,1200,
57400,109,0,101,0, 57531,49,1206,1,50,
5741110,0,116,0,1, 57541211,1,51,1216,1,
5742-1,1,5,1688,20, 5755305,1221,1,63,1232,
57431689,4,40,69,0, 57561,66,1238,1,67,
5744120,0,112,0,114, 57571243,1,1478,1463,1,
57450,101,0,115,0, 575869,1253,1,70,1258,
5746115,0,105,0,111, 57591,68,1248,1,74,
57470,110,0,65,0, 57601263,1,1013,1268,1,
5748114,0,103,0,117, 57612335,1691,16,0,148,
57490,109,0,101,0, 57621,1332,1273,1,1048,
5750110,0,116,0,95, 57631354,1,82,1290,1,
57510,49,0,1,285, 57641296,1177,1,1341,1307,
57521,3,1,2,1, 57651,328,1312,1,1303,
57531,1690,22,1,144, 57661317,1,1096,1322,1,
57541,44,1193,1,47, 576793,1328,1,1550,1333,
57551194,1,48,1200,1, 57681,352,1359,1,107,
575649,1206,1,50,1211, 57691348,1,1114,1353,1,
57571,51,1216,1,305, 57701370,1593,1,118,1365,
57581221,1,63,1232,1, 57711,1123,1370,1,371,
575966,1238,1,67,1243, 57721375,1,1377,1381,1,
57601,1478,1463,1,69, 5773375,1386,1,377,1391,
57611253,1,70,1258,1, 57741,379,1396,1,380,
576268,1248,1,74,1263, 57751401,1,883,1407,1,
57631,1013,1268,1,2335, 5776373,1419,1,130,1424,
57641691,16,0,148,1, 57771,143,1429,1,2654,
57651332,1273,1,1048,1354, 57781692,17,1693,15,1670,
57661,82,1290,1,1296, 57791,-1,1,5,140,
57671177,1,1341,1307,1, 57801,0,1,0,1671,
5768328,1312,1,1303,1317, 57811,1152,1435,1,387,
57691,1096,1322,1,93, 57821694,16,0,566,1,
57701328,1,1550,1333,1, 57831406,1440,1,2663,1695,
5771352,1359,1,107,1348, 578416,0,142,1,1159,
57721,1114,1353,1,1370, 57851447,1,157,1452,1,
57731593,1,118,1365,1, 57861413,1457,1,1665,1475,
57741123,1370,1,371,1375, 57871,412,1696,16,0,
57751,1377,1381,1,375, 5788591,1,1094,1697,16,
57761386,1,377,1391,1, 57890,619,1,2520,1698,
5777379,1396,1,380,1401, 579016,0,142,1,172,
57781,883,1407,1,373, 57911470,1,827,1341,1,
57791419,1,130,1424,1, 57921188,1480,1,437,1699,
5780143,1429,1,2654,1692, 579316,0,660,1,1442,
578117,1693,15,1670,1, 57941485,1,1694,1700,16,
5782-1,1,5,140,1, 57950,148,1,942,1491,
57830,1,0,1671,1, 57961,1195,1497,1,1449,
57841152,1435,1,387,1694, 57971502,1,1701,1507,1,
578516,0,566,1,1406, 5798447,1512,1,188,1519,
57861440,1,2663,1695,16, 57991,205,1524,1,2467,
57870,142,1,1159,1447, 58001701,17,1702,15,1670,
57881,157,1452,1,1413, 58011,-1,1,5,1703,
57891457,1,1665,1475,1, 580220,1704,4,50,65,
5790412,1696,16,0,591, 58030,114,0,103,0,
57911,1094,1697,16,0, 5804117,0,109,0,101,
5792619,1,2520,1698,16, 58050,110,0,116,0,
57930,142,1,172,1470, 580668,0,101,0,99,
57941,827,1341,1,1188, 58070,108,0,97,0,
57951480,1,437,1699,16, 5808114,0,97,0,116,
57960,660,1,1442,1485, 58090,105,0,111,0,
57971,1694,1700,16,0, 5810110,0,76,0,105,
5798148,1,942,1491,1, 58110,115,0,116,0,
57991195,1497,1,1449,1502, 581295,0,49,0,1,
58001,1701,1507,1,447, 5813164,1,3,1,2,
58011512,1,188,1519,1, 58141,1,1705,22,1,
5802205,1524,1,2467,1701, 581522,1,461,1706,16,
580317,1702,15,1670,1, 58160,619,1,464,1707,
5804-1,1,5,1703,20, 581717,1708,15,1683,1,
58051704,4,50,65,0, 5818-1,1,5,1709,20,
5806114,0,103,0,117, 58191710,4,28,65,0,
58070,109,0,101,0,
5808110,0,116,0,68,
58090,101,0,99,0,
5810108,0,97,0,114,
58110,97,0,116,0,
5812105,0,111,0,110,
58130,76,0,105,0,
5814115,0,116,0,95,
58150,49,0,1,164,
58161,3,1,2,1,
58171,1705,22,1,22,
58181,461,1706,16,0,
5819619,1,464,1707,17,
58201708,15,1683,1,-1,
58211,5,1709,20,1710,
58224,28,65,0,114,
58230,103,0,117,0,
5824109,0,101,0,110,
58250,116,0,76,0,
5826105,0,115,0,116,
58270,95,0,50,0,
58281,284,1,3,1,
58294,1,3,1711,22,
58301,143,1,1224,1534,
58311,223,1539,1,1730,
58321544,1,476,1549,1,
5833477,1555,1,1231,1560,
58341,479,1565,1,480,
58351570,1,1485,1576,1,
5836459,1712,17,1713,15,
58371683,1,-1,1,5,
5838617,1,0,1,0,
58391684,1,242,1583,1,
5840478,1588,1,481,1714,
584117,1715,15,1683,1,
5842-1,1,5,1716,20,
58431717,4,28,65,0,
5844114,0,103,0,117, 5820114,0,103,0,117,
58450,109,0,101,0, 58210,109,0,101,0,
5846110,0,116,0,76, 5822110,0,116,0,76,
58470,105,0,115,0, 58230,105,0,115,0,
5848116,0,95,0,49, 5824116,0,95,0,50,
58490,1,283,1,3, 58250,1,284,1,3,
58501,2,1,1,1718, 58261,4,1,3,1711,
585122,1,142,1,1001, 582722,1,143,1,1224,
58521598,1,1002,1603,1, 58281534,1,223,1539,1,
585315,1719,19,308,1, 58291730,1544,1,476,1549,
585415,1720,5,6,1, 58301,477,1555,1,1231,
58552669,1721,16,0,601, 58311560,1,479,1565,1,
58561,1114,1722,16,0, 5832480,1570,1,1485,1576,
5857306,1,1621,1723,16, 58331,459,1712,17,1713,
58580,659,1,40,1724, 583415,1683,1,-1,1,
585916,0,562,1,19, 58355,617,1,0,1,
58601157,1,9,1123,1, 58360,1684,1,242,1583,
586116,1725,19,136,1, 58371,478,1588,1,481,
586216,1726,5,140,1, 58381714,17,1715,15,1683,
58632510,1727,16,0,602, 58391,-1,1,5,1716,
58641,256,1728,16,0, 584020,1717,4,28,65,
5865196,1,1261,1729,16, 58410,114,0,103,0,
58660,196,1,509,1730, 5842117,0,109,0,101,
586716,0,196,1,9, 58430,110,0,116,0,
58681731,16,0,134,1, 584476,0,105,0,115,
58692021,728,1,1775,1732, 58450,116,0,95,0,
587016,0,196,1,2029, 584649,0,1,283,1,
5871735,1,2030,741,1, 58473,1,2,1,1,
58722031,746,1,2032,751, 58481718,22,1,142,1,
58731,2033,756,1,277, 58491001,1598,1,1002,1603,
58741733,16,0,196,1, 58501,15,1719,19,308,
58752035,762,1,2037,767, 58511,15,1720,5,6,
58761,2039,772,1,32, 58521,2669,1721,16,0,
58771734,16,0,196,1, 5853601,1,1114,1722,16,
58782041,778,1,2293,1735, 58540,306,1,1621,1723,
587916,0,196,1,2043, 585516,0,659,1,40,
5880784,1,2045,789,1, 58561724,16,0,562,1,
588140,1736,16,0,175, 585719,1157,1,9,1123,
58821,41,1737,16,0, 58581,16,1725,19,136,
5883196,1,1297,1738,16, 58591,16,1726,5,140,
58840,196,1,43,1739, 58601,2510,1727,16,0,
588516,0,196,1,44, 5861602,1,256,1728,16,
58861740,16,0,175,1, 58620,196,1,1261,1729,
58871803,797,1,1804,1741, 586316,0,196,1,509,
588816,0,196,1,299, 58641730,16,0,196,1,
58891742,16,0,196,1, 58659,1731,16,0,134,
58902480,1743,17,1744,15, 58661,2021,728,1,1775,
58911745,4,12,37,0, 58671732,16,0,196,1,
58682029,735,1,2030,741,
58691,2031,746,1,2032,
5870751,1,2033,756,1,
5871277,1733,16,0,196,
58721,2035,762,1,2037,
5873767,1,2039,772,1,
587432,1734,16,0,196,
58751,2041,778,1,2293,
58761735,16,0,196,1,
58772043,784,1,2045,789,
58781,40,1736,16,0,
5879175,1,41,1737,16,
58800,196,1,1297,1738,
588116,0,196,1,43,
58821739,16,0,196,1,
588344,1740,16,0,175,
58841,1803,797,1,1804,
58851741,16,0,196,1,
5886299,1742,16,0,196,
58871,2480,1743,17,1744,
588815,1745,4,12,37,
58890,69,0,118,0,
5890101,0,110,0,116,
58910,1,-1,1,5,
58921746,20,1747,4,16,
589269,0,118,0,101, 589369,0,118,0,101,
58930,110,0,116,0, 58940,110,0,116,0,
58941,-1,1,5,1746, 589595,0,50,0,53,
589520,1747,4,16,69, 58960,1,317,1,3,
58960,118,0,101,0, 58971,2,1,1,1748,
5897110,0,116,0,95, 589822,1,176,1,52,
58980,50,0,53,0, 58991749,16,0,196,1,
58991,317,1,3,1, 59002484,1750,17,1751,15,
59002,1,1,1748,22,
59011,176,1,52,1749,
590216,0,196,1,2484,
59031750,17,1751,15,1745,
59041,-1,1,5,1752,
590520,1753,4,16,69,
59060,118,0,101,0,
5907110,0,116,0,95,
59080,50,0,49,0,
59091,313,1,3,1,
59102,1,1,1754,22,
59111,172,1,1515,1755,
591216,0,196,1,2318,
59131756,16,0,196,1,
59142491,1757,17,1758,15,
59151745,1,-1,1,5, 59011745,1,-1,1,5,
59161759,20,1760,4,16, 59021752,20,1753,4,16,
591769,0,118,0,101, 590369,0,118,0,101,
59180,110,0,116,0, 59040,110,0,116,0,
591995,0,49,0,52, 590595,0,50,0,49,
59200,1,306,1,3, 59060,1,313,1,3,
59211,2,1,1,1761, 59071,2,1,1,1754,
592222,1,165,1,62, 590822,1,172,1,1515,
59231762,16,0,212,1, 59091755,16,0,196,1,
592463,1763,16,0,175, 59102318,1756,16,0,196,
59251,2495,1764,17,1765, 59111,2491,1757,17,1758,
592615,1745,1,-1,1, 591215,1745,1,-1,1,
59275,1766,20,1767,4, 59135,1759,20,1760,4,
592816,69,0,118,0, 591416,69,0,118,0,
5929101,0,110,0,116, 5915101,0,110,0,116,
59300,95,0,49,0, 59160,95,0,49,0,
593148,0,1,302,1, 591752,0,1,306,1,
59323,1,2,1,1, 59183,1,2,1,1,
59331768,22,1,161,1, 59191761,22,1,165,1,
59342075,1769,16,0,196, 592062,1762,16,0,212,
59351,1574,809,1,1479, 59211,63,1763,16,0,
59361770,16,0,196,1, 5922175,1,2495,1764,17,
593771,1771,16,0,196, 59231765,15,1745,1,-1,
59381,1622,1772,16,0, 59241,5,1766,20,1767,
5939196,1,1658,1773,16, 59254,16,69,0,118,
59400,682,1,1833,1774, 59260,101,0,110,0,
594116,0,297,1,1834, 5927116,0,95,0,49,
59421775,16,0,196,1, 59280,48,0,1,302,
59432337,1776,16,0,196, 59291,3,1,2,1,
59441,79,1777,16,0, 59301,1768,22,1,161,
5945196,1,1335,1778,16, 59311,2075,1769,16,0,
59460,196,1,322,1779, 5932196,1,1574,809,1,
594716,0,196,1,76, 59331479,1770,16,0,196,
59481780,16,0,196,1, 59341,71,1771,16,0,
594985,1781,16,0,196, 5935196,1,1622,1772,16,
59501,89,1782,16,0, 59360,196,1,1658,1773,
5951196,1,346,1783,16, 593716,0,682,1,1833,
59520,196,1,97,1784, 59381774,16,0,297,1,
595316,0,196,1,2106, 59391834,1775,16,0,196,
59541785,16,0,196,1, 59401,2337,1776,16,0,
5955102,1786,16,0,196, 5941196,1,79,1777,16,
59561,1860,831,1,2458, 59420,196,1,1335,1778,
5957885,1,2364,837,1, 594316,0,196,1,322,
59581990,1787,16,0,196, 59441779,16,0,196,1,
59591,112,1788,16,0, 594576,1780,16,0,196,
5960196,1,1117,1789,16, 59461,85,1781,16,0,
59610,196,1,1873,845, 5947196,1,89,1782,16,
59621,1875,1790,16,0, 59480,196,1,346,1783,
5963408,1,1876,1791,16, 594916,0,196,1,97,
59640,196,1,124,1792, 59501784,16,0,196,1,
596516,0,196,1,2478, 59512106,1785,16,0,196,
59661793,17,1794,15,1745, 59521,102,1786,16,0,
59671,-1,1,5,1795, 5953196,1,1860,831,1,
596820,1796,4,16,69, 59542458,885,1,2364,837,
59690,118,0,101,0, 59551,1990,1787,16,0,
5970110,0,116,0,95, 5956196,1,112,1788,16,
59710,50,0,55,0, 59570,196,1,1117,1789,
59721,319,1,3,1, 595816,0,196,1,1873,
59732,1,1,1797,22, 5959845,1,1875,1790,16,
59741,178,1,2136,852, 59600,408,1,1876,1791,
59751,381,1798,16,0, 596116,0,196,1,124,
5976196,1,525,1799,16, 59621792,16,0,196,1,
59770,196,1,137,1800, 59632478,1793,17,1794,15,
597816,0,196,1,2653, 59641745,1,-1,1,5,
59791801,16,0,586,1, 59651795,20,1796,4,16,
59801901,1802,16,0,196, 596669,0,118,0,101,
59811,1153,1803,16,0, 59670,110,0,116,0,
5982196,1,151,1804,16, 596895,0,50,0,55,
59830,196,1,1407,1805, 59690,1,319,1,3,
598416,0,196,1,1659, 59701,2,1,1,1797,
59851806,16,0,196,1, 597122,1,178,1,2136,
59862413,1807,16,0,196, 5972852,1,381,1798,16,
59871,406,1808,16,0, 59730,196,1,525,1799,
5988196,1,1371,1809,16, 597416,0,196,1,137,
59890,196,1,2105,824, 59751800,16,0,196,1,
59901,166,1810,16,0, 59762653,1801,16,0,586,
5991196,1,2670,1811,16, 59771,1901,1802,16,0,
59920,196,1,1931,870, 5978196,1,1153,1803,16,
59931,1932,1812,16,0, 59790,196,1,151,1804,
5994470,1,1933,1813,16, 598016,0,196,1,1407,
59950,196,1,431,1814, 59811805,16,0,196,1,
599616,0,196,1,1585, 59821659,1806,16,0,196,
59971815,16,0,196,1, 59831,2413,1807,16,0,
5998182,1816,16,0,196, 5984196,1,406,1808,16,
59991,1189,1817,16,0, 59850,196,1,1371,1809,
6000196,1,1443,1818,16, 598616,0,196,1,2105,
60010,196,1,1695,1819, 5987824,1,166,1810,16,
600216,0,196,1,2198, 59880,196,1,2670,1811,
60031820,16,0,196,1, 598916,0,196,1,1931,
6004447,1821,16,0,196, 5990870,1,1932,1812,16,
60051,199,1822,16,0, 59910,470,1,1933,1813,
6006196,1,2459,891,1, 599216,0,196,1,431,
60071958,1823,16,0,196, 59931814,16,0,196,1,
60081,2462,898,1,1657, 59941585,1815,16,0,196,
6009903,1,2464,908,1, 59951,182,1816,16,0,
6010459,1824,16,0,196, 5996196,1,1189,1817,16,
60111,462,1825,16,0, 59970,196,1,1443,1818,
6012196,1,2471,1826,17, 599816,0,196,1,1695,
60131827,15,1828,4,22, 59991819,16,0,196,1,
601437,0,69,0,110, 60002198,1820,16,0,196,
60150,116,0,114,0, 60011,447,1821,16,0,
6016121,0,69,0,118, 6002196,1,199,1822,16,
60030,196,1,2459,891,
60041,1958,1823,16,0,
6005196,1,2462,898,1,
60061657,903,1,2464,908,
60071,459,1824,16,0,
6008196,1,462,1825,16,
60090,196,1,2471,1826,
601017,1827,15,1828,4,
601126,37,0,86,0,
6012111,0,105,0,100,
60130,65,0,114,0,
6014103,0,69,0,118,
60170,101,0,110,0, 60150,101,0,110,0,
6018116,0,1,-1,1, 6016116,0,1,-1,1,
60195,1829,20,1830,4, 60175,1829,20,1830,4,
602024,69,0,110,0, 601828,86,0,111,0,
6021116,0,114,0,121, 6019105,0,100,0,65,
60200,114,0,103,0,
602169,0,118,0,101,
60220,110,0,116,0,
602395,0,55,0,1,
6024326,1,3,1,2,
60251,1,1831,22,1,
6026185,1,2472,1832,17,
60271833,15,1828,1,-1,
60281,5,1834,20,1835,
60294,28,86,0,111,
60300,105,0,100,0,
603165,0,114,0,103,
60220,69,0,118,0, 60320,69,0,118,0,
6023101,0,110,0,116, 6033101,0,110,0,116,
60240,95,0,49,0, 60340,95,0,54,0,
60251,326,1,3,1, 60351,325,1,3,1,
60262,1,1,1831,22, 60362,1,1,1836,22,
60271,185,1,2472,1832, 60371,184,1,2473,1837,
602817,1833,15,1745,1, 603817,1838,15,1828,1,
6029-1,1,5,1834,20, 6039-1,1,5,1839,20,
60301835,4,16,69,0, 60401840,4,28,86,0,
6041111,0,105,0,100,
60420,65,0,114,0,
6043103,0,69,0,118,
60440,101,0,110,0,
6045116,0,95,0,53,
60460,1,324,1,3,
60471,2,1,1,1841,
604822,1,183,1,2474,
60491842,17,1843,15,1828,
60501,-1,1,5,1844,
605120,1845,4,28,86,
60520,111,0,105,0,
6053100,0,65,0,114,
60540,103,0,69,0,
6031118,0,101,0,110, 6055118,0,101,0,110,
60320,116,0,95,0, 60560,116,0,95,0,
603351,0,51,0,1, 605752,0,1,323,1,
6034325,1,3,1,2,
60351,1,1836,22,1,
6036184,1,2473,1837,17,
60371838,15,1745,1,-1,
60381,5,1839,20,1840,
60394,16,69,0,118,
60400,101,0,110,0,
6041116,0,95,0,51,
60420,50,0,1,324,
60431,3,1,2,1,
60441,1841,22,1,183,
60451,2474,1842,17,1843,
604615,1745,1,-1,1,
60475,1844,20,1845,4,
604816,69,0,118,0,
6049101,0,110,0,116,
60500,95,0,51,0,
605149,0,1,323,1,
60523,1,2,1,1, 60583,1,2,1,1,
60531846,22,1,182,1, 60591846,22,1,182,1,
60542475,1847,17,1848,15, 60602475,1847,17,1848,15,
60551745,1,-1,1,5, 60611828,1,-1,1,5,
60561849,20,1850,4,16, 60621849,20,1850,4,28,
605769,0,118,0,101, 606386,0,111,0,105,
60580,110,0,116,0, 60640,100,0,65,0,
605995,0,51,0,48, 6065114,0,103,0,69,
60600,1,322,1,3,
60611,2,1,1,1851,
606222,1,181,1,2476,
60631852,17,1853,15,1745,
60641,-1,1,5,1854,
606520,1855,4,16,69,
60660,118,0,101,0, 60660,118,0,101,0,
6067110,0,116,0,95, 6067110,0,116,0,95,
60680,50,0,57,0, 60680,51,0,1,322,
60691,321,1,3,1, 60691,3,1,2,1,
60702,1,1,1856,22, 60701,1851,22,1,181,
60711,180,1,2477,1857, 60711,2476,1852,17,1853,
607217,1858,15,1745,1, 607215,1828,1,-1,1,
6073-1,1,5,1859,20, 60735,1854,20,1855,4,
60741860,4,16,69,0, 607428,86,0,111,0,
6075118,0,101,0,110, 6075105,0,100,0,65,
60760,116,0,95,0, 60760,114,0,103,0,
607750,0,56,0,1,
6078320,1,3,1,2,
60791,1,1861,22,1,
6080179,1,2227,917,1,
60812479,1862,17,1863,15,
60821745,1,-1,1,5,
60831864,20,1865,4,16,
608469,0,118,0,101, 607769,0,118,0,101,
60850,110,0,116,0, 60780,110,0,116,0,
608695,0,50,0,54, 607995,0,50,0,1,
60870,1,318,1,3, 6080321,1,3,1,2,
60881,2,1,1,1866, 60811,1,1856,22,1,
608922,1,177,1,1225, 6082180,1,2477,1857,17,
60901867,16,0,196,1, 60831858,15,1828,1,-1,
60912481,1868,17,1869,15, 60841,5,1859,20,1860,
60854,28,86,0,111,
60860,105,0,100,0,
608765,0,114,0,103,
60880,69,0,118,0,
6089101,0,110,0,116,
60900,95,0,49,0,
60911,320,1,3,1,
60922,1,1,1861,22,
60931,179,1,2227,917,
60941,2479,1862,17,1863,
609515,1745,1,-1,1,
60965,1864,20,1865,4,
609716,69,0,118,0,
6098101,0,110,0,116,
60990,95,0,50,0,
610054,0,1,318,1,
61013,1,2,1,1,
61021866,22,1,177,1,
61031225,1867,16,0,196,
61041,2481,1868,17,1869,
610515,1745,1,-1,1,
61065,1870,20,1871,4,
610716,69,0,118,0,
6108101,0,110,0,116,
61090,95,0,50,0,
611052,0,1,316,1,
61113,1,2,1,1,
61121872,22,1,175,1,
61132482,1873,17,1874,15,
60921745,1,-1,1,5, 61141745,1,-1,1,5,
60931870,20,1871,4,16, 61151875,20,1876,4,16,
609469,0,118,0,101, 611669,0,118,0,101,
60950,110,0,116,0, 61170,110,0,116,0,
609695,0,50,0,52, 611895,0,50,0,51,
60970,1,316,1,3, 61190,1,315,1,3,
60981,2,1,1,1872, 61201,2,1,1,1877,
609922,1,175,1,2482, 612122,1,174,1,2483,
61001873,17,1874,15,1745, 61221878,17,1879,15,1745,
61011,-1,1,5,1875, 61231,-1,1,5,1880,
610220,1876,4,16,69, 612420,1881,4,16,69,
61030,118,0,101,0, 61250,118,0,101,0,
6104110,0,116,0,95, 6126110,0,116,0,95,
61050,50,0,51,0, 61270,50,0,50,0,
61061,315,1,3,1, 61281,314,1,3,1,
61072,1,1,1877,22, 61292,1,1,1882,22,
61081,174,1,2483,1878, 61301,173,1,1731,1883,
610917,1879,15,1745,1, 613116,0,196,1,2485,
6110-1,1,5,1880,20, 61321884,17,1885,15,1745,
61111881,4,16,69,0, 61331,-1,1,5,1886,
6112118,0,101,0,110, 613420,1887,4,16,69,
61130,116,0,95,0, 61350,118,0,101,0,
611450,0,50,0,1, 6136110,0,116,0,95,
6115314,1,3,1,2, 61370,50,0,48,0,
61161,1,1882,22,1, 61381,312,1,3,1,
6117173,1,1731,1883,16, 61392,1,1,1888,22,
61180,196,1,2485,1884, 61401,171,1,2486,1889,
611917,1885,15,1745,1, 614117,1890,15,1745,1,
6120-1,1,5,1886,20, 6142-1,1,5,1891,20,
61211887,4,16,69,0, 61431892,4,16,69,0,
6122118,0,101,0,110, 6144118,0,101,0,110,
61230,116,0,95,0, 61450,116,0,95,0,
612450,0,48,0,1, 614649,0,57,0,1,
6125312,1,3,1,2, 6147311,1,3,1,2,
61261,1,1888,22,1, 61481,1,1893,22,1,
6127171,1,2486,1889,17, 6149170,1,2487,1894,17,
61281890,15,1745,1,-1, 61501895,15,1745,1,-1,
61291,5,1891,20,1892, 61511,5,1896,20,1897,
61304,16,69,0,118, 61524,16,69,0,118,
61310,101,0,110,0, 61530,101,0,110,0,
6132116,0,95,0,49, 6154116,0,95,0,49,
61330,57,0,1,311, 61550,56,0,1,310,
61341,3,1,2,1, 61561,3,1,2,1,
61351,1893,22,1,170, 61571,1898,22,1,169,
61361,2487,1894,17,1895, 61581,2488,1899,17,1900,
613715,1745,1,-1,1, 615915,1745,1,-1,1,
61385,1896,20,1897,4, 61605,1901,20,1902,4,
613916,69,0,118,0, 616116,69,0,118,0,
6140101,0,110,0,116, 6162101,0,110,0,116,
61410,95,0,49,0, 61630,95,0,49,0,
614256,0,1,310,1, 616455,0,1,309,1,
61433,1,2,1,1, 61653,1,2,1,1,
61441898,22,1,169,1, 61661903,22,1,168,1,
61452488,1899,17,1900,15, 61672489,1904,17,1905,15,
61461745,1,-1,1,5, 61681745,1,-1,1,5,
61471901,20,1902,4,16, 61691906,20,1907,4,16,
614869,0,118,0,101, 617069,0,118,0,101,
61490,110,0,116,0, 61710,110,0,116,0,
615095,0,49,0,55, 617295,0,49,0,54,
61510,1,309,1,3, 61730,1,308,1,3,
61521,2,1,1,1903, 61741,2,1,1,1908,
615322,1,168,1,2489, 617522,1,167,1,2490,
61541904,17,1905,15,1745, 61761909,17,1910,15,1745,
61551,-1,1,5,1906, 61771,-1,1,5,1911,
615620,1907,4,16,69, 617820,1912,4,16,69,
61570,118,0,101,0, 61790,118,0,101,0,
6158110,0,116,0,95, 6180110,0,116,0,95,
61590,49,0,54,0, 61810,49,0,53,0,
61601,308,1,3,1, 61821,307,1,3,1,
61612,1,1,1908,22, 61832,1,1,1913,22,
61621,167,1,2490,1909, 61841,166,1,1989,925,
616317,1910,15,1745,1, 61851,2492,1914,17,1915,
6164-1,1,5,1911,20, 618615,1745,1,-1,1,
61651912,4,16,69,0, 61875,1916,20,1917,4,
6166118,0,101,0,110, 618816,69,0,118,0,
61670,116,0,95,0, 6189101,0,110,0,116,
616849,0,53,0,1, 61900,95,0,49,0,
6169307,1,3,1,2, 619151,0,1,305,1,
61701,1,1913,22,1, 61923,1,2,1,1,
6171166,1,1989,925,1, 61931918,22,1,164,1,
61722492,1914,17,1915,15, 61942493,1919,17,1920,15,
61731745,1,-1,1,5, 61951745,1,-1,1,5,
61741916,20,1917,4,16, 61961921,20,1922,4,16,
617569,0,118,0,101, 619769,0,118,0,101,
61760,110,0,116,0, 61980,110,0,116,0,
617795,0,49,0,51, 619995,0,49,0,50,
61780,1,305,1,3, 62000,1,304,1,3,
61791,2,1,1,1918, 62011,2,1,1,1923,
618022,1,164,1,2493, 620222,1,163,1,2494,
61811919,17,1920,15,1745, 62031924,17,1925,15,1745,
61821,-1,1,5,1921, 62041,-1,1,5,1926,
618320,1922,4,16,69, 620520,1927,4,16,69,
61840,118,0,101,0, 62060,118,0,101,0,
6185110,0,116,0,95, 6207110,0,116,0,95,
61860,49,0,50,0, 62080,49,0,49,0,
61871,304,1,3,1, 62091,303,1,3,1,
61882,1,1,1923,22, 62102,1,1,1928,22,
61891,163,1,2494,1924, 62111,162,1,236,1929,
619017,1925,15,1745,1, 621216,0,196,1,2496,
6191-1,1,5,1926,20, 62131930,17,1931,15,1745,
61921927,4,16,69,0, 62141,-1,1,5,1932,
6193118,0,101,0,110, 621520,1933,4,14,69,
61940,116,0,95,0, 62160,118,0,101,0,
619549,0,49,0,1, 6217110,0,116,0,95,
6196303,1,3,1,2, 62180,57,0,1,301,
61971,1,1928,22,1, 62191,3,1,2,1,
6198162,1,236,1929,16, 62201,1934,22,1,160,
61990,196,1,2496,1930, 62211,2497,1935,17,1936,
620017,1931,15,1745,1, 622215,1745,1,-1,1,
6201-1,1,5,1932,20, 62235,1937,20,1938,4,
62021933,4,14,69,0, 622414,69,0,118,0,
6225101,0,110,0,116,
62260,95,0,56,0,
62271,300,1,3,1,
62282,1,1,1939,22,
62291,159,1,2498,1940,
623017,1941,15,1745,1,
6231-1,1,5,1942,20,
62321943,4,14,69,0,
6203118,0,101,0,110, 6233118,0,101,0,110,
62040,116,0,95,0, 62340,116,0,95,0,
620557,0,1,301,1, 623555,0,1,299,1,
62063,1,2,1,1, 62363,1,2,1,1,
62071934,22,1,160,1, 62371944,22,1,158,1,
62082497,1935,17,1936,15, 62382499,1945,17,1946,15,
62091745,1,-1,1,5, 62391745,1,-1,1,5,
62101937,20,1938,4,14, 62401947,20,1948,4,14,
621169,0,118,0,101, 624169,0,118,0,101,
62120,110,0,116,0, 62420,110,0,116,0,
621395,0,56,0,1, 624395,0,54,0,1,
6214300,1,3,1,2, 6244298,1,3,1,2,
62151,1,1939,22,1, 62451,1,1949,22,1,
6216159,1,2498,1940,17, 6246157,1,2500,1950,17,
62171941,15,1745,1,-1, 62471951,15,1745,1,-1,
62181,5,1942,20,1943, 62481,5,1952,20,1953,
62194,14,69,0,118, 62494,14,69,0,118,
62200,101,0,110,0, 62500,101,0,110,0,
6221116,0,95,0,55, 6251116,0,95,0,53,
62220,1,299,1,3, 62520,1,297,1,3,
62231,2,1,1,1944, 62531,2,1,1,1954,
622422,1,158,1,2499, 625422,1,156,1,2501,
62251945,17,1946,15,1745, 62551955,17,1956,15,1745,
62261,-1,1,5,1947, 62561,-1,1,5,1957,
622720,1948,4,14,69, 625720,1958,4,14,69,
62280,118,0,101,0, 62580,118,0,101,0,
6229110,0,116,0,95, 6259110,0,116,0,95,
62300,54,0,1,298, 62600,52,0,1,296,
62311,3,1,2,1, 62611,3,1,2,1,
62321,1949,22,1,157, 62621,1959,22,1,155,
62331,2500,1950,17,1951, 62631,2502,1960,17,1961,
623415,1745,1,-1,1, 626415,1745,1,-1,1,
62355,1952,20,1953,4, 62655,1962,20,1963,4,
623614,69,0,118,0, 626614,69,0,118,0,
6237101,0,110,0,116, 6267101,0,110,0,116,
62380,95,0,53,0, 62680,95,0,51,0,
62391,297,1,3,1, 62691,295,1,3,1,
62402,1,1,1954,22, 62702,1,1,1964,22,
62411,156,1,2501,1955, 62711,154,1,2503,1965,
624217,1956,15,1745,1, 627217,1966,15,1745,1,
6243-1,1,5,1957,20, 6273-1,1,5,1967,20,
62441958,4,14,69,0, 62741968,4,14,69,0,
6245118,0,101,0,110, 6275118,0,101,0,110,
62460,116,0,95,0, 62760,116,0,95,0,
624752,0,1,296,1, 627750,0,1,294,1,
62483,1,2,1,1, 62783,1,2,1,1,
62491959,22,1,155,1, 62791969,22,1,153,1,
62502502,1960,17,1961,15, 62802504,1970,17,1971,15,
62511745,1,-1,1,5, 62811745,1,-1,1,5,
62521962,20,1963,4,14, 62821972,20,1973,4,14,
625369,0,118,0,101, 628369,0,118,0,101,
62540,110,0,116,0, 62840,110,0,116,0,
625595,0,51,0,1, 628595,0,49,0,1,
6256295,1,3,1,2, 6286293,1,3,1,2,
62571,1,1964,22,1, 62871,1,1974,22,1,
6258154,1,2503,1965,17, 6288152,1,2505,1975,16,
62591966,15,1745,1,-1, 62890,441,1,217,1976,
62601,5,1967,20,1968, 629016,0,196,1,1756,
62614,14,69,0,118, 62911977,16,0,196,1,
629217,1978,19,160,1,
629317,1979,5,118,1,
62941,1980,17,1981,15,
62951982,4,18,37,0,
629684,0,121,0,112,
62620,101,0,110,0, 62970,101,0,110,0,
6263116,0,95,0,50, 629897,0,109,0,101,
62640,1,294,1,3, 62990,1,-1,1,5,
62651,2,1,1,1969, 63001983,20,1984,4,20,
626622,1,153,1,2504,
62671970,17,1971,15,1745,
62681,-1,1,5,1972,
626920,1973,4,14,69,
62700,118,0,101,0,
6271110,0,116,0,95,
62720,49,0,1,293,
62731,3,1,2,1,
62741,1974,22,1,152,
62751,2505,1975,16,0,
6276441,1,217,1976,16,
62770,196,1,1756,1977,
627816,0,196,1,17,
62791978,19,160,1,17,
62801979,5,118,1,1,
62811980,17,1981,15,1982,
62824,18,37,0,84,
62830,121,0,112,0,
6284101,0,110,0,97,
62850,109,0,101,0,
62861,-1,1,5,1983,
628720,1984,4,20,84,
62880,121,0,112,0,
6289101,0,110,0,97,
62900,109,0,101,0,
629195,0,55,0,1,
6292292,1,3,1,2,
62931,1,1985,22,1,
6294151,1,2,1986,17,
62951987,15,1982,1,-1,
62961,5,1988,20,1989,
62974,20,84,0,121,
62980,112,0,101,0,
6299110,0,97,0,109,
63000,101,0,95,0,
630154,0,1,291,1,
63023,1,2,1,1,
63031990,22,1,150,1,
63043,1991,17,1992,15,
63051982,1,-1,1,5,
63061993,20,1994,4,20,
630784,0,121,0,112, 630184,0,121,0,112,
63080,101,0,110,0, 63020,101,0,110,0,
630997,0,109,0,101, 630397,0,109,0,101,
63100,95,0,53,0, 63040,95,0,55,0,
63111,290,1,3,1, 63051,292,1,3,1,
63122,1,1,1995,22, 63062,1,1,1985,22,
63131,149,1,4,1996, 63071,151,1,2,1986,
631417,1997,15,1982,1, 630817,1987,15,1982,1,
6315-1,1,5,1998,20, 6309-1,1,5,1988,20,
63161999,4,20,84,0, 63101989,4,20,84,0,
6317121,0,112,0,101, 6311121,0,112,0,101,
63180,110,0,97,0, 63120,110,0,97,0,
6319109,0,101,0,95, 6313109,0,101,0,95,
63200,52,0,1,289, 63140,54,0,1,291,
63211,3,1,2,1, 63151,3,1,2,1,
63221,2000,22,1,148, 63161,1990,22,1,150,
63231,5,2001,17,2002, 63171,3,1991,17,1992,
632415,1982,1,-1,1, 631815,1982,1,-1,1,
63255,2003,20,2004,4, 63195,1993,20,1994,4,
632620,84,0,121,0, 632020,84,0,121,0,
6327112,0,101,0,110, 6321112,0,101,0,110,
63280,97,0,109,0, 63220,97,0,109,0,
6329101,0,95,0,51, 6323101,0,95,0,53,
63300,1,288,1,3, 63240,1,290,1,3,
63311,2,1,1,2005, 63251,2,1,1,1995,
633222,1,147,1,6, 632622,1,149,1,4,
63332006,17,2007,15,1982, 63271996,17,1997,15,1982,
63341,-1,1,5,2008, 63281,-1,1,5,1998,
633520,2009,4,20,84, 632920,1999,4,20,84,
63360,121,0,112,0, 63300,121,0,112,0,
6337101,0,110,0,97, 6331101,0,110,0,97,
63380,109,0,101,0, 63320,109,0,101,0,
633995,0,50,0,1, 633395,0,52,0,1,
6340287,1,3,1,2, 6334289,1,3,1,2,
63411,1,2010,22,1, 63351,1,2000,22,1,
6342146,1,7,2011,17, 6336148,1,5,2001,17,
63432012,15,1982,1,-1, 63372002,15,1982,1,-1,
63441,5,2013,20,2014, 63381,5,2003,20,2004,
63454,20,84,0,121, 63394,20,84,0,121,
63460,112,0,101,0, 63400,112,0,101,0,
6347110,0,97,0,109, 6341110,0,97,0,109,
63480,101,0,95,0, 63420,101,0,95,0,
634949,0,1,286,1, 634351,0,1,288,1,
63503,1,2,1,1, 63443,1,2,1,1,
63512015,22,1,145,1, 63452005,22,1,147,1,
63521514,1118,1,9,1123, 63466,2006,17,2007,15,
63531,10,1672,1,262, 63471982,1,-1,1,5,
63541129,1,1267,1135,1, 63482008,20,2009,4,20,
6355481,1714,1,1521,1140, 634984,0,121,0,112,
63561,1773,2016,16,0, 63500,101,0,110,0,
6357247,1,19,1157,1, 635197,0,109,0,101,
635820,2017,16,0,158, 63520,95,0,50,0,
63591,2281,1164,1,525, 63531,287,1,3,1,
63601226,1,30,1676,1, 63542,1,1,2010,22,
6361283,1182,1,1010,2018, 63551,146,1,7,2011,
636216,0,609,1,40, 635617,2012,15,1982,1,
63631187,1,41,1681,1, 6357-1,1,5,2013,20,
636442,1685,1,44,1193, 63582014,4,20,84,0,
63651,1260,1106,1,47, 6359121,0,112,0,101,
63661194,1,1303,1317,1, 63600,110,0,97,0,
636749,1206,1,50,1211, 6361109,0,101,0,95,
63681,48,1200,1,305, 63620,49,0,1,286,
63691221,1,51,1216,1, 63631,3,1,2,1,
637061,2019,16,0,204, 63641,2015,22,1,145,
63711,63,1232,1,66, 63651,1514,1118,1,9,
63721238,1,67,1243,1, 63661123,1,10,1672,1,
63731478,1463,1,69,1253, 6367262,1129,1,1267,1135,
63741,70,1258,1,68, 63681,481,1714,1,1521,
63751248,1,73,2020,16, 63691140,1,1773,2016,16,
63760,214,1,74,1263, 63700,247,1,19,1157,
63771,1013,1268,1,2335, 63711,20,2017,16,0,
63782021,16,0,249,1, 6372158,1,2281,1164,1,
6379328,1312,1,1048,1354, 6373525,1226,1,30,1676,
63801,2511,1668,1,82, 63741,283,1182,1,1010,
63811290,1,1840,2022,16, 63752018,16,0,609,1,
63820,312,1,1341,1307, 637640,1187,1,41,1681,
63831,2520,2023,16,0, 63771,42,1685,1,44,
6384451,1,1096,1322,1, 63781193,1,1260,1106,1,
638593,1328,1,1550,1333, 637947,1194,1,1303,1317,
63861,352,1359,1,1011, 63801,49,1206,1,50,
63871112,1,107,1348,1, 63811211,1,48,1200,1,
63881114,1353,1,1871,2024, 6382305,1221,1,51,1216,
638916,0,322,1,1370, 63831,61,2019,16,0,
63901593,1,118,1365,1, 6384204,1,63,1232,1,
63911123,1370,1,1332,1273, 638566,1238,1,67,1243,
63921,1377,1381,1,375, 63861,1478,1463,1,69,
63931386,1,1882,2025,16, 63871253,1,70,1258,1,
63940,335,1,377,1391, 638868,1248,1,73,2020,
63951,827,1341,1,380, 638916,0,214,1,74,
63961401,1,130,1424,1,
63972074,2026,16,0,565,
63981,371,1375,1,373,
63991419,1,1012,2027,16,
64000,611,1,379,1396,
64011,143,1429,1,2654,
64021692,1,1152,1435,1,
64031406,1440,1,2663,2028,
640416,0,670,1,1159,
64051447,1,157,1452,1,
64061413,1457,1,883,1407,
64071,1094,2029,16,0,
6408677,1,1296,1177,1,
6409172,1470,1,1665,1475,
64101,1939,2030,16,0,
6411448,1,1188,1480,1,
64121442,1485,1,188,1519,
64131,942,1491,1,1195,
64141497,1,1449,1502,1,
64151701,1507,1,447,1512,
64161,205,1524,1,2467,
64171701,1,464,1707,1,
64182197,2031,16,0,674,
64191,1224,1534,1,223,
64201539,1,1730,1544,1,
6421476,1549,1,477,1555,
64221,1231,1560,1,479,
64231565,1,480,1570,1,
64241485,1576,1,459,1712,
64251,242,1583,1,478,
64261588,1,2506,2032,16,
64270,442,1,1001,1598,
64281,1002,1603,1,18,
64292033,19,500,1,18,
64302034,5,84,1,1011,
64311112,1,1012,2035,16,
64320,498,1,1013,1268,
64331,262,1129,1,1267,
64342036,16,0,498,1,
6435515,2037,16,0,498,
64361,1521,2038,16,0,
6437498,1,525,1226,1,
6438283,1182,1,2299,2039,
643916,0,498,1,42,
64402040,16,0,498,1,
644140,1187,1,44,1193,
64421,47,1194,1,1303,
64432041,16,0,498,1,
64441555,2042,16,0,498,
64451,50,1211,1,48,
64461200,1,49,1206,1,
644751,1216,1,63,1232,
64481,305,1221,1,66,
64491238,1,67,1243,1,
645068,1248,1,69,1253,
64511,70,1258,1,73,
64522043,16,0,498,1,
645374,1263,1,328,1312,
64541,1048,2044,16,0,
6455498,1,82,2045,16,
64560,498,1,1840,2046,
645716,0,498,1,1591,
64582047,16,0,498,1,
64591341,2048,16,0,498,
64601,1096,1322,1,93,
64611328,1,352,1359,1,
6462107,2049,16,0,498,
64631,1114,1353,1,118,
64642050,16,0,498,1,
64651123,2051,16,0,498,
64661,371,1375,1,1628,
64672052,16,0,498,1,
6468375,1386,1,1882,2053,
646916,0,498,1,377,
64701391,1,379,1396,1,
6471380,1401,1,883,2054,
647216,0,498,1,373,
64731419,1,130,2055,16,
64740,498,1,143,2056,
647516,0,498,1,387,
64762057,16,0,498,1,
64771159,2058,16,0,498,
64781,157,2059,16,0,
6479498,1,1413,2060,16,
64800,498,1,1665,2061,
648116,0,498,1,412,
64822062,16,0,498,1,
64832676,2063,16,0,498,
64841,1377,2064,16,0,
6485498,1,172,2065,16,
64860,498,1,1939,2066,
648716,0,498,1,437,
64882067,16,0,498,1,
6489188,2068,16,0,498,
64901,942,2069,16,0,
6491498,1,1195,2070,16,
64920,498,1,1449,2071,
649316,0,498,1,1701,
64942072,16,0,498,1,
6495447,1512,1,205,2073,
649616,0,498,1,827,
64972074,16,0,498,1,
6498223,2075,16,0,498,
64991,476,1549,1,477,
65001555,1,1231,2076,16,
65010,498,1,479,1565,
65021,480,1570,1,1485,
65032077,16,0,498,1,
65041737,2078,16,0,498,
65051,242,2079,16,0,
6506498,1,478,1588,1,
65071001,1598,1,1002,1603,
65081,19,2080,19,235,
65091,19,2081,5,176,
65101,2676,2082,16,0,
6511469,1,256,2083,16,
65120,233,1,1261,2084,
651316,0,233,1,1011,
65141112,1,1012,2085,16,
65150,469,1,2458,885,
65161,262,1129,1,1267,
65172086,16,0,469,1,
65182021,728,1,1521,2087,
651916,0,469,1,1775,
65202088,16,0,233,1,
65212029,735,1,2030,741,
65221,2031,746,1,2032,
6523751,1,2033,756,1,
6524277,2089,16,0,233,
65251,2035,762,1,2037,
6526767,1,2039,772,1,
652732,2090,16,0,233,
65281,2464,908,1,2293,
65292091,16,0,233,1,
65302043,784,1,2045,789,
65311,2299,2092,16,0,
6532469,1,41,2093,16,
65330,233,1,42,2094,
653416,0,469,1,40,
65351187,1,44,1193,1,
653643,2095,16,0,233,
65371,1804,2096,16,0,
6538233,1,48,1200,1,
653949,1206,1,47,1194,
65401,51,1216,1,52,
65412097,16,0,233,1,
654250,1211,1,305,1221,
65431,1096,1322,1,1515,
65442098,16,0,233,1,
65452318,2099,16,0,233,
65461,283,1182,1,63,
65471232,1,66,1238,1,
654867,1243,1,68,1248,
65491,69,1253,1,70,
65501258,1,71,2100,16,
65510,233,1,73,2101,
655216,0,469,1,74,
65531263,1,1013,1268,1, 63901263,1,1013,1268,1,
655476,2102,16,0,233, 63912335,2021,16,0,249,
65551,1834,2103,16,0, 63921,328,1312,1,1048,
6556233,1,2337,2104,16, 63931354,1,2511,1668,1,
65570,233,1,79,2105, 639482,1290,1,1840,2022,
655816,0,233,1,1335, 639516,0,312,1,1341,
65592106,16,0,233,1, 63961307,1,2520,2023,16,
6560299,2107,16,0,233, 63970,451,1,1096,1322,
65611,82,2108,16,0, 63981,93,1328,1,1550,
6562469,1,1840,2109,16, 63991333,1,352,1359,1,
65630,469,1,1297,2110, 64001011,1112,1,107,1348,
656416,0,233,1,85, 64011,1114,1353,1,1871,
65652111,16,0,233,1, 64022024,16,0,322,1,
65661341,2112,16,0,469, 64031370,1593,1,118,1365,
65671,89,2113,16,0, 64041,1123,1370,1,1332,
6568233,1,1303,2114,16, 64051273,1,1377,1381,1,
65690,469,1,509,2115, 6406375,1386,1,1882,2025,
657016,0,233,1,93, 640716,0,335,1,377,
65711328,1,322,2116,16, 64081391,1,827,1341,1,
65720,233,1,97,2117, 6409380,1401,1,130,1424,
657316,0,233,1,2041, 64101,2074,2026,16,0,
6574778,1,1555,2118,16, 6411565,1,371,1375,1,
65750,469,1,827,2119, 6412373,1419,1,1012,2027,
657616,0,469,1,102, 641316,0,611,1,379,
65772120,16,0,233,1, 64141396,1,143,1429,1,
65781860,831,1,1803,797, 64152654,1692,1,1152,1435,
65791,2364,837,1,107, 64161,1406,1440,1,2663,
65802121,16,0,469,1, 64172028,16,0,670,1,
65811114,1353,1,112,2122, 64181159,1447,1,157,1452,
658216,0,233,1,1117, 64191,1413,1457,1,883,
65832123,16,0,233,1, 64201407,1,1094,2029,16,
6584352,1359,1,1873,845, 64210,677,1,1296,1177,
65851,118,2124,16,0, 64221,172,1470,1,1665,
6586469,1,1123,2125,16, 64231475,1,1939,2030,16,
65870,469,1,371,1375, 64240,448,1,1188,1480,
65881,515,2126,16,0, 64251,1442,1485,1,188,
6589469,1,1377,2127,16, 64261519,1,942,1491,1,
65900,469,1,124,2128, 64271195,1497,1,1449,1502,
659116,0,233,1,1882, 64281,1701,1507,1,447,
65922129,16,0,469,1, 64291512,1,205,1524,1,
6593377,1391,1,379,1396, 64302467,1701,1,464,1707,
65941,380,1401,1,130, 64311,2197,2031,16,0,
65952130,16,0,469,1, 6432674,1,1224,1534,1,
6596346,2131,16,0,233, 6433223,1539,1,1730,1544,
65971,2075,2132,16,0, 64341,476,1549,1,477,
6598233,1,373,1419,1, 64351555,1,1231,1560,1,
6599387,2133,16,0,469, 6436479,1565,1,480,1570,
66001,137,2134,16,0, 64371,1485,1576,1,459,
6601233,1,143,2135,16, 64381712,1,242,1583,1,
66020,469,1,1901,2136, 6439478,1588,1,2506,2032,
660316,0,233,1,1048, 644016,0,442,1,1001,
66042137,16,0,469,1, 64411598,1,1002,1603,1,
66051153,2138,16,0,233, 644218,2033,19,500,1,
66061,375,1386,1,151, 644318,2034,5,84,1,
66072139,16,0,233,1, 64441011,1112,1,1012,2035,
66081407,2140,16,0,233, 644516,0,498,1,1013,
66091,1659,2141,16,0,
6610233,1,2413,2142,16,
66110,233,1,1159,2143,
661216,0,469,1,381,
66132144,16,0,233,1,
6614157,2145,16,0,469,
66151,1413,2146,16,0,
6616469,1,883,2147,16,
66170,469,1,1371,2148,
661816,0,233,1,328,
66191312,1,2105,824,1,
66202106,2149,16,0,233,
66211,166,2150,16,0,
6622233,1,525,2151,16,
66230,233,1,1622,2152,
662416,0,233,1,406,
66252153,16,0,233,1,
66261574,809,1,172,2154,
662716,0,469,1,1931,
6628870,1,412,2155,16,
66290,469,1,1933,2156,
663016,0,233,1,1876,
66312157,16,0,233,1,
6632431,2158,16,0,233,
66331,1585,2159,16,0,
6634233,1,182,2160,16,
66350,233,1,1628,2161,
663616,0,469,1,1189,
66372162,16,0,233,1,
6638437,2163,16,0,469,
66391,1591,2164,16,0,
6640469,1,188,2165,16,
66410,469,1,1695,2166,
664216,0,233,1,2198,
66432167,16,0,233,1,
66441195,2168,16,0,469,
66451,1449,2169,16,0,
6646469,1,1701,2170,16,
66470,469,1,447,2171,
664816,0,233,1,199,
66492172,16,0,233,1,
66502459,891,1,1958,2173,
665116,0,233,1,2462,
6652898,1,1657,903,1,
6653205,2174,16,0,469,
66541,459,2175,16,0,
6655233,1,462,2176,16,
66560,233,1,1665,2177,
665716,0,469,1,217,
66582178,16,0,233,1,
66592227,917,1,942,2179,
666016,0,469,1,1225,
66612180,16,0,233,1,
6662223,2181,16,0,469,
66631,1479,2182,16,0,
6664233,1,1731,2183,16,
66650,233,1,477,1555,
66661,1231,2184,16,0,
6667469,1,479,1565,1,
6668480,1570,1,1485,2185,
666916,0,469,1,1737,
66702186,16,0,469,1,
66711989,925,1,1990,2187,
667216,0,233,1,1443,
66732188,16,0,233,1,
6674236,2189,16,0,233,
66751,2136,852,1,476,
66761549,1,242,2190,16,
66770,469,1,478,1588,
66781,1939,2191,16,0,
6679469,1,2670,2192,16,
66800,233,1,1001,1598,
66811,1002,1603,1,1756,
66822193,16,0,233,1,
668320,2194,19,458,1,
668420,2195,5,84,1,
66851011,1112,1,1012,2196,
668616,0,456,1,1013,
66871268,1,262,1129,1, 64461268,1,262,1129,1,
66881267,2197,16,0,456, 64471267,2036,16,0,498,
66891,515,2198,16,0, 64481,515,2037,16,0,
6690456,1,1521,2199,16, 6449498,1,1521,2038,16,
66910,456,1,525,1226, 64500,498,1,525,1226,
66921,283,1182,1,2299, 64511,283,1182,1,2299,
66932200,16,0,456,1, 64522039,16,0,498,1,
669442,2201,16,0,456, 645342,2040,16,0,498,
66951,40,1187,1,44, 64541,40,1187,1,44,
66961193,1,47,1194,1, 64551193,1,47,1194,1,
66971303,2202,16,0,456, 64561303,2041,16,0,498,
66981,1555,2203,16,0, 64571,1555,2042,16,0,
6699456,1,50,1211,1, 6458498,1,50,1211,1,
670048,1200,1,49,1206, 645948,1200,1,49,1206,
67011,51,1216,1,63, 64601,51,1216,1,63,
67021232,1,305,1221,1, 64611232,1,305,1221,1,
670366,1238,1,67,1243, 646266,1238,1,67,1243,
67041,68,1248,1,69, 64631,68,1248,1,69,
67051253,1,70,1258,1, 64641253,1,70,1258,1,
670673,2204,16,0,456, 646573,2043,16,0,498,
67071,74,1263,1,328, 64661,74,1263,1,328,
67082205,16,0,456,1, 64671312,1,1048,2044,16,
67091048,2206,16,0,456, 64680,498,1,82,2045,
67101,82,2207,16,0, 646916,0,498,1,1840,
6711456,1,1840,2208,16, 64702046,16,0,498,1,
67120,456,1,1591,2209, 64711591,2047,16,0,498,
671316,0,456,1,1341, 64721,1341,2048,16,0,
67142210,16,0,456,1, 6473498,1,1096,1322,1,
67151096,1322,1,93,1328, 647493,1328,1,352,1359,
67161,352,2211,16,0, 64751,107,2049,16,0,
6717456,1,107,2212,16, 6476498,1,1114,1353,1,
67180,456,1,1114,1353, 6477118,2050,16,0,498,
67191,118,2213,16,0, 64781,1123,2051,16,0,
6720456,1,1123,2214,16, 6479498,1,371,1375,1,
67210,456,1,371,1375, 64801628,2052,16,0,498,
67221,1628,2215,16,0, 64811,375,1386,1,1882,
6723456,1,375,1386,1, 64822053,16,0,498,1,
67241882,2216,16,0,456, 6483377,1391,1,379,1396,
67251,377,1391,1,379, 64841,380,1401,1,883,
67261396,1,380,1401,1, 64852054,16,0,498,1,
6727883,2217,16,0,456, 6486373,1419,1,130,2055,
67281,373,1419,1,130, 648716,0,498,1,143,
67292218,16,0,456,1, 64882056,16,0,498,1,
6730143,2219,16,0,456, 6489387,2057,16,0,498,
67311,387,2220,16,0, 64901,1159,2058,16,0,
6732456,1,1159,2221,16, 6491498,1,157,2059,16,
67330,456,1,157,2222, 64920,498,1,1413,2060,
673416,0,456,1,1413, 649316,0,498,1,1665,
67352223,16,0,456,1, 64942061,16,0,498,1,
67361665,2224,16,0,456, 6495412,2062,16,0,498,
67371,412,2225,16,0, 64961,2676,2063,16,0,
6738456,1,2676,2226,16, 6497498,1,1377,2064,16,
67390,456,1,1377,2227, 64980,498,1,172,2065,
674016,0,456,1,172, 649916,0,498,1,1939,
67412228,16,0,456,1, 65002066,16,0,498,1,
67421939,2229,16,0,456, 6501437,2067,16,0,498,
67431,437,2230,16,0, 65021,188,2068,16,0,
6744456,1,188,2231,16, 6503498,1,942,2069,16,
67450,456,1,942,2232, 65040,498,1,1195,2070,
674616,0,456,1,1195, 650516,0,498,1,1449,
67472233,16,0,456,1, 65062071,16,0,498,1,
67481449,2234,16,0,456, 65071701,2072,16,0,498,
67491,1701,2235,16,0, 65081,447,1512,1,205,
6750456,1,447,1512,1, 65092073,16,0,498,1,
6751205,2236,16,0,456, 6510827,2074,16,0,498,
67521,827,2237,16,0, 65111,223,2075,16,0,
6753456,1,223,2238,16, 6512498,1,476,1549,1,
67540,456,1,476,1549, 6513477,1555,1,1231,2076,
67551,477,1555,1,1231, 651416,0,498,1,479,
67562239,16,0,456,1, 65151565,1,480,1570,1,
6757479,1565,1,480,1570, 65161485,2077,16,0,498,
67581,1485,2240,16,0, 65171,1737,2078,16,0,
6759456,1,1737,2241,16, 6518498,1,242,2079,16,
67600,456,1,242,2242, 65190,498,1,478,1588,
676116,0,456,1,478, 65201,1001,1598,1,1002,
67621588,1,1001,1598,1, 65211603,1,19,2080,19,
67631002,1603,1,21,2243, 6522235,1,19,2081,5,
676419,440,1,21,2244, 6523176,1,2676,2082,16,
67655,84,1,1011,1112, 65240,469,1,256,2083,
67661,1012,2245,16,0, 652516,0,233,1,1261,
6767438,1,1013,1268,1, 65262084,16,0,233,1,
6768262,1129,1,1267,2246, 65271011,1112,1,1012,2085,
676916,0,438,1,515, 652816,0,469,1,2458,
67702247,16,0,438,1, 6529885,1,262,1129,1,
67711521,2248,16,0,438, 65301267,2086,16,0,469,
67721,525,1226,1,283, 65311,2021,728,1,1521,
67731182,1,2299,2249,16, 65322087,16,0,469,1,
67740,438,1,42,2250, 65331775,2088,16,0,233,
677516,0,438,1,40, 65341,2029,735,1,2030,
67761187,1,44,1193,1, 6535741,1,2031,746,1,
677747,1194,1,1303,2251, 65362032,751,1,2033,756,
677816,0,438,1,1555, 65371,277,2089,16,0,
67792252,16,0,438,1, 6538233,1,2035,762,1,
678050,1211,1,48,1200, 65392037,767,1,2039,772,
67811,49,1206,1,51, 65401,32,2090,16,0,
67821216,1,63,1232,1, 6541233,1,2464,908,1,
6783305,1221,1,66,1238, 65422293,2091,16,0,233,
65431,2043,784,1,2045,
6544789,1,2299,2092,16,
65450,469,1,41,2093,
654616,0,233,1,42,
65472094,16,0,469,1,
654840,1187,1,44,1193,
65491,43,2095,16,0,
6550233,1,1804,2096,16,
65510,233,1,48,1200,
65521,49,1206,1,47,
65531194,1,51,1216,1,
655452,2097,16,0,233,
65551,50,1211,1,305,
65561221,1,1096,1322,1,
65571515,2098,16,0,233,
65581,2318,2099,16,0,
6559233,1,283,1182,1,
656063,1232,1,66,1238,
67841,67,1243,1,68, 65611,67,1243,1,68,
67851248,1,69,1253,1, 65621248,1,69,1253,1,
678670,1258,1,73,2253, 656370,1258,1,71,2100,
678716,0,438,1,74, 656416,0,233,1,73,
67881263,1,328,2254,16, 65652101,16,0,469,1,
67890,438,1,1048,2255, 656674,1263,1,1013,1268,
679016,0,438,1,82, 65671,76,2102,16,0,
67912256,16,0,438,1, 6568233,1,1834,2103,16,
67921840,2257,16,0,438, 65690,233,1,2337,2104,
67931,1591,2258,16,0, 657016,0,233,1,79,
6794438,1,1341,2259,16, 65712105,16,0,233,1,
67950,438,1,1096,1322, 65721335,2106,16,0,233,
67961,93,1328,1,352, 65731,299,2107,16,0,
67972260,16,0,438,1, 6574233,1,82,2108,16,
6798107,2261,16,0,438, 65750,469,1,1840,2109,
67991,1114,1353,1,118, 657616,0,469,1,1297,
68002262,16,0,438,1, 65772110,16,0,233,1,
68011123,2263,16,0,438, 657885,2111,16,0,233,
68021,371,1375,1,1628, 65791,1341,2112,16,0,
68032264,16,0,438,1, 6580469,1,89,2113,16,
6804375,1386,1,1882,2265, 65810,233,1,1303,2114,
680516,0,438,1,377, 658216,0,469,1,509,
68061391,1,379,1396,1, 65832115,16,0,233,1,
6807380,1401,1,883,2266, 658493,1328,1,322,2116,
680816,0,438,1,373, 658516,0,233,1,97,
68091419,1,130,2267,16, 65862117,16,0,233,1,
68100,438,1,143,2268, 65872041,778,1,1555,2118,
681116,0,438,1,387, 658816,0,469,1,827,
68122269,16,0,438,1, 65892119,16,0,469,1,
68131159,2270,16,0,438, 6590102,2120,16,0,233,
68141,157,2271,16,0, 65911,1860,831,1,1803,
6815438,1,1413,2272,16, 6592797,1,2364,837,1,
68160,438,1,1665,2273, 6593107,2121,16,0,469,
681716,0,438,1,412, 65941,1114,1353,1,112,
68182274,16,0,438,1, 65952122,16,0,233,1,
68192676,2275,16,0,438, 65961117,2123,16,0,233,
68201,1377,2276,16,0, 65971,352,1359,1,1873,
6821438,1,172,2277,16, 6598845,1,118,2124,16,
68220,438,1,1939,2278, 65990,469,1,1123,2125,
682316,0,438,1,437, 660016,0,469,1,371,
68242279,16,0,438,1, 66011375,1,515,2126,16,
6825188,2280,16,0,438, 66020,469,1,1377,2127,
68261,942,2281,16,0, 660316,0,469,1,124,
6827438,1,1195,2282,16, 66042128,16,0,233,1,
68280,438,1,1449,2283, 66051882,2129,16,0,469,
682916,0,438,1,1701, 66061,377,1391,1,379,
68302284,16,0,438,1, 66071396,1,380,1401,1,
6831447,1512,1,205,2285, 6608130,2130,16,0,469,
683216,0,438,1,827, 66091,346,2131,16,0,
68332286,16,0,438,1, 6610233,1,2075,2132,16,
6834223,2287,16,0,438, 66110,233,1,373,1419,
68351,476,1549,1,477, 66121,387,2133,16,0,
68361555,1,1231,2288,16, 6613469,1,137,2134,16,
68370,438,1,479,1565, 66140,233,1,143,2135,
661516,0,469,1,1901,
66162136,16,0,233,1,
66171048,2137,16,0,469,
66181,1153,2138,16,0,
6619233,1,375,1386,1,
6620151,2139,16,0,233,
66211,1407,2140,16,0,
6622233,1,1659,2141,16,
66230,233,1,2413,2142,
662416,0,233,1,1159,
66252143,16,0,469,1,
6626381,2144,16,0,233,
66271,157,2145,16,0,
6628469,1,1413,2146,16,
66290,469,1,883,2147,
663016,0,469,1,1371,
66312148,16,0,233,1,
6632328,1312,1,2105,824,
66331,2106,2149,16,0,
6634233,1,166,2150,16,
66350,233,1,525,2151,
663616,0,233,1,1622,
66372152,16,0,233,1,
6638406,2153,16,0,233,
66391,1574,809,1,172,
66402154,16,0,469,1,
66411931,870,1,412,2155,
664216,0,469,1,1933,
66432156,16,0,233,1,
66441876,2157,16,0,233,
66451,431,2158,16,0,
6646233,1,1585,2159,16,
66470,233,1,182,2160,
664816,0,233,1,1628,
66492161,16,0,469,1,
66501189,2162,16,0,233,
66511,437,2163,16,0,
6652469,1,1591,2164,16,
66530,469,1,188,2165,
665416,0,469,1,1695,
66552166,16,0,233,1,
66562198,2167,16,0,233,
66571,1195,2168,16,0,
6658469,1,1449,2169,16,
66590,469,1,1701,2170,
666016,0,469,1,447,
66612171,16,0,233,1,
6662199,2172,16,0,233,
66631,2459,891,1,1958,
66642173,16,0,233,1,
66652462,898,1,1657,903,
66661,205,2174,16,0,
6667469,1,459,2175,16,
66680,233,1,462,2176,
666916,0,233,1,1665,
66702177,16,0,469,1,
6671217,2178,16,0,233,
66721,2227,917,1,942,
66732179,16,0,469,1,
66741225,2180,16,0,233,
66751,223,2181,16,0,
6676469,1,1479,2182,16,
66770,233,1,1731,2183,
667816,0,233,1,477,
66791555,1,1231,2184,16,
66800,469,1,479,1565,
68381,480,1570,1,1485, 66811,480,1570,1,1485,
68392289,16,0,438,1, 66822185,16,0,469,1,
68401737,2290,16,0,438, 66831737,2186,16,0,469,
68411,242,2291,16,0, 66841,1989,925,1,1990,
6842438,1,478,1588,1, 66852187,16,0,233,1,
68431001,1598,1,1002,1603, 66861443,2188,16,0,233,
68441,22,2292,19,391, 66871,236,2189,16,0,
68451,22,2293,5,84, 6688233,1,2136,852,1,
6689476,1549,1,242,2190,
669016,0,469,1,478,
66911588,1,1939,2191,16,
66920,469,1,2670,2192,
669316,0,233,1,1001,
66941598,1,1002,1603,1,
66951756,2193,16,0,233,
66961,20,2194,19,458,
66971,20,2195,5,84,
68461,1011,1112,1,1012, 66981,1011,1112,1,1012,
68472294,16,0,389,1, 66992196,16,0,456,1,
68481013,1268,1,262,1129, 67001013,1268,1,262,1129,
68491,1267,2295,16,0, 67011,1267,2197,16,0,
6850389,1,515,2296,16, 6702456,1,515,2198,16,
68510,389,1,1521,2297, 67030,456,1,1521,2199,
685216,0,389,1,525, 670416,0,456,1,525,
68531226,1,283,1182,1, 67051226,1,283,1182,1,
68542299,2298,16,0,389, 67062299,2200,16,0,456,
68551,42,2299,16,0, 67071,42,2201,16,0,
6856389,1,40,1187,1, 6708456,1,40,1187,1,
685744,1193,1,47,1194, 670944,1193,1,47,1194,
68581,1303,2300,16,0, 67101,1303,2202,16,0,
6859389,1,1555,2301,16, 6711456,1,1555,2203,16,
68600,389,1,50,1211, 67120,456,1,50,1211,
68611,48,1200,1,49, 67131,48,1200,1,49,
68621206,1,51,1216,1, 67141206,1,51,1216,1,
686363,1232,1,305,1221, 671563,1232,1,305,1221,
68641,66,1238,1,67, 67161,66,1238,1,67,
68651243,1,68,1248,1, 67171243,1,68,1248,1,
686669,1253,1,70,1258, 671869,1253,1,70,1258,
68671,73,2302,16,0, 67191,73,2204,16,0,
6868389,1,74,1263,1, 6720456,1,74,1263,1,
6869328,2303,16,0,389, 6721328,2205,16,0,456,
68701,1048,2304,16,0, 67221,1048,2206,16,0,
6871389,1,82,2305,16, 6723456,1,82,2207,16,
68720,389,1,1840,2306, 67240,456,1,1840,2208,
687316,0,389,1,1591, 672516,0,456,1,1591,
68742307,16,0,389,1, 67262209,16,0,456,1,
68751341,2308,16,0,389, 67271341,2210,16,0,456,
68761,1096,1322,1,93, 67281,1096,1322,1,93,
68771328,1,352,2309,16, 67291328,1,352,2211,16,
68780,389,1,107,2310, 67300,456,1,107,2212,
687916,0,389,1,1114, 673116,0,456,1,1114,
68801353,1,118,2311,16, 67321353,1,118,2213,16,
68810,389,1,1123,2312, 67330,456,1,1123,2214,
688216,0,389,1,371, 673416,0,456,1,371,
68831375,1,1628,2313,16, 67351375,1,1628,2215,16,
68840,389,1,375,1386, 67360,456,1,375,1386,
68851,1882,2314,16,0, 67371,1882,2216,16,0,
6886389,1,377,1391,1, 6738456,1,377,1391,1,
6887379,1396,1,380,1401, 6739379,1396,1,380,1401,
68881,883,2315,16,0, 67401,883,2217,16,0,
6889389,1,373,1419,1, 6741456,1,373,1419,1,
6890130,2316,16,0,389, 6742130,2218,16,0,456,
68911,143,2317,16,0, 67431,143,2219,16,0,
6892389,1,387,2318,16, 6744456,1,387,2220,16,
68930,389,1,1159,2319, 67450,456,1,1159,2221,
689416,0,389,1,157, 674616,0,456,1,157,
68952320,16,0,389,1, 67472222,16,0,456,1,
68961413,2321,16,0,389, 67481413,2223,16,0,456,
68971,1665,2322,16,0, 67491,1665,2224,16,0,
6898389,1,412,2323,16, 6750456,1,412,2225,16,
68990,389,1,2676,2324, 67510,456,1,2676,2226,
690016,0,389,1,1377, 675216,0,456,1,1377,
69012325,16,0,389,1, 67532227,16,0,456,1,
6902172,2326,16,0,389, 6754172,2228,16,0,456,
69031,1939,2327,16,0, 67551,1939,2229,16,0,
6904389,1,437,2328,16, 6756456,1,437,2230,16,
69050,389,1,188,2329, 67570,456,1,188,2231,
690616,0,389,1,942, 675816,0,456,1,942,
69072330,16,0,389,1, 67592232,16,0,456,1,
69081195,2331,16,0,389, 67601195,2233,16,0,456,
69091,1449,2332,16,0, 67611,1449,2234,16,0,
6910389,1,1701,2333,16, 6762456,1,1701,2235,16,
69110,389,1,447,1512, 67630,456,1,447,1512,
69121,205,2334,16,0, 67641,205,2236,16,0,
6913389,1,827,2335,16, 6765456,1,827,2237,16,
69140,389,1,223,2336, 67660,456,1,223,2238,
691516,0,389,1,476, 676716,0,456,1,476,
69161549,1,477,1555,1, 67681549,1,477,1555,1,
69171231,2337,16,0,389, 67691231,2239,16,0,456,
69181,479,1565,1,480, 67701,479,1565,1,480,
69191570,1,1485,2338,16, 67711570,1,1485,2240,16,
69200,389,1,1737,2339, 67720,456,1,1737,2241,
692116,0,389,1,242, 677316,0,456,1,242,
69222340,16,0,389,1, 67742242,16,0,456,1,
6923478,1588,1,1001,1598, 6775478,1588,1,1001,1598,
69241,1002,1603,1,23, 67761,1002,1603,1,21,
69252341,19,514,1,23, 67772243,19,440,1,21,
69262342,5,38,1,1901, 67782244,5,84,1,1011,
69272343,16,0,512,1, 67791112,1,1012,2245,16,
69282075,2344,16,0,512, 67800,438,1,1013,1268,
69291,1860,831,1,1803,
6930797,1,1804,2345,16,
69310,512,1,2413,2346,
693216,0,512,1,2198,
69332347,16,0,512,1,
69341873,845,1,1657,903,
69351,1989,925,1,1990,
69362348,16,0,512,1,
69371775,2349,16,0,512,
69381,32,2350,16,0,
6939512,1,2105,824,1,
69402106,2351,16,0,512,
69411,2364,837,1,2227,
6942917,1,2337,2352,16,
69430,512,1,2021,728,
69441,2458,885,1,2459,
6945891,1,2462,898,1,
69462136,852,1,2464,908,
69471,2029,735,1,2030,
6948741,1,2031,746,1,
69492032,751,1,2033,756,
69501,2035,762,1,2037,
6951767,1,2039,772,1,
69521931,870,1,2041,778,
69531,2043,784,1,2045,
6954789,1,1574,809,1,
69551958,2353,16,0,512,
69561,24,2354,19,186,
69571,24,2355,5,5,
69581,44,2356,16,0,
6959184,1,377,2357,16,
69600,550,1,40,2358,
696116,0,684,1,63,
69622359,16,0,206,1,
6963373,2360,16,0,546,
69641,25,2361,19,300,
69651,25,2362,5,177,
69661,2676,2363,16,0,
6967298,1,256,2364,16,
69680,555,1,1261,2365,
696916,0,555,1,1011,
69701112,1,1012,2366,16,
69710,298,1,2458,885,
69721,262,1129,1,1267, 67811,262,1129,1,1267,
69732367,16,0,298,1, 67822246,16,0,438,1,
69742021,728,1,1521,2368, 6783515,2247,16,0,438,
697516,0,298,1,1775, 67841,1521,2248,16,0,
69762369,16,0,555,1, 6785438,1,525,1226,1,
69772029,735,1,2030,741, 6786283,1182,1,2299,2249,
69781,2031,746,1,2032, 678716,0,438,1,42,
6979751,1,2033,756,1, 67882250,16,0,438,1,
6980277,2370,16,0,555,
69811,2035,762,1,2037,
6982767,1,2039,772,1,
698332,2371,16,0,555,
69841,2464,908,1,2293,
69852372,16,0,555,1,
69862043,784,1,2045,789,
69871,2299,2373,16,0,
6988298,1,41,2374,16,
69890,555,1,42,2375,
699016,0,298,1,40,
69911187,1,44,1193,1,
699243,2376,16,0,555,
69931,1804,2377,16,0,
6994555,1,48,1200,1,
699549,1206,1,47,1194,
69961,51,1216,1,52,
69972378,16,0,555,1,
699850,1211,1,305,1221,
69991,1096,1322,1,1515,
70002379,16,0,555,1,
70012318,2380,16,0,555,
70021,62,2381,16,0,
7003555,1,63,1232,1,
700466,1238,1,67,1243,
70051,68,1248,1,69,
70061253,1,70,1258,1,
700771,2382,16,0,555,
70081,283,1182,1,73,
70092383,16,0,298,1,
701074,1263,1,1013,1268,
70111,76,2384,16,0,
7012555,1,1834,2385,16,
70130,555,1,2337,2386,
701416,0,555,1,79,
70152387,16,0,555,1,
70161335,2388,16,0,555,
70171,299,2389,16,0,
7018555,1,82,2390,16,
70190,298,1,1840,2391,
702016,0,298,1,1297,
70212392,16,0,555,1,
702285,2393,16,0,555,
70231,1341,2394,16,0,
7024298,1,89,2395,16,
70250,555,1,1303,2396,
702616,0,298,1,509,
70272397,16,0,555,1,
702893,1328,1,322,2398,
702916,0,555,1,97,
70302399,16,0,555,1,
70312041,778,1,1555,2400,
703216,0,298,1,827,
70332401,16,0,298,1,
7034102,2402,16,0,555,
70351,1860,831,1,1803,
7036797,1,2364,837,1,
7037107,2403,16,0,298,
70381,1114,1353,1,112,
70392404,16,0,555,1,
70401117,2405,16,0,555,
70411,352,1359,1,1873,
7042845,1,118,1365,1,
70431123,2406,16,0,298,
70441,371,1375,1,515,
70452407,16,0,298,1,
70461377,2408,16,0,298,
70471,124,2409,16,0,
7048555,1,1882,2410,16,
70490,298,1,377,1391,
70501,379,1396,1,380,
70511401,1,130,1424,1,
7052346,2411,16,0,555,
70531,2075,2412,16,0,
7054555,1,373,1419,1,
7055387,2413,16,0,298,
70561,137,2414,16,0,
7057555,1,143,2415,16,
70580,298,1,1901,2416,
705916,0,555,1,1048,
70601354,1,1153,2417,16,
70610,555,1,375,1386,
70621,151,2418,16,0,
7063555,1,1407,2419,16,
70640,555,1,1659,2420,
706516,0,555,1,2413,
70662421,16,0,555,1,
70671159,2422,16,0,298,
70681,381,2423,16,0,
7069555,1,157,2424,16,
70700,298,1,1413,2425,
707116,0,298,1,883,
70722426,16,0,298,1,
70731371,2427,16,0,555,
70741,328,1312,1,2105,
7075824,1,2106,2428,16,
70760,555,1,166,2429,
707716,0,555,1,525,
70782430,16,0,555,1,
70791622,2431,16,0,555,
70801,406,2432,16,0,
7081555,1,1574,809,1,
7082172,1470,1,1931,870,
70831,412,2433,16,0,
7084298,1,1933,2434,16,
70850,555,1,1876,2435,
708616,0,555,1,431,
70872436,16,0,555,1,
70881585,2437,16,0,555,
70891,182,2438,16,0,
7090555,1,1628,2439,16,
70910,298,1,1189,2440,
709216,0,555,1,437,
70932441,16,0,298,1,
70941591,2442,16,0,298,
70951,188,1519,1,1695,
70962443,16,0,555,1,
70972198,2444,16,0,555,
70981,1195,2445,16,0,
7099298,1,1449,2446,16,
71000,298,1,1701,2447,
710116,0,298,1,447,
71022448,16,0,555,1,
7103199,2449,16,0,555,
71041,2459,891,1,1958,
71052450,16,0,555,1,
71062462,898,1,1657,903,
71071,205,2451,16,0,
7108298,1,459,2452,16,
71090,555,1,462,2453,
711016,0,555,1,1665,
71112454,16,0,298,1,
7112217,2455,16,0,555,
71131,2227,917,1,942,
71141491,1,1225,2456,16,
71150,555,1,223,2457,
711616,0,298,1,1479,
71172458,16,0,555,1,
71181731,2459,16,0,555,
71191,477,1555,1,1231,
71202460,16,0,298,1,
7121479,1565,1,480,1570,
71221,1485,2461,16,0,
7123298,1,1737,2462,16,
71240,298,1,1989,925,
71251,1990,2463,16,0,
7126555,1,1443,2464,16,
71270,555,1,236,2465,
712816,0,555,1,2136,
7129852,1,476,1549,1,
7130242,2466,16,0,298,
71311,478,1588,1,1939,
71322467,16,0,298,1,
71332670,2468,16,0,555,
71341,1001,1598,1,1002,
71351603,1,1756,2469,16,
71360,555,1,26,2470,
713719,317,1,26,2471,
71385,84,1,1011,1112,
71391,1012,2472,16,0,
7140315,1,1013,1268,1,
7141262,1129,1,1267,2473,
714216,0,315,1,515,
71432474,16,0,672,1,
71441521,2475,16,0,315,
71451,525,1226,1,283,
71461182,1,2299,2476,16,
71470,315,1,42,2477,
714816,0,315,1,40,
71491187,1,44,1193,1,
715047,1194,1,1303,2478,
715116,0,315,1,1555,
71522479,16,0,315,1,
715350,1211,1,48,1200,
71541,49,1206,1,51,
71551216,1,63,1232,1,
7156305,1221,1,66,1238,
71571,67,1243,1,68,
71581248,1,69,1253,1,
715970,1258,1,73,2480,
716016,0,315,1,74,
71611263,1,328,1312,1,
71621048,1354,1,82,2481,
716316,0,315,1,1840,
71642482,16,0,315,1,
71651591,2483,16,0,315,
71661,1341,2484,16,0,
7167315,1,1096,1322,1,
716893,1328,1,352,1359,
71691,107,2485,16,0,
7170315,1,1114,1353,1,
7171118,1365,1,1123,2486,
717216,0,315,1,371,
71731375,1,1628,2487,16,
71740,315,1,375,1386,
71751,1882,2488,16,0,
7176315,1,377,1391,1,
7177379,1396,1,380,1401,
71781,883,2489,16,0,
7179315,1,373,1419,1,
7180130,1424,1,143,2490,
718116,0,315,1,387,
71822491,16,0,315,1,
71831159,2492,16,0,315,
71841,157,2493,16,0,
7185315,1,1413,2494,16,
71860,315,1,1665,2495,
718716,0,315,1,412,
71882496,16,0,315,1,
71892676,2497,16,0,315,
71901,1377,2498,16,0,
7191315,1,172,1470,1,
71921939,2499,16,0,315,
71931,437,2500,16,0,
7194605,1,188,1519,1,
7195942,1491,1,1195,2501,
719616,0,315,1,1449,
71972502,16,0,315,1,
71981701,2503,16,0,315,
71991,447,1512,1,205,
72002504,16,0,315,1,
7201827,2505,16,0,315,
72021,223,2506,16,0,
7203315,1,476,1549,1,
7204477,1555,1,1231,2507,
720516,0,315,1,479,
72061565,1,480,1570,1,
72071485,2508,16,0,315,
72081,1737,2509,16,0,
7209315,1,242,2510,16,
72100,315,1,478,1588,
72111,1001,1598,1,1002,
72121603,1,27,2511,19,
7213614,1,27,2512,5,
721495,1,256,2513,16,
72150,612,1,1261,2514,
721616,0,612,1,509,
72172515,16,0,612,1,
72181515,2516,16,0,612,
72191,2021,728,1,1775,
72202517,16,0,612,1,
72212029,735,1,2030,741,
72221,2031,746,1,2032,
7223751,1,2033,756,1,
7224277,2518,16,0,612,
72251,2035,762,1,2037,
7226767,1,2039,772,1,
722732,2519,16,0,612,
72281,2041,778,1,2293,
72292520,16,0,612,1,
72302043,784,1,2045,789,
72311,41,2521,16,0,
7232612,1,1297,2522,16,
72330,612,1,43,2523,
723416,0,612,1,1803,
7235797,1,1804,2524,16,
72360,612,1,299,2525,
723716,0,612,1,52,
72382526,16,0,612,1,
72392318,2527,16,0,612,
72401,62,2528,16,0,
7241612,1,2075,2529,16,
72420,612,1,1574,809,
72431,71,2530,16,0,
7244612,1,76,2531,16,
72450,612,1,1834,2532,
724616,0,612,1,2337,
72472533,16,0,612,1,
724879,2534,16,0,612,
72491,1335,2535,16,0,
7250612,1,322,2536,16,
72510,612,1,85,2537,
725216,0,612,1,89,
72532538,16,0,612,1,
7254346,2539,16,0,612,
72551,2105,824,1,2106,
72562540,16,0,612,1,
725797,2541,16,0,612,
72581,1860,831,1,2364,
7259837,1,102,2542,16,
72600,612,1,112,2543,
726116,0,612,1,1117,
72622544,16,0,612,1,
72631873,845,1,1876,2545,
726416,0,612,1,124,
72652546,16,0,612,1,
72662136,852,1,381,2547,
726716,0,612,1,525,
72682548,16,0,612,1,
7269137,2549,16,0,612,
72701,1901,2550,16,0,
7271612,1,1153,2551,16,
72720,612,1,151,2552,
727316,0,612,1,1407,
72742553,16,0,612,1,
72751659,2554,16,0,612,
72761,2413,2555,16,0,
7277612,1,406,2556,16,
72780,612,1,1371,2557,
727916,0,612,1,166,
72802558,16,0,612,1,
72811622,2559,16,0,612,
72821,1931,870,1,1933,
72832560,16,0,612,1,
7284431,2561,16,0,612,
72851,1585,2562,16,0,
7286612,1,182,2563,16,
72870,612,1,1189,2564,
728816,0,612,1,1443,
72892565,16,0,612,1,
72901695,2566,16,0,612,
72911,2198,2567,16,0,
7292612,1,447,2568,16,
72930,612,1,2458,885,
72941,2459,891,1,1958,
72952569,16,0,612,1,
72962462,898,1,1657,903,
72971,2464,908,1,199,
72982570,16,0,612,1,
7299459,2571,16,0,612,
73001,462,2572,16,0,
7301612,1,217,2573,16,
73020,612,1,2227,917,
73031,1225,2574,16,0,
7304612,1,1479,2575,16,
73050,612,1,1731,2576,
730616,0,612,1,1989,
7307925,1,1990,2577,16,
73080,612,1,236,2578,
730916,0,612,1,2670,
73102579,16,0,612,1,
73111756,2580,16,0,612,
73121,28,2581,19,642,
73131,28,2582,5,60,
73141,328,1312,1,223,
73151539,1,1096,1322,1,
7316118,1365,1,883,1407,
73171,525,1226,1,1001,
73181598,1,130,1424,1,
7319459,1712,1,1114,1353,
73201,352,1359,1,447,
73211512,1,464,1707,1,
73221011,1112,1,1013,1268,
73231,242,1583,1,143,
73241429,1,40,1187,1,
732541,1681,1,42,1685,
73261,479,1565,1,44,
73271193,1,481,1714,1,
7328373,1419,1,47,1194,
73291,157,1452,1,49,
73301206,1,50,1211,1,
733148,1200,1,379,1396,
73321,380,1401,1,51,
73331216,1,476,1549,1,
7334371,1375,1,478,1588,
73351,1048,1354,1,375,
73361386,1,172,1470,1,
7337262,1129,1,283,1182,
73381,63,1232,1,67,
73391243,1,68,1248,1,
734069,1253,1,66,1238,
73411,461,2583,16,0,
7342640,1,74,1263,1,
7343377,1391,1,1002,1603,
73441,70,1258,1,188,
73451519,1,82,1290,1,
7346305,1221,1,477,1555,
73471,827,1341,1,93,
73481328,1,480,1570,1,
7349205,1524,1,942,1491,
73501,107,1348,1,29,
73512584,19,289,1,29,
73522585,5,84,1,1011,
73531112,1,1012,2586,16,
73540,287,1,1013,1268,
73551,262,1129,1,1267,
73562587,16,0,287,1,
7357515,2588,16,0,287,
73581,1521,2589,16,0,
7359287,1,525,1226,1,
7360283,1182,1,2299,2590,
736116,0,287,1,42,
73622591,16,0,287,1,
736340,1187,1,44,1193, 678940,1187,1,44,1193,
73641,47,1194,1,1303, 67901,47,1194,1,1303,
73652592,16,0,287,1, 67912251,16,0,438,1,
73661555,2593,16,0,287, 67921555,2252,16,0,438,
73671,50,1211,1,48, 67931,50,1211,1,48,
73681200,1,49,1206,1, 67941200,1,49,1206,1,
736951,1216,1,63,1232, 679551,1216,1,63,1232,
@@ -7371,224 +6797,372 @@ public yyLSLSyntax
73711238,1,67,1243,1, 67971238,1,67,1243,1,
737268,1248,1,69,1253, 679868,1248,1,69,1253,
73731,70,1258,1,73, 67991,70,1258,1,73,
73742594,16,0,287,1, 68002253,16,0,438,1,
737574,1263,1,328,1312, 680174,1263,1,328,2254,
73761,1048,1354,1,82, 680216,0,438,1,1048,
73772595,16,0,287,1, 68032255,16,0,438,1,
73781840,2596,16,0,287, 680482,2256,16,0,438,
73791,1591,2597,16,0, 68051,1840,2257,16,0,
7380287,1,1341,2598,16, 6806438,1,1591,2258,16,
73810,287,1,1096,1322, 68070,438,1,1341,2259,
73821,93,1328,1,352, 680816,0,438,1,1096,
73831359,1,107,2599,16, 68091322,1,93,1328,1,
73840,287,1,1114,1353, 6810352,2260,16,0,438,
73851,118,1365,1,1123, 68111,107,2261,16,0,
73862600,16,0,287,1, 6812438,1,1114,1353,1,
7387371,1375,1,1628,2601, 6813118,2262,16,0,438,
738816,0,287,1,375, 68141,1123,2263,16,0,
73891386,1,1882,2602,16, 6815438,1,371,1375,1,
73900,287,1,377,1391, 68161628,2264,16,0,438,
73911,379,1396,1,380, 68171,375,1386,1,1882,
73921401,1,883,2603,16, 68182265,16,0,438,1,
73930,287,1,373,1419, 6819377,1391,1,379,1396,
73941,130,1424,1,143, 68201,380,1401,1,883,
73951429,1,387,2604,16, 68212266,16,0,438,1,
73960,287,1,1159,2605, 6822373,1419,1,130,2267,
739716,0,287,1,157, 682316,0,438,1,143,
73981452,1,1413,2606,16, 68242268,16,0,438,1,
73990,287,1,1665,2607, 6825387,2269,16,0,438,
740016,0,287,1,412, 68261,1159,2270,16,0,
74012608,16,0,287,1, 6827438,1,157,2271,16,
74022676,2609,16,0,287, 68280,438,1,1413,2272,
74031,1377,2610,16,0, 682916,0,438,1,1665,
7404287,1,172,1470,1, 68302273,16,0,438,1,
74051939,2611,16,0,287, 6831412,2274,16,0,438,
74061,437,2612,16,0, 68321,2676,2275,16,0,
7407287,1,188,1519,1, 6833438,1,1377,2276,16,
7408942,1491,1,1195,2613, 68340,438,1,172,2277,
740916,0,287,1,1449, 683516,0,438,1,1939,
74102614,16,0,287,1, 68362278,16,0,438,1,
74111701,2615,16,0,287, 6837437,2279,16,0,438,
68381,188,2280,16,0,
6839438,1,942,2281,16,
68400,438,1,1195,2282,
684116,0,438,1,1449,
68422283,16,0,438,1,
68431701,2284,16,0,438,
74121,447,1512,1,205, 68441,447,1512,1,205,
74132616,16,0,287,1, 68452285,16,0,438,1,
7414827,2617,16,0,287, 6846827,2286,16,0,438,
74151,223,2618,16,0, 68471,223,2287,16,0,
7416287,1,476,1549,1, 6848438,1,476,1549,1,
7417477,1555,1,1231,2619, 6849477,1555,1,1231,2288,
741816,0,287,1,479, 685016,0,438,1,479,
74191565,1,480,1570,1, 68511565,1,480,1570,1,
74201485,2620,16,0,287, 68521485,2289,16,0,438,
74211,1737,2621,16,0, 68531,1737,2290,16,0,
7422287,1,242,2622,16, 6854438,1,242,2291,16,
74230,287,1,478,1588, 68550,438,1,478,1588,
74241,1001,1598,1,1002, 68561,1001,1598,1,1002,
74251603,1,30,2623,19, 68571603,1,22,2292,19,
7426277,1,30,2624,5, 6858391,1,22,2293,5,
742784,1,1011,1112,1, 685984,1,1011,1112,1,
74281012,2625,16,0,275, 68601012,2294,16,0,389,
74291,1013,1268,1,262, 68611,1013,1268,1,262,
74301129,1,1267,2626,16, 68621129,1,1267,2295,16,
74310,275,1,515,2627, 68630,389,1,515,2296,
743216,0,275,1,1521, 686416,0,389,1,1521,
74332628,16,0,275,1, 68652297,16,0,389,1,
7434525,1226,1,283,1182, 6866525,1226,1,283,1182,
74351,2299,2629,16,0, 68671,2299,2298,16,0,
7436275,1,42,2630,16, 6868389,1,42,2299,16,
74370,275,1,40,1187, 68690,389,1,40,1187,
74381,44,1193,1,47, 68701,44,1193,1,47,
74391194,1,1303,2631,16, 68711194,1,1303,2300,16,
74400,275,1,1555,2632, 68720,389,1,1555,2301,
744116,0,275,1,50, 687316,0,389,1,50,
74421211,1,48,1200,1, 68741211,1,48,1200,1,
744349,1206,1,51,1216, 687549,1206,1,51,1216,
74441,63,1232,1,305, 68761,63,1232,1,305,
74451221,1,66,1238,1, 68771221,1,66,1238,1,
744667,1243,1,68,1248, 687867,1243,1,68,1248,
74471,69,1253,1,70, 68791,69,1253,1,70,
74481258,1,73,2633,16, 68801258,1,73,2302,16,
74490,275,1,74,1263, 68810,389,1,74,1263,
74501,328,1312,1,1048, 68821,328,2303,16,0,
74511354,1,82,2634,16, 6883389,1,1048,2304,16,
74520,275,1,1840,2635, 68840,389,1,82,2305,
745316,0,275,1,1591, 688516,0,389,1,1840,
74542636,16,0,275,1, 68862306,16,0,389,1,
74551341,2637,16,0,275, 68871591,2307,16,0,389,
74561,1096,1322,1,93, 68881,1341,2308,16,0,
74571328,1,352,1359,1, 6889389,1,1096,1322,1,
7458107,2638,16,0,275, 689093,1328,1,352,2309,
74591,1114,1353,1,118, 689116,0,389,1,107,
74601365,1,1123,2639,16, 68922310,16,0,389,1,
74610,275,1,371,1375, 68931114,1353,1,118,2311,
74621,1628,2640,16,0, 689416,0,389,1,1123,
7463275,1,375,1386,1, 68952312,16,0,389,1,
74641882,2641,16,0,275, 6896371,1375,1,1628,2313,
74651,377,1391,1,379, 689716,0,389,1,375,
74661396,1,380,1401,1, 68981386,1,1882,2314,16,
7467883,2642,16,0,275, 68990,389,1,377,1391,
74681,373,1419,1,130, 69001,379,1396,1,380,
74691424,1,143,1429,1, 69011401,1,883,2315,16,
7470387,2643,16,0,275, 69020,389,1,373,1419,
74711,1159,2644,16,0, 69031,130,2316,16,0,
7472275,1,157,1452,1, 6904389,1,143,2317,16,
74731413,2645,16,0,275, 69050,389,1,387,2318,
74741,1665,2646,16,0, 690616,0,389,1,1159,
7475275,1,412,2647,16, 69072319,16,0,389,1,
74760,275,1,2676,2648, 6908157,2320,16,0,389,
747716,0,275,1,1377, 69091,1413,2321,16,0,
74782649,16,0,275,1, 6910389,1,1665,2322,16,
7479172,1470,1,1939,2650, 69110,389,1,412,2323,
748016,0,275,1,437, 691216,0,389,1,2676,
74812651,16,0,275,1, 69132324,16,0,389,1,
7482188,1519,1,942,1491, 69141377,2325,16,0,389,
74831,1195,2652,16,0, 69151,172,2326,16,0,
7484275,1,1449,2653,16, 6916389,1,1939,2327,16,
74850,275,1,1701,2654, 69170,389,1,437,2328,
748616,0,275,1,447, 691816,0,389,1,188,
74871512,1,205,2655,16, 69192329,16,0,389,1,
74880,275,1,827,2656, 6920942,2330,16,0,389,
748916,0,275,1,223, 69211,1195,2331,16,0,
74902657,16,0,275,1, 6922389,1,1449,2332,16,
69230,389,1,1701,2333,
692416,0,389,1,447,
69251512,1,205,2334,16,
69260,389,1,827,2335,
692716,0,389,1,223,
69282336,16,0,389,1,
7491476,1549,1,477,1555, 6929476,1549,1,477,1555,
74921,1231,2658,16,0, 69301,1231,2337,16,0,
7493275,1,479,1565,1, 6931389,1,479,1565,1,
7494480,1570,1,1485,2659, 6932480,1570,1,1485,2338,
749516,0,275,1,1737, 693316,0,389,1,1737,
74962660,16,0,275,1, 69342339,16,0,389,1,
7497242,2661,16,0,275, 6935242,2340,16,0,389,
74981,478,1588,1,1001, 69361,478,1588,1,1001,
74991598,1,1002,1603,1, 69371598,1,1002,1603,1,
750031,2662,19,266,1, 693823,2341,19,514,1,
750131,2663,5,84,1, 693923,2342,5,38,1,
75021011,1112,1,1012,2664, 69401901,2343,16,0,512,
750316,0,264,1,1013, 69411,2075,2344,16,0,
75041268,1,262,1129,1, 6942512,1,1860,831,1,
75051267,2665,16,0,264, 69431803,797,1,1804,2345,
75061,515,2666,16,0, 694416,0,512,1,2413,
7507264,1,1521,2667,16, 69452346,16,0,512,1,
75080,264,1,525,1226, 69462198,2347,16,0,512,
75091,283,1182,1,2299, 69471,1873,845,1,1657,
75102668,16,0,264,1, 6948903,1,1989,925,1,
751142,2669,16,0,264, 69491990,2348,16,0,512,
75121,40,1187,1,44, 69501,1775,2349,16,0,
75131193,1,47,1194,1, 6951512,1,32,2350,16,
75141303,2670,16,0,264, 69520,512,1,2105,824,
75151,1555,2671,16,0, 69531,2106,2351,16,0,
7516264,1,50,1211,1, 6954512,1,2364,837,1,
751748,1200,1,49,1206, 69552227,917,1,2337,2352,
75181,51,1216,1,63, 695616,0,512,1,2021,
75191232,1,305,1221,1, 6957728,1,2458,885,1,
752066,1238,1,67,1243, 69582459,891,1,2462,898,
75211,68,1248,1,69, 69591,2136,852,1,2464,
75221253,1,70,1258,1, 6960908,1,2029,735,1,
752373,2672,16,0,264, 69612030,741,1,2031,746,
75241,74,1263,1,328, 69621,2032,751,1,2033,
75251312,1,1048,1354,1, 6963756,1,2035,762,1,
752682,2673,16,0,264, 69642037,767,1,2039,772,
75271,1840,2674,16,0, 69651,1931,870,1,2041,
7528264,1,1591,2675,16, 6966778,1,2043,784,1,
75290,264,1,1341,2676, 69672045,789,1,1574,809,
753016,0,264,1,1096, 69681,1958,2353,16,0,
75311322,1,93,1328,1, 6969512,1,24,2354,19,
7532352,1359,1,107,2677, 6970186,1,24,2355,5,
753316,0,264,1,1114, 69715,1,44,2356,16,
75341353,1,118,1365,1, 69720,184,1,377,2357,
75351123,2678,16,0,264, 697316,0,550,1,40,
75361,371,1375,1,1628, 69742358,16,0,684,1,
75372679,16,0,264,1, 697563,2359,16,0,206,
7538375,1386,1,1882,2680, 69761,373,2360,16,0,
753916,0,264,1,377, 6977546,1,25,2361,19,
6978300,1,25,2362,5,
6979177,1,2676,2363,16,
69800,298,1,256,2364,
698116,0,555,1,1261,
69822365,16,0,555,1,
69831011,1112,1,1012,2366,
698416,0,298,1,2458,
6985885,1,262,1129,1,
69861267,2367,16,0,298,
69871,2021,728,1,1521,
69882368,16,0,298,1,
69891775,2369,16,0,555,
69901,2029,735,1,2030,
6991741,1,2031,746,1,
69922032,751,1,2033,756,
69931,277,2370,16,0,
6994555,1,2035,762,1,
69952037,767,1,2039,772,
69961,32,2371,16,0,
6997555,1,2464,908,1,
69982293,2372,16,0,555,
69991,2043,784,1,2045,
7000789,1,2299,2373,16,
70010,298,1,41,2374,
700216,0,555,1,42,
70032375,16,0,298,1,
700440,1187,1,44,1193,
70051,43,2376,16,0,
7006555,1,1804,2377,16,
70070,555,1,48,1200,
70081,49,1206,1,47,
70091194,1,51,1216,1,
701052,2378,16,0,555,
70111,50,1211,1,305,
70121221,1,1096,1322,1,
70131515,2379,16,0,555,
70141,2318,2380,16,0,
7015555,1,62,2381,16,
70160,555,1,63,1232,
70171,66,1238,1,67,
70181243,1,68,1248,1,
701969,1253,1,70,1258,
70201,71,2382,16,0,
7021555,1,283,1182,1,
702273,2383,16,0,298,
70231,74,1263,1,1013,
70241268,1,76,2384,16,
70250,555,1,1834,2385,
702616,0,555,1,2337,
70272386,16,0,555,1,
702879,2387,16,0,555,
70291,1335,2388,16,0,
7030555,1,299,2389,16,
70310,555,1,82,2390,
703216,0,298,1,1840,
70332391,16,0,298,1,
70341297,2392,16,0,555,
70351,85,2393,16,0,
7036555,1,1341,2394,16,
70370,298,1,89,2395,
703816,0,555,1,1303,
70392396,16,0,298,1,
7040509,2397,16,0,555,
70411,93,1328,1,322,
70422398,16,0,555,1,
704397,2399,16,0,555,
70441,2041,778,1,1555,
70452400,16,0,298,1,
7046827,2401,16,0,298,
70471,102,2402,16,0,
7048555,1,1860,831,1,
70491803,797,1,2364,837,
70501,107,2403,16,0,
7051298,1,1114,1353,1,
7052112,2404,16,0,555,
70531,1117,2405,16,0,
7054555,1,352,1359,1,
70551873,845,1,118,1365,
70561,1123,2406,16,0,
7057298,1,371,1375,1,
7058515,2407,16,0,298,
70591,1377,2408,16,0,
7060298,1,124,2409,16,
70610,555,1,1882,2410,
706216,0,298,1,377,
75401391,1,379,1396,1, 70631391,1,379,1396,1,
7541380,1401,1,883,2681, 7064380,1401,1,130,1424,
754216,0,264,1,373, 70651,346,2411,16,0,
75431419,1,130,1424,1, 7066555,1,2075,2412,16,
7544143,2682,16,0,264, 70670,555,1,373,1419,
75451,387,2683,16,0, 70681,387,2413,16,0,
7546264,1,1159,2684,16, 7069298,1,137,2414,16,
75470,264,1,157,2685, 70700,555,1,143,2415,
754816,0,264,1,1413, 707116,0,298,1,1901,
75492686,16,0,264,1, 70722416,16,0,555,1,
75501665,2687,16,0,264, 70731048,1354,1,1153,2417,
75511,412,2688,16,0, 707416,0,555,1,375,
7552264,1,2676,2689,16, 70751386,1,151,2418,16,
75530,264,1,1377,2690, 70760,555,1,1407,2419,
755416,0,264,1,172, 707716,0,555,1,1659,
75551470,1,1939,2691,16, 70782420,16,0,555,1,
75560,264,1,437,2692, 70792413,2421,16,0,555,
755716,0,264,1,188, 70801,1159,2422,16,0,
75581519,1,942,1491,1, 7081298,1,381,2423,16,
75591195,2693,16,0,264, 70820,555,1,157,2424,
75601,1449,2694,16,0, 708316,0,298,1,1413,
7561264,1,1701,2695,16, 70842425,16,0,298,1,
75620,264,1,447,1512, 7085883,2426,16,0,298,
75631,205,2696,16,0, 70861,1371,2427,16,0,
7564264,1,827,2697,16, 7087555,1,328,1312,1,
75650,264,1,223,2698, 70882105,824,1,2106,2428,
756616,0,264,1,476, 708916,0,555,1,166,
75671549,1,477,1555,1, 70902429,16,0,555,1,
75681231,2699,16,0,264, 7091525,2430,16,0,555,
70921,1622,2431,16,0,
7093555,1,406,2432,16,
70940,555,1,1574,809,
70951,172,1470,1,1931,
7096870,1,412,2433,16,
70970,298,1,1933,2434,
709816,0,555,1,1876,
70992435,16,0,555,1,
7100431,2436,16,0,555,
71011,1585,2437,16,0,
7102555,1,182,2438,16,
71030,555,1,1628,2439,
710416,0,298,1,1189,
71052440,16,0,555,1,
7106437,2441,16,0,298,
71071,1591,2442,16,0,
7108298,1,188,1519,1,
71091695,2443,16,0,555,
71101,2198,2444,16,0,
7111555,1,1195,2445,16,
71120,298,1,1449,2446,
711316,0,298,1,1701,
71142447,16,0,298,1,
7115447,2448,16,0,555,
71161,199,2449,16,0,
7117555,1,2459,891,1,
71181958,2450,16,0,555,
71191,2462,898,1,1657,
7120903,1,205,2451,16,
71210,298,1,459,2452,
712216,0,555,1,462,
71232453,16,0,555,1,
71241665,2454,16,0,298,
71251,217,2455,16,0,
7126555,1,2227,917,1,
7127942,1491,1,1225,2456,
712816,0,555,1,223,
71292457,16,0,298,1,
71301479,2458,16,0,555,
71311,1731,2459,16,0,
7132555,1,477,1555,1,
71331231,2460,16,0,298,
75691,479,1565,1,480, 71341,479,1565,1,480,
75701570,1,1485,2700,16, 71351570,1,1485,2461,16,
75710,264,1,1737,2701, 71360,298,1,1737,2462,
757216,0,264,1,242, 713716,0,298,1,1989,
75732702,16,0,264,1, 7138925,1,1990,2463,16,
7574478,1588,1,1001,1598, 71390,555,1,1443,2464,
75751,1002,1603,1,32, 714016,0,555,1,236,
75762703,19,256,1,32, 71412465,16,0,555,1,
75772704,5,84,1,1011, 71422136,852,1,476,1549,
75781112,1,1012,2705,16, 71431,242,2466,16,0,
75790,254,1,1013,1268, 7144298,1,478,1588,1,
71451939,2467,16,0,298,
71461,2670,2468,16,0,
7147555,1,1001,1598,1,
71481002,1603,1,1756,2469,
714916,0,555,1,26,
71502470,19,317,1,26,
71512471,5,84,1,1011,
71521112,1,1012,2472,16,
71530,315,1,1013,1268,
75801,262,1129,1,1267, 71541,262,1129,1,1267,
75812706,16,0,254,1, 71552473,16,0,315,1,
7582515,2707,16,0,254, 7156515,2474,16,0,672,
75831,1521,2708,16,0, 71571,1521,2475,16,0,
7584254,1,525,1226,1, 7158315,1,525,1226,1,
7585283,1182,1,2299,2709, 7159283,1182,1,2299,2476,
758616,0,254,1,42, 716016,0,315,1,42,
75872710,16,0,254,1, 71612477,16,0,315,1,
758840,1187,1,44,1193, 716240,1187,1,44,1193,
75891,47,1194,1,1303, 71631,47,1194,1,1303,
75902711,16,0,254,1, 71642478,16,0,315,1,
75911555,2712,16,0,254, 71651555,2479,16,0,315,
75921,50,1211,1,48, 71661,50,1211,1,48,
75931200,1,49,1206,1, 71671200,1,49,1206,1,
759451,1216,1,63,1232, 716851,1216,1,63,1232,
@@ -7596,934 +7170,1461 @@ public yyLSLSyntax
75961238,1,67,1243,1, 71701238,1,67,1243,1,
759768,1248,1,69,1253, 717168,1248,1,69,1253,
75981,70,1258,1,73, 71721,70,1258,1,73,
75992713,16,0,254,1, 71732480,16,0,315,1,
760074,1263,1,328,1312, 717474,1263,1,328,1312,
76011,1048,1354,1,82, 71751,1048,1354,1,82,
76022714,16,0,254,1, 71762481,16,0,315,1,
76031840,2715,16,0,254, 71771840,2482,16,0,315,
76041,1591,2716,16,0, 71781,1591,2483,16,0,
7605254,1,1341,2717,16, 7179315,1,1341,2484,16,
76060,254,1,1096,1322, 71800,315,1,1096,1322,
76071,93,1328,1,352, 71811,93,1328,1,352,
76081359,1,107,2718,16, 71821359,1,107,2485,16,
76090,254,1,1114,1353, 71830,315,1,1114,1353,
76101,118,1365,1,1123, 71841,118,1365,1,1123,
76112719,16,0,254,1, 71852486,16,0,315,1,
7612371,1375,1,1628,2720, 7186371,1375,1,1628,2487,
761316,0,254,1,375, 718716,0,315,1,375,
76141386,1,1882,2721,16, 71881386,1,1882,2488,16,
76150,254,1,377,1391, 71890,315,1,377,1391,
76161,379,1396,1,380, 71901,379,1396,1,380,
76171401,1,883,2722,16, 71911401,1,883,2489,16,
76180,254,1,373,1419, 71920,315,1,373,1419,
76191,130,1424,1,143, 71931,130,1424,1,143,
76202723,16,0,254,1, 71942490,16,0,315,1,
7621387,2724,16,0,254, 7195387,2491,16,0,315,
76221,1159,2725,16,0, 71961,1159,2492,16,0,
7623254,1,157,2726,16, 7197315,1,157,2493,16,
76240,254,1,1413,2727, 71980,315,1,1413,2494,
762516,0,254,1,1665, 719916,0,315,1,1665,
76262728,16,0,254,1, 72002495,16,0,315,1,
7627412,2729,16,0,254, 7201412,2496,16,0,315,
76281,2676,2730,16,0, 72021,2676,2497,16,0,
7629254,1,1377,2731,16, 7203315,1,1377,2498,16,
76300,254,1,172,1470, 72040,315,1,172,1470,
76311,1939,2732,16,0, 72051,1939,2499,16,0,
7632254,1,437,2733,16, 7206315,1,437,2500,16,
76330,254,1,188,1519, 72070,605,1,188,1519,
76341,942,1491,1,1195, 72081,942,1491,1,1195,
76352734,16,0,254,1, 72092501,16,0,315,1,
76361449,2735,16,0,254, 72101449,2502,16,0,315,
76371,1701,2736,16,0, 72111,1701,2503,16,0,
7638254,1,447,1512,1, 7212315,1,447,1512,1,
7639205,2737,16,0,254, 7213205,2504,16,0,315,
76401,827,2738,16,0, 72141,827,2505,16,0,
7641254,1,223,2739,16, 7215315,1,223,2506,16,
76420,254,1,476,1549, 72160,315,1,476,1549,
76431,477,1555,1,1231, 72171,477,1555,1,1231,
76442740,16,0,254,1, 72182507,16,0,315,1,
7645479,1565,1,480,1570, 7219479,1565,1,480,1570,
76461,1485,2741,16,0, 72201,1485,2508,16,0,
7647254,1,1737,2742,16, 7221315,1,1737,2509,16,
76480,254,1,242,2743, 72220,315,1,242,2510,
764916,0,254,1,478, 722316,0,315,1,478,
76501588,1,1001,1598,1, 72241588,1,1001,1598,1,
76511002,1603,1,33,2744, 72251002,1603,1,27,2511,
765219,340,1,33,2745, 722619,614,1,27,2512,
72275,95,1,256,2513,
722816,0,612,1,1261,
72292514,16,0,612,1,
7230509,2515,16,0,612,
72311,1515,2516,16,0,
7232612,1,2021,728,1,
72331775,2517,16,0,612,
72341,2029,735,1,2030,
7235741,1,2031,746,1,
72362032,751,1,2033,756,
72371,277,2518,16,0,
7238612,1,2035,762,1,
72392037,767,1,2039,772,
72401,32,2519,16,0,
7241612,1,2041,778,1,
72422293,2520,16,0,612,
72431,2043,784,1,2045,
7244789,1,41,2521,16,
72450,612,1,1297,2522,
724616,0,612,1,43,
72472523,16,0,612,1,
72481803,797,1,1804,2524,
724916,0,612,1,299,
72502525,16,0,612,1,
725152,2526,16,0,612,
72521,2318,2527,16,0,
7253612,1,62,2528,16,
72540,612,1,2075,2529,
725516,0,612,1,1574,
7256809,1,71,2530,16,
72570,612,1,76,2531,
725816,0,612,1,1834,
72592532,16,0,612,1,
72602337,2533,16,0,612,
72611,79,2534,16,0,
7262612,1,1335,2535,16,
72630,612,1,322,2536,
726416,0,612,1,85,
72652537,16,0,612,1,
726689,2538,16,0,612,
72671,346,2539,16,0,
7268612,1,2105,824,1,
72692106,2540,16,0,612,
72701,97,2541,16,0,
7271612,1,1860,831,1,
72722364,837,1,102,2542,
727316,0,612,1,112,
72742543,16,0,612,1,
72751117,2544,16,0,612,
72761,1873,845,1,1876,
72772545,16,0,612,1,
7278124,2546,16,0,612,
72791,2136,852,1,381,
72802547,16,0,612,1,
7281525,2548,16,0,612,
72821,137,2549,16,0,
7283612,1,1901,2550,16,
72840,612,1,1153,2551,
728516,0,612,1,151,
72862552,16,0,612,1,
72871407,2553,16,0,612,
72881,1659,2554,16,0,
7289612,1,2413,2555,16,
72900,612,1,406,2556,
729116,0,612,1,1371,
72922557,16,0,612,1,
7293166,2558,16,0,612,
72941,1622,2559,16,0,
7295612,1,1931,870,1,
72961933,2560,16,0,612,
72971,431,2561,16,0,
7298612,1,1585,2562,16,
72990,612,1,182,2563,
730016,0,612,1,1189,
73012564,16,0,612,1,
73021443,2565,16,0,612,
73031,1695,2566,16,0,
7304612,1,2198,2567,16,
73050,612,1,447,2568,
730616,0,612,1,2458,
7307885,1,2459,891,1,
73081958,2569,16,0,612,
73091,2462,898,1,1657,
7310903,1,2464,908,1,
7311199,2570,16,0,612,
73121,459,2571,16,0,
7313612,1,462,2572,16,
73140,612,1,217,2573,
731516,0,612,1,2227,
7316917,1,1225,2574,16,
73170,612,1,1479,2575,
731816,0,612,1,1731,
73192576,16,0,612,1,
73201989,925,1,1990,2577,
732116,0,612,1,236,
73222578,16,0,612,1,
73232670,2579,16,0,612,
73241,1756,2580,16,0,
7325612,1,28,2581,19,
7326642,1,28,2582,5,
732760,1,328,1312,1,
7328223,1539,1,1096,1322,
73291,118,1365,1,883,
73301407,1,525,1226,1,
73311001,1598,1,130,1424,
73321,459,1712,1,1114,
73331353,1,352,1359,1,
7334447,1512,1,464,1707,
73351,1011,1112,1,1013,
73361268,1,242,1583,1,
7337143,1429,1,40,1187,
73381,41,1681,1,42,
73391685,1,479,1565,1,
734044,1193,1,481,1714,
73411,373,1419,1,47,
73421194,1,157,1452,1,
734349,1206,1,50,1211,
73441,48,1200,1,379,
73451396,1,380,1401,1,
734651,1216,1,476,1549,
73471,371,1375,1,478,
73481588,1,1048,1354,1,
7349375,1386,1,172,1470,
73501,262,1129,1,283,
73511182,1,63,1232,1,
735267,1243,1,68,1248,
73531,69,1253,1,66,
73541238,1,461,2583,16,
73550,640,1,74,1263,
73561,377,1391,1,1002,
73571603,1,70,1258,1,
7358188,1519,1,82,1290,
73591,305,1221,1,477,
73601555,1,827,1341,1,
736193,1328,1,480,1570,
73621,205,1524,1,942,
73631491,1,107,1348,1,
736429,2584,19,289,1,
736529,2585,5,84,1,
73661011,1112,1,1012,2586,
736716,0,287,1,1013,
73681268,1,262,1129,1,
73691267,2587,16,0,287,
73701,515,2588,16,0,
7371287,1,1521,2589,16,
73720,287,1,525,1226,
73731,283,1182,1,2299,
73742590,16,0,287,1,
737542,2591,16,0,287,
73761,40,1187,1,44,
73771193,1,47,1194,1,
73781303,2592,16,0,287,
73791,1555,2593,16,0,
7380287,1,50,1211,1,
738148,1200,1,49,1206,
73821,51,1216,1,63,
73831232,1,305,1221,1,
738466,1238,1,67,1243,
73851,68,1248,1,69,
73861253,1,70,1258,1,
738773,2594,16,0,287,
73881,74,1263,1,328,
73891312,1,1048,1354,1,
739082,2595,16,0,287,
73911,1840,2596,16,0,
7392287,1,1591,2597,16,
73930,287,1,1341,2598,
739416,0,287,1,1096,
73951322,1,93,1328,1,
7396352,1359,1,107,2599,
739716,0,287,1,1114,
73981353,1,118,1365,1,
73991123,2600,16,0,287,
74001,371,1375,1,1628,
74012601,16,0,287,1,
7402375,1386,1,1882,2602,
740316,0,287,1,377,
74041391,1,379,1396,1,
7405380,1401,1,883,2603,
740616,0,287,1,373,
74071419,1,130,1424,1,
7408143,1429,1,387,2604,
740916,0,287,1,1159,
74102605,16,0,287,1,
7411157,1452,1,1413,2606,
741216,0,287,1,1665,
74132607,16,0,287,1,
7414412,2608,16,0,287,
74151,2676,2609,16,0,
7416287,1,1377,2610,16,
74170,287,1,172,1470,
74181,1939,2611,16,0,
7419287,1,437,2612,16,
74200,287,1,188,1519,
74211,942,1491,1,1195,
74222613,16,0,287,1,
74231449,2614,16,0,287,
74241,1701,2615,16,0,
7425287,1,447,1512,1,
7426205,2616,16,0,287,
74271,827,2617,16,0,
7428287,1,223,2618,16,
74290,287,1,476,1549,
74301,477,1555,1,1231,
74312619,16,0,287,1,
7432479,1565,1,480,1570,
74331,1485,2620,16,0,
7434287,1,1737,2621,16,
74350,287,1,242,2622,
743616,0,287,1,478,
74371588,1,1001,1598,1,
74381002,1603,1,30,2623,
743919,277,1,30,2624,
76535,84,1,1011,1112, 74405,84,1,1011,1112,
76541,1012,2746,16,0, 74411,1012,2625,16,0,
7655338,1,1013,1268,1, 7442275,1,1013,1268,1,
7656262,1129,1,1267,2747, 7443262,1129,1,1267,2626,
765716,0,338,1,515, 744416,0,275,1,515,
76582748,16,0,338,1, 74452627,16,0,275,1,
76591521,2749,16,0,338, 74461521,2628,16,0,275,
76601,525,1226,1,283, 74471,525,1226,1,283,
76611182,1,2299,2750,16, 74481182,1,2299,2629,16,
76620,338,1,42,2751, 74490,275,1,42,2630,
766316,0,338,1,40, 745016,0,275,1,40,
76641187,1,44,1193,1, 74511187,1,44,1193,1,
766547,1194,1,1303,2752, 745247,1194,1,1303,2631,
766616,0,338,1,1555, 745316,0,275,1,1555,
76672753,16,0,338,1, 74542632,16,0,275,1,
766850,1211,1,48,1200, 745550,1211,1,48,1200,
76691,49,1206,1,51, 74561,49,1206,1,51,
76701216,1,63,1232,1, 74571216,1,63,1232,1,
7671305,1221,1,66,1238, 7458305,1221,1,66,1238,
76721,67,1243,1,68, 74591,67,1243,1,68,
76731248,1,69,1253,1, 74601248,1,69,1253,1,
767470,1258,1,73,2754, 746170,1258,1,73,2633,
767516,0,338,1,74, 746216,0,275,1,74,
76761263,1,328,1312,1, 74631263,1,328,1312,1,
76771048,1354,1,82,2755, 74641048,1354,1,82,2634,
767816,0,338,1,1840, 746516,0,275,1,1840,
76792756,16,0,338,1, 74662635,16,0,275,1,
76801591,2757,16,0,338, 74671591,2636,16,0,275,
76811,1341,2758,16,0, 74681,1341,2637,16,0,
7682338,1,1096,1322,1, 7469275,1,1096,1322,1,
768393,1328,1,352,1359, 747093,1328,1,352,1359,
76841,107,2759,16,0, 74711,107,2638,16,0,
7685338,1,1114,1353,1, 7472275,1,1114,1353,1,
7686118,1365,1,1123,2760, 7473118,1365,1,1123,2639,
768716,0,338,1,371, 747416,0,275,1,371,
76881375,1,1628,2761,16, 74751375,1,1628,2640,16,
76890,338,1,375,1386, 74760,275,1,375,1386,
76901,1882,2762,16,0, 74771,1882,2641,16,0,
7691338,1,377,1391,1, 7478275,1,377,1391,1,
7692379,1396,1,380,1401, 7479379,1396,1,380,1401,
76931,883,2763,16,0, 74801,883,2642,16,0,
7694338,1,373,1419,1, 7481275,1,373,1419,1,
7695130,1424,1,143,1429, 7482130,1424,1,143,1429,
76961,387,2764,16,0, 74831,387,2643,16,0,
7697338,1,1159,2765,16, 7484275,1,1159,2644,16,
76980,338,1,157,1452, 74850,275,1,157,1452,
76991,1413,2766,16,0, 74861,1413,2645,16,0,
7700338,1,1665,2767,16, 7487275,1,1665,2646,16,
77010,338,1,412,2768, 74880,275,1,412,2647,
770216,0,338,1,2676, 748916,0,275,1,2676,
77032769,16,0,338,1, 74902648,16,0,275,1,
77041377,2770,16,0,338, 74911377,2649,16,0,275,
77051,172,1470,1,1939, 74921,172,1470,1,1939,
77062771,16,0,338,1, 74932650,16,0,275,1,
7707437,2772,16,0,338, 7494437,2651,16,0,275,
77081,188,1519,1,942, 74951,188,1519,1,942,
77091491,1,1195,2773,16, 74961491,1,1195,2652,16,
77100,338,1,1449,2774, 74970,275,1,1449,2653,
771116,0,338,1,1701, 749816,0,275,1,1701,
77122775,16,0,338,1, 74992654,16,0,275,1,
7713447,1512,1,205,2776, 7500447,1512,1,205,2655,
771416,0,338,1,827, 750116,0,275,1,827,
77152777,16,0,338,1, 75022656,16,0,275,1,
7716223,2778,16,0,338, 7503223,2657,16,0,275,
77171,476,1549,1,477, 75041,476,1549,1,477,
77181555,1,1231,2779,16, 75051555,1,1231,2658,16,
77190,338,1,479,1565, 75060,275,1,479,1565,
77201,480,1570,1,1485, 75071,480,1570,1,1485,
77212780,16,0,338,1, 75082659,16,0,275,1,
77221737,2781,16,0,338, 75091737,2660,16,0,275,
77231,242,1583,1,478, 75101,242,2661,16,0,
77241588,1,1001,1598,1, 7511275,1,478,1588,1,
77251002,1603,1,34,2782, 75121001,1598,1,1002,1603,
772619,330,1,34,2783, 75131,31,2662,19,266,
77275,84,1,1011,1112, 75141,31,2663,5,84,
77281,1012,2784,16,0, 75151,1011,1112,1,1012,
7729328,1,1013,1268,1, 75162664,16,0,264,1,
7730262,1129,1,1267,2785, 75171013,1268,1,262,1129,
773116,0,328,1,515, 75181,1267,2665,16,0,
77322786,16,0,328,1, 7519264,1,515,2666,16,
77331521,2787,16,0,328, 75200,264,1,1521,2667,
77341,525,1226,1,283, 752116,0,264,1,525,
77351182,1,2299,2788,16, 75221226,1,283,1182,1,
77360,328,1,42,2789, 75232299,2668,16,0,264,
773716,0,328,1,40, 75241,42,2669,16,0,
77381187,1,44,1193,1, 7525264,1,40,1187,1,
773947,1194,1,1303,2790, 752644,1193,1,47,1194,
774016,0,328,1,1555, 75271,1303,2670,16,0,
77412791,16,0,328,1, 7528264,1,1555,2671,16,
774250,1211,1,48,1200, 75290,264,1,50,1211,
77431,49,1206,1,51, 75301,48,1200,1,49,
77441216,1,63,1232,1, 75311206,1,51,1216,1,
7745305,1221,1,66,1238, 753263,1232,1,305,1221,
77461,67,1243,1,68, 75331,66,1238,1,67,
77471248,1,69,1253,1, 75341243,1,68,1248,1,
774870,1258,1,73,2792, 753569,1253,1,70,1258,
774916,0,328,1,74, 75361,73,2672,16,0,
77501263,1,328,1312,1, 7537264,1,74,1263,1,
77511048,1354,1,82,2793, 7538328,1312,1,1048,1354,
775216,0,328,1,1840, 75391,82,2673,16,0,
77532794,16,0,328,1, 7540264,1,1840,2674,16,
77541591,2795,16,0,328, 75410,264,1,1591,2675,
77551,1341,2796,16,0, 754216,0,264,1,1341,
7756328,1,1096,1322,1, 75432676,16,0,264,1,
775793,1328,1,352,1359, 75441096,1322,1,93,1328,
77581,107,2797,16,0, 75451,352,1359,1,107,
7759328,1,1114,1353,1, 75462677,16,0,264,1,
7760118,1365,1,1123,2798, 75471114,1353,1,118,1365,
776116,0,328,1,371, 75481,1123,2678,16,0,
77621375,1,1628,2799,16, 7549264,1,371,1375,1,
77630,328,1,375,1386, 75501628,2679,16,0,264,
77641,1882,2800,16,0, 75511,375,1386,1,1882,
7765328,1,377,1391,1, 75522680,16,0,264,1,
7766379,1396,1,380,1401, 7553377,1391,1,379,1396,
77671,883,2801,16,0, 75541,380,1401,1,883,
7768328,1,373,1419,1, 75552681,16,0,264,1,
7769130,1424,1,143,1429, 7556373,1419,1,130,1424,
77701,387,2802,16,0, 75571,143,2682,16,0,
7771328,1,1159,2803,16, 7558264,1,387,2683,16,
77720,328,1,157,1452, 75590,264,1,1159,2684,
77731,1413,2804,16,0, 756016,0,264,1,157,
7774328,1,1665,2805,16, 75612685,16,0,264,1,
77750,328,1,412,2806, 75621413,2686,16,0,264,
777616,0,328,1,2676, 75631,1665,2687,16,0,
77772807,16,0,328,1, 7564264,1,412,2688,16,
77781377,2808,16,0,328, 75650,264,1,2676,2689,
77791,172,1470,1,1939, 756616,0,264,1,1377,
77802809,16,0,328,1, 75672690,16,0,264,1,
7781437,2810,16,0,328, 7568172,1470,1,1939,2691,
77821,188,1519,1,942, 756916,0,264,1,437,
77831491,1,1195,2811,16, 75702692,16,0,264,1,
77840,328,1,1449,2812,
778516,0,328,1,1701,
77862813,16,0,328,1,
7787447,1512,1,205,1524,
77881,827,2814,16,0,
7789328,1,223,1539,1,
7790476,1549,1,477,1555,
77911,1231,2815,16,0,
7792328,1,479,1565,1,
7793480,1570,1,1485,2816,
779416,0,328,1,1737,
77952817,16,0,328,1,
7796242,1583,1,478,1588,
77971,1001,1598,1,1002,
77981603,1,35,2818,19,
7799320,1,35,2819,5,
780084,1,1011,1112,1,
78011012,2820,16,0,318,
78021,1013,1268,1,262,
78031129,1,1267,2821,16,
78040,318,1,515,2822,
780516,0,318,1,1521,
78062823,16,0,318,1,
7807525,1226,1,283,1182,
78081,2299,2824,16,0,
7809318,1,42,2825,16,
78100,318,1,40,1187,
78111,44,1193,1,47,
78121194,1,1303,2826,16,
78130,318,1,1555,2827,
781416,0,318,1,50,
78151211,1,48,1200,1,
781649,1206,1,51,1216,
78171,63,1232,1,305,
78181221,1,66,1238,1,
781967,1243,1,68,1248,
78201,69,1253,1,70,
78211258,1,73,2828,16,
78220,318,1,74,1263,
78231,328,1312,1,1048,
78241354,1,82,2829,16,
78250,318,1,1840,2830,
782616,0,318,1,1591,
78272831,16,0,318,1,
78281341,2832,16,0,318,
78291,1096,1322,1,93,
78301328,1,352,1359,1,
7831107,2833,16,0,318,
78321,1114,1353,1,118,
78331365,1,1123,2834,16,
78340,318,1,371,1375,
78351,1628,2835,16,0,
7836318,1,375,1386,1,
78371882,2836,16,0,318,
78381,377,1391,1,379,
78391396,1,380,1401,1,
7840883,2837,16,0,318,
78411,373,1419,1,130,
78421424,1,143,1429,1,
7843387,2838,16,0,318,
78441,1159,2839,16,0,
7845318,1,157,1452,1,
78461413,2840,16,0,318,
78471,1665,2841,16,0,
7848318,1,412,2842,16,
78490,318,1,2676,2843,
785016,0,318,1,1377,
78512844,16,0,318,1,
7852172,1470,1,1939,2845,
785316,0,318,1,437,
78542846,16,0,318,1,
7855188,1519,1,942,1491, 7571188,1519,1,942,1491,
78561,1195,2847,16,0, 75721,1195,2693,16,0,
7857318,1,1449,2848,16, 7573264,1,1449,2694,16,
78580,318,1,1701,2849, 75740,264,1,1701,2695,
785916,0,318,1,447, 757516,0,264,1,447,
78601512,1,205,1524,1, 75761512,1,205,2696,16,
7861827,2850,16,0,318, 75770,264,1,827,2697,
78621,223,2851,16,0, 757816,0,264,1,223,
7863318,1,476,1549,1, 75792698,16,0,264,1,
7864477,1555,1,1231,2852, 7580476,1549,1,477,1555,
786516,0,318,1,479, 75811,1231,2699,16,0,
78661565,1,480,1570,1, 7582264,1,479,1565,1,
78671485,2853,16,0,318, 7583480,1570,1,1485,2700,
78681,1737,2854,16,0, 758416,0,264,1,1737,
7869318,1,242,1583,1, 75852701,16,0,264,1,
7870478,1588,1,1001,1598, 7586242,2702,16,0,264,
78711,1002,1603,1,36, 75871,478,1588,1,1001,
78722855,19,226,1,36, 75881598,1,1002,1603,1,
78732856,5,94,1,256, 758932,2703,19,256,1,
78742857,16,0,224,1, 759032,2704,5,84,1,
78751261,2858,16,0,224, 75911011,1112,1,1012,2705,
78761,509,2859,16,0, 759216,0,254,1,1013,
7877224,1,1515,2860,16,
78780,224,1,2021,728,
78791,1775,2861,16,0,
7880224,1,2029,735,1,
78812030,741,1,2031,746,
78821,2032,751,1,2033,
7883756,1,277,2862,16,
78840,224,1,2035,762,
78851,2037,767,1,2039,
7886772,1,32,2863,16,
78870,224,1,2041,778,
78881,2293,2864,16,0,
7889224,1,2043,784,1,
78902045,789,1,41,2865,
789116,0,224,1,1297,
78922866,16,0,224,1,
789343,2867,16,0,224,
78941,1803,797,1,1804,
78952868,16,0,224,1,
7896299,2869,16,0,224,
78971,52,2870,16,0,
7898224,1,2318,2871,16,
78990,224,1,2075,2872,
790016,0,224,1,1574,
7901809,1,71,2873,16,
79020,224,1,76,2874,
790316,0,224,1,1834,
79042875,16,0,224,1,
79052337,2876,16,0,224,
79061,79,2877,16,0,
7907224,1,1335,2878,16,
79080,224,1,322,2879,
790916,0,224,1,85,
79102880,16,0,224,1,
791189,2881,16,0,224,
79121,346,2882,16,0,
7913224,1,2105,824,1,
79142106,2883,16,0,224,
79151,97,2884,16,0,
7916224,1,1860,831,1,
79172364,837,1,102,2885,
791816,0,224,1,112,
79192886,16,0,224,1,
79201117,2887,16,0,224,
79211,1873,845,1,1876,
79222888,16,0,224,1,
7923124,2889,16,0,224,
79241,2136,852,1,381,
79252890,16,0,224,1,
7926525,2891,16,0,224,
79271,137,2892,16,0,
7928224,1,1901,2893,16,
79290,224,1,1153,2894,
793016,0,224,1,151,
79312895,16,0,224,1,
79321407,2896,16,0,224,
79331,1659,2897,16,0,
7934224,1,2413,2898,16,
79350,224,1,406,2899,
793616,0,224,1,2670,
79372900,16,0,224,1,
79381657,903,1,166,2901,
793916,0,224,1,1622,
79402902,16,0,224,1,
79411931,870,1,1933,2903,
794216,0,224,1,431,
79432904,16,0,224,1,
79441585,2905,16,0,224,
79451,182,2906,16,0,
7946224,1,1189,2907,16,
79470,224,1,1443,2908,
794816,0,224,1,1695,
79492909,16,0,224,1,
79502198,2910,16,0,224,
79511,447,2911,16,0,
7952224,1,2458,885,1,
79532459,891,1,1958,2912,
795416,0,224,1,2462,
7955898,1,1371,2913,16,
79560,224,1,2464,908,
79571,199,2914,16,0,
7958224,1,459,2915,16,
79590,224,1,462,2916,
796016,0,224,1,217,
79612917,16,0,224,1,
79622227,917,1,1225,2918,
796316,0,224,1,1479,
79642919,16,0,224,1,
79651731,2920,16,0,224,
79661,1989,925,1,1990,
79672921,16,0,224,1,
7968236,2922,16,0,224,
79691,1756,2923,16,0,
7970224,1,37,2924,19,
7971246,1,37,2925,5,
797294,1,256,2926,16,
79730,244,1,1261,2927,
797416,0,244,1,509,
79752928,16,0,244,1,
79761515,2929,16,0,244,
79771,2021,728,1,1775,
79782930,16,0,244,1,
79792029,735,1,2030,741,
79801,2031,746,1,2032,
7981751,1,2033,756,1,
7982277,2931,16,0,244,
79831,2035,762,1,2037,
7984767,1,2039,772,1,
798532,2932,16,0,244,
79861,2041,778,1,2293,
79872933,16,0,244,1,
79882043,784,1,2045,789,
79891,41,2934,16,0,
7990244,1,1297,2935,16,
79910,244,1,43,2936,
799216,0,244,1,1803,
7993797,1,1804,2937,16,
79940,244,1,299,2938,
799516,0,244,1,52,
79962939,16,0,244,1,
79972318,2940,16,0,244,
79981,2075,2941,16,0,
7999244,1,1574,809,1,
800071,2942,16,0,244,
80011,76,2943,16,0,
8002244,1,1834,2944,16,
80030,244,1,2337,2945,
800416,0,244,1,79,
80052946,16,0,244,1,
80061335,2947,16,0,244,
80071,322,2948,16,0,
8008244,1,85,2949,16,
80090,244,1,89,2950,
801016,0,244,1,346,
80112951,16,0,244,1,
80122105,824,1,2106,2952,
801316,0,244,1,97,
80142953,16,0,244,1,
80151860,831,1,2364,837,
80161,102,2954,16,0,
8017244,1,112,2955,16,
80180,244,1,1117,2956,
801916,0,244,1,1873,
8020845,1,1876,2957,16,
80210,244,1,124,2958,
802216,0,244,1,2136,
8023852,1,381,2959,16,
80240,244,1,525,2960,
802516,0,244,1,137,
80262961,16,0,244,1,
80271901,2962,16,0,244,
80281,1153,2963,16,0,
8029244,1,151,2964,16,
80300,244,1,1407,2965,
803116,0,244,1,1659,
80322966,16,0,244,1,
80332413,2967,16,0,244,
80341,406,2968,16,0,
8035244,1,2670,2969,16,
80360,244,1,1657,903,
80371,166,2970,16,0,
8038244,1,1622,2971,16,
80390,244,1,1931,870,
80401,1933,2972,16,0,
8041244,1,431,2973,16,
80420,244,1,1585,2974,
804316,0,244,1,182,
80442975,16,0,244,1,
80451189,2976,16,0,244,
80461,1443,2977,16,0,
8047244,1,1695,2978,16,
80480,244,1,2198,2979,
804916,0,244,1,447,
80502980,16,0,244,1,
80512458,885,1,2459,891,
80521,1958,2981,16,0,
8053244,1,2462,898,1,
80541371,2982,16,0,244,
80551,2464,908,1,199,
80562983,16,0,244,1,
8057459,2984,16,0,244,
80581,462,2985,16,0,
8059244,1,217,2986,16,
80600,244,1,2227,917,
80611,1225,2987,16,0,
8062244,1,1479,2988,16,
80630,244,1,1731,2989,
806416,0,244,1,1989,
8065925,1,1990,2990,16,
80660,244,1,236,2991,
806716,0,244,1,1756,
80682992,16,0,244,1,
806938,2993,19,243,1,
807038,2994,5,84,1,
80711011,1112,1,1012,2995,
807216,0,241,1,1013,
80731268,1,262,1129,1, 75931268,1,262,1129,1,
80741267,2996,16,0,241, 75941267,2706,16,0,254,
80751,515,2997,16,0, 75951,515,2707,16,0,
8076241,1,1521,2998,16, 7596254,1,1521,2708,16,
80770,241,1,525,1226, 75970,254,1,525,1226,
80781,283,1182,1,2299, 75981,283,1182,1,2299,
80792999,16,0,241,1, 75992709,16,0,254,1,
808042,3000,16,0,241, 760042,2710,16,0,254,
80811,40,1187,1,44, 76011,40,1187,1,44,
80821193,1,47,1194,1, 76021193,1,47,1194,1,
80831303,3001,16,0,241, 76031303,2711,16,0,254,
80841,1555,3002,16,0, 76041,1555,2712,16,0,
8085241,1,50,1211,1, 7605254,1,50,1211,1,
808648,1200,1,49,1206, 760648,1200,1,49,1206,
80871,51,1216,1,63, 76071,51,1216,1,63,
80881232,1,305,1221,1, 76081232,1,305,1221,1,
808966,1238,1,67,1243, 760966,1238,1,67,1243,
80901,68,1248,1,69, 76101,68,1248,1,69,
80911253,1,70,1258,1, 76111253,1,70,1258,1,
809273,3003,16,0,241, 761273,2713,16,0,254,
80931,74,1263,1,328, 76131,74,1263,1,328,
80941312,1,1048,1354,1, 76141312,1,1048,1354,1,
809582,3004,16,0,241, 761582,2714,16,0,254,
80961,1840,3005,16,0, 76161,1840,2715,16,0,
8097241,1,1591,3006,16, 7617254,1,1591,2716,16,
80980,241,1,1341,3007, 76180,254,1,1341,2717,
809916,0,241,1,1096, 761916,0,254,1,1096,
81001322,1,93,1328,1, 76201322,1,93,1328,1,
8101352,1359,1,107,3008, 7621352,1359,1,107,2718,
810216,0,241,1,1114, 762216,0,254,1,1114,
81031353,1,118,1365,1, 76231353,1,118,1365,1,
81041123,3009,16,0,241, 76241123,2719,16,0,254,
81051,371,1375,1,1628, 76251,371,1375,1,1628,
81063010,16,0,241,1, 76262720,16,0,254,1,
8107375,1386,1,1882,3011, 7627375,1386,1,1882,2721,
810816,0,241,1,377, 762816,0,254,1,377,
81091391,1,379,1396,1, 76291391,1,379,1396,1,
8110380,1401,1,883,1407, 7630380,1401,1,883,2722,
81111,373,1419,1,130, 763116,0,254,1,373,
81121424,1,143,1429,1, 76321419,1,130,1424,1,
8113387,3012,16,0,241, 7633143,2723,16,0,254,
81141,1159,3013,16,0, 76341,387,2724,16,0,
8115241,1,157,1452,1, 7635254,1,1159,2725,16,
81161413,3014,16,0,241, 76360,254,1,157,2726,
81171,1665,3015,16,0, 763716,0,254,1,1413,
8118241,1,412,3016,16, 76382727,16,0,254,1,
81190,241,1,2676,3017, 76391665,2728,16,0,254,
812016,0,241,1,1377, 76401,412,2729,16,0,
81213018,16,0,241,1, 7641254,1,2676,2730,16,
8122172,1470,1,1939,3019, 76420,254,1,1377,2731,
812316,0,241,1,437, 764316,0,254,1,172,
81243020,16,0,241,1, 76441470,1,1939,2732,16,
8125188,1519,1,942,1491, 76450,254,1,437,2733,
81261,1195,3021,16,0, 764616,0,254,1,188,
8127241,1,1449,3022,16, 76471519,1,942,1491,1,
81280,241,1,1701,3023, 76481195,2734,16,0,254,
812916,0,241,1,447, 76491,1449,2735,16,0,
81301512,1,205,1524,1, 7650254,1,1701,2736,16,
8131827,1341,1,223,1539, 76510,254,1,447,1512,
76521,205,2737,16,0,
7653254,1,827,2738,16,
76540,254,1,223,2739,
765516,0,254,1,476,
76561549,1,477,1555,1,
76571231,2740,16,0,254,
76581,479,1565,1,480,
76591570,1,1485,2741,16,
76600,254,1,1737,2742,
766116,0,254,1,242,
76622743,16,0,254,1,
7663478,1588,1,1001,1598,
76641,1002,1603,1,33,
76652744,19,340,1,33,
76662745,5,84,1,1011,
76671112,1,1012,2746,16,
76680,338,1,1013,1268,
76691,262,1129,1,1267,
76702747,16,0,338,1,
7671515,2748,16,0,338,
76721,1521,2749,16,0,
7673338,1,525,1226,1,
7674283,1182,1,2299,2750,
767516,0,338,1,42,
76762751,16,0,338,1,
767740,1187,1,44,1193,
76781,47,1194,1,1303,
76792752,16,0,338,1,
76801555,2753,16,0,338,
76811,50,1211,1,48,
76821200,1,49,1206,1,
768351,1216,1,63,1232,
76841,305,1221,1,66,
76851238,1,67,1243,1,
768668,1248,1,69,1253,
76871,70,1258,1,73,
76882754,16,0,338,1,
768974,1263,1,328,1312,
76901,1048,1354,1,82,
76912755,16,0,338,1,
76921840,2756,16,0,338,
76931,1591,2757,16,0,
7694338,1,1341,2758,16,
76950,338,1,1096,1322,
76961,93,1328,1,352,
76971359,1,107,2759,16,
76980,338,1,1114,1353,
76991,118,1365,1,1123,
77002760,16,0,338,1,
7701371,1375,1,1628,2761,
770216,0,338,1,375,
77031386,1,1882,2762,16,
77040,338,1,377,1391,
77051,379,1396,1,380,
77061401,1,883,2763,16,
77070,338,1,373,1419,
77081,130,1424,1,143,
77091429,1,387,2764,16,
77100,338,1,1159,2765,
771116,0,338,1,157,
77121452,1,1413,2766,16,
77130,338,1,1665,2767,
771416,0,338,1,412,
77152768,16,0,338,1,
77162676,2769,16,0,338,
77171,1377,2770,16,0,
7718338,1,172,1470,1,
77191939,2771,16,0,338,
77201,437,2772,16,0,
7721338,1,188,1519,1,
7722942,1491,1,1195,2773,
772316,0,338,1,1449,
77242774,16,0,338,1,
77251701,2775,16,0,338,
77261,447,1512,1,205,
77272776,16,0,338,1,
7728827,2777,16,0,338,
77291,223,2778,16,0,
7730338,1,476,1549,1,
7731477,1555,1,1231,2779,
773216,0,338,1,479,
77331565,1,480,1570,1,
77341485,2780,16,0,338,
77351,1737,2781,16,0,
7736338,1,242,1583,1,
7737478,1588,1,1001,1598,
77381,1002,1603,1,34,
77392782,19,330,1,34,
77402783,5,84,1,1011,
77411112,1,1012,2784,16,
77420,328,1,1013,1268,
77431,262,1129,1,1267,
77442785,16,0,328,1,
7745515,2786,16,0,328,
77461,1521,2787,16,0,
7747328,1,525,1226,1,
7748283,1182,1,2299,2788,
774916,0,328,1,42,
77502789,16,0,328,1,
775140,1187,1,44,1193,
77521,47,1194,1,1303,
77532790,16,0,328,1,
77541555,2791,16,0,328,
77551,50,1211,1,48,
77561200,1,49,1206,1,
775751,1216,1,63,1232,
77581,305,1221,1,66,
77591238,1,67,1243,1,
776068,1248,1,69,1253,
77611,70,1258,1,73,
77622792,16,0,328,1,
776374,1263,1,328,1312,
77641,1048,1354,1,82,
77652793,16,0,328,1,
77661840,2794,16,0,328,
77671,1591,2795,16,0,
7768328,1,1341,2796,16,
77690,328,1,1096,1322,
77701,93,1328,1,352,
77711359,1,107,2797,16,
77720,328,1,1114,1353,
77731,118,1365,1,1123,
77742798,16,0,328,1,
7775371,1375,1,1628,2799,
777616,0,328,1,375,
77771386,1,1882,2800,16,
77780,328,1,377,1391,
77791,379,1396,1,380,
77801401,1,883,2801,16,
77810,328,1,373,1419,
77821,130,1424,1,143,
77831429,1,387,2802,16,
77840,328,1,1159,2803,
778516,0,328,1,157,
77861452,1,1413,2804,16,
77870,328,1,1665,2805,
778816,0,328,1,412,
77892806,16,0,328,1,
77902676,2807,16,0,328,
77911,1377,2808,16,0,
7792328,1,172,1470,1,
77931939,2809,16,0,328,
77941,437,2810,16,0,
7795328,1,188,1519,1,
7796942,1491,1,1195,2811,
779716,0,328,1,1449,
77982812,16,0,328,1,
77991701,2813,16,0,328,
78001,447,1512,1,205,
78011524,1,827,2814,16,
78020,328,1,223,1539,
81321,476,1549,1,477, 78031,476,1549,1,477,
81331555,1,1231,3024,16, 78041555,1,1231,2815,16,
81340,241,1,479,1565, 78050,328,1,479,1565,
81351,480,1570,1,1485, 78061,480,1570,1,1485,
81363025,16,0,241,1, 78072816,16,0,328,1,
81371737,3026,16,0,241, 78081737,2817,16,0,328,
81381,242,1583,1,478, 78091,242,1583,1,478,
81391588,1,1001,1598,1, 78101588,1,1001,1598,1,
81401002,1603,1,39,3027, 78111002,1603,1,35,2818,
814119,232,1,39,3028, 781219,320,1,35,2819,
81425,84,1,1011,1112, 78135,84,1,1011,1112,
81431,1012,3029,16,0, 78141,1012,2820,16,0,
8144230,1,1013,1268,1, 7815318,1,1013,1268,1,
8145262,1129,1,1267,3030, 7816262,1129,1,1267,2821,
814616,0,230,1,515, 781716,0,318,1,515,
81473031,16,0,230,1, 78182822,16,0,318,1,
81481521,3032,16,0,230, 78191521,2823,16,0,318,
81491,525,1226,1,283, 78201,525,1226,1,283,
81501182,1,2299,3033,16, 78211182,1,2299,2824,16,
81510,230,1,42,3034, 78220,318,1,42,2825,
815216,0,230,1,40, 782316,0,318,1,40,
81531187,1,44,1193,1, 78241187,1,44,1193,1,
815447,1194,1,1303,3035, 782547,1194,1,1303,2826,
815516,0,230,1,1555, 782616,0,318,1,1555,
81563036,16,0,230,1, 78272827,16,0,318,1,
815750,1211,1,48,1200, 782850,1211,1,48,1200,
81581,49,1206,1,51, 78291,49,1206,1,51,
81591216,1,63,1232,1, 78301216,1,63,1232,1,
8160305,1221,1,66,1238, 7831305,1221,1,66,1238,
81611,67,1243,1,68, 78321,67,1243,1,68,
81621248,1,69,1253,1, 78331248,1,69,1253,1,
816370,1258,1,73,3037, 783470,1258,1,73,2828,
816416,0,230,1,74, 783516,0,318,1,74,
81651263,1,328,1312,1, 78361263,1,328,1312,1,
81661048,1354,1,82,3038, 78371048,1354,1,82,2829,
816716,0,230,1,1840, 783816,0,318,1,1840,
81683039,16,0,230,1, 78392830,16,0,318,1,
81691591,3040,16,0,230, 78401591,2831,16,0,318,
81701,1341,3041,16,0, 78411,1341,2832,16,0,
8171230,1,1096,1322,1, 7842318,1,1096,1322,1,
817293,1328,1,352,1359, 784393,1328,1,352,1359,
81731,107,3042,16,0, 78441,107,2833,16,0,
8174230,1,1114,1353,1, 7845318,1,1114,1353,1,
8175118,1365,1,1123,3043, 7846118,1365,1,1123,2834,
817616,0,230,1,371, 784716,0,318,1,371,
81771375,1,1628,3044,16, 78481375,1,1628,2835,16,
81780,230,1,375,1386, 78490,318,1,375,1386,
81791,1882,3045,16,0, 78501,1882,2836,16,0,
8180230,1,377,1391,1, 7851318,1,377,1391,1,
8181379,1396,1,380,1401, 7852379,1396,1,380,1401,
81821,883,1407,1,373, 78531,883,2837,16,0,
81831419,1,130,1424,1, 7854318,1,373,1419,1,
8184143,1429,1,387,3046, 7855130,1424,1,143,1429,
818516,0,230,1,1159, 78561,387,2838,16,0,
81863047,16,0,230,1, 7857318,1,1159,2839,16,
8187157,1452,1,1413,3048, 78580,318,1,157,1452,
818816,0,230,1,1665, 78591,1413,2840,16,0,
81893049,16,0,230,1, 7860318,1,1665,2841,16,
8190412,3050,16,0,230, 78610,318,1,412,2842,
81911,2676,3051,16,0, 786216,0,318,1,2676,
8192230,1,1377,3052,16, 78632843,16,0,318,1,
81930,230,1,172,1470, 78641377,2844,16,0,318,
81941,1939,3053,16,0, 78651,172,1470,1,1939,
8195230,1,437,3054,16, 78662845,16,0,318,1,
81960,230,1,188,1519, 7867437,2846,16,0,318,
81971,942,1491,1,1195, 78681,188,1519,1,942,
81983055,16,0,230,1, 78691491,1,1195,2847,16,
81991449,3056,16,0,230, 78700,318,1,1449,2848,
82001,1701,3057,16,0, 787116,0,318,1,1701,
8201230,1,447,1512,1, 78722849,16,0,318,1,
8202205,1524,1,827,1341, 7873447,1512,1,205,1524,
82031,223,1539,1,476, 78741,827,2850,16,0,
82041549,1,477,1555,1, 7875318,1,223,2851,16,
82051231,3058,16,0,230, 78760,318,1,476,1549,
82061,479,1565,1,480, 78771,477,1555,1,1231,
82071570,1,1485,3059,16, 78782852,16,0,318,1,
82080,230,1,1737,3060, 7879479,1565,1,480,1570,
820916,0,230,1,242, 78801,1485,2853,16,0,
82101583,1,478,1588,1, 7881318,1,1737,2854,16,
82111001,1598,1,1002,1603, 78820,318,1,242,1583,
82121,40,3061,19,220, 78831,478,1588,1,1001,
82131,40,3062,5,84, 78841598,1,1002,1603,1,
788536,2855,19,226,1,
788636,2856,5,94,1,
7887256,2857,16,0,224,
78881,1261,2858,16,0,
7889224,1,509,2859,16,
78900,224,1,1515,2860,
789116,0,224,1,2021,
7892728,1,1775,2861,16,
78930,224,1,2029,735,
78941,2030,741,1,2031,
7895746,1,2032,751,1,
78962033,756,1,277,2862,
789716,0,224,1,2035,
7898762,1,2037,767,1,
78992039,772,1,32,2863,
790016,0,224,1,2041,
7901778,1,2293,2864,16,
79020,224,1,2043,784,
79031,2045,789,1,41,
79042865,16,0,224,1,
79051297,2866,16,0,224,
79061,43,2867,16,0,
7907224,1,1803,797,1,
79081804,2868,16,0,224,
79091,299,2869,16,0,
7910224,1,52,2870,16,
79110,224,1,2318,2871,
791216,0,224,1,2075,
79132872,16,0,224,1,
79141574,809,1,71,2873,
791516,0,224,1,76,
79162874,16,0,224,1,
79171834,2875,16,0,224,
79181,2337,2876,16,0,
7919224,1,79,2877,16,
79200,224,1,1335,2878,
792116,0,224,1,322,
79222879,16,0,224,1,
792385,2880,16,0,224,
79241,89,2881,16,0,
7925224,1,346,2882,16,
79260,224,1,2105,824,
79271,2106,2883,16,0,
7928224,1,97,2884,16,
79290,224,1,1860,831,
79301,2364,837,1,102,
79312885,16,0,224,1,
7932112,2886,16,0,224,
79331,1117,2887,16,0,
7934224,1,1873,845,1,
79351876,2888,16,0,224,
79361,124,2889,16,0,
7937224,1,2136,852,1,
7938381,2890,16,0,224,
79391,525,2891,16,0,
7940224,1,137,2892,16,
79410,224,1,1901,2893,
794216,0,224,1,1153,
79432894,16,0,224,1,
7944151,2895,16,0,224,
79451,1407,2896,16,0,
7946224,1,1659,2897,16,
79470,224,1,2413,2898,
794816,0,224,1,406,
79492899,16,0,224,1,
79502670,2900,16,0,224,
79511,1657,903,1,166,
79522901,16,0,224,1,
79531622,2902,16,0,224,
79541,1931,870,1,1933,
79552903,16,0,224,1,
7956431,2904,16,0,224,
79571,1585,2905,16,0,
7958224,1,182,2906,16,
79590,224,1,1189,2907,
796016,0,224,1,1443,
79612908,16,0,224,1,
79621695,2909,16,0,224,
79631,2198,2910,16,0,
7964224,1,447,2911,16,
79650,224,1,2458,885,
79661,2459,891,1,1958,
79672912,16,0,224,1,
79682462,898,1,1371,2913,
796916,0,224,1,2464,
7970908,1,199,2914,16,
79710,224,1,459,2915,
797216,0,224,1,462,
79732916,16,0,224,1,
7974217,2917,16,0,224,
79751,2227,917,1,1225,
79762918,16,0,224,1,
79771479,2919,16,0,224,
79781,1731,2920,16,0,
7979224,1,1989,925,1,
79801990,2921,16,0,224,
79811,236,2922,16,0,
7982224,1,1756,2923,16,
79830,224,1,37,2924,
798419,246,1,37,2925,
79855,94,1,256,2926,
798616,0,244,1,1261,
79872927,16,0,244,1,
7988509,2928,16,0,244,
79891,1515,2929,16,0,
7990244,1,2021,728,1,
79911775,2930,16,0,244,
79921,2029,735,1,2030,
7993741,1,2031,746,1,
79942032,751,1,2033,756,
79951,277,2931,16,0,
7996244,1,2035,762,1,
79972037,767,1,2039,772,
79981,32,2932,16,0,
7999244,1,2041,778,1,
80002293,2933,16,0,244,
80011,2043,784,1,2045,
8002789,1,41,2934,16,
80030,244,1,1297,2935,
800416,0,244,1,43,
80052936,16,0,244,1,
80061803,797,1,1804,2937,
800716,0,244,1,299,
80082938,16,0,244,1,
800952,2939,16,0,244,
80101,2318,2940,16,0,
8011244,1,2075,2941,16,
80120,244,1,1574,809,
80131,71,2942,16,0,
8014244,1,76,2943,16,
80150,244,1,1834,2944,
801616,0,244,1,2337,
80172945,16,0,244,1,
801879,2946,16,0,244,
80191,1335,2947,16,0,
8020244,1,322,2948,16,
80210,244,1,85,2949,
802216,0,244,1,89,
80232950,16,0,244,1,
8024346,2951,16,0,244,
80251,2105,824,1,2106,
80262952,16,0,244,1,
802797,2953,16,0,244,
80281,1860,831,1,2364,
8029837,1,102,2954,16,
80300,244,1,112,2955,
803116,0,244,1,1117,
80322956,16,0,244,1,
80331873,845,1,1876,2957,
803416,0,244,1,124,
80352958,16,0,244,1,
80362136,852,1,381,2959,
803716,0,244,1,525,
80382960,16,0,244,1,
8039137,2961,16,0,244,
80401,1901,2962,16,0,
8041244,1,1153,2963,16,
80420,244,1,151,2964,
804316,0,244,1,1407,
80442965,16,0,244,1,
80451659,2966,16,0,244,
80461,2413,2967,16,0,
8047244,1,406,2968,16,
80480,244,1,2670,2969,
804916,0,244,1,1657,
8050903,1,166,2970,16,
80510,244,1,1622,2971,
805216,0,244,1,1931,
8053870,1,1933,2972,16,
80540,244,1,431,2973,
805516,0,244,1,1585,
80562974,16,0,244,1,
8057182,2975,16,0,244,
80581,1189,2976,16,0,
8059244,1,1443,2977,16,
80600,244,1,1695,2978,
806116,0,244,1,2198,
80622979,16,0,244,1,
8063447,2980,16,0,244,
80641,2458,885,1,2459,
8065891,1,1958,2981,16,
80660,244,1,2462,898,
80671,1371,2982,16,0,
8068244,1,2464,908,1,
8069199,2983,16,0,244,
80701,459,2984,16,0,
8071244,1,462,2985,16,
80720,244,1,217,2986,
807316,0,244,1,2227,
8074917,1,1225,2987,16,
80750,244,1,1479,2988,
807616,0,244,1,1731,
80772989,16,0,244,1,
80781989,925,1,1990,2990,
807916,0,244,1,236,
80802991,16,0,244,1,
80811756,2992,16,0,244,
80821,38,2993,19,243,
80831,38,2994,5,84,
82141,1011,1112,1,1012, 80841,1011,1112,1,1012,
82153063,16,0,218,1, 80852995,16,0,241,1,
82161013,1268,1,262,1129, 80861013,1268,1,262,1129,
82171,1267,3064,16,0, 80871,1267,2996,16,0,
8218218,1,515,3065,16, 8088241,1,515,2997,16,
82190,218,1,1521,3066, 80890,241,1,1521,2998,
822016,0,218,1,525, 809016,0,241,1,525,
82211226,1,283,1182,1, 80911226,1,283,1182,1,
82222299,3067,16,0,218, 80922299,2999,16,0,241,
82231,42,3068,16,0, 80931,42,3000,16,0,
8224218,1,40,1187,1, 8094241,1,40,1187,1,
822544,1193,1,47,1194, 809544,1193,1,47,1194,
82261,1303,3069,16,0, 80961,1303,3001,16,0,
8227218,1,1555,3070,16, 8097241,1,1555,3002,16,
82280,218,1,50,1211, 80980,241,1,50,1211,
82291,48,1200,1,49, 80991,48,1200,1,49,
82301206,1,51,1216,1, 81001206,1,51,1216,1,
823163,1232,1,305,1221, 810163,1232,1,305,1221,
82321,66,1238,1,67, 81021,66,1238,1,67,
82331243,1,68,1248,1, 81031243,1,68,1248,1,
823469,1253,1,70,1258, 810469,1253,1,70,1258,
82351,73,3071,16,0, 81051,73,3003,16,0,
8236218,1,74,1263,1, 8106241,1,74,1263,1,
8237328,1312,1,1048,1354, 8107328,1312,1,1048,1354,
82381,82,3072,16,0, 81081,82,3004,16,0,
8239218,1,1840,3073,16, 8109241,1,1840,3005,16,
82400,218,1,1591,3074, 81100,241,1,1591,3006,
824116,0,218,1,1341, 811116,0,241,1,1341,
82423075,16,0,218,1, 81123007,16,0,241,1,
82431096,1322,1,93,1328, 81131096,1322,1,93,1328,
82441,352,1359,1,107, 81141,352,1359,1,107,
82453076,16,0,218,1, 81153008,16,0,241,1,
82461114,1353,1,118,3077, 81161114,1353,1,118,1365,
824716,0,218,1,1123, 81171,1123,3009,16,0,
82483078,16,0,218,1, 8118241,1,371,1375,1,
8249371,1375,1,1628,3079, 81191628,3010,16,0,241,
825016,0,218,1,375, 81201,375,1386,1,1882,
82511386,1,1882,3080,16, 81213011,16,0,241,1,
82520,218,1,377,1391, 8122377,1391,1,379,1396,
82531,379,1396,1,380, 81231,380,1401,1,883,
82541401,1,883,3081,16, 81241407,1,373,1419,1,
82550,218,1,373,1419, 8125130,1424,1,143,1429,
82561,130,3082,16,0, 81261,387,3012,16,0,
8257218,1,143,3083,16, 8127241,1,1159,3013,16,
82580,218,1,387,3084, 81280,241,1,157,1452,
825916,0,218,1,1159, 81291,1413,3014,16,0,
82603085,16,0,218,1, 8130241,1,1665,3015,16,
8261157,3086,16,0,218, 81310,241,1,412,3016,
82621,1413,3087,16,0, 813216,0,241,1,2676,
8263218,1,1665,3088,16, 81333017,16,0,241,1,
82640,218,1,412,3089, 81341377,3018,16,0,241,
826516,0,218,1,2676, 81351,172,1470,1,1939,
82663090,16,0,218,1, 81363019,16,0,241,1,
82671377,3091,16,0,218, 8137437,3020,16,0,241,
82681,172,3092,16,0, 81381,188,1519,1,942,
8269218,1,1939,3093,16, 81391491,1,1195,3021,16,
82700,218,1,437,3094, 81400,241,1,1449,3022,
827116,0,218,1,188, 814116,0,241,1,1701,
82723095,16,0,218,1, 81423023,16,0,241,1,
8273942,1491,1,1195,3096, 8143447,1512,1,205,1524,
827416,0,218,1,1449, 81441,827,1341,1,223,
82753097,16,0,218,1, 81451539,1,476,1549,1,
82761701,3098,16,0,218, 8146477,1555,1,1231,3024,
82771,447,1512,1,205, 814716,0,241,1,479,
82783099,16,0,218,1,
8279827,3100,16,0,218,
82801,223,3101,16,0,
8281218,1,476,1549,1,
8282477,1555,1,1231,3102,
828316,0,218,1,479,
82841565,1,480,1570,1, 81481565,1,480,1570,1,
82851485,3103,16,0,218, 81491485,3025,16,0,241,
82861,1737,3104,16,0, 81501,1737,3026,16,0,
8287218,1,242,3105,16, 8151241,1,242,1583,1,
82880,218,1,478,1588, 8152478,1588,1,1001,1598,
81531,1002,1603,1,39,
81543027,19,232,1,39,
81553028,5,84,1,1011,
81561112,1,1012,3029,16,
81570,230,1,1013,1268,
81581,262,1129,1,1267,
81593030,16,0,230,1,
8160515,3031,16,0,230,
81611,1521,3032,16,0,
8162230,1,525,1226,1,
8163283,1182,1,2299,3033,
816416,0,230,1,42,
81653034,16,0,230,1,
816640,1187,1,44,1193,
81671,47,1194,1,1303,
81683035,16,0,230,1,
81691555,3036,16,0,230,
81701,50,1211,1,48,
81711200,1,49,1206,1,
817251,1216,1,63,1232,
81731,305,1221,1,66,
81741238,1,67,1243,1,
817568,1248,1,69,1253,
81761,70,1258,1,73,
81773037,16,0,230,1,
817874,1263,1,328,1312,
81791,1048,1354,1,82,
81803038,16,0,230,1,
81811840,3039,16,0,230,
81821,1591,3040,16,0,
8183230,1,1341,3041,16,
81840,230,1,1096,1322,
81851,93,1328,1,352,
81861359,1,107,3042,16,
81870,230,1,1114,1353,
81881,118,1365,1,1123,
81893043,16,0,230,1,
8190371,1375,1,1628,3044,
819116,0,230,1,375,
81921386,1,1882,3045,16,
81930,230,1,377,1391,
81941,379,1396,1,380,
81951401,1,883,1407,1,
8196373,1419,1,130,1424,
81971,143,1429,1,387,
81983046,16,0,230,1,
81991159,3047,16,0,230,
82001,157,1452,1,1413,
82013048,16,0,230,1,
82021665,3049,16,0,230,
82031,412,3050,16,0,
8204230,1,2676,3051,16,
82050,230,1,1377,3052,
820616,0,230,1,172,
82071470,1,1939,3053,16,
82080,230,1,437,3054,
820916,0,230,1,188,
82101519,1,942,1491,1,
82111195,3055,16,0,230,
82121,1449,3056,16,0,
8213230,1,1701,3057,16,
82140,230,1,447,1512,
82151,205,1524,1,827,
82161341,1,223,1539,1,
8217476,1549,1,477,1555,
82181,1231,3058,16,0,
8219230,1,479,1565,1,
8220480,1570,1,1485,3059,
822116,0,230,1,1737,
82223060,16,0,230,1,
8223242,1583,1,478,1588,
82891,1001,1598,1,1002, 82241,1001,1598,1,1002,
82901603,1,41,3106,19, 82251603,1,40,3061,19,
8291181,1,41,3107,5, 8226220,1,40,3062,5,
829284,1,1011,1112,1, 822784,1,1011,1112,1,
82931012,3108,16,0,179, 82281012,3063,16,0,218,
82941,1013,1268,1,262, 82291,1013,1268,1,262,
82951129,1,1267,3109,16, 82301129,1,1267,3064,16,
82960,179,1,515,3110, 82310,218,1,515,3065,
829716,0,179,1,1521, 823216,0,218,1,1521,
82983111,16,0,179,1, 82333066,16,0,218,1,
8299525,1226,1,283,1182, 8234525,1226,1,283,1182,
83001,2299,3112,16,0, 82351,2299,3067,16,0,
8301179,1,42,3113,16, 8236218,1,42,3068,16,
83020,179,1,40,1187, 82370,218,1,40,1187,
83031,44,1193,1,47, 82381,44,1193,1,47,
83041194,1,1303,3114,16, 82391194,1,1303,3069,16,
83050,179,1,1555,3115, 82400,218,1,1555,3070,
830616,0,179,1,50, 824116,0,218,1,50,
83071211,1,48,1200,1, 82421211,1,48,1200,1,
830849,1206,1,51,1216, 824349,1206,1,51,1216,
83091,63,1232,1,305, 82441,63,1232,1,305,
83101221,1,66,1238,1, 82451221,1,66,1238,1,
831167,1243,1,68,1248, 824667,1243,1,68,1248,
83121,69,1253,1,70, 82471,69,1253,1,70,
83131258,1,73,3116,16, 82481258,1,73,3071,16,
83140,179,1,74,1263, 82490,218,1,74,1263,
83151,328,1312,1,1048, 82501,328,1312,1,1048,
83161354,1,82,3117,16, 82511354,1,82,3072,16,
83170,179,1,1840,3118, 82520,218,1,1840,3073,
831816,0,179,1,1591, 825316,0,218,1,1591,
83193119,16,0,179,1, 82543074,16,0,218,1,
83201341,3120,16,0,179, 82551341,3075,16,0,218,
83211,1096,1322,1,93, 82561,1096,1322,1,93,
83221328,1,352,1359,1, 82571328,1,352,1359,1,
8323107,3121,16,0,179, 8258107,3076,16,0,218,
83241,1114,1353,1,118, 82591,1114,1353,1,118,
83253122,16,0,179,1, 82603077,16,0,218,1,
83261123,3123,16,0,179, 82611123,3078,16,0,218,
83271,371,1375,1,1628, 82621,371,1375,1,1628,
83283124,16,0,179,1, 82633079,16,0,218,1,
8329375,1386,1,1882,3125, 8264375,1386,1,1882,3080,
833016,0,179,1,377, 826516,0,218,1,377,
83311391,1,379,1396,1, 82661391,1,379,1396,1,
8332380,1401,1,883,3126, 8267380,1401,1,883,3081,
833316,0,179,1,373, 826816,0,218,1,373,
83341419,1,130,3127,16, 82691419,1,130,3082,16,
83350,179,1,143,3128, 82700,218,1,143,3083,
833616,0,179,1,387, 827116,0,218,1,387,
83373129,16,0,179,1, 82723084,16,0,218,1,
83381159,3130,16,0,179, 82731159,3085,16,0,218,
83391,157,3131,16,0, 82741,157,3086,16,0,
8340179,1,1413,3132,16, 8275218,1,1413,3087,16,
83410,179,1,1665,3133, 82760,218,1,1665,3088,
834216,0,179,1,412, 827716,0,218,1,412,
83433134,16,0,179,1, 82783089,16,0,218,1,
83442676,3135,16,0,179, 82792676,3090,16,0,218,
83451,1377,3136,16,0, 82801,1377,3091,16,0,
8346179,1,172,3137,16, 8281218,1,172,3092,16,
83470,179,1,1939,3138, 82820,218,1,1939,3093,
834816,0,179,1,437, 828316,0,218,1,437,
83493139,16,0,179,1, 82843094,16,0,218,1,
8350188,3140,16,0,179, 8285188,3095,16,0,218,
83511,942,1491,1,1195, 82861,942,1491,1,1195,
83523141,16,0,179,1, 82873096,16,0,218,1,
83531449,3142,16,0,179, 82881449,3097,16,0,218,
83541,1701,3143,16,0, 82891,1701,3098,16,0,
8355179,1,447,1512,1, 8290218,1,447,1512,1,
8356205,3144,16,0,179, 8291205,3099,16,0,218,
83571,827,3145,16,0, 82921,827,3100,16,0,
8358179,1,223,3146,16, 8293218,1,223,3101,16,
83590,179,1,476,1549, 82940,218,1,476,1549,
83601,477,1555,1,1231, 82951,477,1555,1,1231,
83613147,16,0,179,1, 82963102,16,0,218,1,
8362479,1565,1,480,1570, 8297479,1565,1,480,1570,
83631,1485,3148,16,0, 82981,1485,3103,16,0,
8364179,1,1737,3149,16, 8299218,1,1737,3104,16,
83650,179,1,242,3150, 83000,218,1,242,3105,
836616,0,179,1,478, 830116,0,218,1,478,
83671588,1,1001,1598,1, 83021588,1,1001,1598,1,
83681002,1603,1,42,3151, 83031002,1603,1,41,3106,
836919,402,1,42,3152, 830419,181,1,41,3107,
83705,38,1,1901,3153, 83055,84,1,1011,1112,
837116,0,400,1,2075, 83061,1012,3108,16,0,
83723154,16,0,400,1, 8307179,1,1013,1268,1,
83731860,831,1,1803,797, 8308262,1129,1,1267,3109,
83741,1804,3155,16,0, 830916,0,179,1,515,
8375400,1,2413,3156,16, 83103110,16,0,179,1,
83760,400,1,2198,3157, 83111521,3111,16,0,179,
837716,0,400,1,1873, 83121,525,1226,1,283,
8378845,1,1657,903,1, 83131182,1,2299,3112,16,
83791989,925,1,1990,3158, 83140,179,1,42,3113,
838016,0,400,1,1775, 831516,0,179,1,40,
83813159,16,0,400,1, 83161187,1,44,1193,1,
838232,3160,16,0,400, 831747,1194,1,1303,3114,
83831,2105,824,1,2106, 831816,0,179,1,1555,
83843161,16,0,400,1, 83193115,16,0,179,1,
83852364,837,1,2227,917, 832050,1211,1,48,1200,
83861,2337,3162,16,0, 83211,49,1206,1,51,
8387400,1,2021,728,1, 83221216,1,63,1232,1,
83882458,885,1,2459,891, 8323305,1221,1,66,1238,
83891,2462,898,1,2136, 83241,67,1243,1,68,
8390852,1,2464,908,1, 83251248,1,69,1253,1,
83912029,735,1,2030,741, 832670,1258,1,73,3116,
83921,2031,746,1,2032, 832716,0,179,1,74,
8393751,1,2033,756,1, 83281263,1,328,1312,1,
83942035,762,1,2037,767, 83291048,1354,1,82,3117,
83951,2039,772,1,1931, 833016,0,179,1,1840,
8396870,1,2041,778,1, 83313118,16,0,179,1,
83972043,784,1,2045,789, 83321591,3119,16,0,179,
83981,1574,809,1,1958, 83331,1341,3120,16,0,
83993163,16,0,400,1, 8334179,1,1096,1322,1,
840043,3164,19,467,1, 833593,1328,1,352,1359,
840143,3165,5,25,1, 83361,107,3121,16,0,
84022035,762,1,2037,767, 8337179,1,1114,1353,1,
84031,2039,772,1,2041, 8338118,3122,16,0,179,
8404778,1,2227,917,1, 83391,1123,3123,16,0,
84052043,784,1,1657,903, 8340179,1,371,1375,1,
84061,1860,831,1,2136, 83411628,3124,16,0,179,
8407852,1,2021,728,1, 83421,375,1386,1,1882,
84082459,891,1,1574,809, 83433125,16,0,179,1,
84091,2105,3166,16,0, 8344377,1391,1,379,1396,
8410593,1,1931,870,1, 83451,380,1401,1,883,
84111873,845,1,2031,746, 83463126,16,0,179,1,
84121,1803,797,1,1989, 8347373,1419,1,130,3127,
84133167,16,0,465,1, 834816,0,179,1,143,
84142464,908,1,2029,735, 83493128,16,0,179,1,
84151,2030,741,1,2364, 8350387,3129,16,0,179,
8416837,1,2032,751,1, 83511,1159,3130,16,0,
84172033,756,1,2045,789, 8352179,1,157,3131,16,
84181,44,3168,19,273, 83530,179,1,1413,3132,
84191,44,3169,5,38, 835416,0,179,1,1665,
84201,1901,3170,16,0, 83553133,16,0,179,1,
8421271,1,2075,3171,16, 8356412,3134,16,0,179,
84220,271,1,1860,831, 83571,2676,3135,16,0,
84231,1803,797,1,1804, 8358179,1,1377,3136,16,
84243172,16,0,271,1, 83590,179,1,172,3137,
84252413,3173,16,0,271, 836016,0,179,1,1939,
84261,2198,3174,16,0, 83613138,16,0,179,1,
8427271,1,1873,845,1, 8362437,3139,16,0,179,
84281657,903,1,1989,925, 83631,188,3140,16,0,
84291,1990,3175,16,0, 8364179,1,942,1491,1,
8430271,1,1775,3176,16, 83651195,3141,16,0,179,
84310,271,1,32,3177, 83661,1449,3142,16,0,
843216,0,271,1,2105, 8367179,1,1701,3143,16,
8433824,1,2106,3178,16, 83680,179,1,447,1512,
84340,271,1,2364,837, 83691,205,3144,16,0,
84351,2227,917,1,2337, 8370179,1,827,3145,16,
84363179,16,0,271,1, 83710,179,1,223,3146,
84372021,728,1,2458,885, 837216,0,179,1,476,
84381,2459,891,1,2462, 83731549,1,477,1555,1,
8439898,1,2136,852,1, 83741231,3147,16,0,179,
84402464,908,1,2029,735, 83751,479,1565,1,480,
84411,2030,741,1,2031, 83761570,1,1485,3148,16,
8442746,1,2032,751,1, 83770,179,1,1737,3149,
84432033,756,1,2035,762, 837816,0,179,1,242,
84441,2037,767,1,2039, 83793150,16,0,179,1,
8445772,1,1931,870,1, 8380478,1588,1,1001,1598,
84462041,778,1,2043,784, 83811,1002,1603,1,42,
84471,2045,789,1,1574, 83823151,19,402,1,42,
8448809,1,1958,3180,16, 83833152,5,38,1,1901,
84490,271,1,45,3181, 83843153,16,0,400,1,
845019,296,1,45,3182, 83852075,3154,16,0,400,
84515,39,1,1901,3183, 83861,1860,831,1,1803,
845216,0,324,1,2075, 8387797,1,1804,3155,16,
84533184,16,0,324,1, 83880,400,1,2413,3156,
84541860,831,1,1803,797, 838916,0,400,1,2198,
84551,1804,3185,16,0, 83903157,16,0,400,1,
8456324,1,2413,3186,16, 83911873,845,1,1657,903,
84570,324,1,2198,3187, 83921,1989,925,1,1990,
845816,0,324,1,1873, 83933158,16,0,400,1,
8459845,1,1657,903,1, 83941775,3159,16,0,400,
84601989,925,1,1990,3188, 83951,32,3160,16,0,
846116,0,324,1,1775, 8396400,1,2105,824,1,
84623189,16,0,324,1, 83972106,3161,16,0,400,
846332,3190,16,0,324, 83981,2364,837,1,2227,
84641,2105,824,1,2106, 8399917,1,2337,3162,16,
84653191,16,0,324,1, 84000,400,1,2021,728,
84662364,837,1,2227,917, 84011,2458,885,1,2459,
84671,2337,3192,16,0, 8402891,1,2462,898,1,
8468324,1,2021,728,1, 84032136,852,1,2464,908,
84692458,885,1,2459,891, 84041,2029,735,1,2030,
84701,2462,898,1,2136, 8405741,1,2031,746,1,
8471852,1,2464,908,1, 84062032,751,1,2033,756,
84722029,735,1,2030,741, 84071,2035,762,1,2037,
84731,2031,746,1,2032, 8408767,1,2039,772,1,
8474751,1,2033,756,1, 84091931,870,1,2041,778,
84752035,762,1,2037,767, 84101,2043,784,1,2045,
84761,2039,772,1,1931, 8411789,1,1574,809,1,
8477870,1,2041,778,1, 84121958,3163,16,0,400,
84782043,784,1,2045,789, 84131,43,3164,19,467,
84791,1832,3193,16,0, 84141,43,3165,5,25,
8480294,1,1574,809,1, 84151,2035,762,1,2037,
84811958,3194,16,0,324, 8416767,1,2039,772,1,
84821,46,3195,19,681, 84172041,778,1,2227,917,
84831,46,3196,5,38, 84181,2043,784,1,1657,
84841,1901,3197,16,0, 8419903,1,1860,831,1,
8485679,1,2075,3198,16, 84202136,852,1,2021,728,
84860,679,1,1860,831, 84211,2459,891,1,1574,
84871,1803,797,1,1804, 8422809,1,2105,3166,16,
84883199,16,0,679,1, 84230,593,1,1931,870,
84892413,3200,16,0,679, 84241,1873,845,1,2031,
84901,2198,3201,16,0, 8425746,1,1803,797,1,
8491679,1,1873,845,1, 84261989,3167,16,0,465,
84921657,903,1,1989,925, 84271,2464,908,1,2029,
84931,1990,3202,16,0, 8428735,1,2030,741,1,
8494679,1,1775,3203,16, 84292364,837,1,2032,751,
84950,679,1,32,3204, 84301,2033,756,1,2045,
849616,0,679,1,2105, 8431789,1,44,3168,19,
8497824,1,2106,3205,16, 8432273,1,44,3169,5,
84980,679,1,2364,837, 843338,1,1901,3170,16,
84991,2227,917,1,2337, 84340,271,1,2075,3171,
85003206,16,0,679,1, 843516,0,271,1,1860,
85012021,728,1,2458,885, 8436831,1,1803,797,1,
85021,2459,891,1,2462, 84371804,3172,16,0,271,
8503898,1,2136,852,1, 84381,2413,3173,16,0,
85042464,908,1,2029,735, 8439271,1,2198,3174,16,
85051,2030,741,1,2031, 84400,271,1,1873,845,
8506746,1,2032,751,1, 84411,1657,903,1,1989,
85072033,756,1,2035,762, 8442925,1,1990,3175,16,
85081,2037,767,1,2039, 84430,271,1,1775,3176,
8509772,1,1931,870,1, 844416,0,271,1,32,
85102041,778,1,2043,784, 84453177,16,0,271,1,
85111,2045,789,1,1574, 84462105,824,1,2106,3178,
8512809,1,1958,3207,16, 844716,0,271,1,2364,
85130,679,1,47,3208, 8448837,1,2227,917,1,
851419,574,1,47,3209, 84492337,3179,16,0,271,
85155,19,1,0,3210, 84501,2021,728,1,2458,
851616,0,656,1,2725, 8451885,1,2459,891,1,
85173211,17,3212,15,3213, 84522462,898,1,2136,852,
85184,36,37,0,71, 84531,2464,908,1,2029,
8454735,1,2030,741,1,
84552031,746,1,2032,751,
84561,2033,756,1,2035,
8457762,1,2037,767,1,
84582039,772,1,1931,870,
84591,2041,778,1,2043,
8460784,1,2045,789,1,
84611574,809,1,1958,3180,
846216,0,271,1,45,
84633181,19,296,1,45,
84643182,5,39,1,1901,
84653183,16,0,324,1,
84662075,3184,16,0,324,
84671,1860,831,1,1803,
8468797,1,1804,3185,16,
84690,324,1,2413,3186,
847016,0,324,1,2198,
84713187,16,0,324,1,
84721873,845,1,1657,903,
84731,1989,925,1,1990,
84743188,16,0,324,1,
84751775,3189,16,0,324,
84761,32,3190,16,0,
8477324,1,2105,824,1,
84782106,3191,16,0,324,
84791,2364,837,1,2227,
8480917,1,2337,3192,16,
84810,324,1,2021,728,
84821,2458,885,1,2459,
8483891,1,2462,898,1,
84842136,852,1,2464,908,
84851,2029,735,1,2030,
8486741,1,2031,746,1,
84872032,751,1,2033,756,
84881,2035,762,1,2037,
8489767,1,2039,772,1,
84901931,870,1,2041,778,
84911,2043,784,1,2045,
8492789,1,1832,3193,16,
84930,294,1,1574,809,
84941,1958,3194,16,0,
8495324,1,46,3195,19,
8496681,1,46,3196,5,
849738,1,1901,3197,16,
84980,679,1,2075,3198,
849916,0,679,1,1860,
8500831,1,1803,797,1,
85011804,3199,16,0,679,
85021,2413,3200,16,0,
8503679,1,2198,3201,16,
85040,679,1,1873,845,
85051,1657,903,1,1989,
8506925,1,1990,3202,16,
85070,679,1,1775,3203,
850816,0,679,1,32,
85093204,16,0,679,1,
85102105,824,1,2106,3205,
851116,0,679,1,2364,
8512837,1,2227,917,1,
85132337,3206,16,0,679,
85141,2021,728,1,2458,
8515885,1,2459,891,1,
85162462,898,1,2136,852,
85171,2464,908,1,2029,
8518735,1,2030,741,1,
85192031,746,1,2032,751,
85201,2033,756,1,2035,
8521762,1,2037,767,1,
85222039,772,1,1931,870,
85231,2041,778,1,2043,
8524784,1,2045,789,1,
85251574,809,1,1958,3207,
852616,0,679,1,47,
85273208,19,574,1,47,
85283209,5,19,1,0,
85293210,16,0,656,1,
85302725,3211,17,3212,15,
85313213,4,36,37,0,
853271,0,108,0,111,
85330,98,0,97,0,
8534108,0,68,0,101,
85350,102,0,105,0,
8536110,0,105,0,116,
85370,105,0,111,0,
8538110,0,115,0,1,
8539-1,1,5,3214,20,
85403215,4,38,71,0,
8541108,0,111,0,98,
85420,97,0,108,0,
854368,0,101,0,102,
85440,105,0,110,0,
8545105,0,116,0,105,
85460,111,0,110,0,
8547115,0,95,0,52,
85480,1,149,1,3,
85491,3,1,2,3216,
855022,1,6,1,2726,
85513217,17,3218,15,3213,
85521,-1,1,5,3219,
855320,3220,4,38,71,
85190,108,0,111,0, 85540,108,0,111,0,
852098,0,97,0,108, 855598,0,97,0,108,
85210,68,0,101,0, 85560,68,0,101,0,
8522102,0,105,0,110, 8557102,0,105,0,110,
85230,105,0,116,0, 85580,105,0,116,0,
8524105,0,111,0,110, 8559105,0,111,0,110,
85250,115,0,1,-1, 85600,115,0,95,0,
85261,5,3214,20,3215, 856150,0,1,147,1,
85623,1,3,1,2,
85633221,22,1,4,1,
85642706,3222,17,3223,15,
85653224,4,52,37,0,
856671,0,108,0,111,
85670,98,0,97,0,
8568108,0,86,0,97,
85690,114,0,105,0,
857097,0,98,0,108,
85710,101,0,68,0,
8572101,0,99,0,108,
85730,97,0,114,0,
857497,0,116,0,105,
85750,111,0,110,0,
85761,-1,1,5,3225,
857720,3226,4,54,71,
85780,108,0,111,0,
857998,0,97,0,108,
85800,86,0,97,0,
8581114,0,105,0,97,
85820,98,0,108,0,
8583101,0,68,0,101,
85840,99,0,108,0,
858597,0,114,0,97,
85860,116,0,105,0,
8587111,0,110,0,95,
85880,49,0,1,150,
85891,3,1,3,1,
85902,3227,22,1,7,
85911,2707,3228,16,0,
8592656,1,2718,3229,16,
85930,656,1,2565,700,
85941,2022,3230,16,0,
8595572,1,2459,891,1,
85962645,706,1,2648,3231,
859716,0,656,1,2464,
8598908,1,2466,3232,17,
85993233,15,3234,4,50,
860037,0,71,0,108,
86010,111,0,98,0,
860297,0,108,0,70,
86030,117,0,110,0,
860499,0,116,0,105,
86050,111,0,110,0,
860668,0,101,0,102,
86070,105,0,110,0,
8608105,0,116,0,105,
86090,111,0,110,0,
86101,-1,1,5,3235,
861120,3236,4,52,71,
86120,108,0,111,0,
861398,0,97,0,108,
86140,70,0,117,0,
8615110,0,99,0,116,
86160,105,0,111,0,
8617110,0,68,0,101,
86180,102,0,105,0,
8619110,0,105,0,116,
86200,105,0,111,0,
8621110,0,95,0,50,
86220,1,153,1,3,
86231,7,1,6,3237,
862422,1,10,1,2652,
8625695,1,2727,3238,17,
86263239,15,3213,1,-1,
86271,5,3240,20,3241,
85274,38,71,0,108, 86284,38,71,0,108,
85280,111,0,98,0, 86290,111,0,98,0,
852997,0,108,0,68, 863097,0,108,0,68,
@@ -8531,25 +8632,42 @@ public yyLSLSyntax
8531105,0,110,0,105, 8632105,0,110,0,105,
85320,116,0,105,0, 86330,116,0,105,0,
8533111,0,110,0,115, 8634111,0,110,0,115,
85340,95,0,52,0, 86350,95,0,51,0,
85351,149,1,3,1, 86361,148,1,3,1,
85363,1,2,3216,22, 86372,1,1,3242,22,
85371,6,1,2726,3217, 86381,5,1,2728,3243,
853817,3218,15,3213,1, 863917,3244,15,3213,1,
8539-1,1,5,3219,20, 8640-1,1,5,3245,20,
85403220,4,38,71,0, 86413246,4,38,71,0,
8541108,0,111,0,98, 8642108,0,111,0,98,
85420,97,0,108,0, 86430,97,0,108,0,
854368,0,101,0,102, 864468,0,101,0,102,
85440,105,0,110,0, 86450,105,0,110,0,
8545105,0,116,0,105, 8646105,0,116,0,105,
85460,111,0,110,0, 86470,111,0,110,0,
8547115,0,95,0,50, 8648115,0,95,0,49,
85480,1,147,1,3, 86490,1,146,1,3,
85491,3,1,2,3221, 86501,2,1,1,3247,
855022,1,4,1,2706, 865122,1,3,1,2667,
85513222,17,3223,15,3224, 86523248,17,3249,15,3234,
85524,52,37,0,71, 86531,-1,1,5,3250,
865420,3251,4,52,71,
86550,108,0,111,0,
865698,0,97,0,108,
86570,70,0,117,0,
8658110,0,99,0,116,
86590,105,0,111,0,
8660110,0,68,0,101,
86610,102,0,105,0,
8662110,0,105,0,116,
86630,105,0,111,0,
8664110,0,95,0,49,
86650,1,152,1,3,
86661,6,1,5,3252,
866722,1,9,1,2695,
86683253,17,3254,15,3224,
86691,-1,1,5,3255,
867020,3256,4,54,71,
85530,108,0,111,0, 86710,108,0,111,0,
855498,0,97,0,108, 867298,0,97,0,108,
85550,86,0,97,0, 86730,86,0,97,0,
@@ -8559,340 +8677,146 @@ public yyLSLSyntax
85590,99,0,108,0, 86770,99,0,108,0,
856097,0,114,0,97, 867897,0,114,0,97,
85610,116,0,105,0, 86790,116,0,105,0,
8562111,0,110,0,1, 8680111,0,110,0,95,
8563-1,1,5,3225,20, 86810,50,0,1,151,
85643226,4,54,71,0, 86821,3,1,5,1,
8565108,0,111,0,98, 86834,3257,22,1,8,
85660,97,0,108,0, 86841,2651,689,1,48,
856786,0,97,0,114, 86853258,19,347,1,48,
85680,105,0,97,0, 86863259,5,54,1,0,
856998,0,108,0,101, 86873260,16,0,345,1,
85700,68,0,101,0, 86882726,3217,1,2727,3238,
857199,0,108,0,97, 86891,2728,3243,1,2075,
85720,114,0,97,0, 86903261,16,0,505,1,
8573116,0,105,0,111, 86911860,831,1,1804,3262,
85740,110,0,95,0, 869216,0,505,1,2413,
857549,0,1,150,1, 86933263,16,0,505,1,
85763,1,3,1,2, 86942198,3264,16,0,505,
85773227,22,1,7,1,
85782707,3228,16,0,656,
85791,2718,3229,16,0,
8580656,1,2565,700,1,
85812022,3230,16,0,572,
85821,2459,891,1,2645,
8583706,1,2648,3231,16,
85840,656,1,2464,908,
85851,2466,3232,17,3233,
858615,3234,4,50,37,
85870,71,0,108,0,
8588111,0,98,0,97,
85890,108,0,70,0,
8590117,0,110,0,99,
85910,116,0,105,0,
8592111,0,110,0,68,
85930,101,0,102,0,
8594105,0,110,0,105,
85950,116,0,105,0,
8596111,0,110,0,1,
8597-1,1,5,3235,20,
85983236,4,52,71,0,
8599108,0,111,0,98,
86000,97,0,108,0,
860170,0,117,0,110,
86020,99,0,116,0,
8603105,0,111,0,110,
86040,68,0,101,0,
8605102,0,105,0,110,
86060,105,0,116,0,
8607105,0,111,0,110,
86080,95,0,50,0,
86091,153,1,3,1,
86107,1,6,3237,22,
86111,10,1,2652,695,
86121,2727,3238,17,3239,
861315,3213,1,-1,1,
86145,3240,20,3241,4,
861538,71,0,108,0,
8616111,0,98,0,97,
86170,108,0,68,0,
8618101,0,102,0,105,
86190,110,0,105,0,
8620116,0,105,0,111,
86210,110,0,115,0,
862295,0,51,0,1,
8623148,1,3,1,2,
86241,1,3242,22,1,
86255,1,2728,3243,17,
86263244,15,3213,1,-1,
86271,5,3245,20,3246,
86284,38,71,0,108,
86290,111,0,98,0,
863097,0,108,0,68,
86310,101,0,102,0,
8632105,0,110,0,105,
86330,116,0,105,0,
8634111,0,110,0,115,
86350,95,0,49,0,
86361,146,1,3,1,
86372,1,1,3247,22,
86381,3,1,2667,3248,
863917,3249,15,3234,1,
8640-1,1,5,3250,20,
86413251,4,52,71,0,
8642108,0,111,0,98,
86430,97,0,108,0,
864470,0,117,0,110,
86450,99,0,116,0,
8646105,0,111,0,110,
86470,68,0,101,0,
8648102,0,105,0,110,
86490,105,0,116,0,
8650105,0,111,0,110,
86510,95,0,49,0,
86521,152,1,3,1,
86536,1,5,3252,22,
86541,9,1,2695,3253,
865517,3254,15,3224,1,
8656-1,1,5,3255,20,
86573256,4,54,71,0,
8658108,0,111,0,98,
86590,97,0,108,0,
866086,0,97,0,114,
86610,105,0,97,0,
866298,0,108,0,101,
86630,68,0,101,0,
866499,0,108,0,97,
86650,114,0,97,0,
8666116,0,105,0,111,
86670,110,0,95,0,
866850,0,1,151,1,
86693,1,5,1,4,
86703257,22,1,8,1,
86712651,689,1,48,3258,
867219,347,1,48,3259,
86735,54,1,0,3260,
867416,0,345,1,2726,
86753217,1,2727,3238,1,
86762728,3243,1,2075,3261,
867716,0,505,1,1860,
8678831,1,1804,3262,16,
86790,505,1,2413,3263,
868016,0,505,1,2198,
86813264,16,0,505,1,
86821873,845,1,1657,903,
86831,2030,741,1,1989,
8684925,1,1990,3265,16,
86850,505,1,2645,706,
86861,2459,891,1,1775,
86873266,16,0,505,1,
868832,3267,16,0,505,
86891,2718,3268,16,0,
8690345,1,2105,824,1,
86912651,689,1,2652,695,
86921,2648,3269,16,0,
8693345,1,2227,917,1,
86942337,3270,16,0,505,
86951,2667,3248,1,2695,
86963253,1,2565,700,1,
86971803,797,1,2458,885,
86981,1901,3271,16,0,
8699505,1,2462,898,1,
87002136,852,1,2464,908,
87011,2029,735,1,2466,
87023232,1,2031,746,1,
87032032,751,1,2033,756,
87041,2035,762,1,2364,
8705837,1,2039,772,1,
87061931,870,1,2041,778,
87071,2021,728,1,2043,
8708784,1,2045,789,1,
87092725,3211,1,2706,3222,
87101,2707,3272,16,0,
8711345,1,2037,767,1,
87121574,809,1,2106,3273,
871316,0,505,1,1958,
87143274,16,0,505,1,
871549,3275,19,510,1,
871649,3276,5,38,1,
87171901,3277,16,0,508,
87181,2075,3278,16,0,
8719508,1,1860,831,1,
87201803,797,1,1804,3279,
872116,0,508,1,2413,
87223280,16,0,508,1,
87232198,3281,16,0,508,
87241,1873,845,1,1657, 86951,1873,845,1,1657,
8725903,1,1989,925,1, 8696903,1,2030,741,1,
87261990,3282,16,0,508, 86971989,925,1,1990,3265,
87271,1775,3283,16,0, 869816,0,505,1,2645,
8728508,1,32,3284,16, 8699706,1,2459,891,1,
87290,508,1,2105,824, 87001775,3266,16,0,505,
87301,2106,3285,16,0, 87011,32,3267,16,0,
8731508,1,2364,837,1, 8702505,1,2718,3268,16,
87322227,917,1,2337,3286, 87030,345,1,2105,824,
873316,0,508,1,2021, 87041,2651,689,1,2652,
8734728,1,2458,885,1, 8705695,1,2648,3269,16,
87352459,891,1,2462,898, 87060,345,1,2227,917,
87071,2337,3270,16,0,
8708505,1,2667,3248,1,
87092695,3253,1,2565,700,
87101,1803,797,1,2458,
8711885,1,1901,3271,16,
87120,505,1,2462,898,
87361,2136,852,1,2464, 87131,2136,852,1,2464,
8737908,1,2029,735,1, 8714908,1,2029,735,1,
87382030,741,1,2031,746, 87152466,3232,1,2031,746,
87391,2032,751,1,2033, 87161,2032,751,1,2033,
8740756,1,2035,762,1, 8717756,1,2035,762,1,
87412037,767,1,2039,772, 87182364,837,1,2039,772,
87421,1931,870,1,2041, 87191,1931,870,1,2041,
8743778,1,2043,784,1, 8720778,1,2021,728,1,
87442045,789,1,1574,809, 87212043,784,1,2045,789,
87451,1958,3287,16,0, 87221,2725,3211,1,2706,
8746508,1,50,3288,19, 87233222,1,2707,3272,16,
8747627,1,50,3289,5, 87240,345,1,2037,767,
874838,1,1901,3290,16, 87251,1574,809,1,2106,
87490,625,1,2075,3291, 87263273,16,0,505,1,
875016,0,625,1,1860, 87271958,3274,16,0,505,
8751831,1,1803,797,1, 87281,49,3275,19,510,
87521804,3292,16,0,625, 87291,49,3276,5,38,
87531,2413,3293,16,0, 87301,1901,3277,16,0,
8754625,1,2198,3294,16, 8731508,1,2075,3278,16,
87550,625,1,1873,845, 87320,508,1,1860,831,
87561,1657,903,1,1989, 87331,1803,797,1,1804,
8757925,1,1990,3295,16, 87343279,16,0,508,1,
87580,625,1,1775,3296, 87352413,3280,16,0,508,
875916,0,625,1,32, 87361,2198,3281,16,0,
87603297,16,0,625,1, 8737508,1,1873,845,1,
87612105,824,1,2106,3298, 87381657,903,1,1989,925,
876216,0,625,1,2364, 87391,1990,3282,16,0,
8763837,1,2227,917,1, 8740508,1,1775,3283,16,
87642337,3299,16,0,625, 87410,508,1,32,3284,
87651,2021,728,1,2458, 874216,0,508,1,2105,
8766885,1,2459,891,1, 8743824,1,2106,3285,16,
87672462,898,1,2136,852, 87440,508,1,2364,837,
87681,2464,908,1,2029,
8769735,1,2030,741,1,
87702031,746,1,2032,751,
87711,2033,756,1,2035,
8772762,1,2037,767,1,
87732039,772,1,1931,870,
87741,2041,778,1,2043,
8775784,1,2045,789,1,
87761574,809,1,1958,3300,
877716,0,625,1,51,
87783301,19,127,1,51,
87793302,5,53,1,0,
87803303,16,0,125,1,
87812726,3217,1,2727,3238,
87821,2728,3243,1,2075,
87833304,16,0,125,1,
87841860,831,1,1804,3305,
878516,0,125,1,10,
87863306,16,0,125,1,
87872413,3307,16,0,125,
87881,2198,3308,16,0,
8789125,1,1873,845,1,
879021,3309,16,0,125,
87911,1657,903,1,2030,
8792741,1,1989,925,1,
87931990,3310,16,0,125,
87941,2459,891,1,1775,
87953311,16,0,125,1,
879632,3312,16,0,125,
87971,2105,824,1,2106,
87983313,16,0,125,1,
87992654,3314,16,0,125,
88001,2227,917,1,2337, 87451,2227,917,1,2337,
88013315,16,0,125,1, 87463286,16,0,508,1,
88022667,3248,1,52,3316, 87472021,728,1,2458,885,
880316,0,125,1,2695, 87481,2459,891,1,2462,
88043253,1,1803,797,1,
88052458,885,1,1901,3317,
880616,0,125,1,2462,
8807898,1,2136,852,1, 8749898,1,2136,852,1,
88082464,908,1,2029,735, 87502464,908,1,2029,735,
88091,2466,3232,1,2031, 87511,2030,741,1,2031,
8810746,1,2032,751,1, 8752746,1,2032,751,1,
88112033,756,1,2035,762, 87532033,756,1,2035,762,
88121,2364,837,1,2039, 87541,2037,767,1,2039,
8813772,1,1931,870,1, 8755772,1,1931,870,1,
88142041,778,1,2021,728, 87562041,778,1,2043,784,
88151,2043,784,1,2045, 87571,2045,789,1,1574,
8816789,1,2511,3318,16, 8758809,1,1958,3287,16,
88170,125,1,2725,3211, 87590,508,1,50,3288,
88181,2706,3222,1,2707, 876019,627,1,50,3289,
88193319,16,0,125,1, 87615,38,1,1901,3290,
88202037,767,1,1574,809, 876216,0,625,1,2075,
88211,1958,3320,16,0, 87633291,16,0,625,1,
8822125,1,52,3321,19, 87641860,831,1,1803,797,
8823124,1,52,3322,5, 87651,1804,3292,16,0,
882453,1,0,3323,16, 8766625,1,2413,3293,16,
88250,122,1,2726,3217, 87670,625,1,2198,3294,
88261,2727,3238,1,2728, 876816,0,625,1,1873,
88273243,1,2075,3324,16, 8769845,1,1657,903,1,
88280,122,1,1860,831, 87701989,925,1,1990,3295,
88291,1804,3325,16,0, 877116,0,625,1,1775,
8830122,1,10,3326,16, 87723296,16,0,625,1,
88310,122,1,2413,3327, 877332,3297,16,0,625,
883216,0,122,1,2198, 87741,2105,824,1,2106,
88333328,16,0,122,1, 87753298,16,0,625,1,
88341873,845,1,21,3329, 87762364,837,1,2227,917,
883516,0,122,1,1657, 87771,2337,3299,16,0,
8836903,1,2030,741,1, 8778625,1,2021,728,1,
88371989,925,1,1990,3330, 87792458,885,1,2459,891,
883816,0,122,1,2459, 87801,2462,898,1,2136,
8839891,1,1775,3331,16, 8781852,1,2464,908,1,
88400,122,1,32,3332, 87822029,735,1,2030,741,
884116,0,122,1,2105, 87831,2031,746,1,2032,
8842824,1,2106,3333,16, 8784751,1,2033,756,1,
88430,122,1,2654,3334, 87852035,762,1,2037,767,
884416,0,122,1,2227, 87861,2039,772,1,1931,
8845917,1,2337,3335,16, 8787870,1,2041,778,1,
88460,122,1,2667,3248, 87882043,784,1,2045,789,
88471,52,3336,16,0,
8848122,1,2695,3253,1,
88491803,797,1,2458,885,
88501,1901,3337,16,0,
8851122,1,2462,898,1,
88522136,852,1,2464,908,
88531,2029,735,1,2466,
88543232,1,2031,746,1,
88552032,751,1,2033,756,
88561,2035,762,1,2364,
8857837,1,2039,772,1,
88581931,870,1,2041,778,
88591,2021,728,1,2043,
8860784,1,2045,789,1,
88612511,3338,16,0,122,
88621,2725,3211,1,2706,
88633222,1,2707,3339,16,
88640,122,1,2037,767,
88651,1574,809,1,1958, 87891,1574,809,1,1958,
88663340,16,0,122,1, 87903300,16,0,625,1,
886753,3341,19,121,1, 879151,3301,19,127,1,
886853,3342,5,53,1, 879251,3302,5,53,1,
88690,3343,16,0,119, 87930,3303,16,0,125,
88701,2726,3217,1,2727, 87941,2726,3217,1,2727,
88713238,1,2728,3243,1, 87953238,1,2728,3243,1,
88722075,3344,16,0,119, 87962075,3304,16,0,125,
88731,1860,831,1,1804, 87971,1860,831,1,1804,
88743345,16,0,119,1, 87983305,16,0,125,1,
887510,3346,16,0,119, 879910,3306,16,0,125,
88761,2413,3347,16,0, 88001,2413,3307,16,0,
8877119,1,2198,3348,16, 8801125,1,2198,3308,16,
88780,119,1,1873,845, 88020,125,1,1873,845,
88791,21,3349,16,0, 88031,21,3309,16,0,
8880119,1,1657,903,1, 8804125,1,1657,903,1,
88812030,741,1,1989,925, 88052030,741,1,1989,925,
88821,1990,3350,16,0, 88061,1990,3310,16,0,
8883119,1,2459,891,1, 8807125,1,2459,891,1,
88841775,3351,16,0,119, 88081775,3311,16,0,125,
88851,32,3352,16,0, 88091,32,3312,16,0,
8886119,1,2105,824,1, 8810125,1,2105,824,1,
88872106,3353,16,0,119, 88112106,3313,16,0,125,
88881,2654,3354,16,0, 88121,2654,3314,16,0,
8889119,1,2227,917,1, 8813125,1,2227,917,1,
88902337,3355,16,0,119, 88142337,3315,16,0,125,
88911,2667,3248,1,52, 88151,2667,3248,1,52,
88923356,16,0,119,1, 88163316,16,0,125,1,
88932695,3253,1,1803,797, 88172695,3253,1,1803,797,
88941,2458,885,1,1901, 88181,2458,885,1,1901,
88953357,16,0,119,1, 88193317,16,0,125,1,
88962462,898,1,2136,852, 88202462,898,1,2136,852,
88971,2464,908,1,2029, 88211,2464,908,1,2029,
8898735,1,2466,3232,1, 8822735,1,2466,3232,1,
@@ -8902,42 +8826,42 @@ public yyLSLSyntax
89022039,772,1,1931,870, 88262039,772,1,1931,870,
89031,2041,778,1,2021, 88271,2041,778,1,2021,
8904728,1,2043,784,1, 8828728,1,2043,784,1,
89052045,789,1,2511,3358, 88292045,789,1,2511,3318,
890616,0,119,1,2725, 883016,0,125,1,2725,
89073211,1,2706,3222,1, 88313211,1,2706,3222,1,
89082707,3359,16,0,119, 88322707,3319,16,0,125,
89091,2037,767,1,1574, 88331,2037,767,1,1574,
8910809,1,1958,3360,16, 8834809,1,1958,3320,16,
89110,119,1,54,3361, 88350,125,1,52,3321,
891219,118,1,54,3362, 883619,124,1,52,3322,
89135,53,1,0,3363, 88375,53,1,0,3323,
891416,0,116,1,2726, 883816,0,122,1,2726,
89153217,1,2727,3238,1, 88393217,1,2727,3238,1,
89162728,3243,1,2075,3364, 88402728,3243,1,2075,3324,
891716,0,116,1,1860, 884116,0,122,1,1860,
8918831,1,1804,3365,16, 8842831,1,1804,3325,16,
89190,116,1,10,3366, 88430,122,1,10,3326,
892016,0,116,1,2413, 884416,0,122,1,2413,
89213367,16,0,116,1, 88453327,16,0,122,1,
89222198,3368,16,0,116, 88462198,3328,16,0,122,
89231,1873,845,1,21, 88471,1873,845,1,21,
89243369,16,0,116,1, 88483329,16,0,122,1,
89251657,903,1,2030,741, 88491657,903,1,2030,741,
89261,1989,925,1,1990, 88501,1989,925,1,1990,
89273370,16,0,116,1, 88513330,16,0,122,1,
89282459,891,1,1775,3371, 88522459,891,1,1775,3331,
892916,0,116,1,32, 885316,0,122,1,32,
89303372,16,0,116,1, 88543332,16,0,122,1,
89312105,824,1,2106,3373, 88552105,824,1,2106,3333,
893216,0,116,1,2654, 885616,0,122,1,2654,
89333374,16,0,116,1, 88573334,16,0,122,1,
89342227,917,1,2337,3375, 88582227,917,1,2337,3335,
893516,0,116,1,2667, 885916,0,122,1,2667,
89363248,1,52,3376,16, 88603248,1,52,3336,16,
89370,116,1,2695,3253, 88610,122,1,2695,3253,
89381,1803,797,1,2458, 88621,1803,797,1,2458,
8939885,1,1901,3377,16, 8863885,1,1901,3337,16,
89400,116,1,2462,898, 88640,122,1,2462,898,
89411,2136,852,1,2464, 88651,2136,852,1,2464,
8942908,1,2029,735,1, 8866908,1,2029,735,1,
89432466,3232,1,2031,746, 88672466,3232,1,2031,746,
@@ -8947,41 +8871,41 @@ public yyLSLSyntax
89471,1931,870,1,2041, 88711,1931,870,1,2041,
8948778,1,2021,728,1, 8872778,1,2021,728,1,
89492043,784,1,2045,789, 88732043,784,1,2045,789,
89501,2511,3378,16,0, 88741,2511,3338,16,0,
8951116,1,2725,3211,1, 8875122,1,2725,3211,1,
89522706,3222,1,2707,3379, 88762706,3222,1,2707,3339,
895316,0,116,1,2037, 887716,0,122,1,2037,
8954767,1,1574,809,1, 8878767,1,1574,809,1,
89551958,3380,16,0,116, 88791958,3340,16,0,122,
89561,55,3381,19,115, 88801,53,3341,19,121,
89571,55,3382,5,53, 88811,53,3342,5,53,
89581,0,3383,16,0, 88821,0,3343,16,0,
8959113,1,2726,3217,1, 8883119,1,2726,3217,1,
89602727,3238,1,2728,3243, 88842727,3238,1,2728,3243,
89611,2075,3384,16,0, 88851,2075,3344,16,0,
8962113,1,1860,831,1, 8886119,1,1860,831,1,
89631804,3385,16,0,113, 88871804,3345,16,0,119,
89641,10,3386,16,0, 88881,10,3346,16,0,
8965113,1,2413,3387,16, 8889119,1,2413,3347,16,
89660,113,1,2198,3388, 88900,119,1,2198,3348,
896716,0,113,1,1873, 889116,0,119,1,1873,
8968845,1,21,3389,16, 8892845,1,21,3349,16,
89690,113,1,1657,903, 88930,119,1,1657,903,
89701,2030,741,1,1989, 88941,2030,741,1,1989,
8971925,1,1990,3390,16, 8895925,1,1990,3350,16,
89720,113,1,2459,891, 88960,119,1,2459,891,
89731,1775,3391,16,0, 88971,1775,3351,16,0,
8974113,1,32,3392,16, 8898119,1,32,3352,16,
89750,113,1,2105,824, 88990,119,1,2105,824,
89761,2106,3393,16,0, 89001,2106,3353,16,0,
8977113,1,2654,3394,16, 8901119,1,2654,3354,16,
89780,113,1,2227,917, 89020,119,1,2227,917,
89791,2337,3395,16,0, 89031,2337,3355,16,0,
8980113,1,2667,3248,1, 8904119,1,2667,3248,1,
898152,3396,16,0,113, 890552,3356,16,0,119,
89821,2695,3253,1,1803, 89061,2695,3253,1,1803,
8983797,1,2458,885,1, 8907797,1,2458,885,1,
89841901,3397,16,0,113, 89081901,3357,16,0,119,
89851,2462,898,1,2136, 89091,2462,898,1,2136,
8986852,1,2464,908,1, 8910852,1,2464,908,1,
89872029,735,1,2466,3232, 89112029,735,1,2466,3232,
@@ -8992,41 +8916,41 @@ public yyLSLSyntax
8992870,1,2041,778,1, 8916870,1,2041,778,1,
89932021,728,1,2043,784, 89172021,728,1,2043,784,
89941,2045,789,1,2511, 89181,2045,789,1,2511,
89953398,16,0,113,1, 89193358,16,0,119,1,
89962725,3211,1,2706,3222, 89202725,3211,1,2706,3222,
89971,2707,3399,16,0, 89211,2707,3359,16,0,
8998113,1,2037,767,1, 8922119,1,2037,767,1,
89991574,809,1,1958,3400, 89231574,809,1,1958,3360,
900016,0,113,1,56, 892416,0,119,1,54,
90013401,19,112,1,56, 89253361,19,118,1,54,
90023402,5,53,1,0, 89263362,5,53,1,0,
90033403,16,0,110,1, 89273363,16,0,116,1,
90042726,3217,1,2727,3238, 89282726,3217,1,2727,3238,
90051,2728,3243,1,2075, 89291,2728,3243,1,2075,
90063404,16,0,110,1, 89303364,16,0,116,1,
90071860,831,1,1804,3405, 89311860,831,1,1804,3365,
900816,0,110,1,10, 893216,0,116,1,10,
90093406,16,0,110,1, 89333366,16,0,116,1,
90102413,3407,16,0,110, 89342413,3367,16,0,116,
90111,2198,3408,16,0, 89351,2198,3368,16,0,
9012110,1,1873,845,1, 8936116,1,1873,845,1,
901321,3409,16,0,110, 893721,3369,16,0,116,
90141,1657,903,1,2030, 89381,1657,903,1,2030,
9015741,1,1989,925,1, 8939741,1,1989,925,1,
90161990,3410,16,0,110, 89401990,3370,16,0,116,
90171,2459,891,1,1775, 89411,2459,891,1,1775,
90183411,16,0,110,1, 89423371,16,0,116,1,
901932,3412,16,0,110, 894332,3372,16,0,116,
90201,2105,824,1,2106, 89441,2105,824,1,2106,
90213413,16,0,110,1, 89453373,16,0,116,1,
90222654,3414,16,0,110, 89462654,3374,16,0,116,
90231,2227,917,1,2337, 89471,2227,917,1,2337,
90243415,16,0,110,1, 89483375,16,0,116,1,
90252667,3248,1,52,3416, 89492667,3248,1,52,3376,
902616,0,110,1,2695, 895016,0,116,1,2695,
90273253,1,1803,797,1, 89513253,1,1803,797,1,
90282458,885,1,1901,3417, 89522458,885,1,1901,3377,
902916,0,110,1,2462, 895316,0,116,1,2462,
9030898,1,2136,852,1, 8954898,1,2136,852,1,
90312464,908,1,2029,735, 89552464,908,1,2029,735,
90321,2466,3232,1,2031, 89561,2466,3232,1,2031,
@@ -9036,42 +8960,42 @@ public yyLSLSyntax
9036772,1,1931,870,1, 8960772,1,1931,870,1,
90372041,778,1,2021,728, 89612041,778,1,2021,728,
90381,2043,784,1,2045, 89621,2043,784,1,2045,
9039789,1,2511,3418,16, 8963789,1,2511,3378,16,
90400,110,1,2725,3211, 89640,116,1,2725,3211,
90411,2706,3222,1,2707, 89651,2706,3222,1,2707,
90423419,16,0,110,1, 89663379,16,0,116,1,
90432037,767,1,1574,809, 89672037,767,1,1574,809,
90441,1958,3420,16,0, 89681,1958,3380,16,0,
9045110,1,57,3421,19, 8969116,1,55,3381,19,
9046109,1,57,3422,5, 8970115,1,55,3382,5,
904753,1,0,3423,16, 897153,1,0,3383,16,
90480,107,1,2726,3217, 89720,113,1,2726,3217,
90491,2727,3238,1,2728, 89731,2727,3238,1,2728,
90503243,1,2075,3424,16, 89743243,1,2075,3384,16,
90510,107,1,1860,831, 89750,113,1,1860,831,
90521,1804,3425,16,0, 89761,1804,3385,16,0,
9053107,1,10,3426,16, 8977113,1,10,3386,16,
90540,107,1,2413,3427, 89780,113,1,2413,3387,
905516,0,107,1,2198, 897916,0,113,1,2198,
90563428,16,0,107,1, 89803388,16,0,113,1,
90571873,845,1,21,3429, 89811873,845,1,21,3389,
905816,0,107,1,1657, 898216,0,113,1,1657,
9059903,1,2030,741,1, 8983903,1,2030,741,1,
90601989,925,1,1990,3430, 89841989,925,1,1990,3390,
906116,0,107,1,2459, 898516,0,113,1,2459,
9062891,1,1775,3431,16, 8986891,1,1775,3391,16,
90630,107,1,32,3432, 89870,113,1,32,3392,
906416,0,107,1,2105, 898816,0,113,1,2105,
9065824,1,2106,3433,16, 8989824,1,2106,3393,16,
90660,107,1,2654,3434, 89900,113,1,2654,3394,
906716,0,107,1,2227, 899116,0,113,1,2227,
9068917,1,2337,3435,16, 8992917,1,2337,3395,16,
90690,107,1,2667,3248, 89930,113,1,2667,3248,
90701,52,3436,16,0, 89941,52,3396,16,0,
9071107,1,2695,3253,1, 8995113,1,2695,3253,1,
90721803,797,1,2458,885, 89961803,797,1,2458,885,
90731,1901,3437,16,0, 89971,1901,3397,16,0,
9074107,1,2462,898,1, 8998113,1,2462,898,1,
90752136,852,1,2464,908, 89992136,852,1,2464,908,
90761,2029,735,1,2466, 90001,2029,735,1,2466,
90773232,1,2031,746,1, 90013232,1,2031,746,1,
@@ -9081,1900 +9005,1989 @@ public yyLSLSyntax
90811931,870,1,2041,778, 90051931,870,1,2041,778,
90821,2021,728,1,2043, 90061,2021,728,1,2043,
9083784,1,2045,789,1, 9007784,1,2045,789,1,
90842511,3438,16,0,107, 90082511,3398,16,0,113,
90851,2725,3211,1,2706, 90091,2725,3211,1,2706,
90863222,1,2707,3439,16, 90103222,1,2707,3399,16,
90870,107,1,2037,767, 90110,113,1,2037,767,
90881,1574,809,1,1958, 90121,1574,809,1,1958,
90893440,16,0,107,1, 90133400,16,0,113,1,
909058,3441,19,437,1, 901456,3401,19,112,1,
909158,3442,5,12,1, 901556,3402,5,53,1,
90922524,1636,1,2526,3443, 90160,3403,16,0,110,
909316,0,435,1,2564, 90171,2726,3217,1,2727,
90941655,1,2566,1660,1, 90183238,1,2728,3243,1,
90952567,1644,1,2606,3444, 90192075,3404,16,0,110,
909616,0,435,1,2459, 90201,1860,831,1,1804,
9097891,1,2563,1650,1, 90213405,16,0,110,1,
90982464,908,1,2569,3445, 902210,3406,16,0,110,
909916,0,435,1,2470, 90231,2413,3407,16,0,
91003446,16,0,435,1, 9024110,1,2198,3408,16,
91012509,1629,1,59,3447, 90250,110,1,1873,845,
910219,434,1,59,3448, 90261,21,3409,16,0,
91035,12,1,2524,1636, 9027110,1,1657,903,1,
91041,2526,3449,16,0, 90282030,741,1,1989,925,
9105432,1,2564,1655,1, 90291,1990,3410,16,0,
91062566,1660,1,2567,1644, 9030110,1,2459,891,1,
91071,2606,3450,16,0, 90311775,3411,16,0,110,
9108432,1,2459,891,1, 90321,32,3412,16,0,
91092563,1650,1,2464,908, 9033110,1,2105,824,1,
91101,2569,3451,16,0, 90342106,3413,16,0,110,
9111432,1,2470,3452,16, 90351,2654,3414,16,0,
91120,432,1,2509,1629, 9036110,1,2227,917,1,
91131,60,3453,19,431, 90372337,3415,16,0,110,
91141,60,3454,5,12, 90381,2667,3248,1,52,
90393416,16,0,110,1,
90402695,3253,1,1803,797,
90411,2458,885,1,1901,
90423417,16,0,110,1,
90432462,898,1,2136,852,
90441,2464,908,1,2029,
9045735,1,2466,3232,1,
90462031,746,1,2032,751,
90471,2033,756,1,2035,
9048762,1,2364,837,1,
90492039,772,1,1931,870,
90501,2041,778,1,2021,
9051728,1,2043,784,1,
90522045,789,1,2511,3418,
905316,0,110,1,2725,
90543211,1,2706,3222,1,
90552707,3419,16,0,110,
90561,2037,767,1,1574,
9057809,1,1958,3420,16,
90580,110,1,57,3421,
905919,109,1,57,3422,
90605,53,1,0,3423,
906116,0,107,1,2726,
90623217,1,2727,3238,1,
90632728,3243,1,2075,3424,
906416,0,107,1,1860,
9065831,1,1804,3425,16,
90660,107,1,10,3426,
906716,0,107,1,2413,
90683427,16,0,107,1,
90692198,3428,16,0,107,
90701,1873,845,1,21,
90713429,16,0,107,1,
90721657,903,1,2030,741,
90731,1989,925,1,1990,
90743430,16,0,107,1,
90752459,891,1,1775,3431,
907616,0,107,1,32,
90773432,16,0,107,1,
90782105,824,1,2106,3433,
907916,0,107,1,2654,
90803434,16,0,107,1,
90812227,917,1,2337,3435,
908216,0,107,1,2667,
90833248,1,52,3436,16,
90840,107,1,2695,3253,
90851,1803,797,1,2458,
9086885,1,1901,3437,16,
90870,107,1,2462,898,
90881,2136,852,1,2464,
9089908,1,2029,735,1,
90902466,3232,1,2031,746,
90911,2032,751,1,2033,
9092756,1,2035,762,1,
90932364,837,1,2039,772,
90941,1931,870,1,2041,
9095778,1,2021,728,1,
90962043,784,1,2045,789,
90971,2511,3438,16,0,
9098107,1,2725,3211,1,
90992706,3222,1,2707,3439,
910016,0,107,1,2037,
9101767,1,1574,809,1,
91021958,3440,16,0,107,
91031,58,3441,19,437,
91041,58,3442,5,12,
91151,2524,1636,1,2526, 91051,2524,1636,1,2526,
91163455,16,0,429,1, 91063443,16,0,435,1,
91172564,1655,1,2566,1660, 91072564,1655,1,2566,1660,
91181,2567,1644,1,2606, 91081,2567,1644,1,2606,
91193456,16,0,429,1, 91093444,16,0,435,1,
91202459,891,1,2563,1650, 91102459,891,1,2563,1650,
91211,2464,908,1,2569, 91111,2464,908,1,2569,
91223457,16,0,429,1, 91123445,16,0,435,1,
91232470,3458,16,0,429, 91132470,3446,16,0,435,
91241,2509,1629,1,61, 91141,2509,1629,1,59,
91253459,19,428,1,61, 91153447,19,434,1,59,
91263460,5,12,1,2524, 91163448,5,12,1,2524,
91271636,1,2526,3461,16, 91171636,1,2526,3449,16,
91280,426,1,2564,1655, 91180,432,1,2564,1655,
91291,2566,1660,1,2567, 91191,2566,1660,1,2567,
91301644,1,2606,3462,16, 91201644,1,2606,3450,16,
91310,426,1,2459,891, 91210,432,1,2459,891,
91321,2563,1650,1,2464, 91221,2563,1650,1,2464,
9133908,1,2569,3463,16, 9123908,1,2569,3451,16,
91340,426,1,2470,3464, 91240,432,1,2470,3452,
913516,0,426,1,2509, 912516,0,432,1,2509,
91361629,1,62,3465,19, 91261629,1,60,3453,19,
9137425,1,62,3466,5, 9127431,1,60,3454,5,
913812,1,2524,1636,1, 912812,1,2524,1636,1,
91392526,3467,16,0,423, 91292526,3455,16,0,429,
91401,2564,1655,1,2566, 91301,2564,1655,1,2566,
91411660,1,2567,1644,1, 91311660,1,2567,1644,1,
91422606,3468,16,0,423, 91322606,3456,16,0,429,
91431,2459,891,1,2563, 91331,2459,891,1,2563,
91441650,1,2464,908,1, 91341650,1,2464,908,1,
91452569,3469,16,0,423, 91352569,3457,16,0,429,
91461,2470,3470,16,0, 91361,2470,3458,16,0,
9147423,1,2509,1629,1, 9137429,1,2509,1629,1,
914863,3471,19,422,1, 913861,3459,19,428,1,
914963,3472,5,12,1, 913961,3460,5,12,1,
91502524,1636,1,2526,3473, 91402524,1636,1,2526,3461,
915116,0,420,1,2564, 914116,0,426,1,2564,
91521655,1,2566,1660,1, 91421655,1,2566,1660,1,
91532567,1644,1,2606,3474, 91432567,1644,1,2606,3462,
915416,0,420,1,2459, 914416,0,426,1,2459,
9155891,1,2563,1650,1, 9145891,1,2563,1650,1,
91562464,908,1,2569,3475, 91462464,908,1,2569,3463,
915716,0,420,1,2470, 914716,0,426,1,2470,
91583476,16,0,420,1, 91483464,16,0,426,1,
91592509,1629,1,64,3477, 91492509,1629,1,62,3465,
916019,663,1,64,3478, 915019,425,1,62,3466,
91615,12,1,2524,1636, 91515,12,1,2524,1636,
91621,2526,3479,16,0, 91521,2526,3467,16,0,
9163661,1,2564,1655,1, 9153423,1,2564,1655,1,
91642566,1660,1,2567,1644, 91542566,1660,1,2567,1644,
91651,2606,3480,16,0, 91551,2606,3468,16,0,
9166661,1,2459,891,1, 9156423,1,2459,891,1,
91672563,1650,1,2464,908, 91572563,1650,1,2464,908,
91681,2569,3481,16,0, 91581,2569,3469,16,0,
9169661,1,2470,3482,16, 9159423,1,2470,3470,16,
91700,661,1,2509,1629, 91600,423,1,2509,1629,
91711,65,3483,19,418, 91611,63,3471,19,422,
91721,65,3484,5,12, 91621,63,3472,5,12,
91731,2524,1636,1,2526, 91631,2524,1636,1,2526,
91743485,16,0,416,1, 91643473,16,0,420,1,
91752564,1655,1,2566,1660, 91652564,1655,1,2566,1660,
91761,2567,1644,1,2606, 91661,2567,1644,1,2606,
91773486,16,0,416,1, 91673474,16,0,420,1,
91782459,891,1,2563,1650, 91682459,891,1,2563,1650,
91791,2464,908,1,2569, 91691,2464,908,1,2569,
91803487,16,0,416,1, 91703475,16,0,420,1,
91812470,3488,16,0,416, 91712470,3476,16,0,420,
91821,2509,1629,1,66, 91721,2509,1629,1,64,
91833489,19,503,1,66, 91733477,19,663,1,64,
91843490,5,12,1,2524, 91743478,5,12,1,2524,
91851636,1,2526,3491,16, 91751636,1,2526,3479,16,
91860,501,1,2564,1655, 91760,661,1,2564,1655,
91871,2566,1660,1,2567, 91771,2566,1660,1,2567,
91881644,1,2606,3492,16, 91781644,1,2606,3480,16,
91890,501,1,2459,891, 91790,661,1,2459,891,
91901,2563,1650,1,2464, 91801,2563,1650,1,2464,
9191908,1,2569,3493,16, 9181908,1,2569,3481,16,
91920,501,1,2470,3494, 91820,661,1,2470,3482,
919316,0,501,1,2509, 918316,0,661,1,2509,
91941629,1,67,3495,19, 91841629,1,65,3483,19,
9195414,1,67,3496,5, 9185418,1,65,3484,5,
919612,1,2524,1636,1, 918612,1,2524,1636,1,
91972526,3497,16,0,412, 91872526,3485,16,0,416,
91981,2564,1655,1,2566, 91881,2564,1655,1,2566,
91991660,1,2567,1644,1, 91891660,1,2567,1644,1,
92002606,3498,16,0,412, 91902606,3486,16,0,416,
92011,2459,891,1,2563, 91911,2459,891,1,2563,
92021650,1,2464,908,1, 91921650,1,2464,908,1,
92032569,3499,16,0,412, 91932569,3487,16,0,416,
92041,2470,3500,16,0, 91941,2470,3488,16,0,
9205412,1,2509,1629,1, 9195416,1,2509,1629,1,
920668,3501,19,411,1, 919666,3489,19,503,1,
920768,3502,5,12,1, 919766,3490,5,12,1,
92082524,1636,1,2526,3503, 91982524,1636,1,2526,3491,
920916,0,409,1,2564, 919916,0,501,1,2564,
92101655,1,2566,1660,1, 92001655,1,2566,1660,1,
92112567,1644,1,2606,3504, 92012567,1644,1,2606,3492,
921216,0,409,1,2459, 920216,0,501,1,2459,
9213891,1,2563,1650,1, 9203891,1,2563,1650,1,
92142464,908,1,2569,3505, 92042464,908,1,2569,3493,
921516,0,409,1,2470, 920516,0,501,1,2470,
92163506,16,0,409,1, 92063494,16,0,501,1,
92172509,1629,1,69,3507, 92072509,1629,1,67,3495,
921819,496,1,69,3508, 920819,414,1,67,3496,
92195,12,1,2524,1636, 92095,12,1,2524,1636,
92201,2526,3509,16,0, 92101,2526,3497,16,0,
9221494,1,2564,1655,1, 9211412,1,2564,1655,1,
92222566,1660,1,2567,1644, 92122566,1660,1,2567,1644,
92231,2606,3510,16,0, 92131,2606,3498,16,0,
9224494,1,2459,891,1, 9214412,1,2459,891,1,
92252563,1650,1,2464,908, 92152563,1650,1,2464,908,
92261,2569,3511,16,0, 92161,2569,3499,16,0,
9227494,1,2470,3512,16, 9217412,1,2470,3500,16,
92280,494,1,2509,1629, 92180,412,1,2509,1629,
92291,70,3513,19,407, 92191,68,3501,19,411,
92301,70,3514,5,12, 92201,68,3502,5,12,
92311,2524,1636,1,2526, 92211,2524,1636,1,2526,
92323515,16,0,405,1, 92223503,16,0,409,1,
92332564,1655,1,2566,1660, 92232564,1655,1,2566,1660,
92341,2567,1644,1,2606, 92241,2567,1644,1,2606,
92353516,16,0,405,1, 92253504,16,0,409,1,
92362459,891,1,2563,1650, 92262459,891,1,2563,1650,
92371,2464,908,1,2569, 92271,2464,908,1,2569,
92383517,16,0,405,1, 92283505,16,0,409,1,
92392470,3518,16,0,405, 92292470,3506,16,0,409,
92401,2509,1629,1,71, 92301,2509,1629,1,69,
92413519,19,493,1,71, 92313507,19,496,1,69,
92423520,5,12,1,2524, 92323508,5,12,1,2524,
92431636,1,2526,3521,16, 92331636,1,2526,3509,16,
92440,491,1,2564,1655, 92340,494,1,2564,1655,
92451,2566,1660,1,2567, 92351,2566,1660,1,2567,
92461644,1,2606,3522,16, 92361644,1,2606,3510,16,
92470,491,1,2459,891, 92370,494,1,2459,891,
92481,2563,1650,1,2464, 92381,2563,1650,1,2464,
9249908,1,2569,3523,16, 9239908,1,2569,3511,16,
92500,491,1,2470,3524, 92400,494,1,2470,3512,
925116,0,491,1,2509, 924116,0,494,1,2509,
92521629,1,72,3525,19, 92421629,1,70,3513,19,
9253490,1,72,3526,5, 9243407,1,70,3514,5,
925412,1,2524,1636,1, 924412,1,2524,1636,1,
92552526,3527,16,0,488, 92452526,3515,16,0,405,
92561,2564,1655,1,2566, 92461,2564,1655,1,2566,
92571660,1,2567,1644,1, 92471660,1,2567,1644,1,
92582606,3528,16,0,488, 92482606,3516,16,0,405,
92591,2459,891,1,2563, 92491,2459,891,1,2563,
92601650,1,2464,908,1, 92501650,1,2464,908,1,
92612569,3529,16,0,488, 92512569,3517,16,0,405,
92621,2470,3530,16,0, 92521,2470,3518,16,0,
9263488,1,2509,1629,1, 9253405,1,2509,1629,1,
926473,3531,19,487,1, 925471,3519,19,493,1,
926573,3532,5,12,1, 925571,3520,5,12,1,
92662524,1636,1,2526,3533, 92562524,1636,1,2526,3521,
926716,0,485,1,2564, 925716,0,491,1,2564,
92681655,1,2566,1660,1, 92581655,1,2566,1660,1,
92692567,1644,1,2606,3534, 92592567,1644,1,2606,3522,
927016,0,485,1,2459, 926016,0,491,1,2459,
9271891,1,2563,1650,1, 9261891,1,2563,1650,1,
92722464,908,1,2569,3535, 92622464,908,1,2569,3523,
927316,0,485,1,2470, 926316,0,491,1,2470,
92743536,16,0,485,1, 92643524,16,0,491,1,
92752509,1629,1,74,3537, 92652509,1629,1,72,3525,
927619,484,1,74,3538, 926619,490,1,72,3526,
92775,12,1,2524,1636, 92675,12,1,2524,1636,
92781,2526,3539,16,0, 92681,2526,3527,16,0,
9279482,1,2564,1655,1, 9269488,1,2564,1655,1,
92802566,1660,1,2567,1644, 92702566,1660,1,2567,1644,
92811,2606,3540,16,0, 92711,2606,3528,16,0,
9282482,1,2459,891,1, 9272488,1,2459,891,1,
92832563,1650,1,2464,908, 92732563,1650,1,2464,908,
92841,2569,3541,16,0, 92741,2569,3529,16,0,
9285482,1,2470,3542,16, 9275488,1,2470,3530,16,
92860,482,1,2509,1629, 92760,488,1,2509,1629,
92871,75,3543,19,398, 92771,73,3531,19,487,
92881,75,3544,5,12, 92781,73,3532,5,12,
92891,2524,1636,1,2526, 92791,2524,1636,1,2526,
92903545,16,0,396,1, 92803533,16,0,485,1,
92912564,1655,1,2566,1660, 92812564,1655,1,2566,1660,
92921,2567,1644,1,2606, 92821,2567,1644,1,2606,
92933546,16,0,396,1, 92833534,16,0,485,1,
92942459,891,1,2563,1650, 92842459,891,1,2563,1650,
92951,2464,908,1,2569, 92851,2464,908,1,2569,
92963547,16,0,396,1, 92863535,16,0,485,1,
92972470,3548,16,0,396, 92872470,3536,16,0,485,
92981,2509,1629,1,76, 92881,2509,1629,1,74,
92993549,19,395,1,76, 92893537,19,484,1,74,
93003550,5,12,1,2524, 92903538,5,12,1,2524,
93011636,1,2526,3551,16, 92911636,1,2526,3539,16,
93020,393,1,2564,1655, 92920,482,1,2564,1655,
93031,2566,1660,1,2567, 92931,2566,1660,1,2567,
93041644,1,2606,3552,16, 92941644,1,2606,3540,16,
93050,393,1,2459,891, 92950,482,1,2459,891,
93061,2563,1650,1,2464, 92961,2563,1650,1,2464,
9307908,1,2569,3553,16, 9297908,1,2569,3541,16,
93080,393,1,2470,3554, 92980,482,1,2470,3542,
930916,0,393,1,2509, 929916,0,482,1,2509,
93101629,1,77,3555,19, 93001629,1,75,3543,19,
9311477,1,77,3556,5, 9301364,1,75,3544,5,
931212,1,2524,1636,1, 930212,1,2524,1636,1,
93132526,3557,16,0,475, 93032526,3545,16,0,362,
93141,2564,1655,1,2566, 93041,2564,1655,1,2566,
93151660,1,2567,1644,1, 93051660,1,2567,1644,1,
93162606,3558,16,0,475, 93062606,3546,16,0,362,
93171,2459,891,1,2563, 93071,2459,891,1,2563,
93181650,1,2464,908,1, 93081650,1,2464,908,1,
93192569,3559,16,0,475, 93092569,3547,16,0,362,
93201,2470,3560,16,0, 93101,2470,3548,16,0,
9321475,1,2509,1629,1, 9311362,1,2509,1629,1,
932278,3561,19,571,1, 931276,3549,19,361,1,
932378,3562,5,12,1, 931376,3550,5,12,1,
93242524,1636,1,2526,3563, 93142524,1636,1,2526,3551,
932516,0,569,1,2564, 931516,0,359,1,2564,
93261655,1,2566,1660,1, 93161655,1,2566,1660,1,
93272567,1644,1,2606,3564, 93172567,1644,1,2606,3552,
932816,0,569,1,2459, 931816,0,359,1,2459,
9329891,1,2563,1650,1, 9319891,1,2563,1650,1,
93302464,908,1,2569,3565, 93202464,908,1,2569,3553,
933116,0,569,1,2470, 932116,0,359,1,2470,
93323566,16,0,569,1, 93223554,16,0,359,1,
93332509,1629,1,79,3567, 93232509,1629,1,77,3555,
933419,388,1,79,3568, 932419,398,1,77,3556,
93355,12,1,2524,1636, 93255,12,1,2524,1636,
93361,2526,3569,16,0, 93261,2526,3557,16,0,
9337386,1,2564,1655,1, 9327396,1,2564,1655,1,
93382566,1660,1,2567,1644, 93282566,1660,1,2567,1644,
93391,2606,3570,16,0, 93291,2606,3558,16,0,
9340386,1,2459,891,1, 9330396,1,2459,891,1,
93412563,1650,1,2464,908, 93312563,1650,1,2464,908,
93421,2569,3571,16,0, 93321,2569,3559,16,0,
9343386,1,2470,3572,16, 9333396,1,2470,3560,16,
93440,386,1,2509,1629, 93340,396,1,2509,1629,
93451,80,3573,19,385, 93351,78,3561,19,358,
93461,80,3574,5,12, 93361,78,3562,5,12,
93471,2524,1636,1,2526, 93371,2524,1636,1,2526,
93483575,16,0,383,1, 93383563,16,0,356,1,
93492564,1655,1,2566,1660, 93392564,1655,1,2566,1660,
93501,2567,1644,1,2606, 93401,2567,1644,1,2606,
93513576,16,0,383,1, 93413564,16,0,356,1,
93522459,891,1,2563,1650, 93422459,891,1,2563,1650,
93531,2464,908,1,2569, 93431,2464,908,1,2569,
93543577,16,0,383,1, 93443565,16,0,356,1,
93552470,3578,16,0,383, 93452470,3566,16,0,356,
93561,2509,1629,1,81, 93461,2509,1629,1,79,
93573579,19,382,1,81, 93473567,19,355,1,79,
93583580,5,12,1,2524, 93483568,5,12,1,2524,
93591636,1,2526,3581,16, 93491636,1,2526,3569,16,
93600,380,1,2564,1655, 93500,353,1,2564,1655,
93611,2566,1660,1,2567, 93511,2566,1660,1,2567,
93621644,1,2606,3582,16, 93521644,1,2606,3570,16,
93630,380,1,2459,891, 93530,353,1,2459,891,
93641,2563,1650,1,2464, 93541,2563,1650,1,2464,
9365908,1,2569,3583,16, 9355908,1,2569,3571,16,
93660,380,1,2470,3584, 93560,353,1,2470,3572,
936716,0,380,1,2509, 935716,0,353,1,2509,
93681629,1,82,3585,19, 93581629,1,80,3573,19,
9369379,1,82,3586,5, 9359395,1,80,3574,5,
937012,1,2524,1636,1, 936012,1,2524,1636,1,
93712526,3587,16,0,377, 93612526,3575,16,0,393,
93721,2564,1655,1,2566, 93621,2564,1655,1,2566,
93731660,1,2567,1644,1, 93631660,1,2567,1644,1,
93742606,3588,16,0,377, 93642606,3576,16,0,393,
93751,2459,891,1,2563, 93651,2459,891,1,2563,
93761650,1,2464,908,1, 93661650,1,2464,908,1,
93772569,3589,16,0,377, 93672569,3577,16,0,393,
93781,2470,3590,16,0, 93681,2470,3578,16,0,
9379377,1,2509,1629,1, 9369393,1,2509,1629,1,
938083,3591,19,376,1, 937081,3579,19,477,1,
938183,3592,5,12,1, 937181,3580,5,12,1,
93822524,1636,1,2526,3593, 93722524,1636,1,2526,3581,
938316,0,374,1,2564, 937316,0,475,1,2564,
93841655,1,2566,1660,1, 93741655,1,2566,1660,1,
93852567,1644,1,2606,3594, 93752567,1644,1,2606,3582,
938616,0,374,1,2459, 937616,0,475,1,2459,
9387891,1,2563,1650,1, 9377891,1,2563,1650,1,
93882464,908,1,2569,3595, 93782464,908,1,2569,3583,
938916,0,374,1,2470, 937916,0,475,1,2470,
93903596,16,0,374,1, 93803584,16,0,475,1,
93912509,1629,1,84,3597, 93812509,1629,1,82,3585,
939219,373,1,84,3598, 938219,571,1,82,3586,
93935,12,1,2524,1636, 93835,12,1,2524,1636,
93941,2526,3599,16,0, 93841,2526,3587,16,0,
9395371,1,2564,1655,1, 9385569,1,2564,1655,1,
93962566,1660,1,2567,1644, 93862566,1660,1,2567,1644,
93971,2606,3600,16,0, 93871,2606,3588,16,0,
9398371,1,2459,891,1, 9388569,1,2459,891,1,
93992563,1650,1,2464,908, 93892563,1650,1,2464,908,
94001,2569,3601,16,0, 93901,2569,3589,16,0,
9401371,1,2470,3602,16, 9391569,1,2470,3590,16,
94020,371,1,2509,1629, 93920,569,1,2509,1629,
94031,85,3603,19,352, 93931,83,3591,19,388,
94041,85,3604,5,12, 93941,83,3592,5,12,
94051,2524,1636,1,2526, 93951,2524,1636,1,2526,
94063605,16,0,350,1, 93963593,16,0,386,1,
94072564,1655,1,2566,1660, 93972564,1655,1,2566,1660,
94081,2567,1644,1,2606, 93981,2567,1644,1,2606,
94093606,16,0,350,1, 93993594,16,0,386,1,
94102459,891,1,2563,1650, 94002459,891,1,2563,1650,
94111,2464,908,1,2569, 94011,2464,908,1,2569,
94123607,16,0,350,1, 94023595,16,0,386,1,
94132470,3608,16,0,350, 94032470,3596,16,0,386,
94141,2509,1629,1,86, 94041,2509,1629,1,84,
94153609,19,370,1,86, 94053597,19,385,1,84,
94163610,5,12,1,2524, 94063598,5,12,1,2524,
94171636,1,2526,3611,16, 94071636,1,2526,3599,16,
94180,368,1,2564,1655, 94080,383,1,2564,1655,
94191,2566,1660,1,2567, 94091,2566,1660,1,2567,
94201644,1,2606,3612,16, 94101644,1,2606,3600,16,
94210,368,1,2459,891, 94110,383,1,2459,891,
94221,2563,1650,1,2464, 94121,2563,1650,1,2464,
9423908,1,2569,3613,16, 9413908,1,2569,3601,16,
94240,368,1,2470,3614, 94140,383,1,2470,3602,
942516,0,368,1,2509, 941516,0,383,1,2509,
94261629,1,87,3615,19, 94161629,1,85,3603,19,
9427367,1,87,3616,5, 9417370,1,85,3604,5,
942812,1,2524,1636,1, 941812,1,2524,1636,1,
94292526,3617,16,0,365, 94192526,3605,16,0,368,
94301,2564,1655,1,2566, 94201,2564,1655,1,2566,
94311660,1,2567,1644,1, 94211660,1,2567,1644,1,
94322606,3618,16,0,365, 94222606,3606,16,0,368,
94331,2459,891,1,2563, 94231,2459,891,1,2563,
94341650,1,2464,908,1, 94241650,1,2464,908,1,
94352569,3619,16,0,365, 94252569,3607,16,0,368,
94361,2470,3620,16,0, 94261,2470,3608,16,0,
9437365,1,2509,1629,1, 9427368,1,2509,1629,1,
943888,3621,19,364,1, 942886,3609,19,367,1,
943988,3622,5,12,1, 942986,3610,5,12,1,
94402524,1636,1,2526,3623, 94302524,1636,1,2526,3611,
944116,0,362,1,2564, 943116,0,365,1,2564,
94421655,1,2566,1660,1, 94321655,1,2566,1660,1,
94432567,1644,1,2606,3624, 94332567,1644,1,2606,3612,
944416,0,362,1,2459, 943416,0,365,1,2459,
9445891,1,2563,1650,1, 9435891,1,2563,1650,1,
94462464,908,1,2569,3625, 94362464,908,1,2569,3613,
944716,0,362,1,2470, 943716,0,365,1,2470,
94483626,16,0,362,1, 94383614,16,0,365,1,
94492509,1629,1,89,3627, 94392509,1629,1,87,3615,
945019,358,1,89,3628, 944019,352,1,87,3616,
94515,12,1,2524,1636, 94415,12,1,2524,1636,
94521,2526,3629,16,0, 94421,2526,3617,16,0,
9453356,1,2564,1655,1, 9443350,1,2564,1655,1,
94542566,1660,1,2567,1644, 94442566,1660,1,2567,1644,
94551,2606,3630,16,0, 94451,2606,3618,16,0,
9456356,1,2459,891,1, 9446350,1,2459,891,1,
94572563,1650,1,2464,908, 94472563,1650,1,2464,908,
94581,2569,3631,16,0, 94481,2569,3619,16,0,
9459356,1,2470,3632,16, 9449350,1,2470,3620,16,
94600,356,1,2509,1629, 94500,350,1,2509,1629,
94611,90,3633,19,361, 94511,88,3621,19,382,
94621,90,3634,5,12, 94521,88,3622,5,12,
94631,2524,1636,1,2526, 94531,2524,1636,1,2526,
94643635,16,0,359,1, 94543623,16,0,380,1,
94652564,1655,1,2566,1660, 94552564,1655,1,2566,1660,
94661,2567,1644,1,2606, 94561,2567,1644,1,2606,
94673636,16,0,359,1, 94573624,16,0,380,1,
94682459,891,1,2563,1650, 94582459,891,1,2563,1650,
94691,2464,908,1,2569, 94591,2464,908,1,2569,
94703637,16,0,359,1, 94603625,16,0,380,1,
94712470,3638,16,0,359, 94612470,3626,16,0,380,
94721,2509,1629,1,91, 94621,2509,1629,1,89,
94733639,19,355,1,91, 94633627,19,376,1,89,
94743640,5,12,1,2524, 94643628,5,12,1,2524,
94751636,1,2526,3641,16, 94651636,1,2526,3629,16,
94760,353,1,2564,1655, 94660,374,1,2564,1655,
94771,2566,1660,1,2567, 94671,2566,1660,1,2567,
94781644,1,2606,3642,16, 94681644,1,2606,3630,16,
94790,353,1,2459,891, 94690,374,1,2459,891,
94801,2563,1650,1,2464, 94701,2563,1650,1,2464,
9481908,1,2569,3643,16, 9471908,1,2569,3631,16,
94820,353,1,2470,3644, 94720,374,1,2470,3632,
948316,0,353,1,2509, 947316,0,374,1,2509,
94841629,1,92,3645,19, 94741629,1,90,3633,19,
9485133,1,92,3646,5, 9475379,1,90,3634,5,
9486125,1,0,3647,16, 947612,1,2524,1636,1,
94870,585,1,1,1980, 94772526,3635,16,0,377,
94881,2,1986,1,3, 94781,2564,1655,1,2566,
94891991,1,4,1996,1, 94791660,1,2567,1644,1,
94905,2001,1,6,2006, 94802606,3636,16,0,377,
94911,7,2011,1,8, 94811,2459,891,1,2563,
94923648,16,0,131,1, 94821650,1,2464,908,1,
94931515,3649,16,0,174, 94832569,3637,16,0,377,
94941,2021,728,1,2022, 94841,2470,3638,16,0,
94953650,16,0,507,1, 9485377,1,2509,1629,1,
9496256,3651,16,0,182, 948691,3639,19,373,1,
94971,2025,3652,16,0, 948791,3640,5,12,1,
9498511,1,18,3653,16, 94882524,1636,1,2526,3641,
94990,138,1,2027,3654, 948916,0,371,1,2564,
950016,0,515,1,2695, 94901655,1,2566,1660,1,
95013253,1,2029,735,1, 94912567,1644,1,2606,3642,
95022030,741,1,2031,746, 949216,0,371,1,2459,
95031,2032,751,1,2033, 9493891,1,2563,1650,1,
9504756,1,277,3655,16, 94942464,908,1,2569,3643,
95050,182,1,2035,762, 949516,0,371,1,2470,
95061,2037,767,1,2039, 94963644,16,0,371,1,
9507772,1,32,3656,16, 94972509,1629,1,92,3645,
95080,174,1,2041,778, 949819,133,1,92,3646,
95091,2293,3657,16,0, 94995,125,1,0,3647,
9510182,1,2043,784,1, 950016,0,585,1,1,
95112045,789,1,41,3658, 95011980,1,2,1986,1,
951216,0,182,1,1297, 95023,1991,1,4,1996,
95133659,16,0,174,1, 95031,5,2001,1,6,
951443,3660,16,0,182, 95042006,1,7,2011,1,
95151,46,3661,16,0, 95058,3648,16,0,131,
9516187,1,1804,3662,16, 95061,1515,3649,16,0,
95170,174,1,299,3663, 9507174,1,2021,728,1,
951816,0,182,1,2725, 95082022,3650,16,0,507,
95193211,1,52,3664,16, 95091,256,3651,16,0,
95200,174,1,509,3665, 9510182,1,2025,3652,16,
952116,0,182,1,2318, 95110,511,1,18,3653,
95223666,16,0,174,1, 951216,0,138,1,2027,
952362,3667,16,0,205, 95133654,16,0,515,1,
95241,65,3668,16,0, 95142695,3253,1,2029,735,
9525207,1,2075,3669,16, 95151,2030,741,1,2031,
95260,174,1,1574,809, 9516746,1,2032,751,1,
95271,71,3670,16,0, 95172033,756,1,277,3655,
9528182,1,1775,3671,16, 951816,0,182,1,2035,
95290,174,1,76,3672, 9519762,1,2037,767,1,
953016,0,182,1,1834, 95202039,772,1,32,3656,
95313673,16,0,174,1, 952116,0,174,1,2041,
95322337,3674,16,0,174, 9522778,1,2293,3657,16,
95331,79,3675,16,0, 95230,182,1,2043,784,
9534182,1,1335,3676,16, 95241,2045,789,1,41,
95350,174,1,322,3677, 95253658,16,0,182,1,
953616,0,182,1,85, 95261297,3659,16,0,174,
95373678,16,0,182,1, 95271,43,3660,16,0,
95381261,3679,16,0,174, 9528182,1,46,3661,16,
95391,89,3680,16,0, 95290,187,1,1804,3662,
9540182,1,346,3681,16, 953016,0,174,1,299,
95410,182,1,97,3682, 95313663,16,0,182,1,
954216,0,182,1,2106, 95322725,3211,1,52,3664,
95433683,16,0,174,1, 953316,0,174,1,509,
9544102,3684,16,0,182, 95343665,16,0,182,1,
95451,1860,831,1,1803, 95352318,3666,16,0,174,
9546797,1,2364,837,1, 95361,62,3667,16,0,
95471113,3685,16,0,167, 9537205,1,65,3668,16,
95481,112,3686,16,0, 95380,207,1,2075,3669,
9549182,1,1117,3687,16, 953916,0,174,1,1574,
95500,174,1,1873,845, 9540809,1,71,3670,16,
95511,1876,3688,16,0, 95410,182,1,1775,3671,
9552174,1,372,3689,16, 954216,0,174,1,76,
95530,545,1,374,3690, 95433672,16,0,182,1,
955416,0,547,1,124, 95441834,3673,16,0,174,
95553691,16,0,182,1, 95451,2337,3674,16,0,
9556376,3692,16,0,549, 9546174,1,79,3675,16,
95571,378,3693,16,0, 95470,182,1,1335,3676,
9558551,1,2136,852,1, 954816,0,174,1,322,
9559381,3694,16,0,182, 95493677,16,0,182,1,
95601,525,3695,16,0, 955085,3678,16,0,182,
9561182,1,137,3696,16, 95511,1261,3679,16,0,
95620,182,1,1901,3697, 9552174,1,89,3680,16,
956316,0,174,1,1153, 95530,182,1,346,3681,
95643698,16,0,174,1, 955416,0,182,1,97,
9565151,3699,16,0,182, 95553682,16,0,182,1,
95661,1407,3700,16,0, 95562106,3683,16,0,174,
9567174,1,1659,3701,16, 95571,102,3684,16,0,
95680,174,1,2413,3702, 9558182,1,1860,831,1,
956916,0,174,1,406, 95591803,797,1,2364,837,
95703703,16,0,182,1, 95601,1113,3685,16,0,
95712667,3248,1,1371,3704, 9561167,1,112,3686,16,
957216,0,174,1,2105, 95620,182,1,1117,3687,
9573824,1,166,3705,16, 956316,0,174,1,1873,
95740,182,1,1622,3706, 9564845,1,1876,3688,16,
957516,0,182,1,1931, 95650,174,1,372,3689,
9576870,1,1933,3707,16, 956616,0,545,1,374,
95770,174,1,431,3708, 95673690,16,0,547,1,
957816,0,182,1,1585, 9568124,3691,16,0,182,
95793709,16,0,182,1, 95691,376,3692,16,0,
9580182,3710,16,0,182, 9570549,1,378,3693,16,
95811,1189,3711,16,0, 95710,551,1,2136,852,
9582174,1,1443,3712,16, 95721,381,3694,16,0,
95830,174,1,1695,3713, 9573182,1,525,3695,16,
958416,0,174,1,2198, 95740,182,1,137,3696,
95853714,16,0,174,1, 957516,0,182,1,1901,
95862706,3222,1,2707,3715, 95763697,16,0,174,1,
958716,0,585,1,2458, 95771153,3698,16,0,174,
9588885,1,2459,891,1, 95781,151,3699,16,0,
95891958,3716,16,0,174, 9579182,1,1407,3700,16,
95901,2462,898,1,1657, 95800,174,1,1659,3701,
9591903,1,2464,908,1, 958116,0,174,1,2413,
95922466,3232,1,459,3717, 95823702,16,0,174,1,
959316,0,182,1,2468, 9583406,3703,16,0,182,
95943718,16,0,348,1, 95841,2667,3248,1,1371,
9595447,3719,16,0,182, 95853704,16,0,174,1,
95961,199,3720,16,0, 95862105,824,1,166,3705,
9597182,1,2726,3217,1, 958716,0,182,1,1622,
95982727,3238,1,2728,3243, 95883706,16,0,182,1,
95991,2227,917,1,1225, 95891931,870,1,1933,3707,
96003721,16,0,174,1, 959016,0,174,1,431,
96011479,3722,16,0,174, 95913708,16,0,182,1,
96021,1731,3723,16,0, 95921585,3709,16,0,182,
9603182,1,462,3724,16, 95931,182,3710,16,0,
96040,182,1,1989,925, 9594182,1,1189,3711,16,
96051,1990,3725,16,0, 95950,174,1,1443,3712,
9606174,1,236,3726,16, 959616,0,174,1,1695,
96070,182,1,217,3727, 95973713,16,0,174,1,
960816,0,182,1,2670, 95982198,3714,16,0,174,
96093728,16,0,182,1, 95991,2706,3222,1,2707,
96101756,3729,16,0,174, 96003715,16,0,585,1,
96111,93,3730,19,639, 96012458,885,1,2459,891,
96121,93,3731,5,95, 96021,1958,3716,16,0,
96131,256,3732,16,0, 9603174,1,2462,898,1,
9614637,1,1261,3733,16, 96041657,903,1,2464,908,
96150,637,1,509,3734, 96051,2466,3232,1,459,
961616,0,637,1,1515, 96063717,16,0,182,1,
96173735,16,0,637,1, 96072468,3718,16,0,348,
96182021,728,1,1775,3736, 96081,447,3719,16,0,
961916,0,637,1,2029, 9609182,1,199,3720,16,
96100,182,1,2726,3217,
96111,2727,3238,1,2728,
96123243,1,2227,917,1,
96131225,3721,16,0,174,
96141,1479,3722,16,0,
9615174,1,1731,3723,16,
96160,182,1,462,3724,
961716,0,182,1,1989,
9618925,1,1990,3725,16,
96190,174,1,236,3726,
962016,0,182,1,217,
96213727,16,0,182,1,
96222670,3728,16,0,182,
96231,1756,3729,16,0,
9624174,1,93,3730,19,
9625639,1,93,3731,5,
962695,1,256,3732,16,
96270,637,1,1261,3733,
962816,0,637,1,509,
96293734,16,0,637,1,
96301515,3735,16,0,637,
96311,2021,728,1,1775,
96323736,16,0,637,1,
96332029,735,1,2030,741,
96341,2031,746,1,2032,
9635751,1,2033,756,1,
9636277,3737,16,0,637,
96371,2035,762,1,2037,
9638767,1,2039,772,1,
963932,3738,16,0,637,
96401,2041,778,1,2293,
96413739,16,0,637,1,
96422043,784,1,2045,789,
96431,41,3740,16,0,
9644637,1,1297,3741,16,
96450,637,1,43,3742,
964616,0,637,1,1803,
9647797,1,1804,3743,16,
96480,637,1,299,3744,
964916,0,637,1,52,
96503745,16,0,637,1,
96512318,3746,16,0,637,
96521,62,3747,16,0,
9653637,1,2075,3748,16,
96540,637,1,1574,809,
96551,71,3749,16,0,
9656637,1,76,3750,16,
96570,637,1,1834,3751,
965816,0,637,1,2337,
96593752,16,0,637,1,
966079,3753,16,0,637,
96611,1335,3754,16,0,
9662637,1,322,3755,16,
96630,637,1,85,3756,
966416,0,637,1,89,
96653757,16,0,637,1,
9666346,3758,16,0,637,
96671,2105,824,1,2106,
96683759,16,0,637,1,
966997,3760,16,0,637,
96701,1860,831,1,2364,
9671837,1,102,3761,16,
96720,637,1,112,3762,
967316,0,637,1,1117,
96743763,16,0,637,1,
96751873,845,1,1876,3764,
967616,0,637,1,124,
96773765,16,0,637,1,
96782136,852,1,381,3766,
967916,0,637,1,525,
96803767,16,0,637,1,
9681137,3768,16,0,637,
96821,1901,3769,16,0,
9683637,1,1153,3770,16,
96840,637,1,151,3771,
968516,0,637,1,1407,
96863772,16,0,637,1,
96871659,3773,16,0,637,
96881,2413,3774,16,0,
9689637,1,406,3775,16,
96900,637,1,1371,3776,
969116,0,637,1,166,
96923777,16,0,637,1,
96931622,3778,16,0,637,
96941,1931,870,1,1933,
96953779,16,0,637,1,
9696431,3780,16,0,637,
96971,1585,3781,16,0,
9698637,1,182,3782,16,
96990,637,1,1189,3783,
970016,0,637,1,1443,
97013784,16,0,637,1,
97021695,3785,16,0,637,
97031,2198,3786,16,0,
9704637,1,447,3787,16,
97050,637,1,2458,885,
97061,2459,891,1,1958,
97073788,16,0,637,1,
97082462,898,1,1657,903,
97091,2464,908,1,199,
97103789,16,0,637,1,
9711459,3790,16,0,637,
97121,462,3791,16,0,
9713637,1,217,3792,16,
97140,637,1,2227,917,
97151,1225,3793,16,0,
9716637,1,1479,3794,16,
97170,637,1,1731,3795,
971816,0,637,1,1989,
9719925,1,1990,3796,16,
97200,637,1,236,3797,
972116,0,637,1,2670,
97223798,16,0,637,1,
97231756,3799,16,0,637,
97241,94,3800,19,636,
97251,94,3801,5,95,
97261,256,3802,16,0,
9727634,1,1261,3803,16,
97280,634,1,509,3804,
972916,0,634,1,1515,
97303805,16,0,634,1,
97312021,728,1,1775,3806,
973216,0,634,1,2029,
9620735,1,2030,741,1, 9733735,1,2030,741,1,
96212031,746,1,2032,751, 97342031,746,1,2032,751,
96221,2033,756,1,277, 97351,2033,756,1,277,
96233737,16,0,637,1, 97363807,16,0,634,1,
96242035,762,1,2037,767, 97372035,762,1,2037,767,
96251,2039,772,1,32, 97381,2039,772,1,32,
96263738,16,0,637,1, 97393808,16,0,634,1,
96272041,778,1,2293,3739, 97402041,778,1,2293,3809,
962816,0,637,1,2043, 974116,0,634,1,2043,
9629784,1,2045,789,1, 9742784,1,2045,789,1,
963041,3740,16,0,637, 974341,3810,16,0,634,
96311,1297,3741,16,0, 97441,1297,3811,16,0,
9632637,1,43,3742,16, 9745634,1,43,3812,16,
96330,637,1,1803,797, 97460,634,1,1803,797,
96341,1804,3743,16,0, 97471,1804,3813,16,0,
9635637,1,299,3744,16, 9748634,1,299,3814,16,
96360,637,1,52,3745, 97490,634,1,52,3815,
963716,0,637,1,2318, 975016,0,634,1,2318,
96383746,16,0,637,1, 97513816,16,0,634,1,
963962,3747,16,0,637, 975262,3817,16,0,634,
96401,2075,3748,16,0, 97531,2075,3818,16,0,
9641637,1,1574,809,1, 9754634,1,1574,809,1,
964271,3749,16,0,637, 975571,3819,16,0,634,
96431,76,3750,16,0, 97561,76,3820,16,0,
9644637,1,1834,3751,16, 9757634,1,1834,3821,16,
96450,637,1,2337,3752, 97580,634,1,2337,3822,
964616,0,637,1,79, 975916,0,634,1,79,
96473753,16,0,637,1, 97603823,16,0,634,1,
96481335,3754,16,0,637, 97611335,3824,16,0,634,
96491,322,3755,16,0, 97621,322,3825,16,0,
9650637,1,85,3756,16, 9763634,1,85,3826,16,
96510,637,1,89,3757, 97640,634,1,89,3827,
965216,0,637,1,346, 976516,0,634,1,346,
96533758,16,0,637,1, 97663828,16,0,634,1,
96542105,824,1,2106,3759, 97672105,824,1,2106,3829,
965516,0,637,1,97, 976816,0,634,1,97,
96563760,16,0,637,1, 97693830,16,0,634,1,
96571860,831,1,2364,837, 97701860,831,1,2364,837,
96581,102,3761,16,0, 97711,102,3831,16,0,
9659637,1,112,3762,16, 9772634,1,112,3832,16,
96600,637,1,1117,3763, 97730,634,1,1117,3833,
966116,0,637,1,1873, 977416,0,634,1,1873,
9662845,1,1876,3764,16, 9775845,1,1876,3834,16,
96630,637,1,124,3765, 97760,634,1,124,3835,
966416,0,637,1,2136, 977716,0,634,1,2136,
9665852,1,381,3766,16, 9778852,1,381,3836,16,
96660,637,1,525,3767, 97790,634,1,525,3837,
966716,0,637,1,137, 978016,0,634,1,137,
96683768,16,0,637,1, 97813838,16,0,634,1,
96691901,3769,16,0,637, 97821901,3839,16,0,634,
96701,1153,3770,16,0, 97831,1153,3840,16,0,
9671637,1,151,3771,16, 9784634,1,151,3841,16,
96720,637,1,1407,3772, 97850,634,1,1407,3842,
967316,0,637,1,1659, 978616,0,634,1,1659,
96743773,16,0,637,1, 97873843,16,0,634,1,
96752413,3774,16,0,637, 97882413,3844,16,0,634,
96761,406,3775,16,0, 97891,406,3845,16,0,
9677637,1,1371,3776,16, 9790634,1,1371,3846,16,
96780,637,1,166,3777, 97910,634,1,166,3847,
967916,0,637,1,1622, 979216,0,634,1,1622,
96803778,16,0,637,1, 97933848,16,0,634,1,
96811931,870,1,1933,3779, 97941931,870,1,1933,3849,
968216,0,637,1,431, 979516,0,634,1,431,
96833780,16,0,637,1, 97963850,16,0,634,1,
96841585,3781,16,0,637, 97971585,3851,16,0,634,
96851,182,3782,16,0, 97981,182,3852,16,0,
9686637,1,1189,3783,16, 9799634,1,1189,3853,16,
96870,637,1,1443,3784, 98000,634,1,1443,3854,
968816,0,637,1,1695, 980116,0,634,1,1695,
96893785,16,0,637,1, 98023855,16,0,634,1,
96902198,3786,16,0,637, 98032198,3856,16,0,634,
96911,447,3787,16,0, 98041,447,3857,16,0,
9692637,1,2458,885,1, 9805634,1,2458,885,1,
96932459,891,1,1958,3788, 98062459,891,1,1958,3858,
969416,0,637,1,2462, 980716,0,634,1,2462,
9695898,1,1657,903,1, 9808898,1,1657,903,1,
96962464,908,1,199,3789, 98092464,908,1,199,3859,
969716,0,637,1,459, 981016,0,634,1,459,
96983790,16,0,637,1, 98113860,16,0,634,1,
9699462,3791,16,0,637, 9812462,3861,16,0,634,
97001,217,3792,16,0, 98131,217,3862,16,0,
9701637,1,2227,917,1, 9814634,1,2227,917,1,
97021225,3793,16,0,637, 98151225,3863,16,0,634,
97031,1479,3794,16,0, 98161,1479,3864,16,0,
9704637,1,1731,3795,16, 9817634,1,1731,3865,16,
97050,637,1,1989,925, 98180,634,1,1989,925,
97061,1990,3796,16,0, 98191,1990,3866,16,0,
9707637,1,236,3797,16, 9820634,1,236,3867,16,
97080,637,1,2670,3798, 98210,634,1,2670,3868,
970916,0,637,1,1756, 982216,0,634,1,1756,
97103799,16,0,637,1, 98233869,16,0,634,1,
971194,3800,19,636,1, 982495,3870,19,633,1,
971294,3801,5,95,1, 982595,3871,5,95,1,
9713256,3802,16,0,634, 9826256,3872,16,0,631,
97141,1261,3803,16,0, 98271,1261,3873,16,0,
9715634,1,509,3804,16, 9828631,1,509,3874,16,
97160,634,1,1515,3805, 98290,631,1,1515,3875,
971716,0,634,1,2021, 983016,0,631,1,2021,
9718728,1,1775,3806,16, 9831728,1,1775,3876,16,
97190,634,1,2029,735, 98320,631,1,2029,735,
97201,2030,741,1,2031, 98331,2030,741,1,2031,
9721746,1,2032,751,1, 9834746,1,2032,751,1,
97222033,756,1,277,3807, 98352033,756,1,277,3877,
972316,0,634,1,2035, 983616,0,631,1,2035,
9724762,1,2037,767,1, 9837762,1,2037,767,1,
97252039,772,1,32,3808, 98382039,772,1,32,3878,
972616,0,634,1,2041, 983916,0,631,1,2041,
9727778,1,2293,3809,16, 9840778,1,2293,3879,16,
97280,634,1,2043,784, 98410,631,1,2043,784,
97291,2045,789,1,41, 98421,2045,789,1,41,
97303810,16,0,634,1, 98433880,16,0,631,1,
97311297,3811,16,0,634, 98441297,3881,16,0,631,
97321,43,3812,16,0, 98451,43,3882,16,0,
9733634,1,1803,797,1, 9846631,1,1803,797,1,
97341804,3813,16,0,634, 98471804,3883,16,0,631,
97351,299,3814,16,0, 98481,299,3884,16,0,
9736634,1,52,3815,16, 9849631,1,52,3885,16,
97370,634,1,2318,3816, 98500,631,1,2318,3886,
973816,0,634,1,62, 985116,0,631,1,62,
97393817,16,0,634,1, 98523887,16,0,631,1,
97402075,3818,16,0,634, 98532075,3888,16,0,631,
97411,1574,809,1,71, 98541,1574,809,1,71,
97423819,16,0,634,1, 98553889,16,0,631,1,
974376,3820,16,0,634, 985676,3890,16,0,631,
97441,1834,3821,16,0, 98571,1834,3891,16,0,
9745634,1,2337,3822,16, 9858631,1,2337,3892,16,
97460,634,1,79,3823, 98590,631,1,79,3893,
974716,0,634,1,1335, 986016,0,631,1,1335,
97483824,16,0,634,1, 98613894,16,0,631,1,
9749322,3825,16,0,634, 9862322,3895,16,0,631,
97501,85,3826,16,0, 98631,85,3896,16,0,
9751634,1,89,3827,16, 9864631,1,89,3897,16,
97520,634,1,346,3828, 98650,631,1,346,3898,
975316,0,634,1,2105, 986616,0,631,1,2105,
9754824,1,2106,3829,16, 9867824,1,2106,3899,16,
97550,634,1,97,3830, 98680,631,1,97,3900,
975616,0,634,1,1860, 986916,0,631,1,1860,
9757831,1,2364,837,1, 9870831,1,2364,837,1,
9758102,3831,16,0,634, 9871102,3901,16,0,631,
97591,112,3832,16,0, 98721,112,3902,16,0,
9760634,1,1117,3833,16, 9873631,1,1117,3903,16,
97610,634,1,1873,845, 98740,631,1,1873,845,
97621,1876,3834,16,0, 98751,1876,3904,16,0,
9763634,1,124,3835,16, 9876631,1,124,3905,16,
97640,634,1,2136,852, 98770,631,1,2136,852,
97651,381,3836,16,0, 98781,381,3906,16,0,
9766634,1,525,3837,16, 9879631,1,525,3907,16,
97670,634,1,137,3838, 98800,631,1,137,3908,
976816,0,634,1,1901, 988116,0,631,1,1901,
97693839,16,0,634,1, 98823909,16,0,631,1,
97701153,3840,16,0,634, 98831153,3910,16,0,631,
97711,151,3841,16,0, 98841,151,3911,16,0,
9772634,1,1407,3842,16, 9885631,1,1407,3912,16,
97730,634,1,1659,3843, 98860,631,1,1659,3913,
977416,0,634,1,2413, 988716,0,631,1,2413,
97753844,16,0,634,1, 98883914,16,0,631,1,
9776406,3845,16,0,634, 9889406,3915,16,0,631,
97771,1371,3846,16,0, 98901,1371,3916,16,0,
9778634,1,166,3847,16, 9891631,1,166,3917,16,
97790,634,1,1622,3848, 98920,631,1,1622,3918,
978016,0,634,1,1931, 989316,0,631,1,1931,
9781870,1,1933,3849,16, 9894870,1,1933,3919,16,
97820,634,1,431,3850, 98950,631,1,431,3920,
978316,0,634,1,1585, 989616,0,631,1,1585,
97843851,16,0,634,1, 98973921,16,0,631,1,
9785182,3852,16,0,634, 9898182,3922,16,0,631,
97861,1189,3853,16,0, 98991,1189,3923,16,0,
9787634,1,1443,3854,16, 9900631,1,1443,3924,16,
97880,634,1,1695,3855, 99010,631,1,1695,3925,
978916,0,634,1,2198, 990216,0,631,1,2198,
97903856,16,0,634,1, 99033926,16,0,631,1,
9791447,3857,16,0,634, 9904447,3927,16,0,631,
97921,2458,885,1,2459, 99051,2458,885,1,2459,
9793891,1,1958,3858,16, 9906891,1,1958,3928,16,
97940,634,1,2462,898, 99070,631,1,2462,898,
97951,1657,903,1,2464, 99081,1657,903,1,2464,
9796908,1,199,3859,16, 9909908,1,199,3929,16,
97970,634,1,459,3860, 99100,631,1,459,3930,
979816,0,634,1,462, 991116,0,631,1,462,
97993861,16,0,634,1, 99123931,16,0,631,1,
9800217,3862,16,0,634, 9913217,3932,16,0,631,
98011,2227,917,1,1225, 99141,2227,917,1,1225,
98023863,16,0,634,1, 99153933,16,0,631,1,
98031479,3864,16,0,634, 99161479,3934,16,0,631,
98041,1731,3865,16,0, 99171,1731,3935,16,0,
9805634,1,1989,925,1, 9918631,1,1989,925,1,
98061990,3866,16,0,634, 99191990,3936,16,0,631,
98071,236,3867,16,0, 99201,236,3937,16,0,
9808634,1,2670,3868,16, 9921631,1,2670,3938,16,
98090,634,1,1756,3869, 99220,631,1,1756,3939,
981016,0,634,1,95, 992316,0,631,1,96,
98113870,19,633,1,95, 99243940,19,103,1,96,
98123871,5,95,1,256, 99253941,5,1,1,0,
98133872,16,0,631,1, 99263942,16,0,104,1,
98141261,3873,16,0,631, 992797,3943,19,240,1,
98151,509,3874,16,0, 992897,3944,5,1,1,
9816631,1,1515,3875,16, 99290,3945,16,0,238,
98170,631,1,2021,728, 99301,98,3946,19,649,
98181,1775,3876,16,0, 99311,98,3947,5,2,
9819631,1,2029,735,1, 99321,0,3948,16,0,
98202030,741,1,2031,746, 9933651,1,2707,3949,16,
98211,2032,751,1,2033, 99340,647,1,99,3950,
9822756,1,277,3877,16, 993519,154,1,99,3951,
98230,631,1,2035,762, 99365,2,1,0,3952,
98241,2037,767,1,2039, 993716,0,152,1,2707,
9825772,1,32,3878,16, 99383953,16,0,646,1,
98260,631,1,2041,778, 9939100,3954,19,580,1,
98271,2293,3879,16,0, 9940100,3955,5,2,1,
9828631,1,2043,784,1, 99410,3956,16,0,578,
98292045,789,1,41,3880, 99421,2707,3957,16,0,
983016,0,631,1,1297, 9943644,1,101,3958,19,
98313881,16,0,631,1, 9944166,1,101,3959,5,
983243,3882,16,0,631, 99454,1,0,3960,16,
98331,1803,797,1,1804, 99460,584,1,2707,3961,
98343883,16,0,631,1, 994716,0,584,1,2718,
9835299,3884,16,0,631, 99483962,16,0,164,1,
98361,52,3885,16,0, 99492648,3963,16,0,164,
9837631,1,2318,3886,16, 99501,102,3964,19,455,
98380,631,1,62,3887, 99511,102,3965,5,2,
983916,0,631,1,2075, 99521,2470,3966,16,0,
98403888,16,0,631,1, 9953453,1,2569,3967,16,
98411574,809,1,71,3889, 99540,563,1,103,3968,
984216,0,631,1,76, 995519,577,1,103,3969,
98433890,16,0,631,1, 99565,4,1,2470,3970,
98441834,3891,16,0,631, 995716,0,581,1,2526,
98451,2337,3892,16,0, 99583971,16,0,575,1,
9846631,1,79,3893,16, 99592569,3972,16,0,581,
98470,631,1,1335,3894, 99601,2606,3973,16,0,
984816,0,631,1,322, 9961575,1,104,3974,19,
98493895,16,0,631,1, 9962481,1,104,3975,5,
985085,3896,16,0,631, 99634,1,2470,3976,16,
98511,89,3897,16,0, 99640,479,1,2526,3977,
9852631,1,346,3898,16, 996516,0,650,1,2569,
98530,631,1,2105,824, 99663978,16,0,479,1,
98541,2106,3899,16,0, 99672606,3979,16,0,650,
9855631,1,97,3900,16, 99681,105,3980,19,141,
98560,631,1,1860,831, 99691,105,3981,5,3,
98571,2364,837,1,102, 99701,2511,3982,16,0,
98583901,16,0,631,1, 9971607,1,2654,3983,16,
9859112,3902,16,0,631, 99720,669,1,10,3984,
98601,1117,3903,16,0, 997316,0,139,1,106,
9861631,1,1873,845,1, 99743985,19,157,1,106,
98621876,3904,16,0,631, 99753986,5,17,1,0,
98631,124,3905,16,0, 99763987,16,0,198,1,
9864631,1,2136,852,1, 99772075,3988,16,0,658,
9865381,3906,16,0,631, 99781,2337,3989,16,0,
98661,525,3907,16,0, 9979658,1,2413,3990,16,
9867631,1,137,3908,16, 99800,658,1,10,3991,
98680,631,1,1901,3909, 998116,0,344,1,2511,
986916,0,631,1,1153, 99823992,16,0,344,1,
98703910,16,0,631,1, 99831901,3993,16,0,658,
9871151,3911,16,0,631, 99841,2198,3994,16,0,
98721,1407,3912,16,0, 9985658,1,2707,3995,16,
9873631,1,1659,3913,16, 99860,198,1,21,3996,
98740,631,1,2413,3914, 998716,0,155,1,2106,
987516,0,631,1,406, 99883997,16,0,658,1,
98763915,16,0,631,1, 99892654,3998,16,0,344,
98771371,3916,16,0,631, 99901,1804,3999,16,0,
98781,166,3917,16,0, 9991658,1,1990,4000,16,
9879631,1,1622,3918,16, 99920,658,1,32,4001,
98800,631,1,1931,870, 999316,0,658,1,1958,
98811,1933,3919,16,0, 99944002,16,0,658,1,
9882631,1,431,3920,16, 99951775,4003,16,0,658,
98830,631,1,1585,3921, 99961,107,4004,19,130,
988416,0,631,1,182, 99971,107,4005,5,18,
98853922,16,0,631,1, 99981,0,4006,16,0,
98861189,3923,16,0,631, 9999128,1,2075,4007,16,
98871,1443,3924,16,0, 100000,137,1,2337,4008,
9888631,1,1695,3925,16, 1000116,0,137,1,2413,
98890,631,1,2198,3926, 100024009,16,0,137,1,
989016,0,631,1,447, 1000310,4010,16,0,137,
98913927,16,0,631,1, 100041,2511,4011,16,0,
98922458,885,1,2459,891, 10005137,1,2198,4012,16,
98931,1958,3928,16,0, 100060,137,1,1901,4013,
9894631,1,2462,898,1, 1000716,0,137,1,52,
98951657,903,1,2464,908, 100084014,16,0,203,1,
98961,199,3929,16,0, 100092707,4015,16,0,128,
9897631,1,459,3930,16, 100101,21,4016,16,0,
98980,631,1,462,3931, 10011137,1,2106,4017,16,
989916,0,631,1,217, 100120,137,1,2654,4018,
99003932,16,0,631,1, 1001316,0,137,1,1804,
99012227,917,1,1225,3933, 100144019,16,0,137,1,
990216,0,631,1,1479, 100151990,4020,16,0,137,
99033934,16,0,631,1, 100161,32,4021,16,0,
99041731,3935,16,0,631, 10017137,1,1958,4022,16,
99051,1989,925,1,1990, 100180,137,1,1775,4023,
99063936,16,0,631,1, 1001916,0,137,1,108,
9907236,3937,16,0,631, 100204024,19,446,1,108,
99081,2670,3938,16,0, 100214025,5,4,1,2470,
9909631,1,1756,3939,16, 100224026,16,0,444,1,
99100,631,1,96,3940, 100232526,4027,16,0,444,
991119,103,1,96,3941, 100241,2569,4028,16,0,
99125,1,1,0,3942, 10025444,1,2606,4029,16,
991316,0,104,1,97, 100260,444,1,109,4030,
99143943,19,240,1,97, 1002719,668,1,109,4031,
99153944,5,1,1,0, 100285,4,1,2470,4032,
99163945,16,0,238,1, 1002916,0,666,1,2526,
991798,3946,19,649,1, 100304033,16,0,666,1,
991898,3947,5,2,1, 100312569,4034,16,0,666,
99190,3948,16,0,651, 100321,2606,4035,16,0,
99201,2707,3949,16,0, 10033666,1,110,4036,19,
9921647,1,99,3950,19, 10034343,1,110,4037,5,
9922154,1,99,3951,5, 1003515,1,2665,4038,16,
99232,1,0,3952,16, 100360,671,1,2075,4039,
99240,152,1,2707,3953, 1003716,0,516,1,2337,
992516,0,646,1,100, 100384040,16,0,516,1,
99263954,19,580,1,100, 100392507,4041,16,0,443,
99273955,5,2,1,0, 100401,2413,4042,16,0,
99283956,16,0,578,1, 10041516,1,1901,4043,16,
99292707,3957,16,0,644, 100420,516,1,2198,4044,
99301,101,3958,19,166, 1004316,0,516,1,2106,
99311,101,3959,5,4, 100444045,16,0,516,1,
99321,0,3960,16,0, 100452522,4046,16,0,452,
9933584,1,2707,3961,16, 100461,1804,4047,16,0,
99340,584,1,2718,3962, 10047516,1,1990,4048,16,
993516,0,164,1,2648, 100480,516,1,31,4049,
99363963,16,0,164,1, 1004916,0,341,1,32,
9937102,3964,19,455,1, 100504050,16,0,516,1,
9938102,3965,5,2,1, 100511958,4051,16,0,516,
99392470,3966,16,0,453, 100521,1775,4052,16,0,
99401,2569,3967,16,0, 10053516,1,111,4053,19,
9941563,1,103,3968,19, 10054311,1,111,4054,5,
9942577,1,103,3969,5, 100551,1,32,4055,16,
99434,1,2470,3970,16, 100560,309,1,112,4056,
99440,581,1,2526,3971, 1005719,270,1,112,4057,
994516,0,575,1,2569, 100585,11,1,2075,4058,
99463972,16,0,581,1, 1005916,0,592,1,2337,
99472606,3973,16,0,575, 100604059,16,0,274,1,
99481,104,3974,19,481, 100612413,4060,16,0,461,
99491,104,3975,5,4, 100621,1901,4061,16,0,
99501,2470,3976,16,0, 10063399,1,2198,4062,16,
9951479,1,2526,3977,16, 100640,327,1,2106,4063,
99520,650,1,2569,3978, 1006516,0,623,1,1804,
995316,0,479,1,2606, 100664064,16,0,293,1,
99543979,16,0,650,1, 100671990,4065,16,0,504,
9955105,3980,19,141,1, 100681,32,4066,16,0,
9956105,3981,5,3,1, 10069337,1,1958,4067,16,
99572511,3982,16,0,607, 100700,464,1,1775,4068,
99581,2654,3983,16,0, 1007116,0,268,1,113,
9959669,1,10,3984,16, 100724069,19,598,1,113,
99600,139,1,106,3985, 100734070,5,11,1,2075,
996119,157,1,106,3986, 100744071,16,0,596,1,
99625,17,1,0,3987, 100752337,4072,16,0,596,
996316,0,198,1,2075, 100761,2413,4073,16,0,
99643988,16,0,658,1, 10077596,1,1901,4074,16,
99652337,3989,16,0,658, 100780,596,1,2198,4075,
99661,2413,3990,16,0, 1007916,0,596,1,2106,
9967658,1,10,3991,16, 100804076,16,0,596,1,
99680,344,1,2511,3992, 100811804,4077,16,0,596,
996916,0,344,1,1901, 100821,1990,4078,16,0,
99703993,16,0,658,1, 10083596,1,32,4079,16,
99712198,3994,16,0,658, 100840,596,1,1958,4080,
99721,2707,3995,16,0, 1008516,0,596,1,1775,
9973198,1,21,3996,16, 100864081,16,0,596,1,
99740,155,1,2106,3997, 10087114,4082,19,654,1,
997516,0,658,1,2654, 10088114,4083,5,11,1,
99763998,16,0,344,1, 100892075,4084,16,0,652,
99771804,3999,16,0,658, 100901,2337,4085,16,0,
99781,1990,4000,16,0, 10091652,1,2413,4086,16,
9979658,1,32,4001,16, 100920,652,1,1901,4087,
99800,658,1,1958,4002, 1009316,0,652,1,2198,
998116,0,658,1,1775, 100944088,16,0,652,1,
99824003,16,0,658,1, 100952106,4089,16,0,652,
9983107,4004,19,130,1, 100961,1804,4090,16,0,
9984107,4005,5,18,1, 10097652,1,1990,4091,16,
99850,4006,16,0,128, 100980,652,1,32,4092,
99861,2075,4007,16,0, 1009916,0,652,1,1958,
9987137,1,2337,4008,16, 101004093,16,0,652,1,
99880,137,1,2413,4009, 101011775,4094,16,0,652,
998916,0,137,1,10, 101021,115,4095,19,170,
99904010,16,0,137,1, 101031,115,4096,5,31,
99912511,4011,16,0,137, 101041,1901,4097,16,0,
99921,2198,4012,16,0, 10105657,1,1479,4098,16,
9993137,1,1901,4013,16, 101060,561,1,2075,4099,
99940,137,1,52,4014, 1010716,0,657,1,1695,
999516,0,203,1,2707, 101084100,16,0,199,1,
99964015,16,0,128,1, 101091756,4101,16,0,197,
999721,4016,16,0,137, 101101,2413,4102,16,0,
99981,2106,4017,16,0, 10111657,1,2198,4103,16,
9999137,1,2654,4018,16, 101120,657,1,1876,4104,
100000,137,1,1804,4019, 1011316,0,673,1,1659,
1000116,0,137,1,1990, 101144105,16,0,197,1,
100024020,16,0,137,1, 101151443,4106,16,0,532,
1000332,4021,16,0,137, 101161,1117,4107,16,0,
100041,1958,4022,16,0, 10117168,1,1990,4108,16,
10005137,1,1775,4023,16, 101180,657,1,1189,4109,
100060,137,1,108,4024, 1011916,0,250,1,1775,
1000719,446,1,108,4025, 101204110,16,0,657,1,
100085,4,1,2470,4026, 1012132,4111,16,0,657,
1000916,0,444,1,2526, 101221,2106,4112,16,0,
100104027,16,0,444,1, 10123657,1,1515,4113,16,
100112569,4028,16,0,444, 101240,594,1,2337,4114,
100121,2606,4029,16,0, 1012516,0,657,1,52,
10013444,1,109,4030,19, 101264115,16,0,608,1,
10014668,1,109,4031,5, 101271804,4116,16,0,657,
100154,1,2470,4032,16, 101281,1261,4117,16,0,
100160,666,1,2526,4033, 10129305,1,1153,4118,16,
1001716,0,666,1,2569, 101300,257,1,1225,4119,
100184034,16,0,666,1, 1013116,0,283,1,1335,
100192606,4035,16,0,666, 101324120,16,0,459,1,
100201,110,4036,19,343, 101331933,4121,16,0,564,
100211,110,4037,5,15, 101341,1834,4122,16,0,
100221,2665,4038,16,0, 10135321,1,1297,4123,16,
10023671,1,2075,4039,16, 101360,331,1,1407,4124,
100240,516,1,2337,4040, 1013716,0,582,1,2318,
1002516,0,516,1,2507, 101384125,16,0,197,1,
100264041,16,0,443,1, 101391958,4126,16,0,657,
100272413,4042,16,0,516, 101401,1371,4127,16,0,
100281,1901,4043,16,0, 10141449,1,116,4128,19,
10029516,1,2198,4044,16, 10142541,1,116,4129,5,
100300,516,1,2106,4045, 1014311,1,2075,4130,16,
1003116,0,516,1,2522, 101440,539,1,2337,4131,
100324046,16,0,452,1, 1014516,0,539,1,2413,
100331804,4047,16,0,516, 101464132,16,0,539,1,
100341,1990,4048,16,0, 101471901,4133,16,0,539,
10035516,1,31,4049,16, 101481,2198,4134,16,0,
100360,341,1,32,4050, 10149539,1,2106,4135,16,
1003716,0,516,1,1958, 101500,539,1,1804,4136,
100384051,16,0,516,1, 1015116,0,539,1,1990,
100391775,4052,16,0,516, 101524137,16,0,539,1,
100401,111,4053,19,311, 1015332,4138,16,0,539,
100411,111,4054,5,1, 101541,1958,4139,16,0,
100421,32,4055,16,0, 10155539,1,1775,4140,16,
10043309,1,112,4056,19, 101560,539,1,117,4141,
10044270,1,112,4057,5, 1015719,537,1,117,4142,
1004511,1,2075,4058,16, 101585,11,1,2075,4143,
100460,592,1,2337,4059, 1015916,0,535,1,2337,
1004716,0,274,1,2413, 101604144,16,0,535,1,
100484060,16,0,461,1, 101612413,4145,16,0,535,
100491901,4061,16,0,399, 101621,1901,4146,16,0,
100501,2198,4062,16,0, 10163535,1,2198,4147,16,
10051327,1,2106,4063,16, 101640,535,1,2106,4148,
100520,623,1,1804,4064, 1016516,0,535,1,1804,
1005316,0,293,1,1990, 101664149,16,0,535,1,
100544065,16,0,504,1, 101671990,4150,16,0,535,
1005532,4066,16,0,337, 101681,32,4151,16,0,
100561,1958,4067,16,0, 10169535,1,1958,4152,16,
10057464,1,1775,4068,16, 101700,535,1,1775,4153,
100580,268,1,113,4069, 1017116,0,535,1,118,
1005919,598,1,113,4070, 101724154,19,590,1,118,
100605,11,1,2075,4071, 101734155,5,11,1,2075,
1006116,0,596,1,2337, 101744156,16,0,588,1,
100624072,16,0,596,1, 101752337,4157,16,0,588,
100632413,4073,16,0,596, 101761,2413,4158,16,0,
100641,1901,4074,16,0, 10177588,1,1901,4159,16,
10065596,1,2198,4075,16, 101780,588,1,2198,4160,
100660,596,1,2106,4076, 1017916,0,588,1,2106,
1006716,0,596,1,1804, 101804161,16,0,588,1,
100684077,16,0,596,1, 101811804,4162,16,0,588,
100691990,4078,16,0,596, 101821,1990,4163,16,0,
100701,32,4079,16,0, 10183588,1,32,4164,16,
10071596,1,1958,4080,16, 101840,588,1,1958,4165,
100720,596,1,1775,4081, 1018516,0,588,1,1775,
1007316,0,596,1,114, 101864166,16,0,588,1,
100744082,19,654,1,114, 10187119,4167,19,531,1,
100754083,5,11,1,2075, 10188119,4168,5,11,1,
100764084,16,0,652,1, 101892075,4169,16,0,529,
100772337,4085,16,0,652, 101901,2337,4170,16,0,
100781,2413,4086,16,0, 10191529,1,2413,4171,16,
10079652,1,1901,4087,16, 101920,529,1,1901,4172,
100800,652,1,2198,4088, 1019316,0,529,1,2198,
1008116,0,652,1,2106, 101944173,16,0,529,1,
100824089,16,0,652,1, 101952106,4174,16,0,529,
100831804,4090,16,0,652, 101961,1804,4175,16,0,
100841,1990,4091,16,0, 10197529,1,1990,4176,16,
10085652,1,32,4092,16, 101980,529,1,32,4177,
100860,652,1,1958,4093, 1019916,0,529,1,1958,
1008716,0,652,1,1775, 102004178,16,0,529,1,
100884094,16,0,652,1, 102011775,4179,16,0,529,
10089115,4095,19,170,1, 102021,120,4180,19,528,
10090115,4096,5,31,1, 102031,120,4181,5,11,
100911901,4097,16,0,657, 102041,2075,4182,16,0,
100921,1479,4098,16,0, 10205526,1,2337,4183,16,
10093561,1,2075,4099,16, 102060,526,1,2413,4184,
100940,657,1,1695,4100, 1020716,0,526,1,1901,
1009516,0,199,1,1756, 102084185,16,0,526,1,
100964101,16,0,197,1, 102092198,4186,16,0,526,
100972413,4102,16,0,657, 102101,2106,4187,16,0,
100981,2198,4103,16,0, 10211526,1,1804,4188,16,
10099657,1,1876,4104,16, 102120,526,1,1990,4189,
101000,673,1,1659,4105, 1021316,0,526,1,32,
1010116,0,197,1,1443, 102144190,16,0,526,1,
101024106,16,0,532,1, 102151958,4191,16,0,526,
101031117,4107,16,0,168, 102161,1775,4192,16,0,
101041,1990,4108,16,0, 10217526,1,121,4193,19,
10105657,1,1189,4109,16, 10218525,1,121,4194,5,
101060,250,1,1775,4110, 1021911,1,2075,4195,16,
1010716,0,657,1,32, 102200,523,1,2337,4196,
101084111,16,0,657,1, 1022116,0,523,1,2413,
101092106,4112,16,0,657, 102224197,16,0,523,1,
101101,1515,4113,16,0, 102231901,4198,16,0,523,
10111594,1,2337,4114,16, 102241,2198,4199,16,0,
101120,657,1,52,4115, 10225523,1,2106,4200,16,
1011316,0,608,1,1804, 102260,523,1,1804,4201,
101144116,16,0,657,1, 1022716,0,523,1,1990,
101151261,4117,16,0,305, 102284202,16,0,523,1,
101161,1153,4118,16,0, 1022932,4203,16,0,523,
10117257,1,1225,4119,16, 102301,1958,4204,16,0,
101180,283,1,1335,4120, 10231523,1,1775,4205,16,
1011916,0,459,1,1933, 102320,523,1,122,4206,
101204121,16,0,564,1, 1023319,522,1,122,4207,
101211834,4122,16,0,321, 102345,11,1,2075,4208,
101221,1297,4123,16,0, 1023516,0,520,1,2337,
10123331,1,1407,4124,16, 102364209,16,0,520,1,
101240,582,1,2318,4125, 102372413,4210,16,0,520,
1012516,0,197,1,1958, 102381,1901,4211,16,0,
101264126,16,0,657,1, 10239520,1,2198,4212,16,
101271371,4127,16,0,449, 102400,520,1,2106,4213,
101281,116,4128,19,541, 1024116,0,520,1,1804,
101291,116,4129,5,11, 102424214,16,0,520,1,
101301,2075,4130,16,0, 102431990,4215,16,0,520,
10131539,1,2337,4131,16, 102441,32,4216,16,0,
101320,539,1,2413,4132, 10245520,1,1958,4217,16,
1013316,0,539,1,1901, 102460,520,1,1775,4218,
101344133,16,0,539,1, 1024716,0,520,1,123,
101352198,4134,16,0,539, 102484219,19,519,1,123,
101361,2106,4135,16,0, 102494220,5,11,1,2075,
10137539,1,1804,4136,16, 102504221,16,0,517,1,
101380,539,1,1990,4137, 102512337,4222,16,0,517,
1013916,0,539,1,32, 102521,2413,4223,16,0,
101404138,16,0,539,1, 10253517,1,1901,4224,16,
101411958,4139,16,0,539, 102540,517,1,2198,4225,
101421,1775,4140,16,0, 1025516,0,517,1,2106,
10143539,1,117,4141,19, 102564226,16,0,517,1,
10144537,1,117,4142,5, 102571804,4227,16,0,517,
1014511,1,2075,4143,16, 102581,1990,4228,16,0,
101460,535,1,2337,4144, 10259517,1,32,4229,16,
1014716,0,535,1,2413, 102600,517,1,1958,4230,
101484145,16,0,535,1, 1026116,0,517,1,1775,
101491901,4146,16,0,535, 102624231,16,0,517,1,
101501,2198,4147,16,0, 10263124,4232,19,147,1,
10151535,1,2106,4148,16, 10264124,4233,5,3,1,
101520,535,1,1804,4149, 102651756,4234,16,0,292,
1015316,0,535,1,1990, 102661,2318,4235,16,0,
101544150,16,0,535,1, 10267304,1,1659,4236,16,
1015532,4151,16,0,535, 102680,145,1,125,4237,
101561,1958,4152,16,0, 1026919,558,1,125,4238,
10157535,1,1775,4153,16, 102705,68,1,1901,4239,
101580,535,1,118,4154, 1027116,0,556,1,1479,
1015919,590,1,118,4155, 102724240,16,0,556,1,
101605,11,1,2075,4156, 10273112,4241,16,0,556,
1016116,0,588,1,2337, 102741,2293,4242,16,0,
101624157,16,0,588,1, 10275556,1,1804,4243,16,
101632413,4158,16,0,588, 102760,556,1,431,4244,
101641,1901,4159,16,0, 1027716,0,556,1,1443,
10165588,1,2198,4160,16, 102784245,16,0,556,1,
101660,588,1,2106,4161, 102791756,4246,16,0,556,
1016716,0,588,1,1804, 102801,124,4247,16,0,
101684162,16,0,588,1, 10281556,1,525,4248,16,
101691990,4163,16,0,588, 102820,556,1,236,4249,
101701,32,4164,16,0, 1028316,0,556,1,346,
10171588,1,1958,4165,16, 102844250,16,0,556,1,
101720,588,1,1775,4166, 102851876,4251,16,0,556,
1017316,0,588,1,119, 102861,1659,4252,16,0,
101744167,19,531,1,119, 10287556,1,1225,4253,16,
101754168,5,11,1,2075, 102880,556,1,1117,4254,
101764169,16,0,529,1, 1028916,0,556,1,137,
101772337,4170,16,0,529, 102904255,16,0,556,1,
101781,2413,4171,16,0, 102912318,4256,16,0,556,
10179529,1,1901,4172,16, 102921,2670,4257,16,0,
101800,529,1,2198,4173, 10293556,1,1775,4258,16,
1018116,0,529,1,2106, 102940,556,1,32,4259,
101824174,16,0,529,1, 1029516,0,556,1,1407,
101831804,4175,16,0,529, 102964260,16,0,556,1,
101841,1990,4176,16,0, 10297256,4261,16,0,556,
10185529,1,32,4177,16, 102981,459,4262,16,0,
101860,529,1,1958,4178, 10299556,1,406,4263,16,
1018716,0,529,1,1775, 103000,556,1,41,4264,
101884179,16,0,529,1, 1030116,0,556,1,151,
10189120,4180,19,528,1, 103024265,16,0,556,1,
10190120,4181,5,11,1, 1030343,4266,16,0,556,
101912075,4182,16,0,526, 103041,1585,4267,16,0,
101921,2337,4183,16,0, 10305556,1,1990,4268,16,
10193526,1,2413,4184,16, 103060,556,1,2337,4269,
101940,526,1,1901,4185, 1030716,0,556,1,509,
1019516,0,526,1,2198, 103084270,16,0,556,1,
101964186,16,0,526,1, 1030952,4271,16,0,556,
101972106,4187,16,0,526, 103101,381,4272,16,0,
101981,1804,4188,16,0, 10311556,1,447,4273,16,
10199526,1,1990,4189,16, 103120,556,1,166,4274,
102000,526,1,32,4190, 1031316,0,556,1,462,
1020116,0,526,1,1958, 103144275,16,0,556,1,
102024191,16,0,526,1, 10315277,4276,16,0,556,
102031775,4192,16,0,526, 103161,1695,4277,16,0,
102041,121,4193,19,525, 10317556,1,62,4278,16,
102051,121,4194,5,11, 103180,603,1,1153,4279,
102061,2075,4195,16,0, 1031916,0,556,1,2106,
10207523,1,2337,4196,16, 103204280,16,0,556,1,
102080,523,1,2413,4197, 103211335,4281,16,0,556,
1020916,0,523,1,1901, 103221,71,4282,16,0,
102104198,16,0,523,1, 10323556,1,182,4283,16,
102112198,4199,16,0,523, 103240,556,1,76,4284,
102121,2106,4200,16,0, 1032516,0,556,1,79,
10213523,1,1804,4201,16, 103264285,16,0,556,1,
102140,523,1,1990,4202, 103271933,4286,16,0,556,
1021516,0,523,1,32, 103281,299,4287,16,0,
102164203,16,0,523,1, 10329556,1,85,4288,16,
102171958,4204,16,0,523, 103300,556,1,1515,4289,
102181,1775,4205,16,0, 1033116,0,556,1,2198,
10219523,1,122,4206,19, 103324290,16,0,556,1,
10220522,1,122,4207,5, 1033389,4291,16,0,556,
1022111,1,2075,4208,16, 103341,1834,4292,16,0,
102220,520,1,2337,4209, 10335556,1,1622,4293,16,
1022316,0,520,1,2413, 103360,556,1,2413,4294,
102244210,16,0,520,1, 1033716,0,556,1,2075,
102251901,4211,16,0,520, 103384295,16,0,556,1,
102261,2198,4212,16,0, 103391731,4296,16,0,556,
10227520,1,2106,4213,16, 103401,97,4297,16,0,
102280,520,1,1804,4214, 10341556,1,1297,4298,16,
1022916,0,520,1,1990, 103420,556,1,1189,4299,
102304215,16,0,520,1, 1034316,0,556,1,102,
1023132,4216,16,0,520, 103444300,16,0,556,1,
102321,1958,4217,16,0, 103451261,4301,16,0,556,
10233520,1,1775,4218,16, 103461,322,4302,16,0,
102340,520,1,123,4219, 10347556,1,1958,4303,16,
1023519,519,1,123,4220, 103480,556,1,199,4304,
102365,11,1,2075,4221, 1034916,0,556,1,1371,
1023716,0,517,1,2337, 103504305,16,0,556,1,
102384222,16,0,517,1, 10351217,4306,16,0,556,
102392413,4223,16,0,517, 103521,126,4307,19,618,
102401,1901,4224,16,0, 103531,126,4308,5,2,
10241517,1,2198,4225,16, 103541,459,4309,16,0,
102420,517,1,2106,4226, 10355616,1,41,4310,16,
1024316,0,517,1,1804, 103560,676,1,127,4311,
102444227,16,0,517,1, 1035719,622,1,127,4312,
102451990,4228,16,0,517, 103585,3,1,462,4313,
102461,32,4229,16,0, 1035916,0,620,1,459,
10247517,1,1958,4230,16, 103604314,16,0,643,1,
102480,517,1,1775,4231, 1036141,4315,16,0,643,
1024916,0,517,1,124, 103621,128,4316,19,4317,
102504232,19,147,1,124, 103634,36,69,0,120,
102514233,5,3,1,1756,
102524234,16,0,292,1,
102532318,4235,16,0,304,
102541,1659,4236,16,0,
10255145,1,125,4237,19,
10256558,1,125,4238,5,
1025768,1,1901,4239,16,
102580,556,1,1479,4240,
1025916,0,556,1,112,
102604241,16,0,556,1,
102612293,4242,16,0,556,
102621,1804,4243,16,0,
10263556,1,431,4244,16,
102640,556,1,1443,4245,
1026516,0,556,1,1756,
102664246,16,0,556,1,
10267124,4247,16,0,556,
102681,525,4248,16,0,
10269556,1,236,4249,16,
102700,556,1,346,4250,
1027116,0,556,1,1876,
102724251,16,0,556,1,
102731659,4252,16,0,556,
102741,1225,4253,16,0,
10275556,1,1117,4254,16,
102760,556,1,137,4255,
1027716,0,556,1,2318,
102784256,16,0,556,1,
102792670,4257,16,0,556,
102801,1775,4258,16,0,
10281556,1,32,4259,16,
102820,556,1,1407,4260,
1028316,0,556,1,256,
102844261,16,0,556,1,
10285459,4262,16,0,556,
102861,406,4263,16,0,
10287556,1,41,4264,16,
102880,556,1,151,4265,
1028916,0,556,1,43,
102904266,16,0,556,1,
102911585,4267,16,0,556,
102921,1990,4268,16,0,
10293556,1,2337,4269,16,
102940,556,1,509,4270,
1029516,0,556,1,52,
102964271,16,0,556,1,
10297381,4272,16,0,556,
102981,447,4273,16,0,
10299556,1,166,4274,16,
103000,556,1,462,4275,
1030116,0,556,1,277,
103024276,16,0,556,1,
103031695,4277,16,0,556,
103041,62,4278,16,0,
10305603,1,1153,4279,16,
103060,556,1,2106,4280,
1030716,0,556,1,1335,
103084281,16,0,556,1,
1030971,4282,16,0,556,
103101,182,4283,16,0,
10311556,1,76,4284,16,
103120,556,1,79,4285,
1031316,0,556,1,1933,
103144286,16,0,556,1,
10315299,4287,16,0,556,
103161,85,4288,16,0,
10317556,1,1515,4289,16,
103180,556,1,2198,4290,
1031916,0,556,1,89,
103204291,16,0,556,1,
103211834,4292,16,0,556,
103221,1622,4293,16,0,
10323556,1,2413,4294,16,
103240,556,1,2075,4295,
1032516,0,556,1,1731,
103264296,16,0,556,1,
1032797,4297,16,0,556,
103281,1297,4298,16,0,
10329556,1,1189,4299,16,
103300,556,1,102,4300,
1033116,0,556,1,1261,
103324301,16,0,556,1,
10333322,4302,16,0,556,
103341,1958,4303,16,0,
10335556,1,199,4304,16,
103360,556,1,1371,4305,
1033716,0,556,1,217,
103384306,16,0,556,1,
10339126,4307,19,618,1,
10340126,4308,5,2,1,
10341459,4309,16,0,616,
103421,41,4310,16,0,
10343676,1,127,4311,19,
10344622,1,127,4312,5,
103453,1,462,4313,16,
103460,620,1,459,4314,
1034716,0,643,1,41,
103484315,16,0,643,1,
10349128,4316,19,4317,4,
1035036,69,0,120,0,
10351112,0,114,0,101,
103520,115,0,115,0,
10353105,0,111,0,110,
103540,65,0,114,0,
10355103,0,117,0,109,
103560,101,0,110,0,
10357116,0,1,128,4312,
103581,129,4318,19,554,
103591,129,4319,5,68,
103601,1901,4320,16,0,
10361552,1,1479,4321,16,
103620,552,1,112,4322,
1036316,0,552,1,2293,
103644323,16,0,552,1,
103651804,4324,16,0,552,
103661,431,4325,16,0,
10367552,1,1443,4326,16,
103680,552,1,1756,4327,
1036916,0,552,1,124,
103704328,16,0,552,1,
10371525,4329,16,0,552,
103721,236,4330,16,0,
10373552,1,346,4331,16,
103740,552,1,1876,4332,
1037516,0,552,1,1659,
103764333,16,0,552,1,
103771225,4334,16,0,552,
103781,1117,4335,16,0,
10379552,1,137,4336,16,
103800,552,1,2318,4337,
1038116,0,552,1,2670,
103824338,16,0,552,1,
103831775,4339,16,0,552,
103841,32,4340,16,0,
10385552,1,1407,4341,16,
103860,552,1,256,4342,
1038716,0,552,1,459,
103884343,16,0,552,1,
10389406,4344,16,0,552,
103901,41,4345,16,0,
10391552,1,151,4346,16,
103920,552,1,43,4347,
1039316,0,552,1,1585,
103944348,16,0,552,1,
103951990,4349,16,0,552,
103961,2337,4350,16,0,
10397552,1,509,4351,16,
103980,552,1,52,4352,
1039916,0,552,1,381,
104004353,16,0,552,1,
10401447,4354,16,0,552,
104021,166,4355,16,0,
10403552,1,462,4356,16,
104040,552,1,277,4357,
1040516,0,552,1,1695,
104064358,16,0,552,1,
1040762,4359,16,0,604,
104081,1153,4360,16,0,
10409552,1,2106,4361,16,
104100,552,1,1335,4362,
1041116,0,552,1,71,
104124363,16,0,552,1,
10413182,4364,16,0,552,
104141,76,4365,16,0,
10415552,1,79,4366,16,
104160,552,1,1933,4367,
1041716,0,552,1,299,
104184368,16,0,552,1,
1041985,4369,16,0,552,
104201,1515,4370,16,0,
10421552,1,2198,4371,16,
104220,552,1,89,4372,
1042316,0,552,1,1834,
104244373,16,0,552,1,
104251622,4374,16,0,552,
104261,2413,4375,16,0,
10427552,1,2075,4376,16,
104280,552,1,1731,4377,
1042916,0,552,1,97,
104304378,16,0,552,1,
104311297,4379,16,0,552,
104321,1189,4380,16,0,
10433552,1,102,4381,16,
104340,552,1,1261,4382,
1043516,0,552,1,322,
104364383,16,0,552,1,
104371958,4384,16,0,552,
104381,199,4385,16,0,
10439552,1,1371,4386,16,
104400,552,1,217,4387,
1044116,0,552,1,130,
104424388,19,4389,4,28,
1044386,0,101,0,99,
104440,116,0,111,0,
10445114,0,67,0,111,
104460,110,0,115,0,
10447116,0,97,0,110,
104480,116,0,1,130,
104494319,1,131,4390,19,
104504391,4,32,82,0,
10451111,0,116,0,97,
104520,116,0,105,0,
10453111,0,110,0,67,
104540,111,0,110,0,
10455115,0,116,0,97,
104560,110,0,116,0,
104571,131,4319,1,132,
104584392,19,4393,4,24,
1045976,0,105,0,115,
104600,116,0,67,0,
10461111,0,110,0,115,
104620,116,0,97,0,
10463110,0,116,0,1,
10464132,4319,1,133,4394,
1046519,178,1,133,4395,
104665,67,1,1901,4396,
1046716,0,600,1,1479,
104684397,16,0,543,1,
10469112,4398,16,0,259,
104701,2293,4399,16,0,
10471282,1,1804,4400,16,
104720,600,1,431,4401,
1047316,0,595,1,1443,
104744402,16,0,474,1,
104751756,4403,16,0,683,
104761,124,4404,16,0,
10477267,1,525,4405,16,
104780,314,1,236,4406,
1047916,0,349,1,346,
104804407,16,0,506,1,
104811876,4408,16,0,326,
104821,1659,4409,16,0,
10483683,1,1225,4410,16,
104840,258,1,1117,4411,
1048516,0,229,1,137,
104864412,16,0,281,1,
104872318,4413,16,0,683,
104881,2670,4414,16,0,
10489606,1,1775,4415,16,
104900,600,1,32,4416,
1049116,0,600,1,1407,
104924417,16,0,497,1,
10493256,4418,16,0,403,
104941,459,4419,16,0,
10495176,1,406,4420,16,
104960,568,1,41,4421,
1049716,0,176,1,151,
104984422,16,0,291,1,
1049943,4423,16,0,645,
105001,1990,4424,16,0,
10501600,1,2337,4425,16,
105020,600,1,509,4426,
1050316,0,665,1,52,
105044427,16,0,610,1,
10505381,4428,16,0,560,
105061,447,4429,16,0,
10507314,1,166,4430,16,
105080,302,1,462,4431,
1050916,0,176,1,277,
105104432,16,0,447,1,
105111695,4433,16,0,279,
105121,1261,4434,16,0,
10513290,1,1153,4435,16,
105140,183,1,2106,4436,
1051516,0,600,1,1335,
105164437,16,0,334,1,
1051771,4438,16,0,213,
105181,182,4439,16,0,
10519314,1,76,4440,16,
105200,559,1,79,4441,
1052116,0,228,1,1933,
105224442,16,0,415,1,
10523299,4443,16,0,460,
105241,85,4444,16,0,
10525471,1,1515,4445,16,
105260,567,1,2198,4446,
1052716,0,600,1,89,
105284447,16,0,237,1,
105291834,4448,16,0,301,
105301,1622,4449,16,0,
10531664,1,2413,4450,16,
105320,600,1,2075,4451,
1053316,0,600,1,1731,
105344452,16,0,263,1,
1053597,4453,16,0,419,
105361,1297,4454,16,0,
10537336,1,1189,4455,16,
105380,227,1,102,4456,
1053916,0,248,1,1585,
105404457,16,0,675,1,
10541322,4458,16,0,472,
105421,1958,4459,16,0,
10543600,1,199,4460,16,
105440,325,1,1371,4461,
1054516,0,404,1,217,
105464462,16,0,333,1,
10547134,4463,19,4464,4,
1054836,67,0,111,0,
10549110,0,115,0,116,
105500,97,0,110,0,
10551116,0,69,0,120,
105520,112,0,114,0, 103640,112,0,114,0,
10553101,0,115,0,115, 10365101,0,115,0,115,
105540,105,0,111,0, 103660,105,0,111,0,
10555110,0,1,134,4395, 10367110,0,65,0,114,
105561,135,4465,19,4466, 103680,103,0,117,0,
105574,30,73,0,100, 10369109,0,101,0,110,
105580,101,0,110,0, 103700,116,0,1,128,
10559116,0,69,0,120, 103714312,1,129,4318,19,
105600,112,0,114,0, 10372554,1,129,4319,5,
10561101,0,115,0,115, 1037368,1,1901,4320,16,
105620,105,0,111,0, 103740,552,1,1479,4321,
10563110,0,1,135,4395, 1037516,0,552,1,112,
105641,136,4467,19,4468, 103764322,16,0,552,1,
105654,36,73,0,100, 103772293,4323,16,0,552,
105660,101,0,110,0, 103781,1804,4324,16,0,
10567116,0,68,0,111, 10379552,1,431,4325,16,
103800,552,1,1443,4326,
1038116,0,552,1,1756,
103824327,16,0,552,1,
10383124,4328,16,0,552,
103841,525,4329,16,0,
10385552,1,236,4330,16,
103860,552,1,346,4331,
1038716,0,552,1,1876,
103884332,16,0,552,1,
103891659,4333,16,0,552,
103901,1225,4334,16,0,
10391552,1,1117,4335,16,
103920,552,1,137,4336,
1039316,0,552,1,2318,
103944337,16,0,552,1,
103952670,4338,16,0,552,
103961,1775,4339,16,0,
10397552,1,32,4340,16,
103980,552,1,1407,4341,
1039916,0,552,1,256,
104004342,16,0,552,1,
10401459,4343,16,0,552,
104021,406,4344,16,0,
10403552,1,41,4345,16,
104040,552,1,151,4346,
1040516,0,552,1,43,
104064347,16,0,552,1,
104071585,4348,16,0,552,
104081,1990,4349,16,0,
10409552,1,2337,4350,16,
104100,552,1,509,4351,
1041116,0,552,1,52,
104124352,16,0,552,1,
10413381,4353,16,0,552,
104141,447,4354,16,0,
10415552,1,166,4355,16,
104160,552,1,462,4356,
1041716,0,552,1,277,
104184357,16,0,552,1,
104191695,4358,16,0,552,
104201,62,4359,16,0,
10421604,1,1153,4360,16,
104220,552,1,2106,4361,
1042316,0,552,1,1335,
104244362,16,0,552,1,
1042571,4363,16,0,552,
104261,182,4364,16,0,
10427552,1,76,4365,16,
104280,552,1,79,4366,
1042916,0,552,1,1933,
104304367,16,0,552,1,
10431299,4368,16,0,552,
104321,85,4369,16,0,
10433552,1,1515,4370,16,
104340,552,1,2198,4371,
1043516,0,552,1,89,
104364372,16,0,552,1,
104371834,4373,16,0,552,
104381,1622,4374,16,0,
10439552,1,2413,4375,16,
104400,552,1,2075,4376,
1044116,0,552,1,1731,
104424377,16,0,552,1,
1044397,4378,16,0,552,
104441,1297,4379,16,0,
10445552,1,1189,4380,16,
104460,552,1,102,4381,
1044716,0,552,1,1261,
104484382,16,0,552,1,
10449322,4383,16,0,552,
104501,1958,4384,16,0,
10451552,1,199,4385,16,
104520,552,1,1371,4386,
1045316,0,552,1,217,
104544387,16,0,552,1,
10455130,4388,19,4389,4,
1045628,86,0,101,0,
1045799,0,116,0,111,
104580,114,0,67,0,
10459111,0,110,0,115,
104600,116,0,97,0,
10461110,0,116,0,1,
10462130,4319,1,131,4390,
1046319,4391,4,32,82,
104640,111,0,116,0,
1046597,0,116,0,105,
104660,111,0,110,0,
1046767,0,111,0,110,
104680,115,0,116,0,
1046997,0,110,0,116,
104700,1,131,4319,1,
10471132,4392,19,4393,4,
1047224,76,0,105,0,
10473115,0,116,0,67,
104740,111,0,110,0,
10475115,0,116,0,97,
104760,110,0,116,0,
104771,132,4319,1,133,
104784394,19,178,1,133,
104794395,5,67,1,1901,
104804396,16,0,600,1,
104811479,4397,16,0,543,
104821,112,4398,16,0,
10483259,1,2293,4399,16,
104840,282,1,1804,4400,
1048516,0,600,1,431,
104864401,16,0,595,1,
104871443,4402,16,0,474,
104881,1756,4403,16,0,
10489683,1,124,4404,16,
104900,267,1,525,4405,
1049116,0,314,1,236,
104924406,16,0,349,1,
10493346,4407,16,0,506,
104941,1876,4408,16,0,
10495326,1,1659,4409,16,
104960,683,1,1225,4410,
1049716,0,258,1,1117,
104984411,16,0,229,1,
10499137,4412,16,0,281,
105001,2318,4413,16,0,
10501683,1,2670,4414,16,
105020,606,1,1775,4415,
1050316,0,600,1,32,
105044416,16,0,600,1,
105051407,4417,16,0,497,
105061,256,4418,16,0,
10507403,1,459,4419,16,
105080,176,1,406,4420,
1050916,0,568,1,41,
105104421,16,0,176,1,
10511151,4422,16,0,291,
105121,43,4423,16,0,
10513645,1,1990,4424,16,
105140,600,1,2337,4425,
1051516,0,600,1,509,
105164426,16,0,665,1,
1051752,4427,16,0,610,
105181,381,4428,16,0,
10519560,1,447,4429,16,
105200,314,1,166,4430,
1052116,0,302,1,462,
105224431,16,0,176,1,
10523277,4432,16,0,447,
105241,1695,4433,16,0,
10525279,1,1261,4434,16,
105260,290,1,1153,4435,
1052716,0,183,1,2106,
105284436,16,0,600,1,
105291335,4437,16,0,334,
105301,71,4438,16,0,
10531213,1,182,4439,16,
105320,314,1,76,4440,
1053316,0,559,1,79,
105344441,16,0,228,1,
105351933,4442,16,0,415,
105361,299,4443,16,0,
10537460,1,85,4444,16,
105380,471,1,1515,4445,
1053916,0,567,1,2198,
105404446,16,0,600,1,
1054189,4447,16,0,237,
105421,1834,4448,16,0,
10543301,1,1622,4449,16,
105440,664,1,2413,4450,
1054516,0,600,1,2075,
105464451,16,0,600,1,
105471731,4452,16,0,263,
105481,97,4453,16,0,
10549419,1,1297,4454,16,
105500,336,1,1189,4455,
1055116,0,227,1,102,
105524456,16,0,248,1,
105531585,4457,16,0,675,
105541,322,4458,16,0,
10555472,1,1958,4459,16,
105560,600,1,199,4460,
1055716,0,325,1,1371,
105584461,16,0,404,1,
10559217,4462,16,0,333,
105601,134,4463,19,4464,
105614,36,67,0,111,
105620,110,0,115,0,
10563116,0,97,0,110,
105680,116,0,69,0, 105640,116,0,69,0,
10569120,0,112,0,114, 10565120,0,112,0,114,
105700,101,0,115,0, 105660,101,0,115,0,
10571115,0,105,0,111, 10567115,0,105,0,111,
105720,110,0,1,136, 105680,110,0,1,134,
105734395,1,137,4469,19, 105694395,1,135,4465,19,
105744470,4,44,70,0, 105704466,4,30,73,0,
10575117,0,110,0,99, 10571100,0,101,0,110,
105760,116,0,105,0, 105720,116,0,69,0,
10577111,0,110,0,67, 10573120,0,112,0,114,
105780,97,0,108,0, 105740,101,0,115,0,
10579108,0,69,0,120, 10575115,0,105,0,111,
105800,112,0,114,0, 105760,110,0,1,135,
10581101,0,115,0,115, 105774395,1,136,4467,19,
105820,105,0,111,0, 105784468,4,36,73,0,
10583110,0,1,137,4395, 10579100,0,101,0,110,
105841,138,4471,19,4472, 105800,116,0,68,0,
105854,32,66,0,105, 10581111,0,116,0,69,
105860,110,0,97,0,
10587114,0,121,0,69,
105880,120,0,112,0,
10589114,0,101,0,115,
105900,115,0,105,0,
10591111,0,110,0,1,
10592138,4395,1,139,4473,
1059319,4474,4,30,85,
105940,110,0,97,0,
10595114,0,121,0,69,
105960,120,0,112,0, 105820,120,0,112,0,
10597114,0,101,0,115, 10583114,0,101,0,115,
105980,115,0,105,0, 105840,115,0,105,0,
10599111,0,110,0,1, 10585111,0,110,0,1,
10600139,4395,1,140,4475, 10586136,4395,1,137,4469,
1060119,4476,4,36,84, 1058719,4470,4,44,70,
106020,121,0,112,0, 105880,117,0,110,0,
10603101,0,99,0,97, 1058999,0,116,0,105,
106040,115,0,116,0, 105900,111,0,110,0,
1059167,0,97,0,108,
105920,108,0,69,0,
10593120,0,112,0,114,
105940,101,0,115,0,
10595115,0,105,0,111,
105960,110,0,1,137,
105974395,1,138,4471,19,
105984472,4,32,66,0,
10599105,0,110,0,97,
106000,114,0,121,0,
1060569,0,120,0,112, 1060169,0,120,0,112,
106060,114,0,101,0, 106020,114,0,101,0,
10607115,0,115,0,105, 10603115,0,115,0,105,
106080,111,0,110,0, 106040,111,0,110,0,
106091,140,4395,1,141, 106051,138,4395,1,139,
106104477,19,4478,4,42, 106064473,19,4474,4,30,
1061180,0,97,0,114, 1060785,0,110,0,97,
106120,101,0,110,0, 106080,114,0,121,0,
10613116,0,104,0,101, 1060969,0,120,0,112,
106140,115,0,105,0,
10615115,0,69,0,120,
106160,112,0,114,0,
10617101,0,115,0,115,
106180,105,0,111,0,
10619110,0,1,141,4395,
106201,142,4479,19,4480,
106214,56,73,0,110,
106220,99,0,114,0,
10623101,0,109,0,101,
106240,110,0,116,0,
1062568,0,101,0,99,
106260,114,0,101,0, 106100,114,0,101,0,
10627109,0,101,0,110, 10611115,0,115,0,105,
106280,116,0,69,0, 106120,111,0,110,0,
106131,139,4395,1,140,
106144475,19,4476,4,36,
1061584,0,121,0,112,
106160,101,0,99,0,
1061797,0,115,0,116,
106180,69,0,120,0,
10619112,0,114,0,101,
106200,115,0,115,0,
10621105,0,111,0,110,
106220,1,140,4395,1,
10623141,4477,19,4478,4,
1062442,80,0,97,0,
10625114,0,101,0,110,
106260,116,0,104,0,
10627101,0,115,0,105,
106280,115,0,69,0,
10629120,0,112,0,114, 10629120,0,112,0,114,
106300,101,0,115,0, 106300,101,0,115,0,
10631115,0,105,0,111, 10631115,0,105,0,111,
106320,110,0,1,142, 106320,110,0,1,141,
106334395,1,144,4481,19, 106334395,1,142,4479,19,
10634715,1,144,3941,1, 106344480,4,56,73,0,
10635145,4482,19,720,1, 10635110,0,99,0,114,
10636145,3941,1,146,4483, 106360,101,0,109,0,
1063719,3246,1,146,3944,
106381,147,4484,19,3220,
106391,147,3944,1,148,
106404485,19,3241,1,148,
106413944,1,149,4486,19,
106423215,1,149,3944,1,
10643150,4487,19,3226,1,
10644150,3947,1,151,4488,
1064519,3256,1,151,3947,
106461,152,4489,19,3251,
106471,152,3951,1,153,
106484490,19,3236,1,153,
106493951,1,154,4491,19,
10650698,1,154,3955,1,
10651155,4492,19,693,1,
10652155,3955,1,156,4493,
1065319,709,1,156,3959,
106541,157,4494,19,704,
106551,157,3959,1,158,
106564495,19,1648,1,158,
106573965,1,159,4496,19,
106581658,1,159,3965,1,
10659160,4497,19,1663,1,
10660160,3965,1,161,4498,
1066119,1653,1,161,3965,
106621,162,4499,19,1640,
106631,162,3969,1,163,
106644500,19,1633,1,163,
106653975,1,164,4501,19,
106661704,1,164,3981,1,
10667165,4502,19,1679,1,
10668165,3981,1,166,4503,
1066919,1127,1,166,3986,
106701,167,4504,19,911,
106711,167,4037,1,168,
106724505,19,895,1,168,
106734037,1,169,4506,19,
10674901,1,169,4054,1,
10675170,4507,19,889,1,
10676170,4054,1,171,4508,
1067719,1155,1,171,4070,
106781,172,4509,19,792,
106791,172,4057,1,173,
106804510,19,906,1,173,
106814057,1,174,4511,19,
10682787,1,174,4057,1,
10683175,4512,19,812,1,
10684175,4057,1,176,4513,
1068519,781,1,176,4057,
106861,177,4514,19,775,
106871,177,4057,1,178,
106884515,19,770,1,178,
106894057,1,179,4516,19,
10690765,1,179,4057,1,
10691180,4517,19,759,1,
10692180,4057,1,181,4518,
1069319,754,1,181,4057,
106941,182,4519,19,749,
106951,182,4057,1,183,
106964520,19,744,1,183,
106974057,1,184,4521,19,
10698739,1,184,4057,1,
10699185,4522,19,1162,1,
10700185,4142,1,186,4523,
1070119,1300,1,186,4155,
107021,187,4524,19,1149,
107031,187,4168,1,188,
107044525,19,1288,1,188,
107054168,1,189,4526,19,
10706928,1,189,4181,1,
10707190,4527,19,732,1,
10708190,4181,1,191,4528,
1070919,827,1,191,4181,
107101,192,4529,19,855,
107111,192,4181,1,193,
107124530,19,874,1,193,
107134194,1,194,4531,19,
10714920,1,194,4194,1,
10715195,4532,19,835,1,
10716195,4207,1,196,4533,
1071719,848,1,196,4207,
107181,197,4534,19,801,
107191,197,4220,1,198,
107204535,19,840,1,198,
107214220,1,199,4536,19,
107221478,1,199,4233,1,
10723200,4537,19,1168,1,
10724200,4233,1,201,4538,
1072519,1510,1,201,4233,
107261,202,4539,19,1547,
107271,202,4233,1,203,
107284540,19,1416,1,203,
107294083,1,204,4541,19,
107301532,1,204,4083,1,
10731205,4542,19,1143,1,
10732205,4096,1,206,4543,
1073319,1579,1,206,4096,
107341,207,4544,19,1505,
107351,207,4096,1,208,
107364545,19,1460,1,208,
107374096,1,209,4546,19,
107381384,1,209,4096,1,
10739210,4547,19,1310,1,
10740210,4096,1,211,4548,
1074119,1320,1,211,4096,
107421,212,4549,19,1138,
107431,212,4096,1,213,
107444550,19,1563,1,213,
107454096,1,214,4551,19,
107461500,1,214,4096,1,
10747215,4552,19,1450,1,
10748215,4096,1,216,4553,
1074919,1373,1,216,4096,
107501,217,4554,19,1336,
107511,217,4096,1,218,
107524555,19,1121,1,218,
107534096,1,219,4556,19,
107541466,1,219,4096,1,
10755220,4557,19,1488,1,
10756220,4096,1,221,4558,
1075719,1443,1,221,4096,
107581,222,4559,19,1596,
107591,222,4096,1,223,
107604560,19,1276,1,223,
107614096,1,224,4561,19,
107621180,1,224,4096,1,
10763225,4562,19,1110,1,
10764225,4096,1,226,4563,
1076519,1537,1,226,4096,
107661,227,4564,19,1483,
107671,227,4096,1,228,
107684565,19,1438,1,228,
107694096,1,229,4566,19,
107701305,1,229,4129,1,
10771230,4567,19,1283,1,
10772230,4129,1,231,4568,
1077319,1568,1,231,4319,
107741,232,4569,19,1591,
107751,232,4319,1,233,
107764570,19,1558,1,233,
107774319,1,234,4571,19,
107781553,1,234,4319,1,
10779235,4572,19,1574,1,
10780235,4319,1,236,4573,
1078119,1516,1,236,4319,
107821,237,4574,19,1230,
107831,237,4319,1,238,
107844575,19,1405,1,238,
107854395,1,239,4576,19,
107861191,1,239,4395,1,
10787240,4577,19,1198,1,
10788240,4395,1,241,4578,
1078919,1219,1,241,4395,
107901,242,4579,19,1214,
107911,242,4395,1,243,
107924580,19,1209,1,243,
107934395,1,244,4581,19,
107941204,1,244,4395,1,
10795245,4582,19,1394,1,
10796245,4395,1,246,4583,
1079719,1422,1,246,4395,
107981,247,4584,19,1399,
107991,247,4395,1,248,
108004585,19,1389,1,248,
108014395,1,249,4586,19,
108021379,1,249,4395,1,
10803250,4587,19,1362,1,
10804250,4395,1,251,4588,
1080519,1315,1,251,4395,
108061,252,4589,19,1224,
108071,252,4395,1,253,
108084590,19,1185,1,253,
108094395,1,254,4591,19,
108101133,1,254,4395,1,
10811255,4592,19,1586,1,
10812255,4395,1,256,4593,
1081319,1542,1,256,4395,
108141,257,4594,19,1527,
108151,257,4395,1,258,
108164595,19,1522,1,258,
108174395,1,259,4596,19,
108181473,1,259,4395,1,
10819260,4597,19,1455,1,
10820260,4395,1,261,4598,
1082119,1432,1,261,4395,
108221,262,4599,19,1427,
108231,262,4395,1,263,
108244600,19,1368,1,263,
108254395,1,264,4601,19,
108261344,1,264,4395,1,
10827265,4602,19,1410,1,
10828265,4395,1,266,4603,
1082919,1494,1,266,4395,
108301,267,4604,19,1357,
108311,267,4395,1,268,
108324605,19,1351,1,268,
108334395,1,269,4606,19,
108341331,1,269,4395,1,
10835270,4607,19,1294,1,
10836270,4395,1,271,4608,
1083719,1271,1,271,4395,
108381,272,4609,19,1116,
108391,272,4395,1,273,
108404610,19,1606,1,273,
108414395,1,274,4611,19,
108421236,1,274,4395,1,
10843275,4612,19,1241,1,
10844275,4395,1,276,4613,
1084519,1261,1,276,4395,
108461,277,4614,19,1251,
108471,277,4395,1,278,
108484615,19,1256,1,278,
108494395,1,279,4616,19,
108501246,1,279,4395,1,
10851280,4617,19,1601,1,
10852280,4395,1,281,4618,
1085319,1266,1,281,4395,
108541,282,4619,19,1326,
108551,282,4238,1,283,
108564620,19,1717,1,283,
108574308,1,284,4621,19,
108581710,1,284,4308,1,
10859285,4622,19,1689,1,
10860285,4312,1,286,4623,
1086119,2014,1,286,4005,
108621,287,4624,19,2009,
108631,287,4005,1,288,
108644625,19,2004,1,288,
108654005,1,289,4626,19,
108661999,1,289,4005,1,
10867290,4627,19,1994,1,
10868290,4005,1,291,4628,
1086919,1989,1,291,4005,
108701,292,4629,19,1984,
108711,292,4005,1,293,
108724630,19,1973,1,293,
108734025,1,294,4631,19,
108741968,1,294,4025,1,
10875295,4632,19,1963,1,
10876295,4025,1,296,4633,
1087719,1958,1,296,4025,
108781,297,4634,19,1953,
108791,297,4025,1,298,
108804635,19,1948,1,298,
108814025,1,299,4636,19,
108821943,1,299,4025,1,
10883300,4637,19,1938,1,
10884300,4025,1,301,4638,
1088519,1933,1,301,4025,
108861,302,4639,19,1767,
108871,302,4025,1,303,
108884640,19,1927,1,303,
108894025,1,304,4641,19,
108901922,1,304,4025,1,
10891305,4642,19,1917,1,
10892305,4025,1,306,4643,
1089319,1760,1,306,4025,
108941,307,4644,19,1912,
108951,307,4025,1,308,
108964645,19,1907,1,308,
108974025,1,309,4646,19,
108981902,1,309,4025,1,
10899310,4647,19,1897,1,
10900310,4025,1,311,4648,
1090119,1892,1,311,4025,
109021,312,4649,19,1887,
109031,312,4025,1,313,
109044650,19,1753,1,313,
109054025,1,314,4651,19,
109061881,1,314,4025,1,
10907315,4652,19,1876,1,
10908315,4025,1,316,4653,
1090919,1871,1,316,4025,
109101,317,4654,19,1747,
109111,317,4025,1,318,
109124655,19,1865,1,318,
109134025,1,319,4656,19,
109141796,1,319,4025,1,
10915320,4657,19,1860,1,
10916320,4025,1,321,4658,
1091719,1855,1,321,4025,
109181,322,4659,19,1850,
109191,322,4025,1,323,
109204660,19,1845,1,323,
109214025,1,324,4661,19,
109221840,1,324,4025,1,
10923325,4662,19,1835,1,
10924325,4025,1,326,4663,
1092519,1830,1,326,4031,
109261,327,4664,19,4665,
109274,50,65,0,114,
109280,103,0,117,0,
10929109,0,101,0,110,
109300,116,0,68,0,
10931101,0,99,0,108,
109320,97,0,114,0,
1093397,0,116,0,105,
109340,111,0,110,0,
1093576,0,105,0,115,
109360,116,0,95,0,
1093751,0,1,327,3981,
109381,328,4666,19,4667,
109394,28,65,0,114,
109400,103,0,117,0,
10941109,0,101,0,110,
109420,116,0,76,0,
10943105,0,115,0,116,
109440,95,0,51,0,
109451,328,4308,1,329,
109464668,19,4669,4,50,
1094765,0,114,0,103,
109480,117,0,109,0,
10949101,0,110,0,116,
109500,68,0,101,0,
1095199,0,108,0,97,
109520,114,0,97,0,
10953116,0,105,0,111,
109540,110,0,76,0,
10955105,0,115,0,116,
109560,95,0,52,0,
109571,329,3981,1,330,
109584670,19,4671,4,50,
1095965,0,114,0,103,
109600,117,0,109,0,
10961101,0,110,0,116, 10637101,0,110,0,116,
109620,68,0,101,0, 106380,68,0,101,0,
1096399,0,108,0,97, 1063999,0,114,0,101,
109640,114,0,97,0, 106400,109,0,101,0,
10965116,0,105,0,111, 10641110,0,116,0,69,
109660,110,0,76,0, 106420,120,0,112,0,
10967105,0,115,0,116, 10643114,0,101,0,115,
109680,95,0,53,0, 106440,115,0,105,0,
109691,330,3981,1,331, 10645111,0,110,0,1,
109704672,19,4673,4,28, 10646142,4395,1,144,4481,
1097165,0,114,0,103, 1064719,715,1,144,3941,
109720,117,0,109,0, 106481,145,4482,19,720,
10973101,0,110,0,116, 106491,145,3941,1,146,
106504483,19,3246,1,146,
106513944,1,147,4484,19,
106523220,1,147,3944,1,
10653148,4485,19,3241,1,
10654148,3944,1,149,4486,
1065519,3215,1,149,3944,
106561,150,4487,19,3226,
106571,150,3947,1,151,
106584488,19,3256,1,151,
106593947,1,152,4489,19,
106603251,1,152,3951,1,
10661153,4490,19,3236,1,
10662153,3951,1,154,4491,
1066319,698,1,154,3955,
106641,155,4492,19,693,
106651,155,3955,1,156,
106664493,19,709,1,156,
106673959,1,157,4494,19,
10668704,1,157,3959,1,
10669158,4495,19,1648,1,
10670158,3965,1,159,4496,
1067119,1658,1,159,3965,
106721,160,4497,19,1663,
106731,160,3965,1,161,
106744498,19,1653,1,161,
106753965,1,162,4499,19,
106761640,1,162,3969,1,
10677163,4500,19,1633,1,
10678163,3975,1,164,4501,
1067919,1704,1,164,3981,
106801,165,4502,19,1679,
106811,165,3981,1,166,
106824503,19,1127,1,166,
106833986,1,167,4504,19,
10684911,1,167,4037,1,
10685168,4505,19,895,1,
10686168,4037,1,169,4506,
1068719,901,1,169,4054,
106881,170,4507,19,889,
106891,170,4054,1,171,
106904508,19,1155,1,171,
106914070,1,172,4509,19,
10692792,1,172,4057,1,
10693173,4510,19,906,1,
10694173,4057,1,174,4511,
1069519,787,1,174,4057,
106961,175,4512,19,812,
106971,175,4057,1,176,
106984513,19,781,1,176,
106994057,1,177,4514,19,
10700775,1,177,4057,1,
10701178,4515,19,770,1,
10702178,4057,1,179,4516,
1070319,765,1,179,4057,
107041,180,4517,19,759,
107051,180,4057,1,181,
107064518,19,754,1,181,
107074057,1,182,4519,19,
10708749,1,182,4057,1,
10709183,4520,19,744,1,
10710183,4057,1,184,4521,
1071119,739,1,184,4057,
107121,185,4522,19,1162,
107131,185,4142,1,186,
107144523,19,1300,1,186,
107154155,1,187,4524,19,
107161149,1,187,4168,1,
10717188,4525,19,1288,1,
10718188,4168,1,189,4526,
1071919,928,1,189,4181,
107201,190,4527,19,732,
107211,190,4181,1,191,
107224528,19,827,1,191,
107234181,1,192,4529,19,
10724855,1,192,4181,1,
10725193,4530,19,874,1,
10726193,4194,1,194,4531,
1072719,920,1,194,4194,
107281,195,4532,19,835,
107291,195,4207,1,196,
107304533,19,848,1,196,
107314207,1,197,4534,19,
10732801,1,197,4220,1,
10733198,4535,19,840,1,
10734198,4220,1,199,4536,
1073519,1478,1,199,4233,
107361,200,4537,19,1168,
107371,200,4233,1,201,
107384538,19,1510,1,201,
107394233,1,202,4539,19,
107401547,1,202,4233,1,
10741203,4540,19,1416,1,
10742203,4083,1,204,4541,
1074319,1532,1,204,4083,
107441,205,4542,19,1143,
107451,205,4096,1,206,
107464543,19,1579,1,206,
107474096,1,207,4544,19,
107481505,1,207,4096,1,
10749208,4545,19,1460,1,
10750208,4096,1,209,4546,
1075119,1384,1,209,4096,
107521,210,4547,19,1310,
107531,210,4096,1,211,
107544548,19,1320,1,211,
107554096,1,212,4549,19,
107561138,1,212,4096,1,
10757213,4550,19,1563,1,
10758213,4096,1,214,4551,
1075919,1500,1,214,4096,
107601,215,4552,19,1450,
107611,215,4096,1,216,
107624553,19,1373,1,216,
107634096,1,217,4554,19,
107641336,1,217,4096,1,
10765218,4555,19,1121,1,
10766218,4096,1,219,4556,
1076719,1466,1,219,4096,
107681,220,4557,19,1488,
107691,220,4096,1,221,
107704558,19,1443,1,221,
107714096,1,222,4559,19,
107721596,1,222,4096,1,
10773223,4560,19,1276,1,
10774223,4096,1,224,4561,
1077519,1180,1,224,4096,
107761,225,4562,19,1110,
107771,225,4096,1,226,
107784563,19,1537,1,226,
107794096,1,227,4564,19,
107801483,1,227,4096,1,
10781228,4565,19,1438,1,
10782228,4096,1,229,4566,
1078319,1305,1,229,4129,
107841,230,4567,19,1283,
107851,230,4129,1,231,
107864568,19,1568,1,231,
107874319,1,232,4569,19,
107881591,1,232,4319,1,
10789233,4570,19,1558,1,
10790233,4319,1,234,4571,
1079119,1553,1,234,4319,
107921,235,4572,19,1574,
107931,235,4319,1,236,
107944573,19,1516,1,236,
107954319,1,237,4574,19,
107961230,1,237,4319,1,
10797238,4575,19,1405,1,
10798238,4395,1,239,4576,
1079919,1191,1,239,4395,
108001,240,4577,19,1198,
108011,240,4395,1,241,
108024578,19,1219,1,241,
108034395,1,242,4579,19,
108041214,1,242,4395,1,
10805243,4580,19,1209,1,
10806243,4395,1,244,4581,
1080719,1204,1,244,4395,
108081,245,4582,19,1394,
108091,245,4395,1,246,
108104583,19,1422,1,246,
108114395,1,247,4584,19,
108121399,1,247,4395,1,
10813248,4585,19,1389,1,
10814248,4395,1,249,4586,
1081519,1379,1,249,4395,
108161,250,4587,19,1362,
108171,250,4395,1,251,
108184588,19,1315,1,251,
108194395,1,252,4589,19,
108201224,1,252,4395,1,
10821253,4590,19,1185,1,
10822253,4395,1,254,4591,
1082319,1133,1,254,4395,
108241,255,4592,19,1586,
108251,255,4395,1,256,
108264593,19,1542,1,256,
108274395,1,257,4594,19,
108281527,1,257,4395,1,
10829258,4595,19,1522,1,
10830258,4395,1,259,4596,
1083119,1473,1,259,4395,
108321,260,4597,19,1455,
108331,260,4395,1,261,
108344598,19,1432,1,261,
108354395,1,262,4599,19,
108361427,1,262,4395,1,
10837263,4600,19,1368,1,
10838263,4395,1,264,4601,
1083919,1344,1,264,4395,
108401,265,4602,19,1410,
108411,265,4395,1,266,
108424603,19,1494,1,266,
108434395,1,267,4604,19,
108441357,1,267,4395,1,
10845268,4605,19,1351,1,
10846268,4395,1,269,4606,
1084719,1331,1,269,4395,
108481,270,4607,19,1294,
108491,270,4395,1,271,
108504608,19,1271,1,271,
108514395,1,272,4609,19,
108521116,1,272,4395,1,
10853273,4610,19,1606,1,
10854273,4395,1,274,4611,
1085519,1236,1,274,4395,
108561,275,4612,19,1241,
108571,275,4395,1,276,
108584613,19,1261,1,276,
108594395,1,277,4614,19,
108601251,1,277,4395,1,
10861278,4615,19,1256,1,
10862278,4395,1,279,4616,
1086319,1246,1,279,4395,
108641,280,4617,19,1601,
108651,280,4395,1,281,
108664618,19,1266,1,281,
108674395,1,282,4619,19,
108681326,1,282,4238,1,
10869283,4620,19,1717,1,
10870283,4308,1,284,4621,
1087119,1710,1,284,4308,
108721,285,4622,19,1689,
108731,285,4312,1,286,
108744623,19,2014,1,286,
108754005,1,287,4624,19,
108762009,1,287,4005,1,
10877288,4625,19,2004,1,
10878288,4005,1,289,4626,
1087919,1999,1,289,4005,
108801,290,4627,19,1994,
108811,290,4005,1,291,
108824628,19,1989,1,291,
108834005,1,292,4629,19,
108841984,1,292,4005,1,
10885293,4630,19,1973,1,
10886293,4025,1,294,4631,
1088719,1968,1,294,4025,
108881,295,4632,19,1963,
108891,295,4025,1,296,
108904633,19,1958,1,296,
108914025,1,297,4634,19,
108921953,1,297,4025,1,
10893298,4635,19,1948,1,
10894298,4025,1,299,4636,
1089519,1943,1,299,4025,
108961,300,4637,19,1938,
108971,300,4025,1,301,
108984638,19,1933,1,301,
108994025,1,302,4639,19,
109001767,1,302,4025,1,
10901303,4640,19,1927,1,
10902303,4025,1,304,4641,
1090319,1922,1,304,4025,
109041,305,4642,19,1917,
109051,305,4025,1,306,
109064643,19,1760,1,306,
109074025,1,307,4644,19,
109081912,1,307,4025,1,
10909308,4645,19,1907,1,
10910308,4025,1,309,4646,
1091119,1902,1,309,4025,
109121,310,4647,19,1897,
109131,310,4025,1,311,
109144648,19,1892,1,311,
109154025,1,312,4649,19,
109161887,1,312,4025,1,
10917313,4650,19,1753,1,
10918313,4025,1,314,4651,
1091919,1881,1,314,4025,
109201,315,4652,19,1876,
109211,315,4025,1,316,
109224653,19,1871,1,316,
109234025,1,317,4654,19,
109241747,1,317,4025,1,
10925318,4655,19,1865,1,
10926318,4025,1,319,4656,
1092719,1796,1,319,4025,
109281,320,4657,19,1860,
109291,320,4031,1,321,
109304658,19,1855,1,321,
109314031,1,322,4659,19,
109321850,1,322,4031,1,
10933323,4660,19,1845,1,
10934323,4031,1,324,4661,
1093519,1840,1,324,4031,
109361,325,4662,19,1835,
109371,325,4031,1,326,
109384663,19,1830,1,326,
109394031,1,327,4664,19,
109404665,4,50,65,0,
10941114,0,103,0,117,
109420,109,0,101,0,
10943110,0,116,0,68,
109440,101,0,99,0,
10945108,0,97,0,114,
109460,97,0,116,0,
10947105,0,111,0,110,
109740,76,0,105,0, 109480,76,0,105,0,
10975115,0,116,0,95, 10949115,0,116,0,95,
109760,52,0,1,331, 109500,51,0,1,327,
109774308,2,0,0}; 109513981,1,328,4666,19,
109524667,4,28,65,0,
10953114,0,103,0,117,
109540,109,0,101,0,
10955110,0,116,0,76,
109560,105,0,115,0,
10957116,0,95,0,51,
109580,1,328,4308,1,
10959329,4668,19,4669,4,
1096050,65,0,114,0,
10961103,0,117,0,109,
109620,101,0,110,0,
10963116,0,68,0,101,
109640,99,0,108,0,
1096597,0,114,0,97,
109660,116,0,105,0,
10967111,0,110,0,76,
109680,105,0,115,0,
10969116,0,95,0,52,
109700,1,329,3981,1,
10971330,4670,19,4671,4,
1097250,65,0,114,0,
10973103,0,117,0,109,
109740,101,0,110,0,
10975116,0,68,0,101,
109760,99,0,108,0,
1097797,0,114,0,97,
109780,116,0,105,0,
10979111,0,110,0,76,
109800,105,0,115,0,
10981116,0,95,0,53,
109820,1,330,3981,1,
10983331,4672,19,4673,4,
1098428,65,0,114,0,
10985103,0,117,0,109,
109860,101,0,110,0,
10987116,0,76,0,105,
109880,115,0,116,0,
1098995,0,52,0,1,
10990331,4308,2,0,0};
10978new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); 10991new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory));
10979new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory)); 10992new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory));
10980new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory)); 10993new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory));
@@ -10993,6 +11006,7 @@ new Sfactory(this,"SimpleAssignment_19",new SCreator(SimpleAssignment_19_factory
10993new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory)); 11006new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory));
10994new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory)); 11007new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory));
10995new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory)); 11008new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory));
11009new Sfactory(this,"StatementList",new SCreator(StatementList_factory));
10996new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory)); 11010new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory));
10997new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory)); 11011new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory));
10998new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); 11012new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory));
@@ -11016,7 +11030,7 @@ new Sfactory(this,"Event_4",new SCreator(Event_4_factory));
11016new Sfactory(this,"Event_5",new SCreator(Event_5_factory)); 11030new Sfactory(this,"Event_5",new SCreator(Event_5_factory));
11017new Sfactory(this,"SimpleAssignment_5",new SCreator(SimpleAssignment_5_factory)); 11031new Sfactory(this,"SimpleAssignment_5",new SCreator(SimpleAssignment_5_factory));
11018new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory)); 11032new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory));
11019new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory)); 11033new Sfactory(this,"VoidArgStateEvent_1",new SCreator(VoidArgStateEvent_1_factory));
11020new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory)); 11034new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory));
11021new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); 11035new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory));
11022new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory)); 11036new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory));
@@ -11029,7 +11043,6 @@ new Sfactory(this,"LSLProgramRoot_2",new SCreator(LSLProgramRoot_2_factory));
11029new Sfactory(this,"States_1",new SCreator(States_1_factory)); 11043new Sfactory(this,"States_1",new SCreator(States_1_factory));
11030new Sfactory(this,"States_2",new SCreator(States_2_factory)); 11044new Sfactory(this,"States_2",new SCreator(States_2_factory));
11031new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); 11045new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory));
11032new Sfactory(this,"Event_24",new SCreator(Event_24_factory));
11033new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); 11046new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory));
11034new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); 11047new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory));
11035new Sfactory(this,"DoWhileStatement_2",new SCreator(DoWhileStatement_2_factory)); 11048new Sfactory(this,"DoWhileStatement_2",new SCreator(DoWhileStatement_2_factory));
@@ -11043,21 +11056,26 @@ new Sfactory(this,"SimpleAssignment_17",new SCreator(SimpleAssignment_17_factory
11043new Sfactory(this,"SimpleAssignment_18",new SCreator(SimpleAssignment_18_factory)); 11056new Sfactory(this,"SimpleAssignment_18",new SCreator(SimpleAssignment_18_factory));
11044new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory)); 11057new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory));
11045new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); 11058new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory));
11059new Sfactory(this,"VoidArgEvent_4",new SCreator(VoidArgEvent_4_factory));
11046new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); 11060new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory));
11047new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory)); 11061new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory));
11048new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); 11062new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory));
11063new Sfactory(this,"VoidArgEvent_1",new SCreator(VoidArgEvent_1_factory));
11049new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); 11064new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory));
11050new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory)); 11065new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory));
11051new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory)); 11066new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory));
11052new Sfactory(this,"SimpleAssignment_23",new SCreator(SimpleAssignment_23_factory)); 11067new Sfactory(this,"SimpleAssignment_23",new SCreator(SimpleAssignment_23_factory));
11053new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory)); 11068new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory));
11069new Sfactory(this,"VoidArgEvent_2",new SCreator(VoidArgEvent_2_factory));
11070new Sfactory(this,"VoidArgEvent_3",new SCreator(VoidArgEvent_3_factory));
11054new Sfactory(this,"ArgumentDeclarationList_1",new SCreator(ArgumentDeclarationList_1_factory)); 11071new Sfactory(this,"ArgumentDeclarationList_1",new SCreator(ArgumentDeclarationList_1_factory));
11055new Sfactory(this,"ArgumentDeclarationList_2",new SCreator(ArgumentDeclarationList_2_factory)); 11072new Sfactory(this,"ArgumentDeclarationList_2",new SCreator(ArgumentDeclarationList_2_factory));
11056new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); 11073new Sfactory(this,"VoidArgEvent_6",new SCreator(VoidArgEvent_6_factory));
11057new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory)); 11074new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory));
11058new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory)); 11075new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory));
11059new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory)); 11076new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory));
11060new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory)); 11077new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory));
11078new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory));
11061new Sfactory(this,"Event_11",new SCreator(Event_11_factory)); 11079new Sfactory(this,"Event_11",new SCreator(Event_11_factory));
11062new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); 11080new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory));
11063new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); 11081new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory));
@@ -11082,7 +11100,6 @@ new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory));
11082new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); 11100new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory));
11083new Sfactory(this,"Constant",new SCreator(Constant_factory)); 11101new Sfactory(this,"Constant",new SCreator(Constant_factory));
11084new Sfactory(this,"State",new SCreator(State_factory)); 11102new Sfactory(this,"State",new SCreator(State_factory));
11085new Sfactory(this,"Event_12",new SCreator(Event_12_factory));
11086new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); 11103new Sfactory(this,"Event_13",new SCreator(Event_13_factory));
11087new Sfactory(this,"Event_14",new SCreator(Event_14_factory)); 11104new Sfactory(this,"Event_14",new SCreator(Event_14_factory));
11088new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); 11105new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory));
@@ -11099,11 +11116,10 @@ new Sfactory(this,"Event_21",new SCreator(Event_21_factory));
11099new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); 11116new Sfactory(this,"Event_22",new SCreator(Event_22_factory));
11100new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); 11117new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory));
11101new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); 11118new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory));
11102new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory));
11103new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); 11119new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory));
11104new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory)); 11120new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory));
11105new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory)); 11121new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory));
11106new Sfactory(this,"StateEntryStateEvent_1",new SCreator(StateEntryStateEvent_1_factory)); 11122new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory));
11107new Sfactory(this,"Statement_2",new SCreator(Statement_2_factory)); 11123new Sfactory(this,"Statement_2",new SCreator(Statement_2_factory));
11108new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory)); 11124new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory));
11109new Sfactory(this,"Statement_4",new SCreator(Statement_4_factory)); 11125new Sfactory(this,"Statement_4",new SCreator(Statement_4_factory));
@@ -11122,13 +11138,14 @@ new Sfactory(this,"StateBody",new SCreator(StateBody_factory));
11122new Sfactory(this,"Event_7",new SCreator(Event_7_factory)); 11138new Sfactory(this,"Event_7",new SCreator(Event_7_factory));
11123new Sfactory(this,"Event_8",new SCreator(Event_8_factory)); 11139new Sfactory(this,"Event_8",new SCreator(Event_8_factory));
11124new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory)); 11140new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory));
11141new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory));
11125new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory)); 11142new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory));
11126new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); 11143new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory));
11127new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); 11144new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory));
11128new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); 11145new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory));
11129new Sfactory(this,"Event_20",new SCreator(Event_20_factory)); 11146new Sfactory(this,"Event_20",new SCreator(Event_20_factory));
11130new Sfactory(this,"Event_23",new SCreator(Event_23_factory)); 11147new Sfactory(this,"Event_23",new SCreator(Event_23_factory));
11131new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); 11148new Sfactory(this,"Event_24",new SCreator(Event_24_factory));
11132new Sfactory(this,"Event_26",new SCreator(Event_26_factory)); 11149new Sfactory(this,"Event_26",new SCreator(Event_26_factory));
11133new Sfactory(this,"SimpleAssignment_10",new SCreator(SimpleAssignment_10_factory)); 11150new Sfactory(this,"SimpleAssignment_10",new SCreator(SimpleAssignment_10_factory));
11134new Sfactory(this,"Event",new SCreator(Event_factory)); 11151new Sfactory(this,"Event",new SCreator(Event_factory));
@@ -11140,7 +11157,6 @@ new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory));
11140new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory)); 11157new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory));
11141new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); 11158new Sfactory(this,"Event_15",new SCreator(Event_15_factory));
11142new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); 11159new Sfactory(this,"Event_16",new SCreator(Event_16_factory));
11143new Sfactory(this,"Event_32",new SCreator(Event_32_factory));
11144new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory)); 11160new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory));
11145new Sfactory(this,"SimpleAssignment_24",new SCreator(SimpleAssignment_24_factory)); 11161new Sfactory(this,"SimpleAssignment_24",new SCreator(SimpleAssignment_24_factory));
11146new Sfactory(this,"SimpleAssignment_1",new SCreator(SimpleAssignment_1_factory)); 11162new Sfactory(this,"SimpleAssignment_1",new SCreator(SimpleAssignment_1_factory));
@@ -11169,12 +11185,14 @@ new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory))
11169new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); 11185new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory));
11170new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); 11186new Sfactory(this,"Event_10",new SCreator(Event_10_factory));
11171new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); 11187new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory));
11172new Sfactory(this,"StateEntryStateEvent",new SCreator(StateEntryStateEvent_factory)); 11188new Sfactory(this,"Event_12",new SCreator(Event_12_factory));
11173new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); 11189new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory));
11174new Sfactory(this,"Event_17",new SCreator(Event_17_factory)); 11190new Sfactory(this,"Event_17",new SCreator(Event_17_factory));
11175new Sfactory(this,"Event_18",new SCreator(Event_18_factory)); 11191new Sfactory(this,"Event_18",new SCreator(Event_18_factory));
11176new Sfactory(this,"Event_19",new SCreator(Event_19_factory)); 11192new Sfactory(this,"Event_19",new SCreator(Event_19_factory));
11177new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); 11193new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory));
11194new Sfactory(this,"VoidArgEvent_5",new SCreator(VoidArgEvent_5_factory));
11195new Sfactory(this,"VoidArgEvent_7",new SCreator(VoidArgEvent_7_factory));
11178new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); 11196new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory));
11179new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); 11197new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory));
11180new Sfactory(this,"EmptyStatement_1",new SCreator(EmptyStatement_1_factory)); 11198new Sfactory(this,"EmptyStatement_1",new SCreator(EmptyStatement_1_factory));
@@ -11183,34 +11201,29 @@ new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_facto
11183new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); 11201new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory));
11184new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); 11202new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory));
11185new Sfactory(this,"Event_27",new SCreator(Event_27_factory)); 11203new Sfactory(this,"Event_27",new SCreator(Event_27_factory));
11186new Sfactory(this,"Event_28",new SCreator(Event_28_factory));
11187new Sfactory(this,"Event_29",new SCreator(Event_29_factory));
11188new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory)); 11204new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory));
11189new Sfactory(this,"Event_6",new SCreator(Event_6_factory)); 11205new Sfactory(this,"Event_6",new SCreator(Event_6_factory));
11190new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory)); 11206new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory));
11191new Sfactory(this,"SimpleAssignment_7",new SCreator(SimpleAssignment_7_factory)); 11207new Sfactory(this,"SimpleAssignment_7",new SCreator(SimpleAssignment_7_factory));
11192new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory)); 11208new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory));
11193new Sfactory(this,"ForLoop_2",new SCreator(ForLoop_2_factory)); 11209new Sfactory(this,"ForLoop_2",new SCreator(ForLoop_2_factory));
11194new Sfactory(this,"EntryEvent_1",new SCreator(EntryEvent_1_factory));
11195new Sfactory(this,"Event_30",new SCreator(Event_30_factory));
11196new Sfactory(this,"Event_31",new SCreator(Event_31_factory));
11197new Sfactory(this,"Event_33",new SCreator(Event_33_factory));
11198new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory)); 11210new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory));
11199new Sfactory(this,"JumpLabel_1",new SCreator(JumpLabel_1_factory)); 11211new Sfactory(this,"JumpLabel_1",new SCreator(JumpLabel_1_factory));
11200new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory)); 11212new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory));
11201new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); 11213new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory));
11202new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); 11214new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory));
11203new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); 11215new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory));
11204new Sfactory(this,"EntryEvent",new SCreator(EntryEvent_factory)); 11216new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory));
11205new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); 11217new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory));
11206new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); 11218new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory));
11207new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); 11219new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory));
11208new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); 11220new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory));
11209new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); 11221new Sfactory(this,"VoidArgEvent",new SCreator(VoidArgEvent_factory));
11210new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory)); 11222new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory));
11211new Sfactory(this,"WhileStatement_2",new SCreator(WhileStatement_2_factory)); 11223new Sfactory(this,"WhileStatement_2",new SCreator(WhileStatement_2_factory));
11212new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); 11224new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory));
11213new Sfactory(this,"States",new SCreator(States_factory)); 11225new Sfactory(this,"States",new SCreator(States_factory));
11226new Sfactory(this,"VoidArgStateEvent",new SCreator(VoidArgStateEvent_factory));
11214} 11227}
11215public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } 11228public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); }
11216public static object SimpleAssignment_8_factory(Parser yyp) { return new SimpleAssignment_8(yyp); } 11229public static object SimpleAssignment_8_factory(Parser yyp) { return new SimpleAssignment_8(yyp); }
@@ -11230,6 +11243,7 @@ public static object SimpleAssignment_19_factory(Parser yyp) { return new Simple
11230public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryExpression_9(yyp); } 11243public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryExpression_9(yyp); }
11231public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); } 11244public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); }
11232public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); } 11245public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); }
11246public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); }
11233public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); } 11247public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); }
11234public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); } 11248public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); }
11235public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } 11249public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); }
@@ -11253,7 +11267,7 @@ public static object Event_4_factory(Parser yyp) { return new Event_4(yyp); }
11253public static object Event_5_factory(Parser yyp) { return new Event_5(yyp); } 11267public static object Event_5_factory(Parser yyp) { return new Event_5(yyp); }
11254public static object SimpleAssignment_5_factory(Parser yyp) { return new SimpleAssignment_5(yyp); } 11268public static object SimpleAssignment_5_factory(Parser yyp) { return new SimpleAssignment_5(yyp); }
11255public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); } 11269public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); }
11256public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); } 11270public static object VoidArgStateEvent_1_factory(Parser yyp) { return new VoidArgStateEvent_1(yyp); }
11257public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); } 11271public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); }
11258public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } 11272public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); }
11259public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); } 11273public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); }
@@ -11266,7 +11280,6 @@ public static object LSLProgramRoot_2_factory(Parser yyp) { return new LSLProgra
11266public static object States_1_factory(Parser yyp) { return new States_1(yyp); } 11280public static object States_1_factory(Parser yyp) { return new States_1(yyp); }
11267public static object States_2_factory(Parser yyp) { return new States_2(yyp); } 11281public static object States_2_factory(Parser yyp) { return new States_2(yyp); }
11268public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } 11282public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); }
11269public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); }
11270public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } 11283public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); }
11271public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } 11284public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); }
11272public static object DoWhileStatement_2_factory(Parser yyp) { return new DoWhileStatement_2(yyp); } 11285public static object DoWhileStatement_2_factory(Parser yyp) { return new DoWhileStatement_2(yyp); }
@@ -11280,21 +11293,26 @@ public static object SimpleAssignment_17_factory(Parser yyp) { return new Simple
11280public static object SimpleAssignment_18_factory(Parser yyp) { return new SimpleAssignment_18(yyp); } 11293public static object SimpleAssignment_18_factory(Parser yyp) { return new SimpleAssignment_18(yyp); }
11281public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); } 11294public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); }
11282public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } 11295public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); }
11296public static object VoidArgEvent_4_factory(Parser yyp) { return new VoidArgEvent_4(yyp); }
11283public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } 11297public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); }
11284public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); } 11298public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); }
11285public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } 11299public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); }
11300public static object VoidArgEvent_1_factory(Parser yyp) { return new VoidArgEvent_1(yyp); }
11286public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } 11301public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); }
11287public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); } 11302public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); }
11288public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); } 11303public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); }
11289public static object SimpleAssignment_23_factory(Parser yyp) { return new SimpleAssignment_23(yyp); } 11304public static object SimpleAssignment_23_factory(Parser yyp) { return new SimpleAssignment_23(yyp); }
11290public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); } 11305public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); }
11306public static object VoidArgEvent_2_factory(Parser yyp) { return new VoidArgEvent_2(yyp); }
11307public static object VoidArgEvent_3_factory(Parser yyp) { return new VoidArgEvent_3(yyp); }
11291public static object ArgumentDeclarationList_1_factory(Parser yyp) { return new ArgumentDeclarationList_1(yyp); } 11308public static object ArgumentDeclarationList_1_factory(Parser yyp) { return new ArgumentDeclarationList_1(yyp); }
11292public static object ArgumentDeclarationList_2_factory(Parser yyp) { return new ArgumentDeclarationList_2(yyp); } 11309public static object ArgumentDeclarationList_2_factory(Parser yyp) { return new ArgumentDeclarationList_2(yyp); }
11293public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } 11310public static object VoidArgEvent_6_factory(Parser yyp) { return new VoidArgEvent_6(yyp); }
11294public static object GlobalDefinitions_1_factory(Parser yyp) { return new GlobalDefinitions_1(yyp); } 11311public static object GlobalDefinitions_1_factory(Parser yyp) { return new GlobalDefinitions_1(yyp); }
11295public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); } 11312public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); }
11296public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); } 11313public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); }
11297public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); } 11314public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); }
11315public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); }
11298public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); } 11316public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); }
11299public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } 11317public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); }
11300public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } 11318public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); }
@@ -11319,7 +11337,6 @@ public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentLis
11319public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } 11337public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); }
11320public static object Constant_factory(Parser yyp) { return new Constant(yyp); } 11338public static object Constant_factory(Parser yyp) { return new Constant(yyp); }
11321public static object State_factory(Parser yyp) { return new State(yyp); } 11339public static object State_factory(Parser yyp) { return new State(yyp); }
11322public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); }
11323public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } 11340public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); }
11324public static object Event_14_factory(Parser yyp) { return new Event_14(yyp); } 11341public static object Event_14_factory(Parser yyp) { return new Event_14(yyp); }
11325public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } 11342public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); }
@@ -11336,11 +11353,10 @@ public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); }
11336public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } 11353public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); }
11337public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } 11354public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); }
11338public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } 11355public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); }
11339public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); }
11340public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } 11356public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); }
11341public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); } 11357public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); }
11342public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); } 11358public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); }
11343public static object StateEntryStateEvent_1_factory(Parser yyp) { return new StateEntryStateEvent_1(yyp); } 11359public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); }
11344public static object Statement_2_factory(Parser yyp) { return new Statement_2(yyp); } 11360public static object Statement_2_factory(Parser yyp) { return new Statement_2(yyp); }
11345public static object Statement_3_factory(Parser yyp) { return new Statement_3(yyp); } 11361public static object Statement_3_factory(Parser yyp) { return new Statement_3(yyp); }
11346public static object Statement_4_factory(Parser yyp) { return new Statement_4(yyp); } 11362public static object Statement_4_factory(Parser yyp) { return new Statement_4(yyp); }
@@ -11359,13 +11375,14 @@ public static object StateBody_factory(Parser yyp) { return new StateBody(yyp);
11359public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); } 11375public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); }
11360public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); } 11376public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); }
11361public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); } 11377public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); }
11378public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); }
11362public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); } 11379public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); }
11363public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } 11380public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); }
11364public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } 11381public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); }
11365public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } 11382public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); }
11366public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); } 11383public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); }
11367public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); } 11384public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); }
11368public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } 11385public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); }
11369public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); } 11386public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); }
11370public static object SimpleAssignment_10_factory(Parser yyp) { return new SimpleAssignment_10(yyp); } 11387public static object SimpleAssignment_10_factory(Parser yyp) { return new SimpleAssignment_10(yyp); }
11371public static object Event_factory(Parser yyp) { return new Event(yyp); } 11388public static object Event_factory(Parser yyp) { return new Event(yyp); }
@@ -11377,7 +11394,6 @@ public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAss
11377public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); } 11394public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); }
11378public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } 11395public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); }
11379public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } 11396public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); }
11380public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); }
11381public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); } 11397public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); }
11382public static object SimpleAssignment_24_factory(Parser yyp) { return new SimpleAssignment_24(yyp); } 11398public static object SimpleAssignment_24_factory(Parser yyp) { return new SimpleAssignment_24(yyp); }
11383public static object SimpleAssignment_1_factory(Parser yyp) { return new SimpleAssignment_1(yyp); } 11399public static object SimpleAssignment_1_factory(Parser yyp) { return new SimpleAssignment_1(yyp); }
@@ -11406,12 +11422,14 @@ public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryE
11406public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } 11422public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); }
11407public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } 11423public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); }
11408public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } 11424public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); }
11409public static object StateEntryStateEvent_factory(Parser yyp) { return new StateEntryStateEvent(yyp); } 11425public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); }
11410public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } 11426public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); }
11411public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); } 11427public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); }
11412public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); } 11428public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); }
11413public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); } 11429public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); }
11414public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } 11430public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); }
11431public static object VoidArgEvent_5_factory(Parser yyp) { return new VoidArgEvent_5(yyp); }
11432public static object VoidArgEvent_7_factory(Parser yyp) { return new VoidArgEvent_7(yyp); }
11415public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } 11433public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); }
11416public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } 11434public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); }
11417public static object EmptyStatement_1_factory(Parser yyp) { return new EmptyStatement_1(yyp); } 11435public static object EmptyStatement_1_factory(Parser yyp) { return new EmptyStatement_1(yyp); }
@@ -11420,34 +11438,29 @@ public static object TypecastExpression_6_factory(Parser yyp) { return new Typec
11420public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } 11438public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); }
11421public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } 11439public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); }
11422public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); } 11440public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); }
11423public static object Event_28_factory(Parser yyp) { return new Event_28(yyp); }
11424public static object Event_29_factory(Parser yyp) { return new Event_29(yyp); }
11425public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); } 11441public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); }
11426public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); } 11442public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); }
11427public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); } 11443public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); }
11428public static object SimpleAssignment_7_factory(Parser yyp) { return new SimpleAssignment_7(yyp); } 11444public static object SimpleAssignment_7_factory(Parser yyp) { return new SimpleAssignment_7(yyp); }
11429public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); } 11445public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); }
11430public static object ForLoop_2_factory(Parser yyp) { return new ForLoop_2(yyp); } 11446public static object ForLoop_2_factory(Parser yyp) { return new ForLoop_2(yyp); }
11431public static object EntryEvent_1_factory(Parser yyp) { return new EntryEvent_1(yyp); }
11432public static object Event_30_factory(Parser yyp) { return new Event_30(yyp); }
11433public static object Event_31_factory(Parser yyp) { return new Event_31(yyp); }
11434public static object Event_33_factory(Parser yyp) { return new Event_33(yyp); }
11435public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); } 11447public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); }
11436public static object JumpLabel_1_factory(Parser yyp) { return new JumpLabel_1(yyp); } 11448public static object JumpLabel_1_factory(Parser yyp) { return new JumpLabel_1(yyp); }
11437public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); } 11449public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); }
11438public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } 11450public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); }
11439public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } 11451public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); }
11440public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } 11452public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); }
11441public static object EntryEvent_factory(Parser yyp) { return new EntryEvent(yyp); } 11453public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); }
11442public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } 11454public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); }
11443public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } 11455public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); }
11444public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } 11456public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); }
11445public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } 11457public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); }
11446public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } 11458public static object VoidArgEvent_factory(Parser yyp) { return new VoidArgEvent(yyp); }
11447public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); } 11459public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); }
11448public static object WhileStatement_2_factory(Parser yyp) { return new WhileStatement_2(yyp); } 11460public static object WhileStatement_2_factory(Parser yyp) { return new WhileStatement_2(yyp); }
11449public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } 11461public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); }
11450public static object States_factory(Parser yyp) { return new States(yyp); } 11462public static object States_factory(Parser yyp) { return new States(yyp); }
11463public static object VoidArgStateEvent_factory(Parser yyp) { return new VoidArgStateEvent(yyp); }
11451} 11464}
11452public class LSLSyntax 11465public class LSLSyntax
11453: Parser { 11466: Parser {