aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-12-21 00:46:34 +0000
committerJustin Clark-Casey (justincc)2013-12-21 00:46:34 +0000
commit871ac5b16c368fb08045db7c48857db93da5899e (patch)
treef58016f224005918a7770bf10e5bbe3cc32a4ab1 /OpenSim/Region/ScriptEngine
parentAdd lsl event arg checking for at_rot_target (diff)
downloadopensim-SC_OLD-871ac5b16c368fb08045db7c48857db93da5899e.zip
opensim-SC_OLD-871ac5b16c368fb08045db7c48857db93da5899e.tar.gz
opensim-SC_OLD-871ac5b16c368fb08045db7c48857db93da5899e.tar.bz2
opensim-SC_OLD-871ac5b16c368fb08045db7c48857db93da5899e.tar.xz
Add arg checking for at_target lsl event
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs17
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs17969
2 files changed, 9158 insertions, 8828 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
index 854b4bf..ea43d66 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests/LSL_EventTests.cs
@@ -269,6 +269,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.Tests
269 TestIntRotRotArgEvent("at_rot_target"); 269 TestIntRotRotArgEvent("at_rot_target");
270 } 270 }
271 271
272 [Test]
273 public void TestAtTargetEvent()
274 {
275 TestHelpers.InMethod();
276// TestHelpers.EnableLogging();
277
278 TestIntVecVecArgEvent("at_target");
279 }
280
272 private void TestIntArgEvent(string eventName) 281 private void TestIntArgEvent(string eventName)
273 { 282 {
274 TestCompile("default { " + eventName + "(integer n) {} }", false); 283 TestCompile("default { " + eventName + "(integer n) {} }", false);
@@ -301,6 +310,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Tests
301 TestCompile("default { " + eventName + "(integer n, rotation r, rotation s, rotation t) {{}} }", true); 310 TestCompile("default { " + eventName + "(integer n, rotation r, rotation s, rotation t) {{}} }", true);
302 } 311 }
303 312
313 private void TestIntVecVecArgEvent(string eventName)
314 {
315 TestCompile("default { " + eventName + "(integer n, vector v, vector w) {} }", false);
316 TestCompile("default { " + eventName + "{{}} }", true);
317 TestCompile("default { " + eventName + "(string s) {{}} }", true);
318 TestCompile("default { " + eventName + "(integer n, vector v, vector w, vector x) {{}} }", true);
319 }
320
304 private void TestCompile(string script, bool expectException) 321 private void TestCompile(string script, bool expectException)
305 { 322 {
306 bool gotException = false; 323 bool gotException = false;
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
index a4938a0..fe8ab4f 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
@@ -170,7 +170,15 @@ public class IntRotRotArgStateEvent : StateEvent{
170public override string yyname { get { return "IntRotRotArgStateEvent"; }} 170public override string yyname { get { return "IntRotRotArgStateEvent"; }}
171public override int yynum { get { return 108; }} 171public override int yynum { get { return 108; }}
172public IntRotRotArgStateEvent(Parser yyp):base(yyp){}} 172public IntRotRotArgStateEvent(Parser yyp):base(yyp){}}
173//%+ArgumentDeclarationList+109 173//%+IntVecVecArgStateEvent+109
174public class IntVecVecArgStateEvent : StateEvent{
175 public IntVecVecArgStateEvent (Parser yyp, string name , IntVecVecArgumentDeclarationList adl , CompoundStatement cs ):base(((LSLSyntax
176)yyp), name , adl , cs ){}
177
178public override string yyname { get { return "IntVecVecArgStateEvent"; }}
179public override int yynum { get { return 109; }}
180public IntVecVecArgStateEvent(Parser yyp):base(yyp){}}
181//%+ArgumentDeclarationList+110
174public class ArgumentDeclarationList : SYMBOL{ 182public class ArgumentDeclarationList : SYMBOL{
175 public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax 183 public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax
176)yyp)){ kids . Add ( d ); 184)yyp)){ kids . Add ( d );
@@ -190,41 +198,49 @@ public class ArgumentDeclarationList : SYMBOL{
190} 198}
191 199
192public override string yyname { get { return "ArgumentDeclarationList"; }} 200public override string yyname { get { return "ArgumentDeclarationList"; }}
193public override int yynum { get { return 109; }} 201public override int yynum { get { return 110; }}
194public ArgumentDeclarationList(Parser yyp):base(yyp){}} 202public ArgumentDeclarationList(Parser yyp):base(yyp){}}
195//%+KeyArgumentDeclarationList+110 203//%+KeyArgumentDeclarationList+111
196public class KeyArgumentDeclarationList : ArgumentDeclarationList{ 204public class KeyArgumentDeclarationList : ArgumentDeclarationList{
197 public KeyArgumentDeclarationList (Parser yyp, KeyDeclaration d ):base(((LSLSyntax 205 public KeyArgumentDeclarationList (Parser yyp, KeyDeclaration d ):base(((LSLSyntax
198)yyp), d ){} 206)yyp), d ){}
199 207
200public override string yyname { get { return "KeyArgumentDeclarationList"; }} 208public override string yyname { get { return "KeyArgumentDeclarationList"; }}
201public override int yynum { get { return 110; }} 209public override int yynum { get { return 111; }}
202public KeyArgumentDeclarationList(Parser yyp):base(yyp){}} 210public KeyArgumentDeclarationList(Parser yyp):base(yyp){}}
203//%+IntArgumentDeclarationList+111 211//%+IntArgumentDeclarationList+112
204public class IntArgumentDeclarationList : ArgumentDeclarationList{ 212public class IntArgumentDeclarationList : ArgumentDeclarationList{
205 public IntArgumentDeclarationList (Parser yyp, IntDeclaration d ):base(((LSLSyntax 213 public IntArgumentDeclarationList (Parser yyp, IntDeclaration d ):base(((LSLSyntax
206)yyp), d ){} 214)yyp), d ){}
207 215
208public override string yyname { get { return "IntArgumentDeclarationList"; }} 216public override string yyname { get { return "IntArgumentDeclarationList"; }}
209public override int yynum { get { return 111; }} 217public override int yynum { get { return 112; }}
210public IntArgumentDeclarationList(Parser yyp):base(yyp){}} 218public IntArgumentDeclarationList(Parser yyp):base(yyp){}}
211//%+VectorArgumentDeclarationList+112 219//%+VectorArgumentDeclarationList+113
212public class VectorArgumentDeclarationList : ArgumentDeclarationList{ 220public class VectorArgumentDeclarationList : ArgumentDeclarationList{
213 public VectorArgumentDeclarationList (Parser yyp, VectorDeclaration d ):base(((LSLSyntax 221 public VectorArgumentDeclarationList (Parser yyp, VectorDeclaration d ):base(((LSLSyntax
214)yyp), d ){} 222)yyp), d ){}
215 223
216public override string yyname { get { return "VectorArgumentDeclarationList"; }} 224public override string yyname { get { return "VectorArgumentDeclarationList"; }}
217public override int yynum { get { return 112; }} 225public override int yynum { get { return 113; }}
218public VectorArgumentDeclarationList(Parser yyp):base(yyp){}} 226public VectorArgumentDeclarationList(Parser yyp):base(yyp){}}
219//%+IntRotRotArgumentDeclarationList+113 227//%+IntRotRotArgumentDeclarationList+114
220public class IntRotRotArgumentDeclarationList : ArgumentDeclarationList{ 228public class IntRotRotArgumentDeclarationList : ArgumentDeclarationList{
221 public IntRotRotArgumentDeclarationList (Parser yyp, Declaration d1 , Declaration d2 , Declaration d3 ):base(((LSLSyntax 229 public IntRotRotArgumentDeclarationList (Parser yyp, Declaration d1 , Declaration d2 , Declaration d3 ):base(((LSLSyntax
222)yyp), d1 , d2 , d3 ){} 230)yyp), d1 , d2 , d3 ){}
223 231
224public override string yyname { get { return "IntRotRotArgumentDeclarationList"; }} 232public override string yyname { get { return "IntRotRotArgumentDeclarationList"; }}
225public override int yynum { get { return 113; }} 233public override int yynum { get { return 114; }}
226public IntRotRotArgumentDeclarationList(Parser yyp):base(yyp){}} 234public IntRotRotArgumentDeclarationList(Parser yyp):base(yyp){}}
227//%+Declaration+114 235//%+IntVecVecArgumentDeclarationList+115
236public class IntVecVecArgumentDeclarationList : ArgumentDeclarationList{
237 public IntVecVecArgumentDeclarationList (Parser yyp, Declaration d1 , Declaration d2 , Declaration d3 ):base(((LSLSyntax
238)yyp), d1 , d2 , d3 ){}
239
240public override string yyname { get { return "IntVecVecArgumentDeclarationList"; }}
241public override int yynum { get { return 115; }}
242public IntVecVecArgumentDeclarationList(Parser yyp):base(yyp){}}
243//%+Declaration+116
228public class Declaration : SYMBOL{ 244public class Declaration : SYMBOL{
229 private string m_datatype ; 245 private string m_datatype ;
230 private string m_id ; 246 private string m_id ;
@@ -244,41 +260,41 @@ public class Declaration : SYMBOL{
244} 260}
245 261
246public override string yyname { get { return "Declaration"; }} 262public override string yyname { get { return "Declaration"; }}
247public override int yynum { get { return 114; }} 263public override int yynum { get { return 116; }}
248public Declaration(Parser yyp):base(yyp){}} 264public Declaration(Parser yyp):base(yyp){}}
249//%+KeyDeclaration+115 265//%+KeyDeclaration+117
250public class KeyDeclaration : Declaration{ 266public class KeyDeclaration : Declaration{
251 public KeyDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax 267 public KeyDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
252)yyp), type , id ){} 268)yyp), type , id ){}
253 269
254public override string yyname { get { return "KeyDeclaration"; }} 270public override string yyname { get { return "KeyDeclaration"; }}
255public override int yynum { get { return 115; }} 271public override int yynum { get { return 117; }}
256public KeyDeclaration(Parser yyp):base(yyp){}} 272public KeyDeclaration(Parser yyp):base(yyp){}}
257//%+IntDeclaration+116 273//%+IntDeclaration+118
258public class IntDeclaration : Declaration{ 274public class IntDeclaration : Declaration{
259 public IntDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax 275 public IntDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
260)yyp), type , id ){} 276)yyp), type , id ){}
261 277
262public override string yyname { get { return "IntDeclaration"; }} 278public override string yyname { get { return "IntDeclaration"; }}
263public override int yynum { get { return 116; }} 279public override int yynum { get { return 118; }}
264public IntDeclaration(Parser yyp):base(yyp){}} 280public IntDeclaration(Parser yyp):base(yyp){}}
265//%+VectorDeclaration+117 281//%+VectorDeclaration+119
266public class VectorDeclaration : Declaration{ 282public class VectorDeclaration : Declaration{
267 public VectorDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax 283 public VectorDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
268)yyp), type , id ){} 284)yyp), type , id ){}
269 285
270public override string yyname { get { return "VectorDeclaration"; }} 286public override string yyname { get { return "VectorDeclaration"; }}
271public override int yynum { get { return 117; }} 287public override int yynum { get { return 119; }}
272public VectorDeclaration(Parser yyp):base(yyp){}} 288public VectorDeclaration(Parser yyp):base(yyp){}}
273//%+RotDeclaration+118 289//%+RotDeclaration+120
274public class RotDeclaration : Declaration{ 290public class RotDeclaration : Declaration{
275 public RotDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax 291 public RotDeclaration (Parser yyp, string type , string id ):base(((LSLSyntax
276)yyp), type , id ){} 292)yyp), type , id ){}
277 293
278public override string yyname { get { return "RotDeclaration"; }} 294public override string yyname { get { return "RotDeclaration"; }}
279public override int yynum { get { return 118; }} 295public override int yynum { get { return 120; }}
280public RotDeclaration(Parser yyp):base(yyp){}} 296public RotDeclaration(Parser yyp):base(yyp){}}
281//%+Typename+119 297//%+Typename+121
282public class Typename : SYMBOL{ 298public class Typename : SYMBOL{
283 public string yytext ; 299 public string yytext ;
284 public Typename (Parser yyp, string text ):base(((LSLSyntax 300 public Typename (Parser yyp, string text ):base(((LSLSyntax
@@ -286,9 +302,9 @@ public class Typename : SYMBOL{
286} 302}
287 303
288public override string yyname { get { return "Typename"; }} 304public override string yyname { get { return "Typename"; }}
289public override int yynum { get { return 119; }} 305public override int yynum { get { return 121; }}
290public Typename(Parser yyp):base(yyp){}} 306public Typename(Parser yyp):base(yyp){}}
291//%+Event+120 307//%+Event+122
292public class Event : SYMBOL{ 308public class Event : SYMBOL{
293 public string yytext ; 309 public string yytext ;
294 public Event (Parser yyp, string text ):base(((LSLSyntax 310 public Event (Parser yyp, string text ):base(((LSLSyntax
@@ -296,49 +312,57 @@ public class Event : SYMBOL{
296} 312}
297 313
298public override string yyname { get { return "Event"; }} 314public override string yyname { get { return "Event"; }}
299public override int yynum { get { return 120; }} 315public override int yynum { get { return 122; }}
300public Event(Parser yyp):base(yyp){}} 316public Event(Parser yyp):base(yyp){}}
301//%+VoidArgEvent+121 317//%+VoidArgEvent+123
302public class VoidArgEvent : Event{ 318public class VoidArgEvent : Event{
303 public VoidArgEvent (Parser yyp, string text ):base(((LSLSyntax 319 public VoidArgEvent (Parser yyp, string text ):base(((LSLSyntax
304)yyp), text ){} 320)yyp), text ){}
305 321
306public override string yyname { get { return "VoidArgEvent"; }} 322public override string yyname { get { return "VoidArgEvent"; }}
307public override int yynum { get { return 121; }} 323public override int yynum { get { return 123; }}
308public VoidArgEvent(Parser yyp):base(yyp){}} 324public VoidArgEvent(Parser yyp):base(yyp){}}
309//%+KeyArgEvent+122 325//%+KeyArgEvent+124
310public class KeyArgEvent : Event{ 326public class KeyArgEvent : Event{
311 public KeyArgEvent (Parser yyp, string text ):base(((LSLSyntax 327 public KeyArgEvent (Parser yyp, string text ):base(((LSLSyntax
312)yyp), text ){} 328)yyp), text ){}
313 329
314public override string yyname { get { return "KeyArgEvent"; }} 330public override string yyname { get { return "KeyArgEvent"; }}
315public override int yynum { get { return 122; }} 331public override int yynum { get { return 124; }}
316public KeyArgEvent(Parser yyp):base(yyp){}} 332public KeyArgEvent(Parser yyp):base(yyp){}}
317//%+IntArgEvent+123 333//%+IntArgEvent+125
318public class IntArgEvent : Event{ 334public class IntArgEvent : Event{
319 public IntArgEvent (Parser yyp, string text ):base(((LSLSyntax 335 public IntArgEvent (Parser yyp, string text ):base(((LSLSyntax
320)yyp), text ){} 336)yyp), text ){}
321 337
322public override string yyname { get { return "IntArgEvent"; }} 338public override string yyname { get { return "IntArgEvent"; }}
323public override int yynum { get { return 123; }} 339public override int yynum { get { return 125; }}
324public IntArgEvent(Parser yyp):base(yyp){}} 340public IntArgEvent(Parser yyp):base(yyp){}}
325//%+VectorArgEvent+124 341//%+VectorArgEvent+126
326public class VectorArgEvent : Event{ 342public class VectorArgEvent : Event{
327 public VectorArgEvent (Parser yyp, string text ):base(((LSLSyntax 343 public VectorArgEvent (Parser yyp, string text ):base(((LSLSyntax
328)yyp), text ){} 344)yyp), text ){}
329 345
330public override string yyname { get { return "VectorArgEvent"; }} 346public override string yyname { get { return "VectorArgEvent"; }}
331public override int yynum { get { return 124; }} 347public override int yynum { get { return 126; }}
332public VectorArgEvent(Parser yyp):base(yyp){}} 348public VectorArgEvent(Parser yyp):base(yyp){}}
333//%+IntRotRotArgEvent+125 349//%+IntRotRotArgEvent+127
334public class IntRotRotArgEvent : Event{ 350public class IntRotRotArgEvent : Event{
335 public IntRotRotArgEvent (Parser yyp, string text ):base(((LSLSyntax 351 public IntRotRotArgEvent (Parser yyp, string text ):base(((LSLSyntax
336)yyp), text ){} 352)yyp), text ){}
337 353
338public override string yyname { get { return "IntRotRotArgEvent"; }} 354public override string yyname { get { return "IntRotRotArgEvent"; }}
339public override int yynum { get { return 125; }} 355public override int yynum { get { return 127; }}
340public IntRotRotArgEvent(Parser yyp):base(yyp){}} 356public IntRotRotArgEvent(Parser yyp):base(yyp){}}
341//%+CompoundStatement+126 357//%+IntVecVecArgEvent+128
358public class IntVecVecArgEvent : Event{
359 public IntVecVecArgEvent (Parser yyp, string text ):base(((LSLSyntax
360)yyp), text ){}
361
362public override string yyname { get { return "IntVecVecArgEvent"; }}
363public override int yynum { get { return 128; }}
364public IntVecVecArgEvent(Parser yyp):base(yyp){}}
365//%+CompoundStatement+129
342public class CompoundStatement : SYMBOL{ 366public class CompoundStatement : SYMBOL{
343 public CompoundStatement (Parser yyp):base(((LSLSyntax 367 public CompoundStatement (Parser yyp):base(((LSLSyntax
344)yyp)){} 368)yyp)){}
@@ -347,9 +371,9 @@ public class CompoundStatement : SYMBOL{
347} 371}
348 372
349public override string yyname { get { return "CompoundStatement"; }} 373public override string yyname { get { return "CompoundStatement"; }}
350public override int yynum { get { return 126; }} 374public override int yynum { get { return 129; }}
351} 375}
352//%+StatementList+127 376//%+StatementList+130
353public class StatementList : SYMBOL{ 377public class StatementList : SYMBOL{
354 private void AddStatement ( Statement s ){ if ( s . kids . Top is IfStatement || s . kids . Top is WhileStatement || s . kids . Top is DoWhileStatement || s . kids . Top is ForLoop ) kids . Add ( s . kids . Pop ()); 378 private void AddStatement ( Statement s ){ if ( s . kids . Top is IfStatement || s . kids . Top is WhileStatement || s . kids . Top is DoWhileStatement || s . kids . Top is ForLoop ) kids . Add ( s . kids . Pop ());
355 else kids . Add ( s ); 379 else kids . Add ( s );
@@ -363,9 +387,9 @@ public class StatementList : SYMBOL{
363} 387}
364 388
365public override string yyname { get { return "StatementList"; }} 389public override string yyname { get { return "StatementList"; }}
366public override int yynum { get { return 127; }} 390public override int yynum { get { return 130; }}
367public StatementList(Parser yyp):base(yyp){}} 391public StatementList(Parser yyp):base(yyp){}}
368//%+Statement+128 392//%+Statement+131
369public class Statement : SYMBOL{ 393public class Statement : SYMBOL{
370 public Statement (Parser yyp, Declaration d ):base(((LSLSyntax 394 public Statement (Parser yyp, Declaration d ):base(((LSLSyntax
371)yyp)){ kids . Add ( d ); 395)yyp)){ kids . Add ( d );
@@ -411,9 +435,9 @@ public class Statement : SYMBOL{
411} 435}
412 436
413public override string yyname { get { return "Statement"; }} 437public override string yyname { get { return "Statement"; }}
414public override int yynum { get { return 128; }} 438public override int yynum { get { return 131; }}
415public Statement(Parser yyp):base(yyp){}} 439public Statement(Parser yyp):base(yyp){}}
416//%+EmptyStatement+129 440//%+EmptyStatement+132
417public class EmptyStatement : SYMBOL{ 441public class EmptyStatement : SYMBOL{
418 public EmptyStatement (Parser yyp):base(((LSLSyntax 442 public EmptyStatement (Parser yyp):base(((LSLSyntax
419)yyp)){} 443)yyp)){}
@@ -421,9 +445,9 @@ public class EmptyStatement : SYMBOL{
421} 445}
422 446
423public override string yyname { get { return "EmptyStatement"; }} 447public override string yyname { get { return "EmptyStatement"; }}
424public override int yynum { get { return 129; }} 448public override int yynum { get { return 132; }}
425} 449}
426//%+Assignment+130 450//%+Assignment+133
427public class Assignment : SYMBOL{ 451public class Assignment : SYMBOL{
428 protected string m_assignmentType ; 452 protected string m_assignmentType ;
429 public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax 453 public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax
@@ -443,9 +467,9 @@ public class Assignment : SYMBOL{
443} 467}
444 468
445public override string yyname { get { return "Assignment"; }} 469public override string yyname { get { return "Assignment"; }}
446public override int yynum { get { return 130; }} 470public override int yynum { get { return 133; }}
447public Assignment(Parser yyp):base(yyp){}} 471public Assignment(Parser yyp):base(yyp){}}
448//%+SimpleAssignment+131 472//%+SimpleAssignment+134
449public class SimpleAssignment : Assignment{ 473public class SimpleAssignment : Assignment{
450 public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax 474 public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax
451)yyp)){ m_assignmentType = assignmentType ; 475)yyp)){ m_assignmentType = assignmentType ;
@@ -455,9 +479,9 @@ public class SimpleAssignment : Assignment{
455} 479}
456 480
457public override string yyname { get { return "SimpleAssignment"; }} 481public override string yyname { get { return "SimpleAssignment"; }}
458public override int yynum { get { return 131; }} 482public override int yynum { get { return 134; }}
459public SimpleAssignment(Parser yyp):base(yyp){}} 483public SimpleAssignment(Parser yyp):base(yyp){}}
460//%+ReturnStatement+132 484//%+ReturnStatement+135
461public class ReturnStatement : SYMBOL{ 485public class ReturnStatement : SYMBOL{
462 public ReturnStatement (Parser yyp):base(((LSLSyntax 486 public ReturnStatement (Parser yyp):base(((LSLSyntax
463)yyp)){} 487)yyp)){}
@@ -467,9 +491,9 @@ public class ReturnStatement : SYMBOL{
467} 491}
468 492
469public override string yyname { get { return "ReturnStatement"; }} 493public override string yyname { get { return "ReturnStatement"; }}
470public override int yynum { get { return 132; }} 494public override int yynum { get { return 135; }}
471} 495}
472//%+JumpLabel+133 496//%+JumpLabel+136
473public class JumpLabel : SYMBOL{ 497public class JumpLabel : SYMBOL{
474 private string m_labelName ; 498 private string m_labelName ;
475 public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax 499 public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax
@@ -482,9 +506,9 @@ public class JumpLabel : SYMBOL{
482} 506}
483 507
484public override string yyname { get { return "JumpLabel"; }} 508public override string yyname { get { return "JumpLabel"; }}
485public override int yynum { get { return 133; }} 509public override int yynum { get { return 136; }}
486public JumpLabel(Parser yyp):base(yyp){}} 510public JumpLabel(Parser yyp):base(yyp){}}
487//%+JumpStatement+134 511//%+JumpStatement+137
488public class JumpStatement : SYMBOL{ 512public class JumpStatement : SYMBOL{
489 private string m_targetName ; 513 private string m_targetName ;
490 public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax 514 public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax
@@ -497,9 +521,9 @@ public class JumpStatement : SYMBOL{
497} 521}
498 522
499public override string yyname { get { return "JumpStatement"; }} 523public override string yyname { get { return "JumpStatement"; }}
500public override int yynum { get { return 134; }} 524public override int yynum { get { return 137; }}
501public JumpStatement(Parser yyp):base(yyp){}} 525public JumpStatement(Parser yyp):base(yyp){}}
502//%+StateChange+135 526//%+StateChange+138
503public class StateChange : SYMBOL{ 527public class StateChange : SYMBOL{
504 private string m_newState ; 528 private string m_newState ;
505 public StateChange (Parser yyp, string newState ):base(((LSLSyntax 529 public StateChange (Parser yyp, string newState ):base(((LSLSyntax
@@ -510,9 +534,9 @@ public class StateChange : SYMBOL{
510} 534}
511 535
512public override string yyname { get { return "StateChange"; }} 536public override string yyname { get { return "StateChange"; }}
513public override int yynum { get { return 135; }} 537public override int yynum { get { return 138; }}
514public StateChange(Parser yyp):base(yyp){}} 538public StateChange(Parser yyp):base(yyp){}}
515//%+IfStatement+136 539//%+IfStatement+139
516public class IfStatement : SYMBOL{ 540public class IfStatement : SYMBOL{
517 private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); 541 private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ());
518 else kids . Add ( s ); 542 else kids . Add ( s );
@@ -529,9 +553,9 @@ public class IfStatement : SYMBOL{
529} 553}
530 554
531public override string yyname { get { return "IfStatement"; }} 555public override string yyname { get { return "IfStatement"; }}
532public override int yynum { get { return 136; }} 556public override int yynum { get { return 139; }}
533public IfStatement(Parser yyp):base(yyp){}} 557public IfStatement(Parser yyp):base(yyp){}}
534//%+WhileStatement+137 558//%+WhileStatement+140
535public class WhileStatement : SYMBOL{ 559public class WhileStatement : SYMBOL{
536 public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax 560 public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax
537)yyp)){ kids . Add ( s ); 561)yyp)){ kids . Add ( s );
@@ -540,9 +564,9 @@ public class WhileStatement : SYMBOL{
540} 564}
541 565
542public override string yyname { get { return "WhileStatement"; }} 566public override string yyname { get { return "WhileStatement"; }}
543public override int yynum { get { return 137; }} 567public override int yynum { get { return 140; }}
544public WhileStatement(Parser yyp):base(yyp){}} 568public WhileStatement(Parser yyp):base(yyp){}}
545//%+DoWhileStatement+138 569//%+DoWhileStatement+141
546public class DoWhileStatement : SYMBOL{ 570public class DoWhileStatement : SYMBOL{
547 public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax 571 public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax
548)yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ()); 572)yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ());
@@ -551,9 +575,9 @@ public class DoWhileStatement : SYMBOL{
551} 575}
552 576
553public override string yyname { get { return "DoWhileStatement"; }} 577public override string yyname { get { return "DoWhileStatement"; }}
554public override int yynum { get { return 138; }} 578public override int yynum { get { return 141; }}
555public DoWhileStatement(Parser yyp):base(yyp){}} 579public DoWhileStatement(Parser yyp):base(yyp){}}
556//%+ForLoop+139 580//%+ForLoop+142
557public class ForLoop : SYMBOL{ 581public class ForLoop : SYMBOL{
558 public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax 582 public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax
559)yyp)){ kids . Add ( flsa ); 583)yyp)){ kids . Add ( flsa );
@@ -564,9 +588,9 @@ public class ForLoop : SYMBOL{
564} 588}
565 589
566public override string yyname { get { return "ForLoop"; }} 590public override string yyname { get { return "ForLoop"; }}
567public override int yynum { get { return 139; }} 591public override int yynum { get { return 142; }}
568public ForLoop(Parser yyp):base(yyp){}} 592public ForLoop(Parser yyp):base(yyp){}}
569//%+ForLoopStatement+140 593//%+ForLoopStatement+143
570public class ForLoopStatement : SYMBOL{ 594public class ForLoopStatement : SYMBOL{
571 public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax 595 public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax
572)yyp)){ kids . Add ( e ); 596)yyp)){ kids . Add ( e );
@@ -584,9 +608,9 @@ public class ForLoopStatement : SYMBOL{
584} 608}
585 609
586public override string yyname { get { return "ForLoopStatement"; }} 610public override string yyname { get { return "ForLoopStatement"; }}
587public override int yynum { get { return 140; }} 611public override int yynum { get { return 143; }}
588public ForLoopStatement(Parser yyp):base(yyp){}} 612public ForLoopStatement(Parser yyp):base(yyp){}}
589//%+FunctionCall+141 613//%+FunctionCall+144
590public class FunctionCall : SYMBOL{ 614public class FunctionCall : SYMBOL{
591 private string m_id ; 615 private string m_id ;
592 public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax 616 public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax
@@ -600,9 +624,9 @@ public class FunctionCall : SYMBOL{
600} 624}
601 625
602public override string yyname { get { return "FunctionCall"; }} 626public override string yyname { get { return "FunctionCall"; }}
603public override int yynum { get { return 141; }} 627public override int yynum { get { return 144; }}
604public FunctionCall(Parser yyp):base(yyp){}} 628public FunctionCall(Parser yyp):base(yyp){}}
605//%+ArgumentList+142 629//%+ArgumentList+145
606public class ArgumentList : SYMBOL{ 630public class ArgumentList : SYMBOL{
607 public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax 631 public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax
608)yyp)){ AddArgument ( a ); 632)yyp)){ AddArgument ( a );
@@ -616,14 +640,14 @@ public class ArgumentList : SYMBOL{
616} 640}
617 641
618public override string yyname { get { return "ArgumentList"; }} 642public override string yyname { get { return "ArgumentList"; }}
619public override int yynum { get { return 142; }} 643public override int yynum { get { return 145; }}
620public ArgumentList(Parser yyp):base(yyp){}} 644public ArgumentList(Parser yyp):base(yyp){}}
621//%+Argument+143 645//%+Argument+146
622public class Argument : SYMBOL{ 646public class Argument : SYMBOL{
623public override string yyname { get { return "Argument"; }} 647public override string yyname { get { return "Argument"; }}
624public override int yynum { get { return 143; }} 648public override int yynum { get { return 146; }}
625public Argument(Parser yyp):base(yyp){}} 649public Argument(Parser yyp):base(yyp){}}
626//%+ExpressionArgument+144 650//%+ExpressionArgument+147
627public class ExpressionArgument : Argument{ 651public class ExpressionArgument : Argument{
628 public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax 652 public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax
629)yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); 653)yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ());
@@ -631,9 +655,9 @@ public class ExpressionArgument : Argument{
631} 655}
632 656
633public override string yyname { get { return "ExpressionArgument"; }} 657public override string yyname { get { return "ExpressionArgument"; }}
634public override int yynum { get { return 144; }} 658public override int yynum { get { return 147; }}
635public ExpressionArgument(Parser yyp):base(yyp){}} 659public ExpressionArgument(Parser yyp):base(yyp){}}
636//%+Constant+145 660//%+Constant+148
637public class Constant : SYMBOL{ 661public class Constant : SYMBOL{
638 private string m_type ; 662 private string m_type ;
639 private string m_val ; 663 private string m_val ;
@@ -655,9 +679,9 @@ public class Constant : SYMBOL{
655} 679}
656 680
657public override string yyname { get { return "Constant"; }} 681public override string yyname { get { return "Constant"; }}
658public override int yynum { get { return 145; }} 682public override int yynum { get { return 148; }}
659public Constant(Parser yyp):base(yyp){}} 683public Constant(Parser yyp):base(yyp){}}
660//%+VectorConstant+146 684//%+VectorConstant+149
661public class VectorConstant : Constant{ 685public class VectorConstant : Constant{
662 public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax 686 public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax
663)yyp),"vector", null ){ kids . Add ( valX ); 687)yyp),"vector", null ){ kids . Add ( valX );
@@ -666,9 +690,9 @@ public class VectorConstant : Constant{
666} 690}
667 691
668public override string yyname { get { return "VectorConstant"; }} 692public override string yyname { get { return "VectorConstant"; }}
669public override int yynum { get { return 146; }} 693public override int yynum { get { return 149; }}
670public VectorConstant(Parser yyp):base(yyp){}} 694public VectorConstant(Parser yyp):base(yyp){}}
671//%+RotationConstant+147 695//%+RotationConstant+150
672public class RotationConstant : Constant{ 696public class RotationConstant : Constant{
673 public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax 697 public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax
674)yyp),"rotation", null ){ kids . Add ( valX ); 698)yyp),"rotation", null ){ kids . Add ( valX );
@@ -678,36 +702,36 @@ public class RotationConstant : Constant{
678} 702}
679 703
680public override string yyname { get { return "RotationConstant"; }} 704public override string yyname { get { return "RotationConstant"; }}
681public override int yynum { get { return 147; }} 705public override int yynum { get { return 150; }}
682public RotationConstant(Parser yyp):base(yyp){}} 706public RotationConstant(Parser yyp):base(yyp){}}
683//%+ListConstant+148 707//%+ListConstant+151
684public class ListConstant : Constant{ 708public class ListConstant : Constant{
685 public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax 709 public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax
686)yyp),"list", null ){ kids . Add ( al ); 710)yyp),"list", null ){ kids . Add ( al );
687} 711}
688 712
689public override string yyname { get { return "ListConstant"; }} 713public override string yyname { get { return "ListConstant"; }}
690public override int yynum { get { return 148; }} 714public override int yynum { get { return 151; }}
691public ListConstant(Parser yyp):base(yyp){}} 715public ListConstant(Parser yyp):base(yyp){}}
692//%+Expression+149 716//%+Expression+152
693public class Expression : SYMBOL{ 717public class Expression : SYMBOL{
694 protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); 718 protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ());
695 else kids . Add ( e ); 719 else kids . Add ( e );
696} 720}
697 721
698public override string yyname { get { return "Expression"; }} 722public override string yyname { get { return "Expression"; }}
699public override int yynum { get { return 149; }} 723public override int yynum { get { return 152; }}
700public Expression(Parser yyp):base(yyp){}} 724public Expression(Parser yyp):base(yyp){}}
701//%+ConstantExpression+150 725//%+ConstantExpression+153
702public class ConstantExpression : Expression{ 726public class ConstantExpression : Expression{
703 public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax 727 public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax
704)yyp)){ kids . Add ( c ); 728)yyp)){ kids . Add ( c );
705} 729}
706 730
707public override string yyname { get { return "ConstantExpression"; }} 731public override string yyname { get { return "ConstantExpression"; }}
708public override int yynum { get { return 150; }} 732public override int yynum { get { return 153; }}
709public ConstantExpression(Parser yyp):base(yyp){}} 733public ConstantExpression(Parser yyp):base(yyp){}}
710//%+IdentExpression+151 734//%+IdentExpression+154
711public class IdentExpression : Expression{ 735public class IdentExpression : Expression{
712 protected string m_name ; 736 protected string m_name ;
713 public IdentExpression (Parser yyp, string name ):base(((LSLSyntax 737 public IdentExpression (Parser yyp, string name ):base(((LSLSyntax
@@ -720,9 +744,9 @@ public class IdentExpression : Expression{
720} 744}
721 745
722public override string yyname { get { return "IdentExpression"; }} 746public override string yyname { get { return "IdentExpression"; }}
723public override int yynum { get { return 151; }} 747public override int yynum { get { return 154; }}
724public IdentExpression(Parser yyp):base(yyp){}} 748public IdentExpression(Parser yyp):base(yyp){}}
725//%+IdentDotExpression+152 749//%+IdentDotExpression+155
726public class IdentDotExpression : IdentExpression{ 750public class IdentDotExpression : IdentExpression{
727 private string m_member ; 751 private string m_member ;
728 public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax 752 public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax
@@ -736,18 +760,18 @@ public class IdentDotExpression : IdentExpression{
736} 760}
737 761
738public override string yyname { get { return "IdentDotExpression"; }} 762public override string yyname { get { return "IdentDotExpression"; }}
739public override int yynum { get { return 152; }} 763public override int yynum { get { return 155; }}
740public IdentDotExpression(Parser yyp):base(yyp){}} 764public IdentDotExpression(Parser yyp):base(yyp){}}
741//%+FunctionCallExpression+153 765//%+FunctionCallExpression+156
742public class FunctionCallExpression : Expression{ 766public class FunctionCallExpression : Expression{
743 public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax 767 public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax
744)yyp)){ kids . Add ( fc ); 768)yyp)){ kids . Add ( fc );
745} 769}
746 770
747public override string yyname { get { return "FunctionCallExpression"; }} 771public override string yyname { get { return "FunctionCallExpression"; }}
748public override int yynum { get { return 153; }} 772public override int yynum { get { return 156; }}
749public FunctionCallExpression(Parser yyp):base(yyp){}} 773public FunctionCallExpression(Parser yyp):base(yyp){}}
750//%+BinaryExpression+154 774//%+BinaryExpression+157
751public class BinaryExpression : Expression{ 775public class BinaryExpression : Expression{
752 private string m_expressionSymbol ; 776 private string m_expressionSymbol ;
753 public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax 777 public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax
@@ -762,9 +786,9 @@ public class BinaryExpression : Expression{
762} 786}
763 787
764public override string yyname { get { return "BinaryExpression"; }} 788public override string yyname { get { return "BinaryExpression"; }}
765public override int yynum { get { return 154; }} 789public override int yynum { get { return 157; }}
766public BinaryExpression(Parser yyp):base(yyp){}} 790public BinaryExpression(Parser yyp):base(yyp){}}
767//%+UnaryExpression+155 791//%+UnaryExpression+158
768public class UnaryExpression : Expression{ 792public class UnaryExpression : Expression{
769 private string m_unarySymbol ; 793 private string m_unarySymbol ;
770 public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax 794 public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax
@@ -778,9 +802,9 @@ public class UnaryExpression : Expression{
778} 802}
779 803
780public override string yyname { get { return "UnaryExpression"; }} 804public override string yyname { get { return "UnaryExpression"; }}
781public override int yynum { get { return 155; }} 805public override int yynum { get { return 158; }}
782public UnaryExpression(Parser yyp):base(yyp){}} 806public UnaryExpression(Parser yyp):base(yyp){}}
783//%+TypecastExpression+156 807//%+TypecastExpression+159
784public class TypecastExpression : Expression{ 808public class TypecastExpression : Expression{
785 private string m_typecastType ; 809 private string m_typecastType ;
786 public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax 810 public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax
@@ -794,18 +818,18 @@ public class TypecastExpression : Expression{
794} 818}
795 819
796public override string yyname { get { return "TypecastExpression"; }} 820public override string yyname { get { return "TypecastExpression"; }}
797public override int yynum { get { return 156; }} 821public override int yynum { get { return 159; }}
798public TypecastExpression(Parser yyp):base(yyp){}} 822public TypecastExpression(Parser yyp):base(yyp){}}
799//%+ParenthesisExpression+157 823//%+ParenthesisExpression+160
800public class ParenthesisExpression : Expression{ 824public class ParenthesisExpression : Expression{
801 public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax 825 public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax
802)yyp)){ kids . Add ( s ); 826)yyp)){ kids . Add ( s );
803} 827}
804 828
805public override string yyname { get { return "ParenthesisExpression"; }} 829public override string yyname { get { return "ParenthesisExpression"; }}
806public override int yynum { get { return 157; }} 830public override int yynum { get { return 160; }}
807public ParenthesisExpression(Parser yyp):base(yyp){}} 831public ParenthesisExpression(Parser yyp):base(yyp){}}
808//%+IncrementDecrementExpression+158 832//%+IncrementDecrementExpression+161
809public class IncrementDecrementExpression : Expression{ 833public class IncrementDecrementExpression : Expression{
810 private string m_name ; 834 private string m_name ;
811 private string m_operation ; 835 private string m_operation ;
@@ -833,7 +857,7 @@ public class IncrementDecrementExpression : Expression{
833} 857}
834 858
835public override string yyname { get { return "IncrementDecrementExpression"; }} 859public override string yyname { get { return "IncrementDecrementExpression"; }}
836public override int yynum { get { return 158; }} 860public override int yynum { get { return 161; }}
837public IncrementDecrementExpression(Parser yyp):base(yyp){}} 861public IncrementDecrementExpression(Parser yyp):base(yyp){}}
838 862
839public class LSLProgramRoot_1 : LSLProgramRoot { 863public class LSLProgramRoot_1 : LSLProgramRoot {
@@ -1005,6 +1029,18 @@ public class StateBody_12 : StateBody {
1005 ((IntRotRotArgStateEvent)(yyq.StackAt(0).m_value)) 1029 ((IntRotRotArgStateEvent)(yyq.StackAt(0).m_value))
1006 ){}} 1030 ){}}
1007 1031
1032public class StateBody_13 : StateBody {
1033 public StateBody_13(Parser yyq):base(yyq,
1034 ((IntVecVecArgStateEvent)(yyq.StackAt(0).m_value))
1035 ){}}
1036
1037public class StateBody_14 : StateBody {
1038 public StateBody_14(Parser yyq):base(yyq,
1039 ((StateBody)(yyq.StackAt(1).m_value))
1040 ,
1041 ((IntVecVecArgStateEvent)(yyq.StackAt(0).m_value))
1042 ){}}
1043
1008public class StateEvent_1 : StateEvent { 1044public class StateEvent_1 : StateEvent {
1009 public StateEvent_1(Parser yyq):base(yyq, 1045 public StateEvent_1(Parser yyq):base(yyq,
1010 ((Event)(yyq.StackAt(4).m_value)) 1046 ((Event)(yyq.StackAt(4).m_value))
@@ -1057,6 +1093,15 @@ public class IntRotRotArgStateEvent_1 : IntRotRotArgStateEvent {
1057 ((CompoundStatement)(yyq.StackAt(0).m_value)) 1093 ((CompoundStatement)(yyq.StackAt(0).m_value))
1058 ){}} 1094 ){}}
1059 1095
1096public class IntVecVecArgStateEvent_1 : IntVecVecArgStateEvent {
1097 public IntVecVecArgStateEvent_1(Parser yyq):base(yyq,
1098 ((IntVecVecArgEvent)(yyq.StackAt(4).m_value))
1099 .yytext,
1100 ((IntVecVecArgumentDeclarationList)(yyq.StackAt(2).m_value))
1101 ,
1102 ((CompoundStatement)(yyq.StackAt(0).m_value))
1103 ){}}
1104
1060public class ArgumentDeclarationList_1 : ArgumentDeclarationList { 1105public class ArgumentDeclarationList_1 : ArgumentDeclarationList {
1061 public ArgumentDeclarationList_1(Parser yyq):base(yyq, 1106 public ArgumentDeclarationList_1(Parser yyq):base(yyq,
1062 ((Declaration)(yyq.StackAt(0).m_value)) 1107 ((Declaration)(yyq.StackAt(0).m_value))
@@ -1093,6 +1138,15 @@ public class IntRotRotArgumentDeclarationList_1 : IntRotRotArgumentDeclarationLi
1093 ((RotDeclaration)(yyq.StackAt(0).m_value)) 1138 ((RotDeclaration)(yyq.StackAt(0).m_value))
1094 ){}} 1139 ){}}
1095 1140
1141public class IntVecVecArgumentDeclarationList_1 : IntVecVecArgumentDeclarationList {
1142 public IntVecVecArgumentDeclarationList_1(Parser yyq):base(yyq,
1143 ((IntDeclaration)(yyq.StackAt(4).m_value))
1144 ,
1145 ((VectorDeclaration)(yyq.StackAt(2).m_value))
1146 ,
1147 ((VectorDeclaration)(yyq.StackAt(0).m_value))
1148 ){}}
1149
1096public class Declaration_1 : Declaration { 1150public class Declaration_1 : Declaration {
1097 public Declaration_1(Parser yyq):base(yyq, 1151 public Declaration_1(Parser yyq):base(yyq,
1098 ((Typename)(yyq.StackAt(1).m_value)) 1152 ((Typename)(yyq.StackAt(1).m_value))
@@ -2088,51 +2142,46 @@ public class Typename_7 : Typename {
2088 2142
2089public class Event_1 : Event { 2143public class Event_1 : Event {
2090 public Event_1(Parser yyq):base(yyq, 2144 public Event_1(Parser yyq):base(yyq,
2091 ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) 2145 ((CONTROL_EVENT)(yyq.StackAt(0).m_value))
2092 .yytext){}} 2146 .yytext){}}
2093 2147
2094public class Event_2 : Event { 2148public class Event_2 : Event {
2095 public Event_2(Parser yyq):base(yyq, 2149 public Event_2(Parser yyq):base(yyq,
2096 ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) 2150 ((DATASERVER_EVENT)(yyq.StackAt(0).m_value))
2097 .yytext){}} 2151 .yytext){}}
2098 2152
2099public class Event_3 : Event { 2153public class Event_3 : Event {
2100 public Event_3(Parser yyq):base(yyq, 2154 public Event_3(Parser yyq):base(yyq,
2101 ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) 2155 ((EMAIL_EVENT)(yyq.StackAt(0).m_value))
2102 .yytext){}} 2156 .yytext){}}
2103 2157
2104public class Event_4 : Event { 2158public class Event_4 : Event {
2105 public Event_4(Parser yyq):base(yyq, 2159 public Event_4(Parser yyq):base(yyq,
2106 ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) 2160 ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value))
2107 .yytext){}} 2161 .yytext){}}
2108 2162
2109public class Event_5 : Event { 2163public class Event_5 : Event {
2110 public Event_5(Parser yyq):base(yyq, 2164 public Event_5(Parser yyq):base(yyq,
2111 ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) 2165 ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value))
2112 .yytext){}} 2166 .yytext){}}
2113 2167
2114public class Event_6 : Event { 2168public class Event_6 : Event {
2115 public Event_6(Parser yyq):base(yyq, 2169 public Event_6(Parser yyq):base(yyq,
2116 ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) 2170 ((LISTEN_EVENT)(yyq.StackAt(0).m_value))
2117 .yytext){}} 2171 .yytext){}}
2118 2172
2119public class Event_7 : Event { 2173public class Event_7 : Event {
2120 public Event_7(Parser yyq):base(yyq, 2174 public Event_7(Parser yyq):base(yyq,
2121 ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) 2175 ((MONEY_EVENT)(yyq.StackAt(0).m_value))
2122 .yytext){}} 2176 .yytext){}}
2123 2177
2124public class Event_8 : Event { 2178public class Event_8 : Event {
2125 public Event_8(Parser yyq):base(yyq, 2179 public Event_8(Parser yyq):base(yyq,
2126 ((MONEY_EVENT)(yyq.StackAt(0).m_value)) 2180 ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value))
2127 .yytext){}} 2181 .yytext){}}
2128 2182
2129public class Event_9 : Event { 2183public class Event_9 : Event {
2130 public Event_9(Parser yyq):base(yyq, 2184 public Event_9(Parser yyq):base(yyq,
2131 ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value))
2132 .yytext){}}
2133
2134public class Event_10 : Event {
2135 public Event_10(Parser yyq):base(yyq,
2136 ((HTTP_REQUEST_EVENT)(yyq.StackAt(0).m_value)) 2185 ((HTTP_REQUEST_EVENT)(yyq.StackAt(0).m_value))
2137 .yytext){}} 2186 .yytext){}}
2138 2187
@@ -2255,6 +2304,11 @@ public class IntRotRotArgEvent_1 : IntRotRotArgEvent {
2255 public IntRotRotArgEvent_1(Parser yyq):base(yyq, 2304 public IntRotRotArgEvent_1(Parser yyq):base(yyq,
2256 ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) 2305 ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value))
2257 .yytext){}} 2306 .yytext){}}
2307
2308public class IntVecVecArgEvent_1 : IntVecVecArgEvent {
2309 public IntVecVecArgEvent_1(Parser yyq):base(yyq,
2310 ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value))
2311 .yytext){}}
2258public class yyLSLSyntax 2312public class yyLSLSyntax
2259: YyParser { 2313: YyParser {
2260 public override object Action(Parser yyq,SYMBOL yysym, int yyact) { 2314 public override object Action(Parser yyq,SYMBOL yysym, int yyact) {
@@ -2271,11 +2325,11 @@ public class ArgumentList_3 : ArgumentList {
2271public class ArgumentDeclarationList_4 : ArgumentDeclarationList { 2325public class ArgumentDeclarationList_4 : ArgumentDeclarationList {
2272 public ArgumentDeclarationList_4(Parser yyq):base(yyq){}} 2326 public ArgumentDeclarationList_4(Parser yyq):base(yyq){}}
2273 2327
2274public class ArgumentList_4 : ArgumentList {
2275 public ArgumentList_4(Parser yyq):base(yyq){}}
2276
2277public class ArgumentDeclarationList_5 : ArgumentDeclarationList { 2328public class ArgumentDeclarationList_5 : ArgumentDeclarationList {
2278 public ArgumentDeclarationList_5(Parser yyq):base(yyq){}} 2329 public ArgumentDeclarationList_5(Parser yyq):base(yyq){}}
2330
2331public class ArgumentList_4 : ArgumentList {
2332 public ArgumentList_4(Parser yyq):base(yyq){}}
2279public yyLSLSyntax 2333public yyLSLSyntax
2280():base() { arr = new int[] { 2334():base() { arr = new int[] {
2281101,4,6,52,0, 2335101,4,6,52,0,
@@ -2287,9 +2341,9 @@ public yyLSLSyntax
228797,0,109,0,82, 234197,0,109,0,82,
22880,111,0,111,0, 23420,111,0,111,0,
2289116,0,1,96,1, 2343116,0,1,96,1,
22902,104,18,1,2799, 23442,104,18,1,2820,
2291102,2,0,105,5, 2345102,2,0,105,5,
2292370,1,0,106,18, 2346382,1,0,106,18,
22931,0,0,2,0, 23471,0,0,2,0,
22941,1,107,18,1, 23481,1,107,18,1,
22951,108,20,109,4, 23491,108,20,109,4,
@@ -2350,7 +2404,7 @@ public yyLSLSyntax
2350121,0,112,0,101, 2404121,0,112,0,101,
23510,110,0,97,0, 24050,110,0,97,0,
2352109,0,101,0,1, 2406109,0,101,0,1,
2353119,1,2,2,0, 2407121,1,2,2,0,
23541,9,131,18,1, 24081,9,131,18,1,
23559,132,20,133,4, 24099,132,20,133,4,
235610,73,0,68,0, 241010,73,0,68,0,
@@ -2364,45 +2418,41 @@ public yyLSLSyntax
236465,0,82,0,69, 241865,0,82,0,69,
23650,78,0,1,16, 24190,78,0,1,16,
23661,1,2,0,1, 24201,1,2,0,1,
23672796,137,18,1,2796, 24212797,137,18,1,2797,
2368138,20,139,4,50, 2422138,20,139,4,18,
242383,0,69,0,77,
24240,73,0,67,0,
242579,0,76,0,79,
24260,78,0,1,11,
24271,1,2,0,1,
24282798,140,18,1,2798,
2429141,20,142,4,34,
236971,0,108,0,111, 243071,0,108,0,111,
23700,98,0,97,0, 24310,98,0,97,0,
2371108,0,86,0,97, 2432108,0,68,0,101,
23720,114,0,105,0, 24330,102,0,105,0,
237397,0,98,0,108, 2434110,0,105,0,116,
23740,101,0,68,0, 24350,105,0,111,0,
2375101,0,99,0,108, 2436110,0,115,0,1,
23760,97,0,114,0, 243797,1,2,2,0,
237797,0,116,0,105, 24381,2632,143,18,1,
23780,111,0,110,0, 24392632,144,20,145,4,
23791,98,1,2,2, 244044,73,0,110,0,
23800,1,2797,140,18, 2441116,0,86,0,101,
23811,2797,141,20,142, 24420,99,0,86,0,
23824,48,71,0,108, 2443101,0,99,0,65,
23830,111,0,98,0, 24440,114,0,103,0,
238497,0,108,0,70, 244583,0,116,0,97,
23850,117,0,110,0, 24460,116,0,101,0,
238699,0,116,0,105, 244769,0,118,0,101,
23870,111,0,110,0, 24480,110,0,116,0,
238868,0,101,0,102, 24491,109,1,2,2,
23890,105,0,110,0, 24500,1,18,146,18,
2390105,0,116,0,105,
23910,111,0,110,0,
23921,99,1,2,2,
23930,1,2798,143,18,
23941,2798,138,2,0,
23951,2799,104,1,2800,
2396144,18,1,2800,145,
239723,146,4,6,69,
23980,79,0,70,0,
23991,2,1,6,2,
24000,1,18,147,18,
24011,18,129,2,0, 24511,18,129,2,0,
24021,19,148,18,1, 24521,19,147,18,1,
240319,132,2,0,1, 245319,132,2,0,1,
240420,149,18,1,20, 245420,148,18,1,20,
2405150,20,151,4,46, 2455149,20,150,4,46,
240665,0,114,0,103, 245665,0,114,0,103,
24070,117,0,109,0, 24570,117,0,109,0,
2408101,0,110,0,116, 2458101,0,110,0,116,
@@ -2412,300 +2462,326 @@ public yyLSLSyntax
2412116,0,105,0,111, 2462116,0,105,0,111,
24130,110,0,76,0, 24630,110,0,76,0,
2414105,0,115,0,116, 2464105,0,115,0,116,
24150,1,109,1,2, 24650,1,110,1,2,
24162,0,1,21,152, 24662,0,1,21,151,
241718,1,21,153,20, 246718,1,21,152,20,
2418154,4,10,67,0, 2468153,4,10,67,0,
241979,0,77,0,77, 246979,0,77,0,77,
24200,65,0,1,14, 24700,65,0,1,14,
24211,1,2,0,1, 24711,1,2,0,1,
24221694,155,18,1,1694, 24721694,154,18,1,1694,
2423156,20,157,4,32, 2473155,20,156,4,32,
242470,0,111,0,114, 247470,0,111,0,114,
24250,76,0,111,0, 24750,76,0,111,0,
2426111,0,112,0,83, 2476111,0,112,0,83,
24270,116,0,97,0, 24770,116,0,97,0,
2428116,0,101,0,109, 2478116,0,101,0,109,
24290,101,0,110,0, 24790,101,0,110,0,
2430116,0,1,140,1, 2480116,0,1,143,1,
24312,2,0,1,1695, 24812,2,0,1,1695,
2432158,18,1,1695,153, 2482157,18,1,1695,152,
24332,0,1,30,159, 24832,0,1,30,158,
243418,1,30,160,20, 248418,1,30,159,20,
2435161,4,22,68,0, 2485160,4,22,68,0,
2436101,0,99,0,108, 2486101,0,99,0,108,
24370,97,0,114,0, 24870,97,0,114,0,
243897,0,116,0,105, 248897,0,116,0,105,
24390,111,0,110,0, 24890,111,0,110,0,
24401,114,1,2,2, 24901,116,1,2,2,
24410,1,31,162,18, 24910,1,31,161,18,
24421,31,163,20,164, 24921,31,162,20,163,
24434,22,82,0,73, 24934,22,82,0,73,
24440,71,0,72,0, 24940,71,0,72,0,
244584,0,95,0,80, 249584,0,95,0,80,
24460,65,0,82,0, 24960,65,0,82,0,
244769,0,78,0,1, 249769,0,78,0,1,
244817,1,1,2,0, 249817,1,1,2,0,
24491,32,165,18,1, 24991,32,164,18,1,
245032,166,20,167,4, 250032,165,20,166,4,
245120,76,0,69,0, 250120,76,0,69,0,
245270,0,84,0,95, 250270,0,84,0,95,
24530,66,0,82,0, 25030,66,0,82,0,
245465,0,67,0,69, 250465,0,67,0,69,
24550,1,12,1,1, 25050,1,12,1,1,
24562,0,1,1114,168, 25062,0,1,2818,167,
245718,1,1114,132,2, 250718,1,2818,168,20,
24580,1,2735,169,18, 2508169,4,48,71,0,
24591,2735,163,2,0, 2509108,0,111,0,98,
24601,1152,170,18,1, 25100,97,0,108,0,
24611152,171,20,172,4, 251170,0,117,0,110,
246232,83,0,105,0, 25120,99,0,116,0,
2463109,0,112,0,108, 2513105,0,111,0,110,
24640,101,0,65,0, 25140,68,0,101,0,
2465115,0,115,0,105, 2515102,0,105,0,110,
24660,103,0,110,0, 25160,105,0,116,0,
2467109,0,101,0,110, 2517105,0,111,0,110,
24680,116,0,1,131, 25180,1,99,1,2,
25192,0,1,2819,170,
252018,1,2819,171,20,
2521172,4,50,71,0,
2522108,0,111,0,98,
25230,97,0,108,0,
252486,0,97,0,114,
25250,105,0,97,0,
252698,0,108,0,101,
25270,68,0,101,0,
252899,0,108,0,97,
25290,114,0,97,0,
2530116,0,105,0,111,
25310,110,0,1,98,
24691,2,2,0,1, 25321,2,2,0,1,
24701117,173,18,1,1117, 25332820,104,1,1114,173,
2471174,20,175,4,28, 253418,1,1114,132,2,
247280,0,69,0,82, 25350,1,1152,174,18,
24730,67,0,69,0, 25361,1152,175,20,176,
247478,0,84,0,95, 25374,32,83,0,105,
25380,109,0,112,0,
2539108,0,101,0,65,
25400,115,0,115,0,
2541105,0,103,0,110,
25420,109,0,101,0,
2543110,0,116,0,1,
2544134,1,2,2,0,
25451,1117,177,18,1,
25461117,178,20,179,4,
254728,80,0,69,0,
254882,0,67,0,69,
25490,78,0,84,0,
255095,0,69,0,81,
25510,85,0,65,0,
255276,0,83,0,1,
255310,1,1,2,0,
25541,40,180,18,1,
255540,132,2,0,1,
255641,181,18,1,41,
2557135,2,0,1,42,
2558182,18,1,42,183,
255920,184,4,20,69,
25600,120,0,112,0,
2561114,0,101,0,115,
25620,115,0,105,0,
2563111,0,110,0,1,
2564152,1,2,2,0,
25651,43,185,18,1,
256643,186,20,187,4,
256722,82,0,73,0,
256871,0,72,0,84,
25690,95,0,83,0,
257072,0,73,0,70,
25710,84,0,1,41,
25721,1,2,0,1,
257344,188,18,1,44,
2574132,2,0,1,1159,
2575189,18,1,1159,183,
25762,0,1,46,190,
257718,1,46,191,20,
2578192,4,12,80,0,
257969,0,82,0,73,
25800,79,0,68,0,
25811,24,1,1,2,
25820,1,47,193,18,
25831,47,132,2,0,
25841,48,194,18,1,
258548,195,20,196,4,
258618,68,0,69,0,
258767,0,82,0,69,
25880,77,0,69,0,
258978,0,84,0,1,
25905,1,1,2,0,
25911,49,197,18,1,
259249,198,20,199,4,
259318,73,0,78,0,
259467,0,82,0,69,
25950,77,0,69,0,
259678,0,84,0,1,
25974,1,1,2,0,
25981,50,200,18,1,
259950,195,2,0,1,
260051,201,18,1,51,
2601198,2,0,1,52,
2602202,18,1,52,135,
26032,0,1,2281,203,
260418,1,2281,175,2,
26050,1,2754,204,18,
26061,2754,149,2,0,
26071,1730,205,18,1,
26081730,175,2,0,1,
26091731,206,18,1,1731,
2610138,2,0,1,61,
2611207,18,1,61,129,
26122,0,1,62,208,
261318,1,62,162,2,
26140,1,63,209,18,
26151,63,132,2,0,
26161,2761,210,18,1,
26172761,211,20,212,4,
261812,69,0,81,0,
261985,0,65,0,76,
26200,83,0,1,15,
26211,1,2,0,1,
262265,213,18,1,65,
2623191,2,0,1,66,
2624214,18,1,66,132,
26252,0,1,67,215,
262618,1,67,195,2,
26270,1,68,216,18,
26281,68,198,2,0,
26291,69,217,18,1,
263069,195,2,0,1,
263170,218,18,1,70,
2632198,2,0,1,71,
2633219,18,1,71,135,
26342,0,1,73,220,
263518,1,73,183,2,
26360,1,74,221,18,
26371,74,162,2,0,
26381,1189,222,18,1,
26391189,223,20,224,4,
264022,83,0,84,0,
264165,0,82,0,95,
24750,69,0,81,0, 26420,69,0,81,0,
247685,0,65,0,76, 264385,0,65,0,76,
24770,83,0,1,10, 26440,83,0,1,8,
24781,1,2,0,1, 26451,1,2,0,1,
247940,176,18,1,40, 264676,225,18,1,76,
2480132,2,0,1,41, 2647226,20,227,4,20,
2481177,18,1,41,135, 264876,0,69,0,70,
24822,0,1,42,178, 26490,84,0,95,0,
248318,1,42,179,20, 265083,0,72,0,73,
2484180,4,20,69,0, 26510,70,0,84,0,
2485120,0,112,0,114, 26521,40,1,1,2,
24860,101,0,115,0, 26530,1,1153,228,18,
2487115,0,105,0,111, 26541,1153,229,20,230,
24880,110,0,1,149, 26554,24,83,0,76,
24891,2,2,0,1, 26560,65,0,83,0,
249043,181,18,1,43, 265772,0,95,0,69,
2491182,20,183,4,22, 26580,81,0,85,0,
249282,0,73,0,71, 265965,0,76,0,83,
24930,72,0,84,0, 26600,1,9,1,1,
249495,0,83,0,72, 26612,0,1,79,231,
24950,73,0,70,0, 266218,1,79,232,20,
249684,0,1,41,1, 2663233,4,10,84,0,
24971,2,0,1,44, 266473,0,76,0,68,
2498184,18,1,44,132, 26650,69,0,1,36,
24992,0,1,1159,185,
250018,1,1159,179,2,
25010,1,46,186,18,
25021,46,187,20,188,
25034,12,80,0,69,
25040,82,0,73,0,
250579,0,68,0,1,
250624,1,1,2,0,
25071,47,189,18,1,
250847,132,2,0,1,
250948,190,18,1,48,
2510191,20,192,4,18,
251168,0,69,0,67,
25120,82,0,69,0,
251377,0,69,0,78,
25140,84,0,1,5,
25151,1,2,0,1, 26661,1,2,0,1,
251649,193,18,1,49, 26671195,234,18,1,1195,
2517194,20,195,4,18, 2668183,2,0,1,82,
251873,0,78,0,67, 2669235,18,1,82,183,
25190,82,0,69,0, 26702,0,1,1123,236,
252077,0,69,0,78, 267118,1,1123,183,2,
25210,84,0,1,4, 26720,1,85,237,18,
26731,85,238,20,239,
26744,26,83,0,84,
26750,82,0,79,0,
267675,0,69,0,95,
26770,83,0,84,0,
267882,0,79,0,75,
26790,69,0,1,39,
25221,1,2,0,1, 26801,1,2,0,1,
252350,196,18,1,50, 26812547,240,18,1,2547,
2524191,2,0,1,51, 2682241,20,242,4,28,
2525197,18,1,51,194, 268373,0,110,0,116,
25262,0,1,52,198, 26840,68,0,101,0,
252718,1,52,135,2, 268599,0,108,0,97,
25280,1,2281,199,18, 26860,114,0,97,0,
25291,2281,171,2,0, 2687116,0,105,0,111,
25301,1730,200,18,1, 26880,110,0,1,118,
25311730,171,2,0,1, 26891,2,2,0,1,
25321731,201,18,1,1731, 269089,243,18,1,89,
2533202,20,203,4,18, 2691244,20,245,4,10,
253483,0,69,0,77, 269277,0,73,0,78,
25350,73,0,67,0, 26930,85,0,83,0,
253679,0,76,0,79, 26941,19,1,1,2,
25370,78,0,1,11, 26950,1,2318,246,18,
26961,2318,138,2,0,
26971,2624,247,18,1,
26982624,144,2,0,1,
269993,248,18,1,93,
2700183,2,0,1,97,
2701249,18,1,97,250,
270220,251,4,14,65,
27030,77,0,80,0,
270495,0,65,0,77,
27050,80,0,1,38,
25381,1,2,0,1, 27061,1,2,0,1,
253961,204,18,1,61, 2707102,252,18,1,102,
2540129,2,0,1,62, 2708253,20,254,4,22,
2541205,18,1,62,163, 270969,0,88,0,67,
25422,0,1,63,206,
254318,1,63,132,2,
25440,1,65,207,18,
25451,65,187,2,0,
25461,66,208,18,1,
254766,132,2,0,1,
254867,209,18,1,67,
2549191,2,0,1,68,
2550210,18,1,68,194,
25512,0,1,69,211,
255218,1,69,191,2,
25530,1,70,212,18,
25541,70,194,2,0,
25551,71,213,18,1,
255671,135,2,0,1,
255773,214,18,1,73,
2558179,2,0,1,74,
2559215,18,1,74,163,
25602,0,1,1189,216,
256118,1,1189,217,20,
2562218,4,22,83,0,
256384,0,65,0,82,
25640,95,0,69,0,
256581,0,85,0,65,
25660,76,0,83,0,
25671,8,1,1,2,
25680,1,76,219,18,
25691,76,220,20,221,
25704,20,76,0,69,
25710,70,0,84,0,
257295,0,83,0,72,
25730,73,0,70,0,
257484,0,1,40,1,
25751,2,0,1,1153,
2576222,18,1,1153,223,
257720,224,4,24,83,
25780,76,0,65,0, 27100,76,0,65,0,
257983,0,72,0,95, 271177,0,65,0,84,
27120,73,0,79,0,
271378,0,1,37,1,
27141,2,0,1,1775,
2715255,18,1,1775,162,
27162,0,1,107,256,
271718,1,107,183,2,
27180,1,2337,257,18,
27191,2337,162,2,0,
27201,1224,258,18,1,
27211224,175,2,0,1,
27221225,259,18,1,1225,
2723260,20,261,4,24,
272477,0,73,0,78,
27250,85,0,83,0,
272695,0,69,0,81,
27270,85,0,65,0,
272876,0,83,0,1,
27297,1,1,2,0,
27301,112,262,18,1,
2731112,263,20,264,4,
273228,71,0,82,0,
273369,0,65,0,84,
27340,69,0,82,0,
273595,0,69,0,81,
27360,85,0,65,0,
273776,0,83,0,1,
273832,1,1,2,0,
27391,1188,265,18,1,
27401188,175,2,0,1,
27411231,266,18,1,1231,
2742183,2,0,1,118,
2743267,18,1,118,183,
27442,0,1,2816,268,
274518,1,2816,168,2,
27460,1,1737,269,18,
27471,1737,183,2,0,
27481,124,270,18,1,
2749124,271,20,272,4,
275022,76,0,69,0,
275183,0,83,0,95,
25800,69,0,81,0, 27520,69,0,81,0,
258185,0,65,0,76, 275385,0,65,0,76,
25820,83,0,1,9, 27540,83,0,1,31,
25831,1,2,0,1,
258479,225,18,1,79,
2585226,20,227,4,10,
258684,0,73,0,76,
25870,68,0,69,0,
25881,36,1,1,2,
25890,1,1195,228,18,
25901,1195,179,2,0,
25911,82,229,18,1,
259282,179,2,0,1,
25931123,230,18,1,1123,
2594179,2,0,1,85,
2595231,18,1,85,232,
259620,233,4,26,83,
25970,84,0,82,0,
259879,0,75,0,69,
25990,95,0,83,0,
260084,0,82,0,79,
26010,75,0,69,0,
26021,39,1,1,2,
26030,1,2547,234,18,
26041,2547,235,20,236,
26054,24,86,0,111,
26060,105,0,100,0,
260765,0,114,0,103,
26080,69,0,118,0,
2609101,0,110,0,116,
26100,1,121,1,2,
26112,0,1,89,237,
261218,1,89,238,20,
2613239,4,10,77,0,
261473,0,78,0,85,
26150,83,0,1,19,
26161,1,2,0,1, 27551,1,2,0,1,
26172318,240,18,1,2318, 27562821,273,18,1,2821,
2618202,2,0,1,2788, 2757274,23,275,4,6,
2619241,18,1,2788,242, 275869,0,79,0,70,
262020,243,4,12,83, 27590,1,2,1,6,
26210,116,0,97,0, 27602,0,1,130,276,
2622116,0,101,0,115, 276118,1,130,183,2,
26230,1,100,1,2, 27620,1,2742,277,18,
26242,0,1,93,244, 27631,2742,278,20,279,
262518,1,93,179,2, 27644,10,83,0,116,
26260,1,97,245,18, 27650,97,0,116,0,
26271,97,246,20,247, 2766101,0,1,101,1,
26284,14,65,0,77, 27672,2,0,1,1803,
26290,80,0,95,0, 2768280,18,1,1803,281,
263065,0,77,0,80, 276920,282,4,18,83,
26310,1,38,1,1,
26322,0,1,2795,248,
263318,1,2795,141,2,
26340,1,102,249,18,
26351,102,250,20,251,
26364,22,69,0,88,
26370,67,0,76,0,
263865,0,77,0,65,
26390,84,0,73,0,
264079,0,78,0,1,
264137,1,1,2,0,
26421,1775,252,18,1,
26431775,163,2,0,1,
2644107,253,18,1,107,
2645179,2,0,1,2337,
2646254,18,1,2337,163,
26472,0,1,1224,255,
264818,1,1224,171,2,
26490,1,1225,256,18,
26501,1225,257,20,258,
26514,24,77,0,73,
26520,78,0,85,0,
265383,0,95,0,69,
26540,81,0,85,0,
265565,0,76,0,83,
26560,1,7,1,1,
26572,0,1,112,259,
265818,1,112,260,20,
2659261,4,28,71,0,
266082,0,69,0,65,
26610,84,0,69,0,
266282,0,95,0,69,
26630,81,0,85,0,
266465,0,76,0,83,
26650,1,32,1,1,
26662,0,1,1188,262,
266718,1,1188,171,2,
26680,1,1231,263,18,
26691,1231,179,2,0,
26701,118,264,18,1,
2671118,179,2,0,1,
26721737,265,18,1,1737,
2673179,2,0,1,124,
2674266,18,1,124,267,
267520,268,4,22,76,
26760,69,0,83,0,
267783,0,95,0,69,
26780,81,0,85,0,
267965,0,76,0,83,
26800,1,31,1,1,
26812,0,1,2737,269,
268218,1,2737,270,20,
2683271,4,34,67,0,
2684111,0,109,0,112,
26850,111,0,117,0,
2686110,0,100,0,83,
26870,116,0,97,0, 27700,116,0,97,0,
2688116,0,101,0,109, 2771116,0,101,0,109,
26890,101,0,110,0, 27720,101,0,110,0,
2690116,0,1,126,1, 2773116,0,1,131,1,
26912,2,0,1,130, 27742,2,0,1,1804,
2692272,18,1,130,179, 2775283,18,1,1804,284,
26932,0,1,1803,273, 277620,285,4,4,68,
269418,1,1803,274,20, 27770,79,0,1,44,
2695275,4,18,83,0, 27781,1,2,0,1,
2696116,0,97,0,116, 27792745,286,18,1,2745,
26970,101,0,109,0, 2780135,2,0,1,2364,
2698101,0,110,0,116, 2781287,18,1,2364,281,
26990,1,128,1,2, 27822,0,1,137,288,
27002,0,1,1804,276, 278318,1,137,289,20,
270118,1,1804,277,20, 2784290,4,36,69,0,
2702278,4,4,68,0,
270379,0,1,44,1,
27041,2,0,1,2364,
2705279,18,1,2364,274,
27062,0,1,137,280,
270718,1,137,281,20,
2708282,4,36,69,0,
270988,0,67,0,76, 278588,0,67,0,76,
27100,65,0,77,0, 27860,65,0,77,0,
271165,0,84,0,73, 278765,0,84,0,73,
@@ -2714,268 +2790,223 @@ public yyLSLSyntax
27140,85,0,65,0, 27900,85,0,65,0,
271576,0,83,0,1, 279176,0,83,0,1,
271630,1,1,2,0, 279230,1,1,2,0,
27171,2293,283,18,1, 27931,2293,291,18,1,
27182293,202,2,0,1, 27942293,138,2,0,1,
27191701,284,18,1,1701, 27951701,292,18,1,1701,
2720179,2,0,1,1756, 2796183,2,0,1,1756,
2721285,18,1,1756,202, 2797293,18,1,1756,138,
27222,0,1,2527,286, 27982,0,1,2527,294,
272318,1,2527,163,2, 279918,1,2527,132,2,
27240,1,143,287,18, 28000,1,143,295,18,
27251,143,179,2,0, 28011,143,183,2,0,
27261,2299,288,18,1, 28021,2299,296,18,1,
27272299,179,2,0,1, 28032299,183,2,0,1,
27281260,289,18,1,1260, 28041260,297,18,1,1260,
2729171,2,0,1,1261, 2805175,2,0,1,1261,
2730290,18,1,1261,291, 2806298,18,1,1261,299,
273120,292,4,22,80, 280720,300,4,22,80,
27320,76,0,85,0, 28080,76,0,85,0,
273383,0,95,0,69, 280983,0,95,0,69,
27340,81,0,85,0, 28100,81,0,85,0,
273565,0,76,0,83, 281165,0,76,0,83,
27360,1,6,1,1, 28120,1,6,1,1,
27372,0,1,151,293, 28132,0,1,2528,301,
273818,1,151,294,20, 281418,1,2528,302,20,
2739295,4,26,69,0, 2815303,4,28,82,0,
2816111,0,116,0,68,
28170,101,0,99,0,
2818108,0,97,0,114,
28190,97,0,116,0,
2820105,0,111,0,110,
28210,1,120,1,2,
28222,0,1,151,304,
282318,1,151,305,20,
2824306,4,26,69,0,
274081,0,85,0,65, 282581,0,85,0,65,
27410,76,0,83,0, 28260,76,0,83,0,
274295,0,69,0,81, 282795,0,69,0,81,
27430,85,0,65,0, 28280,85,0,65,0,
274476,0,83,0,1, 282976,0,83,0,1,
274529,1,1,2,0, 283029,1,1,2,0,
27461,1267,296,18,1, 28311,2682,307,18,1,
27471267,179,2,0,1, 28322682,308,20,309,4,
27482765,297,18,1,2765, 283318,83,0,116,0,
2749202,2,0,1,157, 283497,0,116,0,101,
2750298,18,1,157,179, 28350,66,0,111,0,
27512,0,1,1773,299, 2836100,0,121,0,1,
275218,1,1773,156,2, 2837102,1,2,2,0,
27530,1,1832,300,18, 28381,1267,310,18,1,
27541,1832,274,2,0, 28391267,183,2,0,1,
27551,1833,301,18,1, 2840157,311,18,1,157,
27561833,302,20,303,4, 2841183,2,0,1,2767,
2842312,18,1,2767,183,
28432,0,1,1773,313,
284418,1,1773,155,2,
28450,1,1832,314,18,
28461,1832,281,2,0,
28471,1833,315,18,1,
28481833,316,20,317,4,
275710,87,0,72,0, 284910,87,0,72,0,
275873,0,76,0,69, 285073,0,76,0,69,
27590,1,45,1,1, 28510,1,45,1,1,
27602,0,1,1834,304, 28522,0,1,1834,318,
276118,1,1834,135,2, 285318,1,1834,135,2,
27620,1,166,305,18, 28540,1,166,319,18,
27631,166,306,20,307, 28551,166,320,20,321,
27644,20,76,0,69, 28564,20,76,0,69,
27650,70,0,84,0, 28570,70,0,84,0,
276695,0,65,0,78, 285895,0,65,0,78,
27670,71,0,76,0, 28590,71,0,76,0,
276869,0,1,25,1, 286069,0,1,25,1,
27691,2,0,1,1840, 28611,2,0,1,1840,
2770308,18,1,1840,179, 2862322,18,1,1840,183,
27712,0,1,172,309, 28632,0,1,172,323,
277218,1,172,179,2, 286418,1,172,183,2,
27730,1,2335,310,18, 28650,1,2786,324,18,
27741,2335,156,2,0, 28661,2786,138,2,0,
27751,1296,311,18,1, 28671,2335,325,18,1,
27761296,171,2,0,1, 28682335,155,2,0,1,
27771297,312,18,1,1297, 28691296,326,18,1,1296,
2778313,20,314,4,12, 2870175,2,0,1,1297,
277969,0,81,0,85, 2871327,18,1,1297,211,
27800,65,0,76,0, 28722,0,1,2413,328,
278183,0,1,15,1, 287318,1,2413,329,20,
27821,2,0,1,2413, 2874330,4,26,83,0,
2783315,18,1,2413,316, 2875116,0,97,0,116,
278420,317,4,26,83, 28760,101,0,109,0,
2877101,0,110,0,116,
28780,76,0,105,0,
2879115,0,116,0,1,
2880130,1,2,2,0,
28811,2635,331,18,1,
28822635,332,20,333,4,
288332,73,0,110,0,
2884116,0,65,0,114,
28850,103,0,83,0,
2886116,0,97,0,116,
28870,101,0,69,0,
2888118,0,101,0,110,
28890,116,0,1,106,
28901,2,2,0,1,
28911859,334,18,1,1859,
2892162,2,0,1,1860,
2893335,18,1,1860,138,
28942,0,1,188,336,
289518,1,188,183,2,
28960,1,182,337,18,
28971,182,338,20,339,
28984,22,82,0,73,
28990,71,0,72,0,
290084,0,95,0,65,
29010,78,0,71,0,
290276,0,69,0,1,
290326,1,1,2,0,
29041,199,340,18,1,
2905199,341,20,342,4,
290610,67,0,65,0,
290782,0,69,0,84,
29080,1,35,1,1,
29092,0,1,1871,343,
291018,1,1871,175,2,
29110,1,1872,344,18,
29121,1872,162,2,0,
29131,1873,345,18,1,
29141873,138,2,0,1,
29151875,346,18,1,1875,
2916316,2,0,1,205,
2917347,18,1,205,183,
29182,0,1,1882,348,
291918,1,1882,183,2,
29200,1,2227,349,18,
29211,2227,281,2,0,
29221,217,350,18,1,
2923217,351,20,352,4,
292412,83,0,84,0,
292582,0,79,0,75,
29260,69,0,1,34,
29271,1,2,0,1,
29281332,353,18,1,1332,
2929175,2,0,1,2743,
2930354,18,1,2743,278,
29312,0,1,2744,355,
293218,1,2744,132,2,
29330,1,1335,356,18,
29341,1335,178,2,0,
29351,223,357,18,1,
2936223,183,2,0,1,
29371341,358,18,1,1341,
2938183,2,0,1,1901,
2939359,18,1,1901,162,
29402,0,1,1303,360,
294118,1,1303,183,2,
29420,1,2462,361,18,
29431,2462,281,2,0,
29441,2756,362,18,1,
29452756,162,2,0,1,
2946236,363,18,1,236,
2947364,20,365,4,6,
294865,0,77,0,80,
29490,1,33,1,1,
29502,0,1,2466,366,
295118,1,2466,367,20,
2952368,4,34,67,0,
2953111,0,109,0,112,
29540,111,0,117,0,
2955110,0,100,0,83,
27850,116,0,97,0, 29560,116,0,97,0,
2786116,0,101,0,109, 2957116,0,101,0,109,
27870,101,0,110,0, 29580,101,0,110,0,
2788116,0,76,0,105, 2959116,0,1,129,1,
27890,115,0,116,0, 29602,2,0,1,2467,
27901,127,1,2,2, 2961369,18,1,2467,159,
27910,1,1859,318,18, 29622,0,1,2468,370,
27921,1859,163,2,0, 296318,1,2468,371,20,
27931,1860,319,18,1, 2964372,4,10,83,0,
27941860,202,2,0,1, 296584,0,65,0,84,
2795188,320,18,1,188, 29660,69,0,1,48,
2796179,2,0,1,182,
2797321,18,1,182,322,
279820,323,4,22,82,
27990,73,0,71,0,
280072,0,84,0,95,
28010,65,0,78,0,
280271,0,76,0,69,
28030,1,26,1,1,
28042,0,1,199,324,
280518,1,199,325,20,
2806326,4,10,67,0,
280765,0,82,0,69,
28080,84,0,1,35,
28091,1,2,0,1, 29671,1,2,0,1,
28101871,327,18,1,1871, 29682469,373,18,1,2469,
2811171,2,0,1,1872, 2969132,2,0,1,242,
2812328,18,1,1872,163, 2970374,18,1,242,183,
28132,0,1,1873,329, 29712,0,1,2471,375,
281418,1,1873,202,2, 297218,1,2471,376,20,
28150,1,1875,330,18, 2973377,4,30,65,0,
28161,1875,302,2,0, 297484,0,95,0,84,
28171,205,331,18,1, 29750,65,0,82,0,
2818205,179,2,0,1, 297671,0,69,0,84,
28191882,332,18,1,1882,
2820179,2,0,1,2227,
2821333,18,1,2227,274,
28222,0,1,217,334,
282318,1,217,335,20,
2824336,4,12,83,0,
282584,0,82,0,79,
28260,75,0,69,0,
28271,34,1,1,2,
28280,1,1332,337,18,
28291,1332,171,2,0,
28301,1335,338,18,1,
28311335,174,2,0,1,
2832223,339,18,1,223,
2833179,2,0,1,1341,
2834340,18,1,1341,179,
28352,0,1,1901,341,
283618,1,1901,163,2,
28370,1,1303,342,18,
28381,1303,179,2,0,
28391,2462,343,18,1,
28402462,274,2,0,1,
2841236,344,18,1,236,
2842345,20,346,4,6,
284365,0,77,0,80,
28440,1,33,1,1,
28452,0,1,2466,347,
284618,1,2466,270,2,
28470,1,2467,348,18,
28481,2467,160,2,0,
28491,2468,349,18,1,
28502468,350,20,351,4,
285110,83,0,84,0,
285265,0,84,0,69,
28530,1,48,1,1,
28542,0,1,2469,352,
285518,1,2469,132,2,
28560,1,242,353,18,
28571,242,179,2,0,
28581,2471,354,18,1,
28592471,355,20,356,4,
286038,65,0,84,0,
286195,0,82,0,79,
28620,84,0,95,0,
286384,0,65,0,82,
28640,71,0,69,0,
286584,0,95,0,69,
28660,86,0,69,0,
286778,0,84,0,1,
286858,1,1,2,0,
28691,2472,357,18,1,
28702472,358,20,359,4,
287152,76,0,65,0,
287278,0,68,0,95,
28730,67,0,79,0,
287476,0,76,0,73,
28750,83,0,73,0,
287679,0,78,0,95,
28770,83,0,84,0,
287865,0,82,0,84,
28790,95,0,69,0, 29770,95,0,69,0,
288086,0,69,0,78, 297886,0,69,0,78,
28810,84,0,1,71, 29790,84,0,1,59,
28821,1,2,0,1, 29801,1,2,0,1,
28832473,360,18,1,2473, 29812472,378,18,1,2472,
2884361,20,362,4,48, 2982379,20,380,4,38,
288576,0,65,0,78, 298365,0,84,0,95,
28860,68,0,95,0, 29840,82,0,79,0,
288767,0,79,0,76, 298584,0,95,0,84,
28880,76,0,73,0, 29860,65,0,82,0,
288983,0,73,0,79, 298771,0,69,0,84,
28900,78,0,95,0,
289169,0,78,0,68,
28920,95,0,69,0, 29880,95,0,69,0,
289386,0,69,0,78, 298986,0,69,0,78,
28940,84,0,1,70, 29900,84,0,1,58,
28951,1,2,0,1, 29911,1,2,0,1,
28962474,363,18,1,2474, 29922473,381,18,1,2473,
2897364,20,365,4,40, 2993382,20,383,4,52,
289876,0,65,0,78, 299476,0,65,0,78,
28990,68,0,95,0, 29950,68,0,95,0,
290067,0,79,0,76, 299667,0,79,0,76,
29010,76,0,73,0, 29970,76,0,73,0,
290283,0,73,0,79, 299883,0,73,0,79,
29030,78,0,95,0, 29990,78,0,95,0,
290469,0,86,0,69,
29050,78,0,84,0,
29061,69,1,1,2,
29070,1,2475,366,18,
29081,2475,367,20,368,
29094,34,84,0,79,
29100,85,0,67,0,
291172,0,95,0,83,
29120,84,0,65,0,
291382,0,84,0,95,
29140,69,0,86,0,
291569,0,78,0,84,
29160,1,89,1,1,
29172,0,1,2476,369,
291818,1,2476,370,20,
2919371,4,30,84,0,
292079,0,85,0,67,
29210,72,0,95,0,
292269,0,78,0,68,
29230,95,0,69,0,
292486,0,69,0,78,
29250,84,0,1,90,
29261,1,2,0,1,
29272477,372,18,1,2477,
2928373,20,374,4,22,
292984,0,79,0,85,
29300,67,0,72,0,
293195,0,69,0,86,
29320,69,0,78,0,
293384,0,1,88,1,
29341,2,0,1,2478,
2935375,18,1,2478,376,
293620,377,4,24,83,
29370,69,0,78,0,
293883,0,79,0,82,
29390,95,0,69,0,
294086,0,69,0,78,
29410,84,0,1,84,
29421,1,2,0,1,
29432479,378,18,1,2479,
2944379,20,380,4,52,
294582,0,85,0,78,
29460,95,0,84,0,
294773,0,77,0,69,
29480,95,0,80,0,
294969,0,82,0,77,
29500,73,0,83,0,
295183,0,73,0,79,
29520,78,0,83,0,
295395,0,69,0,86,
29540,69,0,78,0,
295584,0,1,83,1,
29561,2,0,1,2480,
2957381,18,1,2480,382,
295820,383,4,24,79,
29590,78,0,95,0,
296082,0,69,0,90,
29610,95,0,69,0,
296286,0,69,0,78,
29630,84,0,1,81,
29641,1,2,0,1,
29652481,384,18,1,2481,
2966385,20,386,4,42,
296767,0,79,0,76,
29680,76,0,73,0,
296983,0,73,0,79,
29700,78,0,95,0,
297183,0,84,0,65, 300083,0,84,0,65,
29720,82,0,84,0, 30010,82,0,84,0,
297395,0,69,0,86, 300295,0,69,0,86,
29740,69,0,78,0, 30030,69,0,78,0,
297584,0,1,64,1, 300484,0,1,71,1,
29761,2,0,1,2482, 30051,2,0,1,2474,
2977387,18,1,2482,388, 3006384,18,1,2474,385,
297820,389,4,38,67, 300720,386,4,48,76,
30080,65,0,78,0,
300968,0,95,0,67,
29790,79,0,76,0, 30100,79,0,76,0,
298076,0,73,0,83, 301176,0,73,0,83,
29810,73,0,79,0, 30120,73,0,79,0,
@@ -2983,64 +3014,159 @@ public yyLSLSyntax
29830,78,0,68,0, 30140,78,0,68,0,
298495,0,69,0,86, 301595,0,69,0,86,
29850,69,0,78,0, 30160,69,0,78,0,
298684,0,1,63,1, 301784,0,1,70,1,
29871,2,0,1,2483, 30181,2,0,1,2475,
2988390,18,1,2483,391, 3019387,18,1,2475,388,
298920,392,4,30,67, 302020,389,4,40,76,
30210,65,0,78,0,
302268,0,95,0,67,
29900,79,0,76,0, 30230,79,0,76,0,
299176,0,73,0,83, 302476,0,73,0,83,
29920,73,0,79,0, 30250,73,0,79,0,
299378,0,95,0,69, 302678,0,95,0,69,
29940,86,0,69,0, 30270,86,0,69,0,
299578,0,84,0,1, 302878,0,84,0,1,
299662,1,1,2,0, 302969,1,1,2,0,
29971,256,393,18,1, 30301,2476,390,18,1,
2998256,394,20,395,4, 30312476,391,20,392,4,
299914,80,0,69,0, 303234,84,0,79,0,
300082,0,67,0,69, 303385,0,67,0,72,
30010,78,0,84,0, 30340,95,0,83,0,
30021,22,1,1,2, 303584,0,65,0,82,
30030,1,1371,396,18, 30360,84,0,95,0,
30041,1371,223,2,0,
30051,2486,397,18,1,
30062486,398,20,399,4,
300724,65,0,84,0,
300884,0,65,0,67,
30090,72,0,95,0,
301069,0,86,0,69, 303769,0,86,0,69,
30110,78,0,84,0, 30380,78,0,84,0,
30121,60,1,1,2, 30391,89,1,1,2,
30130,1,2487,400,18, 30400,1,2477,393,18,
30141,2487,401,20,402, 30411,2477,394,20,395,
30154,22,84,0,73, 30424,30,84,0,79,
30430,85,0,67,0,
304472,0,95,0,69,
30450,78,0,68,0,
304695,0,69,0,86,
30470,69,0,78,0,
304884,0,1,90,1,
30491,2,0,1,2478,
3050396,18,1,2478,397,
305120,398,4,22,84,
30520,79,0,85,0,
305367,0,72,0,95,
30540,69,0,86,0,
305569,0,78,0,84,
30560,1,88,1,1,
30572,0,1,2479,399,
305818,1,2479,400,20,
3059401,4,24,83,0,
306069,0,78,0,83,
30610,79,0,82,0,
306295,0,69,0,86,
30630,69,0,78,0,
306484,0,1,84,1,
30651,2,0,1,2480,
3066402,18,1,2480,403,
306720,404,4,52,82,
30680,85,0,78,0,
306995,0,84,0,73,
30160,77,0,69,0, 30700,77,0,69,0,
301782,0,95,0,69, 307195,0,80,0,69,
30180,86,0,69,0, 30720,82,0,77,0,
301978,0,84,0,1, 307373,0,83,0,83,
302087,1,1,2,0, 30740,73,0,79,0,
30211,1931,403,18,1, 307578,0,83,0,95,
30221931,274,2,0,1, 30760,69,0,86,0,
30231932,404,18,1,1932, 307769,0,78,0,84,
3024405,20,406,4,4, 30780,1,83,1,1,
302573,0,70,0,1, 30792,0,1,2481,405,
302642,1,1,2,0, 308018,1,2481,406,20,
30271,262,407,18,1, 3081407,4,24,79,0,
3028262,179,2,0,1, 308278,0,95,0,82,
30291377,408,18,1,1377, 30830,69,0,90,0,
3030179,2,0,1,2492, 308495,0,69,0,86,
3031409,18,1,2492,410, 30850,69,0,78,0,
303220,411,4,32,77, 308684,0,1,81,1,
30330,79,0,86,0, 30871,2,0,1,2482,
303473,0,78,0,71, 3088408,18,1,2482,409,
308920,410,4,42,67,
30900,79,0,76,0,
309176,0,73,0,83,
30920,73,0,79,0,
309378,0,95,0,83,
30940,84,0,65,0,
309582,0,84,0,95,
30960,69,0,86,0,
309769,0,78,0,84,
30980,1,64,1,1,
30992,0,1,2483,411,
310018,1,2483,412,20,
3101413,4,38,67,0,
310279,0,76,0,76,
31030,73,0,83,0,
310473,0,79,0,78,
30350,95,0,69,0, 31050,95,0,69,0,
303678,0,68,0,95, 310678,0,68,0,95,
30370,69,0,86,0, 31070,69,0,86,0,
303869,0,78,0,84, 310869,0,78,0,84,
30390,1,75,1,1, 31090,1,63,1,1,
30402,0,1,1876,412, 31102,0,1,256,414,
304118,1,1876,135,2, 311118,1,256,415,20,
30420,1,2494,413,18, 3112416,4,14,80,0,
30431,2494,414,20,415, 311369,0,82,0,67,
31140,69,0,78,0,
311584,0,1,22,1,
31161,2,0,1,1371,
3117417,18,1,1371,229,
31182,0,1,2486,418,
311918,1,2486,419,20,
3120420,4,32,79,0,
312166,0,74,0,69,
31220,67,0,84,0,
312395,0,82,0,69,
31240,90,0,95,0,
312569,0,86,0,69,
31260,78,0,84,0,
31271,80,1,1,2,
31280,1,2487,421,18,
31291,2487,422,20,423,
31304,24,65,0,84,
31310,84,0,65,0,
313267,0,72,0,95,
31330,69,0,86,0,
313469,0,78,0,84,
31350,1,60,1,1,
31362,0,1,1931,424,
313718,1,1931,281,2,
31380,1,1932,425,18,
31391,1932,426,20,427,
31404,4,73,0,70,
31410,1,42,1,1,
31422,0,1,262,428,
314318,1,262,183,2,
31440,1,1377,429,18,
31451,1377,183,2,0,
31461,2492,430,18,1,
31472492,431,20,432,4,
314836,77,0,79,0,
314986,0,73,0,78,
31500,71,0,95,0,
315183,0,84,0,65,
31520,82,0,84,0,
315395,0,69,0,86,
31540,69,0,78,0,
315584,0,1,76,1,
31561,2,0,1,1876,
3157433,18,1,1876,135,
31582,0,1,2494,434,
315918,1,2494,435,20,
3160436,4,32,83,0,
316184,0,65,0,84,
31620,69,0,95,0,
316369,0,88,0,73,
31640,84,0,95,0,
316569,0,86,0,69,
31660,78,0,84,0,
31671,86,1,1,2,
31680,1,2495,437,18,
31691,2495,438,20,439,
30444,34,83,0,84, 31704,34,83,0,84,
30450,65,0,84,0, 31710,65,0,84,0,
304669,0,95,0,69, 317269,0,95,0,69,
@@ -3049,31 +3175,31 @@ public yyLSLSyntax
30490,69,0,86,0, 31750,69,0,86,0,
305069,0,78,0,84, 317669,0,78,0,84,
30510,1,85,1,1, 31770,1,85,1,1,
30522,0,1,2495,416, 31782,0,1,1939,440,
305318,1,2495,417,20, 317918,1,1939,183,2,
3054418,4,36,72,0, 31800,1,2497,441,18,
305584,0,84,0,80, 31811,2497,442,20,443,
30560,95,0,82,0, 31824,34,82,0,69,
305769,0,81,0,85, 31830,77,0,79,0,
30580,69,0,83,0, 318484,0,69,0,95,
305984,0,95,0,69, 31850,68,0,65,0,
30600,86,0,69,0, 318684,0,65,0,95,
306178,0,84,0,1, 31870,69,0,86,0,
306291,1,1,2,0, 318869,0,78,0,84,
30631,1939,419,18,1, 31890,1,82,1,1,
30641939,179,2,0,1, 31902,0,1,827,444,
30652497,420,18,1,2497, 319118,1,827,183,2,
3066421,20,422,4,22, 31920,1,2499,445,18,
306777,0,79,0,78, 31931,2499,446,20,447,
30680,69,0,89,0, 31944,24,76,0,73,
306995,0,69,0,86, 31950,83,0,84,0,
30700,69,0,78,0, 319669,0,78,0,95,
307184,0,1,74,1, 31970,69,0,86,0,
30721,2,0,1,827, 319869,0,78,0,84,
3073423,18,1,827,179, 31990,1,73,1,1,
30742,0,1,2499,424, 32002,0,1,2500,448,
307518,1,2499,425,20, 320118,1,2500,449,20,
3076426,4,36,76,0, 3202450,4,36,76,0,
307773,0,78,0,75, 320373,0,78,0,75,
30780,95,0,77,0, 32040,95,0,77,0,
307969,0,83,0,83, 320569,0,83,0,83,
@@ -3082,8 +3208,8 @@ public yyLSLSyntax
30820,86,0,69,0, 32080,86,0,69,0,
308378,0,84,0,1, 320978,0,84,0,1,
308472,1,1,2,0, 321072,1,1,2,0,
30851,2500,427,18,1, 32111,2501,451,18,1,
30862500,428,20,429,4, 32122501,452,20,453,4,
308738,72,0,84,0, 321338,72,0,84,0,
308884,0,80,0,95, 321484,0,80,0,95,
30890,82,0,69,0, 32150,82,0,69,0,
@@ -3093,16 +3219,16 @@ public yyLSLSyntax
30930,86,0,69,0, 32190,86,0,69,0,
309478,0,84,0,1, 322078,0,84,0,1,
309568,1,1,2,0, 322168,1,1,2,0,
30961,2501,430,18,1, 32221,2502,454,18,1,
30972501,431,20,432,4, 32232502,455,20,456,4,
309822,69,0,77,0, 322422,69,0,77,0,
309965,0,73,0,76, 322565,0,73,0,76,
31000,95,0,69,0, 32260,95,0,69,0,
310186,0,69,0,78, 322786,0,69,0,78,
31020,84,0,1,67, 32280,84,0,1,67,
31031,1,2,0,1, 32291,1,2,0,1,
31042502,433,18,1,2502, 32302503,457,18,1,2503,
3105434,20,435,4,32, 3231458,20,459,4,32,
310668,0,65,0,84, 323268,0,65,0,84,
31070,65,0,83,0, 32330,65,0,83,0,
310869,0,82,0,86, 323469,0,82,0,86,
@@ -3110,1081 +3236,1065 @@ public yyLSLSyntax
311095,0,69,0,86, 323695,0,69,0,86,
31110,69,0,78,0, 32370,69,0,78,0,
311284,0,1,66,1, 323884,0,1,66,1,
31131,2,0,1,2503, 32391,2,0,1,2504,
3114436,18,1,2503,437, 3240460,18,1,2504,461,
311520,438,4,26,67, 324120,462,4,26,67,
31160,79,0,78,0, 32420,79,0,78,0,
311784,0,82,0,79, 324384,0,82,0,79,
31180,76,0,95,0, 32440,76,0,95,0,
311969,0,86,0,69, 324569,0,86,0,69,
31200,78,0,84,0, 32460,78,0,84,0,
31211,65,1,1,2, 32471,65,1,1,2,
31220,1,2504,439,18, 32480,1,277,463,18,
31231,2504,440,20,441, 32491,277,464,20,465,
31244,30,65,0,84, 32504,10,83,0,76,
31250,95,0,84,0, 32510,65,0,83,0,
312665,0,82,0,71, 325272,0,1,21,1,
31270,69,0,84,0, 32531,2,0,1,2506,
312895,0,69,0,86, 3254466,18,1,2506,135,
31290,69,0,78,0, 32552,0,1,2507,467,
313084,0,1,59,1, 325618,1,2507,126,2,
31311,2,0,1,277, 32570,1,2508,468,18,
3132442,18,1,277,443, 32581,2508,132,2,0,
313320,444,4,10,83, 32591,2509,469,18,1,
31340,76,0,65,0, 32602509,241,2,0,1,
313583,0,72,0,1, 32612510,470,18,1,2510,
313621,1,1,2,0, 3262152,2,0,1,283,
31371,2506,445,18,1, 3263471,18,1,283,183,
31382506,135,2,0,1, 32642,0,1,2512,472,
31392507,446,18,1,2507, 326518,1,2512,132,2,
3140126,2,0,1,2508, 32660,1,2513,473,18,
3141447,18,1,2508,132, 32671,2513,474,20,475,
31422,0,1,2509,448, 32684,34,86,0,101,
314318,1,2509,449,20, 32690,99,0,116,0,
3144450,4,28,73,0, 3270111,0,114,0,68,
3145110,0,116,0,68,
31460,101,0,99,0, 32710,101,0,99,0,
3147108,0,97,0,114, 3272108,0,97,0,114,
31480,97,0,116,0, 32730,97,0,116,0,
3149105,0,111,0,110, 3274105,0,111,0,110,
31500,1,116,1,2, 32750,1,119,1,2,
31512,0,1,2510,451, 32762,0,1,2514,476,
315218,1,2510,153,2, 327718,1,2514,152,2,
31530,1,283,452,18, 32780,1,1958,477,18,
31541,283,179,2,0, 32791,1958,162,2,0,
31551,2512,453,18,1, 32801,2516,478,18,1,
31562512,132,2,0,1, 32812516,474,2,0,1,
31572513,454,18,1,2513, 32822517,479,18,1,2517,
3158455,20,456,4,28, 3283480,20,481,4,64,
315982,0,111,0,116, 328473,0,110,0,116,
31600,68,0,101,0, 32850,86,0,101,0,
316199,0,108,0,97, 328699,0,86,0,101,
31620,114,0,97,0, 32870,99,0,65,0,
3163116,0,105,0,111, 3288114,0,103,0,117,
31640,110,0,1,118, 32890,109,0,101,0,
31651,2,2,0,1, 3290110,0,116,0,68,
31662514,457,18,1,2514,
3167153,2,0,1,1958,
3168458,18,1,1958,163,
31692,0,1,2516,459,
317018,1,2516,455,2,
31710,1,2517,460,18,
31721,2517,461,20,462,
31734,64,73,0,110,
31740,116,0,82,0,
3175111,0,116,0,82,
31760,111,0,116,0,
317765,0,114,0,103,
31780,117,0,109,0,
3179101,0,110,0,116,
31800,68,0,101,0,
318199,0,108,0,97,
31820,114,0,97,0,
3183116,0,105,0,111,
31840,110,0,76,0,
3185105,0,115,0,116,
31860,1,113,1,2,
31872,0,1,2518,463,
318818,1,2518,163,2,
31890,1,1406,464,18,
31901,1406,171,2,0,
31911,1407,465,18,1,
31921407,217,2,0,1,
31932522,466,18,1,2522,
3194135,2,0,1,2523,
3195467,18,1,2523,114,
31962,0,1,2524,468,
319718,1,2524,132,2,
31980,1,2525,469,18,
31991,2525,470,20,471,
32004,34,86,0,101,
32010,99,0,116,0,
3202111,0,114,0,68,
32030,101,0,99,0, 32910,101,0,99,0,
3204108,0,97,0,114, 3292108,0,97,0,114,
32050,97,0,116,0, 32930,97,0,116,0,
3206105,0,111,0,110, 3294105,0,111,0,110,
32070,1,117,1,2, 32950,76,0,105,0,
32082,0,1,2526,472, 3296115,0,116,0,1,
320918,1,2526,473,20, 3297115,1,2,2,0,
3210474,4,58,86,0, 32981,2518,482,18,1,
3211101,0,99,0,116, 32992518,162,2,0,1,
32120,111,0,114,0, 33002809,483,18,1,2809,
321365,0,114,0,103, 3301484,20,485,4,12,
32140,117,0,109,0, 330283,0,116,0,97,
3215101,0,110,0,116, 33030,116,0,101,0,
32160,68,0,101,0, 3304115,0,1,100,1,
321799,0,108,0,97, 33052,2,0,1,1406,
32180,114,0,97,0, 3306486,18,1,1406,175,
3219116,0,105,0,111, 33072,0,1,1407,487,
32200,110,0,76,0, 330818,1,1407,223,2,
3221105,0,115,0,116, 33090,1,2522,488,18,
32220,1,112,1,2, 33101,2522,135,2,0,
32232,0,1,299,475, 33111,2524,489,18,1,
322418,1,299,476,20, 33122524,241,2,0,1,
3225477,4,8,83,0, 33132525,490,18,1,2525,
3314152,2,0,1,2526,
3315491,18,1,2526,111,
33162,0,1,299,492,
331718,1,299,493,20,
3318494,4,8,83,0,
322684,0,65,0,82, 331984,0,65,0,82,
32270,1,20,1,1, 33200,1,20,1,1,
32282,0,1,1370,478, 33212,0,1,1370,495,
322918,1,1370,171,2, 332218,1,1370,175,2,
32300,1,2529,479,18, 33230,1,2529,496,18,
32311,2529,270,2,0, 33241,2529,152,2,0,
32321,2530,480,18,1, 33251,2817,497,18,1,
32332530,481,20,482,4, 33262817,171,2,0,1,
323422,73,0,110,0, 33272531,498,18,1,2531,
3328302,2,0,1,2532,
3329499,18,1,2532,500,
333020,501,4,64,73,
33310,110,0,116,0,
333282,0,111,0,116,
33330,82,0,111,0,
3235116,0,65,0,114, 3334116,0,65,0,114,
32360,103,0,69,0, 33350,103,0,117,0,
3237118,0,101,0,110, 3336109,0,101,0,110,
32380,116,0,1,123, 33370,116,0,68,0,
3338101,0,99,0,108,
33390,97,0,114,0,
334097,0,116,0,105,
33410,111,0,110,0,
334276,0,105,0,115,
33430,116,0,1,114,
32391,2,2,0,1, 33441,2,2,0,1,
32402531,483,18,1,2531, 3345305,502,18,1,305,
3241135,2,0,1,305, 3346183,2,0,1,2535,
3242484,18,1,305,179, 3347503,18,1,2535,367,
32432,0,1,2534,485, 33482,0,1,2458,504,
324418,1,2534,486,20, 334918,1,2458,281,2,
3245487,4,52,73,0, 33500,1,2459,505,18,
33511,2459,506,20,507,
33524,22,82,0,73,
33530,71,0,72,0,
335484,0,95,0,66,
33550,82,0,65,0,
335667,0,69,0,1,
335713,1,1,2,0,
33581,2539,508,18,1,
33592539,474,2,0,1,
33602540,509,18,1,2540,
3361510,20,511,4,58,
336286,0,101,0,99,
33630,116,0,111,0,
3364114,0,65,0,114,
33650,103,0,117,0,
3366109,0,101,0,110,
33670,116,0,68,0,
3368101,0,99,0,108,
33690,97,0,114,0,
337097,0,116,0,105,
33710,111,0,110,0,
337276,0,105,0,115,
33730,116,0,1,113,
33741,2,2,0,1,
33752541,512,18,1,2541,
3376162,2,0,1,2464,
3377513,18,1,2464,506,
33782,0,1,2544,514,
337918,1,2544,515,20,
3380516,4,22,73,0,
3246110,0,116,0,65, 3381110,0,116,0,65,
32470,114,0,103,0, 33820,114,0,103,0,
3248117,0,109,0,101, 338369,0,118,0,101,
32490,110,0,116,0, 33840,110,0,116,0,
325068,0,101,0,99, 33851,125,1,2,2,
32510,108,0,97,0, 33860,1,2545,517,18,
3252114,0,97,0,116, 33871,2545,135,2,0,
32530,105,0,111,0, 33881,1989,518,18,1,
3254110,0,76,0,105, 33891989,281,2,0,1,
32550,115,0,116,0, 33901990,519,18,1,1990,
32561,111,1,2,2, 3391520,20,521,4,8,
32570,1,2535,488,18, 339269,0,76,0,83,
32581,2535,163,2,0, 33930,69,0,1,43,
32591,2458,489,18,1, 33941,1,2,0,1,
32602458,274,2,0,1, 33952548,522,18,1,2548,
32612459,490,18,1,2459, 3396523,20,524,4,52,
3262491,20,492,4,22, 339773,0,110,0,116,
326382,0,73,0,71, 33980,65,0,114,0,
32640,72,0,84,0, 3399103,0,117,0,109,
326595,0,66,0,82, 34000,101,0,110,0,
32660,65,0,67,0, 3401116,0,68,0,101,
326769,0,1,13,1, 34020,99,0,108,0,
32681,2,0,1,2538, 340397,0,114,0,97,
3269493,18,1,2538,494, 34040,116,0,105,0,
327020,495,4,22,75, 3405111,0,110,0,76,
32710,101,0,121,0, 34060,105,0,115,0,
327265,0,114,0,103, 3407116,0,1,112,1,
32730,69,0,118,0, 34082,2,0,1,2470,
3274101,0,110,0,116, 3409525,18,1,2470,165,
32750,1,122,1,2, 34102,0,1,322,526,
32762,0,1,2539,496, 341118,1,322,244,2,
327718,1,2539,135,2, 34120,1,2551,527,18,
32780,1,2540,497,18, 34131,2551,367,2,0,
32791,2540,117,2,0, 34141,1933,528,18,1,
32801,2541,498,18,1, 34151933,135,2,0,1,
32812541,132,2,0,1, 34162553,529,18,1,2553,
32822542,499,18,1,2542, 3417135,2,0,1,883,
3283500,20,501,4,28, 3418530,18,1,883,183,
328475,0,101,0,121, 34192,0,1,2555,531,
32850,68,0,101,0, 342018,1,2555,132,2,
328699,0,108,0,97, 34210,1,328,532,18,
32870,114,0,97,0, 34221,328,183,2,0,
3288116,0,105,0,111, 34231,1443,533,18,1,
32890,110,0,1,115, 34241443,260,2,0,1,
32901,2,2,0,1, 34252558,534,18,1,2558,
32912464,502,18,1,2464, 3426162,2,0,1,2560,
3292491,2,0,1,2544, 3427535,18,1,2560,367,
3293503,18,1,2544,163, 34282,0,1,2561,536,
32942,0,1,1989,504, 342918,1,2561,537,20,
329518,1,1989,274,2, 3430538,4,24,86,0,
32960,1,1990,505,18, 3431111,0,105,0,100,
32971,1990,506,20,507, 34320,65,0,114,0,
32984,8,69,0,76, 3433103,0,69,0,118,
32990,83,0,69,0, 34340,101,0,110,0,
33001,43,1,1,2, 3435116,0,1,123,1,
33010,1,2548,508,18, 34362,2,0,1,2562,
33021,2548,135,2,0, 3437539,18,1,2562,135,
33031,2470,509,18,1, 34382,0,1,1449,540,
33042470,166,2,0,1, 343918,1,1449,183,2,
3305322,510,18,1,322, 34400,1,2485,541,18,
3306238,2,0,1,2551, 34411,2485,542,20,543,
3307511,18,1,2551,270, 34424,26,67,0,72,
33082,0,1,1933,512, 34430,65,0,78,0,
330918,1,1933,135,2, 344471,0,69,0,68,
33100,1,2553,513,18, 34450,95,0,69,0,
33111,2553,135,2,0, 344686,0,69,0,78,
33121,883,514,18,1, 34470,84,0,1,61,
3313883,179,2,0,1, 34481,1,2,0,1,
3314328,515,18,1,328, 34492565,544,18,1,2565,
3315179,2,0,1,1443, 3450367,2,0,1,2566,
3316516,18,1,1443,257, 3451545,18,1,2566,546,
33172,0,1,2562,517, 345220,547,4,10,69,
331818,1,2562,150,2, 34530,118,0,101,0,
33190,1,1449,518,18, 3454110,0,116,0,1,
33201,1449,179,2,0, 3455122,1,2,2,0,
33211,2485,519,18,1, 34561,2488,548,18,1,
33222485,520,20,521,4, 34572488,549,20,550,4,
332332,79,0,66,0, 345822,84,0,73,0,
332474,0,69,0,67, 345977,0,69,0,82,
33250,84,0,95,0, 34600,95,0,69,0,
332682,0,69,0,90, 346186,0,69,0,78,
34620,84,0,1,87,
34631,1,2,0,1,
34642489,551,18,1,2489,
3465552,20,553,4,38,
346678,0,79,0,84,
34670,95,0,65,0,
346884,0,95,0,84,
34690,65,0,82,0,
347071,0,69,0,84,
33270,95,0,69,0, 34710,95,0,69,0,
332886,0,69,0,78, 347286,0,69,0,78,
33290,84,0,1,80, 34730,84,0,1,79,
33301,1,2,0,1, 34741,1,2,0,1,
33312566,522,18,1,2566, 34752490,554,18,1,2490,
3332270,2,0,1,2488, 3476555,20,556,4,46,
3333523,18,1,2488,524, 347778,0,79,0,84,
333420,525,4,38,78, 34780,95,0,65,0,
347984,0,95,0,82,
33350,79,0,84,0, 34800,79,0,84,0,
333695,0,65,0,84, 348195,0,84,0,65,
33370,95,0,84,0, 34820,82,0,71,0,
333865,0,82,0,71, 348369,0,84,0,95,
33390,69,0,84,0, 34840,69,0,86,0,
334095,0,69,0,86, 348569,0,78,0,84,
34860,1,78,1,1,
34872,0,1,2491,557,
348818,1,2491,558,20,
3489559,4,30,78,0,
349079,0,95,0,83,
33410,69,0,78,0, 34910,69,0,78,0,
334284,0,1,79,1, 349283,0,79,0,82,
33431,2,0,1,2489, 34930,95,0,69,0,
3344526,18,1,2489,527, 349486,0,69,0,78,
334520,528,4,46,78, 34950,84,0,1,77,
33460,79,0,84,0, 34961,1,2,0,1,
334795,0,65,0,84, 34972493,560,18,1,2493,
33480,95,0,82,0, 3498561,20,562,4,32,
334979,0,84,0,95, 349977,0,79,0,86,
33500,84,0,65,0, 35000,73,0,78,0,
335182,0,71,0,69, 350171,0,95,0,69,
33520,84,0,95,0, 35020,78,0,68,0,
335369,0,86,0,69,
33540,78,0,84,0,
33551,78,1,1,2,
33560,1,2490,529,18,
33571,2490,530,20,531,
33584,30,78,0,79,
33590,95,0,83,0,
336069,0,78,0,83,
33610,79,0,82,0,
336295,0,69,0,86, 350395,0,69,0,86,
33630,69,0,78,0, 35040,69,0,78,0,
336484,0,1,77,1, 350584,0,1,75,1,
33651,2,0,1,2491, 35061,2,0,1,1413,
3366532,18,1,2491,533, 3507563,18,1,1413,183,
336720,534,4,36,77, 35082,0,1,346,564,
33680,79,0,86,0, 350918,1,346,565,20,
336973,0,78,0,71, 3510566,4,8,80,0,
33700,95,0,83,0, 351176,0,85,0,83,
337184,0,65,0,82, 35120,1,18,1,1,
33720,84,0,95,0, 35132,0,1,2496,567,
337369,0,86,0,69, 351418,1,2496,568,20,
33740,78,0,84,0, 3515569,4,36,72,0,
33751,76,1,1,2, 351684,0,84,0,80,
33760,1,2493,535,18, 35170,95,0,82,0,
33771,2493,536,20,537, 351869,0,81,0,85,
33784,32,83,0,84, 35190,69,0,83,0,
33790,65,0,84,0,
338069,0,95,0,69,
33810,88,0,73,0,
338284,0,95,0,69, 352084,0,95,0,69,
33830,86,0,69,0, 35210,86,0,69,0,
338478,0,84,0,1, 352278,0,84,0,1,
338586,1,1,2,0, 352391,1,1,2,0,
33861,1413,538,18,1, 35241,2021,570,18,1,
33871413,179,2,0,1, 35252021,281,2,0,1,
3388346,539,18,1,346, 35262022,571,18,1,2022,
3389540,20,541,4,8, 3527371,2,0,1,352,
339080,0,76,0,85, 3528572,18,1,352,183,
33910,83,0,1,18, 35292,0,1,2024,573,
33921,1,2,0,1,
33932496,542,18,1,2496,
3394543,20,544,4,34,
339582,0,69,0,77,
33960,79,0,84,0,
339769,0,95,0,68,
33980,65,0,84,0,
339965,0,95,0,69,
34000,86,0,69,0,
340178,0,84,0,1,
340282,1,1,2,0,
34031,2021,545,18,1,
34042021,274,2,0,1,
34052022,546,18,1,2022,
3406350,2,0,1,352,
3407547,18,1,352,179,
34082,0,1,2024,548,
340918,1,2024,132,2, 353018,1,2024,132,2,
34100,1,2025,549,18, 35310,1,2025,574,18,
34111,2025,550,20,551, 35321,2025,575,20,576,
34124,8,74,0,85, 35334,8,74,0,85,
34130,77,0,80,0, 35340,77,0,80,0,
34141,49,1,1,2, 35351,49,1,1,2,
34150,1,2026,552,18, 35360,1,2026,577,18,
34161,2026,132,2,0, 35371,2026,132,2,0,
34171,2027,553,18,1, 35381,2027,578,18,1,
34182027,554,20,555,4, 35392027,579,20,580,4,
34194,65,0,84,0, 35404,65,0,84,0,
34201,23,1,1,2, 35411,23,1,1,2,
34210,1,2028,556,18, 35420,1,2028,581,18,
34221,2028,132,2,0, 35431,2028,132,2,0,
34231,2029,557,18,1, 35441,2029,582,18,1,
34242029,270,2,0,1, 35452029,367,2,0,1,
34252030,558,18,1,2030, 35462030,583,18,1,2030,
3426559,20,560,4,14, 3547584,20,585,4,14,
342770,0,111,0,114, 354870,0,111,0,114,
34280,76,0,111,0, 35490,76,0,111,0,
3429111,0,112,0,1, 3550111,0,112,0,1,
3430139,1,2,2,0, 3551142,1,2,2,0,
34311,2031,561,18,1, 35521,2031,586,18,1,
34322031,562,20,563,4, 35532031,587,20,588,4,
343332,68,0,111,0, 355432,68,0,111,0,
343487,0,104,0,105, 355587,0,104,0,105,
34350,108,0,101,0, 35560,108,0,101,0,
343683,0,116,0,97, 355783,0,116,0,97,
34370,116,0,101,0, 35580,116,0,101,0,
3438109,0,101,0,110, 3559109,0,101,0,110,
34390,116,0,1,138, 35600,116,0,1,141,
34401,2,2,0,1, 35611,2,2,0,1,
34412032,564,18,1,2032, 35622032,589,18,1,2032,
3442565,20,566,4,28, 3563590,20,591,4,28,
344387,0,104,0,105, 356487,0,104,0,105,
34440,108,0,101,0, 35650,108,0,101,0,
344583,0,116,0,97, 356683,0,116,0,97,
34460,116,0,101,0, 35670,116,0,101,0,
3447109,0,101,0,110, 3568109,0,101,0,110,
34480,116,0,1,137, 35690,116,0,1,140,
34491,2,2,0,1, 35701,2,2,0,1,
34502033,567,18,1,2033, 35712033,592,18,1,2033,
3451568,20,569,4,22, 3572593,20,594,4,22,
345273,0,102,0,83, 357373,0,102,0,83,
34530,116,0,97,0, 35740,116,0,97,0,
3454116,0,101,0,109, 3575116,0,101,0,109,
34550,101,0,110,0, 35760,101,0,110,0,
3456116,0,1,136,1, 3577116,0,1,139,1,
34572,2,0,1,2034, 35782,2,0,1,2034,
3458570,18,1,2034,571, 3579595,18,1,2034,596,
345920,572,4,22,83, 358020,597,4,22,83,
34600,116,0,97,0, 35810,116,0,97,0,
3461116,0,101,0,67, 3582116,0,101,0,67,
34620,104,0,97,0, 35830,104,0,97,0,
3463110,0,103,0,101, 3584110,0,103,0,101,
34640,1,135,1,2, 35850,1,138,1,2,
34652,0,1,1478,573, 35862,0,1,1478,598,
346618,1,1478,171,2, 358718,1,1478,175,2,
34670,1,1479,574,18, 35880,1,1479,599,18,
34681,1479,291,2,0, 35891,1479,299,2,0,
34691,2037,575,18,1, 35901,2037,600,18,1,
34702037,202,2,0,1, 35912037,138,2,0,1,
34712038,576,18,1,2038, 35922038,601,18,1,2038,
3472577,20,578,4,18, 3593602,20,603,4,18,
347374,0,117,0,109, 359474,0,117,0,109,
34740,112,0,76,0, 35950,112,0,76,0,
347597,0,98,0,101, 359697,0,98,0,101,
34760,108,0,1,133, 35970,108,0,1,136,
34771,2,2,0,1, 35981,2,2,0,1,
34782039,579,18,1,2039, 35992039,604,18,1,2039,
3479202,2,0,1,2040, 3600138,2,0,1,2040,
3480580,18,1,2040,581, 3601605,18,1,2040,606,
348120,582,4,30,82, 360220,607,4,30,82,
34820,101,0,116,0, 36030,101,0,116,0,
3483117,0,114,0,110, 3604117,0,114,0,110,
34840,83,0,116,0, 36050,83,0,116,0,
348597,0,116,0,101, 360697,0,116,0,101,
34860,109,0,101,0, 36070,109,0,101,0,
3487110,0,116,0,1, 3608110,0,116,0,1,
3488132,1,2,2,0, 3609135,1,2,2,0,
34891,2041,583,18,1, 36101,2041,608,18,1,
34902041,202,2,0,1, 36112041,138,2,0,1,
34911485,584,18,1,1485, 36121485,609,18,1,1485,
3492179,2,0,1,372, 3613183,2,0,1,372,
3493585,18,1,372,191, 3614610,18,1,372,195,
34942,0,1,373,586, 36152,0,1,373,611,
349518,1,373,132,2, 361618,1,373,132,2,
34960,1,374,587,18, 36170,1,374,612,18,
34971,374,187,2,0, 36181,374,191,2,0,
34981,375,588,18,1, 36191,375,613,18,1,
3499375,132,2,0,1, 3620375,132,2,0,1,
3500376,589,18,1,376, 3621376,614,18,1,376,
3501194,2,0,1,377, 3622198,2,0,1,377,
3502590,18,1,377,132, 3623615,18,1,377,132,
35032,0,1,378,591, 36242,0,1,378,616,
350418,1,378,187,2, 362518,1,378,191,2,
35050,1,379,592,18, 36260,1,379,617,18,
35061,379,132,2,0, 36271,379,132,2,0,
35071,380,593,18,1, 36281,380,618,18,1,
3508380,594,20,595,4, 3629380,619,20,620,4,
350916,67,0,111,0, 363016,67,0,111,0,
3510110,0,115,0,116, 3631110,0,115,0,116,
35110,97,0,110,0, 36320,97,0,110,0,
3512116,0,1,145,1, 3633116,0,1,148,1,
35132,2,0,1,381, 36342,2,0,1,381,
3514596,18,1,381,306, 3635621,18,1,381,320,
35152,0,1,2610,597, 36362,0,1,371,622,
351618,1,2610,598,20, 363718,1,371,623,20,
3517599,4,38,86,0, 3638624,4,24,70,0,
3518101,0,99,0,116, 3639117,0,110,0,99,
35190,111,0,114,0, 36400,116,0,105,0,
352065,0,114,0,103, 3641111,0,110,0,67,
35210,83,0,116,0, 36420,97,0,108,0,
352297,0,116,0,101, 3643108,0,1,144,1,
35230,69,0,118,0, 36442,2,0,1,942,
3524101,0,110,0,116, 3645625,18,1,942,183,
35250,1,107,1,2, 36462,0,1,2533,626,
35262,0,1,2611,600, 364718,1,2533,162,2,
352718,1,2611,601,20, 36480,1,387,627,18,
3528602,4,32,73,0, 36491,387,183,2,0,
3529110,0,116,0,65, 36501,2536,628,18,1,
35300,114,0,103,0, 36512536,629,20,630,4,
353183,0,116,0,97, 365228,86,0,101,0,
35320,116,0,101,0, 365399,0,116,0,111,
353369,0,118,0,101, 36540,114,0,65,0,
35340,110,0,116,0, 3655114,0,103,0,69,
35351,106,1,2,2,
35360,1,371,603,18,
35371,371,604,20,605,
35384,24,70,0,117,
35390,110,0,99,0,
3540116,0,105,0,111,
35410,110,0,67,0,
354297,0,108,0,108,
35430,1,141,1,2,
35442,0,1,942,606,
354518,1,942,179,2,
35460,1,2533,607,18,
35471,2533,449,2,0,
35481,387,608,18,1,
3549387,179,2,0,1,
35502616,609,18,1,2616,
3551610,20,611,4,44,
355273,0,110,0,116,
35530,82,0,111,0,
3554116,0,82,0,111,
35550,116,0,65,0,
3556114,0,103,0,83,
35570,116,0,97,0,
3558116,0,101,0,69,
35590,118,0,101,0, 36560,118,0,101,0,
3560110,0,116,0,1, 3657110,0,116,0,1,
3561108,1,2,2,0, 3658126,1,2,2,0,
35621,2617,612,18,1, 36591,2537,631,18,1,
35632617,598,2,0,1, 36602537,135,2,0,1,
35642537,613,18,1,2537, 36612543,632,18,1,2543,
3565270,2,0,1,2619, 3662367,2,0,1,2625,
3566614,18,1,2619,615, 3663633,18,1,2625,634,
356720,616,4,32,75, 366420,635,4,44,73,
36650,110,0,116,0,
366682,0,111,0,116,
36670,82,0,111,0,
3668116,0,65,0,114,
36690,103,0,83,0,
3670116,0,97,0,116,
36710,101,0,69,0,
3672118,0,101,0,110,
36730,116,0,1,108,
36741,2,2,0,1,
36752626,636,18,1,2626,
3676637,20,638,4,38,
367786,0,101,0,99,
36780,116,0,111,0,
3679114,0,65,0,114,
36800,103,0,83,0,
3681116,0,97,0,116,
36820,101,0,69,0,
3683118,0,101,0,110,
36840,116,0,1,107,
36851,2,2,0,1,
36862627,639,18,1,2627,
3687332,2,0,1,1514,
3688640,18,1,1514,175,
36892,0,1,1515,641,
369018,1,1515,211,2,
36910,1,2549,642,18,
36921,2549,162,2,0,
36931,2074,643,18,1,
36942074,175,2,0,1,
36952075,644,18,1,2075,
3696162,2,0,1,2552,
3697645,18,1,2552,646,
369820,647,4,22,75,
35680,101,0,121,0, 36990,101,0,121,0,
356965,0,114,0,103, 370065,0,114,0,103,
35700,83,0,116,0,
357197,0,116,0,101,
35720,69,0,118,0, 37010,69,0,118,0,
3573101,0,110,0,116, 3702101,0,110,0,116,
35740,1,105,1,2, 37030,1,124,1,2,
35752,0,1,2620,617, 37042,0,1,406,648,
357618,1,2620,618,20, 370518,1,406,152,2,
3577619,4,34,86,0, 37060,1,1521,649,18,
3578111,0,105,0,100, 37071,1521,183,2,0,
37081,2636,650,18,1,
37092636,651,20,652,4,
371032,75,0,101,0,
3711121,0,65,0,114,
37120,103,0,83,0,
3713116,0,97,0,116,
37140,101,0,69,0,
3715118,0,101,0,110,
37160,116,0,1,105,
37171,2,2,0,1,
37182556,653,18,1,2556,
3719654,20,655,4,28,
372075,0,101,0,121,
37210,68,0,101,0,
372299,0,108,0,97,
37230,114,0,97,0,
3724116,0,105,0,111,
37250,110,0,1,117,
37261,2,2,0,1,
37272557,656,18,1,2557,
3728657,20,658,4,52,
372975,0,101,0,121,
35790,65,0,114,0, 37300,65,0,114,0,
3580103,0,83,0,116, 3731103,0,117,0,109,
35810,97,0,116,0,
3582101,0,69,0,118,
35830,101,0,110,0, 37320,101,0,110,0,
3584116,0,1,104,1, 3733116,0,68,0,101,
35852,2,0,1,2621, 37340,99,0,108,0,
3586620,18,1,2621,621, 373597,0,114,0,97,
358720,622,4,20,83, 37360,116,0,105,0,
35880,116,0,97,0, 3737111,0,110,0,76,
3589116,0,101,0,69, 37380,105,0,115,0,
35900,118,0,101,0, 3739116,0,1,111,1,
3591110,0,116,0,1, 37402,2,0,1,2639,
3592103,1,2,2,0, 3741659,18,1,2639,660,
35931,2622,623,18,1, 374220,661,4,26,68,
35942622,624,20,625,4, 37430,69,0,70,0,
359526,68,0,69,0, 374465,0,85,0,76,
359670,0,65,0,85, 37450,84,0,95,0,
35970,76,0,84,0, 374683,0,84,0,65,
359895,0,83,0,84, 37470,84,0,69,0,
35990,65,0,84,0, 37481,47,1,1,2,
360069,0,1,47,1, 37490,1,412,662,18,
36011,2,0,1,2623, 37501,412,183,2,0,
3602626,18,1,2623,166, 37511,2484,663,18,1,
36032,0,1,2543,627, 37522484,664,20,665,4,
360418,1,2543,628,20, 375330,67,0,79,0,
3605629,4,52,75,0, 375476,0,76,0,73,
3606101,0,121,0,65, 37550,83,0,73,0,
36070,114,0,103,0, 375679,0,78,0,95,
3608117,0,109,0,101,
36090,110,0,116,0,
361068,0,101,0,99,
36110,108,0,97,0,
3612114,0,97,0,116,
36130,105,0,111,0,
3614110,0,76,0,105,
36150,115,0,116,0,
36161,110,1,2,2,
36170,1,2546,630,18,
36181,2546,270,2,0,
36191,1514,631,18,1,
36201514,171,2,0,1,
36211515,632,18,1,1515,
3622313,2,0,1,2549,
3623633,18,1,2549,163,
36242,0,1,2074,634,
362518,1,2074,171,2,
36260,1,2075,635,18,
36271,2075,163,2,0,
36281,2552,636,18,1,
36292552,637,20,638,4,
363010,69,0,118,0,
3631101,0,110,0,116,
36320,1,120,1,2,
36332,0,1,406,639,
363418,1,406,153,2,
36350,1,1521,640,18,
36361,1521,179,2,0,
36371,412,641,18,1,
3638412,179,2,0,1,
36392484,642,18,1,2484,
3640643,20,644,4,26,
364167,0,72,0,65,
36420,78,0,71,0,
364369,0,68,0,95,
36440,69,0,86,0, 37570,69,0,86,0,
364569,0,78,0,84, 375869,0,78,0,84,
36460,1,61,1,1, 37590,1,62,1,1,
36472,0,1,2023,645, 37602,0,1,2023,666,
364818,1,2023,624,2, 376118,1,2023,660,2,
36490,1,2564,646,18, 37620,1,2567,667,18,
36501,2564,163,2,0, 37631,2567,135,2,0,
36511,1442,647,18,1, 37641,1442,668,18,1,
36521442,171,2,0,1, 37651442,175,2,0,1,
36532035,648,18,1,2035, 37662035,669,18,1,2035,
3654202,2,0,1,2036, 3767138,2,0,1,2036,
3655649,18,1,2036,650, 3768670,18,1,2036,671,
365620,651,4,26,74, 376920,672,4,26,74,
36570,117,0,109,0, 37700,117,0,109,0,
3658112,0,83,0,116, 3771112,0,83,0,116,
36590,97,0,116,0, 37720,97,0,116,0,
3660101,0,109,0,101, 3773101,0,109,0,101,
36610,110,0,116,0, 37740,110,0,116,0,
36621,134,1,2,2, 37751,137,1,2,2,
36630,1,431,652,18, 37760,1,431,673,18,
36641,431,153,2,0, 37771,431,152,2,0,
36651,2105,653,18,1, 37781,2578,674,18,1,
36662105,274,2,0,1, 37792578,162,2,0,1,
36672106,654,18,1,2106, 37802105,675,18,1,2105,
3668506,2,0,1,1550, 3781281,2,0,1,2106,
3669655,18,1,1550,171, 3782676,18,1,2106,520,
36702,0,1,437,656, 37832,0,1,1550,677,
367118,1,437,179,2, 378418,1,1550,175,2,
36720,1,2044,657,18, 37850,1,437,678,18,
36731,2044,658,20,659, 37861,437,183,2,0,
36744,28,69,0,109, 37871,2044,679,18,1,
36750,112,0,116,0, 37882044,680,20,681,4,
3676121,0,83,0,116, 378928,69,0,109,0,
36770,97,0,116,0, 3790112,0,116,0,121,
3678101,0,109,0,101, 37910,83,0,116,0,
36790,110,0,116,0, 379297,0,116,0,101,
36801,129,1,2,2, 37930,109,0,101,0,
36810,1,2045,660,18, 3794110,0,116,0,1,
36821,2045,202,2,0, 3795132,1,2,2,0,
36831,1555,661,18,1, 37961,2045,682,18,1,
36841555,179,2,0,1, 37972045,138,2,0,1,
36852511,662,18,1,2511, 37981555,683,18,1,1555,
3686111,2,0,1,1001, 3799183,2,0,1,2511,
3687663,18,1,1001,604, 3800684,18,1,2511,114,
36882,0,1,1002,664, 38012,0,1,1001,685,
368918,1,1002,594,2, 380218,1,1001,623,2,
36900,1,447,665,18, 38030,1,1002,686,18,
36911,447,322,2,0, 38041,1002,619,2,0,
36921,2520,666,18,1, 38051,447,687,18,1,
36932520,270,2,0,1, 3806447,338,2,0,1,
36941010,667,18,1,1010, 38072520,688,18,1,2520,
3695171,2,0,1,1011, 3808367,2,0,1,1010,
3696668,18,1,1011,163, 3809689,18,1,1010,175,
36972,0,1,1012,669, 38102,0,1,1011,690,
369818,1,1012,179,2, 381118,1,1011,162,2,
36990,1,1013,670,18, 38120,1,1012,691,18,
37001,1013,163,2,0, 38131,1012,183,2,0,
37011,459,671,18,1, 38141,1013,692,18,1,
3702459,672,20,673,4, 38151013,162,2,0,1,
370324,76,0,69,0, 3816459,693,18,1,459,
370470,0,84,0,95, 3817694,20,695,4,24,
37050,66,0,82,0, 381876,0,69,0,70,
370665,0,67,0,75, 38190,84,0,95,0,
37070,69,0,84,0, 382066,0,82,0,65,
37081,27,1,1,2, 38210,67,0,75,0,
37090,1,1574,674,18, 382269,0,84,0,1,
37101,1574,202,2,0, 382327,1,1,2,0,
37111,461,675,18,1, 38241,1574,696,18,1,
3712461,676,20,677,4, 38251574,138,2,0,1,
371324,65,0,114,0, 3826461,697,18,1,461,
3714103,0,117,0,109, 3827698,20,699,4,24,
37150,101,0,110,0, 382865,0,114,0,103,
3716116,0,76,0,105, 38290,117,0,109,0,
37170,115,0,116,0, 3830101,0,110,0,116,
37181,142,1,2,2, 38310,76,0,105,0,
37190,1,462,678,18, 3832115,0,116,0,1,
37201,462,153,2,0, 3833145,1,2,2,0,
37211,464,679,18,1, 38341,462,700,18,1,
3722464,680,20,681,4, 3835462,152,2,0,1,
372316,65,0,114,0, 3836464,701,18,1,464,
3724103,0,117,0,109, 3837702,20,703,4,16,
37250,101,0,110,0, 383865,0,114,0,103,
3726116,0,1,143,1, 38390,117,0,109,0,
37272,2,0,1,2136, 3840101,0,110,0,116,
3728682,18,1,2136,274, 38410,1,146,1,2,
37292,0,1,2612,683, 38422,0,1,2136,704,
373018,1,2612,615,2, 384318,1,2136,281,2,
37310,1,2613,684,18, 38440,1,1585,705,18,
37321,2613,618,2,0, 38451,1585,706,20,707,
37331,2614,685,18,1, 38464,12,82,0,69,
37342614,621,2,0,1, 38470,84,0,85,0,
37352615,686,18,1,2615, 384882,0,78,0,1,
3736491,2,0,1,1585, 384950,1,1,2,0,
3737687,18,1,1585,688, 38501,476,708,18,1,
373820,689,4,12,82, 3851476,709,20,710,4,
37390,69,0,84,0, 385230,83,0,84,0,
374085,0,82,0,78, 385382,0,73,0,78,
37410,1,50,1,1, 38540,71,0,95,0,
37422,0,1,2618,690, 385567,0,79,0,78,
374318,1,2618,601,2, 38560,83,0,84,0,
37440,1,476,691,18, 385765,0,78,0,84,
37451,476,692,20,693, 38580,1,3,1,1,
37464,30,83,0,84, 38592,0,1,477,711,
37470,82,0,73,0, 386018,1,477,712,20,
374878,0,71,0,95, 3861713,4,28,70,0,
37490,67,0,79,0, 386276,0,79,0,65,
375078,0,83,0,84, 38630,84,0,95,0,
37510,65,0,78,0, 386467,0,79,0,78,
375284,0,1,3,1, 38650,83,0,84,0,
37531,2,0,1,477, 386665,0,78,0,84,
3754694,18,1,477,695, 38670,1,95,1,1,
375520,696,4,28,70, 38682,0,1,478,714,
37560,76,0,79,0, 386918,1,478,715,20,
375765,0,84,0,95, 3870716,4,40,72,0,
37580,67,0,79,0, 387169,0,88,0,95,
375978,0,83,0,84, 38720,73,0,78,0,
37600,65,0,78,0,
376184,0,1,95,1,
37621,2,0,1,478,
3763697,18,1,478,698,
376420,699,4,40,72,
37650,69,0,88,0,
376695,0,73,0,78,
37670,84,0,69,0,
376871,0,69,0,82,
37690,95,0,67,0,
377079,0,78,0,83,
37710,84,0,65,0,
377278,0,84,0,1,
377394,1,1,2,0,
37741,479,700,18,1,
3775479,701,20,702,4,
377632,73,0,78,0,
377784,0,69,0,71, 387384,0,69,0,71,
37780,69,0,82,0, 38740,69,0,82,0,
377995,0,67,0,79, 387595,0,67,0,79,
37800,78,0,83,0, 38760,78,0,83,0,
378184,0,65,0,78, 387784,0,65,0,78,
37820,84,0,1,93, 38780,84,0,1,94,
37831,1,2,0,1, 38791,1,2,0,1,
3784480,703,18,1,480, 3880479,717,18,1,479,
3785704,20,705,4,26, 3881718,20,719,4,32,
378682,0,73,0,71, 388273,0,78,0,84,
37870,72,0,84,0, 38830,69,0,71,0,
378895,0,66,0,82, 388469,0,82,0,95,
37890,65,0,67,0, 38850,67,0,79,0,
379075,0,69,0,84, 388678,0,83,0,84,
37910,1,28,1,1, 38870,65,0,78,0,
37922,0,1,481,706, 388884,0,1,93,1,
379318,1,481,680,2, 38891,2,0,1,480,
37940,1,2711,707,18, 3890720,18,1,480,721,
37951,2711,491,2,0, 389120,722,4,26,82,
37961,2718,708,18,1, 38920,73,0,71,0,
37972718,242,2,0,1, 389372,0,84,0,95,
37981048,709,18,1,1048, 38940,66,0,82,0,
3799179,2,0,1,2721, 389565,0,67,0,75,
3800710,18,1,2721,711, 38960,69,0,84,0,
380120,712,4,10,83, 38971,28,1,1,2,
38020,116,0,97,0, 38980,1,481,723,18,
3803116,0,101,0,1, 38991,481,702,2,0,
3804101,1,2,2,0, 39001,2628,724,18,1,
38051,2722,713,18,1, 39012628,651,2,0,1,
38062722,711,2,0,1, 39022629,725,18,1,2629,
38072723,714,18,1,2723, 3903726,20,727,4,34,
3808132,2,0,1,2724, 390486,0,111,0,105,
3809715,18,1,2724,135, 39050,100,0,65,0,
38102,0,1,2042,716, 3906114,0,103,0,83,
381118,1,2042,717,20,
3812718,4,20,65,0,
3813115,0,115,0,105,
38140,103,0,110,0,
3815109,0,101,0,110,
38160,116,0,1,130,
38171,2,2,0,1,
38182043,719,18,1,2043,
3819202,2,0,1,2568,
3820720,18,1,2568,721,
382120,722,4,18,83,
38220,116,0,97,0, 39070,116,0,97,0,
3823116,0,101,0,66, 3908116,0,101,0,69,
38240,111,0,100,0,
3825121,0,1,102,1,
38262,2,0,1,2733,
3827723,18,1,2733,150,
38282,0,1,1620,724,
382918,1,1620,171,2,
38300,1,1621,725,18,
38311,1621,160,2,0,
38321,1622,726,18,1,
38331622,313,2,0,1,
3834509,727,18,1,509,
3835153,2,0,1,2498,
3836728,18,1,2498,729,
383720,730,4,24,76,
38380,73,0,83,0,
383984,0,69,0,78,
38400,95,0,69,0,
384186,0,69,0,78,
38420,84,0,1,73,
38431,1,2,0,1,
38442739,731,18,1,2739,
3845160,2,0,1,2740,
3846732,18,1,2740,313,
38472,0,1,1628,733,
384818,1,1628,179,2,
38490,1,515,734,18,
38501,515,179,2,0,
38511,2505,735,18,1,
38522505,736,20,737,4,
385334,73,0,110,0,
3854116,0,82,0,111,
38550,116,0,82,0,
3856111,0,116,0,65,
38570,114,0,103,0,
385869,0,118,0,101,
38590,110,0,116,0,
38601,125,1,2,2,
38610,1,2746,738,18,
38621,2746,179,2,0,
38631,2664,739,18,1,
38642664,721,2,0,1,
3865525,740,18,1,525,
3866322,2,0,1,2197,
3867741,18,1,2197,171,
38682,0,1,2198,742,
386918,1,2198,163,2,
38700,1,1591,743,18,
38711,1591,179,2,0,
38721,2521,744,18,1,
38732521,745,20,746,4,
387428,86,0,101,0,
387599,0,116,0,111,
38760,114,0,65,0,
3877114,0,103,0,69,
38780,118,0,101,0, 39090,118,0,101,0,
3879110,0,116,0,1, 3910110,0,116,0,1,
3880124,1,2,2,0, 3911104,1,2,2,0,
38811,1094,747,18,1, 39121,2630,728,18,1,
38821094,676,2,0,1, 39132630,729,20,730,4,
38831096,748,18,1,1096, 391420,83,0,116,0,
3884163,2,0,1,1657, 391597,0,116,0,101,
3885749,18,1,1657,202, 39160,69,0,118,0,
38862,0,1,1658,750, 3917101,0,110,0,116,
388718,1,1658,751,20, 39180,1,103,1,2,
3888752,4,6,70,0, 39192,0,1,2631,731,
388979,0,82,0,1, 392018,1,2631,506,2,
389046,1,1,2,0, 39210,1,2554,732,18,
38911,1659,753,18,1, 39221,2554,117,2,0,
38921659,135,2,0,1, 39231,2633,733,18,1,
38932609,754,18,1,2609, 39242633,634,2,0,1,
3894610,2,0,1,2776, 39252634,734,18,1,2634,
3895755,18,1,2776,202, 3926637,2,0,1,1048,
38962,0,1,2777,756, 3927735,18,1,1048,183,
389718,1,2777,757,20, 39282,0,1,2637,736,
3898758,4,34,71,0, 392918,1,2637,726,2,
3899108,0,111,0,98, 39300,1,2638,737,18,
39000,97,0,108,0, 39311,2638,729,2,0,
390168,0,101,0,102, 39321,2640,738,18,1,
39020,105,0,110,0, 39332640,165,2,0,1,
3903105,0,116,0,105, 39342563,739,18,1,2563,
39040,111,0,110,0, 3935162,2,0,1,2042,
3905115,0,1,97,1, 3936740,18,1,2042,741,
39062,2,0,1,1665, 393720,742,4,20,65,
3907759,18,1,1665,179, 39380,115,0,115,0,
39082,0,1,1113,760, 3939105,0,103,0,110,
390918,1,1113,187,2, 39400,109,0,101,0,
39100,761,5,0,762, 3941110,0,116,0,1,
39115,365,1,2,763, 3942133,1,2,2,0,
391219,146,1,2,764, 39431,2043,743,18,1,
39135,6,1,2711,765, 39442043,138,2,0,1,
391417,766,15,767,4, 39452731,744,18,1,2731,
391512,37,0,83,0, 3946506,2,0,1,1620,
3916116,0,97,0,116, 3947745,18,1,1620,175,
39170,101,0,1,-1, 39482,0,1,1621,746,
39181,5,768,20,769, 394918,1,1621,159,2,
39194,14,83,0,116, 39500,1,1622,747,18,
39200,97,0,116,0, 39511,1622,211,2,0,
3921101,0,95,0,49, 39521,509,748,18,1,
39220,1,172,1,3, 3953509,152,2,0,1,
39231,5,1,4,770, 39542498,749,18,1,2498,
392422,1,13,1,2718, 3955750,20,751,4,22,
3925771,17,772,15,773, 395677,0,79,0,78,
39264,30,37,0,76, 39570,69,0,89,0,
395895,0,69,0,86,
39590,69,0,78,0,
396084,0,1,74,1,
39611,2,0,1,2739,
3962752,18,1,2739,484,
39632,0,1,2576,753,
396418,1,2576,149,2,
39650,1,1628,754,18,
39661,1628,183,2,0,
39671,515,755,18,1,
3968515,183,2,0,1,
39692580,756,18,1,2580,
3970367,2,0,1,2505,
3971757,18,1,2505,758,
397220,759,4,34,73,
39730,110,0,116,0,
397486,0,101,0,99,
39750,86,0,101,0,
397699,0,65,0,114,
39770,103,0,69,0,
3978118,0,101,0,110,
39790,116,0,1,128,
39801,2,2,0,1,
39812582,760,18,1,2582,
3982308,2,0,1,525,
3983761,18,1,525,338,
39842,0,1,2197,762,
398518,1,2197,175,2,
39860,1,2198,763,18,
39871,2198,162,2,0,
39881,1591,764,18,1,
39891591,183,2,0,1,
39902758,765,18,1,2758,
3991367,2,0,1,2760,
3992766,18,1,2760,159,
39932,0,1,2521,767,
399418,1,2521,768,20,
3995769,4,34,73,0,
3996110,0,116,0,82,
39970,111,0,116,0,
399882,0,111,0,116,
39990,65,0,114,0,
4000103,0,69,0,118,
40010,101,0,110,0,
4002116,0,1,127,1,
40032,2,0,1,1094,
4004770,18,1,1094,698,
40052,0,1,1096,771,
400618,1,1096,162,2,
40070,1,1657,772,18,
40081,1657,138,2,0,
40091,1658,773,18,1,
40101658,774,20,775,4,
40116,70,0,79,0,
401282,0,1,46,1,
40131,2,0,1,1659,
4014776,18,1,1659,135,
40152,0,1,1665,777,
401618,1,1665,183,2,
40170,1,1113,778,18,
40181,1113,191,2,0,
4019779,5,0,780,5,
4020372,1,2,781,19,
4021275,1,2,782,5,
40226,1,2739,783,17,
4023784,15,785,4,30,
402437,0,76,0,83,
40250,76,0,80,0,
4026114,0,111,0,103,
40270,114,0,97,0,
4028109,0,82,0,111,
40290,111,0,116,0,
40301,-1,1,5,786,
403120,787,4,32,76,
39270,83,0,76,0, 40320,83,0,76,0,
392880,0,114,0,111, 403380,0,114,0,111,
39290,103,0,114,0, 40340,103,0,114,0,
393097,0,109,0,82, 403597,0,109,0,82,
39310,111,0,111,0, 40360,111,0,111,0,
3932116,0,1,-1,1, 4037116,0,95,0,50,
39335,774,20,775,4, 40380,1,164,1,3,
393432,76,0,83,0, 40391,2,1,1,788,
393576,0,80,0,114, 404022,1,2,1,2809,
39360,111,0,103,0, 4041789,17,790,15,785,
3937114,0,97,0,109, 40421,-1,1,5,791,
39380,82,0,111,0, 404320,792,4,32,76,
3939111,0,116,0,95, 40440,83,0,76,0,
39400,50,0,1,161, 404580,0,114,0,111,
39411,3,1,2,1, 40460,103,0,114,0,
39421,776,22,1,2, 404797,0,109,0,82,
39431,2721,777,17,778, 40480,111,0,111,0,
394415,779,4,14,37, 4049116,0,95,0,49,
39450,83,0,116,0, 40500,1,163,1,3,
394697,0,116,0,101, 40511,3,1,2,793,
39470,115,0,1,-1, 405222,1,1,1,2742,
39481,5,780,20,781, 4053794,17,795,15,796,
39494,16,83,0,116, 40544,14,37,0,83,
39500,97,0,116,0, 40550,116,0,97,0,
3951101,0,115,0,95, 4056116,0,101,0,115,
39520,50,0,1,171, 40570,1,-1,1,5,
39531,3,1,3,1, 4058797,20,798,4,16,
39542,782,22,1,12,
39551,2788,783,17,784,
395615,773,1,-1,1,
39575,785,20,786,4,
395832,76,0,83,0,
395976,0,80,0,114,
39600,111,0,103,0,
3961114,0,97,0,109,
39620,82,0,111,0,
3963111,0,116,0,95,
39640,49,0,1,160,
39651,3,1,3,1,
39662,787,22,1,1,
39671,2722,788,17,789,
396815,779,1,-1,1,
39695,790,20,791,4,
397016,83,0,116,0,
397197,0,116,0,101,
39720,115,0,95,0,
397349,0,1,170,1,
39743,1,2,1,1,
3975792,22,1,11,1,
39762615,793,17,794,15,
3977767,1,-1,1,5,
3978795,20,796,4,14,
397983,0,116,0,97, 405983,0,116,0,97,
39800,116,0,101,0, 40600,116,0,101,0,
398195,0,50,0,1, 4061115,0,95,0,50,
3982173,1,3,1,6, 40620,1,174,1,3,
39831,5,797,22,1, 40631,3,1,2,799,
398414,1,3,798,19, 406422,1,12,1,2743,
3985693,1,3,799,5, 4065800,17,801,15,796,
398695,1,256,800,16, 40661,-1,1,5,802,
39870,691,1,1261,801, 406720,803,4,16,83,
398816,0,691,1,509, 40680,116,0,97,0,
3989802,16,0,691,1, 4069116,0,101,0,115,
39901515,803,16,0,691, 40700,95,0,49,0,
39911,2021,804,17,805, 40711,173,1,3,1,
399215,806,4,24,37, 40722,1,1,804,22,
40731,11,1,2631,805,
407417,806,15,807,4,
407512,37,0,83,0,
4076116,0,97,0,116,
40770,101,0,1,-1,
40781,5,808,20,809,
40794,14,83,0,116,
40800,97,0,116,0,
4081101,0,95,0,50,
40820,1,176,1,3,
40831,6,1,5,810,
408422,1,14,1,2731,
4085811,17,812,15,807,
40861,-1,1,5,813,
408720,814,4,14,83,
40880,116,0,97,0,
4089116,0,101,0,95,
40900,49,0,1,175,
40911,3,1,5,1,
40924,815,22,1,13,
40931,3,816,19,710,
40941,3,817,5,95,
40951,2761,818,16,0,
4096708,1,256,819,16,
40970,708,1,1261,820,
409816,0,708,1,509,
4099821,16,0,708,1,
41001515,822,16,0,708,
41011,2021,823,17,824,
410215,825,4,24,37,
39930,73,0,102,0, 41030,73,0,102,0,
399483,0,116,0,97, 410483,0,116,0,97,
39950,116,0,101,0, 41050,116,0,101,0,
3996109,0,101,0,110, 4106109,0,101,0,110,
39970,116,0,1,-1, 41070,116,0,1,-1,
39981,5,807,20,808, 41081,5,826,20,827,
39994,26,73,0,102, 41094,26,73,0,102,
40000,83,0,116,0, 41100,83,0,116,0,
400197,0,116,0,101, 411197,0,116,0,101,
40020,109,0,101,0, 41120,109,0,101,0,
4003110,0,116,0,95, 4113110,0,116,0,95,
40040,50,0,1,226, 41140,50,0,1,233,
40051,3,1,8,1, 41151,3,1,8,1,
40067,809,22,1,68, 41167,828,22,1,72,
40071,1775,810,16,0, 41171,1775,829,16,0,
4008691,1,2029,811,17, 4118708,1,2029,830,17,
4009812,15,813,4,20, 4119831,15,832,4,20,
401037,0,83,0,116, 412037,0,83,0,116,
40110,97,0,116,0, 41210,97,0,116,0,
4012101,0,109,0,101, 4122101,0,109,0,101,
40130,110,0,116,0, 41230,110,0,116,0,
40141,-1,1,5,814, 41241,-1,1,5,833,
401520,815,4,24,83, 412520,834,4,24,83,
40160,116,0,97,0, 41260,116,0,97,0,
4017116,0,101,0,109, 4127116,0,101,0,109,
40180,101,0,110,0, 41280,101,0,110,0,
4019116,0,95,0,49, 4129116,0,95,0,49,
40200,51,0,1,220, 41300,51,0,1,227,
40211,3,1,2,1, 41311,3,1,2,1,
40221,816,22,1,62, 41321,835,22,1,66,
40231,2030,817,17,818, 41331,2030,836,17,837,
402415,813,1,-1,1, 413415,832,1,-1,1,
40255,819,20,820,4, 41355,838,20,839,4,
402624,83,0,116,0, 413624,83,0,116,0,
402797,0,116,0,101, 413797,0,116,0,101,
40280,109,0,101,0, 41380,109,0,101,0,
4029110,0,116,0,95, 4139110,0,116,0,95,
40300,49,0,50,0, 41400,49,0,50,0,
40311,219,1,3,1, 41411,226,1,3,1,
40322,1,1,821,22, 41422,1,1,840,22,
40331,61,1,2031,822, 41431,65,1,2031,841,
403417,823,15,813,1, 414417,842,15,832,1,
4035-1,1,5,824,20, 4145-1,1,5,843,20,
4036825,4,24,83,0, 4146844,4,24,83,0,
4037116,0,97,0,116, 4147116,0,97,0,116,
40380,101,0,109,0, 41480,101,0,109,0,
4039101,0,110,0,116, 4149101,0,110,0,116,
40400,95,0,49,0, 41500,95,0,49,0,
404149,0,1,218,1, 415149,0,1,225,1,
40423,1,2,1,1, 41523,1,2,1,1,
4043826,22,1,60,1, 4153845,22,1,64,1,
40442032,827,17,828,15, 41542032,846,17,847,15,
4045813,1,-1,1,5, 4155832,1,-1,1,5,
4046829,20,830,4,24, 4156848,20,849,4,24,
404783,0,116,0,97, 415783,0,116,0,97,
40480,116,0,101,0, 41580,116,0,101,0,
4049109,0,101,0,110, 4159109,0,101,0,110,
40500,116,0,95,0, 41600,116,0,95,0,
405149,0,48,0,1, 416149,0,48,0,1,
4052217,1,3,1,2, 4162224,1,3,1,2,
40531,1,831,22,1, 41631,1,850,22,1,
405459,1,2033,832,17, 416463,1,2033,851,17,
4055833,15,813,1,-1, 4165852,15,832,1,-1,
40561,5,834,20,835, 41661,5,853,20,854,
40574,22,83,0,116, 41674,22,83,0,116,
40580,97,0,116,0, 41680,97,0,116,0,
4059101,0,109,0,101, 4169101,0,109,0,101,
40600,110,0,116,0, 41700,110,0,116,0,
406195,0,57,0,1, 417195,0,57,0,1,
4062216,1,3,1,2, 4172223,1,3,1,2,
40631,1,836,22,1, 41731,1,855,22,1,
406458,1,277,837,16, 417462,1,277,856,16,
40650,691,1,2035,838, 41750,708,1,2035,857,
406617,839,15,813,1, 417617,858,15,832,1,
4067-1,1,5,840,20, 4177-1,1,5,859,20,
4068841,4,22,83,0, 4178860,4,22,83,0,
4069116,0,97,0,116, 4179116,0,97,0,116,
40700,101,0,109,0, 41800,101,0,109,0,
4071101,0,110,0,116, 4181101,0,110,0,116,
40720,95,0,56,0, 41820,95,0,56,0,
40731,215,1,3,1, 41831,222,1,3,1,
40743,1,2,842,22, 41843,1,2,861,22,
40751,57,1,2037,843, 41851,61,1,2037,862,
407617,844,15,813,1, 418617,863,15,832,1,
4077-1,1,5,845,20, 4187-1,1,5,864,20,
4078846,4,22,83,0, 4188865,4,22,83,0,
4079116,0,97,0,116, 4189116,0,97,0,116,
40800,101,0,109,0, 41900,101,0,109,0,
4081101,0,110,0,116, 4191101,0,110,0,116,
40820,95,0,55,0, 41920,95,0,55,0,
40831,214,1,3,1, 41931,221,1,3,1,
40843,1,2,847,22, 41943,1,2,866,22,
40851,56,1,2039,848, 41951,60,1,2039,867,
408617,849,15,813,1, 419617,868,15,832,1,
4087-1,1,5,850,20, 4197-1,1,5,869,20,
4088851,4,22,83,0, 4198870,4,22,83,0,
4089116,0,97,0,116, 4199116,0,97,0,116,
40900,101,0,109,0, 42000,101,0,109,0,
4091101,0,110,0,116, 4201101,0,110,0,116,
40920,95,0,54,0, 42020,95,0,54,0,
40931,213,1,3,1, 42031,220,1,3,1,
40943,1,2,852,22, 42043,1,2,871,22,
40951,55,1,32,853, 42051,59,1,32,872,
409616,0,691,1,2041, 420616,0,708,1,2041,
4097854,17,855,15,813, 4207873,17,874,15,832,
40981,-1,1,5,856, 42081,-1,1,5,875,
409920,857,4,22,83, 420920,876,4,22,83,
41000,116,0,97,0, 42100,116,0,97,0,
4101116,0,101,0,109, 4211116,0,101,0,109,
41020,101,0,110,0, 42120,101,0,110,0,
4103116,0,95,0,53, 4213116,0,95,0,53,
41040,1,212,1,3, 42140,1,219,1,3,
41051,3,1,2,858, 42151,3,1,2,877,
410622,1,54,1,2293, 421622,1,58,1,2293,
4107859,16,0,691,1, 4217878,16,0,708,1,
41082043,860,17,861,15, 42182043,879,17,880,15,
4109813,1,-1,1,5, 4219832,1,-1,1,5,
4110862,20,863,4,22, 4220881,20,882,4,22,
411183,0,116,0,97, 422183,0,116,0,97,
41120,116,0,101,0, 42220,116,0,101,0,
4113109,0,101,0,110, 4223109,0,101,0,110,
41140,116,0,95,0, 42240,116,0,95,0,
411551,0,1,210,1, 422551,0,1,217,1,
41163,1,3,1,2, 42263,1,3,1,2,
4117864,22,1,52,1, 4227883,22,1,56,1,
41182045,865,17,866,15, 42282045,884,17,885,15,
4119813,1,-1,1,5, 4229832,1,-1,1,5,
4120867,20,868,4,22, 4230886,20,887,4,22,
412183,0,116,0,97, 423183,0,116,0,97,
41220,116,0,101,0, 42320,116,0,101,0,
4123109,0,101,0,110, 4233109,0,101,0,110,
41240,116,0,95,0, 42340,116,0,95,0,
412549,0,1,208,1, 423549,0,1,215,1,
41263,1,3,1,2, 42363,1,3,1,2,
4127869,22,1,50,1, 4237888,22,1,54,1,
412841,870,16,0,691, 423841,889,16,0,708,
41291,1297,871,16,0, 42391,1297,890,16,0,
4130691,1,43,872,16, 4240708,1,43,891,16,
41310,691,1,1803,873, 42410,708,1,1803,892,
413217,874,15,875,4, 424217,893,15,894,4,
413316,37,0,70,0, 424316,37,0,70,0,
4134111,0,114,0,76, 4244111,0,114,0,76,
41350,111,0,111,0, 42450,111,0,111,0,
4136112,0,1,-1,1, 4246112,0,1,-1,1,
41375,876,20,877,4, 42475,895,20,896,4,
413818,70,0,111,0, 424818,70,0,111,0,
4139114,0,76,0,111, 4249114,0,76,0,111,
41400,111,0,112,0, 42500,111,0,112,0,
414195,0,49,0,1, 425195,0,49,0,1,
4142233,1,3,1,10, 4252240,1,3,1,10,
41431,9,878,22,1, 42531,9,897,22,1,
414475,1,1804,879,16, 425479,1,1804,898,16,
41450,691,1,299,880, 42550,708,1,299,899,
414616,0,691,1,52, 425616,0,708,1,52,
4147881,16,0,691,1, 4257900,16,0,708,1,
41482318,882,16,0,691, 42582318,901,16,0,708,
41491,62,883,16,0, 42591,62,902,16,0,
4150691,1,2075,884,16, 4260708,1,2075,903,16,
41510,691,1,1574,885, 42610,708,1,1574,904,
415217,886,15,813,1, 426217,905,15,832,1,
4153-1,1,5,887,20, 4263-1,1,5,906,20,
4154888,4,22,83,0, 4264907,4,22,83,0,
4155116,0,97,0,116, 4265116,0,97,0,116,
41560,101,0,109,0, 42660,101,0,109,0,
4157101,0,110,0,116, 4267101,0,110,0,116,
41580,95,0,52,0, 42680,95,0,52,0,
41591,211,1,3,1, 42691,218,1,3,1,
41603,1,2,889,22, 42703,1,2,908,22,
41611,53,1,71,890, 42711,57,1,71,909,
416216,0,691,1,76, 427216,0,708,1,76,
4163891,16,0,691,1, 4273910,16,0,708,1,
41641834,892,16,0,691, 42741834,911,16,0,708,
41651,2337,893,16,0, 42751,2337,912,16,0,
4166691,1,79,894,16, 4276708,1,79,913,16,
41670,691,1,1335,895, 42770,708,1,1335,914,
416816,0,691,1,322, 427816,0,708,1,322,
4169896,16,0,691,1, 4279915,16,0,708,1,
417085,897,16,0,691, 428085,916,16,0,708,
41711,89,898,16,0, 42811,89,917,16,0,
4172691,1,346,899,16, 4282708,1,346,918,16,
41730,691,1,2105,900, 42830,708,1,2105,919,
417417,901,15,806,1, 428417,920,15,825,1,
4175-1,1,5,902,20, 4285-1,1,5,921,20,
4176903,4,26,73,0, 4286922,4,26,73,0,
4177102,0,83,0,116, 4287102,0,83,0,116,
41780,97,0,116,0, 42880,97,0,116,0,
4179101,0,109,0,101, 4289101,0,109,0,101,
41800,110,0,116,0, 42900,110,0,116,0,
418195,0,51,0,1, 429195,0,51,0,1,
4182227,1,3,1,6, 4292234,1,3,1,6,
41831,5,904,22,1, 42931,5,923,22,1,
418469,1,2106,905,16, 429473,1,2106,924,16,
41850,691,1,97,906, 42950,708,1,97,925,
418616,0,691,1,1860, 429616,0,708,1,1860,
4187907,17,908,15,909, 4297926,17,927,15,928,
41884,34,37,0,68, 42984,34,37,0,68,
41890,111,0,87,0, 42990,111,0,87,0,
4190104,0,105,0,108, 4300104,0,105,0,108,
@@ -4193,7 +4303,7 @@ public yyLSLSyntax
41930,101,0,109,0, 43030,101,0,109,0,
4194101,0,110,0,116, 4304101,0,110,0,116,
41950,1,-1,1,5, 43050,1,-1,1,5,
4196910,20,911,4,36, 4306929,20,930,4,36,
419768,0,111,0,87, 430768,0,111,0,87,
41980,104,0,105,0, 43080,104,0,105,0,
4199108,0,101,0,83, 4309108,0,101,0,83,
@@ -4201,25 +4311,25 @@ public yyLSLSyntax
4201116,0,101,0,109, 4311116,0,101,0,109,
42020,101,0,110,0, 43120,101,0,110,0,
4203116,0,95,0,49, 4313116,0,95,0,49,
42040,1,231,1,3, 43140,1,238,1,3,
42051,8,1,7,912, 43151,8,1,7,931,
420622,1,73,1,2364, 431622,1,77,1,2364,
4207913,17,914,15,875, 4317932,17,933,15,894,
42081,-1,1,5,915, 43181,-1,1,5,934,
420920,916,4,18,70, 431920,935,4,18,70,
42100,111,0,114,0, 43200,111,0,114,0,
421176,0,111,0,111, 432176,0,111,0,111,
42120,112,0,95,0, 43220,112,0,95,0,
421350,0,1,234,1, 432350,0,1,241,1,
42143,1,9,1,8, 43243,1,9,1,8,
4215917,22,1,76,1, 4325936,22,1,80,1,
4216102,918,16,0,691, 4326102,937,16,0,708,
42171,112,919,16,0, 43271,112,938,16,0,
4218691,1,1117,920,16, 4328708,1,1117,939,16,
42190,691,1,1873,921, 43290,708,1,1873,940,
422017,922,15,909,1, 433017,941,15,928,1,
4221-1,1,5,923,20, 4331-1,1,5,942,20,
4222924,4,36,68,0, 4332943,4,36,68,0,
4223111,0,87,0,104, 4333111,0,87,0,104,
42240,105,0,108,0, 43340,105,0,108,0,
4225101,0,83,0,116, 4335101,0,83,0,116,
@@ -4227,86 +4337,86 @@ public yyLSLSyntax
4227101,0,109,0,101, 4337101,0,109,0,101,
42280,110,0,116,0, 43380,110,0,116,0,
422995,0,50,0,1, 433995,0,50,0,1,
4230232,1,3,1,8, 4340239,1,3,1,8,
42311,7,925,22,1, 43411,7,944,22,1,
423274,1,1876,926,16, 434278,1,1876,945,16,
42330,691,1,124,927, 43430,708,1,124,946,
423416,0,691,1,2136, 434416,0,708,1,2136,
4235928,17,929,15,806, 4345947,17,948,15,825,
42361,-1,1,5,930, 43461,-1,1,5,949,
423720,931,4,26,73, 434720,950,4,26,73,
42380,102,0,83,0, 43480,102,0,83,0,
4239116,0,97,0,116, 4349116,0,97,0,116,
42400,101,0,109,0, 43500,101,0,109,0,
4241101,0,110,0,116, 4351101,0,110,0,116,
42420,95,0,52,0, 43520,95,0,52,0,
42431,228,1,3,1, 43531,235,1,3,1,
42448,1,7,932,22, 43548,1,7,951,22,
42451,70,1,381,933, 43551,74,1,381,952,
424616,0,691,1,525, 435616,0,708,1,525,
4247934,16,0,691,1, 4357953,16,0,708,1,
4248137,935,16,0,691, 4358137,954,16,0,708,
42491,1901,936,16,0, 43591,1901,955,16,0,
4250691,1,1153,937,16, 4360708,1,1153,956,16,
42510,691,1,151,938, 43610,708,1,151,957,
425216,0,691,1,1407, 436216,0,708,1,1407,
4253939,16,0,691,1, 4363958,16,0,708,1,
42541659,940,16,0,691, 43641659,959,16,0,708,
42551,2413,941,16,0, 43651,2413,960,16,0,
4256691,1,406,942,16, 4366708,1,406,961,16,
42570,691,1,1371,943, 43670,708,1,1371,962,
425816,0,691,1,166, 436816,0,708,1,166,
4259944,16,0,691,1, 4369963,16,0,708,1,
42601622,945,16,0,691, 43701622,964,16,0,708,
42611,1931,946,17,947, 43711,1931,965,17,966,
426215,948,4,30,37, 437215,967,4,30,37,
42630,87,0,104,0, 43730,87,0,104,0,
4264105,0,108,0,101, 4374105,0,108,0,101,
42650,83,0,116,0, 43750,83,0,116,0,
426697,0,116,0,101, 437697,0,116,0,101,
42670,109,0,101,0, 43770,109,0,101,0,
4268110,0,116,0,1, 4378110,0,116,0,1,
4269-1,1,5,949,20, 4379-1,1,5,968,20,
4270950,4,32,87,0, 4380969,4,32,87,0,
4271104,0,105,0,108, 4381104,0,105,0,108,
42720,101,0,83,0, 43820,101,0,83,0,
4273116,0,97,0,116, 4383116,0,97,0,116,
42740,101,0,109,0, 43840,101,0,109,0,
4275101,0,110,0,116, 4385101,0,110,0,116,
42760,95,0,49,0, 43860,95,0,49,0,
42771,229,1,3,1, 43871,236,1,3,1,
42786,1,5,951,22, 43886,1,5,970,22,
42791,71,1,1933,952, 43891,75,1,1933,971,
428016,0,691,1,431, 439016,0,708,1,431,
4281953,16,0,691,1, 4391972,16,0,708,1,
42821585,954,16,0,691, 43921585,973,16,0,708,
42831,182,955,16,0, 43931,182,974,16,0,
4284691,1,1189,956,16, 4394708,1,1189,975,16,
42850,691,1,1443,957, 43950,708,1,1443,976,
428616,0,691,1,1695, 439616,0,708,1,1695,
4287958,16,0,691,1, 4397977,16,0,708,1,
42882198,959,16,0,691, 43982198,978,16,0,708,
42891,447,960,16,0, 43991,447,979,16,0,
4290691,1,2458,961,17, 4400708,1,2458,980,17,
4291962,15,963,4,28, 4401981,15,982,4,28,
429237,0,83,0,116, 440237,0,83,0,116,
42930,97,0,116,0, 44030,97,0,116,0,
4294101,0,109,0,101, 4404101,0,109,0,101,
42950,110,0,116,0, 44050,110,0,116,0,
429676,0,105,0,115, 440676,0,105,0,115,
42970,116,0,1,-1, 44070,116,0,1,-1,
42981,5,964,20,965, 44081,5,983,20,984,
42994,30,83,0,116, 44094,30,83,0,116,
43000,97,0,116,0, 44100,97,0,116,0,
4301101,0,109,0,101, 4411101,0,109,0,101,
43020,110,0,116,0, 44120,110,0,116,0,
430376,0,105,0,115, 441376,0,105,0,115,
43040,116,0,95,0, 44140,116,0,95,0,
430550,0,1,206,1, 441550,0,1,213,1,
43063,1,3,1,2, 44163,1,3,1,2,
4307966,22,1,48,1, 4417985,22,1,52,1,
43082459,967,17,968,15, 44182459,986,17,987,15,
4309969,4,36,37,0, 4419988,4,36,37,0,
431067,0,111,0,109, 442067,0,111,0,109,
43110,112,0,111,0, 44210,112,0,111,0,
4312117,0,110,0,100, 4422117,0,110,0,100,
@@ -4314,8 +4424,8 @@ public yyLSLSyntax
431497,0,116,0,101, 442497,0,116,0,101,
43150,109,0,101,0, 44250,109,0,101,0,
4316110,0,116,0,1, 4426110,0,116,0,1,
4317-1,1,5,970,20, 4427-1,1,5,989,20,
4318971,4,38,67,0, 4428990,4,38,67,0,
4319111,0,109,0,112, 4429111,0,109,0,112,
43200,111,0,117,0, 44300,111,0,117,0,
4321110,0,100,0,83, 4431110,0,100,0,83,
@@ -4323,35 +4433,35 @@ public yyLSLSyntax
4323116,0,101,0,109, 4433116,0,101,0,109,
43240,101,0,110,0, 44340,101,0,110,0,
4325116,0,95,0,50, 4435116,0,95,0,50,
43260,1,204,1,3, 44360,1,211,1,3,
43271,4,1,3,972, 44371,4,1,3,991,
432822,1,46,1,1958, 443822,1,50,1,1958,
4329973,16,0,691,1, 4439992,16,0,708,1,
43302462,974,17,975,15, 44402462,993,17,994,15,
4331963,1,-1,1,5, 4441982,1,-1,1,5,
4332976,20,977,4,30, 4442995,20,996,4,30,
433383,0,116,0,97, 444383,0,116,0,97,
43340,116,0,101,0, 44440,116,0,101,0,
4335109,0,101,0,110, 4445109,0,101,0,110,
43360,116,0,76,0, 44460,116,0,76,0,
4337105,0,115,0,116, 4447105,0,115,0,116,
43380,95,0,49,0, 44480,95,0,49,0,
43391,205,1,3,1, 44491,212,1,3,1,
43402,1,1,978,22, 44502,1,1,997,22,
43411,47,1,1657,979, 44511,51,1,1657,998,
434217,980,15,813,1, 445217,999,15,832,1,
4343-1,1,5,981,20, 4453-1,1,5,1000,20,
4344982,4,22,83,0, 44541001,4,22,83,0,
4345116,0,97,0,116, 4455116,0,97,0,116,
43460,101,0,109,0, 44560,101,0,109,0,
4347101,0,110,0,116, 4457101,0,110,0,116,
43480,95,0,50,0, 44580,95,0,50,0,
43491,209,1,3,1, 44591,216,1,3,1,
43503,1,2,983,22, 44603,1,2,1002,22,
43511,51,1,2464,984, 44611,55,1,2464,1003,
435217,985,15,969,1, 446217,1004,15,988,1,
4353-1,1,5,986,20, 4463-1,1,5,1005,20,
4354987,4,38,67,0, 44641006,4,38,67,0,
4355111,0,109,0,112, 4465111,0,109,0,112,
43560,111,0,117,0, 44660,111,0,117,0,
4357110,0,100,0,83, 4467110,0,100,0,83,
@@ -4359,302 +4469,302 @@ public yyLSLSyntax
4359116,0,101,0,109, 4469116,0,101,0,109,
43600,101,0,110,0, 44700,101,0,110,0,
4361116,0,95,0,49, 4471116,0,95,0,49,
43620,1,203,1,3, 44720,1,210,1,3,
43631,3,1,2,988, 44731,3,1,2,1007,
436422,1,45,1,199, 447422,1,49,1,199,
4365989,16,0,691,1, 44751008,16,0,708,1,
4366459,990,16,0,691, 4476459,1009,16,0,708,
43671,462,991,16,0, 44771,462,1010,16,0,
4368691,1,217,992,16, 4478708,1,217,1011,16,
43690,691,1,2227,993, 44790,708,1,2227,1012,
437017,994,15,948,1, 448017,1013,15,967,1,
4371-1,1,5,995,20, 4481-1,1,5,1014,20,
4372996,4,32,87,0, 44821015,4,32,87,0,
4373104,0,105,0,108, 4483104,0,105,0,108,
43740,101,0,83,0, 44840,101,0,83,0,
4375116,0,97,0,116, 4485116,0,97,0,116,
43760,101,0,109,0, 44860,101,0,109,0,
4377101,0,110,0,116, 4487101,0,110,0,116,
43780,95,0,50,0, 44880,95,0,50,0,
43791,230,1,3,1, 44891,237,1,3,1,
43806,1,5,997,22, 44906,1,5,1016,22,
43811,72,1,1225,998, 44911,76,1,1225,1017,
438216,0,691,1,1479, 449216,0,708,1,1479,
4383999,16,0,691,1, 44931018,16,0,708,1,
43841731,1000,16,0,691, 44941731,1019,16,0,708,
43851,2740,1001,16,0, 44951,1989,1020,17,1021,
4386691,1,1989,1002,17, 449615,825,1,-1,1,
43871003,15,806,1,-1, 44975,1022,20,1023,4,
43881,5,1004,20,1005, 449826,73,0,102,0,
43894,26,73,0,102, 449983,0,116,0,97,
43900,83,0,116,0, 45000,116,0,101,0,
439197,0,116,0,101, 4501109,0,101,0,110,
43920,109,0,101,0, 45020,116,0,95,0,
4393110,0,116,0,95, 450349,0,1,232,1,
43940,49,0,1,225, 45043,1,6,1,5,
43951,3,1,6,1, 45051024,22,1,71,1,
43965,1006,22,1,67, 45061990,1025,16,0,708,
43971,1990,1007,16,0, 45071,236,1026,16,0,
4398691,1,236,1008,16, 4508708,1,1756,1027,16,
43990,691,1,1756,1009, 45090,708,1,4,1028,
440016,0,691,1,4, 451019,199,1,4,1029,
44011010,19,195,1,4, 45115,100,1,2761,1030,
44021011,5,100,1,256, 451216,0,614,1,256,
44031012,16,0,589,1, 45131031,16,0,614,1,
44041261,1013,16,0,589, 45141261,1032,16,0,614,
44051,509,1014,16,0, 45151,509,1033,16,0,
4406589,1,1515,1015,16, 4516614,1,1515,1034,16,
44070,589,1,2021,804, 45170,614,1,2021,823,
44081,1775,1016,16,0, 45181,1775,1035,16,0,
4409589,1,2029,811,1, 4519614,1,2029,830,1,
44102030,817,1,2031,822, 45202030,836,1,2031,841,
44111,2032,827,1,2033, 45211,2032,846,1,2033,
4412832,1,277,1017,16, 4522851,1,277,1036,16,
44130,589,1,2035,838, 45230,614,1,2035,857,
44141,2037,843,1,2039, 45241,2037,862,1,2039,
4415848,1,32,1018,16, 4525867,1,32,1037,16,
44160,589,1,2041,854, 45260,614,1,2041,873,
44171,2293,1019,16,0, 45271,2293,1038,16,0,
4418589,1,2043,860,1, 4528614,1,2043,879,1,
44192045,865,1,40,1020, 45292045,884,1,40,1039,
442016,0,197,1,41, 453016,0,201,1,41,
44211021,16,0,589,1, 45311040,16,0,614,1,
44221297,1022,16,0,589, 45321297,1041,16,0,614,
44231,43,1023,16,0, 45331,43,1042,16,0,
4424589,1,44,1024,16, 4534614,1,44,1043,16,
44250,197,1,1803,873, 45350,201,1,1803,892,
44261,1804,1025,16,0, 45361,1804,1044,16,0,
4427589,1,299,1026,16, 4537614,1,299,1045,16,
44280,589,1,47,1027, 45380,614,1,47,1046,
442916,0,193,1,52, 453916,0,197,1,52,
44301028,16,0,589,1, 45401047,16,0,614,1,
44312318,1029,16,0,589, 45412318,1048,16,0,614,
44321,63,1030,16,0, 45421,63,1049,16,0,
4433212,1,66,1031,16, 4543218,1,66,1050,16,
44340,210,1,2075,1032, 45440,216,1,2075,1051,
443516,0,589,1,1574, 454516,0,614,1,1574,
4436885,1,71,1033,16, 4546904,1,71,1052,16,
44370,589,1,76,1034, 45470,614,1,76,1053,
443816,0,589,1,1834, 454816,0,614,1,1834,
44391035,16,0,589,1, 45491054,16,0,614,1,
44402337,1036,16,0,589, 45502337,1055,16,0,614,
44411,79,1037,16,0, 45511,79,1056,16,0,
4442589,1,1335,1038,16, 4552614,1,1335,1057,16,
44430,589,1,322,1039, 45530,614,1,322,1058,
444416,0,589,1,85, 455416,0,614,1,85,
44451040,16,0,589,1, 45551059,16,0,614,1,
444689,1041,16,0,589, 455689,1060,16,0,614,
44471,346,1042,16,0, 45571,346,1061,16,0,
4448589,1,97,1043,16, 4558614,1,97,1062,16,
44490,589,1,2106,1044, 45590,614,1,2106,1063,
445016,0,589,1,102, 456016,0,614,1,102,
44511045,16,0,589,1, 45611064,16,0,614,1,
44521860,907,1,2364,913, 45621860,926,1,2364,932,
44531,1114,1046,16,0, 45631,1114,1065,16,0,
4454193,1,112,1047,16, 4564197,1,112,1066,16,
44550,589,1,1117,1048, 45650,614,1,1117,1067,
445616,0,589,1,1873, 456616,0,614,1,1873,
4457921,1,1876,1049,16, 4567940,1,1876,1068,16,
44580,589,1,124,1050, 45680,614,1,124,1069,
445916,0,589,1,2136, 456916,0,614,1,2136,
4460928,1,381,1051,16, 4570947,1,381,1070,16,
44610,589,1,525,1052, 45710,614,1,525,1071,
446216,0,589,1,137, 457216,0,614,1,137,
44631053,16,0,589,1, 45731072,16,0,614,1,
44641901,1054,16,0,589, 45741901,1073,16,0,614,
44651,1153,1055,16,0, 45751,1153,1074,16,0,
4466589,1,151,1056,16, 4576614,1,151,1075,16,
44670,589,1,1407,1057, 45770,614,1,1407,1076,
446816,0,589,1,1659, 457816,0,614,1,1659,
44691058,16,0,589,1, 45791077,16,0,614,1,
44702413,1059,16,0,589, 45802413,1078,16,0,614,
44711,406,1060,16,0, 45811,406,1079,16,0,
4472589,1,1371,1061,16, 4582614,1,1371,1080,16,
44730,589,1,2105,900, 45830,614,1,2105,919,
44741,166,1062,16,0, 45841,166,1081,16,0,
4475589,1,1622,1063,16, 4585614,1,1622,1082,16,
44760,589,1,1931,946, 45860,614,1,1931,965,
44771,1933,1064,16,0, 45871,1933,1083,16,0,
4478589,1,431,1065,16, 4588614,1,431,1084,16,
44790,589,1,1585,1066, 45890,614,1,1585,1085,
448016,0,589,1,182, 459016,0,614,1,182,
44811067,16,0,589,1, 45911086,16,0,614,1,
44821189,1068,16,0,589, 45921189,1087,16,0,614,
44831,1443,1069,16,0, 45931,1443,1088,16,0,
4484589,1,1695,1070,16, 4594614,1,1695,1089,16,
44850,589,1,2198,1071, 45950,614,1,2198,1090,
448616,0,589,1,447, 459616,0,614,1,447,
44871072,16,0,589,1, 45971091,16,0,614,1,
44882458,961,1,2459,967, 45982458,980,1,2459,986,
44891,1958,1073,16,0, 45991,1958,1092,16,0,
4490589,1,2462,974,1, 4600614,1,2462,993,1,
44911657,979,1,2464,984, 46011657,998,1,2464,1003,
44921,199,1074,16,0, 46021,199,1093,16,0,
4493589,1,459,1075,16, 4603614,1,459,1094,16,
44940,589,1,462,1076, 46040,614,1,462,1095,
449516,0,589,1,217, 460516,0,614,1,217,
44961077,16,0,589,1, 46061096,16,0,614,1,
44972227,993,1,1225,1078, 46072227,1012,1,1225,1097,
449816,0,589,1,1479, 460816,0,614,1,1479,
44991079,16,0,589,1, 46091098,16,0,614,1,
45001731,1080,16,0,589, 46101731,1099,16,0,614,
45011,2740,1081,16,0, 46111,1989,1020,1,1990,
4502589,1,1989,1002,1, 46121100,16,0,614,1,
45031990,1082,16,0,589, 4613236,1101,16,0,614,
45041,236,1083,16,0, 46141,1756,1102,16,0,
4505589,1,1756,1084,16, 4615614,1,5,1103,19,
45060,589,1,5,1085, 4616196,1,5,1104,5,
450719,192,1,5,1086, 4617100,1,2761,1105,16,
45085,100,1,256,1087, 46180,610,1,256,1106,
450916,0,585,1,1261, 461916,0,610,1,1261,
45101088,16,0,585,1, 46201107,16,0,610,1,
4511509,1089,16,0,585, 4621509,1108,16,0,610,
45121,1515,1090,16,0, 46221,1515,1109,16,0,
4513585,1,2021,804,1, 4623610,1,2021,823,1,
45141775,1091,16,0,585, 46241775,1110,16,0,610,
45151,2029,811,1,2030, 46251,2029,830,1,2030,
4516817,1,2031,822,1, 4626836,1,2031,841,1,
45172032,827,1,2033,832, 46272032,846,1,2033,851,
45181,277,1092,16,0, 46281,277,1111,16,0,
4519585,1,2035,838,1, 4629610,1,2035,857,1,
45202037,843,1,2039,848, 46302037,862,1,2039,867,
45211,32,1093,16,0, 46311,32,1112,16,0,
4522585,1,2041,854,1, 4632610,1,2041,873,1,
45232293,1094,16,0,585, 46332293,1113,16,0,610,
45241,2043,860,1,2045, 46341,2043,879,1,2045,
4525865,1,40,1095,16, 4635884,1,40,1114,16,
45260,196,1,41,1096, 46360,200,1,41,1115,
452716,0,585,1,1297, 463716,0,610,1,1297,
45281097,16,0,585,1, 46381116,16,0,610,1,
452943,1098,16,0,585, 463943,1117,16,0,610,
45301,44,1099,16,0, 46401,44,1118,16,0,
4531196,1,1803,873,1, 4641200,1,1803,892,1,
45321804,1100,16,0,585, 46421804,1119,16,0,610,
45331,299,1101,16,0, 46431,299,1120,16,0,
4534585,1,47,1102,16, 4644610,1,47,1121,16,
45350,190,1,52,1103, 46450,194,1,52,1122,
453616,0,585,1,2318, 464616,0,610,1,2318,
45371104,16,0,585,1, 46471123,16,0,610,1,
453863,1105,16,0,211, 464863,1124,16,0,217,
45391,66,1106,16,0, 46491,66,1125,16,0,
4540209,1,2075,1107,16, 4650215,1,2075,1126,16,
45410,585,1,1574,885, 46510,610,1,1574,904,
45421,71,1108,16,0, 46521,71,1127,16,0,
4543585,1,76,1109,16, 4653610,1,76,1128,16,
45440,585,1,1834,1110, 46540,610,1,1834,1129,
454516,0,585,1,2337, 465516,0,610,1,2337,
45461111,16,0,585,1, 46561130,16,0,610,1,
454779,1112,16,0,585, 465779,1131,16,0,610,
45481,1335,1113,16,0, 46581,1335,1132,16,0,
4549585,1,322,1114,16, 4659610,1,322,1133,16,
45500,585,1,85,1115, 46600,610,1,85,1134,
455116,0,585,1,89, 466116,0,610,1,89,
45521116,16,0,585,1, 46621135,16,0,610,1,
4553346,1117,16,0,585, 4663346,1136,16,0,610,
45541,97,1118,16,0, 46641,97,1137,16,0,
4555585,1,2106,1119,16, 4665610,1,2106,1138,16,
45560,585,1,102,1120, 46660,610,1,102,1139,
455716,0,585,1,1860, 466716,0,610,1,1860,
4558907,1,2364,913,1, 4668926,1,2364,932,1,
45591114,1121,16,0,190, 46691114,1140,16,0,194,
45601,112,1122,16,0, 46701,112,1141,16,0,
4561585,1,1117,1123,16, 4671610,1,1117,1142,16,
45620,585,1,1873,921, 46720,610,1,1873,940,
45631,1876,1124,16,0, 46731,1876,1143,16,0,
4564585,1,124,1125,16, 4674610,1,124,1144,16,
45650,585,1,2136,928, 46750,610,1,2136,947,
45661,381,1126,16,0, 46761,381,1145,16,0,
4567585,1,525,1127,16, 4677610,1,525,1146,16,
45680,585,1,137,1128, 46780,610,1,137,1147,
456916,0,585,1,1901, 467916,0,610,1,1901,
45701129,16,0,585,1, 46801148,16,0,610,1,
45711153,1130,16,0,585, 46811153,1149,16,0,610,
45721,151,1131,16,0, 46821,151,1150,16,0,
4573585,1,1407,1132,16, 4683610,1,1407,1151,16,
45740,585,1,1659,1133, 46840,610,1,1659,1152,
457516,0,585,1,2413, 468516,0,610,1,2413,
45761134,16,0,585,1, 46861153,16,0,610,1,
4577406,1135,16,0,585, 4687406,1154,16,0,610,
45781,1371,1136,16,0, 46881,1371,1155,16,0,
4579585,1,2105,900,1, 4689610,1,2105,919,1,
4580166,1137,16,0,585, 4690166,1156,16,0,610,
45811,1622,1138,16,0, 46911,1622,1157,16,0,
4582585,1,1931,946,1, 4692610,1,1931,965,1,
45831933,1139,16,0,585, 46931933,1158,16,0,610,
45841,431,1140,16,0, 46941,431,1159,16,0,
4585585,1,1585,1141,16, 4695610,1,1585,1160,16,
45860,585,1,182,1142, 46960,610,1,182,1161,
458716,0,585,1,1189, 469716,0,610,1,1189,
45881143,16,0,585,1, 46981162,16,0,610,1,
45891443,1144,16,0,585, 46991443,1163,16,0,610,
45901,1695,1145,16,0, 47001,1695,1164,16,0,
4591585,1,2198,1146,16, 4701610,1,2198,1165,16,
45920,585,1,447,1147, 47020,610,1,447,1166,
459316,0,585,1,2458, 470316,0,610,1,2458,
4594961,1,2459,967,1, 4704980,1,2459,986,1,
45951958,1148,16,0,585, 47051958,1167,16,0,610,
45961,2462,974,1,1657, 47061,2462,993,1,1657,
4597979,1,2464,984,1, 4707998,1,2464,1003,1,
4598199,1149,16,0,585, 4708199,1168,16,0,610,
45991,459,1150,16,0, 47091,459,1169,16,0,
4600585,1,462,1151,16, 4710610,1,462,1170,16,
46010,585,1,217,1152, 47110,610,1,217,1171,
460216,0,585,1,2227, 471216,0,610,1,2227,
4603993,1,1225,1153,16, 47131012,1,1225,1172,16,
46040,585,1,1479,1154, 47140,610,1,1479,1173,
460516,0,585,1,1731, 471516,0,610,1,1731,
46061155,16,0,585,1, 47161174,16,0,610,1,
46072740,1156,16,0,585, 47171989,1020,1,1990,1175,
46081,1989,1002,1,1990, 471816,0,610,1,236,
46091157,16,0,585,1, 47191176,16,0,610,1,
4610236,1158,16,0,585, 47201756,1177,16,0,610,
46111,1756,1159,16,0, 47211,6,1178,19,300,
4612585,1,6,1160,19, 47221,6,1179,5,2,
4613292,1,6,1161,5, 47231,1114,1180,16,0,
46142,1,1114,1162,16, 4724298,1,40,1181,16,
46150,290,1,40,1163, 47250,599,1,7,1182,
461616,0,574,1,7, 472619,261,1,7,1183,
46171164,19,258,1,7, 47275,2,1,1114,1184,
46181165,5,2,1,1114, 472816,0,259,1,40,
46191166,16,0,256,1, 47291185,16,0,533,1,
462040,1167,16,0,516, 47308,1186,19,224,1,
46211,8,1168,19,218, 47318,1187,5,2,1,
46221,8,1169,5,2, 47321114,1188,16,0,222,
46231,1114,1170,16,0, 47331,40,1189,16,0,
4624216,1,40,1171,16, 4734487,1,9,1190,19,
46250,465,1,9,1172, 4735230,1,9,1191,5,
462619,224,1,9,1173, 47362,1,1114,1192,16,
46275,2,1,1114,1174, 47370,228,1,40,1193,
462816,0,222,1,40, 473816,0,417,1,10,
46291175,16,0,396,1, 47391194,19,179,1,10,
463010,1176,19,175,1, 47401195,5,2,1,1114,
463110,1177,5,2,1, 47411196,16,0,177,1,
46321114,1178,16,0,173, 474240,1197,16,0,356,
46331,40,1179,16,0, 47431,11,1198,19,139,
4634338,1,11,1180,19, 47441,11,1199,5,146,
4635203,1,11,1181,5, 47451,1260,1200,17,1201,
4636146,1,1260,1182,17, 474615,1202,4,34,37,
46371183,15,1184,4,34, 47470,83,0,105,0,
463837,0,83,0,105, 4748109,0,112,0,108,
47490,101,0,65,0,
4750115,0,115,0,105,
47510,103,0,110,0,
4752109,0,101,0,110,
47530,116,0,1,-1,
47541,5,1203,20,1204,
47554,38,83,0,105,
46390,109,0,112,0, 47560,109,0,112,0,
4640108,0,101,0,65, 4757108,0,101,0,65,
46410,115,0,115,0, 47580,115,0,115,0,
4642105,0,103,0,110, 4759105,0,103,0,110,
46430,109,0,101,0, 47600,109,0,101,0,
4644110,0,116,0,1, 4761110,0,116,0,95,
4645-1,1,5,1185,20, 47620,50,0,49,0,
46461186,4,38,83,0, 47631,268,1,3,1,
4647105,0,109,0,112, 47646,1,5,1205,22,
46480,108,0,101,0, 47651,107,1,2767,1206,
464965,0,115,0,115, 476616,0,324,1,1011,
46500,105,0,103,0, 47671207,17,1208,15,1209,
4651110,0,109,0,101,
46520,110,0,116,0,
465395,0,50,0,49,
46540,1,261,1,3,
46551,6,1,5,1187,
465622,1,103,1,1011,
46571188,17,1189,15,1190,
46584,44,37,0,80, 47684,44,37,0,80,
46590,97,0,114,0, 47690,97,0,114,0,
4660101,0,110,0,116, 4770101,0,110,0,116,
@@ -4665,7 +4775,7 @@ public yyLSLSyntax
46650,115,0,115,0, 47750,115,0,115,0,
4666105,0,111,0,110, 4776105,0,111,0,110,
46670,1,-1,1,5, 47770,1,-1,1,5,
46681191,20,1192,4,46, 47781210,20,1211,4,46,
466980,0,97,0,114, 477980,0,97,0,114,
46700,101,0,110,0, 47800,101,0,110,0,
4671116,0,104,0,101, 4781116,0,104,0,101,
@@ -4675,12 +4785,12 @@ public yyLSLSyntax
4675101,0,115,0,115, 4785101,0,115,0,115,
46760,105,0,111,0, 47860,105,0,111,0,
4677110,0,95,0,50, 4787110,0,95,0,50,
46780,1,308,1,3, 47880,1,315,1,3,
46791,4,1,3,1193, 47891,4,1,3,1212,
468022,1,150,1,1514, 479022,1,154,1,1514,
46811194,17,1195,15,1184, 47911213,17,1214,15,1202,
46821,-1,1,5,1196, 47921,-1,1,5,1215,
468320,1197,4,38,83, 479320,1216,4,38,83,
46840,105,0,109,0, 47940,105,0,109,0,
4685112,0,108,0,101, 4795112,0,108,0,101,
46860,65,0,115,0, 47960,65,0,115,0,
@@ -4688,27 +4798,27 @@ public yyLSLSyntax
46880,110,0,109,0, 47980,110,0,109,0,
4689101,0,110,0,116, 4799101,0,110,0,116,
46900,95,0,49,0, 48000,95,0,49,0,
469152,0,1,254,1, 480152,0,1,261,1,
46923,1,4,1,3, 48023,1,4,1,3,
46931198,22,1,96,1, 48031217,22,1,100,1,
46949,1199,17,1200,15, 48049,1218,17,1219,15,
46951201,4,24,37,0, 48051220,4,24,37,0,
469668,0,101,0,99, 480668,0,101,0,99,
46970,108,0,97,0, 48070,108,0,97,0,
4698114,0,97,0,116, 4808114,0,97,0,116,
46990,105,0,111,0, 48090,105,0,111,0,
4700110,0,1,-1,1, 4810110,0,1,-1,1,
47015,1202,20,1203,4, 48115,1221,20,1222,4,
470226,68,0,101,0, 481226,68,0,101,0,
470399,0,108,0,97, 481399,0,108,0,97,
47040,114,0,97,0, 48140,114,0,97,0,
4705116,0,105,0,111, 4815116,0,105,0,111,
47060,110,0,95,0, 48160,110,0,95,0,
470749,0,1,198,1, 481749,0,1,205,1,
47083,1,3,1,2, 48183,1,3,1,2,
47091204,22,1,40,1, 48191223,22,1,44,1,
4710262,1205,17,1206,15, 4820262,1224,17,1225,15,
47111207,4,34,37,0, 48211226,4,34,37,0,
471266,0,105,0,110, 482266,0,105,0,110,
47130,97,0,114,0, 48230,97,0,114,0,
4714121,0,69,0,120, 4824121,0,69,0,120,
@@ -4716,7 +4826,7 @@ public yyLSLSyntax
4716101,0,115,0,115, 4826101,0,115,0,115,
47170,105,0,111,0, 48270,105,0,111,0,
4718110,0,1,-1,1, 4828110,0,1,-1,1,
47195,1208,20,1209,4, 48295,1227,20,1228,4,
472036,66,0,105,0, 483036,66,0,105,0,
4721110,0,97,0,114, 4831110,0,97,0,114,
47220,121,0,69,0, 48320,121,0,69,0,
@@ -4724,12 +4834,12 @@ public yyLSLSyntax
47240,101,0,115,0, 48340,101,0,115,0,
4725115,0,105,0,111, 4835115,0,105,0,111,
47260,110,0,95,0, 48360,110,0,95,0,
472753,0,1,290,1, 483753,0,1,297,1,
47283,1,4,1,3, 48383,1,4,1,3,
47291210,22,1,132,1, 48391229,22,1,136,1,
47301267,1211,17,1212,15, 48401267,1230,17,1231,15,
47311184,1,-1,1,5, 48411202,1,-1,1,5,
47321213,20,1214,4,36, 48421232,20,1233,4,36,
473383,0,105,0,109, 484383,0,105,0,109,
47340,112,0,108,0, 48440,112,0,108,0,
4735101,0,65,0,115, 4845101,0,65,0,115,
@@ -4737,12 +4847,12 @@ public yyLSLSyntax
4737103,0,110,0,109, 4847103,0,110,0,109,
47380,101,0,110,0, 48480,101,0,110,0,
4739116,0,95,0,56, 4849116,0,95,0,56,
47400,1,248,1,3, 48500,1,255,1,3,
47411,6,1,5,1215, 48511,6,1,5,1234,
474222,1,90,1,2021, 485222,1,94,1,2021,
4743804,1,1521,1216,17, 4853823,1,1521,1235,17,
47441217,15,1184,1,-1, 48541236,15,1202,1,-1,
47451,5,1218,20,1219, 48551,5,1237,20,1238,
47464,36,83,0,105, 48564,36,83,0,105,
47470,109,0,112,0, 48570,109,0,112,0,
4748108,0,101,0,65, 4858108,0,101,0,65,
@@ -4750,62 +4860,62 @@ public yyLSLSyntax
4750105,0,103,0,110, 4860105,0,103,0,110,
47510,109,0,101,0, 48610,109,0,101,0,
4752110,0,116,0,95, 4862110,0,116,0,95,
47530,49,0,1,241, 48630,49,0,1,248,
47541,3,1,4,1, 48641,3,1,4,1,
47553,1220,22,1,83, 48653,1239,22,1,87,
47561,2024,1221,17,1222, 48661,2024,1240,17,1241,
475715,1223,4,24,37, 486715,1242,4,24,37,
47580,83,0,116,0, 48680,83,0,116,0,
475997,0,116,0,101, 486997,0,116,0,101,
47600,67,0,104,0, 48700,67,0,104,0,
476197,0,110,0,103, 487197,0,110,0,103,
47620,101,0,1,-1, 48720,101,0,1,-1,
47631,5,1224,20,1225, 48731,5,1243,20,1244,
47644,26,83,0,116, 48744,26,83,0,116,
47650,97,0,116,0, 48750,97,0,116,0,
4766101,0,67,0,104, 4876101,0,67,0,104,
47670,97,0,110,0, 48770,97,0,110,0,
4768103,0,101,0,95, 4878103,0,101,0,95,
47690,49,0,1,223, 48790,49,0,1,230,
47701,3,1,3,1, 48801,3,1,3,1,
47712,1226,22,1,65, 48812,1245,22,1,69,
47721,1775,1227,17,1228, 48821,1775,1246,17,1247,
477315,1229,4,30,37, 488315,1248,4,30,37,
47740,69,0,109,0, 48840,69,0,109,0,
4775112,0,116,0,121, 4885112,0,116,0,121,
47760,83,0,116,0, 48860,83,0,116,0,
477797,0,116,0,101, 488797,0,116,0,101,
47780,109,0,101,0, 48880,109,0,101,0,
4779110,0,116,0,1, 4889110,0,116,0,1,
4780-1,1,5,1230,20, 4890-1,1,5,1249,20,
47811231,4,32,69,0, 48911250,4,32,69,0,
4782109,0,112,0,116, 4892109,0,112,0,116,
47830,121,0,83,0, 48930,121,0,83,0,
4784116,0,97,0,116, 4894116,0,97,0,116,
47850,101,0,109,0, 48950,101,0,109,0,
4786101,0,110,0,116, 4896101,0,110,0,116,
47870,95,0,49,0, 48970,95,0,49,0,
47881,207,1,3,1, 48981,214,1,3,1,
47891,1,0,1232,22, 48991,1,0,1251,22,
47901,49,1,19,1233, 49001,53,1,19,1252,
479117,1200,1,2,1204, 490117,1219,1,2,1223,
47921,2028,1234,17,1235, 49021,2028,1253,17,1254,
479315,1236,4,20,37, 490315,1255,4,20,37,
47940,74,0,117,0, 49040,74,0,117,0,
4795109,0,112,0,76, 4905109,0,112,0,76,
47960,97,0,98,0, 49060,97,0,98,0,
4797101,0,108,0,1, 4907101,0,108,0,1,
4798-1,1,5,1237,20, 4908-1,1,5,1256,20,
47991238,4,22,74,0, 49091257,4,22,74,0,
4800117,0,109,0,112, 4910117,0,109,0,112,
48010,76,0,97,0, 49110,76,0,97,0,
480298,0,101,0,108, 491298,0,101,0,108,
48030,95,0,49,0, 49130,95,0,49,0,
48041,221,1,3,1, 49141,228,1,3,1,
48053,1,2,1239,22, 49153,1,2,1258,22,
48061,63,1,2029,811, 49161,67,1,2029,830,
48071,2281,1240,17,1241, 49171,2281,1259,17,1260,
480815,1242,4,34,37, 491815,1261,4,34,37,
48090,70,0,111,0, 49190,70,0,111,0,
4810114,0,76,0,111, 4920114,0,76,0,111,
48110,111,0,112,0, 49210,111,0,112,0,
@@ -4813,7 +4923,7 @@ public yyLSLSyntax
48130,116,0,101,0, 49230,116,0,101,0,
4814109,0,101,0,110, 4924109,0,101,0,110,
48150,116,0,1,-1, 49250,116,0,1,-1,
48161,5,1243,20,1244, 49261,5,1262,20,1263,
48174,36,70,0,111, 49274,36,70,0,111,
48180,114,0,76,0, 49280,114,0,76,0,
4819111,0,111,0,112, 4929111,0,111,0,112,
@@ -4821,26 +4931,26 @@ public yyLSLSyntax
482197,0,116,0,101, 493197,0,116,0,101,
48220,109,0,101,0, 49320,109,0,101,0,
4823110,0,116,0,95, 4933110,0,116,0,95,
48240,50,0,1,236, 49340,50,0,1,243,
48251,3,1,2,1, 49351,3,1,2,1,
48261,1245,22,1,78, 49361,1264,22,1,82,
48271,2031,822,1,2032, 49371,2031,841,1,2032,
4828827,1,2033,832,1, 4938846,1,2033,851,1,
48292034,1246,16,0,648, 49392034,1265,16,0,669,
48301,2035,838,1,2036, 49401,2035,857,1,2036,
48311247,16,0,575,1, 49411266,16,0,600,1,
48322037,843,1,2038,1248, 49422037,862,1,2038,1267,
483316,0,579,1,2039, 494316,0,604,1,2039,
4834848,1,32,1249,17, 4944867,1,32,1268,17,
48351228,1,0,1232,1, 49451247,1,0,1251,1,
48362041,854,1,2042,1250, 49462041,873,1,2042,1269,
483716,0,719,1,2043, 494716,0,743,1,2043,
4838860,1,2044,1251,16, 4948879,1,2044,1270,16,
48390,660,1,2045,865, 49490,682,1,2045,884,
48401,2299,1252,16,0, 49501,2299,1271,16,0,
4841240,1,1296,1253,17, 4951246,1,1296,1272,17,
48421254,15,1184,1,-1, 49521273,15,1202,1,-1,
48431,5,1255,20,1256, 49531,5,1274,20,1275,
48444,38,83,0,105, 49544,38,83,0,105,
48450,109,0,112,0, 49550,109,0,112,0,
4846108,0,101,0,65, 4956108,0,101,0,65,
@@ -4849,12 +4959,12 @@ public yyLSLSyntax
48490,109,0,101,0, 49590,109,0,101,0,
4850110,0,116,0,95, 4960110,0,116,0,95,
48510,50,0,48,0, 49610,50,0,48,0,
48521,260,1,3,1, 49621,267,1,3,1,
48536,1,5,1257,22, 49636,1,5,1276,22,
48541,102,1,283,1258, 49641,106,1,283,1277,
485517,1259,15,1207,1, 496517,1278,15,1226,1,
4856-1,1,5,1260,20, 4966-1,1,5,1279,20,
48571261,4,36,66,0, 49671280,4,36,66,0,
4858105,0,110,0,97, 4968105,0,110,0,97,
48590,114,0,121,0, 49690,114,0,121,0,
486069,0,120,0,112, 497069,0,120,0,112,
@@ -4862,10 +4972,10 @@ public yyLSLSyntax
4862115,0,115,0,105, 4972115,0,115,0,105,
48630,111,0,110,0, 49730,111,0,110,0,
486495,0,52,0,1, 497495,0,52,0,1,
4865289,1,3,1,4, 4975296,1,3,1,4,
48661,3,1262,22,1, 49761,3,1281,22,1,
4867131,1,40,1263,17, 4977135,1,40,1282,17,
48681264,15,1265,4,32, 49781283,15,1284,4,32,
486937,0,73,0,100, 497937,0,73,0,100,
48700,101,0,110,0, 49800,101,0,110,0,
4871116,0,69,0,120, 4981116,0,69,0,120,
@@ -4873,7 +4983,7 @@ public yyLSLSyntax
4873101,0,115,0,115, 4983101,0,115,0,115,
48740,105,0,111,0, 49840,105,0,111,0,
4875110,0,1,-1,1, 4985110,0,1,-1,1,
48765,1266,20,1267,4, 49865,1285,20,1286,4,
487734,73,0,100,0, 498734,73,0,100,0,
4878101,0,110,0,116, 4988101,0,110,0,116,
48790,69,0,120,0, 49890,69,0,120,0,
@@ -4881,12 +4991,12 @@ public yyLSLSyntax
48810,115,0,115,0, 49910,115,0,115,0,
4882105,0,111,0,110, 4992105,0,111,0,110,
48830,95,0,49,0, 49930,95,0,49,0,
48841,275,1,3,1, 49941,282,1,3,1,
48852,1,1,1268,22, 49952,1,1,1287,22,
48861,117,1,44,1269, 49961,121,1,44,1288,
488717,1264,1,1,1268, 499717,1283,1,1,1287,
48881,1803,873,1,47, 49981,1803,892,1,47,
48891270,17,1271,15,1272, 49991289,17,1290,15,1291,
48904,38,37,0,73, 50004,38,37,0,73,
48910,100,0,101,0, 50010,100,0,101,0,
4892110,0,116,0,68, 5002110,0,116,0,68,
@@ -4895,8 +5005,8 @@ public yyLSLSyntax
48950,114,0,101,0, 50050,114,0,101,0,
4896115,0,115,0,105, 5006115,0,115,0,105,
48970,111,0,110,0, 50070,111,0,110,0,
48981,-1,1,5,1273, 50081,-1,1,5,1292,
489920,1274,4,40,73, 500920,1293,4,40,73,
49000,100,0,101,0, 50100,100,0,101,0,
4901110,0,116,0,68, 5011110,0,116,0,68,
49020,111,0,116,0, 50120,111,0,116,0,
@@ -4905,10 +5015,10 @@ public yyLSLSyntax
4905115,0,115,0,105, 5015115,0,115,0,105,
49060,111,0,110,0, 50160,111,0,110,0,
490795,0,49,0,1, 501795,0,49,0,1,
4908276,1,3,1,4, 5018283,1,3,1,4,
49091,3,1275,22,1, 50191,3,1294,22,1,
4910118,1,48,1276,17, 5020122,1,48,1295,17,
49111277,15,1278,4,58, 50211296,15,1297,4,58,
491237,0,73,0,110, 502237,0,73,0,110,
49130,99,0,114,0, 50230,99,0,114,0,
4914101,0,109,0,101, 5024101,0,109,0,101,
@@ -4921,7 +5031,7 @@ public yyLSLSyntax
49210,101,0,115,0, 50310,101,0,115,0,
4922115,0,105,0,111, 5032115,0,105,0,111,
49230,110,0,1,-1, 50330,110,0,1,-1,
49241,5,1279,20,1280, 50341,5,1298,20,1299,
49254,60,73,0,110, 50354,60,73,0,110,
49260,99,0,114,0, 50360,99,0,114,0,
4927101,0,109,0,101, 5037101,0,109,0,101,
@@ -4934,12 +5044,12 @@ public yyLSLSyntax
49340,101,0,115,0, 50440,101,0,115,0,
4935115,0,105,0,111, 5045115,0,105,0,111,
49360,110,0,95,0, 50460,110,0,95,0,
493752,0,1,280,1, 504752,0,1,287,1,
49383,1,5,1,4, 50483,1,5,1,4,
49391281,22,1,122,1, 50491300,22,1,126,1,
494049,1282,17,1283,15, 505049,1301,17,1302,15,
49411278,1,-1,1,5, 50511297,1,-1,1,5,
49421284,20,1285,4,60, 50521303,20,1304,4,60,
494373,0,110,0,99, 505373,0,110,0,99,
49440,114,0,101,0, 50540,114,0,101,0,
4945109,0,101,0,110, 5055109,0,101,0,110,
@@ -4952,12 +5062,12 @@ public yyLSLSyntax
49520,115,0,115,0, 50620,115,0,115,0,
4953105,0,111,0,110, 5063105,0,111,0,110,
49540,95,0,51,0, 50640,95,0,51,0,
49551,279,1,3,1, 50651,286,1,3,1,
49565,1,4,1286,22, 50665,1,4,1305,22,
49571,121,1,50,1287, 50671,125,1,50,1306,
495817,1288,15,1278,1, 506817,1307,15,1297,1,
4959-1,1,5,1289,20, 5069-1,1,5,1308,20,
49601290,4,60,73,0, 50701309,4,60,73,0,
4961110,0,99,0,114, 5071110,0,99,0,114,
49620,101,0,109,0, 50720,101,0,109,0,
4963101,0,110,0,116, 5073101,0,110,0,116,
@@ -4969,12 +5079,12 @@ public yyLSLSyntax
4969114,0,101,0,115, 5079114,0,101,0,115,
49700,115,0,105,0, 50800,115,0,105,0,
4971111,0,110,0,95, 5081111,0,110,0,95,
49720,50,0,1,278, 50820,50,0,1,285,
49731,3,1,3,1, 50831,3,1,3,1,
49742,1291,22,1,120, 50842,1310,22,1,124,
49751,51,1292,17,1293, 50851,51,1311,17,1312,
497615,1278,1,-1,1, 508615,1297,1,-1,1,
49775,1294,20,1295,4, 50875,1313,20,1314,4,
497860,73,0,110,0, 508860,73,0,110,0,
497999,0,114,0,101, 508999,0,114,0,101,
49800,109,0,101,0, 50900,109,0,101,0,
@@ -4987,12 +5097,12 @@ public yyLSLSyntax
4987101,0,115,0,115, 5097101,0,115,0,115,
49880,105,0,111,0, 50980,105,0,111,0,
4989110,0,95,0,49, 5099110,0,95,0,49,
49900,1,277,1,3, 51000,1,284,1,3,
49911,3,1,2,1296, 51011,3,1,2,1315,
499222,1,119,1,305, 510222,1,123,1,305,
49931297,17,1298,15,1207, 51031316,17,1317,15,1226,
49941,-1,1,5,1299, 51041,-1,1,5,1318,
499520,1300,4,36,66, 510520,1319,4,36,66,
49960,105,0,110,0, 51060,105,0,110,0,
499797,0,114,0,121, 510797,0,114,0,121,
49980,69,0,120,0, 51080,69,0,120,0,
@@ -5000,10 +5110,10 @@ public yyLSLSyntax
50000,115,0,115,0, 51100,115,0,115,0,
5001105,0,111,0,110, 5111105,0,111,0,110,
50020,95,0,51,0, 51120,95,0,51,0,
50031,288,1,3,1, 51131,295,1,3,1,
50044,1,3,1301,22, 51144,1,3,1320,22,
50051,130,1,525,1302, 51151,134,1,525,1321,
500617,1303,15,1304,4, 511617,1322,15,1323,4,
500734,37,0,82,0, 511734,37,0,82,0,
5008111,0,116,0,97, 5118111,0,116,0,97,
50090,116,0,105,0, 51190,116,0,105,0,
@@ -5011,8 +5121,8 @@ public yyLSLSyntax
50110,111,0,110,0, 51210,111,0,110,0,
5012115,0,116,0,97, 5122115,0,116,0,97,
50130,110,0,116,0, 51230,110,0,116,0,
50141,-1,1,5,1305, 51241,-1,1,5,1324,
501520,1306,4,36,82, 512520,1325,4,36,82,
50160,111,0,116,0, 51260,111,0,116,0,
501797,0,116,0,105, 512797,0,116,0,105,
50180,111,0,110,0, 51280,111,0,110,0,
@@ -5020,10 +5130,10 @@ public yyLSLSyntax
50200,115,0,116,0, 51300,115,0,116,0,
502197,0,110,0,116, 513197,0,110,0,116,
50220,95,0,49,0, 51320,95,0,49,0,
50231,273,1,3,1, 51331,280,1,3,1,
502410,1,9,1307,22, 513410,1,9,1326,22,
50251,115,1,63,1308, 51351,119,1,63,1327,
502617,1309,15,1310,4, 513617,1328,15,1329,4,
502738,37,0,84,0, 513738,37,0,84,0,
5028121,0,112,0,101, 5138121,0,112,0,101,
50290,99,0,97,0, 51390,99,0,97,0,
@@ -5032,8 +5142,8 @@ public yyLSLSyntax
5032114,0,101,0,115, 5142114,0,101,0,115,
50330,115,0,105,0, 51430,115,0,105,0,
5034111,0,110,0,1, 5144111,0,110,0,1,
5035-1,1,5,1311,20, 5145-1,1,5,1330,20,
50361312,4,40,84,0, 51461331,4,40,84,0,
5037121,0,112,0,101, 5147121,0,112,0,101,
50380,99,0,97,0, 51480,99,0,97,0,
5039115,0,116,0,69, 5149115,0,116,0,69,
@@ -5041,13 +5151,39 @@ public yyLSLSyntax
5041114,0,101,0,115, 5151114,0,101,0,115,
50420,115,0,105,0, 51520,115,0,105,0,
5043111,0,110,0,95, 5153111,0,110,0,95,
50440,50,0,1,310, 51540,50,0,1,317,
50451,3,1,5,1, 51551,3,1,5,1,
50464,1313,22,1,152, 51564,1332,22,1,156,
50471,2739,1314,16,0, 51571,66,1333,17,1334,
5048755,1,66,1315,17, 515815,1329,1,-1,1,
50491316,15,1310,1,-1, 51595,1335,20,1336,4,
50501,5,1317,20,1318, 516040,84,0,121,0,
5161112,0,101,0,99,
51620,97,0,115,0,
5163116,0,69,0,120,
51640,112,0,114,0,
5165101,0,115,0,115,
51660,105,0,111,0,
5167110,0,95,0,51,
51680,1,318,1,3,
51691,7,1,6,1337,
517022,1,157,1,67,
51711338,17,1339,15,1329,
51721,-1,1,5,1340,
517320,1341,4,40,84,
51740,121,0,112,0,
5175101,0,99,0,97,
51760,115,0,116,0,
517769,0,120,0,112,
51780,114,0,101,0,
5179115,0,115,0,105,
51800,111,0,110,0,
518195,0,55,0,1,
5182322,1,3,1,8,
51831,7,1342,22,1,
5184161,1,68,1343,17,
51851344,15,1329,1,-1,
51861,5,1345,20,1346,
50514,40,84,0,121, 51874,40,84,0,121,
50520,112,0,101,0, 51880,112,0,101,0,
505399,0,97,0,115, 518999,0,97,0,115,
@@ -5056,12 +5192,12 @@ public yyLSLSyntax
50560,101,0,115,0, 51920,101,0,115,0,
5057115,0,105,0,111, 5193115,0,105,0,111,
50580,110,0,95,0, 51940,110,0,95,0,
505951,0,1,311,1, 519553,0,1,320,1,
50603,1,7,1,6, 51963,1,8,1,7,
50611319,22,1,153,1, 51971347,22,1,159,1,
506267,1320,17,1321,15, 519869,1348,17,1349,15,
50631310,1,-1,1,5, 51991329,1,-1,1,5,
50641322,20,1323,4,40, 52001350,20,1351,4,40,
506584,0,121,0,112, 520184,0,121,0,112,
50660,101,0,99,0, 52020,101,0,99,0,
506797,0,115,0,116, 520397,0,115,0,116,
@@ -5069,13 +5205,13 @@ public yyLSLSyntax
5069112,0,114,0,101, 5205112,0,114,0,101,
50700,115,0,115,0, 52060,115,0,115,0,
5071105,0,111,0,110, 5207105,0,111,0,110,
50720,95,0,55,0, 52080,95,0,54,0,
50731,315,1,3,1, 52091,321,1,3,1,
50748,1,7,1324,22, 52106,1,5,1352,22,
50751,157,1,68,1325, 52111,160,1,70,1353,
507617,1326,15,1310,1, 521217,1354,15,1329,1,
5077-1,1,5,1327,20, 5213-1,1,5,1355,20,
50781328,4,40,84,0, 52141356,4,40,84,0,
5079121,0,112,0,101, 5215121,0,112,0,101,
50800,99,0,97,0, 52160,99,0,97,0,
5081115,0,116,0,69, 5217115,0,116,0,69,
@@ -5083,12 +5219,12 @@ public yyLSLSyntax
5083114,0,101,0,115, 5219114,0,101,0,115,
50840,115,0,105,0, 52200,115,0,105,0,
5085111,0,110,0,95, 5221111,0,110,0,95,
50860,53,0,1,313, 52220,52,0,1,319,
50871,3,1,8,1, 52231,3,1,6,1,
50887,1329,22,1,155, 52245,1357,22,1,158,
50891,69,1330,17,1331, 52251,74,1358,17,1359,
509015,1310,1,-1,1, 522615,1329,1,-1,1,
50915,1332,20,1333,4, 52275,1360,20,1361,4,
509240,84,0,121,0, 522840,84,0,121,0,
5093112,0,101,0,99, 5229112,0,101,0,99,
50940,97,0,115,0, 52300,97,0,115,0,
@@ -5096,462 +5232,348 @@ public yyLSLSyntax
50960,112,0,114,0, 52320,112,0,114,0,
5097101,0,115,0,115, 5233101,0,115,0,115,
50980,105,0,111,0, 52340,105,0,111,0,
5099110,0,95,0,54, 5235110,0,95,0,57,
51000,1,314,1,3, 52360,1,324,1,3,
51011,6,1,5,1334, 52371,7,1,6,1362,
510222,1,156,1,70, 523822,1,163,1,1013,
51031335,17,1336,15,1310, 52391363,17,1364,15,1209,
51041,-1,1,5,1337, 52401,-1,1,5,1365,
510520,1338,4,40,84, 524120,1366,4,46,80,
51060,121,0,112,0, 52420,97,0,114,0,
5107101,0,99,0,97,
51080,115,0,116,0,
510969,0,120,0,112,
51100,114,0,101,0,
5111115,0,115,0,105,
51120,111,0,110,0,
511395,0,52,0,1,
5114312,1,3,1,6,
51151,5,1339,22,1,
5116154,1,74,1340,17,
51171341,15,1310,1,-1,
51181,5,1342,20,1343,
51194,40,84,0,121,
51200,112,0,101,0,
512199,0,97,0,115,
51220,116,0,69,0,
5123120,0,112,0,114,
51240,101,0,115,0,
5125115,0,105,0,111,
51260,110,0,95,0,
512757,0,1,317,1,
51283,1,7,1,6,
51291344,22,1,159,1,
51301013,1345,17,1346,15,
51311190,1,-1,1,5,
51321347,20,1348,4,46,
513380,0,97,0,114,
51340,101,0,110,0,
5135116,0,104,0,101,
51360,115,0,105,0,
5137115,0,69,0,120,
51380,112,0,114,0,
5139101,0,115,0,115,
51400,105,0,111,0,
5141110,0,95,0,49,
51420,1,307,1,3,
51431,4,1,3,1349,
514422,1,149,1,1332,
51451350,17,1351,15,1184,
51461,-1,1,5,1352,
514720,1353,4,38,83,
51480,105,0,109,0,
5149112,0,108,0,101,
51500,65,0,115,0,
5151115,0,105,0,103,
51520,110,0,109,0,
5153101,0,110,0,116, 5243101,0,110,0,116,
52440,104,0,101,0,
5245115,0,105,0,115,
52460,69,0,120,0,
5247112,0,114,0,101,
52480,115,0,115,0,
5249105,0,111,0,110,
51540,95,0,49,0, 52500,95,0,49,0,
515557,0,1,259,1, 52511,314,1,3,1,
51563,1,6,1,5, 52524,1,3,1367,22,
51571354,22,1,101,1, 52531,153,1,1332,1368,
51582337,1355,17,1228,1, 525417,1369,15,1202,1,
51590,1232,1,1585,1356, 5255-1,1,5,1370,20,
516017,1357,15,1358,4, 52561371,4,38,83,0,
516132,37,0,82,0, 5257105,0,109,0,112,
5162101,0,116,0,117, 52580,108,0,101,0,
51630,114,0,110,0, 525965,0,115,0,115,
516483,0,116,0,97, 52600,105,0,103,0,
51650,116,0,101,0, 5261110,0,109,0,101,
5166109,0,101,0,110, 52620,110,0,116,0,
51670,116,0,1,-1, 526395,0,49,0,57,
51681,5,1359,20,1360, 52640,1,266,1,3,
51694,34,82,0,101, 52651,6,1,5,1372,
526622,1,105,1,2337,
52671373,17,1247,1,0,
52681251,1,1585,1374,17,
52691375,15,1376,4,32,
527037,0,82,0,101,
51700,116,0,117,0, 52710,116,0,117,0,
5171114,0,110,0,83, 5272114,0,110,0,83,
51720,116,0,97,0, 52730,116,0,97,0,
5173116,0,101,0,109, 5274116,0,101,0,109,
51740,101,0,110,0, 52750,101,0,110,0,
5175116,0,95,0,50, 5276116,0,1,-1,1,
51760,1,266,1,3, 52775,1377,20,1378,4,
51771,2,1,1,1361, 527834,82,0,101,0,
517822,1,108,1,2023, 5279116,0,117,0,114,
51791362,17,1363,15,1223, 52800,110,0,83,0,
51801,-1,1,5,1364, 5281116,0,97,0,116,
518120,1365,4,26,83, 52820,101,0,109,0,
51820,116,0,97,0, 5283101,0,110,0,116,
5183116,0,101,0,67,
51840,104,0,97,0,
5185110,0,103,0,101,
51860,95,0,50,0, 52840,95,0,50,0,
51871,224,1,3,1, 52851,273,1,3,1,
51883,1,2,1366,22, 52862,1,1,1379,22,
51891,66,1,2136,928, 52871,112,1,2023,1380,
51901,82,1367,17,1368, 528817,1381,15,1242,1,
519115,1369,4,32,37, 5289-1,1,5,1382,20,
51920,85,0,110,0, 52901383,4,26,83,0,
519397,0,114,0,121, 5291116,0,97,0,116,
51940,69,0,120,0, 52920,101,0,67,0,
5195112,0,114,0,101, 5293104,0,97,0,110,
51960,115,0,115,0, 52940,103,0,101,0,
5197105,0,111,0,110, 529595,0,50,0,1,
51980,1,-1,1,5, 5296231,1,3,1,3,
51991370,20,1371,4,34, 52971,2,1384,22,1,
529870,1,2136,947,1,
529982,1385,17,1386,15,
53001387,4,32,37,0,
520085,0,110,0,97, 530185,0,110,0,97,
52010,114,0,121,0, 53020,114,0,121,0,
520269,0,120,0,112, 530369,0,120,0,112,
52030,114,0,101,0, 53040,114,0,101,0,
5204115,0,115,0,105, 5305115,0,115,0,105,
52050,111,0,110,0, 53060,111,0,110,0,
520695,0,51,0,1, 53071,-1,1,5,1388,
5207306,1,3,1,3, 530820,1389,4,34,85,
52081,2,1372,22,1,
5209148,1,2026,1373,17,
52101374,15,1375,4,28,
521137,0,74,0,117,
52120,109,0,112,0,
521383,0,116,0,97,
52140,116,0,101,0,
5215109,0,101,0,110,
52160,116,0,1,-1,
52171,5,1376,20,1377,
52184,30,74,0,117,
52190,109,0,112,0,
522083,0,116,0,97,
52210,116,0,101,0,
5222109,0,101,0,110,
52230,116,0,95,0,
522449,0,1,222,1,
52253,1,3,1,2,
52261378,22,1,64,1,
52271591,1379,17,1380,15,
52281358,1,-1,1,5,
52291381,20,1382,4,34,
523082,0,101,0,116,
52310,117,0,114,0,
5232110,0,83,0,116,
52330,97,0,116,0,
5234101,0,109,0,101,
52350,110,0,116,0,
523695,0,49,0,1,
5237265,1,3,1,3,
52381,2,1383,22,1,
5239107,1,1341,1384,17,
52401385,15,1184,1,-1,
52411,5,1386,20,1387,
52424,36,83,0,105,
52430,109,0,112,0,
5244108,0,101,0,65,
52450,115,0,115,0,
5246105,0,103,0,110,
52470,109,0,101,0,
5248110,0,116,0,95,
52490,54,0,1,246,
52501,3,1,4,1,
52513,1388,22,1,88,
52521,2030,817,1,328,
52531389,17,1390,15,1207,
52541,-1,1,5,1391,
525520,1392,4,36,66,
52560,105,0,110,0,
525797,0,114,0,121,
52580,69,0,120,0,
5259112,0,114,0,101,
52600,115,0,115,0,
5261105,0,111,0,110,
52620,95,0,50,0,
52631,287,1,3,1,
52644,1,3,1393,22,
52651,129,1,1303,1394,
526617,1395,15,1184,1,
5267-1,1,5,1396,20,
52681397,4,36,83,0,
5269105,0,109,0,112,
52700,108,0,101,0,
527165,0,115,0,115,
52720,105,0,103,0,
5273110,0,109,0,101,
52740,110,0,116,0,
527595,0,55,0,1,
5276247,1,3,1,6,
52771,5,1398,22,1,
527889,1,1096,1399,17,
52791400,15,1401,4,26,
528037,0,70,0,117,
52810,110,0,99,0,
5282116,0,105,0,111,
52830,110,0,67,0,
528497,0,108,0,108,
52850,1,-1,1,5,
52861402,20,1403,4,28,
528770,0,117,0,110,
52880,99,0,116,0,
5289105,0,111,0,110,
52900,67,0,97,0,
5291108,0,108,0,95,
52920,49,0,1,318,
52931,3,1,5,1,
52944,1404,22,1,160,
52951,93,1405,17,1406,
529615,1369,1,-1,1,
52975,1407,20,1408,4,
529834,85,0,110,0,
529997,0,114,0,121,
53000,69,0,120,0,
5301112,0,114,0,101,
53020,115,0,115,0,
5303105,0,111,0,110,
53040,95,0,50,0,
53051,305,1,3,1,
53063,1,2,1409,22,
53071,147,1,1550,1410,
530817,1411,15,1184,1,
5309-1,1,5,1412,20,
53101413,4,38,83,0,
5311105,0,109,0,112,
53120,108,0,101,0,
531365,0,115,0,115,
53140,105,0,103,0,
5315110,0,109,0,101,
53160,110,0,116,0,
531795,0,49,0,51,
53180,1,253,1,3,
53191,4,1,3,1414,
532022,1,95,1,2040,
53211415,16,0,583,1,
53222106,1416,17,1228,1,
53230,1232,1,1555,1417,
532416,0,674,1,827,
53251418,17,1419,15,1207,
53261,-1,1,5,1420,
532720,1421,4,38,66,
53280,105,0,110,0,
532997,0,114,0,121,
53300,69,0,120,0,
5331112,0,114,0,101,
53320,115,0,115,0,
5333105,0,111,0,110,
53340,95,0,49,0,
533553,0,1,300,1,
53363,1,4,1,3,
53371422,22,1,142,1,
53381859,1423,16,0,319,
53391,1860,907,1,1804,
53401424,17,1228,1,0,
53411232,1,107,1425,17,
53421426,15,1369,1,-1,
53431,5,1427,20,1428,
53444,34,85,0,110,
53450,97,0,114,0,
5346121,0,69,0,120,
53470,112,0,114,0,
5348101,0,115,0,115,
53490,105,0,111,0,
5350110,0,95,0,49,
53510,1,304,1,3,
53521,3,1,2,1429,
535322,1,146,1,1114,
53541430,17,1271,1,3,
53551275,1,1048,1431,17,
53561432,15,1207,1,-1,
53571,5,1433,20,1434,
53584,38,66,0,105,
53590,110,0,97,0, 53090,110,0,97,0,
5360114,0,121,0,69, 5310114,0,121,0,69,
53610,120,0,112,0, 53110,120,0,112,0,
5362114,0,101,0,115, 5312114,0,101,0,115,
53630,115,0,105,0, 53130,115,0,105,0,
5364111,0,110,0,95, 5314111,0,110,0,95,
53650,49,0,56,0, 53150,51,0,1,313,
53661,303,1,3,1, 53161,3,1,3,1,
53674,1,3,1435,22, 53172,1390,22,1,152,
53681,145,1,352,1436, 53181,2026,1391,17,1392,
536917,1437,15,1207,1, 531915,1393,4,28,37,
5370-1,1,5,1438,20, 53200,74,0,117,0,
53711439,4,36,66,0, 5321109,0,112,0,83,
53220,116,0,97,0,
5323116,0,101,0,109,
53240,101,0,110,0,
5325116,0,1,-1,1,
53265,1394,20,1395,4,
532730,74,0,117,0,
5328109,0,112,0,83,
53290,116,0,97,0,
5330116,0,101,0,109,
53310,101,0,110,0,
5332116,0,95,0,49,
53330,1,229,1,3,
53341,3,1,2,1396,
533522,1,68,1,1591,
53361397,17,1398,15,1376,
53371,-1,1,5,1399,
533820,1400,4,34,82,
53390,101,0,116,0,
5340117,0,114,0,110,
53410,83,0,116,0,
534297,0,116,0,101,
53430,109,0,101,0,
5344110,0,116,0,95,
53450,49,0,1,272,
53461,3,1,3,1,
53472,1401,22,1,111,
53481,1341,1402,17,1403,
534915,1202,1,-1,1,
53505,1404,20,1405,4,
535136,83,0,105,0,
5352109,0,112,0,108,
53530,101,0,65,0,
5354115,0,115,0,105,
53550,103,0,110,0,
5356109,0,101,0,110,
53570,116,0,95,0,
535854,0,1,253,1,
53593,1,4,1,3,
53601406,22,1,92,1,
53612030,836,1,328,1407,
536217,1408,15,1226,1,
5363-1,1,5,1409,20,
53641410,4,36,66,0,
5372105,0,110,0,97, 5365105,0,110,0,97,
53730,114,0,121,0, 53660,114,0,121,0,
537469,0,120,0,112, 536769,0,120,0,112,
53750,114,0,101,0, 53680,114,0,101,0,
5376115,0,115,0,105, 5369115,0,115,0,105,
53770,111,0,110,0, 53700,111,0,110,0,
537895,0,49,0,1, 537195,0,50,0,1,
5379286,1,3,1,4, 5372294,1,3,1,4,
53801,3,1440,22,1, 53731,3,1411,22,1,
5381128,1,1872,1441,16, 5374133,1,1303,1412,17,
53820,329,1,1873,921, 53751413,15,1202,1,-1,
53831,118,1442,17,1443, 53761,5,1414,20,1415,
538415,1207,1,-1,1, 53774,36,83,0,105,
53855,1444,20,1445,4,
538638,66,0,105,0,
5387110,0,97,0,114,
53880,121,0,69,0,
5389120,0,112,0,114,
53900,101,0,115,0,
5391115,0,105,0,111,
53920,110,0,95,0,
539349,0,52,0,1,
5394299,1,3,1,4,
53951,3,1446,22,1,
5396141,1,1123,1447,17,
53971448,15,1184,1,-1,
53981,5,1449,20,1450,
53994,38,83,0,105,
54000,109,0,112,0, 53780,109,0,112,0,
5401108,0,101,0,65, 5379108,0,101,0,65,
54020,115,0,115,0, 53800,115,0,115,0,
5403105,0,103,0,110, 5381105,0,103,0,110,
54040,109,0,101,0, 53820,109,0,101,0,
5405110,0,116,0,95, 5383110,0,116,0,95,
54060,49,0,50,0, 53840,55,0,1,254,
54071,252,1,3,1, 53851,3,1,6,1,
54086,1,5,1451,22, 53865,1416,22,1,93,
54091,94,1,371,1452, 53871,1096,1417,17,1418,
541017,1453,15,1454,4, 538815,1419,4,26,37,
541146,37,0,70,0, 53890,70,0,117,0,
5412117,0,110,0,99,
54130,116,0,105,0,
5414111,0,110,0,67,
54150,97,0,108,0,
5416108,0,69,0,120,
54170,112,0,114,0,
5418101,0,115,0,115,
54190,105,0,111,0,
5420110,0,1,-1,1,
54215,1455,20,1456,4,
542248,70,0,117,0,
5423110,0,99,0,116, 5390110,0,99,0,116,
54240,105,0,111,0, 53910,105,0,111,0,
5425110,0,67,0,97, 5392110,0,67,0,97,
54260,108,0,108,0, 53930,108,0,108,0,
53941,-1,1,5,1420,
539520,1421,4,28,70,
53960,117,0,110,0,
539799,0,116,0,105,
53980,111,0,110,0,
539967,0,97,0,108,
54000,108,0,95,0,
540149,0,1,325,1,
54023,1,5,1,4,
54031422,22,1,164,1,
540493,1423,17,1424,15,
54051387,1,-1,1,5,
54061425,20,1426,4,34,
540785,0,110,0,97,
54080,114,0,121,0,
542769,0,120,0,112, 540969,0,120,0,112,
54280,114,0,101,0, 54100,114,0,101,0,
5429115,0,115,0,105, 5411115,0,115,0,105,
54300,111,0,110,0, 54120,111,0,110,0,
543195,0,49,0,1, 541395,0,50,0,1,
5432285,1,3,1,2, 5414312,1,3,1,3,
54331,1,1457,22,1, 54151,2,1427,22,1,
5434127,1,1377,1458,17, 5416151,1,1550,1428,17,
54351459,15,1184,1,-1, 54171429,15,1202,1,-1,
54361,5,1460,20,1461, 54181,5,1430,20,1431,
54374,36,83,0,105, 54194,38,83,0,105,
54380,109,0,112,0, 54200,109,0,112,0,
5439108,0,101,0,65, 5421108,0,101,0,65,
54400,115,0,115,0, 54220,115,0,115,0,
5441105,0,103,0,110, 5423105,0,103,0,110,
54420,109,0,101,0, 54240,109,0,101,0,
5443110,0,116,0,95, 5425110,0,116,0,95,
54440,53,0,1,245, 54260,49,0,51,0,
54451,3,1,4,1, 54271,260,1,3,1,
54463,1462,22,1,87, 54284,1,3,1432,22,
54471,375,1463,17,1464, 54291,99,1,2040,1433,
544815,1278,1,-1,1, 543016,0,608,1,2106,
54495,1465,20,1466,4, 54311434,17,1247,1,0,
545060,73,0,110,0, 54321251,1,1555,1435,16,
545199,0,114,0,101, 54330,696,1,827,1436,
54520,109,0,101,0, 543417,1437,15,1226,1,
5453110,0,116,0,68, 5435-1,1,5,1438,20,
54540,101,0,99,0, 54361439,4,38,66,0,
5455114,0,101,0,109, 5437105,0,110,0,97,
54560,101,0,110,0, 54380,114,0,121,0,
5457116,0,69,0,120,
54580,112,0,114,0,
5459101,0,115,0,115,
54600,105,0,111,0,
5461110,0,95,0,56,
54620,1,284,1,3,
54631,5,1,4,1467,
546422,1,126,1,377,
54651468,17,1469,15,1278,
54661,-1,1,5,1470,
546720,1471,4,60,73,
54680,110,0,99,0,
5469114,0,101,0,109,
54700,101,0,110,0,
5471116,0,68,0,101,
54720,99,0,114,0,
5473101,0,109,0,101,
54740,110,0,116,0,
547569,0,120,0,112, 543969,0,120,0,112,
54760,114,0,101,0, 54400,114,0,101,0,
5477115,0,115,0,105, 5441115,0,115,0,105,
54780,111,0,110,0, 54420,111,0,110,0,
547995,0,53,0,1, 544395,0,49,0,53,
5480281,1,3,1,3, 54440,1,307,1,3,
54811,2,1472,22,1, 54451,4,1,3,1440,
5482123,1,379,1473,17, 544622,1,146,1,1859,
54831474,15,1278,1,-1, 54471441,16,0,335,1,
54841,5,1475,20,1476, 54481860,926,1,1804,1442,
54854,60,73,0,110, 544917,1247,1,0,1251,
54860,99,0,114,0, 54501,107,1443,17,1444,
5487101,0,109,0,101, 545115,1387,1,-1,1,
54880,110,0,116,0, 54525,1445,20,1446,4,
548968,0,101,0,99, 545334,85,0,110,0,
54900,114,0,101,0, 545497,0,114,0,121,
5491109,0,101,0,110, 54550,69,0,120,0,
54920,116,0,69,0, 5456112,0,114,0,101,
54570,115,0,115,0,
5458105,0,111,0,110,
54590,95,0,49,0,
54601,311,1,3,1,
54613,1,2,1447,22,
54621,150,1,1114,1448,
546317,1290,1,3,1294,
54641,1048,1449,17,1450,
546515,1226,1,-1,1,
54665,1451,20,1452,4,
546738,66,0,105,0,
5468110,0,97,0,114,
54690,121,0,69,0,
5493120,0,112,0,114, 5470120,0,112,0,114,
54940,101,0,115,0, 54710,101,0,115,0,
5495115,0,105,0,111, 5472115,0,105,0,111,
54960,110,0,95,0, 54730,110,0,95,0,
549755,0,1,283,1, 547449,0,56,0,1,
54983,1,5,1,4, 5475310,1,3,1,4,
54991477,22,1,125,1, 54761,3,1453,22,1,
5500380,1478,17,1479,15, 5477149,1,352,1454,17,
55011480,4,38,37,0, 54781455,15,1226,1,-1,
550267,0,111,0,110, 54791,5,1456,20,1457,
55030,115,0,116,0, 54804,36,66,0,105,
550497,0,110,0,116, 54810,110,0,97,0,
5482114,0,121,0,69,
54830,120,0,112,0,
5484114,0,101,0,115,
54850,115,0,105,0,
5486111,0,110,0,95,
54870,49,0,1,293,
54881,3,1,4,1,
54893,1458,22,1,132,
54901,1872,1459,16,0,
5491345,1,1873,940,1,
5492118,1460,17,1461,15,
54931226,1,-1,1,5,
54941462,20,1463,4,38,
549566,0,105,0,110,
54960,97,0,114,0,
5497121,0,69,0,120,
54980,112,0,114,0,
5499101,0,115,0,115,
55000,105,0,111,0,
5501110,0,95,0,49,
55020,52,0,1,306,
55031,3,1,4,1,
55043,1464,22,1,145,
55051,1123,1465,17,1466,
550615,1202,1,-1,1,
55075,1467,20,1468,4,
550838,83,0,105,0,
5509109,0,112,0,108,
55100,101,0,65,0,
5511115,0,115,0,105,
55120,103,0,110,0,
5513109,0,101,0,110,
55140,116,0,95,0,
551549,0,50,0,1,
5516259,1,3,1,6,
55171,5,1469,22,1,
551898,1,371,1470,17,
55191471,15,1472,4,46,
552037,0,70,0,117,
55210,110,0,99,0,
5522116,0,105,0,111,
55230,110,0,67,0,
552497,0,108,0,108,
55050,69,0,120,0, 55250,69,0,120,0,
5506112,0,114,0,101, 5526112,0,114,0,101,
55070,115,0,115,0, 55270,115,0,115,0,
5508105,0,111,0,110, 5528105,0,111,0,110,
55090,1,-1,1,5, 55290,1,-1,1,5,
55101481,20,1482,4,40, 55301473,20,1474,4,48,
551167,0,111,0,110, 553170,0,117,0,110,
55120,115,0,116,0, 55320,99,0,116,0,
551397,0,110,0,116,
55140,69,0,120,0,
5515112,0,114,0,101,
55160,115,0,115,0,
5517105,0,111,0,110, 5533105,0,111,0,110,
55180,95,0,49,0, 55340,67,0,97,0,
55191,274,1,3,1, 5535108,0,108,0,69,
55202,1,1,1483,22, 55360,120,0,112,0,
55211,116,1,883,1484, 5537114,0,101,0,115,
552217,1485,15,1207,1, 55380,115,0,105,0,
5523-1,1,5,1486,20, 5539111,0,110,0,95,
55241487,4,38,66,0, 55400,49,0,1,292,
5525105,0,110,0,97, 55411,3,1,2,1,
55260,114,0,121,0, 55421,1475,22,1,131,
552769,0,120,0,112, 55431,1377,1476,17,1477,
55280,114,0,101,0, 554415,1202,1,-1,1,
5529115,0,115,0,105, 55455,1478,20,1479,4,
55300,111,0,110,0, 554636,83,0,105,0,
553195,0,49,0,54, 5547109,0,112,0,108,
55320,1,301,1,3, 55480,101,0,65,0,
55331,4,1,3,1488,
553422,1,143,1,1628,
55351489,17,1490,15,1491,
55364,22,37,0,65,
55370,115,0,115,0,
5538105,0,103,0,110,
55390,109,0,101,0,
5540110,0,116,0,1,
5541-1,1,5,1492,20,
55421493,4,24,65,0,
5543115,0,115,0,105, 5549115,0,115,0,105,
55440,103,0,110,0, 55500,103,0,110,0,
5545109,0,101,0,110, 5551109,0,101,0,110,
55460,116,0,95,0, 55520,116,0,95,0,
554749,0,1,239,1, 555353,0,1,252,1,
55483,1,4,1,3, 55543,1,4,1,3,
55491494,22,1,81,1, 55551480,22,1,91,1,
55502075,1495,17,1228,1, 5556375,1481,17,1482,15,
55510,1232,1,373,1496, 55571297,1,-1,1,5,
555217,1497,15,1278,1, 55581483,20,1484,4,60,
5553-1,1,5,1498,20, 555973,0,110,0,99,
55541499,4,60,73,0, 55600,114,0,101,0,
5561109,0,101,0,110,
55620,116,0,68,0,
5563101,0,99,0,114,
55640,101,0,109,0,
5565101,0,110,0,116,
55660,69,0,120,0,
5567112,0,114,0,101,
55680,115,0,115,0,
5569105,0,111,0,110,
55700,95,0,56,0,
55711,291,1,3,1,
55725,1,4,1485,22,
55731,130,1,377,1486,
557417,1487,15,1297,1,
5575-1,1,5,1488,20,
55761489,4,60,73,0,
5555110,0,99,0,114, 5577110,0,99,0,114,
55560,101,0,109,0, 55780,101,0,109,0,
5557101,0,110,0,116, 5579101,0,110,0,116,
@@ -5563,25 +5585,51 @@ public yyLSLSyntax
5563114,0,101,0,115, 5585114,0,101,0,115,
55640,115,0,105,0, 55860,115,0,105,0,
5565111,0,110,0,95, 5587111,0,110,0,95,
55660,54,0,1,282, 55880,53,0,1,288,
55671,3,1,3,1, 55891,3,1,3,1,
55682,1500,22,1,124, 55902,1490,22,1,127,
55691,130,1501,17,1502, 55911,379,1491,17,1492,
557015,1207,1,-1,1, 559215,1297,1,-1,1,
55715,1503,20,1504,4, 55935,1493,20,1494,4,
557238,66,0,105,0, 559460,73,0,110,0,
5573110,0,97,0,114, 559599,0,114,0,101,
55740,121,0,69,0, 55960,109,0,101,0,
5575120,0,112,0,114, 5597110,0,116,0,68,
55760,101,0,115,0, 55980,101,0,99,0,
5577115,0,105,0,111, 5599114,0,101,0,109,
55780,110,0,95,0, 56000,101,0,110,0,
557949,0,51,0,1, 5601116,0,69,0,120,
5580298,1,3,1,4, 56020,112,0,114,0,
55811,3,1505,22,1, 5603101,0,115,0,115,
5582140,1,143,1506,17, 56040,105,0,111,0,
55831507,15,1207,1,-1, 5605110,0,95,0,55,
55841,5,1508,20,1509, 56060,1,290,1,3,
56071,5,1,4,1495,
560822,1,129,1,380,
56091496,17,1497,15,1498,
56104,38,37,0,67,
56110,111,0,110,0,
5612115,0,116,0,97,
56130,110,0,116,0,
561469,0,120,0,112,
56150,114,0,101,0,
5616115,0,115,0,105,
56170,111,0,110,0,
56181,-1,1,5,1499,
561920,1500,4,40,67,
56200,111,0,110,0,
5621115,0,116,0,97,
56220,110,0,116,0,
562369,0,120,0,112,
56240,114,0,101,0,
5625115,0,115,0,105,
56260,111,0,110,0,
562795,0,49,0,1,
5628281,1,3,1,2,
56291,1,1501,22,1,
5630120,1,883,1502,17,
56311503,15,1226,1,-1,
56321,5,1504,20,1505,
55854,38,66,0,105, 56334,38,66,0,105,
55860,110,0,97,0, 56340,110,0,97,0,
5587114,0,121,0,69, 5635114,0,121,0,69,
@@ -5589,121 +5637,60 @@ public yyLSLSyntax
5589114,0,101,0,115, 5637114,0,101,0,115,
55900,115,0,105,0, 56380,115,0,105,0,
5591111,0,110,0,95, 5639111,0,110,0,95,
55920,49,0,50,0, 56400,49,0,54,0,
55931,297,1,3,1, 56411,308,1,3,1,
55944,1,3,1510,22, 56424,1,3,1506,22,
55951,139,1,1901,1511, 56431,147,1,1628,1507,
559617,1228,1,0,1232, 564417,1508,15,1509,4,
55971,1152,1512,17,1513, 564522,37,0,65,0,
559815,1184,1,-1,1,
55995,1514,20,1515,4,
560038,83,0,105,0,
5601109,0,112,0,108,
56020,101,0,65,0,
5603115,0,115,0,105, 5646115,0,115,0,105,
56040,103,0,110,0, 56470,103,0,110,0,
5605109,0,101,0,110, 5648109,0,101,0,110,
56060,116,0,95,0, 56490,116,0,1,-1,
560750,0,52,0,1, 56501,5,1510,20,1511,
5608264,1,3,1,6, 56514,24,65,0,115,
56091,5,1516,22,1, 56520,115,0,105,0,
5610106,1,1406,1517,17, 5653103,0,110,0,109,
56111518,15,1184,1,-1, 56540,101,0,110,0,
56121,5,1519,20,1520, 5655116,0,95,0,49,
56134,38,83,0,105, 56560,1,246,1,3,
56140,109,0,112,0, 56571,4,1,3,1512,
5615108,0,101,0,65, 565822,1,85,1,2075,
56160,115,0,115,0, 56591513,17,1247,1,0,
5617105,0,103,0,110, 56601251,1,373,1514,17,
56180,109,0,101,0, 56611515,15,1297,1,-1,
5619110,0,116,0,95, 56621,5,1516,20,1517,
56200,49,0,55,0, 56634,60,73,0,110,
56211,257,1,3,1, 56640,99,0,114,0,
56224,1,3,1521,22, 5665101,0,109,0,101,
56231,99,1,1659,1522,
562416,0,283,1,2413,
56251523,17,1228,1,0,
56261232,1,1159,1524,17,
56271525,15,1184,1,-1,
56281,5,1526,20,1527,
56294,38,83,0,105,
56300,109,0,112,0,
5631108,0,101,0,65,
56320,115,0,115,0,
5633105,0,103,0,110,
56340,109,0,101,0,
5635110,0,116,0,95,
56360,49,0,49,0,
56371,251,1,3,1,
56386,1,5,1528,22,
56391,93,1,157,1529,
564017,1530,15,1207,1,
5641-1,1,5,1531,20,
56421532,4,38,66,0,
5643105,0,110,0,97,
56440,114,0,121,0,
564569,0,120,0,112,
56460,114,0,101,0,
5647115,0,115,0,105,
56480,111,0,110,0,
564995,0,49,0,49,
56500,1,296,1,3,
56511,4,1,3,1533,
565222,1,138,1,1413,
56531534,17,1535,15,1184,
56541,-1,1,5,1536,
565520,1537,4,36,83,
56560,105,0,109,0,
5657112,0,108,0,101,
56580,65,0,115,0,
5659115,0,105,0,103,
56600,110,0,109,0,
5661101,0,110,0,116,
56620,95,0,52,0,
56631,244,1,3,1,
56644,1,3,1538,22,
56651,86,1,1370,1539,
566617,1540,15,1184,1,
5667-1,1,5,1541,20,
56681542,4,38,83,0,
5669105,0,109,0,112,
56700,108,0,101,0,
567165,0,115,0,115,
56720,105,0,103,0,
5673110,0,109,0,101,
56740,110,0,116,0,
567595,0,49,0,56,
56760,1,258,1,3,
56771,4,1,3,1543,
567822,1,100,1,1478,
56791544,17,1545,15,1184,
56801,-1,1,5,1546,
568120,1547,4,38,83,
56820,105,0,109,0,
5683112,0,108,0,101,
56840,65,0,115,0,
5685115,0,105,0,103,
56860,110,0,109,0,
5687101,0,110,0,116,
56880,95,0,49,0,
568953,0,1,255,1,
56903,1,4,1,3,
56911548,22,1,97,1,
56921620,1549,17,1550,15,
56931491,1,-1,1,5,
56941551,20,1552,4,24,
569565,0,115,0,115,
56960,105,0,103,0,
5697110,0,109,0,101,
56980,110,0,116,0, 56660,110,0,116,0,
569995,0,50,0,1, 566768,0,101,0,99,
5700240,1,3,1,2, 56680,114,0,101,0,
57011,1,1553,22,1, 5669109,0,101,0,110,
570282,1,1621,1554,16, 56700,116,0,69,0,
57030,749,1,1574,885, 5671120,0,112,0,114,
57041,172,1555,17,1556, 56720,101,0,115,0,
570515,1207,1,-1,1, 5673115,0,105,0,111,
57065,1557,20,1558,4, 56740,110,0,95,0,
567554,0,1,289,1,
56763,1,3,1,2,
56771518,22,1,128,1,
5678130,1519,17,1520,15,
56791226,1,-1,1,5,
56801521,20,1522,4,38,
568166,0,105,0,110,
56820,97,0,114,0,
5683121,0,69,0,120,
56840,112,0,114,0,
5685101,0,115,0,115,
56860,105,0,111,0,
5687110,0,95,0,49,
56880,51,0,1,305,
56891,3,1,4,1,
56903,1523,22,1,144,
56911,143,1524,17,1525,
569215,1226,1,-1,1,
56935,1526,20,1527,4,
570738,66,0,105,0, 569438,66,0,105,0,
5708110,0,97,0,114, 5695110,0,97,0,114,
57090,121,0,69,0, 56960,121,0,69,0,
@@ -5711,27 +5698,14 @@ public yyLSLSyntax
57110,101,0,115,0, 56980,101,0,115,0,
5712115,0,105,0,111, 5699115,0,105,0,111,
57130,110,0,95,0, 57000,110,0,95,0,
571449,0,48,0,1, 570149,0,50,0,1,
5715295,1,3,1,4, 5702304,1,3,1,4,
57161,3,1559,22,1, 57031,3,1528,22,1,
5717137,1,1931,946,1, 5704143,1,1901,1529,17,
57181665,1560,17,1561,15, 57051247,1,0,1251,1,
57191242,1,-1,1,5, 57061152,1530,17,1531,15,
57201562,20,1563,4,36, 57071202,1,-1,1,5,
572170,0,111,0,114, 57081532,20,1533,4,38,
57220,76,0,111,0,
5723111,0,112,0,83,
57240,116,0,97,0,
5725116,0,101,0,109,
57260,101,0,110,0,
5727116,0,95,0,49,
57280,1,235,1,3,
57291,2,1,1,1564,
573022,1,77,1,2364,
5731913,1,2105,900,1,
57321188,1565,17,1566,15,
57331184,1,-1,1,5,
57341567,20,1568,4,38,
573583,0,105,0,109, 570983,0,105,0,109,
57360,112,0,108,0, 57100,112,0,108,0,
5737101,0,65,0,115, 5711101,0,65,0,115,
@@ -5739,12 +5713,12 @@ public yyLSLSyntax
5739103,0,110,0,109, 5713103,0,110,0,109,
57400,101,0,110,0, 57140,101,0,110,0,
5741116,0,95,0,50, 5715116,0,95,0,50,
57420,51,0,1,263, 57160,52,0,1,271,
57431,3,1,6,1, 57171,3,1,6,1,
57445,1569,22,1,105, 57185,1534,22,1,110,
57451,1442,1570,17,1571, 57191,1406,1535,17,1536,
574615,1184,1,-1,1, 572015,1202,1,-1,1,
57475,1572,20,1573,4, 57215,1537,20,1538,4,
574838,83,0,105,0, 572238,83,0,105,0,
5749109,0,112,0,108, 5723109,0,112,0,108,
57500,101,0,65,0, 57240,101,0,65,0,
@@ -5752,28 +5726,54 @@ public yyLSLSyntax
57520,103,0,110,0, 57260,103,0,110,0,
5753109,0,101,0,110, 5727109,0,101,0,110,
57540,116,0,95,0, 57280,116,0,95,0,
575549,0,54,0,1, 572949,0,55,0,1,
5756256,1,3,1,4, 5730264,1,3,1,4,
57571,3,1574,22,1, 57311,3,1539,22,1,
575898,1,1694,1575,16, 5732103,1,1659,1540,16,
57590,201,1,942,1576, 57330,291,1,2413,1541,
576017,1577,15,1207,1, 573417,1247,1,0,1251,
5761-1,1,5,1578,20, 57351,1159,1542,17,1543,
57621579,4,38,66,0, 573615,1202,1,-1,1,
5763105,0,110,0,97, 57375,1544,20,1545,4,
57640,114,0,121,0, 573838,83,0,105,0,
576569,0,120,0,112, 5739109,0,112,0,108,
57660,114,0,101,0, 57400,101,0,65,0,
5767115,0,115,0,105, 5741115,0,115,0,105,
57680,111,0,110,0, 57420,103,0,110,0,
576995,0,49,0,55, 5743109,0,101,0,110,
57700,1,302,1,3, 57440,116,0,95,0,
57711,4,1,3,1580, 574549,0,49,0,1,
577222,1,144,1,2198, 5746258,1,3,1,6,
57731581,17,1228,1,0, 57471,5,1546,22,1,
57741232,1,1195,1582,17, 574897,1,157,1547,17,
57751583,15,1184,1,-1, 57491548,15,1226,1,-1,
57761,5,1584,20,1585, 57501,5,1549,20,1550,
57514,38,66,0,105,
57520,110,0,97,0,
5753114,0,121,0,69,
57540,120,0,112,0,
5755114,0,101,0,115,
57560,115,0,105,0,
5757111,0,110,0,95,
57580,49,0,49,0,
57591,303,1,3,1,
57604,1,3,1551,22,
57611,142,1,1413,1552,
576217,1553,15,1202,1,
5763-1,1,5,1554,20,
57641555,4,36,83,0,
5765105,0,109,0,112,
57660,108,0,101,0,
576765,0,115,0,115,
57680,105,0,103,0,
5769110,0,109,0,101,
57700,110,0,116,0,
577195,0,52,0,1,
5772251,1,3,1,4,
57731,3,1556,22,1,
577490,1,1370,1557,17,
57751558,15,1202,1,-1,
57761,5,1559,20,1560,
57774,38,83,0,105, 57774,38,83,0,105,
57780,109,0,112,0, 57780,109,0,112,0,
5779108,0,101,0,65, 5779108,0,101,0,65,
@@ -5781,149 +5781,297 @@ public yyLSLSyntax
5781105,0,103,0,110, 5781105,0,103,0,110,
57820,109,0,101,0, 57820,109,0,101,0,
5783110,0,116,0,95, 5783110,0,116,0,95,
57840,49,0,48,0, 57840,49,0,56,0,
57851,250,1,3,1, 57851,265,1,3,1,
57866,1,5,1586,22, 57864,1,3,1561,22,
57871,92,1,1449,1587, 57871,104,1,1478,1562,
578817,1588,15,1184,1, 578817,1563,15,1202,1,
5789-1,1,5,1589,20, 5789-1,1,5,1564,20,
57901590,4,36,83,0, 57901565,4,38,83,0,
5791105,0,109,0,112, 5791105,0,109,0,112,
57920,108,0,101,0, 57920,108,0,101,0,
579365,0,115,0,115, 579365,0,115,0,115,
57940,105,0,103,0, 57940,105,0,103,0,
5795110,0,109,0,101, 5795110,0,109,0,101,
57960,110,0,116,0, 57960,110,0,116,0,
579795,0,51,0,1, 579795,0,49,0,53,
5798243,1,3,1,4, 57980,1,262,1,3,
57991,3,1591,22,1, 57991,4,1,3,1566,
580085,1,1701,1592,17, 580022,1,101,1,1620,
58011593,15,1242,1,-1, 58011567,17,1568,15,1509,
58021,5,1594,20,1595, 58021,-1,1,5,1569,
58034,36,70,0,111, 580320,1570,4,24,65,
58040,114,0,76,0, 58040,115,0,115,0,
5805111,0,111,0,112, 5805105,0,103,0,110,
58060,83,0,116,0,
580797,0,116,0,101,
58080,109,0,101,0, 58060,109,0,101,0,
5809110,0,116,0,95, 5807110,0,116,0,95,
58100,51,0,1,237, 58080,50,0,1,247,
58091,3,1,2,1,
58101,1571,22,1,86,
58111,1621,1572,16,0,
5812772,1,1574,904,1,
5813172,1573,17,1574,15,
58141226,1,-1,1,5,
58151575,20,1576,4,38,
581666,0,105,0,110,
58170,97,0,114,0,
5818121,0,69,0,120,
58190,112,0,114,0,
5820101,0,115,0,115,
58210,105,0,111,0,
5822110,0,95,0,49,
58230,48,0,1,302,
58111,3,1,4,1, 58241,3,1,4,1,
58123,1596,22,1,79, 58253,1577,22,1,141,
58131,447,1597,17,1598, 58261,1931,965,1,1665,
581415,1599,4,30,37, 58271578,17,1579,15,1261,
58150,86,0,101,0, 58281,-1,1,5,1580,
581699,0,116,0,111, 582920,1581,4,36,70,
58170,114,0,67,0,
5818111,0,110,0,115,
58190,116,0,97,0,
5820110,0,116,0,1,
5821-1,1,5,1600,20,
58221601,4,32,86,0,
5823101,0,99,0,116,
58240,111,0,114,0, 58300,111,0,114,0,
582567,0,111,0,110, 583176,0,111,0,111,
58260,115,0,116,0, 58320,112,0,83,0,
582797,0,110,0,116, 5833116,0,97,0,116,
58340,101,0,109,0,
5835101,0,110,0,116,
58280,95,0,49,0, 58360,95,0,49,0,
58291,272,1,3,1, 58371,242,1,3,1,
58308,1,7,1602,22, 58382,1,1,1582,22,
58311,114,1,2458,961, 58391,81,1,2364,932,
58321,2459,967,1,1958, 58401,2105,919,1,1188,
58331603,17,1228,1,0, 58411583,17,1584,15,1202,
58341232,1,188,1604,17, 58421,-1,1,5,1585,
58351605,15,1207,1,-1, 584320,1586,4,38,83,
58361,5,1606,20,1607, 58440,105,0,109,0,
58374,36,66,0,105, 5845112,0,108,0,101,
58460,65,0,115,0,
5847115,0,105,0,103,
58480,110,0,109,0,
5849101,0,110,0,116,
58500,95,0,50,0,
585151,0,1,270,1,
58523,1,6,1,5,
58531587,22,1,109,1,
58541442,1588,17,1589,15,
58551202,1,-1,1,5,
58561590,20,1591,4,38,
585783,0,105,0,109,
58580,112,0,108,0,
5859101,0,65,0,115,
58600,115,0,105,0,
5861103,0,110,0,109,
58620,101,0,110,0,
5863116,0,95,0,49,
58640,54,0,1,263,
58651,3,1,4,1,
58663,1592,22,1,102,
58671,1694,1593,16,0,
5868206,1,942,1594,17,
58691595,15,1226,1,-1,
58701,5,1596,20,1597,
58714,38,66,0,105,
58380,110,0,97,0, 58720,110,0,97,0,
5839114,0,121,0,69, 5873114,0,121,0,69,
58400,120,0,112,0, 58740,120,0,112,0,
5841114,0,101,0,115, 5875114,0,101,0,115,
58420,115,0,105,0, 58760,115,0,105,0,
5843111,0,110,0,95, 5877111,0,110,0,95,
58440,57,0,1,294, 58780,49,0,55,0,
58451,3,1,4,1, 58791,309,1,3,1,
58463,1608,22,1,136, 58804,1,3,1598,22,
58471,2462,974,1,1657, 58811,148,1,2198,1599,
5848979,1,2464,984,1, 588217,1247,1,0,1251,
5849205,1609,17,1610,15, 58831,1195,1600,17,1601,
58501207,1,-1,1,5, 588415,1202,1,-1,1,
58511611,20,1612,4,36, 58855,1602,20,1603,4,
585266,0,105,0,110, 588638,83,0,105,0,
58530,97,0,114,0, 5887109,0,112,0,108,
5854121,0,69,0,120, 58880,101,0,65,0,
58550,112,0,114,0, 5889115,0,115,0,105,
5856101,0,115,0,115, 58900,103,0,110,0,
58570,105,0,111,0, 5891109,0,101,0,110,
5858110,0,95,0,56, 58920,116,0,95,0,
58590,1,293,1,3, 589349,0,48,0,1,
58601,4,1,3,1613, 5894257,1,3,1,6,
586122,1,135,1,2227, 58951,5,1604,22,1,
5862993,1,1224,1614,17, 589696,1,1449,1605,17,
58631615,15,1184,1,-1, 58971606,15,1202,1,-1,
58641,5,1616,20,1617, 58981,5,1607,20,1608,
58654,38,83,0,105, 58994,36,83,0,105,
58660,109,0,112,0, 59000,109,0,112,0,
5867108,0,101,0,65, 5901108,0,101,0,65,
58680,115,0,115,0, 59020,115,0,115,0,
5869105,0,103,0,110, 5903105,0,103,0,110,
58700,109,0,101,0, 59040,109,0,101,0,
5871110,0,116,0,95, 5905110,0,116,0,95,
58720,50,0,50,0, 59060,51,0,1,250,
58731,262,1,3,1, 59071,3,1,4,1,
58746,1,5,1618,22, 59083,1609,22,1,89,
58751,104,1,223,1619, 59091,1701,1610,17,1611,
587617,1620,15,1207,1, 591015,1261,1,-1,1,
5877-1,1,5,1621,20, 59115,1612,20,1613,4,
58781622,4,36,66,0, 591236,70,0,111,0,
5879105,0,110,0,97, 5913114,0,76,0,111,
58800,114,0,121,0, 59140,111,0,112,0,
588169,0,120,0,112, 591583,0,116,0,97,
58820,114,0,101,0, 59160,116,0,101,0,
5883115,0,115,0,105, 5917109,0,101,0,110,
59180,116,0,95,0,
591951,0,1,244,1,
59203,1,4,1,3,
59211614,22,1,83,1,
5922447,1615,17,1616,15,
59231617,4,30,37,0,
592486,0,101,0,99,
59250,116,0,111,0,
5926114,0,67,0,111,
59270,110,0,115,0,
5928116,0,97,0,110,
59290,116,0,1,-1,
59301,5,1618,20,1619,
59314,32,86,0,101,
59320,99,0,116,0,
5933111,0,114,0,67,
58840,111,0,110,0, 59340,111,0,110,0,
588595,0,55,0,1, 5935115,0,116,0,97,
5886292,1,3,1,4, 59360,110,0,116,0,
58871,3,1623,22,1, 593795,0,49,0,1,
5888134,1,1730,1624,17, 5938279,1,3,1,8,
58891625,15,1242,1,-1, 59391,7,1620,22,1,
58901,5,1626,20,1627, 5940118,1,2458,980,1,
58914,36,70,0,111, 59412459,986,1,1958,1621,
58920,114,0,76,0, 594217,1247,1,0,1251,
5893111,0,111,0,112, 59431,188,1622,17,1623,
58940,83,0,116,0, 594415,1226,1,-1,1,
589597,0,116,0,101, 59455,1624,20,1625,4,
58960,109,0,101,0, 594636,66,0,105,0,
5897110,0,116,0,95, 5947110,0,97,0,114,
58980,52,0,1,238, 59480,121,0,69,0,
5949120,0,112,0,114,
59500,101,0,115,0,
5951115,0,105,0,111,
59520,110,0,95,0,
595357,0,1,301,1,
59543,1,4,1,3,
59551626,22,1,140,1,
59562462,993,1,1657,998,
59571,2464,1003,1,205,
59581627,17,1628,15,1226,
59591,-1,1,5,1629,
596020,1630,4,36,66,
59610,105,0,110,0,
596297,0,114,0,121,
59630,69,0,120,0,
5964112,0,114,0,101,
59650,115,0,115,0,
5966105,0,111,0,110,
59670,95,0,56,0,
59681,300,1,3,1,
59694,1,3,1631,22,
59701,139,1,2227,1012,
59711,1224,1632,17,1633,
597215,1202,1,-1,1,
59735,1634,20,1635,4,
597438,83,0,105,0,
5975109,0,112,0,108,
59760,101,0,65,0,
5977115,0,115,0,105,
59780,103,0,110,0,
5979109,0,101,0,110,
59800,116,0,95,0,
598150,0,50,0,1,
5982269,1,3,1,6,
59831,5,1636,22,1,
5984108,1,223,1637,17,
59851638,15,1226,1,-1,
59861,5,1639,20,1640,
59874,36,66,0,105,
59880,110,0,97,0,
5989114,0,121,0,69,
59900,120,0,112,0,
5991114,0,101,0,115,
59920,115,0,105,0,
5993111,0,110,0,95,
59940,55,0,1,299,
58991,3,1,4,1, 59951,3,1,4,1,
59003,1628,22,1,80, 59963,1641,22,1,138,
59011,476,1629,17,1630, 59971,1730,1642,17,1643,
590215,1631,4,18,37, 599815,1261,1,-1,1,
59995,1644,20,1645,4,
600036,70,0,111,0,
6001114,0,76,0,111,
60020,111,0,112,0,
600383,0,116,0,97,
60040,116,0,101,0,
6005109,0,101,0,110,
60060,116,0,95,0,
600752,0,1,245,1,
60083,1,4,1,3,
60091646,22,1,84,1,
6010476,1647,17,1648,15,
60111649,4,18,37,0,
601267,0,111,0,110,
60130,115,0,116,0,
601497,0,110,0,116,
60150,1,-1,1,5,
60161650,20,1651,4,20,
601767,0,111,0,110,
60180,115,0,116,0,
601997,0,110,0,116,
60200,95,0,52,0,
60211,277,1,3,1,
60222,1,1,1652,22,
60231,116,1,477,1653,
602417,1654,15,1649,1,
6025-1,1,5,1655,20,
60261656,4,20,67,0,
6027111,0,110,0,115,
60280,116,0,97,0,
6029110,0,116,0,95,
60300,51,0,1,276,
60311,3,1,2,1,
60321,1657,22,1,115,
60331,1231,1658,17,1659,
603415,1202,1,-1,1,
60355,1660,20,1661,4,
603636,83,0,105,0,
6037109,0,112,0,108,
60380,101,0,65,0,
6039115,0,115,0,105,
60400,103,0,110,0,
6041109,0,101,0,110,
60420,116,0,95,0,
604357,0,1,256,1,
60443,1,6,1,5,
60451662,22,1,95,1,
6046479,1663,17,1664,15,
60471649,1,-1,1,5,
60481665,20,1666,4,20,
604967,0,111,0,110,
60500,115,0,116,0,
605197,0,110,0,116,
60520,95,0,49,0,
60531,274,1,3,1,
60542,1,1,1667,22,
60551,113,1,480,1668,
605617,1669,15,1670,4,
605726,37,0,76,0,
6058105,0,115,0,116,
59030,67,0,111,0, 60590,67,0,111,0,
5904110,0,115,0,116, 6060110,0,115,0,116,
59050,97,0,110,0, 60610,97,0,110,0,
5906116,0,1,-1,1, 6062116,0,1,-1,1,
59075,1632,20,1633,4, 60635,1671,20,1672,4,
590820,67,0,111,0, 606428,76,0,105,0,
5909110,0,115,0,116, 6065115,0,116,0,67,
59100,97,0,110,0,
5911116,0,95,0,52,
59120,1,270,1,3,
59131,2,1,1,1634,
591422,1,112,1,477,
59151635,17,1636,15,1631,
59161,-1,1,5,1637,
591720,1638,4,20,67,
59180,111,0,110,0, 60660,111,0,110,0,
5919115,0,116,0,97, 6067115,0,116,0,97,
59200,110,0,116,0, 60680,110,0,116,0,
592195,0,51,0,1, 606995,0,49,0,1,
5922269,1,3,1,2, 6070278,1,3,1,4,
59231,1,1639,22,1, 60711,3,1673,22,1,
5924111,1,1231,1640,17, 6072117,1,1485,1674,17,
59251641,15,1184,1,-1, 60731675,15,1202,1,-1,
59261,5,1642,20,1643, 60741,5,1676,20,1677,
59274,36,83,0,105, 60754,36,83,0,105,
59280,109,0,112,0, 60760,109,0,112,0,
5929108,0,101,0,65, 6077108,0,101,0,65,
@@ -5931,92 +6079,38 @@ public yyLSLSyntax
5931105,0,103,0,110, 6079105,0,103,0,110,
59320,109,0,101,0, 60800,109,0,101,0,
5933110,0,116,0,95, 6081110,0,116,0,95,
59340,57,0,1,249, 60820,50,0,1,249,
59351,3,1,6,1, 60831,3,1,4,1,
59365,1644,22,1,91, 60843,1678,22,1,88,
59371,479,1645,17,1646, 60851,1737,1679,16,0,
593815,1631,1,-1,1, 6086293,1,1989,1020,1,
59395,1647,20,1648,4, 60871990,1680,17,1247,1,
594020,67,0,111,0, 60880,1251,1,242,1681,
5941110,0,115,0,116, 608917,1682,15,1226,1,
59420,97,0,110,0, 6090-1,1,5,1683,20,
5943116,0,95,0,49, 60911684,4,36,66,0,
59440,1,267,1,3, 6092105,0,110,0,97,
59451,2,1,1,1649, 60930,114,0,121,0,
594622,1,109,1,480, 609469,0,120,0,112,
59471650,17,1651,15,1652, 60950,114,0,101,0,
59484,26,37,0,76, 6096115,0,115,0,105,
59490,105,0,115,0, 60970,111,0,110,0,
5950116,0,67,0,111, 609895,0,54,0,1,
6099298,1,3,1,4,
61001,3,1685,22,1,
6101137,1,478,1686,17,
61021687,15,1649,1,-1,
61031,5,1688,20,1689,
61044,20,67,0,111,
59510,110,0,115,0, 61050,110,0,115,0,
5952116,0,97,0,110, 6106116,0,97,0,110,
59530,116,0,1,-1, 61070,116,0,95,0,
59541,5,1653,20,1654, 610850,0,1,275,1,
59554,28,76,0,105, 61093,1,2,1,1,
59560,115,0,116,0, 61101690,22,1,114,1,
595767,0,111,0,110, 61111001,1691,17,1692,15,
59580,115,0,116,0, 61121329,1,-1,1,5,
595997,0,110,0,116, 61131693,20,1694,4,40,
59600,95,0,49,0,
59611,271,1,3,1,
59624,1,3,1655,22,
59631,113,1,1485,1656,
596417,1657,15,1184,1,
5965-1,1,5,1658,20,
59661659,4,36,83,0,
5967105,0,109,0,112,
59680,108,0,101,0,
596965,0,115,0,115,
59700,105,0,103,0,
5971110,0,109,0,101,
59720,110,0,116,0,
597395,0,50,0,1,
5974242,1,3,1,4,
59751,3,1660,22,1,
597684,1,1737,1661,16,
59770,285,1,1989,1002,
59781,1990,1662,17,1228,
59791,0,1232,1,2746,
59801663,16,0,297,1,
5981242,1664,17,1665,15,
59821207,1,-1,1,5,
59831666,20,1667,4,36,
598466,0,105,0,110,
59850,97,0,114,0,
5986121,0,69,0,120,
59870,112,0,114,0,
5988101,0,115,0,115,
59890,105,0,111,0,
5990110,0,95,0,54,
59910,1,291,1,3,
59921,4,1,3,1668,
599322,1,133,1,478,
59941669,17,1670,15,1631,
59951,-1,1,5,1671,
599620,1672,4,20,67,
59970,111,0,110,0,
5998115,0,116,0,97,
59990,110,0,116,0,
600095,0,50,0,1,
6001268,1,3,1,2,
60021,1,1673,22,1,
6003110,1,1001,1674,17,
60041675,15,1310,1,-1,
60051,5,1676,20,1677,
60064,40,84,0,121,
60070,112,0,101,0,
600899,0,97,0,115,
60090,116,0,69,0,
6010120,0,112,0,114,
60110,101,0,115,0,
6012115,0,105,0,111,
60130,110,0,95,0,
601456,0,1,316,1,
60153,1,5,1,4,
60161678,22,1,158,1,
60171002,1679,17,1680,15,
60181310,1,-1,1,5,
60191681,20,1682,4,40,
602084,0,121,0,112, 611484,0,121,0,112,
60210,101,0,99,0, 61150,101,0,99,0,
602297,0,115,0,116, 611697,0,115,0,116,
@@ -6024,350 +6118,414 @@ public yyLSLSyntax
6024112,0,114,0,101, 6118112,0,114,0,101,
60250,115,0,115,0, 61190,115,0,115,0,
6026105,0,111,0,110, 6120105,0,111,0,110,
61210,95,0,56,0,
61221,323,1,3,1,
61235,1,4,1695,22,
61241,162,1,1002,1696,
612517,1697,15,1329,1,
6126-1,1,5,1698,20,
61271699,4,40,84,0,
6128121,0,112,0,101,
61290,99,0,97,0,
6130115,0,116,0,69,
61310,120,0,112,0,
6132114,0,101,0,115,
61330,115,0,105,0,
6134111,0,110,0,95,
61350,49,0,1,316,
61361,3,1,5,1,
61374,1700,22,1,155,
61381,2760,1701,16,0,
6139137,1,12,1702,19,
6140166,1,12,1703,5,
614149,1,1901,1704,16,
61420,164,1,2075,1705,
614316,0,164,1,1860,
6144926,1,1803,892,1,
61451804,1706,16,0,164,
61461,2518,1707,16,0,
6147164,1,2413,1708,16,
61480,164,1,2198,1709,
614916,0,164,1,1873,
6150940,1,1657,998,1,
61512639,1710,16,0,738,
61521,2533,1711,16,0,
6153164,1,1989,1020,1,
61541990,1712,16,0,164,
61551,2756,1713,16,0,
6156164,1,32,1714,16,
61570,164,1,31,1715,
615816,0,164,1,2541,
61591716,16,0,164,1,
61602106,1717,16,0,164,
61611,2549,1718,16,0,
6162164,1,2578,1719,16,
61630,164,1,2227,1012,
61641,2337,1720,16,0,
6165164,1,2558,1721,16,
61660,164,1,2563,1722,
616716,0,164,1,2021,
6168823,1,2458,980,1,
61692459,986,1,2462,993,
61701,2136,947,1,2464,
61711003,1,2029,830,1,
61722030,836,1,2031,841,
61731,2032,846,1,2469,
61741723,16,0,525,1,
61752035,857,1,2364,932,
61761,2039,867,1,1931,
6177965,1,2041,873,1,
61782043,879,1,2045,884,
61791,1775,1724,16,0,
6180164,1,2033,851,1,
61812037,862,1,1574,904,
61821,2105,919,1,1958,
61831725,16,0,164,1,
618413,1726,19,507,1,
618513,1727,5,52,1,
61861860,926,1,1803,892,
61871,2625,1728,17,1729,
618815,1730,4,20,37,
61890,83,0,116,0,
619097,0,116,0,101,
61910,66,0,111,0,
6192100,0,121,0,1,
6193-1,1,5,1731,20,
61941732,4,24,83,0,
6195116,0,97,0,116,
61960,101,0,66,0,
6197111,0,100,0,121,
60270,95,0,49,0, 61980,95,0,49,0,
60281,309,1,3,1, 619950,0,1,188,1,
60295,1,4,1683,22, 62003,1,3,1,2,
60301,151,1,12,1684, 62011733,22,1,26,1,
603119,167,1,12,1685, 62022626,1734,17,1735,15,
60325,48,1,1901,1686, 62031730,1,-1,1,5,
603316,0,165,1,2033, 62041736,20,1737,4,24,
6034832,1,2622,1687,16,
60350,626,1,1860,907,
60361,1803,873,1,1804,
60371688,16,0,165,1,
60382735,1689,16,0,165,
60391,2518,1690,16,0,
6040165,1,2413,1691,16,
60410,165,1,2198,1692,
604216,0,165,1,2527,
60431693,16,0,165,1,
60441657,979,1,1989,1002,
60451,2535,1694,16,0,
6046165,1,31,1695,16,
60470,165,1,32,1696,
604816,0,165,1,2105,
6049900,1,2106,1697,16,
60500,165,1,2544,1698,
605116,0,165,1,2549,
60521699,16,0,165,1,
60532227,993,1,2337,1700,
605416,0,165,1,2564,
60551701,16,0,165,1,
60562021,804,1,2458,961,
60571,2459,967,1,2462,
6058974,1,2136,928,1,
60592464,984,1,2029,811,
60601,2030,817,1,2031,
6061822,1,2032,827,1,
60622469,1702,16,0,509,
60631,2035,838,1,2364,
6064913,1,2039,848,1,
60651931,946,1,2041,854,
60661,1873,921,1,2043,
6067860,1,2045,865,1,
60681775,1703,16,0,165,
60691,1990,1704,16,0,
6070165,1,2075,1705,16,
60710,165,1,2037,843,
60721,1574,885,1,1958,
60731706,16,0,165,1,
607413,1707,19,492,1,
607513,1708,5,49,1,
60762616,1709,17,1710,15,
60771711,4,20,37,0,
607883,0,116,0,97, 620583,0,116,0,97,
60790,116,0,101,0, 62060,116,0,101,0,
608066,0,111,0,100, 620766,0,111,0,100,
60810,121,0,1,-1, 62080,121,0,95,0,
60821,5,1712,20,1713, 620949,0,48,0,1,
60834,24,83,0,116, 6210186,1,3,1,3,
62111,2,1738,22,1,
621224,1,2627,1739,17,
62131740,15,1730,1,-1,
62141,5,1741,20,1742,
62154,22,83,0,116,
60840,97,0,116,0, 62160,97,0,116,0,
6085101,0,66,0,111, 6217101,0,66,0,111,
60860,100,0,121,0, 62180,100,0,121,0,
608795,0,49,0,49, 621995,0,56,0,1,
60880,1,184,1,3, 6220184,1,3,1,3,
60891,2,1,1,1714, 62211,2,1743,22,1,
609022,1,25,1,2617, 622222,1,2628,1744,17,
60911715,17,1716,15,1711, 62231745,15,1730,1,-1,
60921,-1,1,5,1717, 62241,5,1746,20,1747,
609320,1718,4,22,83, 62254,22,83,0,116,
60940,116,0,97,0, 62260,97,0,116,0,
6095116,0,101,0,66, 6227101,0,66,0,111,
60960,111,0,100,0, 62280,100,0,121,0,
6097121,0,95,0,57, 622995,0,54,0,1,
60980,1,182,1,3, 6230182,1,3,1,3,
60991,2,1,1,1719, 62311,2,1748,22,1,
610022,1,23,1,2618, 623220,1,2520,1749,17,
61011720,17,1721,15,1711, 62331750,15,1751,4,46,
61021,-1,1,5,1722, 623437,0,73,0,110,
610320,1723,4,22,83, 62350,116,0,86,0,
6236101,0,99,0,86,
62370,101,0,99,0,
623865,0,114,0,103,
62390,83,0,116,0,
624097,0,116,0,101,
62410,69,0,118,0,
6242101,0,110,0,116,
62430,1,-1,1,5,
62441752,20,1753,4,48,
624573,0,110,0,116,
62460,86,0,101,0,
624799,0,86,0,101,
62480,99,0,65,0,
6249114,0,103,0,83,
61040,116,0,97,0, 62500,116,0,97,0,
6105116,0,101,0,66, 6251116,0,101,0,69,
61060,111,0,100,0, 62520,118,0,101,0,
6107121,0,95,0,55, 6253110,0,116,0,95,
61080,1,180,1,3, 62540,49,0,1,197,
61091,2,1,1,1724, 62551,3,1,6,1,
611022,1,21,1,2619, 62565,1754,22,1,35,
61111725,17,1726,15,1711, 62571,2630,1755,17,1756,
61121,-1,1,5,1727, 625815,1730,1,-1,1,
611320,1728,4,22,83, 62595,1757,20,1758,4,
626022,83,0,116,0,
626197,0,116,0,101,
62620,66,0,111,0,
6263100,0,121,0,95,
62640,50,0,1,178,
62651,3,1,3,1,
62662,1759,22,1,16,
62671,2413,1760,16,0,
6268505,1,2632,1761,17,
62691762,15,1730,1,-1,
62701,5,1763,20,1764,
62714,24,83,0,116,
62720,97,0,116,0,
6273101,0,66,0,111,
62740,100,0,121,0,
627595,0,49,0,51,
62760,1,189,1,3,
62771,2,1,1,1765,
627822,1,27,1,2633,
62791766,17,1767,15,1730,
62801,-1,1,5,1768,
628120,1769,4,24,83,
61140,116,0,97,0, 62820,116,0,97,0,
6115116,0,101,0,66, 6283116,0,101,0,66,
61160,111,0,100,0, 62840,111,0,100,0,
6117121,0,95,0,53, 6285121,0,95,0,49,
61180,1,178,1,3, 62860,49,0,1,187,
61191,2,1,1,1729, 62871,3,1,2,1,
612022,1,19,1,2620, 62881,1770,22,1,25,
61211730,17,1731,15,1711, 62891,2634,1771,17,1772,
61221,-1,1,5,1732, 629015,1730,1,-1,1,
612320,1733,4,22,83, 62915,1773,20,1774,4,
629222,83,0,116,0,
629397,0,116,0,101,
62940,66,0,111,0,
6295100,0,121,0,95,
62960,57,0,1,185,
62971,3,1,2,1,
62981,1775,22,1,23,
62991,2635,1776,17,1777,
630015,1730,1,-1,1,
63015,1778,20,1779,4,
630222,83,0,116,0,
630397,0,116,0,101,
63040,66,0,111,0,
6305100,0,121,0,95,
63060,55,0,1,183,
63071,3,1,2,1,
63081,1780,22,1,21,
63091,1873,940,1,2637,
63101781,17,1782,15,1730,
63111,-1,1,5,1783,
631220,1784,4,22,83,
61240,116,0,97,0, 63130,116,0,97,0,
6125116,0,101,0,66, 6314116,0,101,0,66,
61260,111,0,100,0, 63150,111,0,100,0,
6127121,0,95,0,51, 6316121,0,95,0,51,
61280,1,176,1,3, 63170,1,179,1,3,
61291,2,1,1,1734, 63181,2,1,1,1785,
613022,1,17,1,2621, 631922,1,17,1,2638,
61311735,17,1736,15,1711, 63201786,17,1787,15,1730,
61321,-1,1,5,1737, 63211,-1,1,5,1788,
613320,1738,4,22,83, 632220,1789,4,22,83,
61340,116,0,97,0, 63230,116,0,97,0,
6135116,0,101,0,66, 6324116,0,101,0,66,
61360,111,0,100,0, 63250,111,0,100,0,
6137121,0,95,0,49, 6326121,0,95,0,49,
61380,1,174,1,3, 63270,1,177,1,3,
61391,2,1,1,1739, 63281,2,1,1,1790,
614022,1,15,1,1860, 632922,1,15,1,1989,
6141907,1,1803,873,1, 63301020,1,2535,1791,17,
61422520,1740,17,1741,15, 63311792,15,1793,4,46,
61431742,4,46,37,0, 633237,0,73,0,110,
614473,0,110,0,116, 63330,116,0,82,0,
61450,82,0,111,0, 6334111,0,116,0,82,
6146116,0,82,0,111,
61470,116,0,65,0,
6148114,0,103,0,83,
61490,116,0,97,0,
6150116,0,101,0,69,
61510,118,0,101,0,
6152110,0,116,0,1,
6153-1,1,5,1743,20,
61541744,4,48,73,0,
6155110,0,116,0,82,
61560,111,0,116,0, 63350,111,0,116,0,
615782,0,111,0,116,
61580,65,0,114,0,
6159103,0,83,0,116,
61600,97,0,116,0,
6161101,0,69,0,118,
61620,101,0,110,0,
6163116,0,95,0,49,
61640,1,191,1,3,
61651,6,1,5,1745,
616622,1,32,1,2413,
61671746,16,0,490,1,
61681657,979,1,1873,921,
61691,2529,1747,17,1748,
617015,1749,4,40,37,
61710,86,0,101,0,
617299,0,116,0,111,
61730,114,0,65,0,
6174114,0,103,0,83,
61750,116,0,97,0,
6176116,0,101,0,69,
61770,118,0,101,0,
6178110,0,116,0,1,
6179-1,1,5,1750,20,
61801751,4,42,86,0,
6181101,0,99,0,116,
61820,111,0,114,0,
618365,0,114,0,103, 633665,0,114,0,103,
61840,83,0,116,0, 63370,83,0,116,0,
618597,0,116,0,101, 633897,0,116,0,101,
61860,69,0,118,0, 63390,69,0,118,0,
6187101,0,110,0,116, 6340101,0,110,0,116,
61880,95,0,49,0, 63410,1,-1,1,5,
61891,190,1,3,1, 63421794,20,1795,4,48,
61906,1,5,1752,22, 634373,0,110,0,116,
61911,31,1,2664,1753, 63440,82,0,111,0,
619216,0,707,1,1989, 6345116,0,82,0,111,
61931002,1,2537,1754,17,
61941755,15,1756,4,34,
619537,0,73,0,110,
61960,116,0,65,0, 63460,116,0,65,0,
6197114,0,103,0,83, 6347114,0,103,0,83,
61980,116,0,97,0, 63480,116,0,97,0,
6199116,0,101,0,69, 6349116,0,101,0,69,
62000,118,0,101,0, 63500,118,0,101,0,
6201110,0,116,0,1, 6351110,0,116,0,95,
6202-1,1,5,1757,20, 63520,49,0,1,196,
62031758,4,36,73,0, 63531,3,1,6,1,
6204110,0,116,0,65, 63545,1796,22,1,34,
62050,114,0,103,0, 63551,2037,862,1,32,
620683,0,116,0,97, 63561797,16,0,513,1,
62070,116,0,101,0, 63572105,919,1,2464,1003,
620869,0,118,0,101, 63581,2551,1798,17,1799,
62090,110,0,116,0, 635915,1800,4,34,37,
621095,0,49,0,1, 63600,73,0,110,0,
6211189,1,3,1,6, 6361116,0,65,0,114,
62121,5,1759,22,1,
621330,1,32,1760,16,
62140,502,1,2105,900,
62151,2546,1761,17,1762,
621615,1763,4,34,37,
62170,75,0,101,0,
6218121,0,65,0,114,
62190,103,0,83,0, 63620,103,0,83,0,
6220116,0,97,0,116, 6363116,0,97,0,116,
62210,101,0,69,0, 63640,101,0,69,0,
6222118,0,101,0,110, 6365118,0,101,0,110,
62230,116,0,1,-1, 63660,116,0,1,-1,
62241,5,1764,20,1765, 63671,5,1801,20,1802,
62254,36,75,0,101, 63684,36,73,0,110,
62260,121,0,65,0, 63690,116,0,65,0,
6227114,0,103,0,83, 6370114,0,103,0,83,
62280,116,0,97,0, 63710,116,0,97,0,
6229116,0,101,0,69, 6372116,0,101,0,69,
62300,118,0,101,0, 63730,118,0,101,0,
6231110,0,116,0,95, 6374110,0,116,0,95,
62320,49,0,1,188, 63750,49,0,1,194,
62331,3,1,6,1, 63761,3,1,6,1,
62345,1766,22,1,29, 63775,1803,22,1,32,
62351,2364,913,1,2551, 63781,2580,1804,17,1805,
62361767,17,1768,15,1769, 637915,1806,4,22,37,
62374,36,37,0,86, 63800,83,0,116,0,
62380,111,0,105,0, 638197,0,116,0,101,
6239100,0,65,0,114, 63820,69,0,118,0,
62400,103,0,83,0, 6383101,0,110,0,116,
6241116,0,97,0,116, 63840,1,-1,1,5,
62420,101,0,69,0, 63851807,20,1808,4,24,
6243118,0,101,0,110, 638683,0,116,0,97,
62440,116,0,1,-1, 63870,116,0,101,0,
62451,5,1770,20,1771, 638869,0,118,0,101,
62464,38,86,0,111, 63890,110,0,116,0,
62470,105,0,100,0, 639095,0,49,0,1,
6391191,1,3,1,6,
63921,5,1809,22,1,
639329,1,2227,1012,1,
63941574,904,1,2560,1810,
639517,1811,15,1812,4,
639634,37,0,75,0,
6397101,0,121,0,65,
63980,114,0,103,0,
639983,0,116,0,97,
64000,116,0,101,0,
640169,0,118,0,101,
64020,110,0,116,0,
64031,-1,1,5,1813,
640420,1814,4,36,75,
64050,101,0,121,0,
624865,0,114,0,103, 640665,0,114,0,103,
62490,83,0,116,0, 64070,83,0,116,0,
625097,0,116,0,101, 640897,0,116,0,101,
62510,69,0,118,0, 64090,69,0,118,0,
6252101,0,110,0,116, 6410101,0,110,0,116,
62530,95,0,49,0, 64110,95,0,49,0,
62541,187,1,3,1, 64121,193,1,3,1,
62555,1,4,1772,22, 64136,1,5,1815,22,
62561,28,1,2227,993, 64141,31,1,2565,1816,
62571,1574,885,1,2566, 641517,1817,15,1818,4,
62581773,17,1774,15,1775, 641636,37,0,86,0,
62594,22,37,0,83, 6417111,0,105,0,100,
62600,116,0,97,0, 64180,65,0,114,0,
6261116,0,101,0,69, 6419103,0,83,0,116,
62620,118,0,101,0, 64200,97,0,116,0,
6263110,0,116,0,1, 6421101,0,69,0,118,
6264-1,1,5,1776,20, 64220,101,0,110,0,
62651777,4,24,83,0, 6423116,0,1,-1,1,
6266116,0,97,0,116, 64245,1819,20,1820,4,
62670,101,0,69,0, 642538,86,0,111,0,
6268118,0,101,0,110, 6426105,0,100,0,65,
62690,116,0,95,0, 64270,114,0,103,0,
627049,0,1,186,1,
62713,1,6,1,5,
62721778,22,1,27,1,
62732458,961,1,2459,967,
62741,2462,974,1,2136,
6275928,1,2464,984,1,
62762029,811,1,2030,817,
62771,2031,822,1,2032,
6278827,1,2033,832,1,
62792035,838,1,2037,843,
62801,2039,848,1,1931,
6281946,1,2041,854,1,
62822021,804,1,2043,860,
62831,2045,865,1,2568,
62841779,16,0,686,1,
62852609,1780,17,1781,15,
62861711,1,-1,1,5,
62871782,20,1783,4,24,
628883,0,116,0,97, 642883,0,116,0,97,
62890,116,0,101,0, 64290,116,0,101,0,
629066,0,111,0,100, 643069,0,118,0,101,
62910,121,0,95,0, 64310,110,0,116,0,
629249,0,50,0,1, 643295,0,49,0,1,
6293185,1,3,1,3, 6433192,1,3,1,5,
62941,2,1784,22,1, 64341,4,1821,22,1,
629526,1,2610,1785,17, 643530,1,2021,823,1,
62961786,15,1711,1,-1, 64362458,980,1,2459,986,
62971,5,1787,20,1788, 64371,2462,993,1,2136,
62984,24,83,0,116, 6438947,1,2682,1822,16,
64390,744,1,2029,830,
64401,2030,836,1,2031,
6441841,1,2032,846,1,
64422033,851,1,1657,998,
64431,2035,857,1,2364,
6444932,1,2039,867,1,
64451931,965,1,2041,873,
64461,2043,879,1,2045,
6447884,1,2543,1823,17,
64481824,15,1825,4,40,
644937,0,86,0,101,
64500,99,0,116,0,
6451111,0,114,0,65,
64520,114,0,103,0,
645383,0,116,0,97,
64540,116,0,101,0,
645569,0,118,0,101,
64560,110,0,116,0,
64571,-1,1,5,1826,
645820,1827,4,42,86,
64590,101,0,99,0,
6460116,0,111,0,114,
64610,65,0,114,0,
6462103,0,83,0,116,
62990,97,0,116,0, 64630,97,0,116,0,
6300101,0,66,0,111, 6464101,0,69,0,118,
63010,100,0,121,0, 64650,101,0,110,0,
630295,0,49,0,48, 6466116,0,95,0,49,
63030,1,183,1,3, 64670,1,195,1,3,
63041,3,1,2,1789, 64681,6,1,5,1828,
630522,1,24,1,2611, 646922,1,33,1,2624,
63061790,17,1791,15,1711, 64701829,17,1830,15,1730,
63071,-1,1,5,1792, 64711,-1,1,5,1831,
630820,1793,4,22,83, 647220,1832,4,24,83,
63090,116,0,97,0,
6310116,0,101,0,66,
63110,111,0,100,0,
6312121,0,95,0,56,
63130,1,181,1,3,
63141,3,1,2,1794,
631522,1,22,1,2612,
63161795,17,1796,15,1711,
63171,-1,1,5,1797,
631820,1798,4,22,83,
63190,116,0,97,0,
6320116,0,101,0,66,
63210,111,0,100,0,
6322121,0,95,0,54,
63230,1,179,1,3,
63241,3,1,2,1799,
632522,1,20,1,2613,
63261800,17,1801,15,1711,
63271,-1,1,5,1802,
632820,1803,4,22,83,
63290,116,0,97,0,
6330116,0,101,0,66,
63310,111,0,100,0,
6332121,0,95,0,52,
63330,1,177,1,3,
63341,3,1,2,1804,
633522,1,18,1,2614,
63361805,17,1806,15,1711,
63371,-1,1,5,1807,
633820,1808,4,22,83,
63390,116,0,97,0, 64730,116,0,97,0,
6340116,0,101,0,66, 6474116,0,101,0,66,
63410,111,0,100,0, 64750,111,0,100,0,
6342121,0,95,0,50, 6476121,0,95,0,49,
63430,1,175,1,3, 64770,52,0,1,190,
63441,3,1,2,1809, 64781,3,1,3,1,
634522,1,16,1,14, 64792,1833,22,1,28,
63461810,19,154,1,14, 64801,2629,1834,17,1835,
63471811,5,109,1,2512, 648115,1730,1,-1,1,
63481812,17,1813,15,1814, 64825,1836,20,1837,4,
63494,30,37,0,82, 648322,83,0,116,0,
63500,111,0,116,0, 648497,0,116,0,101,
635168,0,101,0,99, 64850,66,0,111,0,
63520,108,0,97,0, 6486100,0,121,0,95,
6353114,0,97,0,116, 64870,52,0,1,180,
63540,105,0,111,0, 64881,3,1,3,1,
6355110,0,1,-1,1, 64892,1838,22,1,18,
63565,1815,20,1816,4, 64901,2582,1839,16,0,
635732,82,0,111,0, 6491731,1,2636,1840,17,
6358116,0,68,0,101, 64921841,15,1730,1,-1,
64931,5,1842,20,1843,
64944,22,83,0,116,
64950,97,0,116,0,
6496101,0,66,0,111,
64970,100,0,121,0,
649895,0,53,0,1,
6499181,1,3,1,2,
65001,1,1844,22,1,
650119,1,14,1845,19,
6502153,1,14,1846,5,
6503112,1,2512,1847,17,
65041848,15,1849,4,36,
650537,0,86,0,101,
65060,99,0,116,0,
6507111,0,114,0,68,
65080,101,0,99,0,
6509108,0,97,0,114,
65100,97,0,116,0,
6511105,0,111,0,110,
65120,1,-1,1,5,
65131850,20,1851,4,38,
651486,0,101,0,99,
65150,116,0,111,0,
6516114,0,68,0,101,
63590,99,0,108,0, 65170,99,0,108,0,
636097,0,114,0,97, 651897,0,114,0,97,
63610,116,0,105,0, 65190,116,0,105,0,
6362111,0,110,0,95, 6520111,0,110,0,95,
63630,49,0,1,202, 65210,49,0,1,208,
63641,3,1,3,1, 65221,3,1,3,1,
63652,1817,22,1,44, 65232,1852,22,1,47,
63661,2513,1818,16,0, 65241,2513,1853,16,0,
6367457,1,1260,1182,1, 6525476,1,1260,1200,1,
63681011,1188,1,1514,1194, 65261011,1207,1,1514,1213,
63691,9,1199,1,10, 65271,9,1218,1,10,
63701819,17,1820,15,1821, 65281854,17,1855,15,1856,
63714,48,37,0,65, 65294,48,37,0,65,
63720,114,0,103,0, 65300,114,0,103,0,
6373117,0,109,0,101, 6531117,0,109,0,101,
@@ -6378,809 +6536,847 @@ public yyLSLSyntax
63780,105,0,111,0, 65360,105,0,111,0,
6379110,0,76,0,105, 6537110,0,76,0,105,
63800,115,0,116,0, 65380,115,0,116,0,
63811,-1,1,5,150, 65391,-1,1,5,149,
63821,0,1,0,1822, 65401,0,1,0,1857,
638322,1,33,1,262, 654122,1,36,1,262,
63841205,1,1267,1211,1, 65421224,1,1267,1230,1,
63851521,1216,1,1773,1823, 65432524,1858,16,0,490,
638616,0,158,1,19, 65441,1521,1235,1,1773,
63871233,1,20,1824,16, 65451859,16,0,157,1,
63880,152,1,2281,1240, 65462527,1860,17,1861,15,
63891,525,1302,1,30, 65471862,4,30,37,0,
63901825,17,1826,15,1821, 654882,0,111,0,116,
63911,-1,1,5,1827,
639220,1828,4,50,65,
63930,114,0,103,0,
6394117,0,109,0,101,
63950,110,0,116,0,
639668,0,101,0,99,
63970,108,0,97,0,
6398114,0,97,0,116,
63990,105,0,111,0,
6400110,0,76,0,105,
64010,115,0,116,0,
640295,0,50,0,1,
6403193,1,3,1,4,
64041,3,1829,22,1,
640535,1,1002,1679,1,
6406283,1258,1,40,1263,
64071,41,1830,17,1831,
640815,1832,4,26,37,
64090,65,0,114,0,
6410103,0,117,0,109,
64110,101,0,110,0,
6412116,0,76,0,105,
64130,115,0,116,0,
64141,-1,1,5,676,
64151,0,1,0,1833,
641622,1,161,1,42,
64171834,17,1835,15,1836,
64184,38,37,0,69,
64190,120,0,112,0,
6420114,0,101,0,115,
64210,115,0,105,0,
6422111,0,110,0,65,
64230,114,0,103,0,
6424117,0,109,0,101,
64250,110,0,116,0,
64261,-1,1,5,1837,
642720,1838,4,40,69,
64280,120,0,112,0,
6429114,0,101,0,115,
64300,115,0,105,0,
6431111,0,110,0,65,
64320,114,0,103,0,
6433117,0,109,0,101,
64340,110,0,116,0,
643595,0,49,0,1,
6436321,1,3,1,2,
64371,1,1839,22,1,
6438164,1,2553,1840,17,
64391841,15,1821,1,-1,
64401,5,150,1,0,
64411,0,1822,1,44,
64421269,1,47,1270,1,
644348,1276,1,49,1282,
64441,50,1287,1,51,
64451292,1,2562,1842,16,
64460,152,1,305,1297,
64471,2733,1843,16,0,
6448152,1,63,1308,1,
644966,1315,1,67,1320,
64501,1478,1544,1,69,
64511330,1,70,1335,1,
645268,1325,1,74,1340,
64531,1013,1345,1,2335,
64541844,16,0,158,1,
64551332,1350,1,1048,1431,
64561,82,1367,1,1296,
64571253,1,1341,1384,1,
6458328,1389,1,1303,1394,
64591,1096,1399,1,93,
64601405,1,1550,1410,1,
6461352,1436,1,107,1425,
64621,1114,1430,1,1370,
64631539,1,118,1442,1,
64641123,1447,1,371,1452,
64651,1377,1458,1,375,
64661463,1,377,1468,1,
6467379,1473,1,380,1478,
64681,883,1484,1,373,
64691496,1,130,1501,1,
6470143,1506,1,1152,1512,
64711,387,1845,16,0,
6472639,1,1406,1517,1,
64731159,1524,1,157,1529,
64741,1413,1534,1,1665,
64751560,1,412,1846,16,
64760,652,1,1094,1847,
647716,0,678,1,172,
64781555,1,827,1418,1,
64791188,1565,1,437,1848,
648016,0,727,1,1442,
64811570,1,1694,1849,16,
64820,158,1,942,1576,
64831,1195,1582,1,1449,
64841587,1,1701,1592,1,
6485447,1597,1,188,1604,
64861,205,1609,1,2467,
64871850,17,1851,15,1821,
64881,-1,1,5,1852,
648920,1853,4,50,65,
64900,114,0,103,0,
6491117,0,109,0,101,
64920,110,0,116,0,
649368,0,101,0,99,
64940,108,0,97,0,
6495114,0,97,0,116,
64960,105,0,111,0,
6497110,0,76,0,105,
64980,115,0,116,0,
649995,0,49,0,1,
6500192,1,3,1,2,
65011,1,1854,22,1,
650234,1,461,1855,16,
65030,678,1,464,1856,
650417,1857,15,1832,1,
6505-1,1,5,1858,20,
65061859,4,28,65,0,
6507114,0,103,0,117,
65080,109,0,101,0,
6509110,0,116,0,76,
65100,105,0,115,0,
6511116,0,95,0,50,
65120,1,320,1,3,
65131,4,1,3,1860,
651422,1,163,1,2724,
65151861,17,1862,15,1821,
65161,-1,1,5,150,
65171,0,1,0,1822,
65181,1224,1614,1,223,
65191619,1,1730,1624,1,
6520476,1629,1,477,1635,
65211,1231,1640,1,479,
65221645,1,480,1650,1,
65231485,1656,1,459,1863,
652417,1864,15,1832,1,
6525-1,1,5,676,1,
65260,1,0,1833,1,
6527242,1664,1,478,1669,
65281,481,1865,17,1866,
652915,1832,1,-1,1,
65305,1867,20,1868,4,
653128,65,0,114,0,
6532103,0,117,0,109,
65330,101,0,110,0,
6534116,0,76,0,105,
65350,115,0,116,0,
653695,0,49,0,1,
6537319,1,3,1,2,
65381,1,1869,22,1,
6539162,1,1001,1674,1,
65402508,1870,17,1871,15,
65411872,4,30,37,0,
654273,0,110,0,116,
65430,68,0,101,0, 65490,68,0,101,0,
654499,0,108,0,97, 655099,0,108,0,97,
65450,114,0,97,0, 65510,114,0,97,0,
6546116,0,105,0,111, 6552116,0,105,0,111,
65470,110,0,1,-1, 65530,110,0,1,-1,
65481,5,1873,20,1874, 65541,5,1863,20,1864,
65494,32,73,0,110, 65554,32,82,0,111,
65500,116,0,68,0, 65560,116,0,68,0,
6551101,0,99,0,108, 6557101,0,99,0,108,
65520,97,0,114,0, 65580,97,0,114,0,
655397,0,116,0,105, 655997,0,116,0,105,
65540,111,0,110,0, 65600,111,0,110,0,
655595,0,49,0,1, 656195,0,49,0,1,
6556200,1,3,1,3, 6562209,1,3,1,3,
65571,2,1875,22,1, 65631,2,1865,22,1,
655842,1,2509,1876,16, 656448,1,2528,1866,16,
65590,451,1,15,1877, 65650,496,1,19,1252,
656019,314,1,15,1878, 65661,20,1867,16,0,
65615,6,1,2739,1879, 6567151,1,2281,1259,1,
656216,0,732,1,1114, 6568525,1321,1,30,1868,
65631880,16,0,312,1, 656917,1869,15,1856,1,
65641621,1881,16,0,726, 6570-1,1,5,1870,20,
65651,40,1882,16,0, 65711871,4,50,65,0,
6566632,1,19,1233,1, 6572114,0,103,0,117,
65679,1199,1,16,1883, 65730,109,0,101,0,
656819,136,1,16,1884, 6574110,0,116,0,68,
65695,144,1,256,1885, 65750,101,0,99,0,
657016,0,198,1,1261, 6576108,0,97,0,114,
65711886,16,0,198,1, 65770,97,0,116,0,
6572509,1887,16,0,198, 6578105,0,111,0,110,
65731,9,1888,16,0, 65790,76,0,105,0,
6574134,1,2521,1889,16, 6580115,0,116,0,95,
65750,466,1,2021,804, 65810,50,0,1,199,
65761,1775,1890,16,0, 65821,3,1,4,1,
6577198,1,2530,1891,16, 65833,1872,22,1,38,
65780,483,1,2029,811, 65841,1002,1696,1,283,
65791,2030,817,1,2031, 65851277,1,40,1282,1,
6580822,1,2032,827,1, 658641,1873,17,1874,15,
65812033,832,1,277,1892, 65871875,4,26,37,0,
658216,0,198,1,2035, 658865,0,114,0,103,
6583838,1,2538,1893,16, 65890,117,0,109,0,
65840,496,1,2037,843, 6590101,0,110,0,116,
65851,2039,848,1,32, 65910,76,0,105,0,
65861894,16,0,198,1, 6592115,0,116,0,1,
65872041,854,1,2293,1895, 6593-1,1,5,698,1,
658816,0,198,1,2043, 65940,1,0,1876,22,
6589860,1,2547,1896,16, 65951,165,1,42,1877,
65900,508,1,40,1897, 659617,1878,15,1879,4,
659116,0,177,1,41, 659738,37,0,69,0,
65921898,16,0,198,1, 6598120,0,112,0,114,
65931297,1899,16,0,198, 65990,101,0,115,0,
65941,43,1900,16,0, 6600115,0,105,0,111,
6595198,1,44,1901,16, 66010,110,0,65,0,
65960,177,1,1803,873, 6602114,0,103,0,117,
65971,1804,1902,16,0, 66030,109,0,101,0,
6598198,1,299,1903,16, 6604110,0,116,0,1,
65990,198,1,2480,1904, 6605-1,1,5,1880,20,
660017,1905,15,1906,4, 66061881,4,40,69,0,
6607120,0,112,0,114,
66080,101,0,115,0,
6609115,0,105,0,111,
66100,110,0,65,0,
6611114,0,103,0,117,
66120,109,0,101,0,
6613110,0,116,0,95,
66140,49,0,1,328,
66151,3,1,2,1,
66161,1882,22,1,168,
66171,44,1288,1,47,
66181289,1,48,1295,1,
661949,1301,1,50,1306,
66201,51,1311,1,305,
66211316,1,2567,1883,17,
66221884,15,1856,1,-1,
66231,5,149,1,0,
66241,0,1857,1,2576,
66251885,16,0,151,1,
662663,1327,1,66,1333,
66271,67,1338,1,1478,
66281562,1,69,1348,1,
662970,1353,1,68,1343,
66301,74,1358,1,1013,
66311363,1,2335,1886,16,
66320,157,1,1332,1368,
66331,1048,1449,1,82,
66341385,1,1296,1272,1,
66351341,1402,1,328,1407,
66361,1303,1412,1,1096,
66371417,1,93,1423,1,
66381550,1428,1,352,1454,
66391,107,1443,1,1114,
66401448,1,1370,1557,1,
6641118,1460,1,1123,1465,
66421,371,1470,1,1377,
66431476,1,375,1481,1,
6644377,1486,1,379,1491,
66451,380,1496,1,883,
66461502,1,373,1514,1,
6647130,1519,1,143,1524,
66481,1152,1530,1,387,
66491887,16,0,648,1,
66501406,1535,1,1159,1542,
66511,157,1547,1,1413,
66521552,1,1665,1578,1,
6653412,1888,16,0,673,
66541,1094,1889,16,0,
6655700,1,172,1573,1,
6656827,1436,1,1188,1583,
66571,437,1890,16,0,
6658748,1,1442,1588,1,
66591694,1891,16,0,157,
66601,942,1594,1,1195,
66611600,1,1449,1605,1,
66621701,1610,1,447,1615,
66631,188,1622,1,205,
66641627,1,2467,1892,17,
66651893,15,1856,1,-1,
66661,5,1894,20,1895,
66674,50,65,0,114,
66680,103,0,117,0,
6669109,0,101,0,110,
66700,116,0,68,0,
6671101,0,99,0,108,
66720,97,0,114,0,
667397,0,116,0,105,
66740,111,0,110,0,
667576,0,105,0,115,
66760,116,0,95,0,
667749,0,1,198,1,
66783,1,2,1,1,
66791896,22,1,37,1,
6680461,1897,16,0,700,
66811,464,1898,17,1899,
668215,1875,1,-1,1,
66835,1900,20,1901,4,
668428,65,0,114,0,
6685103,0,117,0,109,
66860,101,0,110,0,
6687116,0,76,0,105,
66880,115,0,116,0,
668995,0,50,0,1,
6690327,1,3,1,4,
66911,3,1902,22,1,
6692167,1,1224,1632,1,
6693223,1637,1,1730,1642,
66941,476,1647,1,477,
66951653,1,1231,1658,1,
6696479,1663,1,480,1668,
66971,1485,1674,1,2745,
66981903,17,1904,15,1856,
66991,-1,1,5,149,
67001,0,1,0,1857,
67011,459,1905,17,1906,
670215,1875,1,-1,1,
67035,698,1,0,1,
67040,1876,1,242,1681,
67051,478,1686,1,2754,
67061907,16,0,151,1,
6707481,1908,17,1909,15,
67081875,1,-1,1,5,
67091910,20,1911,4,28,
671065,0,114,0,103,
67110,117,0,109,0,
6712101,0,110,0,116,
67130,76,0,105,0,
6714115,0,116,0,95,
67150,49,0,1,326,
67161,3,1,2,1,
67171,1912,22,1,166,
67181,1001,1691,1,2508,
67191913,17,1914,15,1915,
67204,30,37,0,73,
67210,110,0,116,0,
672268,0,101,0,99,
67230,108,0,97,0,
6724114,0,97,0,116,
67250,105,0,111,0,
6726110,0,1,-1,1,
67275,1916,20,1917,4,
672832,73,0,110,0,
6729116,0,68,0,101,
67300,99,0,108,0,
673197,0,114,0,97,
67320,116,0,105,0,
6733111,0,110,0,95,
67340,49,0,1,207,
67351,3,1,3,1,
67362,1918,22,1,46,
67371,2509,1919,16,0,
6738470,1,15,1920,19,
6739212,1,15,1921,5,
67406,1,1114,1922,16,
67410,327,1,1621,1923,
674216,0,747,1,40,
67431924,16,0,641,1,
674419,1252,1,9,1218,
67451,2760,1925,16,0,
6746210,1,16,1926,19,
6747136,1,16,1927,5,
6748145,1,2761,1928,16,
67490,202,1,256,1929,
675016,0,202,1,1261,
67511930,16,0,202,1,
6752509,1931,16,0,202,
67531,9,1932,16,0,
6754134,1,2521,1933,16,
67550,488,1,2021,823,
67561,1775,1934,16,0,
6757202,1,2029,830,1,
67582030,836,1,2031,841,
67591,2032,846,1,2033,
6760851,1,277,1935,16,
67610,202,1,2035,857,
67621,2037,862,1,2039,
6763867,1,32,1936,16,
67640,202,1,2041,873,
67651,2293,1937,16,0,
6766202,1,2043,879,1,
67672045,884,1,40,1938,
676816,0,181,1,41,
67691939,16,0,202,1,
67701297,1940,16,0,202,
67711,43,1941,16,0,
6772202,1,44,1942,16,
67730,181,1,1803,892,
67741,1804,1943,16,0,
6775202,1,299,1944,16,
67760,202,1,2480,1945,
677717,1946,15,1947,4,
660124,37,0,73,0, 677824,37,0,73,0,
6602110,0,116,0,65, 6779110,0,116,0,65,
66030,114,0,103,0, 67800,114,0,103,0,
660469,0,118,0,101, 678169,0,118,0,101,
66050,110,0,116,0, 67820,110,0,116,0,
66061,-1,1,5,1907, 67831,-1,1,5,1948,
660720,1908,4,26,73, 678420,1949,4,26,73,
66080,110,0,116,0, 67850,110,0,116,0,
660965,0,114,0,103, 678665,0,114,0,103,
66100,69,0,118,0, 67870,69,0,118,0,
6611101,0,110,0,116, 6788101,0,110,0,116,
66120,95,0,53,0, 67890,95,0,54,0,
66131,353,1,3,1, 67901,360,1,3,1,
66142,1,1,1909,22, 67912,1,1,1950,22,
66151,196,1,52,1910, 67921,200,1,2561,1951,
661616,0,198,1,2484, 679316,0,539,1,52,
66171911,17,1912,15,1906, 67941952,16,0,202,1,
66181,-1,1,5,1913, 67952484,1953,17,1954,15,
661920,1914,4,26,73, 67961947,1,-1,1,5,
66200,110,0,116,0, 67971955,20,1956,4,26,
679873,0,110,0,116,
67990,65,0,114,0,
6800103,0,69,0,118,
68010,101,0,110,0,
6802116,0,95,0,50,
68030,1,356,1,3,
68041,2,1,1,1957,
680522,1,196,1,2566,
68061958,16,0,667,1,
68071515,1959,16,0,202,
68081,2318,1960,16,0,
6809202,1,2491,1961,17,
68101962,15,1963,4,26,
681137,0,86,0,111,
68120,105,0,100,0,
662165,0,114,0,103, 681365,0,114,0,103,
66220,69,0,118,0, 68140,69,0,118,0,
6623101,0,110,0,116, 6815101,0,110,0,116,
66240,95,0,49,0, 68160,1,-1,1,5,
66251,349,1,3,1, 68171964,20,1965,4,28,
66262,1,1,1915,22,
66271,192,1,1515,1916,
662816,0,198,1,2318,
66291917,16,0,198,1,
66302491,1918,17,1919,15,
66311920,4,26,37,0,
663286,0,111,0,105, 681886,0,111,0,105,
66330,100,0,65,0, 68190,100,0,65,0,
6634114,0,103,0,69, 6820114,0,103,0,69,
66350,118,0,101,0, 68210,118,0,101,0,
6636110,0,116,0,1, 6822110,0,116,0,95,
6637-1,1,5,1921,20, 68230,53,0,1,349,
66381922,4,28,86,0, 68241,3,1,2,1,
68251,1966,22,1,189,
68261,62,1967,16,0,
6827219,1,63,1968,16,
68280,181,1,2495,1969,
682917,1970,15,1963,1,
6830-1,1,5,1971,20,
68311972,4,28,86,0,
6639111,0,105,0,100, 6832111,0,105,0,100,
66400,65,0,114,0, 68330,65,0,114,0,
6641103,0,69,0,118, 6834103,0,69,0,118,
66420,101,0,110,0, 68350,101,0,110,0,
6643116,0,95,0,52, 6836116,0,95,0,49,
66440,1,342,1,3, 68370,1,345,1,3,
66451,2,1,1,1923, 68381,2,1,1,1973,
664622,1,185,1,62, 683922,1,185,1,2075,
66471924,16,0,213,1, 68401974,16,0,202,1,
664863,1925,16,0,177, 68411574,904,1,1479,1975,
66491,2495,1926,17,1927, 684216,0,202,1,71,
665015,1928,4,12,37, 68431976,16,0,202,1,
66510,69,0,118,0, 68441658,1977,16,0,776,
6652101,0,110,0,116, 68451,1833,1978,16,0,
66530,1,-1,1,5, 6846318,1,1834,1979,16,
66541929,20,1930,4,16, 68470,202,1,2337,1980,
665569,0,118,0,101, 684816,0,202,1,79,
66560,110,0,116,0, 68491981,16,0,202,1,
665795,0,49,0,48, 68501335,1982,16,0,202,
66580,1,338,1,3, 68511,322,1983,16,0,
66591,2,1,1,1931, 6852202,1,76,1984,16,
666022,1,181,1,2740, 68530,202,1,85,1985,
66611932,16,0,198,1, 685416,0,202,1,89,
66622075,1933,16,0,198, 68551986,16,0,202,1,
66631,1574,885,1,1479, 6856346,1987,16,0,202,
66641934,16,0,198,1, 68571,97,1988,16,0,
666571,1935,16,0,198, 6858202,1,2106,1989,16,
66661,1658,1936,16,0, 68590,202,1,102,1990,
6667753,1,1833,1937,16, 686016,0,202,1,1860,
66680,304,1,1834,1938, 6861926,1,2458,980,1,
666916,0,198,1,2337, 68622364,932,1,2536,1991,
66701939,16,0,198,1, 686316,0,631,1,1990,
667179,1940,16,0,198, 68641992,16,0,202,1,
66721,1335,1941,16,0, 6865112,1993,16,0,202,
6673198,1,322,1942,16, 68661,1117,1994,16,0,
66740,198,1,76,1943, 6867202,1,2544,1995,16,
667516,0,198,1,85, 68680,517,1,1873,940,
66761944,16,0,198,1, 68691,1875,1996,16,0,
667789,1945,16,0,198, 6870433,1,1876,1997,16,
66781,346,1946,16,0, 68710,202,1,2552,1998,
6679198,1,97,1947,16, 687216,0,529,1,124,
66800,198,1,2106,1948, 68731999,16,0,202,1,
668116,0,198,1,102, 68742478,2000,17,2001,15,
66821949,16,0,198,1, 68751947,1,-1,1,5,
66831860,907,1,2458,961, 68762002,20,2003,4,26,
66841,2364,913,1,1990,
66851950,16,0,198,1,
6686112,1951,16,0,198,
66871,1117,1952,16,0,
6688198,1,1873,921,1,
66891875,1953,16,0,412,
66901,1876,1954,16,0,
6691198,1,2552,1955,16,
66920,513,1,124,1956,
669316,0,198,1,2478,
66941957,17,1958,15,1906,
66951,-1,1,5,1959,
669620,1960,4,26,73,
66970,110,0,116,0,
669865,0,114,0,103,
66990,69,0,118,0,
6700101,0,110,0,116,
67010,95,0,55,0,
67021,355,1,3,1,
67032,1,1,1961,22,
67041,198,1,2136,928,
67051,381,1962,16,0,
6706198,1,525,1963,16,
67070,198,1,2723,1964,
670816,0,715,1,137,
67091965,16,0,198,1,
67101901,1966,16,0,198,
67111,1153,1967,16,0,
6712198,1,151,1968,16,
67130,198,1,1407,1969,
671416,0,198,1,1659,
67151970,16,0,198,1,
67162413,1971,16,0,198,
67171,406,1972,16,0,
6718198,1,1371,1973,16,
67190,198,1,2105,900,
67201,166,1974,16,0,
6721198,1,2045,865,1,
67221622,1975,16,0,198,
67231,1931,946,1,1932,
67241976,16,0,512,1,
67251933,1977,16,0,198,
67261,431,1978,16,0,
6727198,1,1585,1979,16,
67280,198,1,182,1980,
672916,0,198,1,1189,
67301981,16,0,198,1,
67311443,1982,16,0,198,
67321,1695,1983,16,0,
6733198,1,2198,1984,16,
67340,198,1,447,1985,
673516,0,198,1,199,
67361986,16,0,198,1,
67372459,967,1,1958,1987,
673816,0,198,1,2462,
6739974,1,1657,979,1,
67402464,984,1,459,1988,
674116,0,198,1,462,
67421989,16,0,198,1,
67432471,1990,17,1991,15,
67441992,4,36,37,0,
674573,0,110,0,116, 687773,0,110,0,116,
67460,82,0,111,0,
6747116,0,82,0,111,
67480,116,0,65,0,
6749114,0,103,0,69,
67500,118,0,101,0,
6751110,0,116,0,1,
6752-1,1,5,1993,20,
67531994,4,38,73,0,
6754110,0,116,0,82,
67550,111,0,116,0,
675682,0,111,0,116,
67570,65,0,114,0, 68780,65,0,114,0,
6758103,0,69,0,118, 6879103,0,69,0,118,
67590,101,0,110,0, 68800,101,0,110,0,
6760116,0,95,0,49, 6881116,0,95,0,56,
67610,1,362,1,3, 68820,1,362,1,3,
67621,2,1,1,1995, 68831,2,1,1,2004,
676322,1,205,1,2472, 688422,1,202,1,2136,
67641996,17,1997,15,1998, 6885947,1,381,2005,16,
67654,30,37,0,86, 68860,202,1,525,2006,
688716,0,202,1,137,
68882007,16,0,202,1,
68892493,2008,17,2009,15,
68901963,1,-1,1,5,
68912010,20,2011,4,28,
689286,0,111,0,105,
68930,100,0,65,0,
6894114,0,103,0,69,
68950,118,0,101,0,
6896110,0,116,0,95,
68970,51,0,1,347,
68981,3,1,2,1,
68991,2012,22,1,187,
69001,1901,2013,16,0,
6901202,1,1153,2014,16,
69020,202,1,151,2015,
690316,0,202,1,1407,
69042016,16,0,202,1,
69051659,2017,16,0,202,
69061,2413,2018,16,0,
6907202,1,406,2019,16,
69080,202,1,1371,2020,
690916,0,202,1,2105,
6910919,1,166,2021,16,
69110,202,1,1622,2022,
691216,0,202,1,1931,
6913965,1,1932,2023,16,
69140,528,1,1933,2024,
691516,0,202,1,431,
69162025,16,0,202,1,
69171585,2026,16,0,202,
69181,182,2027,16,0,
6919202,1,1189,2028,16,
69200,202,1,1443,2029,
692116,0,202,1,1695,
69222030,16,0,202,1,
69232198,2031,16,0,202,
69241,447,2032,16,0,
6925202,1,199,2033,16,
69260,202,1,2459,986,
69271,1958,2034,16,0,
6928202,1,2462,993,1,
69291657,998,1,2464,1003,
69301,459,2035,16,0,
6931202,1,462,2036,16,
69320,202,1,2471,2037,
693317,2038,15,2039,4,
693436,37,0,73,0,
6935110,0,116,0,86,
67660,101,0,99,0, 69360,101,0,99,0,
6767116,0,111,0,114, 693786,0,101,0,99,
67680,65,0,114,0, 69380,65,0,114,0,
6769103,0,69,0,118, 6939103,0,69,0,118,
67700,101,0,110,0, 69400,101,0,110,0,
6771116,0,1,-1,1, 6941116,0,1,-1,1,
67725,1999,20,2000,4, 69425,2040,20,2041,4,
677332,86,0,101,0, 694338,73,0,110,0,
677499,0,116,0,111, 6944116,0,86,0,101,
67750,114,0,65,0, 69450,99,0,86,0,
6776114,0,103,0,69, 6946101,0,99,0,65,
67770,118,0,101,0, 69470,114,0,103,0,
6778110,0,116,0,95, 694869,0,118,0,101,
67790,51,0,1,361, 69490,110,0,116,0,
67801,3,1,2,1, 695095,0,49,0,1,
67811,2001,22,1,204, 6951369,1,3,1,2,
67821,2473,2002,17,2003, 69521,1,2042,22,1,
678315,1998,1,-1,1, 6953209,1,2472,2043,17,
67845,2004,20,2005,4, 69542044,15,2045,4,36,
678532,86,0,101,0, 695537,0,73,0,110,
678699,0,116,0,111, 69560,116,0,82,0,
67870,114,0,65,0, 6957111,0,116,0,82,
69580,111,0,116,0,
695965,0,114,0,103,
69600,69,0,118,0,
6961101,0,110,0,116,
69620,1,-1,1,5,
69632046,20,2047,4,38,
696473,0,110,0,116,
69650,82,0,111,0,
6966116,0,82,0,111,
69670,116,0,65,0,
6788114,0,103,0,69, 6968114,0,103,0,69,
67890,118,0,101,0, 69690,118,0,101,0,
6790110,0,116,0,95, 6970110,0,116,0,95,
67910,50,0,1,360, 69710,49,0,1,368,
67921,3,1,2,1, 69721,3,1,2,1,
67931,2006,22,1,203, 69731,2048,22,1,208,
67941,2474,2007,17,2008, 69741,2473,2049,17,2050,
679515,1998,1,-1,1, 697515,2051,4,30,37,
67965,2009,20,2010,4, 69760,86,0,101,0,
679732,86,0,101,0,
679899,0,116,0,111, 697799,0,116,0,111,
67990,114,0,65,0, 69780,114,0,65,0,
6800114,0,103,0,69, 6979114,0,103,0,69,
68010,118,0,101,0, 69800,118,0,101,0,
6802110,0,116,0,95, 6981110,0,116,0,1,
68030,49,0,1,359, 6982-1,1,5,2052,20,
68041,3,1,2,1, 69832053,4,32,86,0,
68051,2011,22,1,202, 6984101,0,99,0,116,
68061,2475,2012,17,2013, 69850,111,0,114,0,
680715,1906,1,-1,1, 698665,0,114,0,103,
68085,2014,20,2015,4, 69870,69,0,118,0,
680928,73,0,110,0, 6988101,0,110,0,116,
6810116,0,65,0,114, 69890,95,0,51,0,
68110,103,0,69,0, 69901,367,1,3,1,
6812118,0,101,0,110, 69912,1,1,2054,22,
68130,116,0,95,0, 69921,207,1,2474,2055,
681449,0,48,0,1, 699317,2056,15,2051,1,
6815358,1,3,1,2, 6994-1,1,5,2057,20,
68161,1,2016,22,1, 69952058,4,32,86,0,
6817201,1,2476,2017,17, 6996101,0,99,0,116,
68182018,15,1906,1,-1, 69970,111,0,114,0,
68191,5,2019,20,2020, 699865,0,114,0,103,
68204,26,73,0,110, 69990,69,0,118,0,
68210,116,0,65,0, 7000101,0,110,0,116,
6822114,0,103,0,69, 70010,95,0,50,0,
68230,118,0,101,0, 70021,366,1,3,1,
6824110,0,116,0,95, 70032,1,1,2059,22,
68250,57,0,1,357, 70041,206,1,2475,2060,
68261,3,1,2,1, 700517,2061,15,2051,1,
68271,2021,22,1,200, 7006-1,1,5,2062,20,
68281,2477,2022,17,2023, 70072063,4,32,86,0,
682915,1906,1,-1,1, 7008101,0,99,0,116,
68305,2024,20,2025,4, 70090,111,0,114,0,
683126,73,0,110,0, 701065,0,114,0,103,
6832116,0,65,0,114, 70110,69,0,118,0,
68330,103,0,69,0, 7012101,0,110,0,116,
6834118,0,101,0,110, 70130,95,0,49,0,
68350,116,0,95,0, 70141,365,1,3,1,
683656,0,1,356,1, 70152,1,1,2064,22,
68373,1,2,1,1, 70161,205,1,2476,2065,
68382026,22,1,199,1, 701717,2066,15,1947,1,
68392227,993,1,2479,2027, 7018-1,1,5,2067,20,
684017,2028,15,1906,1, 70192068,4,28,73,0,
6841-1,1,5,2029,20,
68422030,4,26,73,0,
6843110,0,116,0,65, 7020110,0,116,0,65,
68440,114,0,103,0, 70210,114,0,103,0,
684569,0,118,0,101, 702269,0,118,0,101,
68460,110,0,116,0, 70230,110,0,116,0,
684795,0,54,0,1, 702495,0,49,0,48,
6848354,1,3,1,2, 70250,1,364,1,3,
68491,1,2031,22,1, 70261,2,1,1,2069,
6850197,1,1225,2032,16, 702722,1,204,1,2477,
68510,198,1,2481,2033, 70282070,17,2071,15,1947,
685217,2034,15,1906,1, 70291,-1,1,5,2072,
6853-1,1,5,2035,20, 703020,2073,4,26,73,
68542036,4,26,73,0,
6855110,0,116,0,65,
68560,114,0,103,0,
685769,0,118,0,101,
68580,110,0,116,0, 70310,110,0,116,0,
685995,0,52,0,1, 703265,0,114,0,103,
6860352,1,3,1,2, 70330,69,0,118,0,
68611,1,2037,22,1, 7034101,0,110,0,116,
6862195,1,2482,2038,17, 70350,95,0,57,0,
68632039,15,1906,1,-1, 70361,363,1,3,1,
68641,5,2040,20,2041, 70372,1,1,2074,22,
68654,26,73,0,110, 70381,203,1,2227,1012,
68660,116,0,65,0, 70391,2479,2075,17,2076,
6867114,0,103,0,69, 704015,1947,1,-1,1,
68680,118,0,101,0, 70415,2077,20,2078,4,
6869110,0,116,0,95,
68700,51,0,1,351,
68711,3,1,2,1,
68721,2042,22,1,194,
68731,2483,2043,17,2044,
687415,1906,1,-1,1,
68755,2045,20,2046,4,
687626,73,0,110,0, 704226,73,0,110,0,
6877116,0,65,0,114, 7043116,0,65,0,114,
68780,103,0,69,0, 70440,103,0,69,0,
6879118,0,101,0,110, 7045118,0,101,0,110,
68800,116,0,95,0, 70460,116,0,95,0,
688150,0,1,350,1, 704755,0,1,361,1,
68823,1,2,1,1, 70483,1,2,1,1,
68832047,22,1,193,1, 70492079,22,1,201,1,
68841731,2048,16,0,198, 70501225,2080,16,0,202,
68851,2485,2049,17,2050, 70511,2481,2081,17,2082,
688615,2051,4,24,37, 705215,1947,1,-1,1,
68870,75,0,101,0, 70535,2083,20,2084,4,
6888121,0,65,0,114, 705426,73,0,110,0,
68890,103,0,69,0, 7055116,0,65,0,114,
6890118,0,101,0,110,
68910,116,0,1,-1,
68921,5,2052,20,2053,
68934,26,75,0,101,
68940,121,0,65,0,
6895114,0,103,0,69,
68960,118,0,101,0,
6897110,0,116,0,95,
68980,50,0,1,348,
68991,3,1,2,1,
69001,2054,22,1,191,
69011,2486,2055,17,2056,
690215,2051,1,-1,1,
69035,2057,20,2058,4,
690426,75,0,101,0,
6905121,0,65,0,114,
69060,103,0,69,0, 70560,103,0,69,0,
6907118,0,101,0,110, 7057118,0,101,0,110,
69080,116,0,95,0, 70580,116,0,95,0,
690949,0,1,347,1, 705953,0,1,359,1,
69103,1,2,1,1, 70603,1,2,1,1,
69112059,22,1,190,1, 70612085,22,1,199,1,
69122487,2060,17,2061,15, 70622482,2086,17,2087,15,
69131920,1,-1,1,5, 70631947,1,-1,1,5,
69142062,20,2063,4,28, 70642088,20,2089,4,26,
691586,0,111,0,105, 706573,0,110,0,116,
69160,100,0,65,0, 70660,65,0,114,0,
6917114,0,103,0,69, 7067103,0,69,0,118,
69180,118,0,101,0, 70680,101,0,110,0,
6919110,0,116,0,95, 7069116,0,95,0,52,
69200,56,0,1,346, 70700,1,358,1,3,
69211,3,1,2,1, 70711,2,1,1,2090,
69221,2064,22,1,189, 707222,1,198,1,2483,
69231,2488,2065,17,2066, 70732091,17,2092,15,1947,
692415,1920,1,-1,1, 70741,-1,1,5,2093,
69255,2067,20,2068,4, 707520,2094,4,26,73,
692628,86,0,111,0, 70760,110,0,116,0,
6927105,0,100,0,65, 707765,0,114,0,103,
70780,69,0,118,0,
7079101,0,110,0,116,
70800,95,0,51,0,
70811,357,1,3,1,
70822,1,1,2095,22,
70831,197,1,1731,2096,
708416,0,202,1,2485,
70852097,17,2098,15,1947,
70861,-1,1,5,2099,
708720,2100,4,26,73,
70880,110,0,116,0,
708965,0,114,0,103,
70900,69,0,118,0,
7091101,0,110,0,116,
70920,95,0,49,0,
70931,355,1,3,1,
70942,1,1,2101,22,
70951,195,1,2486,2102,
709617,2103,15,2104,4,
709724,37,0,75,0,
7098101,0,121,0,65,
69280,114,0,103,0, 70990,114,0,103,0,
692969,0,118,0,101, 710069,0,118,0,101,
69300,110,0,116,0, 71010,110,0,116,0,
693195,0,55,0,1, 71021,-1,1,5,2105,
6932345,1,3,1,2, 710320,2106,4,26,75,
69331,1,2069,22,1, 71040,101,0,121,0,
6934188,1,2489,2070,17,
69352071,15,1920,1,-1,
69361,5,2072,20,2073,
69374,28,86,0,111,
69380,105,0,100,0,
693965,0,114,0,103, 710565,0,114,0,103,
69400,69,0,118,0, 71060,69,0,118,0,
6941101,0,110,0,116, 7107101,0,110,0,116,
69420,95,0,54,0, 71080,95,0,50,0,
69431,344,1,3,1, 71091,354,1,3,1,
69442,1,1,2074,22, 71102,1,1,2107,22,
69451,187,1,2490,2075, 71111,194,1,2487,2108,
694617,2076,15,1920,1, 711217,2109,15,2104,1,
6947-1,1,5,2077,20, 7113-1,1,5,2110,20,
69482078,4,28,86,0, 71142111,4,26,75,0,
6949111,0,105,0,100, 7115101,0,121,0,65,
69500,65,0,114,0, 71160,114,0,103,0,
6951103,0,69,0,118, 711769,0,118,0,101,
69520,101,0,110,0, 71180,110,0,116,0,
6953116,0,95,0,53, 711995,0,49,0,1,
69540,1,343,1,3, 7120353,1,3,1,2,
69551,2,1,1,2079, 71211,1,2112,22,1,
695622,1,186,1,1989, 7122193,1,2488,2113,17,
69571002,1,2492,2080,17, 71232114,15,1963,1,-1,
69582081,15,1920,1,-1, 71241,5,2115,20,2116,
69591,5,2082,20,2083,
69604,28,86,0,111, 71254,28,86,0,111,
69610,105,0,100,0, 71260,105,0,100,0,
696265,0,114,0,103, 712765,0,114,0,103,
69630,69,0,118,0, 71280,69,0,118,0,
6964101,0,110,0,116, 7129101,0,110,0,116,
69650,95,0,51,0, 71300,95,0,56,0,
69661,341,1,3,1, 71311,352,1,3,1,
69672,1,1,2084,22, 71322,1,1,2117,22,
69681,184,1,2493,2085, 71331,192,1,2489,2118,
696917,2086,15,1920,1, 713417,2119,15,1963,1,
6970-1,1,5,2087,20, 7135-1,1,5,2120,20,
69712088,4,28,86,0, 71362121,4,28,86,0,
6972111,0,105,0,100, 7137111,0,105,0,100,
69730,65,0,114,0, 71380,65,0,114,0,
6974103,0,69,0,118, 7139103,0,69,0,118,
69750,101,0,110,0, 71400,101,0,110,0,
6976116,0,95,0,50, 7141116,0,95,0,55,
69770,1,340,1,3, 71420,1,351,1,3,
69781,2,1,1,2089, 71431,2,1,1,2122,
697922,1,183,1,2494, 714422,1,191,1,2490,
69802090,17,2091,15,1920, 71452123,17,2124,15,1963,
69811,-1,1,5,2092, 71461,-1,1,5,2125,
698220,2093,4,28,86, 714720,2126,4,28,86,
69830,111,0,105,0, 71480,111,0,105,0,
6984100,0,65,0,114, 7149100,0,65,0,114,
69850,103,0,69,0, 71500,103,0,69,0,
6986118,0,101,0,110, 7151118,0,101,0,110,
69870,116,0,95,0, 71520,116,0,95,0,
698849,0,1,339,1, 715354,0,1,350,1,
69893,1,2,1,1, 71543,1,2,1,1,
69902094,22,1,182,1, 71552127,22,1,190,1,
6991236,2095,16,0,198, 71561989,1020,1,2492,2128,
69921,2496,2096,17,2097, 715717,2129,15,1963,1,
699315,1928,1,-1,1, 7158-1,1,5,2130,20,
69945,2098,20,2099,4, 71592131,4,28,86,0,
7160111,0,105,0,100,
71610,65,0,114,0,
7162103,0,69,0,118,
71630,101,0,110,0,
7164116,0,95,0,52,
71650,1,348,1,3,
71661,2,1,1,2132,
716722,1,188,1,2744,
71682133,16,0,286,1,
71692494,2134,17,2135,15,
71701963,1,-1,1,5,
71712136,20,2137,4,28,
717286,0,111,0,105,
71730,100,0,65,0,
7174114,0,103,0,69,
71750,118,0,101,0,
7176110,0,116,0,95,
71770,50,0,1,346,
71781,3,1,2,1,
71791,2138,22,1,186,
71801,236,2139,16,0,
7181202,1,2496,2140,17,
71822141,15,2142,4,12,
718337,0,69,0,118,
71840,101,0,110,0,
7185116,0,1,-1,1,
71865,2143,20,2144,4,
699514,69,0,118,0, 718714,69,0,118,0,
6996101,0,110,0,116, 7188101,0,110,0,116,
69970,95,0,57,0, 71890,95,0,57,0,
69981,337,1,3,1, 71901,344,1,3,1,
69992,1,1,2100,22, 71912,1,1,2145,22,
70001,180,1,2497,2101, 71921,184,1,2497,2146,
700117,2102,15,1928,1, 719317,2147,15,2142,1,
7002-1,1,5,2103,20, 7194-1,1,5,2148,20,
70032104,4,14,69,0, 71952149,4,14,69,0,
7004118,0,101,0,110, 7196118,0,101,0,110,
70050,116,0,95,0, 71970,116,0,95,0,
700656,0,1,336,1, 719856,0,1,343,1,
70073,1,2,1,1, 71993,1,2,1,1,
70082105,22,1,179,1, 72002150,22,1,183,1,
70092498,2106,17,2107,15, 72012498,2151,17,2152,15,
70101928,1,-1,1,5, 72022142,1,-1,1,5,
70112108,20,2109,4,14, 72032153,20,2154,4,14,
701269,0,118,0,101, 720469,0,118,0,101,
70130,110,0,116,0, 72050,110,0,116,0,
701495,0,55,0,1, 720695,0,55,0,1,
7015335,1,3,1,2, 7207342,1,3,1,2,
70161,1,2110,22,1, 72081,1,2155,22,1,
7017178,1,2499,2111,17, 7209182,1,2499,2156,17,
70182112,15,1928,1,-1, 72102157,15,2142,1,-1,
70191,5,2113,20,2114, 72111,5,2158,20,2159,
70204,14,69,0,118, 72124,14,69,0,118,
70210,101,0,110,0, 72130,101,0,110,0,
7022116,0,95,0,54, 7214116,0,95,0,54,
70230,1,334,1,3, 72150,1,341,1,3,
70241,2,1,1,2115, 72161,2,1,1,2160,
702522,1,177,1,2500, 721722,1,181,1,2500,
70262116,17,2117,15,1928, 72182161,17,2162,15,2142,
70271,-1,1,5,2118, 72191,-1,1,5,2163,
702820,2119,4,14,69, 722020,2164,4,14,69,
70290,118,0,101,0, 72210,118,0,101,0,
7030110,0,116,0,95, 7222110,0,116,0,95,
70310,53,0,1,333, 72230,53,0,1,340,
70321,3,1,2,1, 72241,3,1,2,1,
70331,2120,22,1,176, 72251,2165,22,1,180,
70341,2501,2121,17,2122, 72261,2501,2166,17,2167,
703515,1928,1,-1,1, 722715,2142,1,-1,1,
70365,2123,20,2124,4, 72285,2168,20,2169,4,
703714,69,0,118,0, 722914,69,0,118,0,
7038101,0,110,0,116, 7230101,0,110,0,116,
70390,95,0,52,0, 72310,95,0,52,0,
70401,332,1,3,1, 72321,339,1,3,1,
70412,1,1,2125,22, 72332,1,1,2170,22,
70421,175,1,2502,2126, 72341,179,1,2502,2171,
704317,2127,15,1928,1, 723517,2172,15,2142,1,
7044-1,1,5,2128,20, 7236-1,1,5,2173,20,
70452129,4,14,69,0, 72372174,4,14,69,0,
7046118,0,101,0,110, 7238118,0,101,0,110,
70470,116,0,95,0, 72390,116,0,95,0,
704851,0,1,331,1, 724051,0,1,338,1,
70493,1,2,1,1, 72413,1,2,1,1,
70502130,22,1,174,1, 72422175,22,1,178,1,
70512503,2131,17,2132,15, 72432503,2176,17,2177,15,
70521928,1,-1,1,5, 72442142,1,-1,1,5,
70532133,20,2134,4,14, 72452178,20,2179,4,14,
705469,0,118,0,101, 724669,0,118,0,101,
70550,110,0,116,0, 72470,110,0,116,0,
705695,0,50,0,1, 724895,0,50,0,1,
7057330,1,3,1,2, 7249337,1,3,1,2,
70581,1,2135,22,1, 72501,1,2180,22,1,
7059173,1,2504,2136,17, 7251177,1,2504,2181,17,
70602137,15,1928,1,-1, 72522182,15,2142,1,-1,
70611,5,2138,20,2139, 72531,5,2183,20,2184,
70624,14,69,0,118, 72544,14,69,0,118,
70630,101,0,110,0, 72550,101,0,110,0,
7064116,0,95,0,49, 7256116,0,95,0,49,
70650,1,329,1,3, 72570,1,336,1,3,
70661,2,1,1,2140, 72581,2,1,1,2185,
706722,1,172,1,2505, 725922,1,176,1,2505,
70682141,16,0,445,1, 72602186,16,0,466,1,
7069217,2142,16,0,198, 7261217,2187,16,0,202,
70701,1756,2143,16,0, 72621,1756,2188,16,0,
7071198,1,17,2144,19, 7263202,1,17,2189,19,
7072164,1,17,2145,5, 7264163,1,17,2190,5,
7073130,1,1,2146,17, 7265132,1,1,2191,17,
70742147,15,2148,4,18, 72662192,15,2193,4,18,
707537,0,84,0,121, 726737,0,84,0,121,
70760,112,0,101,0, 72680,112,0,101,0,
7077110,0,97,0,109, 7269110,0,97,0,109,
70780,101,0,1,-1, 72700,101,0,1,-1,
70791,5,2149,20,2150, 72711,5,2194,20,2195,
70804,20,84,0,121, 72724,20,84,0,121,
70810,112,0,101,0, 72730,112,0,101,0,
7082110,0,97,0,109, 7274110,0,97,0,109,
70830,101,0,95,0, 72750,101,0,95,0,
708455,0,1,328,1, 727655,0,1,335,1,
70853,1,2,1,1, 72773,1,2,1,1,
70862151,22,1,171,1, 72782196,22,1,175,1,
70872,2152,17,2153,15, 72792,2197,17,2198,15,
70882148,1,-1,1,5, 72802193,1,-1,1,5,
70892154,20,2155,4,20, 72812199,20,2200,4,20,
709084,0,121,0,112, 728284,0,121,0,112,
70910,101,0,110,0, 72830,101,0,110,0,
709297,0,109,0,101, 728497,0,109,0,101,
70930,95,0,54,0, 72850,95,0,54,0,
70941,327,1,3,1, 72861,334,1,3,1,
70952,1,1,2156,22, 72872,1,1,2201,22,
70961,170,1,3,2157, 72881,174,1,3,2202,
709717,2158,15,2148,1, 728917,2203,15,2193,1,
7098-1,1,5,2159,20, 7290-1,1,5,2204,20,
70992160,4,20,84,0, 72912205,4,20,84,0,
7100121,0,112,0,101, 7292121,0,112,0,101,
71010,110,0,97,0, 72930,110,0,97,0,
7102109,0,101,0,95, 7294109,0,101,0,95,
71030,53,0,1,326, 72950,53,0,1,333,
71041,3,1,2,1, 72961,3,1,2,1,
71051,2161,22,1,169, 72971,2206,22,1,173,
71061,4,2162,17,2163, 72981,4,2207,17,2208,
710715,2148,1,-1,1, 729915,2193,1,-1,1,
71085,2164,20,2165,4, 73005,2209,20,2210,4,
710920,84,0,121,0, 730120,84,0,121,0,
7110112,0,101,0,110, 7302112,0,101,0,110,
71110,97,0,109,0, 73030,97,0,109,0,
7112101,0,95,0,52, 7304101,0,95,0,52,
71130,1,325,1,3, 73050,1,332,1,3,
71141,2,1,1,2166, 73061,2,1,1,2211,
711522,1,168,1,5, 730722,1,172,1,5,
71162167,17,2168,15,2148, 73082212,17,2213,15,2193,
71171,-1,1,5,2169, 73091,-1,1,5,2214,
711820,2170,4,20,84, 731020,2215,4,20,84,
71190,121,0,112,0, 73110,121,0,112,0,
7120101,0,110,0,97, 7312101,0,110,0,97,
71210,109,0,101,0, 73130,109,0,101,0,
712295,0,51,0,1, 731495,0,51,0,1,
7123324,1,3,1,2, 7315331,1,3,1,2,
71241,1,2171,22,1, 73161,1,2216,22,1,
7125167,1,6,2172,17, 7317171,1,6,2217,17,
71262173,15,2148,1,-1, 73182218,15,2193,1,-1,
71271,5,2174,20,2175, 73191,5,2219,20,2220,
71284,20,84,0,121, 73204,20,84,0,121,
71290,112,0,101,0, 73210,112,0,101,0,
7130110,0,97,0,109, 7322110,0,97,0,109,
71310,101,0,95,0, 73230,101,0,95,0,
713250,0,1,323,1, 732450,0,1,330,1,
71333,1,2,1,1, 73253,1,2,1,1,
71342176,22,1,166,1, 73262221,22,1,170,1,
71357,2177,17,2178,15, 73277,2222,17,2223,15,
71362148,1,-1,1,5, 73282193,1,-1,1,5,
71372179,20,2180,4,20, 73292224,20,2225,4,20,
713884,0,121,0,112, 733084,0,121,0,112,
71390,101,0,110,0, 73310,101,0,110,0,
714097,0,109,0,101, 733297,0,109,0,101,
71410,95,0,49,0, 73330,95,0,49,0,
71421,322,1,3,1, 73341,329,1,3,1,
71432,1,1,2181,22, 73352,1,1,2226,22,
71441,165,1,1514,1194, 73361,169,1,1514,1213,
71451,9,1199,1,10, 73371,9,1218,1,10,
71461819,1,262,1205,1, 73381854,1,262,1224,1,
71471267,1211,1,2524,2182, 73391267,1230,1,1521,1235,
714817,2183,15,2184,4, 73401,1773,2227,16,0,
714936,37,0,86,0, 7341255,1,2527,1860,1,
7150101,0,99,0,116, 734219,1252,1,20,2228,
71510,111,0,114,0, 734316,0,161,1,2531,
715268,0,101,0,99, 73442229,17,2230,15,2231,
71530,108,0,97,0, 73454,66,37,0,73,
7154114,0,97,0,116, 73460,110,0,116,0,
71550,105,0,111,0, 734782,0,111,0,116,
7156110,0,1,-1,1, 73480,82,0,111,0,
71575,2185,20,2186,4, 7349116,0,65,0,114,
715838,86,0,101,0, 73500,103,0,117,0,
715999,0,116,0,111, 7351109,0,101,0,110,
71600,114,0,68,0, 73520,116,0,68,0,
7161101,0,99,0,108, 7353101,0,99,0,108,
71620,97,0,114,0, 73540,97,0,114,0,
716397,0,116,0,105, 735597,0,116,0,105,
71640,111,0,110,0, 73560,111,0,110,0,
716595,0,49,0,1, 735776,0,105,0,115,
7166201,1,3,1,3, 73580,116,0,1,-1,
71671,2,2187,22,1, 73591,5,2232,20,2233,
716843,1,2525,2188,17, 73604,68,73,0,110,
71692189,15,2190,4,60, 73610,116,0,82,0,
717037,0,86,0,101, 7362111,0,116,0,82,
71710,99,0,116,0, 73630,111,0,116,0,
7172111,0,114,0,65, 736465,0,114,0,103,
71730,114,0,103,0, 73650,117,0,109,0,
7174117,0,109,0,101, 7366101,0,110,0,116,
71750,110,0,116,0, 73670,68,0,101,0,
717668,0,101,0,99, 736899,0,108,0,97,
71770,108,0,97,0, 73690,114,0,97,0,
7178114,0,97,0,116, 7370116,0,105,0,111,
71790,105,0,111,0, 73710,110,0,76,0,
7180110,0,76,0,105, 7372105,0,115,0,116,
71810,115,0,116,0, 73730,95,0,49,0,
71821,-1,1,5,2191, 73741,203,1,3,1,
718320,2192,4,62,86, 73756,1,5,2234,22,
73761,42,1,2281,1259,
73771,525,1321,1,2539,
73782235,17,2236,15,2237,
73794,60,37,0,86,
71840,101,0,99,0, 73800,101,0,99,0,
7185116,0,111,0,114, 7381116,0,111,0,114,
71860,65,0,114,0, 73820,65,0,114,0,
@@ -7192,17 +7388,11 @@ public yyLSLSyntax
71920,116,0,105,0, 73880,116,0,105,0,
7193111,0,110,0,76, 7389111,0,110,0,76,
71940,105,0,115,0, 73900,105,0,115,0,
7195116,0,95,0,49, 7391116,0,1,-1,1,
71960,1,196,1,3, 73925,2238,20,2239,4,
71971,2,1,1,2193, 739362,86,0,101,0,
719822,1,38,1,1773, 739499,0,116,0,111,
71992194,16,0,252,1, 73950,114,0,65,0,
720019,1233,1,20,2195,
720116,0,162,1,2281,
72021240,1,2533,2196,17,
72032197,15,2198,4,54,
720437,0,73,0,110,
72050,116,0,65,0,
7206114,0,103,0,117, 7396114,0,103,0,117,
72070,109,0,101,0, 73970,109,0,101,0,
7208110,0,116,0,68, 7398110,0,116,0,68,
@@ -7211,89 +7401,15 @@ public yyLSLSyntax
72110,97,0,116,0, 74010,97,0,116,0,
7212105,0,111,0,110, 7402105,0,111,0,110,
72130,76,0,105,0, 74030,76,0,105,0,
7214115,0,116,0,1, 7404115,0,116,0,95,
7215-1,1,5,2199,20, 74050,49,0,1,202,
72162200,4,56,73,0, 74061,3,1,2,1,
7217110,0,116,0,65, 74071,2240,22,1,41,
72180,114,0,103,0, 74081,30,1868,1,1002,
7219117,0,109,0,101, 74091696,1,283,1277,1,
72200,110,0,116,0, 74102547,2241,17,2242,15,
722168,0,101,0,99, 74112243,4,54,37,0,
72220,108,0,97,0,
7223114,0,97,0,116,
72240,105,0,111,0,
7225110,0,76,0,105,
72260,115,0,116,0,
722795,0,49,0,1,
7228195,1,3,1,2,
72291,1,2201,22,1,
723037,1,2534,2202,16,
72310,488,1,30,1825,
72321,2541,2203,17,2204,
723315,2205,4,30,37,
72340,75,0,101,0,
7235121,0,68,0,101,
72360,99,0,108,0,
723797,0,114,0,97,
72380,116,0,105,0,
7239111,0,110,0,1,
7240-1,1,5,2206,20,
72412207,4,32,75,0,
7242101,0,121,0,68,
72430,101,0,99,0,
7244108,0,97,0,114,
72450,97,0,116,0,
7246105,0,111,0,110,
72470,95,0,49,0,
72481,199,1,3,1,
72493,1,2,2208,22,
72501,41,1,283,1258,
72511,2543,2209,16,0,
7252503,1,2548,2210,16,
72530,633,1,1010,2211,
725416,0,668,1,40,
72551263,1,41,1830,1,
725642,1834,1,2553,1840,
72571,44,1269,1,1260,
72581182,1,47,1270,1,
72591303,1394,1,49,1282,
72601,50,1287,1,48,
72611276,1,2562,2212,16,
72620,646,1,305,1297,
72631,51,1292,1,2733,
72642213,16,0,169,1,
726561,2214,16,0,205,
72661,63,1308,1,1521,
72671216,1,66,1315,1,
726867,1320,1,68,1325,
72691,69,1330,1,70,
72701335,1,73,2215,16,
72710,215,1,74,1340,
72721,1013,1345,1,2335,
72732216,16,0,254,1,
72741332,1350,1,1048,1431,
72751,82,1367,1,1840,
72762217,16,0,318,1,
72772516,2218,17,2219,15,
72782220,4,66,37,0,
727973,0,110,0,116, 741273,0,110,0,116,
72800,82,0,111,0,
7281116,0,82,0,111,
72820,116,0,65,0,
7283114,0,103,0,117,
72840,109,0,101,0,
7285110,0,116,0,68,
72860,101,0,99,0,
7287108,0,97,0,114,
72880,97,0,116,0,
7289105,0,111,0,110,
72900,76,0,105,0,
7291115,0,116,0,1,
7292-1,1,5,2221,20,
72932222,4,68,73,0,
7294110,0,116,0,82,
72950,111,0,116,0,
729682,0,111,0,116,
72970,65,0,114,0, 74130,65,0,114,0,
7298103,0,117,0,109, 7414103,0,117,0,109,
72990,101,0,110,0, 74150,101,0,110,0,
@@ -7303,34 +7419,135 @@ public yyLSLSyntax
73030,116,0,105,0, 74190,116,0,105,0,
7304111,0,110,0,76, 7420111,0,110,0,76,
73050,105,0,115,0, 74210,105,0,115,0,
7306116,0,95,0,49, 7422116,0,1,-1,1,
73070,1,197,1,3, 74235,2244,20,2245,4,
73081,6,1,5,2223, 742456,73,0,110,0,
730922,1,39,1,2517, 7425116,0,65,0,114,
73102224,16,0,463,1, 74260,103,0,117,0,
7311328,1389,1,1094,2225, 7427109,0,101,0,110,
731216,0,748,1,1096, 74280,116,0,68,0,
73131399,1,93,1405,1, 7429101,0,99,0,108,
73141550,1410,1,525,1302, 74300,97,0,114,0,
73151,2526,2226,16,0, 743197,0,116,0,105,
7316286,1,1002,1679,1, 74320,111,0,110,0,
7317827,1418,1,1011,1188, 743376,0,105,0,115,
73181,107,1425,1,1114, 74340,116,0,95,0,
73191430,1,2542,2227,17, 743549,0,1,201,1,
73202228,15,2229,4,54, 74363,1,2,1,1,
732137,0,75,0,101, 74372246,22,1,40,1,
73220,121,0,65,0, 74382548,2247,16,0,642,
7323114,0,103,0,117, 74391,1010,2248,16,0,
73240,109,0,101,0, 7440690,1,40,1282,1,
7325110,0,116,0,68, 744141,1873,1,42,1877,
74421,44,1288,1,2555,
74432249,17,2250,15,2251,
74444,30,37,0,75,
74450,101,0,121,0,
744668,0,101,0,99,
74470,108,0,97,0,
7448114,0,97,0,116,
74490,105,0,111,0,
7450110,0,1,-1,1,
74515,2252,20,2253,4,
745232,75,0,101,0,
7453121,0,68,0,101,
74540,99,0,108,0,
745597,0,114,0,97,
74560,116,0,105,0,
7457111,0,110,0,95,
74580,49,0,1,206,
74591,3,1,3,1,
74602,2254,22,1,45,
74611,1260,1200,1,47,
74621289,1,48,1295,1,
746349,1301,1,50,1306,
74641,51,1311,1,2562,
74652255,16,0,739,1,
7466305,1316,1,2576,2256,
746716,0,674,1,2567,
74681883,1,61,2257,16,
74690,208,1,63,1327,
74701,66,1333,1,67,
74711338,1,68,1343,1,
747269,1348,1,70,1353,
74731,73,2258,16,0,
7474221,1,74,1358,1,
74751013,1363,1,2335,2259,
747616,0,257,1,1332,
74771368,1,1048,1449,1,
74782512,1847,1,1840,2260,
747916,0,334,1,2516,
74802261,17,2262,15,2263,
74814,66,37,0,73,
74820,110,0,116,0,
748386,0,101,0,99,
74840,86,0,101,0,
748599,0,65,0,114,
74860,103,0,117,0,
7487109,0,101,0,110,
74880,116,0,68,0,
7489101,0,99,0,108,
74900,97,0,114,0,
749197,0,116,0,105,
74920,111,0,110,0,
749376,0,105,0,115,
74940,116,0,1,-1,
74951,5,2264,20,2265,
74964,68,73,0,110,
74970,116,0,86,0,
7498101,0,99,0,86,
73260,101,0,99,0, 74990,101,0,99,0,
7327108,0,97,0,114, 750065,0,114,0,103,
73280,97,0,116,0, 75010,117,0,109,0,
7329105,0,111,0,110, 7502101,0,110,0,116,
73300,76,0,105,0, 75030,68,0,101,0,
7331115,0,116,0,1, 750499,0,108,0,97,
7332-1,1,5,2230,20, 75050,114,0,97,0,
73332231,4,56,75,0, 7506116,0,105,0,111,
75070,110,0,76,0,
7508105,0,115,0,116,
75090,95,0,49,0,
75101,204,1,3,1,
75116,1,5,2266,22,
75121,43,1,2517,2267,
751316,0,482,1,328,
75141407,1,1303,1412,1,
75151096,1417,1,93,1423,
75161,82,1385,1,827,
75171436,1,2532,2268,16,
75180,626,1,1011,1207,
75191,107,1443,1,1114,
75201448,1,2540,2269,16,
75210,512,1,1871,2270,
752216,0,344,1,1370,
75231557,1,1478,1562,1,
7524118,1460,1,1123,1465,
75251,371,1470,1,1377,
75261476,1,375,1481,1,
75271882,2271,16,0,359,
75281,377,1486,1,352,
75291454,1,379,1491,1,
75301341,1402,1,130,1519,
75311,2074,2272,16,0,
7532644,1,373,1514,1,
75331012,2273,16,0,692,
75341,380,1496,1,143,
75351524,1,1550,1428,1,
75361152,1530,1,1406,1535,
75371,1159,1542,1,157,
75381547,1,1413,1552,1,
7539883,1502,1,1094,2274,
754016,0,771,1,1296,
75411272,1,172,1573,1,
75421665,1578,1,1939,2275,
754316,0,477,1,1188,
75441583,1,1442,1588,1,
7545188,1622,1,942,1594,
75461,1195,1600,1,1449,
75471605,1,1701,1610,1,
7548447,1615,1,2556,2276,
754917,2277,15,2278,4,
755054,37,0,75,0,
7334101,0,121,0,65, 7551101,0,121,0,65,
73350,114,0,103,0, 75520,114,0,103,0,
7336117,0,109,0,101, 7553117,0,109,0,101,
@@ -7341,2179 +7558,2164 @@ public yyLSLSyntax
73410,105,0,111,0, 75580,105,0,111,0,
7342110,0,76,0,105, 7559110,0,76,0,105,
73430,115,0,116,0, 75600,115,0,116,0,
734495,0,49,0,1, 75611,-1,1,5,2279,
7345194,1,3,1,2, 756220,2280,4,56,75,
73461,1,2232,22,1, 75630,101,0,121,0,
734736,1,1871,2233,16, 756465,0,114,0,103,
73480,328,1,1370,1539, 75650,117,0,109,0,
73491,1478,1544,1,118, 7566101,0,110,0,116,
73501442,1,1123,1447,1,
7351371,1452,1,1377,1458,
73521,375,1463,1,1882,
73532234,16,0,341,1,
7354377,1468,1,352,1436,
73551,379,1473,1,1341,
73561384,1,130,1501,1,
73572074,2235,16,0,635,
73581,373,1496,1,1012,
73592236,16,0,670,1,
7360380,1478,1,143,1506,
73611,1152,1512,1,1406,
73621517,1,1159,1524,1,
7363157,1529,1,1413,1534,
73641,883,1484,1,2512,
73651812,1,1296,1253,1,
7366172,1555,1,1665,1560,
73671,1939,2237,16,0,
7368458,1,1188,1565,1,
73691442,1570,1,188,1604,
73701,942,1576,1,1195,
73711582,1,1449,1587,1,
73721701,1592,1,447,1597,
73731,205,1609,1,2467,
73741850,1,464,1856,1,
73752724,1861,1,2197,2238,
737616,0,742,1,1224,
73771614,1,223,1619,1,
73781730,1624,1,476,1629,
73791,477,1635,1,1231,
73801640,1,479,1645,1,
7381480,1650,1,1485,1656,
73821,459,1863,1,242,
73831664,1,478,1669,1,
7384481,1865,1,1001,1674,
73851,2508,1870,1,18,
73862239,19,541,1,18,
73872240,5,84,1,1011,
73881188,1,1012,2241,16,
73890,539,1,1013,1345,
73901,262,1205,1,1267,
73912242,16,0,539,1,
7392515,2243,16,0,539,
73931,1521,2244,16,0,
7394539,1,525,1302,1,
7395283,1258,1,2299,2245,
739616,0,539,1,42,
73972246,16,0,539,1,
739840,1263,1,44,1269,
73991,47,1270,1,1303,
74002247,16,0,539,1,
74011555,2248,16,0,539,
74021,50,1287,1,48,
74031276,1,49,1282,1,
740451,1292,1,63,1308,
74051,305,1297,1,66,
74061315,1,67,1320,1,
740768,1325,1,69,1330,
74081,70,1335,1,73,
74092249,16,0,539,1,
741074,1340,1,328,1389,
74111,1048,2250,16,0,
7412539,1,82,2251,16,
74130,539,1,1840,2252,
741416,0,539,1,1591,
74152253,16,0,539,1,
74161341,2254,16,0,539,
74171,1096,1399,1,93,
74181405,1,352,1436,1,
7419107,2255,16,0,539,
74201,1114,1430,1,118,
74212256,16,0,539,1,
74221123,2257,16,0,539,
74231,371,1452,1,1628,
74242258,16,0,539,1,
7425375,1463,1,1882,2259,
742616,0,539,1,377,
74271468,1,379,1473,1,
7428380,1478,1,883,2260,
742916,0,539,1,373,
74301496,1,130,2261,16,
74310,539,1,143,2262,
743216,0,539,1,387,
74332263,16,0,539,1,
74341159,2264,16,0,539,
74351,157,2265,16,0,
7436539,1,1413,2266,16,
74370,539,1,1665,2267,
743816,0,539,1,412,
74392268,16,0,539,1,
74401377,2269,16,0,539,
74411,172,2270,16,0,
7442539,1,1939,2271,16,
74430,539,1,437,2272,
744416,0,539,1,188,
74452273,16,0,539,1,
7446942,2274,16,0,539,
74471,1195,2275,16,0,
7448539,1,1449,2276,16,
74490,539,1,1701,2277,
745016,0,539,1,447,
74511597,1,205,2278,16,
74520,539,1,827,2279,
745316,0,539,1,223,
74542280,16,0,539,1,
7455476,1629,1,477,1635,
74561,1231,2281,16,0,
7457539,1,479,1645,1,
7458480,1650,1,1485,2282,
745916,0,539,1,1737,
74602283,16,0,539,1,
74612746,2284,16,0,539,
74621,242,2285,16,0,
7463539,1,478,1669,1,
74641001,1674,1,1002,1679,
74651,19,2286,19,239,
74661,19,2287,5,176,
74671,256,2288,16,0,
7468237,1,1261,2289,16,
74690,237,1,1011,1188,
74701,1012,2290,16,0,
7471510,1,2458,961,1,
7472262,1205,1,1267,2291,
747316,0,510,1,2021,
7474804,1,1521,2292,16,
74750,510,1,1775,2293,
747616,0,237,1,2029,
7477811,1,2030,817,1,
74782031,822,1,2032,827,
74791,2033,832,1,277,
74802294,16,0,237,1,
74812035,838,1,2037,843,
74821,2039,848,1,32,
74832295,16,0,237,1,
74842464,984,1,2293,2296,
748516,0,237,1,2043,
7486860,1,2045,865,1,
74872299,2297,16,0,510,
74881,41,2298,16,0,
7489237,1,42,2299,16,
74900,510,1,40,1263,
74911,44,1269,1,43,
74922300,16,0,237,1,
74931804,2301,16,0,237,
74941,48,1276,1,49,
74951282,1,47,1270,1,
749651,1292,1,52,2302,
749716,0,237,1,50,
74981287,1,305,1297,1,
74991096,1399,1,1515,2303,
750016,0,237,1,2318,
75012304,16,0,237,1,
7502283,1258,1,63,1308,
75031,66,1315,1,67,
75041320,1,68,1325,1,
750569,1330,1,70,1335,
75061,71,2305,16,0,
7507237,1,2746,2306,16,
75080,510,1,73,2307,
750916,0,510,1,74,
75101340,1,1013,1345,1,
751176,2308,16,0,237,
75121,1834,2309,16,0,
7513237,1,2337,2310,16,
75140,237,1,79,2311,
751516,0,237,1,1335,
75162312,16,0,237,1,
7517299,2313,16,0,237,
75181,82,2314,16,0,
7519510,1,1840,2315,16,
75200,510,1,1297,2316,
752116,0,237,1,85,
75222317,16,0,237,1,
75231341,2318,16,0,510,
75241,89,2319,16,0,
7525237,1,1303,2320,16,
75260,510,1,509,2321,
752716,0,237,1,93,
75281405,1,322,2322,16,
75290,237,1,97,2323,
753016,0,237,1,2041,
7531854,1,1555,2324,16,
75320,510,1,827,2325,
753316,0,510,1,102,
75342326,16,0,237,1,
75351860,907,1,1803,873,
75361,2364,913,1,107,
75372327,16,0,510,1,
75381114,1430,1,112,2328,
753916,0,237,1,1117,
75402329,16,0,237,1,
7541352,1436,1,1873,921,
75421,118,2330,16,0,
7543510,1,1123,2331,16,
75440,510,1,371,1452,
75451,515,2332,16,0,
7546510,1,1377,2333,16,
75470,510,1,124,2334,
754816,0,237,1,1882,
75492335,16,0,510,1,
7550377,1468,1,379,1473,
75511,380,1478,1,130,
75522336,16,0,510,1,
7553346,2337,16,0,237,
75541,2075,2338,16,0,
7555237,1,373,1496,1,
7556387,2339,16,0,510,
75571,137,2340,16,0,
7558237,1,143,2341,16,
75590,510,1,1901,2342,
756016,0,237,1,1048,
75612343,16,0,510,1,
75621153,2344,16,0,237,
75631,375,1463,1,151,
75642345,16,0,237,1,
75651407,2346,16,0,237,
75661,2740,2347,16,0,
7567237,1,2413,2348,16,
75680,237,1,1159,2349,
756916,0,510,1,381,
75702350,16,0,237,1,
7571157,2351,16,0,510,
75721,1413,2352,16,0,
7573510,1,883,2353,16,
75740,510,1,1371,2354,
757516,0,237,1,328,
75761389,1,2105,900,1,
75772106,2355,16,0,237,
75781,166,2356,16,0,
7579237,1,525,2357,16,
75800,237,1,1622,2358,
758116,0,237,1,406,
75822359,16,0,237,1,
75831574,885,1,172,2360,
758416,0,510,1,1931,
7585946,1,412,2361,16,
75860,510,1,1933,2362,
758716,0,237,1,1876,
75882363,16,0,237,1,
7589431,2364,16,0,237,
75901,1585,2365,16,0,
7591237,1,182,2366,16,
75920,237,1,1628,2367,
759316,0,510,1,1189,
75942368,16,0,237,1,
7595437,2369,16,0,510,
75961,1591,2370,16,0,
7597510,1,188,2371,16,
75980,510,1,1695,2372,
759916,0,237,1,2198,
76002373,16,0,237,1,
76011195,2374,16,0,510,
76021,1449,2375,16,0,
7603510,1,1701,2376,16,
76040,510,1,447,2377,
760516,0,237,1,199,
76062378,16,0,237,1,
76072459,967,1,1958,2379,
760816,0,237,1,2462,
7609974,1,1657,979,1,
7610205,2380,16,0,510,
76111,1659,2381,16,0,
7612237,1,459,2382,16,
76130,237,1,462,2383,
761416,0,237,1,1665,
76152384,16,0,510,1,
7616217,2385,16,0,237,
76171,2227,993,1,942,
76182386,16,0,510,1,
76191225,2387,16,0,237,
76201,223,2388,16,0,
7621510,1,1479,2389,16,
76220,237,1,1731,2390,
762316,0,237,1,477,
76241635,1,1231,2391,16,
76250,510,1,479,1645,
76261,480,1650,1,1485,
76272392,16,0,510,1,
76281737,2393,16,0,510,
76291,1989,1002,1,1990,
76302394,16,0,237,1,
76311443,2395,16,0,237,
76321,236,2396,16,0,
7633237,1,2136,928,1,
7634476,1629,1,242,2397,
763516,0,510,1,478,
76361669,1,1939,2398,16,
76370,510,1,1001,1674,
76381,1002,1679,1,1756,
76392399,16,0,237,1,
764020,2400,19,477,1,
764120,2401,5,84,1,
76421011,1188,1,1012,2402,
764316,0,475,1,1013,
76441345,1,262,1205,1,
76451267,2403,16,0,475,
76461,515,2404,16,0,
7647475,1,1521,2405,16,
76480,475,1,525,1302,
76491,283,1258,1,2299,
76502406,16,0,475,1,
765142,2407,16,0,475,
76521,40,1263,1,44,
76531269,1,47,1270,1,
76541303,2408,16,0,475,
76551,1555,2409,16,0,
7656475,1,50,1287,1,
765748,1276,1,49,1282,
76581,51,1292,1,63,
76591308,1,305,1297,1,
766066,1315,1,67,1320,
76611,68,1325,1,69,
76621330,1,70,1335,1,
766373,2410,16,0,475,
76641,74,1340,1,328,
76652411,16,0,475,1,
76661048,2412,16,0,475,
76671,82,2413,16,0,
7668475,1,1840,2414,16,
76690,475,1,1591,2415,
767016,0,475,1,1341,
76712416,16,0,475,1,
76721096,1399,1,93,1405,
76731,352,2417,16,0,
7674475,1,107,2418,16,
76750,475,1,1114,1430,
76761,118,2419,16,0,
7677475,1,1123,2420,16,
76780,475,1,371,1452,
76791,1628,2421,16,0,
7680475,1,375,1463,1,
76811882,2422,16,0,475,
76821,377,1468,1,379,
76831473,1,380,1478,1,
7684883,2423,16,0,475,
76851,373,1496,1,130,
76862424,16,0,475,1,
7687143,2425,16,0,475,
76881,387,2426,16,0,
7689475,1,1159,2427,16,
76900,475,1,157,2428,
769116,0,475,1,1413,
76922429,16,0,475,1,
76931665,2430,16,0,475,
76941,412,2431,16,0,
7695475,1,1377,2432,16,
76960,475,1,172,2433,
769716,0,475,1,1939,
76982434,16,0,475,1,
7699437,2435,16,0,475,
77001,188,2436,16,0,
7701475,1,942,2437,16,
77020,475,1,1195,2438,
770316,0,475,1,1449,
77042439,16,0,475,1,
77051701,2440,16,0,475,
77061,447,1597,1,205,
77072441,16,0,475,1,
7708827,2442,16,0,475,
77091,223,2443,16,0,
7710475,1,476,1629,1,
7711477,1635,1,1231,2444,
771216,0,475,1,479,
77131645,1,480,1650,1,
77141485,2445,16,0,475,
77151,1737,2446,16,0,
7716475,1,2746,2447,16,
77170,475,1,242,2448,
771816,0,475,1,478,
77191669,1,1001,1674,1,
77201002,1679,1,21,2449,
772119,444,1,21,2450,
77225,84,1,1011,1188,
77231,1012,2451,16,0,
7724442,1,1013,1345,1,
7725262,1205,1,1267,2452,
772616,0,442,1,515,
77272453,16,0,442,1,
77281521,2454,16,0,442,
77291,525,1302,1,283,
77301258,1,2299,2455,16,
77310,442,1,42,2456,
773216,0,442,1,40,
77331263,1,44,1269,1,
773447,1270,1,1303,2457,
773516,0,442,1,1555,
77362458,16,0,442,1,
773750,1287,1,48,1276,
77381,49,1282,1,51,
77391292,1,63,1308,1,
7740305,1297,1,66,1315,
77411,67,1320,1,68,
77421325,1,69,1330,1,
774370,1335,1,73,2459,
774416,0,442,1,74,
77451340,1,328,2460,16,
77460,442,1,1048,2461,
774716,0,442,1,82,
77482462,16,0,442,1,
77491840,2463,16,0,442,
77501,1591,2464,16,0,
7751442,1,1341,2465,16,
77520,442,1,1096,1399,
77531,93,1405,1,352,
77542466,16,0,442,1,
7755107,2467,16,0,442,
77561,1114,1430,1,118,
77572468,16,0,442,1,
77581123,2469,16,0,442,
77591,371,1452,1,1628,
77602470,16,0,442,1,
7761375,1463,1,1882,2471,
776216,0,442,1,377,
77631468,1,379,1473,1,
7764380,1478,1,883,2472,
776516,0,442,1,373,
77661496,1,130,2473,16,
77670,442,1,143,2474,
776816,0,442,1,387,
77692475,16,0,442,1,
77701159,2476,16,0,442,
77711,157,2477,16,0,
7772442,1,1413,2478,16,
77730,442,1,1665,2479,
777416,0,442,1,412,
77752480,16,0,442,1,
77761377,2481,16,0,442,
77771,172,2482,16,0,
7778442,1,1939,2483,16,
77790,442,1,437,2484,
778016,0,442,1,188,
77812485,16,0,442,1,
7782942,2486,16,0,442,
77831,1195,2487,16,0,
7784442,1,1449,2488,16,
77850,442,1,1701,2489,
778616,0,442,1,447,
77871597,1,205,2490,16,
77880,442,1,827,2491,
778916,0,442,1,223,
77902492,16,0,442,1,
7791476,1629,1,477,1635,
77921,1231,2493,16,0,
7793442,1,479,1645,1,
7794480,1650,1,1485,2494,
779516,0,442,1,1737,
77962495,16,0,442,1,
77972746,2496,16,0,442,
77981,242,2497,16,0,
7799442,1,478,1669,1,
78001001,1674,1,1002,1679,
78011,22,2498,19,395,
78021,22,2499,5,84,
78031,1011,1188,1,1012,
78042500,16,0,393,1,
78051013,1345,1,262,1205,
78061,1267,2501,16,0,
7807393,1,515,2502,16,
78080,393,1,1521,2503,
780916,0,393,1,525,
78101302,1,283,1258,1,
78112299,2504,16,0,393,
78121,42,2505,16,0,
7813393,1,40,1263,1,
781444,1269,1,47,1270,
78151,1303,2506,16,0,
7816393,1,1555,2507,16,
78170,393,1,50,1287,
78181,48,1276,1,49,
78191282,1,51,1292,1,
782063,1308,1,305,1297,
78211,66,1315,1,67,
78221320,1,68,1325,1,
782369,1330,1,70,1335,
78241,73,2508,16,0,
7825393,1,74,1340,1,
7826328,2509,16,0,393,
78271,1048,2510,16,0,
7828393,1,82,2511,16,
78290,393,1,1840,2512,
783016,0,393,1,1591,
78312513,16,0,393,1,
78321341,2514,16,0,393,
78331,1096,1399,1,93,
78341405,1,352,2515,16,
78350,393,1,107,2516,
783616,0,393,1,1114,
78371430,1,118,2517,16,
78380,393,1,1123,2518,
783916,0,393,1,371,
78401452,1,1628,2519,16,
78410,393,1,375,1463,
78421,1882,2520,16,0,
7843393,1,377,1468,1,
7844379,1473,1,380,1478,
78451,883,2521,16,0,
7846393,1,373,1496,1,
7847130,2522,16,0,393,
78481,143,2523,16,0,
7849393,1,387,2524,16,
78500,393,1,1159,2525,
785116,0,393,1,157,
78522526,16,0,393,1,
78531413,2527,16,0,393,
78541,1665,2528,16,0,
7855393,1,412,2529,16,
78560,393,1,1377,2530,
785716,0,393,1,172,
78582531,16,0,393,1,
78591939,2532,16,0,393,
78601,437,2533,16,0,
7861393,1,188,2534,16,
78620,393,1,942,2535,
786316,0,393,1,1195,
78642536,16,0,393,1,
78651449,2537,16,0,393,
78661,1701,2538,16,0,
7867393,1,447,1597,1,
7868205,2539,16,0,393,
78691,827,2540,16,0,
7870393,1,223,2541,16,
78710,393,1,476,1629,
78721,477,1635,1,1231,
78732542,16,0,393,1,
7874479,1645,1,480,1650,
78751,1485,2543,16,0,
7876393,1,1737,2544,16,
78770,393,1,2746,2545,
787816,0,393,1,242,
78792546,16,0,393,1,
7880478,1669,1,1001,1674,
78811,1002,1679,1,23,
78822547,19,555,1,23,
78832548,5,38,1,1901,
78842549,16,0,553,1,
78852075,2550,16,0,553,
78861,1860,907,1,1803,
7887873,1,1804,2551,16,
78880,553,1,2413,2552,
788916,0,553,1,2198,
78902553,16,0,553,1,
78911873,921,1,1657,979,
78921,1989,1002,1,1990,
78932554,16,0,553,1,
78941775,2555,16,0,553,
78951,32,2556,16,0,
7896553,1,2105,900,1,
78972106,2557,16,0,553,
78981,2364,913,1,2227,
7899993,1,2337,2558,16,
79000,553,1,2021,804,
79011,2458,961,1,2459,
7902967,1,2462,974,1,
79032136,928,1,2464,984,
79041,2029,811,1,2030,
7905817,1,2031,822,1,
79062032,827,1,2033,832,
79071,2035,838,1,2037,
7908843,1,2039,848,1,
79091931,946,1,2041,854,
79101,2043,860,1,2045,
7911865,1,1574,885,1,
79121958,2559,16,0,553,
79131,24,2560,19,188,
79141,24,2561,5,5,
79151,44,2562,16,0,
7916186,1,377,2563,16,
79170,591,1,40,2564,
791816,0,760,1,63,
79192565,16,0,207,1,
7920373,2566,16,0,587,
79211,25,2567,19,307,
79221,25,2568,5,177,
79231,256,2569,16,0,
7924596,1,1261,2570,16,
79250,596,1,1011,1188,
79261,1012,2571,16,0,
7927305,1,2458,961,1,
7928262,1205,1,1267,2572,
792916,0,305,1,2021,
7930804,1,1521,2573,16,
79310,305,1,1775,2574,
793216,0,596,1,2029,
7933811,1,2030,817,1,
79342031,822,1,2032,827,
79351,2033,832,1,277,
79362575,16,0,596,1,
79372035,838,1,2037,843,
79381,2039,848,1,32,
79392576,16,0,596,1,
79402464,984,1,2293,2577,
794116,0,596,1,2043,
7942860,1,2045,865,1,
79432299,2578,16,0,305,
79441,41,2579,16,0,
7945596,1,42,2580,16,
79460,305,1,40,1263,
79471,44,1269,1,43,
79482581,16,0,596,1,
79491804,2582,16,0,596,
79501,48,1276,1,49,
79511282,1,47,1270,1,
795251,1292,1,52,2583,
795316,0,596,1,50,
79541287,1,305,1297,1,
79551096,1399,1,1515,2584,
795616,0,596,1,2318,
79572585,16,0,596,1,
795862,2586,16,0,596,
79591,63,1308,1,66,
79601315,1,67,1320,1,
796168,1325,1,69,1330,
79621,70,1335,1,71,
79632587,16,0,596,1,
7964283,1258,1,73,2588,
796516,0,305,1,74,
79661340,1,1013,1345,1,
796776,2589,16,0,596,
79681,1834,2590,16,0,
7969596,1,2337,2591,16,
79700,596,1,79,2592,
797116,0,596,1,1335,
79722593,16,0,596,1,
7973299,2594,16,0,596,
79741,82,2595,16,0,
7975305,1,1840,2596,16,
79760,305,1,1297,2597,
797716,0,596,1,85,
79782598,16,0,596,1,
79791341,2599,16,0,305,
79801,89,2600,16,0,
7981596,1,1303,2601,16,
79820,305,1,509,2602,
798316,0,596,1,93,
79841405,1,322,2603,16,
79850,596,1,97,2604,
798616,0,596,1,2041,
7987854,1,1555,2605,16,
79880,305,1,827,2606,
798916,0,305,1,102,
79902607,16,0,596,1,
79911860,907,1,1803,873,
79921,2364,913,1,107,
79932608,16,0,305,1,
79941114,1430,1,112,2609,
799516,0,596,1,1117,
79962610,16,0,596,1,
7997352,1436,1,1873,921,
79981,118,1442,1,1123,
79992611,16,0,305,1,
8000371,1452,1,515,2612,
800116,0,305,1,1377,
80022613,16,0,305,1,
8003124,2614,16,0,596,
80041,1882,2615,16,0,
8005305,1,377,1468,1,
8006379,1473,1,380,1478,
80071,130,1501,1,346,
80082616,16,0,596,1,
80092075,2617,16,0,596,
80101,373,1496,1,387,
80112618,16,0,305,1,
8012137,2619,16,0,596,
80131,143,2620,16,0,
8014305,1,1901,2621,16,
80150,596,1,1048,1431,
80161,1153,2622,16,0,
8017596,1,375,1463,1,
8018151,2623,16,0,596,
80191,1407,2624,16,0,
8020596,1,2740,2625,16,
80210,596,1,2413,2626,
802216,0,596,1,1159,
80232627,16,0,305,1,
8024381,2628,16,0,596,
80251,157,2629,16,0,
8026305,1,1413,2630,16,
80270,305,1,883,2631,
802816,0,305,1,1371,
80292632,16,0,596,1,
8030328,1389,1,2105,900,
80311,2106,2633,16,0,
8032596,1,166,2634,16,
80330,596,1,525,2635,
803416,0,596,1,1622,
80352636,16,0,596,1,
8036406,2637,16,0,596,
80371,1574,885,1,172,
80381555,1,1931,946,1,
8039412,2638,16,0,305,
80401,1933,2639,16,0,
8041596,1,1876,2640,16,
80420,596,1,431,2641,
804316,0,596,1,1585,
80442642,16,0,596,1,
8045182,2643,16,0,596,
80461,1628,2644,16,0,
8047305,1,1189,2645,16,
80480,596,1,437,2646,
804916,0,305,1,1591,
80502647,16,0,305,1,
8051188,1604,1,1695,2648,
805216,0,596,1,2198,
80532649,16,0,596,1,
80541195,2650,16,0,305,
80551,1449,2651,16,0,
8056305,1,1701,2652,16,
80570,305,1,447,2653,
805816,0,596,1,199,
80592654,16,0,596,1,
80602459,967,1,1958,2655,
806116,0,596,1,2462,
8062974,1,1657,979,1,
8063205,2656,16,0,305,
80641,1659,2657,16,0,
8065596,1,459,2658,16,
80660,596,1,462,2659,
806716,0,596,1,1665,
80682660,16,0,305,1,
8069217,2661,16,0,596,
80701,2227,993,1,942,
80711576,1,1225,2662,16,
80720,596,1,223,2663,
807316,0,305,1,1479,
80742664,16,0,596,1,
80751731,2665,16,0,596,
80761,477,1635,1,1231,
80772666,16,0,305,1,
8078479,1645,1,480,1650,
80791,1485,2667,16,0,
8080305,1,1737,2668,16,
80810,305,1,1989,1002,
80821,1990,2669,16,0,
8083596,1,1443,2670,16,
80840,596,1,236,2671,
808516,0,596,1,2136,
8086928,1,476,1629,1,
8087242,2672,16,0,305,
80881,478,1669,1,1939,
80892673,16,0,305,1,
80902746,2674,16,0,305,
80911,1001,1674,1,1002,
80921679,1,1756,2675,16,
80930,596,1,26,2676,
809419,323,1,26,2677,
80955,84,1,1011,1188,
80961,1012,2678,16,0,
8097321,1,1013,1345,1,
8098262,1205,1,1267,2679,
809916,0,321,1,515,
81002680,16,0,740,1,
81011521,2681,16,0,321,
81021,525,1302,1,283,
81031258,1,2299,2682,16,
81040,321,1,42,2683,
810516,0,321,1,40,
81061263,1,44,1269,1,
810747,1270,1,1303,2684,
810816,0,321,1,1555,
81092685,16,0,321,1,
811050,1287,1,48,1276,
81111,49,1282,1,51,
81121292,1,63,1308,1,
8113305,1297,1,66,1315,
81141,67,1320,1,68,
81151325,1,69,1330,1,
811670,1335,1,73,2686,
811716,0,321,1,74,
81181340,1,328,1389,1,
81191048,1431,1,82,2687,
812016,0,321,1,1840,
81212688,16,0,321,1,
81221591,2689,16,0,321,
81231,1341,2690,16,0,
8124321,1,1096,1399,1,
812593,1405,1,352,1436,
81261,107,2691,16,0,
8127321,1,1114,1430,1,
8128118,1442,1,1123,2692,
812916,0,321,1,371,
81301452,1,1628,2693,16,
81310,321,1,375,1463,
81321,1882,2694,16,0,
8133321,1,377,1468,1,
8134379,1473,1,380,1478,
81351,883,2695,16,0,
8136321,1,373,1496,1,
8137130,1501,1,143,2696,
813816,0,321,1,387,
81392697,16,0,321,1,
81401159,2698,16,0,321,
81411,157,2699,16,0,
8142321,1,1413,2700,16,
81430,321,1,1665,2701,
814416,0,321,1,412,
81452702,16,0,321,1,
81461377,2703,16,0,321,
81471,172,1555,1,1939,
81482704,16,0,321,1,
8149437,2705,16,0,665,
81501,188,1604,1,942,
81511576,1,1195,2706,16,
81520,321,1,1449,2707,
815316,0,321,1,1701,
81542708,16,0,321,1,
8155447,1597,1,205,2709,
815616,0,321,1,827,
81572710,16,0,321,1,
8158223,2711,16,0,321,
81591,476,1629,1,477,
81601635,1,1231,2712,16,
81610,321,1,479,1645,
81621,480,1650,1,1485,
81632713,16,0,321,1,
81641737,2714,16,0,321,
81651,2746,2715,16,0,
8166321,1,242,2716,16,
81670,321,1,478,1669,
81681,1001,1674,1,1002,
81691679,1,27,2717,19,
8170673,1,27,2718,5,
817195,1,256,2719,16,
81720,671,1,1261,2720,
817316,0,671,1,509,
81742721,16,0,671,1,
81751515,2722,16,0,671,
81761,2021,804,1,1775,
81772723,16,0,671,1,
81782029,811,1,2030,817,
81791,2031,822,1,2032,
8180827,1,2033,832,1,
8181277,2724,16,0,671,
81821,2035,838,1,2037,
8183843,1,2039,848,1,
818432,2725,16,0,671,
81851,2041,854,1,2293,
81862726,16,0,671,1,
81872043,860,1,2045,865,
81881,41,2727,16,0,
8189671,1,1297,2728,16,
81900,671,1,43,2729,
819116,0,671,1,1803,
8192873,1,1804,2730,16,
81930,671,1,299,2731,
819416,0,671,1,52,
81952732,16,0,671,1,
81962318,2733,16,0,671,
81971,62,2734,16,0,
8198671,1,2075,2735,16,
81990,671,1,1574,885,
82001,71,2736,16,0,
8201671,1,76,2737,16,
82020,671,1,1834,2738,
820316,0,671,1,2337,
82042739,16,0,671,1,
820579,2740,16,0,671,
82061,1335,2741,16,0,
8207671,1,322,2742,16,
82080,671,1,85,2743,
820916,0,671,1,89,
82102744,16,0,671,1,
8211346,2745,16,0,671,
82121,2105,900,1,2106,
82132746,16,0,671,1,
821497,2747,16,0,671,
82151,1860,907,1,2364,
8216913,1,102,2748,16,
82170,671,1,112,2749,
821816,0,671,1,1117,
82192750,16,0,671,1,
82201873,921,1,1876,2751,
822116,0,671,1,124,
82222752,16,0,671,1,
82232136,928,1,381,2753,
822416,0,671,1,525,
82252754,16,0,671,1,
8226137,2755,16,0,671,
82271,1901,2756,16,0,
8228671,1,1153,2757,16,
82290,671,1,151,2758,
823016,0,671,1,1407,
82312759,16,0,671,1,
82321659,2760,16,0,671,
82331,2413,2761,16,0,
8234671,1,406,2762,16,
82350,671,1,1371,2763,
823616,0,671,1,166,
82372764,16,0,671,1,
82381622,2765,16,0,671,
82391,1931,946,1,1933,
82402766,16,0,671,1,
8241431,2767,16,0,671,
82421,1585,2768,16,0,
8243671,1,182,2769,16,
82440,671,1,1189,2770,
824516,0,671,1,1443,
82462771,16,0,671,1,
82471695,2772,16,0,671,
82481,2198,2773,16,0,
8249671,1,447,2774,16,
82500,671,1,2458,961,
82511,2459,967,1,1958,
82522775,16,0,671,1,
82532462,974,1,1657,979,
82541,2464,984,1,199,
82552776,16,0,671,1,
8256459,2777,16,0,671,
82571,462,2778,16,0,
8258671,1,217,2779,16,
82590,671,1,2227,993,
82601,1225,2780,16,0,
8261671,1,1479,2781,16,
82620,671,1,1731,2782,
826316,0,671,1,2740,
82642783,16,0,671,1,
82651989,1002,1,1990,2784,
826616,0,671,1,236,
82672785,16,0,671,1,
82681756,2786,16,0,671,
82691,28,2787,19,705,
82701,28,2788,5,60,
82711,328,1389,1,223,
82721619,1,1096,1399,1,
8273118,1442,1,883,1484,
82741,525,1302,1,1001,
82751674,1,130,1501,1,
8276459,1863,1,1114,1430,
82771,352,1436,1,447,
82781597,1,464,1856,1,
82791011,1188,1,1013,1345,
82801,242,1664,1,143,
82811506,1,40,1263,1,
828241,1830,1,42,1834,
82831,479,1645,1,44,
82841269,1,481,1865,1,
8285373,1496,1,47,1270,
82861,157,1529,1,49,
82871282,1,50,1287,1,
828848,1276,1,379,1473,
82891,380,1478,1,51,
82901292,1,476,1629,1,
8291371,1452,1,478,1669,
82921,1048,1431,1,375,
82931463,1,172,1555,1,
8294262,1205,1,283,1258,
82951,63,1308,1,67,
82961320,1,68,1325,1,
829769,1330,1,66,1315,
82981,461,2789,16,0,
8299703,1,74,1340,1,
8300377,1468,1,1002,1679,
83011,70,1335,1,188,
83021604,1,82,1367,1,
8303305,1297,1,477,1635,
83041,827,1418,1,93,
83051405,1,480,1650,1,
8306205,1609,1,942,1576,
83071,107,1425,1,29,
83082790,19,295,1,29,
83092791,5,84,1,1011,
83101188,1,1012,2792,16,
83110,293,1,1013,1345,
83121,262,1205,1,1267,
83132793,16,0,293,1,
8314515,2794,16,0,293,
83151,1521,2795,16,0,
8316293,1,525,1302,1,
8317283,1258,1,2299,2796,
831816,0,293,1,42,
83192797,16,0,293,1,
832040,1263,1,44,1269,
83211,47,1270,1,1303,
83222798,16,0,293,1,
83231555,2799,16,0,293,
83241,50,1287,1,48,
83251276,1,49,1282,1,
832651,1292,1,63,1308,
83271,305,1297,1,66,
83281315,1,67,1320,1,
832968,1325,1,69,1330,
83301,70,1335,1,73,
83312800,16,0,293,1,
833274,1340,1,328,1389,
83331,1048,1431,1,82,
83342801,16,0,293,1,
83351840,2802,16,0,293,
83361,1591,2803,16,0,
8337293,1,1341,2804,16,
83380,293,1,1096,1399,
83391,93,1405,1,352,
83401436,1,107,2805,16,
83410,293,1,1114,1430,
83421,118,1442,1,1123,
83432806,16,0,293,1,
8344371,1452,1,1628,2807,
834516,0,293,1,375,
83461463,1,1882,2808,16,
83470,293,1,377,1468,
83481,379,1473,1,380,
83491478,1,883,2809,16,
83500,293,1,373,1496,
83511,130,1501,1,143,
83521506,1,387,2810,16,
83530,293,1,1159,2811,
835416,0,293,1,157,
83551529,1,1413,2812,16,
83560,293,1,1665,2813,
835716,0,293,1,412,
83582814,16,0,293,1,
83591377,2815,16,0,293,
83601,172,1555,1,1939,
83612816,16,0,293,1,
8362437,2817,16,0,293,
83631,188,1604,1,942,
83641576,1,1195,2818,16,
83650,293,1,1449,2819,
836616,0,293,1,1701,
83672820,16,0,293,1,
8368447,1597,1,205,2821,
836916,0,293,1,827,
83702822,16,0,293,1,
8371223,2823,16,0,293,
83721,476,1629,1,477,
83731635,1,1231,2824,16,
83740,293,1,479,1645,
83751,480,1650,1,1485,
83762825,16,0,293,1,
83771737,2826,16,0,293,
83781,2746,2827,16,0,
8379293,1,242,2828,16,
83800,293,1,478,1669,
83811,1001,1674,1,1002,
83821679,1,30,2829,19,
8383282,1,30,2830,5,
838484,1,1011,1188,1,
83851012,2831,16,0,280,
83861,1013,1345,1,262,
83871205,1,1267,2832,16,
83880,280,1,515,2833,
838916,0,280,1,1521,
83902834,16,0,280,1,
8391525,1302,1,283,1258,
83921,2299,2835,16,0,
8393280,1,42,2836,16,
83940,280,1,40,1263,
83951,44,1269,1,47,
83961270,1,1303,2837,16,
83970,280,1,1555,2838,
839816,0,280,1,50,
83991287,1,48,1276,1,
840049,1282,1,51,1292,
84011,63,1308,1,305,
84021297,1,66,1315,1,
840367,1320,1,68,1325,
84041,69,1330,1,70,
84051335,1,73,2839,16,
84060,280,1,74,1340,
84071,328,1389,1,1048,
84081431,1,82,2840,16,
84090,280,1,1840,2841,
841016,0,280,1,1591,
84112842,16,0,280,1,
84121341,2843,16,0,280,
84131,1096,1399,1,93,
84141405,1,352,1436,1,
8415107,2844,16,0,280,
84161,1114,1430,1,118,
84171442,1,1123,2845,16,
84180,280,1,371,1452,
84191,1628,2846,16,0,
8420280,1,375,1463,1,
84211882,2847,16,0,280,
84221,377,1468,1,379,
84231473,1,380,1478,1,
8424883,2848,16,0,280,
84251,373,1496,1,130,
84261501,1,143,1506,1,
8427387,2849,16,0,280,
84281,1159,2850,16,0,
8429280,1,157,1529,1,
84301413,2851,16,0,280,
84311,1665,2852,16,0,
8432280,1,412,2853,16,
84330,280,1,1377,2854,
843416,0,280,1,172,
84351555,1,1939,2855,16,
84360,280,1,437,2856,
843716,0,280,1,188,
84381604,1,942,1576,1,
84391195,2857,16,0,280,
84401,1449,2858,16,0,
8441280,1,1701,2859,16,
84420,280,1,447,1597,
84431,205,2860,16,0,
8444280,1,827,2861,16,
84450,280,1,223,2862,
844616,0,280,1,476,
84471629,1,477,1635,1,
84481231,2863,16,0,280,
84491,479,1645,1,480,
84501650,1,1485,2864,16,
84510,280,1,1737,2865,
845216,0,280,1,2746,
84532866,16,0,280,1,
8454242,2867,16,0,280,
84551,478,1669,1,1001,
84561674,1,1002,1679,1,
845731,2868,19,268,1,
845831,2869,5,84,1,
84591011,1188,1,1012,2870,
846016,0,266,1,1013,
84611345,1,262,1205,1,
84621267,2871,16,0,266,
84631,515,2872,16,0,
8464266,1,1521,2873,16,
84650,266,1,525,1302,
84661,283,1258,1,2299,
84672874,16,0,266,1,
846842,2875,16,0,266,
84691,40,1263,1,44,
84701269,1,47,1270,1,
84711303,2876,16,0,266,
84721,1555,2877,16,0,
8473266,1,50,1287,1,
847448,1276,1,49,1282,
84751,51,1292,1,63,
84761308,1,305,1297,1,
847766,1315,1,67,1320,
84781,68,1325,1,69,
84791330,1,70,1335,1,
848073,2878,16,0,266,
84811,74,1340,1,328,
84821389,1,1048,1431,1,
848382,2879,16,0,266,
84841,1840,2880,16,0,
8485266,1,1591,2881,16,
84860,266,1,1341,2882,
848716,0,266,1,1096,
84881399,1,93,1405,1,
8489352,1436,1,107,2883,
849016,0,266,1,1114,
84911430,1,118,1442,1,
84921123,2884,16,0,266,
84931,371,1452,1,1628,
84942885,16,0,266,1,
8495375,1463,1,1882,2886,
849616,0,266,1,377,
84971468,1,379,1473,1,
8498380,1478,1,883,2887,
849916,0,266,1,373,
85001496,1,130,1501,1,
8501143,2888,16,0,266,
85021,387,2889,16,0,
8503266,1,1159,2890,16,
85040,266,1,157,2891,
850516,0,266,1,1413,
85062892,16,0,266,1,
85071665,2893,16,0,266,
85081,412,2894,16,0,
8509266,1,1377,2895,16,
85100,266,1,172,1555,
85111,1939,2896,16,0,
8512266,1,437,2897,16,
85130,266,1,188,1604,
85141,942,1576,1,1195,
85152898,16,0,266,1,
85161449,2899,16,0,266,
85171,1701,2900,16,0,
8518266,1,447,1597,1,
8519205,2901,16,0,266,
85201,827,2902,16,0,
8521266,1,223,2903,16,
85220,266,1,476,1629,
85231,477,1635,1,1231,
85242904,16,0,266,1,
8525479,1645,1,480,1650,
85261,1485,2905,16,0,
8527266,1,1737,2906,16,
85280,266,1,2746,2907,
852916,0,266,1,242,
85302908,16,0,266,1,
8531478,1669,1,1001,1674,
85321,1002,1679,1,32,
85332909,19,261,1,32,
85342910,5,84,1,1011,
85351188,1,1012,2911,16,
85360,259,1,1013,1345,
85371,262,1205,1,1267,
85382912,16,0,259,1,
8539515,2913,16,0,259,
85401,1521,2914,16,0,
8541259,1,525,1302,1,
8542283,1258,1,2299,2915,
854316,0,259,1,42,
85442916,16,0,259,1,
854540,1263,1,44,1269,
85461,47,1270,1,1303,
85472917,16,0,259,1,
85481555,2918,16,0,259,
85491,50,1287,1,48,
85501276,1,49,1282,1,
855151,1292,1,63,1308,
85521,305,1297,1,66,
85531315,1,67,1320,1,
855468,1325,1,69,1330,
85551,70,1335,1,73,
85562919,16,0,259,1,
855774,1340,1,328,1389,
85581,1048,1431,1,82,
85592920,16,0,259,1,
85601840,2921,16,0,259,
85611,1591,2922,16,0,
8562259,1,1341,2923,16,
85630,259,1,1096,1399,
85641,93,1405,1,352,
85651436,1,107,2924,16,
85660,259,1,1114,1430,
85671,118,1442,1,1123,
85682925,16,0,259,1,
8569371,1452,1,1628,2926,
857016,0,259,1,375,
85711463,1,1882,2927,16,
85720,259,1,377,1468,
85731,379,1473,1,380,
85741478,1,883,2928,16,
85750,259,1,373,1496,
85761,130,1501,1,143,
85772929,16,0,259,1,
8578387,2930,16,0,259,
85791,1159,2931,16,0,
8580259,1,157,2932,16,
85810,259,1,1413,2933,
858216,0,259,1,1665,
85832934,16,0,259,1,
8584412,2935,16,0,259,
85851,1377,2936,16,0,
8586259,1,172,1555,1,
85871939,2937,16,0,259,
85881,437,2938,16,0,
8589259,1,188,1604,1,
8590942,1576,1,1195,2939,
859116,0,259,1,1449,
85922940,16,0,259,1,
85931701,2941,16,0,259,
85941,447,1597,1,205,
85952942,16,0,259,1,
8596827,2943,16,0,259,
85971,223,2944,16,0,
8598259,1,476,1629,1,
8599477,1635,1,1231,2945,
860016,0,259,1,479,
86011645,1,480,1650,1,
86021485,2946,16,0,259,
86031,1737,2947,16,0,
8604259,1,2746,2948,16,
86050,259,1,242,2949,
860616,0,259,1,478,
86071669,1,1001,1674,1,
86081002,1679,1,33,2950,
860919,346,1,33,2951,
86105,84,1,1011,1188,
86111,1012,2952,16,0,
8612344,1,1013,1345,1,
8613262,1205,1,1267,2953,
861416,0,344,1,515,
86152954,16,0,344,1,
86161521,2955,16,0,344,
86171,525,1302,1,283,
86181258,1,2299,2956,16,
86190,344,1,42,2957,
862016,0,344,1,40,
86211263,1,44,1269,1,
862247,1270,1,1303,2958,
862316,0,344,1,1555,
86242959,16,0,344,1,
862550,1287,1,48,1276,
86261,49,1282,1,51,
86271292,1,63,1308,1,
8628305,1297,1,66,1315,
86291,67,1320,1,68,
86301325,1,69,1330,1,
863170,1335,1,73,2960,
863216,0,344,1,74,
86331340,1,328,1389,1,
86341048,1431,1,82,2961,
863516,0,344,1,1840,
86362962,16,0,344,1,
86371591,2963,16,0,344,
86381,1341,2964,16,0,
8639344,1,1096,1399,1,
864093,1405,1,352,1436,
86411,107,2965,16,0,
8642344,1,1114,1430,1,
8643118,1442,1,1123,2966,
864416,0,344,1,371,
86451452,1,1628,2967,16,
86460,344,1,375,1463,
86471,1882,2968,16,0,
8648344,1,377,1468,1,
8649379,1473,1,380,1478,
86501,883,2969,16,0,
8651344,1,373,1496,1,
8652130,1501,1,143,1506,
86531,387,2970,16,0,
8654344,1,1159,2971,16,
86550,344,1,157,1529,
86561,1413,2972,16,0,
8657344,1,1665,2973,16,
86580,344,1,412,2974,
865916,0,344,1,1377,
86602975,16,0,344,1,
8661172,1555,1,1939,2976,
866216,0,344,1,437,
86632977,16,0,344,1,
8664188,1604,1,942,1576,
86651,1195,2978,16,0,
8666344,1,1449,2979,16,
86670,344,1,1701,2980,
866816,0,344,1,447,
86691597,1,205,2981,16,
86700,344,1,827,2982,
867116,0,344,1,223,
86722983,16,0,344,1,
8673476,1629,1,477,1635,
86741,1231,2984,16,0,
8675344,1,479,1645,1,
8676480,1650,1,1485,2985,
867716,0,344,1,1737,
86782986,16,0,344,1,
86792746,2987,16,0,344,
86801,242,1664,1,478,
86811669,1,1001,1674,1,
86821002,1679,1,34,2988,
868319,336,1,34,2989,
86845,84,1,1011,1188,
86851,1012,2990,16,0,
8686334,1,1013,1345,1,
8687262,1205,1,1267,2991,
868816,0,334,1,515,
86892992,16,0,334,1,
86901521,2993,16,0,334,
86911,525,1302,1,283,
86921258,1,2299,2994,16,
86930,334,1,42,2995,
869416,0,334,1,40,
86951263,1,44,1269,1,
869647,1270,1,1303,2996,
869716,0,334,1,1555,
86982997,16,0,334,1,
869950,1287,1,48,1276,
87001,49,1282,1,51,
87011292,1,63,1308,1,
8702305,1297,1,66,1315,
87031,67,1320,1,68,
87041325,1,69,1330,1,
870570,1335,1,73,2998,
870616,0,334,1,74,
87071340,1,328,1389,1,
87081048,1431,1,82,2999,
870916,0,334,1,1840,
87103000,16,0,334,1,
87111591,3001,16,0,334,
87121,1341,3002,16,0,
8713334,1,1096,1399,1,
871493,1405,1,352,1436,
87151,107,3003,16,0,
8716334,1,1114,1430,1,
8717118,1442,1,1123,3004,
871816,0,334,1,371,
87191452,1,1628,3005,16,
87200,334,1,375,1463,
87211,1882,3006,16,0,
8722334,1,377,1468,1,
8723379,1473,1,380,1478,
87241,883,3007,16,0,
8725334,1,373,1496,1,
8726130,1501,1,143,1506,
87271,387,3008,16,0,
8728334,1,1159,3009,16,
87290,334,1,157,1529,
87301,1413,3010,16,0,
8731334,1,1665,3011,16,
87320,334,1,412,3012,
873316,0,334,1,1377,
87343013,16,0,334,1,
8735172,1555,1,1939,3014,
873616,0,334,1,437,
87373015,16,0,334,1,
8738188,1604,1,942,1576,
87391,1195,3016,16,0,
8740334,1,1449,3017,16,
87410,334,1,1701,3018,
874216,0,334,1,447,
87431597,1,205,1609,1,
8744827,3019,16,0,334,
87451,223,1619,1,476,
87461629,1,477,1635,1,
87471231,3020,16,0,334,
87481,479,1645,1,480,
87491650,1,1485,3021,16,
87500,334,1,1737,3022,
875116,0,334,1,2746,
87523023,16,0,334,1,
8753242,1664,1,478,1669,
87541,1001,1674,1,1002,
87551679,1,35,3024,19,
8756326,1,35,3025,5,
875784,1,1011,1188,1,
87581012,3026,16,0,324,
87591,1013,1345,1,262,
87601205,1,1267,3027,16,
87610,324,1,515,3028,
876216,0,324,1,1521,
87633029,16,0,324,1,
8764525,1302,1,283,1258,
87651,2299,3030,16,0,
8766324,1,42,3031,16,
87670,324,1,40,1263,
87681,44,1269,1,47,
87691270,1,1303,3032,16,
87700,324,1,1555,3033,
877116,0,324,1,50,
87721287,1,48,1276,1,
877349,1282,1,51,1292,
87741,63,1308,1,305,
87751297,1,66,1315,1,
877667,1320,1,68,1325,
87771,69,1330,1,70,
87781335,1,73,3034,16,
87790,324,1,74,1340,
87801,328,1389,1,1048,
87811431,1,82,3035,16,
87820,324,1,1840,3036,
878316,0,324,1,1591,
87843037,16,0,324,1,
87851341,3038,16,0,324,
87861,1096,1399,1,93,
87871405,1,352,1436,1,
8788107,3039,16,0,324,
87891,1114,1430,1,118,
87901442,1,1123,3040,16,
87910,324,1,371,1452,
87921,1628,3041,16,0,
8793324,1,375,1463,1,
87941882,3042,16,0,324,
87951,377,1468,1,379,
87961473,1,380,1478,1,
8797883,3043,16,0,324,
87981,373,1496,1,130,
87991501,1,143,1506,1,
8800387,3044,16,0,324,
88011,1159,3045,16,0,
8802324,1,157,1529,1,
88031413,3046,16,0,324,
88041,1665,3047,16,0,
8805324,1,412,3048,16,
88060,324,1,1377,3049,
880716,0,324,1,172,
88081555,1,1939,3050,16,
88090,324,1,437,3051,
881016,0,324,1,188,
88111604,1,942,1576,1,
88121195,3052,16,0,324,
88131,1449,3053,16,0,
8814324,1,1701,3054,16,
88150,324,1,447,1597,
88161,205,1609,1,827,
88173055,16,0,324,1,
8818223,3056,16,0,324,
88191,476,1629,1,477,
88201635,1,1231,3057,16,
88210,324,1,479,1645,
88221,480,1650,1,1485,
88233058,16,0,324,1,
88241737,3059,16,0,324,
88251,2746,3060,16,0,
8826324,1,242,1664,1,
8827478,1669,1,1001,1674,
88281,1002,1679,1,36,
88293061,19,227,1,36,
88303062,5,94,1,256,
88313063,16,0,225,1,
88321261,3064,16,0,225,
88331,509,3065,16,0,
8834225,1,1515,3066,16,
88350,225,1,2021,804,
88361,1775,3067,16,0,
8837225,1,2029,811,1,
88382030,817,1,2031,822,
88391,2032,827,1,2033,
8840832,1,277,3068,16,
88410,225,1,2035,838,
88421,2037,843,1,2039,
8843848,1,32,3069,16,
88440,225,1,2041,854,
88451,2293,3070,16,0,
8846225,1,2043,860,1,
88472045,865,1,41,3071,
884816,0,225,1,1297,
88493072,16,0,225,1,
885043,3073,16,0,225,
88511,1803,873,1,1804,
88523074,16,0,225,1,
8853299,3075,16,0,225,
88541,52,3076,16,0,
8855225,1,2318,3077,16,
88560,225,1,2075,3078,
885716,0,225,1,1574,
8858885,1,71,3079,16,
88590,225,1,76,3080,
886016,0,225,1,1834,
88613081,16,0,225,1,
88622337,3082,16,0,225,
88631,79,3083,16,0,
8864225,1,1335,3084,16,
88650,225,1,322,3085,
886616,0,225,1,85,
88673086,16,0,225,1,
886889,3087,16,0,225,
88691,346,3088,16,0,
8870225,1,2105,900,1,
88712106,3089,16,0,225,
88721,97,3090,16,0,
8873225,1,1860,907,1,
88742364,913,1,102,3091,
887516,0,225,1,112,
88763092,16,0,225,1,
88771117,3093,16,0,225,
88781,1873,921,1,1876,
88793094,16,0,225,1,
8880124,3095,16,0,225,
88811,2136,928,1,381,
88823096,16,0,225,1,
8883525,3097,16,0,225,
88841,137,3098,16,0,
8885225,1,1901,3099,16,
88860,225,1,1153,3100,
888716,0,225,1,151,
88883101,16,0,225,1,
88891407,3102,16,0,225,
88901,1659,3103,16,0,
8891225,1,2413,3104,16,
88920,225,1,406,3105,
889316,0,225,1,1371,
88943106,16,0,225,1,
8895166,3107,16,0,225,
88961,1622,3108,16,0,
8897225,1,1931,946,1,
88981933,3109,16,0,225,
88991,431,3110,16,0,
8900225,1,1585,3111,16,
89010,225,1,182,3112,
890216,0,225,1,1189,
89033113,16,0,225,1,
89041443,3114,16,0,225,
89051,1695,3115,16,0,
8906225,1,2198,3116,16,
89070,225,1,447,3117,
890816,0,225,1,2458,
8909961,1,2459,967,1,
89101958,3118,16,0,225,
89111,2462,974,1,1657,
8912979,1,2464,984,1,
8913199,3119,16,0,225,
89141,459,3120,16,0,
8915225,1,462,3121,16,
89160,225,1,217,3122,
891716,0,225,1,2227,
8918993,1,1225,3123,16,
89190,225,1,1479,3124,
892016,0,225,1,1731,
89213125,16,0,225,1,
89222740,3126,16,0,225,
89231,1989,1002,1,1990,
89243127,16,0,225,1,
8925236,3128,16,0,225,
89261,1756,3129,16,0,
8927225,1,37,3130,19,
8928251,1,37,3131,5,
892994,1,256,3132,16,
89300,249,1,1261,3133,
893116,0,249,1,509,
89323134,16,0,249,1,
89331515,3135,16,0,249,
89341,2021,804,1,1775,
89353136,16,0,249,1,
89362029,811,1,2030,817,
89371,2031,822,1,2032,
8938827,1,2033,832,1,
8939277,3137,16,0,249,
89401,2035,838,1,2037,
8941843,1,2039,848,1,
894232,3138,16,0,249,
89431,2041,854,1,2293,
89443139,16,0,249,1,
89452043,860,1,2045,865,
89461,41,3140,16,0,
8947249,1,1297,3141,16,
89480,249,1,43,3142,
894916,0,249,1,1803,
8950873,1,1804,3143,16,
89510,249,1,299,3144,
895216,0,249,1,52,
89533145,16,0,249,1,
89542318,3146,16,0,249,
89551,2075,3147,16,0,
8956249,1,1574,885,1,
895771,3148,16,0,249,
89581,76,3149,16,0,
8959249,1,1834,3150,16,
89600,249,1,2337,3151,
896116,0,249,1,79,
89623152,16,0,249,1,
89631335,3153,16,0,249,
89641,322,3154,16,0,
8965249,1,85,3155,16,
89660,249,1,89,3156,
896716,0,249,1,346,
89683157,16,0,249,1,
89692105,900,1,2106,3158,
897016,0,249,1,97,
89713159,16,0,249,1,
89721860,907,1,2364,913,
89731,102,3160,16,0,
8974249,1,112,3161,16,
89750,249,1,1117,3162,
897616,0,249,1,1873,
8977921,1,1876,3163,16,
89780,249,1,124,3164,
897916,0,249,1,2136,
8980928,1,381,3165,16,
89810,249,1,525,3166,
898216,0,249,1,137,
89833167,16,0,249,1,
89841901,3168,16,0,249,
89851,1153,3169,16,0,
8986249,1,151,3170,16,
89870,249,1,1407,3171,
898816,0,249,1,1659,
89893172,16,0,249,1,
89902413,3173,16,0,249,
89911,406,3174,16,0,
8992249,1,1371,3175,16,
89930,249,1,166,3176,
899416,0,249,1,1622,
89953177,16,0,249,1,
89961931,946,1,1933,3178,
899716,0,249,1,431,
89983179,16,0,249,1,
89991585,3180,16,0,249,
90001,182,3181,16,0,
9001249,1,1189,3182,16,
90020,249,1,1443,3183,
900316,0,249,1,1695,
90043184,16,0,249,1,
90052198,3185,16,0,249,
90061,447,3186,16,0,
9007249,1,2458,961,1,
90082459,967,1,1958,3187,
900916,0,249,1,2462,
9010974,1,1657,979,1,
90112464,984,1,199,3188,
901216,0,249,1,459,
90133189,16,0,249,1,
9014462,3190,16,0,249,
90151,217,3191,16,0,
9016249,1,2227,993,1,
90171225,3192,16,0,249,
90181,1479,3193,16,0,
9019249,1,1731,3194,16,
90200,249,1,2740,3195,
902116,0,249,1,1989,
90221002,1,1990,3196,16,
90230,249,1,236,3197,
902416,0,249,1,1756,
90253198,16,0,249,1,
902638,3199,19,247,1,
902738,3200,5,84,1,
90281011,1188,1,1012,3201,
902916,0,245,1,1013,
90301345,1,262,1205,1,
90311267,3202,16,0,245,
90321,515,3203,16,0,
9033245,1,1521,3204,16,
90340,245,1,525,1302,
90351,283,1258,1,2299,
90363205,16,0,245,1,
903742,3206,16,0,245,
90381,40,1263,1,44,
90391269,1,47,1270,1,
90401303,3207,16,0,245,
90411,1555,3208,16,0,
9042245,1,50,1287,1,
904348,1276,1,49,1282,
90441,51,1292,1,63,
90451308,1,305,1297,1,
904666,1315,1,67,1320,
90471,68,1325,1,69,
90481330,1,70,1335,1,
904973,3209,16,0,245,
90501,74,1340,1,328,
90511389,1,1048,1431,1,
905282,3210,16,0,245,
90531,1840,3211,16,0,
9054245,1,1591,3212,16,
90550,245,1,1341,3213,
905616,0,245,1,1096,
90571399,1,93,1405,1,
9058352,1436,1,107,3214,
905916,0,245,1,1114,
90601430,1,118,1442,1,
90611123,3215,16,0,245,
90621,371,1452,1,1628,
90633216,16,0,245,1,
9064375,1463,1,1882,3217,
906516,0,245,1,377,
90661468,1,379,1473,1,
9067380,1478,1,883,1484,
90681,373,1496,1,130,
90691501,1,143,1506,1,
9070387,3218,16,0,245,
90711,1159,3219,16,0,
9072245,1,157,1529,1,
90731413,3220,16,0,245,
90741,1665,3221,16,0,
9075245,1,412,3222,16,
90760,245,1,1377,3223,
907716,0,245,1,172,
90781555,1,1939,3224,16,
90790,245,1,437,3225,
908016,0,245,1,188,
90811604,1,942,1576,1,
90821195,3226,16,0,245,
90831,1449,3227,16,0,
9084245,1,1701,3228,16,
90850,245,1,447,1597,
90861,205,1609,1,827,
90871418,1,223,1619,1,
9088476,1629,1,477,1635,
90891,1231,3229,16,0,
9090245,1,479,1645,1,
9091480,1650,1,1485,3230,
909216,0,245,1,1737,
90933231,16,0,245,1,
90942746,3232,16,0,245,
90951,242,1664,1,478,
90961669,1,1001,1674,1,
90971002,1679,1,39,3233,
909819,233,1,39,3234,
90995,84,1,1011,1188,
91001,1012,3235,16,0,
9101231,1,1013,1345,1,
9102262,1205,1,1267,3236,
910316,0,231,1,515,
91043237,16,0,231,1,
91051521,3238,16,0,231,
91061,525,1302,1,283,
91071258,1,2299,3239,16,
91080,231,1,42,3240,
910916,0,231,1,40,
91101263,1,44,1269,1,
911147,1270,1,1303,3241,
911216,0,231,1,1555,
91133242,16,0,231,1,
911450,1287,1,48,1276,
91151,49,1282,1,51,
91161292,1,63,1308,1,
9117305,1297,1,66,1315,
91181,67,1320,1,68,
91191325,1,69,1330,1,
912070,1335,1,73,3243,
912116,0,231,1,74,
91221340,1,328,1389,1,
91231048,1431,1,82,3244,
912416,0,231,1,1840,
91253245,16,0,231,1,
91261591,3246,16,0,231,
91271,1341,3247,16,0,
9128231,1,1096,1399,1,
912993,1405,1,352,1436,
91301,107,3248,16,0,
9131231,1,1114,1430,1,
9132118,1442,1,1123,3249,
913316,0,231,1,371,
91341452,1,1628,3250,16,
91350,231,1,375,1463,
91361,1882,3251,16,0,
9137231,1,377,1468,1,
9138379,1473,1,380,1478,
91391,883,1484,1,373,
91401496,1,130,1501,1,
9141143,1506,1,387,3252,
914216,0,231,1,1159,
91433253,16,0,231,1,
9144157,1529,1,1413,3254,
914516,0,231,1,1665,
91463255,16,0,231,1,
9147412,3256,16,0,231,
91481,1377,3257,16,0,
9149231,1,172,1555,1,
91501939,3258,16,0,231,
91511,437,3259,16,0,
9152231,1,188,1604,1,
9153942,1576,1,1195,3260,
915416,0,231,1,1449,
91553261,16,0,231,1,
91561701,3262,16,0,231,
91571,447,1597,1,205,
91581609,1,827,1418,1,
9159223,1619,1,476,1629,
91601,477,1635,1,1231,
91613263,16,0,231,1,
9162479,1645,1,480,1650,
91631,1485,3264,16,0,
9164231,1,1737,3265,16,
91650,231,1,2746,3266,
916616,0,231,1,242,
91671664,1,478,1669,1,
91681001,1674,1,1002,1679,
91691,40,3267,19,221,
91701,40,3268,5,84,
91711,1011,1188,1,1012,
91723269,16,0,219,1,
91731013,1345,1,262,1205,
91741,1267,3270,16,0,
9175219,1,515,3271,16,
91760,219,1,1521,3272,
917716,0,219,1,525,
91781302,1,283,1258,1,
91792299,3273,16,0,219,
91801,42,3274,16,0,
9181219,1,40,1263,1,
918244,1269,1,47,1270,
91831,1303,3275,16,0,
9184219,1,1555,3276,16,
91850,219,1,50,1287,
91861,48,1276,1,49,
91871282,1,51,1292,1,
918863,1308,1,305,1297,
91891,66,1315,1,67,
91901320,1,68,1325,1,
919169,1330,1,70,1335,
91921,73,3277,16,0,
9193219,1,74,1340,1,
9194328,1389,1,1048,1431,
91951,82,3278,16,0,
9196219,1,1840,3279,16,
91970,219,1,1591,3280,
919816,0,219,1,1341,
91993281,16,0,219,1,
92001096,1399,1,93,1405,
92011,352,1436,1,107,
92023282,16,0,219,1,
92031114,1430,1,118,3283,
920416,0,219,1,1123,
92053284,16,0,219,1,
9206371,1452,1,1628,3285,
920716,0,219,1,375,
92081463,1,1882,3286,16,
92090,219,1,377,1468,
92101,379,1473,1,380,
92111478,1,883,3287,16,
92120,219,1,373,1496,
92131,130,3288,16,0,
9214219,1,143,3289,16,
92150,219,1,387,3290,
921616,0,219,1,1159,
92173291,16,0,219,1,
9218157,3292,16,0,219,
92191,1413,3293,16,0,
9220219,1,1665,3294,16,
92210,219,1,412,3295,
922216,0,219,1,1377,
92233296,16,0,219,1,
9224172,3297,16,0,219,
92251,1939,3298,16,0,
9226219,1,437,3299,16,
92270,219,1,188,3300,
922816,0,219,1,942,
92291576,1,1195,3301,16,
92300,219,1,1449,3302,
923116,0,219,1,1701,
92323303,16,0,219,1,
9233447,1597,1,205,3304,
923416,0,219,1,827,
92353305,16,0,219,1,
9236223,3306,16,0,219,
92371,476,1629,1,477,
92381635,1,1231,3307,16,
92390,219,1,479,1645,
92401,480,1650,1,1485,
92413308,16,0,219,1,
92421737,3309,16,0,219,
92431,2746,3310,16,0,
9244219,1,242,3311,16,
92450,219,1,478,1669,
92461,1001,1674,1,1002,
92471679,1,41,3312,19,
9248183,1,41,3313,5,
924984,1,1011,1188,1,
92501012,3314,16,0,181,
92511,1013,1345,1,262,
92521205,1,1267,3315,16,
92530,181,1,515,3316,
925416,0,181,1,1521,
92553317,16,0,181,1,
9256525,1302,1,283,1258,
92571,2299,3318,16,0,
9258181,1,42,3319,16,
92590,181,1,40,1263,
92601,44,1269,1,47,
92611270,1,1303,3320,16,
92620,181,1,1555,3321,
926316,0,181,1,50,
92641287,1,48,1276,1,
926549,1282,1,51,1292,
92661,63,1308,1,305,
92671297,1,66,1315,1,
926867,1320,1,68,1325,
92691,69,1330,1,70,
92701335,1,73,3322,16,
92710,181,1,74,1340,
92721,328,1389,1,1048,
92731431,1,82,3323,16,
92740,181,1,1840,3324,
927516,0,181,1,1591,
92763325,16,0,181,1,
92771341,3326,16,0,181,
92781,1096,1399,1,93,
92791405,1,352,1436,1,
9280107,3327,16,0,181,
92811,1114,1430,1,118,
92823328,16,0,181,1,
92831123,3329,16,0,181,
92841,371,1452,1,1628,
92853330,16,0,181,1,
9286375,1463,1,1882,3331,
928716,0,181,1,377,
92881468,1,379,1473,1,
9289380,1478,1,883,3332,
929016,0,181,1,373,
92911496,1,130,3333,16,
92920,181,1,143,3334,
929316,0,181,1,387,
92943335,16,0,181,1,
92951159,3336,16,0,181,
92961,157,3337,16,0,
9297181,1,1413,3338,16,
92980,181,1,1665,3339,
929916,0,181,1,412,
93003340,16,0,181,1,
93011377,3341,16,0,181,
93021,172,3342,16,0,
9303181,1,1939,3343,16,
93040,181,1,437,3344,
930516,0,181,1,188,
93063345,16,0,181,1,
9307942,1576,1,1195,3346,
930816,0,181,1,1449,
93093347,16,0,181,1,
93101701,3348,16,0,181,
93111,447,1597,1,205,
93123349,16,0,181,1,
9313827,3350,16,0,181,
93141,223,3351,16,0,
9315181,1,476,1629,1,
9316477,1635,1,1231,3352,
931716,0,181,1,479,
93181645,1,480,1650,1,
93191485,3353,16,0,181,
93201,1737,3354,16,0,
9321181,1,2746,3355,16,
93220,181,1,242,3356,
932316,0,181,1,478,
93241669,1,1001,1674,1,
93251002,1679,1,42,3357,
932619,406,1,42,3358,
93275,38,1,1901,3359,
932816,0,404,1,2075,
93293360,16,0,404,1,
93301860,907,1,1803,873,
93311,1804,3361,16,0,
9332404,1,2413,3362,16,
93330,404,1,2198,3363,
933416,0,404,1,1873,
9335921,1,1657,979,1,
93361989,1002,1,1990,3364,
933716,0,404,1,1775,
93383365,16,0,404,1,
933932,3366,16,0,404,
93401,2105,900,1,2106,
93413367,16,0,404,1,
93422364,913,1,2227,993,
93431,2337,3368,16,0,
9344404,1,2021,804,1,
93452458,961,1,2459,967,
93461,2462,974,1,2136,
9347928,1,2464,984,1,
93482029,811,1,2030,817,
93491,2031,822,1,2032,
9350827,1,2033,832,1,
93512035,838,1,2037,843,
93521,2039,848,1,1931,
9353946,1,2041,854,1,
93542043,860,1,2045,865,
93551,1574,885,1,1958,
93563369,16,0,404,1,
935743,3370,19,507,1,
935843,3371,5,25,1,
93592035,838,1,2037,843,
93601,2039,848,1,2041,
9361854,1,2227,993,1,
93622043,860,1,1657,979,
93631,1860,907,1,2136,
9364928,1,2021,804,1,
93652459,967,1,1574,885,
93661,2105,3372,16,0,
9367654,1,1931,946,1,
93681873,921,1,2031,822,
93691,1803,873,1,1989,
93703373,16,0,505,1,
93712464,984,1,2029,811,
93721,2030,817,1,2364,
9373913,1,2032,827,1,
93742033,832,1,2045,865,
93751,44,3374,19,278,
93761,44,3375,5,38,
93771,1901,3376,16,0,
9378276,1,2075,3377,16,
93790,276,1,1860,907,
93801,1803,873,1,1804,
93813378,16,0,276,1,
93822413,3379,16,0,276,
93831,2198,3380,16,0,
9384276,1,1873,921,1,
93851657,979,1,1989,1002,
93861,1990,3381,16,0,
9387276,1,1775,3382,16,
93880,276,1,32,3383,
938916,0,276,1,2105,
9390900,1,2106,3384,16,
93910,276,1,2364,913,
93921,2227,993,1,2337,
93933385,16,0,276,1,
93942021,804,1,2458,961,
93951,2459,967,1,2462,
9396974,1,2136,928,1,
93972464,984,1,2029,811,
93981,2030,817,1,2031,
9399822,1,2032,827,1,
94002033,832,1,2035,838,
94011,2037,843,1,2039,
9402848,1,1931,946,1,
94032041,854,1,2043,860,
94041,2045,865,1,1574,
9405885,1,1958,3386,16,
94060,276,1,45,3387,
940719,303,1,45,3388,
94085,39,1,1901,3389,
940916,0,330,1,2075,
94103390,16,0,330,1,
94111860,907,1,1803,873,
94121,1804,3391,16,0,
9413330,1,2413,3392,16,
94140,330,1,2198,3393,
941516,0,330,1,1873,
9416921,1,1657,979,1,
94171989,1002,1,1990,3394,
941816,0,330,1,1775,
94193395,16,0,330,1,
942032,3396,16,0,330,
94211,2105,900,1,2106,
94223397,16,0,330,1,
94232364,913,1,2227,993,
94241,2337,3398,16,0,
9425330,1,2021,804,1,
94262458,961,1,2459,967,
94271,2462,974,1,2136,
9428928,1,2464,984,1,
94292029,811,1,2030,817,
94301,2031,822,1,2032,
9431827,1,2033,832,1,
94322035,838,1,2037,843,
94331,2039,848,1,1931,
9434946,1,2041,854,1,
94352043,860,1,2045,865,
94361,1832,3399,16,0,
9437301,1,1574,885,1,
94381958,3400,16,0,330,
94391,46,3401,19,752,
94401,46,3402,5,38,
94411,1901,3403,16,0,
9442750,1,2075,3404,16,
94430,750,1,1860,907,
94441,1803,873,1,1804,
94453405,16,0,750,1,
94462413,3406,16,0,750,
94471,2198,3407,16,0,
9448750,1,1873,921,1,
94491657,979,1,1989,1002,
94501,1990,3408,16,0,
9451750,1,1775,3409,16,
94520,750,1,32,3410,
945316,0,750,1,2105,
9454900,1,2106,3411,16,
94550,750,1,2364,913,
94561,2227,993,1,2337,
94573412,16,0,750,1,
94582021,804,1,2458,961,
94591,2459,967,1,2462,
9460974,1,2136,928,1,
94612464,984,1,2029,811,
94621,2030,817,1,2031,
9463822,1,2032,827,1,
94642033,832,1,2035,838,
94651,2037,843,1,2039,
9466848,1,1931,946,1,
94672041,854,1,2043,860,
94681,2045,865,1,1574,
9469885,1,1958,3413,16,
94700,750,1,47,3414,
947119,625,1,47,3415,
94725,19,1,0,3416,
947316,0,623,1,2776,
94743417,17,3418,15,3419,
94754,52,37,0,71,
94760,108,0,111,0,
947798,0,97,0,108,
94780,86,0,97,0,
9479114,0,105,0,97,
94800,98,0,108,0,
9481101,0,68,0,101,
94820,99,0,108,0,
948397,0,114,0,97,
94840,116,0,105,0,
9485111,0,110,0,1,
9486-1,1,5,3420,20,
94873421,4,54,71,0,
9488108,0,111,0,98,
94890,97,0,108,0,
949086,0,97,0,114,
94910,105,0,97,0,
949298,0,108,0,101,
94930,68,0,101,0, 75670,68,0,101,0,
949499,0,108,0,97, 756899,0,108,0,97,
94950,114,0,97,0, 75690,114,0,97,0,
9496116,0,105,0,111, 7570116,0,105,0,111,
94970,110,0,95,0, 75710,110,0,76,0,
949849,0,1,166,1, 7572105,0,115,0,116,
94993,1,3,1,2, 75730,95,0,49,0,
95003422,22,1,7,1, 75741,200,1,3,1,
95012777,3423,16,0,623, 75752,1,1,2281,22,
95021,2711,765,1,2788, 75761,39,1,205,1627,
95033424,16,0,623,1, 75771,2467,1892,1,2557,
95042722,788,1,2022,3425, 75782282,16,0,534,1,
950516,0,645,1,2459, 7579464,1898,1,2197,2283,
9506967,1,2795,3426,17, 758016,0,763,1,1224,
95073427,15,3428,4,36, 75811632,1,223,1637,1,
950837,0,71,0,108, 75821730,1642,1,476,1647,
75831,477,1653,1,1231,
75841658,1,479,1663,1,
7585480,1668,1,1485,1674,
75861,2745,1903,1,459,
75871905,1,242,1681,1,
7588478,1686,1,2754,2284,
758916,0,362,1,481,
75901908,1,1001,1691,1,
75912508,1913,1,18,2285,
759219,566,1,18,2286,
75935,84,1,2767,2287,
759416,0,564,1,1011,
75951207,1,1012,2288,16,
75960,564,1,1013,1363,
75971,262,1224,1,1267,
75982289,16,0,564,1,
7599515,2290,16,0,564,
76001,1521,2291,16,0,
7601564,1,525,1321,1,
7602283,1277,1,2299,2292,
760316,0,564,1,42,
76042293,16,0,564,1,
760540,1282,1,44,1288,
76061,47,1289,1,1303,
76072294,16,0,564,1,
76081555,2295,16,0,564,
76091,50,1306,1,48,
76101295,1,49,1301,1,
761151,1311,1,63,1327,
76121,305,1316,1,66,
76131333,1,67,1338,1,
761468,1343,1,69,1348,
76151,70,1353,1,73,
76162296,16,0,564,1,
761774,1358,1,328,1407,
76181,1048,2297,16,0,
7619564,1,82,2298,16,
76200,564,1,1840,2299,
762116,0,564,1,1591,
76222300,16,0,564,1,
76231341,2301,16,0,564,
76241,1096,1417,1,93,
76251423,1,352,1454,1,
7626107,2302,16,0,564,
76271,1114,1448,1,118,
76282303,16,0,564,1,
76291123,2304,16,0,564,
76301,371,1470,1,1628,
76312305,16,0,564,1,
7632375,1481,1,1882,2306,
763316,0,564,1,377,
76341486,1,379,1491,1,
7635380,1496,1,883,2307,
763616,0,564,1,373,
76371514,1,130,2308,16,
76380,564,1,143,2309,
763916,0,564,1,387,
76402310,16,0,564,1,
76411159,2311,16,0,564,
76421,157,2312,16,0,
7643564,1,1413,2313,16,
76440,564,1,1665,2314,
764516,0,564,1,412,
76462315,16,0,564,1,
76471377,2316,16,0,564,
76481,172,2317,16,0,
7649564,1,1939,2318,16,
76500,564,1,437,2319,
765116,0,564,1,188,
76522320,16,0,564,1,
7653942,2321,16,0,564,
76541,1195,2322,16,0,
7655564,1,1449,2323,16,
76560,564,1,1701,2324,
765716,0,564,1,447,
76581615,1,205,2325,16,
76590,564,1,827,2326,
766016,0,564,1,223,
76612327,16,0,564,1,
7662476,1647,1,477,1653,
76631,1231,2328,16,0,
7664564,1,479,1663,1,
7665480,1668,1,1485,2329,
766616,0,564,1,1737,
76672330,16,0,564,1,
7668242,2331,16,0,564,
76691,478,1686,1,1001,
76701691,1,1002,1696,1,
767119,2332,19,245,1,
767219,2333,5,176,1,
76732761,2334,16,0,243,
76741,256,2335,16,0,
7675243,1,1261,2336,16,
76760,243,1,1011,1207,
76771,1012,2337,16,0,
7678526,1,2458,980,1,
7679262,1224,1,1267,2338,
768016,0,526,1,2021,
7681823,1,1521,2339,16,
76820,526,1,1775,2340,
768316,0,243,1,2029,
7684830,1,2030,836,1,
76852031,841,1,2032,846,
76861,2033,851,1,277,
76872341,16,0,243,1,
76882035,857,1,2037,862,
76891,2039,867,1,32,
76902342,16,0,243,1,
76912464,1003,1,2293,2343,
769216,0,243,1,2043,
7693879,1,2045,884,1,
76942299,2344,16,0,526,
76951,41,2345,16,0,
7696243,1,42,2346,16,
76970,526,1,40,1282,
76981,44,1288,1,43,
76992347,16,0,243,1,
77001804,2348,16,0,243,
77011,48,1295,1,49,
77021301,1,47,1289,1,
770351,1311,1,52,2349,
770416,0,243,1,50,
77051306,1,305,1316,1,
77061096,1417,1,1515,2350,
770716,0,243,1,2318,
77082351,16,0,243,1,
7709283,1277,1,63,1327,
77101,66,1333,1,67,
77111338,1,68,1343,1,
771269,1348,1,70,1353,
77131,71,2352,16,0,
7714243,1,73,2353,16,
77150,526,1,74,1358,
77161,1013,1363,1,76,
77172354,16,0,243,1,
77181834,2355,16,0,243,
77191,2337,2356,16,0,
7720243,1,79,2357,16,
77210,243,1,1335,2358,
772216,0,243,1,299,
77232359,16,0,243,1,
772482,2360,16,0,526,
77251,1840,2361,16,0,
7726526,1,1297,2362,16,
77270,243,1,85,2363,
772816,0,243,1,1341,
77292364,16,0,526,1,
773089,2365,16,0,243,
77311,1303,2366,16,0,
7732526,1,509,2367,16,
77330,243,1,93,1423,
77341,2767,2368,16,0,
7735526,1,322,2369,16,
77360,243,1,97,2370,
773716,0,243,1,2041,
7738873,1,1555,2371,16,
77390,526,1,827,2372,
774016,0,526,1,102,
77412373,16,0,243,1,
77421860,926,1,1803,892,
77431,2364,932,1,107,
77442374,16,0,526,1,
77451114,1448,1,112,2375,
774616,0,243,1,1117,
77472376,16,0,243,1,
7748352,1454,1,1873,940,
77491,118,2377,16,0,
7750526,1,1123,2378,16,
77510,526,1,371,1470,
77521,515,2379,16,0,
7753526,1,1377,2380,16,
77540,526,1,124,2381,
775516,0,243,1,1882,
77562382,16,0,526,1,
7757377,1486,1,379,1491,
77581,380,1496,1,130,
77592383,16,0,526,1,
7760346,2384,16,0,243,
77611,2075,2385,16,0,
7762243,1,373,1514,1,
7763387,2386,16,0,526,
77641,137,2387,16,0,
7765243,1,143,2388,16,
77660,526,1,1901,2389,
776716,0,243,1,1048,
77682390,16,0,526,1,
77691153,2391,16,0,243,
77701,375,1481,1,151,
77712392,16,0,243,1,
77721407,2393,16,0,243,
77731,1659,2394,16,0,
7774243,1,2413,2395,16,
77750,243,1,1159,2396,
777616,0,526,1,381,
77772397,16,0,243,1,
7778157,2398,16,0,526,
77791,1413,2399,16,0,
7780526,1,883,2400,16,
77810,526,1,1371,2401,
778216,0,243,1,328,
77831407,1,2105,919,1,
77842106,2402,16,0,243,
77851,166,2403,16,0,
7786243,1,525,2404,16,
77870,243,1,1622,2405,
778816,0,243,1,406,
77892406,16,0,243,1,
77901574,904,1,172,2407,
779116,0,526,1,1931,
7792965,1,412,2408,16,
77930,526,1,1933,2409,
779416,0,243,1,1876,
77952410,16,0,243,1,
7796431,2411,16,0,243,
77971,1585,2412,16,0,
7798243,1,182,2413,16,
77990,243,1,1628,2414,
780016,0,526,1,1189,
78012415,16,0,243,1,
7802437,2416,16,0,526,
78031,1591,2417,16,0,
7804526,1,188,2418,16,
78050,526,1,1695,2419,
780616,0,243,1,2198,
78072420,16,0,243,1,
78081195,2421,16,0,526,
78091,1449,2422,16,0,
7810526,1,1701,2423,16,
78110,526,1,447,2424,
781216,0,243,1,199,
78132425,16,0,243,1,
78142459,986,1,1958,2426,
781516,0,243,1,2462,
7816993,1,1657,998,1,
7817205,2427,16,0,526,
78181,459,2428,16,0,
7819243,1,462,2429,16,
78200,243,1,1665,2430,
782116,0,526,1,217,
78222431,16,0,243,1,
78232227,1012,1,942,2432,
782416,0,526,1,1225,
78252433,16,0,243,1,
7826223,2434,16,0,526,
78271,1479,2435,16,0,
7828243,1,1731,2436,16,
78290,243,1,477,1653,
78301,1231,2437,16,0,
7831526,1,479,1663,1,
7832480,1668,1,1485,2438,
783316,0,526,1,1737,
78342439,16,0,526,1,
78351989,1020,1,1990,2440,
783616,0,243,1,1443,
78372441,16,0,243,1,
7838236,2442,16,0,243,
78391,2136,947,1,476,
78401647,1,242,2443,16,
78410,526,1,478,1686,
78421,1939,2444,16,0,
7843526,1,1001,1691,1,
78441002,1696,1,1756,2445,
784516,0,243,1,20,
78462446,19,494,1,20,
78472447,5,84,1,2767,
78482448,16,0,492,1,
78491011,1207,1,1012,2449,
785016,0,492,1,1013,
78511363,1,262,1224,1,
78521267,2450,16,0,492,
78531,515,2451,16,0,
7854492,1,1521,2452,16,
78550,492,1,525,1321,
78561,283,1277,1,2299,
78572453,16,0,492,1,
785842,2454,16,0,492,
78591,40,1282,1,44,
78601288,1,47,1289,1,
78611303,2455,16,0,492,
78621,1555,2456,16,0,
7863492,1,50,1306,1,
786448,1295,1,49,1301,
78651,51,1311,1,63,
78661327,1,305,1316,1,
786766,1333,1,67,1338,
78681,68,1343,1,69,
78691348,1,70,1353,1,
787073,2457,16,0,492,
78711,74,1358,1,328,
78722458,16,0,492,1,
78731048,2459,16,0,492,
78741,82,2460,16,0,
7875492,1,1840,2461,16,
78760,492,1,1591,2462,
787716,0,492,1,1341,
78782463,16,0,492,1,
78791096,1417,1,93,1423,
78801,352,2464,16,0,
7881492,1,107,2465,16,
78820,492,1,1114,1448,
78831,118,2466,16,0,
7884492,1,1123,2467,16,
78850,492,1,371,1470,
78861,1628,2468,16,0,
7887492,1,375,1481,1,
78881882,2469,16,0,492,
78891,377,1486,1,379,
78901491,1,380,1496,1,
7891883,2470,16,0,492,
78921,373,1514,1,130,
78932471,16,0,492,1,
7894143,2472,16,0,492,
78951,387,2473,16,0,
7896492,1,1159,2474,16,
78970,492,1,157,2475,
789816,0,492,1,1413,
78992476,16,0,492,1,
79001665,2477,16,0,492,
79011,412,2478,16,0,
7902492,1,1377,2479,16,
79030,492,1,172,2480,
790416,0,492,1,1939,
79052481,16,0,492,1,
7906437,2482,16,0,492,
79071,188,2483,16,0,
7908492,1,942,2484,16,
79090,492,1,1195,2485,
791016,0,492,1,1449,
79112486,16,0,492,1,
79121701,2487,16,0,492,
79131,447,1615,1,205,
79142488,16,0,492,1,
7915827,2489,16,0,492,
79161,223,2490,16,0,
7917492,1,476,1647,1,
7918477,1653,1,1231,2491,
791916,0,492,1,479,
79201663,1,480,1668,1,
79211485,2492,16,0,492,
79221,1737,2493,16,0,
7923492,1,242,2494,16,
79240,492,1,478,1686,
79251,1001,1691,1,1002,
79261696,1,21,2495,19,
7927465,1,21,2496,5,
792884,1,2767,2497,16,
79290,463,1,1011,1207,
79301,1012,2498,16,0,
7931463,1,1013,1363,1,
7932262,1224,1,1267,2499,
793316,0,463,1,515,
79342500,16,0,463,1,
79351521,2501,16,0,463,
79361,525,1321,1,283,
79371277,1,2299,2502,16,
79380,463,1,42,2503,
793916,0,463,1,40,
79401282,1,44,1288,1,
794147,1289,1,1303,2504,
794216,0,463,1,1555,
79432505,16,0,463,1,
794450,1306,1,48,1295,
79451,49,1301,1,51,
79461311,1,63,1327,1,
7947305,1316,1,66,1333,
79481,67,1338,1,68,
79491343,1,69,1348,1,
795070,1353,1,73,2506,
795116,0,463,1,74,
79521358,1,328,2507,16,
79530,463,1,1048,2508,
795416,0,463,1,82,
79552509,16,0,463,1,
79561840,2510,16,0,463,
79571,1591,2511,16,0,
7958463,1,1341,2512,16,
79590,463,1,1096,1417,
79601,93,1423,1,352,
79612513,16,0,463,1,
7962107,2514,16,0,463,
79631,1114,1448,1,118,
79642515,16,0,463,1,
79651123,2516,16,0,463,
79661,371,1470,1,1628,
79672517,16,0,463,1,
7968375,1481,1,1882,2518,
796916,0,463,1,377,
79701486,1,379,1491,1,
7971380,1496,1,883,2519,
797216,0,463,1,373,
79731514,1,130,2520,16,
79740,463,1,143,2521,
797516,0,463,1,387,
79762522,16,0,463,1,
79771159,2523,16,0,463,
79781,157,2524,16,0,
7979463,1,1413,2525,16,
79800,463,1,1665,2526,
798116,0,463,1,412,
79822527,16,0,463,1,
79831377,2528,16,0,463,
79841,172,2529,16,0,
7985463,1,1939,2530,16,
79860,463,1,437,2531,
798716,0,463,1,188,
79882532,16,0,463,1,
7989942,2533,16,0,463,
79901,1195,2534,16,0,
7991463,1,1449,2535,16,
79920,463,1,1701,2536,
799316,0,463,1,447,
79941615,1,205,2537,16,
79950,463,1,827,2538,
799616,0,463,1,223,
79972539,16,0,463,1,
7998476,1647,1,477,1653,
79991,1231,2540,16,0,
8000463,1,479,1663,1,
8001480,1668,1,1485,2541,
800216,0,463,1,1737,
80032542,16,0,463,1,
8004242,2543,16,0,463,
80051,478,1686,1,1001,
80061691,1,1002,1696,1,
800722,2544,19,416,1,
800822,2545,5,84,1,
80092767,2546,16,0,414,
80101,1011,1207,1,1012,
80112547,16,0,414,1,
80121013,1363,1,262,1224,
80131,1267,2548,16,0,
8014414,1,515,2549,16,
80150,414,1,1521,2550,
801616,0,414,1,525,
80171321,1,283,1277,1,
80182299,2551,16,0,414,
80191,42,2552,16,0,
8020414,1,40,1282,1,
802144,1288,1,47,1289,
80221,1303,2553,16,0,
8023414,1,1555,2554,16,
80240,414,1,50,1306,
80251,48,1295,1,49,
80261301,1,51,1311,1,
802763,1327,1,305,1316,
80281,66,1333,1,67,
80291338,1,68,1343,1,
803069,1348,1,70,1353,
80311,73,2555,16,0,
8032414,1,74,1358,1,
8033328,2556,16,0,414,
80341,1048,2557,16,0,
8035414,1,82,2558,16,
80360,414,1,1840,2559,
803716,0,414,1,1591,
80382560,16,0,414,1,
80391341,2561,16,0,414,
80401,1096,1417,1,93,
80411423,1,352,2562,16,
80420,414,1,107,2563,
804316,0,414,1,1114,
80441448,1,118,2564,16,
80450,414,1,1123,2565,
804616,0,414,1,371,
80471470,1,1628,2566,16,
80480,414,1,375,1481,
80491,1882,2567,16,0,
8050414,1,377,1486,1,
8051379,1491,1,380,1496,
80521,883,2568,16,0,
8053414,1,373,1514,1,
8054130,2569,16,0,414,
80551,143,2570,16,0,
8056414,1,387,2571,16,
80570,414,1,1159,2572,
805816,0,414,1,157,
80592573,16,0,414,1,
80601413,2574,16,0,414,
80611,1665,2575,16,0,
8062414,1,412,2576,16,
80630,414,1,1377,2577,
806416,0,414,1,172,
80652578,16,0,414,1,
80661939,2579,16,0,414,
80671,437,2580,16,0,
8068414,1,188,2581,16,
80690,414,1,942,2582,
807016,0,414,1,1195,
80712583,16,0,414,1,
80721449,2584,16,0,414,
80731,1701,2585,16,0,
8074414,1,447,1615,1,
8075205,2586,16,0,414,
80761,827,2587,16,0,
8077414,1,223,2588,16,
80780,414,1,476,1647,
80791,477,1653,1,1231,
80802589,16,0,414,1,
8081479,1663,1,480,1668,
80821,1485,2590,16,0,
8083414,1,1737,2591,16,
80840,414,1,242,2592,
808516,0,414,1,478,
80861686,1,1001,1691,1,
80871002,1696,1,23,2593,
808819,580,1,23,2594,
80895,38,1,1901,2595,
809016,0,578,1,2075,
80912596,16,0,578,1,
80921860,926,1,1803,892,
80931,1804,2597,16,0,
8094578,1,2413,2598,16,
80950,578,1,2198,2599,
809616,0,578,1,1873,
8097940,1,1657,998,1,
80981989,1020,1,1990,2600,
809916,0,578,1,1775,
81002601,16,0,578,1,
810132,2602,16,0,578,
81021,2105,919,1,2106,
81032603,16,0,578,1,
81042364,932,1,2227,1012,
81051,2337,2604,16,0,
8106578,1,2021,823,1,
81072458,980,1,2459,986,
81081,2462,993,1,2136,
8109947,1,2464,1003,1,
81102029,830,1,2030,836,
81111,2031,841,1,2032,
8112846,1,2033,851,1,
81132035,857,1,2037,862,
81141,2039,867,1,1931,
8115965,1,2041,873,1,
81162043,879,1,2045,884,
81171,1574,904,1,1958,
81182605,16,0,578,1,
811924,2606,19,192,1,
812024,2607,5,5,1,
812144,2608,16,0,190,
81221,377,2609,16,0,
8123616,1,40,2610,16,
81240,778,1,63,2611,
812516,0,213,1,373,
81262612,16,0,612,1,
812725,2613,19,321,1,
812825,2614,5,177,1,
81292761,2615,16,0,621,
81301,256,2616,16,0,
8131621,1,2767,2617,16,
81320,319,1,1011,1207,
81331,1012,2618,16,0,
8134319,1,2458,980,1,
8135262,1224,1,1267,2619,
813616,0,319,1,2021,
8137823,1,1521,2620,16,
81380,319,1,1775,2621,
813916,0,621,1,2029,
8140830,1,2030,836,1,
81412031,841,1,2032,846,
81421,2033,851,1,277,
81432622,16,0,621,1,
81442035,857,1,2037,862,
81451,2039,867,1,32,
81462623,16,0,621,1,
81472464,1003,1,2293,2624,
814816,0,621,1,2043,
8149879,1,2045,884,1,
81502299,2625,16,0,319,
81511,41,2626,16,0,
8152621,1,42,2627,16,
81530,319,1,40,1282,
81541,44,1288,1,43,
81552628,16,0,621,1,
81561804,2629,16,0,621,
81571,48,1295,1,49,
81581301,1,47,1289,1,
815951,1311,1,52,2630,
816016,0,621,1,50,
81611306,1,305,1316,1,
81621096,1417,1,1515,2631,
816316,0,621,1,2318,
81642632,16,0,621,1,
816562,2633,16,0,621,
81661,63,1327,1,66,
81671333,1,67,1338,1,
816868,1343,1,69,1348,
81691,70,1353,1,71,
81702634,16,0,621,1,
8171283,1277,1,73,2635,
817216,0,319,1,74,
81731358,1,1013,1363,1,
817476,2636,16,0,621,
81751,1834,2637,16,0,
8176621,1,2337,2638,16,
81770,621,1,79,2639,
817816,0,621,1,1335,
81792640,16,0,621,1,
8180299,2641,16,0,621,
81811,82,2642,16,0,
8182319,1,1840,2643,16,
81830,319,1,1297,2644,
818416,0,621,1,85,
81852645,16,0,621,1,
81861341,2646,16,0,319,
81871,1261,2647,16,0,
8188621,1,89,2648,16,
81890,621,1,1303,2649,
819016,0,319,1,509,
81912650,16,0,621,1,
819293,1423,1,322,2651,
819316,0,621,1,97,
81942652,16,0,621,1,
81952041,873,1,1555,2653,
819616,0,319,1,827,
81972654,16,0,319,1,
8198102,2655,16,0,621,
81991,1860,926,1,1803,
8200892,1,2364,932,1,
8201107,2656,16,0,319,
82021,1114,1448,1,112,
82032657,16,0,621,1,
82041117,2658,16,0,621,
82051,352,1454,1,1873,
8206940,1,118,1460,1,
82071123,2659,16,0,319,
82081,371,1470,1,515,
82092660,16,0,319,1,
82101377,2661,16,0,319,
82111,124,2662,16,0,
8212621,1,1882,2663,16,
82130,319,1,377,1486,
82141,379,1491,1,380,
82151496,1,130,1519,1,
8216346,2664,16,0,621,
82171,2075,2665,16,0,
8218621,1,373,1514,1,
8219387,2666,16,0,319,
82201,137,2667,16,0,
8221621,1,143,2668,16,
82220,319,1,1901,2669,
822316,0,621,1,1048,
82241449,1,1153,2670,16,
82250,621,1,375,1481,
82261,151,2671,16,0,
8227621,1,1407,2672,16,
82280,621,1,1659,2673,
822916,0,621,1,2413,
82302674,16,0,621,1,
82311159,2675,16,0,319,
82321,381,2676,16,0,
8233621,1,157,2677,16,
82340,319,1,1413,2678,
823516,0,319,1,883,
82362679,16,0,319,1,
82371371,2680,16,0,621,
82381,328,1407,1,2105,
8239919,1,2106,2681,16,
82400,621,1,166,2682,
824116,0,621,1,525,
82422683,16,0,621,1,
82431622,2684,16,0,621,
82441,406,2685,16,0,
8245621,1,1574,904,1,
8246172,1573,1,1931,965,
82471,412,2686,16,0,
8248319,1,1933,2687,16,
82490,621,1,1876,2688,
825016,0,621,1,431,
82512689,16,0,621,1,
82521585,2690,16,0,621,
82531,182,2691,16,0,
8254621,1,1628,2692,16,
82550,319,1,1189,2693,
825616,0,621,1,437,
82572694,16,0,319,1,
82581591,2695,16,0,319,
82591,188,1622,1,1695,
82602696,16,0,621,1,
82612198,2697,16,0,621,
82621,1195,2698,16,0,
8263319,1,1449,2699,16,
82640,319,1,1701,2700,
826516,0,319,1,447,
82662701,16,0,621,1,
8267199,2702,16,0,621,
82681,2459,986,1,1958,
82692703,16,0,621,1,
82702462,993,1,1657,998,
82711,205,2704,16,0,
8272319,1,459,2705,16,
82730,621,1,462,2706,
827416,0,621,1,1665,
82752707,16,0,319,1,
8276217,2708,16,0,621,
82771,2227,1012,1,942,
82781594,1,1225,2709,16,
82790,621,1,223,2710,
828016,0,319,1,1479,
82812711,16,0,621,1,
82821731,2712,16,0,621,
82831,477,1653,1,1231,
82842713,16,0,319,1,
8285479,1663,1,480,1668,
82861,1485,2714,16,0,
8287319,1,1737,2715,16,
82880,319,1,1989,1020,
82891,1990,2716,16,0,
8290621,1,1443,2717,16,
82910,621,1,236,2718,
829216,0,621,1,2136,
8293947,1,476,1647,1,
8294242,2719,16,0,319,
82951,478,1686,1,1939,
82962720,16,0,319,1,
82971001,1691,1,1002,1696,
82981,1756,2721,16,0,
8299621,1,26,2722,19,
8300339,1,26,2723,5,
830184,1,2767,2724,16,
83020,337,1,1011,1207,
83031,1012,2725,16,0,
8304337,1,1013,1363,1,
8305262,1224,1,1267,2726,
830616,0,337,1,515,
83072727,16,0,761,1,
83081521,2728,16,0,337,
83091,525,1321,1,283,
83101277,1,2299,2729,16,
83110,337,1,42,2730,
831216,0,337,1,40,
83131282,1,44,1288,1,
831447,1289,1,1303,2731,
831516,0,337,1,1555,
83162732,16,0,337,1,
831750,1306,1,48,1295,
83181,49,1301,1,51,
83191311,1,63,1327,1,
8320305,1316,1,66,1333,
83211,67,1338,1,68,
83221343,1,69,1348,1,
832370,1353,1,73,2733,
832416,0,337,1,74,
83251358,1,328,1407,1,
83261048,1449,1,82,2734,
832716,0,337,1,1840,
83282735,16,0,337,1,
83291591,2736,16,0,337,
83301,1341,2737,16,0,
8331337,1,1096,1417,1,
833293,1423,1,352,1454,
83331,107,2738,16,0,
8334337,1,1114,1448,1,
8335118,1460,1,1123,2739,
833616,0,337,1,371,
83371470,1,1628,2740,16,
83380,337,1,375,1481,
83391,1882,2741,16,0,
8340337,1,377,1486,1,
8341379,1491,1,380,1496,
83421,883,2742,16,0,
8343337,1,373,1514,1,
8344130,1519,1,143,2743,
834516,0,337,1,387,
83462744,16,0,337,1,
83471159,2745,16,0,337,
83481,157,2746,16,0,
8349337,1,1413,2747,16,
83500,337,1,1665,2748,
835116,0,337,1,412,
83522749,16,0,337,1,
83531377,2750,16,0,337,
83541,172,1573,1,1939,
83552751,16,0,337,1,
8356437,2752,16,0,687,
83571,188,1622,1,942,
83581594,1,1195,2753,16,
83590,337,1,1449,2754,
836016,0,337,1,1701,
83612755,16,0,337,1,
8362447,1615,1,205,2756,
836316,0,337,1,827,
83642757,16,0,337,1,
8365223,2758,16,0,337,
83661,476,1647,1,477,
83671653,1,1231,2759,16,
83680,337,1,479,1663,
83691,480,1668,1,1485,
83702760,16,0,337,1,
83711737,2761,16,0,337,
83721,242,2762,16,0,
8373337,1,478,1686,1,
83741001,1691,1,1002,1696,
83751,27,2763,19,695,
83761,27,2764,5,95,
83771,2761,2765,16,0,
8378693,1,256,2766,16,
83790,693,1,1261,2767,
838016,0,693,1,509,
83812768,16,0,693,1,
83821515,2769,16,0,693,
83831,2021,823,1,1775,
83842770,16,0,693,1,
83852029,830,1,2030,836,
83861,2031,841,1,2032,
8387846,1,2033,851,1,
8388277,2771,16,0,693,
83891,2035,857,1,2037,
8390862,1,2039,867,1,
839132,2772,16,0,693,
83921,2041,873,1,2293,
83932773,16,0,693,1,
83942043,879,1,2045,884,
83951,41,2774,16,0,
8396693,1,1297,2775,16,
83970,693,1,43,2776,
839816,0,693,1,1803,
8399892,1,1804,2777,16,
84000,693,1,299,2778,
840116,0,693,1,52,
84022779,16,0,693,1,
84032318,2780,16,0,693,
84041,62,2781,16,0,
8405693,1,2075,2782,16,
84060,693,1,1574,904,
84071,71,2783,16,0,
8408693,1,76,2784,16,
84090,693,1,1834,2785,
841016,0,693,1,2337,
84112786,16,0,693,1,
841279,2787,16,0,693,
84131,1335,2788,16,0,
8414693,1,322,2789,16,
84150,693,1,85,2790,
841616,0,693,1,89,
84172791,16,0,693,1,
8418346,2792,16,0,693,
84191,2105,919,1,2106,
84202793,16,0,693,1,
842197,2794,16,0,693,
84221,1860,926,1,2364,
8423932,1,102,2795,16,
84240,693,1,112,2796,
842516,0,693,1,1117,
84262797,16,0,693,1,
84271873,940,1,1876,2798,
842816,0,693,1,124,
84292799,16,0,693,1,
84302136,947,1,381,2800,
843116,0,693,1,525,
84322801,16,0,693,1,
8433137,2802,16,0,693,
84341,1901,2803,16,0,
8435693,1,1153,2804,16,
84360,693,1,151,2805,
843716,0,693,1,1407,
84382806,16,0,693,1,
84391659,2807,16,0,693,
84401,2413,2808,16,0,
8441693,1,406,2809,16,
84420,693,1,1371,2810,
844316,0,693,1,166,
84442811,16,0,693,1,
84451622,2812,16,0,693,
84461,1931,965,1,1933,
84472813,16,0,693,1,
8448431,2814,16,0,693,
84491,1585,2815,16,0,
8450693,1,182,2816,16,
84510,693,1,1189,2817,
845216,0,693,1,1443,
84532818,16,0,693,1,
84541695,2819,16,0,693,
84551,2198,2820,16,0,
8456693,1,447,2821,16,
84570,693,1,2458,980,
84581,2459,986,1,1958,
84592822,16,0,693,1,
84602462,993,1,1657,998,
84611,2464,1003,1,199,
84622823,16,0,693,1,
8463459,2824,16,0,693,
84641,462,2825,16,0,
8465693,1,217,2826,16,
84660,693,1,2227,1012,
84671,1225,2827,16,0,
8468693,1,1479,2828,16,
84690,693,1,1731,2829,
847016,0,693,1,1989,
84711020,1,1990,2830,16,
84720,693,1,236,2831,
847316,0,693,1,1756,
84742832,16,0,693,1,
847528,2833,19,722,1,
847628,2834,5,60,1,
8477328,1407,1,223,1637,
84781,1096,1417,1,118,
84791460,1,883,1502,1,
8480525,1321,1,1001,1691,
84811,130,1519,1,459,
84821905,1,1114,1448,1,
8483352,1454,1,447,1615,
84841,464,1898,1,1011,
84851207,1,1013,1363,1,
8486242,1681,1,143,1524,
84871,40,1282,1,41,
84881873,1,42,1877,1,
8489479,1663,1,44,1288,
84901,481,1908,1,373,
84911514,1,47,1289,1,
8492157,1547,1,49,1301,
84931,50,1306,1,48,
84941295,1,379,1491,1,
8495380,1496,1,51,1311,
84961,476,1647,1,371,
84971470,1,478,1686,1,
84981048,1449,1,375,1481,
84991,172,1573,1,262,
85001224,1,283,1277,1,
850163,1327,1,67,1338,
85021,68,1343,1,69,
85031348,1,66,1333,1,
8504461,2835,16,0,720,
85051,74,1358,1,377,
85061486,1,1002,1696,1,
850770,1353,1,188,1622,
85081,82,1385,1,305,
85091316,1,477,1653,1,
8510827,1436,1,93,1423,
85111,480,1668,1,205,
85121627,1,942,1594,1,
8513107,1443,1,29,2836,
851419,306,1,29,2837,
85155,84,1,2767,2838,
851616,0,304,1,1011,
85171207,1,1012,2839,16,
85180,304,1,1013,1363,
85191,262,1224,1,1267,
85202840,16,0,304,1,
8521515,2841,16,0,304,
85221,1521,2842,16,0,
8523304,1,525,1321,1,
8524283,1277,1,2299,2843,
852516,0,304,1,42,
85262844,16,0,304,1,
852740,1282,1,44,1288,
85281,47,1289,1,1303,
85292845,16,0,304,1,
85301555,2846,16,0,304,
85311,50,1306,1,48,
85321295,1,49,1301,1,
853351,1311,1,63,1327,
85341,305,1316,1,66,
85351333,1,67,1338,1,
853668,1343,1,69,1348,
85371,70,1353,1,73,
85382847,16,0,304,1,
853974,1358,1,328,1407,
85401,1048,1449,1,82,
85412848,16,0,304,1,
85421840,2849,16,0,304,
85431,1591,2850,16,0,
8544304,1,1341,2851,16,
85450,304,1,1096,1417,
85461,93,1423,1,352,
85471454,1,107,2852,16,
85480,304,1,1114,1448,
85491,118,1460,1,1123,
85502853,16,0,304,1,
8551371,1470,1,1628,2854,
855216,0,304,1,375,
85531481,1,1882,2855,16,
85540,304,1,377,1486,
85551,379,1491,1,380,
85561496,1,883,2856,16,
85570,304,1,373,1514,
85581,130,1519,1,143,
85591524,1,387,2857,16,
85600,304,1,1159,2858,
856116,0,304,1,157,
85621547,1,1413,2859,16,
85630,304,1,1665,2860,
856416,0,304,1,412,
85652861,16,0,304,1,
85661377,2862,16,0,304,
85671,172,1573,1,1939,
85682863,16,0,304,1,
8569437,2864,16,0,304,
85701,188,1622,1,942,
85711594,1,1195,2865,16,
85720,304,1,1449,2866,
857316,0,304,1,1701,
85742867,16,0,304,1,
8575447,1615,1,205,2868,
857616,0,304,1,827,
85772869,16,0,304,1,
8578223,2870,16,0,304,
85791,476,1647,1,477,
85801653,1,1231,2871,16,
85810,304,1,479,1663,
85821,480,1668,1,1485,
85832872,16,0,304,1,
85841737,2873,16,0,304,
85851,242,2874,16,0,
8586304,1,478,1686,1,
85871001,1691,1,1002,1696,
85881,30,2875,19,290,
85891,30,2876,5,84,
85901,2767,2877,16,0,
8591288,1,1011,1207,1,
85921012,2878,16,0,288,
85931,1013,1363,1,262,
85941224,1,1267,2879,16,
85950,288,1,515,2880,
859616,0,288,1,1521,
85972881,16,0,288,1,
8598525,1321,1,283,1277,
85991,2299,2882,16,0,
8600288,1,42,2883,16,
86010,288,1,40,1282,
86021,44,1288,1,47,
86031289,1,1303,2884,16,
86040,288,1,1555,2885,
860516,0,288,1,50,
86061306,1,48,1295,1,
860749,1301,1,51,1311,
86081,63,1327,1,305,
86091316,1,66,1333,1,
861067,1338,1,68,1343,
86111,69,1348,1,70,
86121353,1,73,2886,16,
86130,288,1,74,1358,
86141,328,1407,1,1048,
86151449,1,82,2887,16,
86160,288,1,1840,2888,
861716,0,288,1,1591,
86182889,16,0,288,1,
86191341,2890,16,0,288,
86201,1096,1417,1,93,
86211423,1,352,1454,1,
8622107,2891,16,0,288,
86231,1114,1448,1,118,
86241460,1,1123,2892,16,
86250,288,1,371,1470,
86261,1628,2893,16,0,
8627288,1,375,1481,1,
86281882,2894,16,0,288,
86291,377,1486,1,379,
86301491,1,380,1496,1,
8631883,2895,16,0,288,
86321,373,1514,1,130,
86331519,1,143,1524,1,
8634387,2896,16,0,288,
86351,1159,2897,16,0,
8636288,1,157,1547,1,
86371413,2898,16,0,288,
86381,1665,2899,16,0,
8639288,1,412,2900,16,
86400,288,1,1377,2901,
864116,0,288,1,172,
86421573,1,1939,2902,16,
86430,288,1,437,2903,
864416,0,288,1,188,
86451622,1,942,1594,1,
86461195,2904,16,0,288,
86471,1449,2905,16,0,
8648288,1,1701,2906,16,
86490,288,1,447,1615,
86501,205,2907,16,0,
8651288,1,827,2908,16,
86520,288,1,223,2909,
865316,0,288,1,476,
86541647,1,477,1653,1,
86551231,2910,16,0,288,
86561,479,1663,1,480,
86571668,1,1485,2911,16,
86580,288,1,1737,2912,
865916,0,288,1,242,
86602913,16,0,288,1,
8661478,1686,1,1001,1691,
86621,1002,1696,1,31,
86632914,19,272,1,31,
86642915,5,84,1,2767,
86652916,16,0,270,1,
86661011,1207,1,1012,2917,
866716,0,270,1,1013,
86681363,1,262,1224,1,
86691267,2918,16,0,270,
86701,515,2919,16,0,
8671270,1,1521,2920,16,
86720,270,1,525,1321,
86731,283,1277,1,2299,
86742921,16,0,270,1,
867542,2922,16,0,270,
86761,40,1282,1,44,
86771288,1,47,1289,1,
86781303,2923,16,0,270,
86791,1555,2924,16,0,
8680270,1,50,1306,1,
868148,1295,1,49,1301,
86821,51,1311,1,63,
86831327,1,305,1316,1,
868466,1333,1,67,1338,
86851,68,1343,1,69,
86861348,1,70,1353,1,
868773,2925,16,0,270,
86881,74,1358,1,328,
86891407,1,1048,1449,1,
869082,2926,16,0,270,
86911,1840,2927,16,0,
8692270,1,1591,2928,16,
86930,270,1,1341,2929,
869416,0,270,1,1096,
86951417,1,93,1423,1,
8696352,1454,1,107,2930,
869716,0,270,1,1114,
86981448,1,118,1460,1,
86991123,2931,16,0,270,
87001,371,1470,1,1628,
87012932,16,0,270,1,
8702375,1481,1,1882,2933,
870316,0,270,1,377,
87041486,1,379,1491,1,
8705380,1496,1,883,2934,
870616,0,270,1,373,
87071514,1,130,1519,1,
8708143,2935,16,0,270,
87091,387,2936,16,0,
8710270,1,1159,2937,16,
87110,270,1,157,2938,
871216,0,270,1,1413,
87132939,16,0,270,1,
87141665,2940,16,0,270,
87151,412,2941,16,0,
8716270,1,1377,2942,16,
87170,270,1,172,1573,
87181,1939,2943,16,0,
8719270,1,437,2944,16,
87200,270,1,188,1622,
87211,942,1594,1,1195,
87222945,16,0,270,1,
87231449,2946,16,0,270,
87241,1701,2947,16,0,
8725270,1,447,1615,1,
8726205,2948,16,0,270,
87271,827,2949,16,0,
8728270,1,223,2950,16,
87290,270,1,476,1647,
87301,477,1653,1,1231,
87312951,16,0,270,1,
8732479,1663,1,480,1668,
87331,1485,2952,16,0,
8734270,1,1737,2953,16,
87350,270,1,242,2954,
873616,0,270,1,478,
87371686,1,1001,1691,1,
87381002,1696,1,32,2955,
873919,264,1,32,2956,
87405,84,1,2767,2957,
874116,0,262,1,1011,
87421207,1,1012,2958,16,
87430,262,1,1013,1363,
87441,262,1224,1,1267,
87452959,16,0,262,1,
8746515,2960,16,0,262,
87471,1521,2961,16,0,
8748262,1,525,1321,1,
8749283,1277,1,2299,2962,
875016,0,262,1,42,
87512963,16,0,262,1,
875240,1282,1,44,1288,
87531,47,1289,1,1303,
87542964,16,0,262,1,
87551555,2965,16,0,262,
87561,50,1306,1,48,
87571295,1,49,1301,1,
875851,1311,1,63,1327,
87591,305,1316,1,66,
87601333,1,67,1338,1,
876168,1343,1,69,1348,
87621,70,1353,1,73,
87632966,16,0,262,1,
876474,1358,1,328,1407,
87651,1048,1449,1,82,
87662967,16,0,262,1,
87671840,2968,16,0,262,
87681,1591,2969,16,0,
8769262,1,1341,2970,16,
87700,262,1,1096,1417,
87711,93,1423,1,352,
87721454,1,107,2971,16,
87730,262,1,1114,1448,
87741,118,1460,1,1123,
87752972,16,0,262,1,
8776371,1470,1,1628,2973,
877716,0,262,1,375,
87781481,1,1882,2974,16,
87790,262,1,377,1486,
87801,379,1491,1,380,
87811496,1,883,2975,16,
87820,262,1,373,1514,
87831,130,1519,1,143,
87842976,16,0,262,1,
8785387,2977,16,0,262,
87861,1159,2978,16,0,
8787262,1,157,2979,16,
87880,262,1,1413,2980,
878916,0,262,1,1665,
87902981,16,0,262,1,
8791412,2982,16,0,262,
87921,1377,2983,16,0,
8793262,1,172,1573,1,
87941939,2984,16,0,262,
87951,437,2985,16,0,
8796262,1,188,1622,1,
8797942,1594,1,1195,2986,
879816,0,262,1,1449,
87992987,16,0,262,1,
88001701,2988,16,0,262,
88011,447,1615,1,205,
88022989,16,0,262,1,
8803827,2990,16,0,262,
88041,223,2991,16,0,
8805262,1,476,1647,1,
8806477,1653,1,1231,2992,
880716,0,262,1,479,
88081663,1,480,1668,1,
88091485,2993,16,0,262,
88101,1737,2994,16,0,
8811262,1,242,2995,16,
88120,262,1,478,1686,
88131,1001,1691,1,1002,
88141696,1,33,2996,19,
8815365,1,33,2997,5,
881684,1,2767,2998,16,
88170,363,1,1011,1207,
88181,1012,2999,16,0,
8819363,1,1013,1363,1,
8820262,1224,1,1267,3000,
882116,0,363,1,515,
88223001,16,0,363,1,
88231521,3002,16,0,363,
88241,525,1321,1,283,
88251277,1,2299,3003,16,
88260,363,1,42,3004,
882716,0,363,1,40,
88281282,1,44,1288,1,
882947,1289,1,1303,3005,
883016,0,363,1,1555,
88313006,16,0,363,1,
883250,1306,1,48,1295,
88331,49,1301,1,51,
88341311,1,63,1327,1,
8835305,1316,1,66,1333,
88361,67,1338,1,68,
88371343,1,69,1348,1,
883870,1353,1,73,3007,
883916,0,363,1,74,
88401358,1,328,1407,1,
88411048,1449,1,82,3008,
884216,0,363,1,1840,
88433009,16,0,363,1,
88441591,3010,16,0,363,
88451,1341,3011,16,0,
8846363,1,1096,1417,1,
884793,1423,1,352,1454,
88481,107,3012,16,0,
8849363,1,1114,1448,1,
8850118,1460,1,1123,3013,
885116,0,363,1,371,
88521470,1,1628,3014,16,
88530,363,1,375,1481,
88541,1882,3015,16,0,
8855363,1,377,1486,1,
8856379,1491,1,380,1496,
88571,883,3016,16,0,
8858363,1,373,1514,1,
8859130,1519,1,143,1524,
88601,387,3017,16,0,
8861363,1,1159,3018,16,
88620,363,1,157,1547,
88631,1413,3019,16,0,
8864363,1,1665,3020,16,
88650,363,1,412,3021,
886616,0,363,1,1377,
88673022,16,0,363,1,
8868172,1573,1,1939,3023,
886916,0,363,1,437,
88703024,16,0,363,1,
8871188,1622,1,942,1594,
88721,1195,3025,16,0,
8873363,1,1449,3026,16,
88740,363,1,1701,3027,
887516,0,363,1,447,
88761615,1,205,3028,16,
88770,363,1,827,3029,
887816,0,363,1,223,
88793030,16,0,363,1,
8880476,1647,1,477,1653,
88811,1231,3031,16,0,
8882363,1,479,1663,1,
8883480,1668,1,1485,3032,
888416,0,363,1,1737,
88853033,16,0,363,1,
8886242,1681,1,478,1686,
88871,1001,1691,1,1002,
88881696,1,34,3034,19,
8889352,1,34,3035,5,
889084,1,2767,3036,16,
88910,350,1,1011,1207,
88921,1012,3037,16,0,
8893350,1,1013,1363,1,
8894262,1224,1,1267,3038,
889516,0,350,1,515,
88963039,16,0,350,1,
88971521,3040,16,0,350,
88981,525,1321,1,283,
88991277,1,2299,3041,16,
89000,350,1,42,3042,
890116,0,350,1,40,
89021282,1,44,1288,1,
890347,1289,1,1303,3043,
890416,0,350,1,1555,
89053044,16,0,350,1,
890650,1306,1,48,1295,
89071,49,1301,1,51,
89081311,1,63,1327,1,
8909305,1316,1,66,1333,
89101,67,1338,1,68,
89111343,1,69,1348,1,
891270,1353,1,73,3045,
891316,0,350,1,74,
89141358,1,328,1407,1,
89151048,1449,1,82,3046,
891616,0,350,1,1840,
89173047,16,0,350,1,
89181591,3048,16,0,350,
89191,1341,3049,16,0,
8920350,1,1096,1417,1,
892193,1423,1,352,1454,
89221,107,3050,16,0,
8923350,1,1114,1448,1,
8924118,1460,1,1123,3051,
892516,0,350,1,371,
89261470,1,1628,3052,16,
89270,350,1,375,1481,
89281,1882,3053,16,0,
8929350,1,377,1486,1,
8930379,1491,1,380,1496,
89311,883,3054,16,0,
8932350,1,373,1514,1,
8933130,1519,1,143,1524,
89341,387,3055,16,0,
8935350,1,1159,3056,16,
89360,350,1,157,1547,
89371,1413,3057,16,0,
8938350,1,1665,3058,16,
89390,350,1,412,3059,
894016,0,350,1,1377,
89413060,16,0,350,1,
8942172,1573,1,1939,3061,
894316,0,350,1,437,
89443062,16,0,350,1,
8945188,1622,1,942,1594,
89461,1195,3063,16,0,
8947350,1,1449,3064,16,
89480,350,1,1701,3065,
894916,0,350,1,447,
89501615,1,205,1627,1,
8951827,3066,16,0,350,
89521,223,1637,1,476,
89531647,1,477,1653,1,
89541231,3067,16,0,350,
89551,479,1663,1,480,
89561668,1,1485,3068,16,
89570,350,1,1737,3069,
895816,0,350,1,242,
89591681,1,478,1686,1,
89601001,1691,1,1002,1696,
89611,35,3070,19,342,
89621,35,3071,5,84,
89631,2767,3072,16,0,
8964340,1,1011,1207,1,
89651012,3073,16,0,340,
89661,1013,1363,1,262,
89671224,1,1267,3074,16,
89680,340,1,515,3075,
896916,0,340,1,1521,
89703076,16,0,340,1,
8971525,1321,1,283,1277,
89721,2299,3077,16,0,
8973340,1,42,3078,16,
89740,340,1,40,1282,
89751,44,1288,1,47,
89761289,1,1303,3079,16,
89770,340,1,1555,3080,
897816,0,340,1,50,
89791306,1,48,1295,1,
898049,1301,1,51,1311,
89811,63,1327,1,305,
89821316,1,66,1333,1,
898367,1338,1,68,1343,
89841,69,1348,1,70,
89851353,1,73,3081,16,
89860,340,1,74,1358,
89871,328,1407,1,1048,
89881449,1,82,3082,16,
89890,340,1,1840,3083,
899016,0,340,1,1591,
89913084,16,0,340,1,
89921341,3085,16,0,340,
89931,1096,1417,1,93,
89941423,1,352,1454,1,
8995107,3086,16,0,340,
89961,1114,1448,1,118,
89971460,1,1123,3087,16,
89980,340,1,371,1470,
89991,1628,3088,16,0,
9000340,1,375,1481,1,
90011882,3089,16,0,340,
90021,377,1486,1,379,
90031491,1,380,1496,1,
9004883,3090,16,0,340,
90051,373,1514,1,130,
90061519,1,143,1524,1,
9007387,3091,16,0,340,
90081,1159,3092,16,0,
9009340,1,157,1547,1,
90101413,3093,16,0,340,
90111,1665,3094,16,0,
9012340,1,412,3095,16,
90130,340,1,1377,3096,
901416,0,340,1,172,
90151573,1,1939,3097,16,
90160,340,1,437,3098,
901716,0,340,1,188,
90181622,1,942,1594,1,
90191195,3099,16,0,340,
90201,1449,3100,16,0,
9021340,1,1701,3101,16,
90220,340,1,447,1615,
90231,205,1627,1,827,
90243102,16,0,340,1,
9025223,3103,16,0,340,
90261,476,1647,1,477,
90271653,1,1231,3104,16,
90280,340,1,479,1663,
90291,480,1668,1,1485,
90303105,16,0,340,1,
90311737,3106,16,0,340,
90321,242,1681,1,478,
90331686,1,1001,1691,1,
90341002,1696,1,36,3107,
903519,233,1,36,3108,
90365,94,1,2761,3109,
903716,0,231,1,256,
90383110,16,0,231,1,
90391261,3111,16,0,231,
90401,509,3112,16,0,
9041231,1,1515,3113,16,
90420,231,1,2021,823,
90431,1775,3114,16,0,
9044231,1,2029,830,1,
90452030,836,1,2031,841,
90461,2032,846,1,2033,
9047851,1,277,3115,16,
90480,231,1,2035,857,
90491,2037,862,1,2039,
9050867,1,32,3116,16,
90510,231,1,2041,873,
90521,2293,3117,16,0,
9053231,1,2043,879,1,
90542045,884,1,41,3118,
905516,0,231,1,1297,
90563119,16,0,231,1,
905743,3120,16,0,231,
90581,1803,892,1,1804,
90593121,16,0,231,1,
9060299,3122,16,0,231,
90611,52,3123,16,0,
9062231,1,2318,3124,16,
90630,231,1,2075,3125,
906416,0,231,1,1574,
9065904,1,71,3126,16,
90660,231,1,76,3127,
906716,0,231,1,1834,
90683128,16,0,231,1,
90692337,3129,16,0,231,
90701,79,3130,16,0,
9071231,1,1335,3131,16,
90720,231,1,322,3132,
907316,0,231,1,85,
90743133,16,0,231,1,
907589,3134,16,0,231,
90761,346,3135,16,0,
9077231,1,2105,919,1,
90782106,3136,16,0,231,
90791,97,3137,16,0,
9080231,1,1860,926,1,
90812364,932,1,102,3138,
908216,0,231,1,112,
90833139,16,0,231,1,
90841117,3140,16,0,231,
90851,1873,940,1,1876,
90863141,16,0,231,1,
9087124,3142,16,0,231,
90881,2136,947,1,381,
90893143,16,0,231,1,
9090525,3144,16,0,231,
90911,137,3145,16,0,
9092231,1,1901,3146,16,
90930,231,1,1153,3147,
909416,0,231,1,151,
90953148,16,0,231,1,
90961407,3149,16,0,231,
90971,1659,3150,16,0,
9098231,1,2413,3151,16,
90990,231,1,406,3152,
910016,0,231,1,1371,
91013153,16,0,231,1,
9102166,3154,16,0,231,
91031,1622,3155,16,0,
9104231,1,1931,965,1,
91051933,3156,16,0,231,
91061,431,3157,16,0,
9107231,1,1585,3158,16,
91080,231,1,182,3159,
910916,0,231,1,1189,
91103160,16,0,231,1,
91111443,3161,16,0,231,
91121,1695,3162,16,0,
9113231,1,2198,3163,16,
91140,231,1,447,3164,
911516,0,231,1,2458,
9116980,1,2459,986,1,
91171958,3165,16,0,231,
91181,2462,993,1,1657,
9119998,1,2464,1003,1,
9120199,3166,16,0,231,
91211,459,3167,16,0,
9122231,1,462,3168,16,
91230,231,1,217,3169,
912416,0,231,1,2227,
91251012,1,1225,3170,16,
91260,231,1,1479,3171,
912716,0,231,1,1731,
91283172,16,0,231,1,
91291989,1020,1,1990,3173,
913016,0,231,1,236,
91313174,16,0,231,1,
91321756,3175,16,0,231,
91331,37,3176,19,254,
91341,37,3177,5,94,
91351,2761,3178,16,0,
9136252,1,256,3179,16,
91370,252,1,1261,3180,
913816,0,252,1,509,
91393181,16,0,252,1,
91401515,3182,16,0,252,
91411,2021,823,1,1775,
91423183,16,0,252,1,
91432029,830,1,2030,836,
91441,2031,841,1,2032,
9145846,1,2033,851,1,
9146277,3184,16,0,252,
91471,2035,857,1,2037,
9148862,1,2039,867,1,
914932,3185,16,0,252,
91501,2041,873,1,2293,
91513186,16,0,252,1,
91522043,879,1,2045,884,
91531,41,3187,16,0,
9154252,1,1297,3188,16,
91550,252,1,43,3189,
915616,0,252,1,1803,
9157892,1,1804,3190,16,
91580,252,1,299,3191,
915916,0,252,1,52,
91603192,16,0,252,1,
91612318,3193,16,0,252,
91621,2075,3194,16,0,
9163252,1,1574,904,1,
916471,3195,16,0,252,
91651,76,3196,16,0,
9166252,1,1834,3197,16,
91670,252,1,2337,3198,
916816,0,252,1,79,
91693199,16,0,252,1,
91701335,3200,16,0,252,
91711,322,3201,16,0,
9172252,1,85,3202,16,
91730,252,1,89,3203,
917416,0,252,1,346,
91753204,16,0,252,1,
91762105,919,1,2106,3205,
917716,0,252,1,97,
91783206,16,0,252,1,
91791860,926,1,2364,932,
91801,102,3207,16,0,
9181252,1,112,3208,16,
91820,252,1,1117,3209,
918316,0,252,1,1873,
9184940,1,1876,3210,16,
91850,252,1,124,3211,
918616,0,252,1,2136,
9187947,1,381,3212,16,
91880,252,1,525,3213,
918916,0,252,1,137,
91903214,16,0,252,1,
91911901,3215,16,0,252,
91921,1153,3216,16,0,
9193252,1,151,3217,16,
91940,252,1,1407,3218,
919516,0,252,1,1659,
91963219,16,0,252,1,
91972413,3220,16,0,252,
91981,406,3221,16,0,
9199252,1,1371,3222,16,
92000,252,1,166,3223,
920116,0,252,1,1622,
92023224,16,0,252,1,
92031931,965,1,1933,3225,
920416,0,252,1,431,
92053226,16,0,252,1,
92061585,3227,16,0,252,
92071,182,3228,16,0,
9208252,1,1189,3229,16,
92090,252,1,1443,3230,
921016,0,252,1,1695,
92113231,16,0,252,1,
92122198,3232,16,0,252,
92131,447,3233,16,0,
9214252,1,2458,980,1,
92152459,986,1,1958,3234,
921616,0,252,1,2462,
9217993,1,1657,998,1,
92182464,1003,1,199,3235,
921916,0,252,1,459,
92203236,16,0,252,1,
9221462,3237,16,0,252,
92221,217,3238,16,0,
9223252,1,2227,1012,1,
92241225,3239,16,0,252,
92251,1479,3240,16,0,
9226252,1,1731,3241,16,
92270,252,1,1989,1020,
92281,1990,3242,16,0,
9229252,1,236,3243,16,
92300,252,1,1756,3244,
923116,0,252,1,38,
92323245,19,251,1,38,
92333246,5,84,1,2767,
92343247,16,0,249,1,
92351011,1207,1,1012,3248,
923616,0,249,1,1013,
92371363,1,262,1224,1,
92381267,3249,16,0,249,
92391,515,3250,16,0,
9240249,1,1521,3251,16,
92410,249,1,525,1321,
92421,283,1277,1,2299,
92433252,16,0,249,1,
924442,3253,16,0,249,
92451,40,1282,1,44,
92461288,1,47,1289,1,
92471303,3254,16,0,249,
92481,1555,3255,16,0,
9249249,1,50,1306,1,
925048,1295,1,49,1301,
92511,51,1311,1,63,
92521327,1,305,1316,1,
925366,1333,1,67,1338,
92541,68,1343,1,69,
92551348,1,70,1353,1,
925673,3256,16,0,249,
92571,74,1358,1,328,
92581407,1,1048,1449,1,
925982,3257,16,0,249,
92601,1840,3258,16,0,
9261249,1,1591,3259,16,
92620,249,1,1341,3260,
926316,0,249,1,1096,
92641417,1,93,1423,1,
9265352,1454,1,107,3261,
926616,0,249,1,1114,
92671448,1,118,1460,1,
92681123,3262,16,0,249,
92691,371,1470,1,1628,
92703263,16,0,249,1,
9271375,1481,1,1882,3264,
927216,0,249,1,377,
92731486,1,379,1491,1,
9274380,1496,1,883,1502,
92751,373,1514,1,130,
92761519,1,143,1524,1,
9277387,3265,16,0,249,
92781,1159,3266,16,0,
9279249,1,157,1547,1,
92801413,3267,16,0,249,
92811,1665,3268,16,0,
9282249,1,412,3269,16,
92830,249,1,1377,3270,
928416,0,249,1,172,
92851573,1,1939,3271,16,
92860,249,1,437,3272,
928716,0,249,1,188,
92881622,1,942,1594,1,
92891195,3273,16,0,249,
92901,1449,3274,16,0,
9291249,1,1701,3275,16,
92920,249,1,447,1615,
92931,205,1627,1,827,
92941436,1,223,1637,1,
9295476,1647,1,477,1653,
92961,1231,3276,16,0,
9297249,1,479,1663,1,
9298480,1668,1,1485,3277,
929916,0,249,1,1737,
93003278,16,0,249,1,
9301242,1681,1,478,1686,
93021,1001,1691,1,1002,
93031696,1,39,3279,19,
9304239,1,39,3280,5,
930584,1,2767,3281,16,
93060,237,1,1011,1207,
93071,1012,3282,16,0,
9308237,1,1013,1363,1,
9309262,1224,1,1267,3283,
931016,0,237,1,515,
93113284,16,0,237,1,
93121521,3285,16,0,237,
93131,525,1321,1,283,
93141277,1,2299,3286,16,
93150,237,1,42,3287,
931616,0,237,1,40,
93171282,1,44,1288,1,
931847,1289,1,1303,3288,
931916,0,237,1,1555,
93203289,16,0,237,1,
932150,1306,1,48,1295,
93221,49,1301,1,51,
93231311,1,63,1327,1,
9324305,1316,1,66,1333,
93251,67,1338,1,68,
93261343,1,69,1348,1,
932770,1353,1,73,3290,
932816,0,237,1,74,
93291358,1,328,1407,1,
93301048,1449,1,82,3291,
933116,0,237,1,1840,
93323292,16,0,237,1,
93331591,3293,16,0,237,
93341,1341,3294,16,0,
9335237,1,1096,1417,1,
933693,1423,1,352,1454,
93371,107,3295,16,0,
9338237,1,1114,1448,1,
9339118,1460,1,1123,3296,
934016,0,237,1,371,
93411470,1,1628,3297,16,
93420,237,1,375,1481,
93431,1882,3298,16,0,
9344237,1,377,1486,1,
9345379,1491,1,380,1496,
93461,883,1502,1,373,
93471514,1,130,1519,1,
9348143,1524,1,387,3299,
934916,0,237,1,1159,
93503300,16,0,237,1,
9351157,1547,1,1413,3301,
935216,0,237,1,1665,
93533302,16,0,237,1,
9354412,3303,16,0,237,
93551,1377,3304,16,0,
9356237,1,172,1573,1,
93571939,3305,16,0,237,
93581,437,3306,16,0,
9359237,1,188,1622,1,
9360942,1594,1,1195,3307,
936116,0,237,1,1449,
93623308,16,0,237,1,
93631701,3309,16,0,237,
93641,447,1615,1,205,
93651627,1,827,1436,1,
9366223,1637,1,476,1647,
93671,477,1653,1,1231,
93683310,16,0,237,1,
9369479,1663,1,480,1668,
93701,1485,3311,16,0,
9371237,1,1737,3312,16,
93720,237,1,242,1681,
93731,478,1686,1,1001,
93741691,1,1002,1696,1,
937540,3313,19,227,1,
937640,3314,5,84,1,
93772767,3315,16,0,225,
93781,1011,1207,1,1012,
93793316,16,0,225,1,
93801013,1363,1,262,1224,
93811,1267,3317,16,0,
9382225,1,515,3318,16,
93830,225,1,1521,3319,
938416,0,225,1,525,
93851321,1,283,1277,1,
93862299,3320,16,0,225,
93871,42,3321,16,0,
9388225,1,40,1282,1,
938944,1288,1,47,1289,
93901,1303,3322,16,0,
9391225,1,1555,3323,16,
93920,225,1,50,1306,
93931,48,1295,1,49,
93941301,1,51,1311,1,
939563,1327,1,305,1316,
93961,66,1333,1,67,
93971338,1,68,1343,1,
939869,1348,1,70,1353,
93991,73,3324,16,0,
9400225,1,74,1358,1,
9401328,1407,1,1048,1449,
94021,82,3325,16,0,
9403225,1,1840,3326,16,
94040,225,1,1591,3327,
940516,0,225,1,1341,
94063328,16,0,225,1,
94071096,1417,1,93,1423,
94081,352,1454,1,107,
94093329,16,0,225,1,
94101114,1448,1,118,3330,
941116,0,225,1,1123,
94123331,16,0,225,1,
9413371,1470,1,1628,3332,
941416,0,225,1,375,
94151481,1,1882,3333,16,
94160,225,1,377,1486,
94171,379,1491,1,380,
94181496,1,883,3334,16,
94190,225,1,373,1514,
94201,130,3335,16,0,
9421225,1,143,3336,16,
94220,225,1,387,3337,
942316,0,225,1,1159,
94243338,16,0,225,1,
9425157,3339,16,0,225,
94261,1413,3340,16,0,
9427225,1,1665,3341,16,
94280,225,1,412,3342,
942916,0,225,1,1377,
94303343,16,0,225,1,
9431172,3344,16,0,225,
94321,1939,3345,16,0,
9433225,1,437,3346,16,
94340,225,1,188,3347,
943516,0,225,1,942,
94361594,1,1195,3348,16,
94370,225,1,1449,3349,
943816,0,225,1,1701,
94393350,16,0,225,1,
9440447,1615,1,205,3351,
944116,0,225,1,827,
94423352,16,0,225,1,
9443223,3353,16,0,225,
94441,476,1647,1,477,
94451653,1,1231,3354,16,
94460,225,1,479,1663,
94471,480,1668,1,1485,
94483355,16,0,225,1,
94491737,3356,16,0,225,
94501,242,3357,16,0,
9451225,1,478,1686,1,
94521001,1691,1,1002,1696,
94531,41,3358,19,187,
94541,41,3359,5,84,
94551,2767,3360,16,0,
9456185,1,1011,1207,1,
94571012,3361,16,0,185,
94581,1013,1363,1,262,
94591224,1,1267,3362,16,
94600,185,1,515,3363,
946116,0,185,1,1521,
94623364,16,0,185,1,
9463525,1321,1,283,1277,
94641,2299,3365,16,0,
9465185,1,42,3366,16,
94660,185,1,40,1282,
94671,44,1288,1,47,
94681289,1,1303,3367,16,
94690,185,1,1555,3368,
947016,0,185,1,50,
94711306,1,48,1295,1,
947249,1301,1,51,1311,
94731,63,1327,1,305,
94741316,1,66,1333,1,
947567,1338,1,68,1343,
94761,69,1348,1,70,
94771353,1,73,3369,16,
94780,185,1,74,1358,
94791,328,1407,1,1048,
94801449,1,82,3370,16,
94810,185,1,1840,3371,
948216,0,185,1,1591,
94833372,16,0,185,1,
94841341,3373,16,0,185,
94851,1096,1417,1,93,
94861423,1,352,1454,1,
9487107,3374,16,0,185,
94881,1114,1448,1,118,
94893375,16,0,185,1,
94901123,3376,16,0,185,
94911,371,1470,1,1628,
94923377,16,0,185,1,
9493375,1481,1,1882,3378,
949416,0,185,1,377,
94951486,1,379,1491,1,
9496380,1496,1,883,3379,
949716,0,185,1,373,
94981514,1,130,3380,16,
94990,185,1,143,3381,
950016,0,185,1,387,
95013382,16,0,185,1,
95021159,3383,16,0,185,
95031,157,3384,16,0,
9504185,1,1413,3385,16,
95050,185,1,1665,3386,
950616,0,185,1,412,
95073387,16,0,185,1,
95081377,3388,16,0,185,
95091,172,3389,16,0,
9510185,1,1939,3390,16,
95110,185,1,437,3391,
951216,0,185,1,188,
95133392,16,0,185,1,
9514942,1594,1,1195,3393,
951516,0,185,1,1449,
95163394,16,0,185,1,
95171701,3395,16,0,185,
95181,447,1615,1,205,
95193396,16,0,185,1,
9520827,3397,16,0,185,
95211,223,3398,16,0,
9522185,1,476,1647,1,
9523477,1653,1,1231,3399,
952416,0,185,1,479,
95251663,1,480,1668,1,
95261485,3400,16,0,185,
95271,1737,3401,16,0,
9528185,1,242,3402,16,
95290,185,1,478,1686,
95301,1001,1691,1,1002,
95311696,1,42,3403,19,
9532427,1,42,3404,5,
953338,1,1901,3405,16,
95340,425,1,2075,3406,
953516,0,425,1,1860,
9536926,1,1803,892,1,
95371804,3407,16,0,425,
95381,2413,3408,16,0,
9539425,1,2198,3409,16,
95400,425,1,1873,940,
95411,1657,998,1,1989,
95421020,1,1990,3410,16,
95430,425,1,1775,3411,
954416,0,425,1,32,
95453412,16,0,425,1,
95462105,919,1,2106,3413,
954716,0,425,1,2364,
9548932,1,2227,1012,1,
95492337,3414,16,0,425,
95501,2021,823,1,2458,
9551980,1,2459,986,1,
95522462,993,1,2136,947,
95531,2464,1003,1,2029,
9554830,1,2030,836,1,
95552031,841,1,2032,846,
95561,2033,851,1,2035,
9557857,1,2037,862,1,
95582039,867,1,1931,965,
95591,2041,873,1,2043,
9560879,1,2045,884,1,
95611574,904,1,1958,3415,
956216,0,425,1,43,
95633416,19,521,1,43,
95643417,5,25,1,2035,
9565857,1,2037,862,1,
95662039,867,1,2041,873,
95671,2227,1012,1,2043,
9568879,1,1657,998,1,
95691860,926,1,2136,947,
95701,2021,823,1,2459,
9571986,1,1574,904,1,
95722105,3418,16,0,676,
95731,1931,965,1,1873,
9574940,1,2031,841,1,
95751803,892,1,1989,3419,
957616,0,519,1,2464,
95771003,1,2029,830,1,
95782030,836,1,2364,932,
95791,2032,846,1,2033,
9580851,1,2045,884,1,
958144,3420,19,285,1,
958244,3421,5,38,1,
95831901,3422,16,0,283,
95841,2075,3423,16,0,
9585283,1,1860,926,1,
95861803,892,1,1804,3424,
958716,0,283,1,2413,
95883425,16,0,283,1,
95892198,3426,16,0,283,
95901,1873,940,1,1657,
9591998,1,1989,1020,1,
95921990,3427,16,0,283,
95931,1775,3428,16,0,
9594283,1,32,3429,16,
95950,283,1,2105,919,
95961,2106,3430,16,0,
9597283,1,2364,932,1,
95982227,1012,1,2337,3431,
959916,0,283,1,2021,
9600823,1,2458,980,1,
96012459,986,1,2462,993,
96021,2136,947,1,2464,
96031003,1,2029,830,1,
96042030,836,1,2031,841,
96051,2032,846,1,2033,
9606851,1,2035,857,1,
96072037,862,1,2039,867,
96081,1931,965,1,2041,
9609873,1,2043,879,1,
96102045,884,1,1574,904,
96111,1958,3432,16,0,
9612283,1,45,3433,19,
9613317,1,45,3434,5,
961439,1,1901,3435,16,
96150,346,1,2075,3436,
961616,0,346,1,1860,
9617926,1,1803,892,1,
96181804,3437,16,0,346,
96191,2413,3438,16,0,
9620346,1,2198,3439,16,
96210,346,1,1873,940,
96221,1657,998,1,1989,
96231020,1,1990,3440,16,
96240,346,1,1775,3441,
962516,0,346,1,32,
96263442,16,0,346,1,
96272105,919,1,2106,3443,
962816,0,346,1,2364,
9629932,1,2227,1012,1,
96302337,3444,16,0,346,
96311,2021,823,1,2458,
9632980,1,2459,986,1,
96332462,993,1,2136,947,
96341,2464,1003,1,2029,
9635830,1,2030,836,1,
96362031,841,1,2032,846,
96371,2033,851,1,2035,
9638857,1,2037,862,1,
96392039,867,1,1931,965,
96401,2041,873,1,2043,
9641879,1,2045,884,1,
96421832,3445,16,0,315,
96431,1574,904,1,1958,
96443446,16,0,346,1,
964546,3447,19,775,1,
964646,3448,5,38,1,
96471901,3449,16,0,773,
96481,2075,3450,16,0,
9649773,1,1860,926,1,
96501803,892,1,1804,3451,
965116,0,773,1,2413,
96523452,16,0,773,1,
96532198,3453,16,0,773,
96541,1873,940,1,1657,
9655998,1,1989,1020,1,
96561990,3454,16,0,773,
96571,1775,3455,16,0,
9658773,1,32,3456,16,
96590,773,1,2105,919,
96601,2106,3457,16,0,
9661773,1,2364,932,1,
96622227,1012,1,2337,3458,
966316,0,773,1,2021,
9664823,1,2458,980,1,
96652459,986,1,2462,993,
96661,2136,947,1,2464,
96671003,1,2029,830,1,
96682030,836,1,2031,841,
96691,2032,846,1,2033,
9670851,1,2035,857,1,
96712037,862,1,2039,867,
96721,1931,965,1,2041,
9673873,1,2043,879,1,
96742045,884,1,1574,904,
96751,1958,3459,16,0,
9676773,1,47,3460,19,
9677661,1,47,3461,5,
967819,1,0,3462,16,
96790,659,1,2739,3463,
968016,0,659,1,2816,
96813464,17,3465,15,3466,
96824,36,37,0,71,
96830,108,0,111,0,
968498,0,97,0,108,
96850,68,0,101,0,
9686102,0,105,0,110,
96870,105,0,116,0,
9688105,0,111,0,110,
96890,115,0,1,-1,
96901,5,3467,20,3468,
96914,38,71,0,108,
95090,111,0,98,0, 96920,111,0,98,0,
951097,0,108,0,68, 969397,0,108,0,68,
95110,101,0,102,0, 96940,101,0,102,0,
9512105,0,110,0,105, 9695105,0,110,0,105,
95130,116,0,105,0, 96960,116,0,105,0,
9514111,0,110,0,115, 9697111,0,110,0,115,
95150,1,-1,1,5, 96980,95,0,52,0,
95163429,20,3430,4,38, 96991,168,1,3,1,
97003,1,2,3469,22,
97011,6,1,2742,794,
97021,2743,800,1,2818,
97033470,17,3471,15,3466,
97041,-1,1,5,3472,
970520,3473,4,38,71,
97060,108,0,111,0,
970798,0,97,0,108,
97080,68,0,101,0,
9709102,0,105,0,110,
97100,105,0,116,0,
9711105,0,111,0,110,
97120,115,0,95,0,
971351,0,1,167,1,
97143,1,2,1,1,
97153474,22,1,5,1,
97162819,3475,17,3476,15,
97173466,1,-1,1,5,
97183477,20,3478,4,38,
951771,0,108,0,111, 971971,0,108,0,111,
95180,98,0,97,0, 97200,98,0,97,0,
9519108,0,68,0,101, 9721108,0,68,0,101,
@@ -9521,79 +9723,81 @@ public yyLSLSyntax
9521110,0,105,0,116, 9723110,0,105,0,116,
95220,105,0,111,0, 97240,105,0,111,0,
9523110,0,115,0,95, 9725110,0,115,0,95,
95240,52,0,1,165, 97260,49,0,1,165,
95251,3,1,3,1, 97271,3,1,2,1,
95262,3431,22,1,6, 97281,3479,22,1,3,
95271,2796,3432,17,3433, 97291,2786,3480,17,3481,
952815,3428,1,-1,1, 973015,3482,4,52,37,
95295,3434,20,3435,4, 97310,71,0,108,0,
953038,71,0,108,0,
9531111,0,98,0,97, 9732111,0,98,0,97,
95320,108,0,68,0, 97330,108,0,86,0,
9533101,0,102,0,105, 973497,0,114,0,105,
95340,110,0,105,0, 97350,97,0,98,0,
9535116,0,105,0,111, 9736108,0,101,0,68,
95360,110,0,115,0, 97370,101,0,99,0,
9738108,0,97,0,114,
97390,97,0,116,0,
9740105,0,111,0,110,
97410,1,-1,1,5,
97423483,20,3484,4,54,
974371,0,108,0,111,
97440,98,0,97,0,
9745108,0,86,0,97,
97460,114,0,105,0,
974797,0,98,0,108,
97480,101,0,68,0,
9749101,0,99,0,108,
97500,97,0,114,0,
975197,0,116,0,105,
97520,111,0,110,0,
953795,0,50,0,1, 975395,0,50,0,1,
9538163,1,3,1,3, 9754170,1,3,1,5,
95391,2,3436,22,1, 97551,4,3485,22,1,
95404,1,2797,3437,17, 97568,1,2022,3486,16,
95413438,15,3428,1,-1, 97570,666,1,2459,986,
95421,5,3439,20,3440, 97581,2758,3487,17,3488,
95434,38,71,0,108, 975915,3489,4,50,37,
95440,111,0,98,0, 97600,71,0,108,0,
954597,0,108,0,68, 9761111,0,98,0,97,
97620,108,0,70,0,
9763117,0,110,0,99,
97640,116,0,105,0,
9765111,0,110,0,68,
95460,101,0,102,0, 97660,101,0,102,0,
9547105,0,110,0,105, 9767105,0,110,0,105,
95480,116,0,105,0, 97680,116,0,105,0,
9549111,0,110,0,115, 9769111,0,110,0,1,
95500,95,0,51,0, 9770-1,1,5,3490,20,
95511,164,1,3,1, 97713491,4,52,71,0,
95522,1,1,3441,22, 9772108,0,111,0,98,
95531,5,1,2798,3442, 97730,97,0,108,0,
955417,3443,15,3428,1, 977470,0,117,0,110,
9555-1,1,5,3444,20, 97750,99,0,116,0,
95563445,4,38,71,0, 9776105,0,111,0,110,
97770,68,0,101,0,
9778102,0,105,0,110,
97790,105,0,116,0,
9780105,0,111,0,110,
97810,95,0,49,0,
97821,171,1,3,1,
97836,1,5,3492,22,
97841,9,1,2817,3493,
978517,3494,15,3466,1,
9786-1,1,5,3495,20,
97873496,4,38,71,0,
9557108,0,111,0,98, 9788108,0,111,0,98,
95580,97,0,108,0, 97890,97,0,108,0,
955968,0,101,0,102, 979068,0,101,0,102,
95600,105,0,110,0, 97910,105,0,110,0,
9561105,0,116,0,105, 9792105,0,116,0,105,
95620,111,0,110,0, 97930,111,0,110,0,
9563115,0,95,0,49, 9794115,0,95,0,50,
95640,1,162,1,3, 97950,1,166,1,3,
95651,2,1,1,3446, 97961,3,1,2,3497,
956622,1,3,1,2466, 979722,1,4,1,2797,
95673447,17,3448,15,3449, 97983498,17,3499,15,3482,
95684,50,37,0,71, 97991,-1,1,5,3500,
95690,108,0,111,0, 980020,3501,4,54,71,
957098,0,97,0,108,
95710,70,0,117,0,
9572110,0,99,0,116,
95730,105,0,111,0,
9574110,0,68,0,101,
95750,102,0,105,0,
9576110,0,105,0,116,
95770,105,0,111,0,
9578110,0,1,-1,1,
95795,3450,20,3451,4,
958052,71,0,108,0,
9581111,0,98,0,97,
95820,108,0,70,0,
9583117,0,110,0,99,
95840,116,0,105,0,
9585111,0,110,0,68,
95860,101,0,102,0,
9587105,0,110,0,105,
95880,116,0,105,0,
9589111,0,110,0,95,
95900,50,0,1,169,
95911,3,1,7,1,
95926,3452,22,1,10,
95931,2615,793,1,2765,
95943453,17,3454,15,3419,
95951,-1,1,5,3455,
959620,3456,4,54,71,
95970,108,0,111,0, 98010,108,0,111,0,
959898,0,97,0,108, 980298,0,97,0,108,
95990,86,0,97,0, 98030,86,0,97,0,
@@ -9604,2679 +9808,2754 @@ public yyLSLSyntax
960497,0,114,0,97, 980897,0,114,0,97,
96050,116,0,105,0, 98090,116,0,105,0,
9606111,0,110,0,95, 9810111,0,110,0,95,
96070,50,0,1,167, 98110,49,0,1,169,
96081,3,1,5,1, 98121,3,1,3,1,
96094,3457,22,1,8, 98132,3502,22,1,7,
96101,2464,984,1,2718, 98141,2798,3503,16,0,
96113458,16,0,623,1, 9815659,1,2466,3504,17,
96122721,777,1,2737,3459, 98163505,15,3489,1,-1,
961317,3460,15,3449,1, 98171,5,3506,20,3507,
9614-1,1,5,3461,20, 98184,52,71,0,108,
96153462,4,52,71,0, 98190,111,0,98,0,
9616108,0,111,0,98, 982097,0,108,0,70,
96170,97,0,108,0, 98210,117,0,110,0,
961870,0,117,0,110, 982299,0,116,0,105,
96190,99,0,116,0, 98230,111,0,110,0,
9620105,0,111,0,110, 982468,0,101,0,102,
96210,68,0,101,0, 98250,105,0,110,0,
9622102,0,105,0,110, 9826105,0,116,0,105,
96230,105,0,116,0, 98270,111,0,110,0,
9624105,0,111,0,110, 982895,0,50,0,1,
96250,95,0,49,0, 9829172,1,3,1,7,
96261,168,1,3,1, 98301,6,3508,22,1,
96276,1,5,3463,22, 983110,1,2631,805,1,
96281,9,1,48,3464, 98322464,1003,1,2731,811,
962919,351,1,48,3465, 98331,2809,3509,16,0,
96305,54,1,0,3466, 9834659,1,48,3510,19,
963116,0,349,1,2075, 9835372,1,48,3511,5,
96323467,16,0,546,1, 983654,1,0,3512,16,
96331860,907,1,1804,3468, 98370,370,1,2075,3513,
963416,0,546,1,2737, 983816,0,571,1,2731,
96353459,1,2337,3469,16, 9839811,1,1860,926,1,
96360,546,1,2413,3470, 98401804,3514,16,0,571,
963716,0,546,1,2198, 98411,1901,3515,16,0,
96383471,16,0,546,1, 9842571,1,2739,3516,16,
96391873,921,1,1657,979, 98430,370,1,2413,3517,
96401,2030,817,1,2032, 984416,0,571,1,2742,
9641827,1,1989,1002,1, 9845794,1,2743,800,1,
96421990,3472,16,0,546, 98461873,940,1,1657,998,
96431,2035,838,1,1775, 98471,2030,836,1,1989,
96443473,16,0,546,1, 98481020,1,1990,3518,16,
964532,3474,16,0,546, 98490,571,1,2035,857,
96461,2105,900,1,2106, 98501,2459,986,1,1775,
96473475,16,0,546,1, 98513519,16,0,571,1,
96482721,777,1,2765,3453, 985232,3520,16,0,571,
96491,2227,993,1,1901, 98531,2758,3487,1,2105,
96503476,16,0,546,1, 9854919,1,2106,3521,16,
96512776,3417,1,2777,3477, 98550,571,1,2227,1012,
965216,0,349,1,1803, 98561,2337,3522,16,0,
9653873,1,2458,961,1, 9857571,1,1803,892,1,
96542459,967,1,2788,3478, 98582458,980,1,2786,3480,
965516,0,349,1,2462, 98591,2462,993,1,2136,
9656974,1,2136,928,1, 9860947,1,2464,1003,1,
96572464,984,1,2029,811, 98612029,830,1,2466,3504,
96581,2466,3447,1,2031, 98621,2031,841,1,2032,
9659822,1,2795,3426,1, 9863846,1,2033,851,1,
96602796,3432,1,2797,3437, 98642797,3498,1,2798,3523,
96611,2798,3442,1,2364, 986516,0,370,1,2631,
9662913,1,2039,848,1, 9866805,1,2364,932,1,
96631931,946,1,2041,854, 98672039,867,1,1931,965,
96641,2021,804,1,2043, 98681,2041,873,1,2021,
9665860,1,2045,865,1, 9869823,1,2043,879,1,
96662033,832,1,2711,765, 98702045,884,1,2809,3524,
96671,2037,843,1,1574, 987116,0,370,1,2198,
9668885,1,2718,3479,16, 98723525,16,0,571,1,
96690,349,1,1958,3480, 98732816,3464,1,2817,3493,
967016,0,546,1,2722, 98741,2818,3470,1,2819,
9671788,1,2615,793,1, 98753475,1,2037,862,1,
967249,3481,19,551,1, 98761574,904,1,1958,3526,
967349,3482,5,38,1, 987716,0,571,1,49,
96741901,3483,16,0,549, 98783527,19,576,1,49,
96751,2075,3484,16,0, 98793528,5,38,1,1901,
9676549,1,1860,907,1, 98803529,16,0,574,1,
96771803,873,1,1804,3485, 98812075,3530,16,0,574,
967816,0,549,1,2413, 98821,1860,926,1,1803,
96793486,16,0,549,1, 9883892,1,1804,3531,16,
96802198,3487,16,0,549, 98840,574,1,2413,3532,
96811,1873,921,1,1657, 988516,0,574,1,2198,
9682979,1,1989,1002,1, 98863533,16,0,574,1,
96831990,3488,16,0,549, 98871873,940,1,1657,998,
96841,1775,3489,16,0, 98881,1989,1020,1,1990,
9685549,1,32,3490,16, 98893534,16,0,574,1,
96860,549,1,2105,900, 98901775,3535,16,0,574,
96871,2106,3491,16,0, 98911,32,3536,16,0,
9688549,1,2364,913,1, 9892574,1,2105,919,1,
96892227,993,1,2337,3492, 98932106,3537,16,0,574,
969016,0,549,1,2021, 98941,2364,932,1,2227,
9691804,1,2458,961,1, 98951012,1,2337,3538,16,
96922459,967,1,2462,974, 98960,574,1,2021,823,
96931,2136,928,1,2464, 98971,2458,980,1,2459,
9694984,1,2029,811,1, 9898986,1,2462,993,1,
96952030,817,1,2031,822, 98992136,947,1,2464,1003,
96961,2032,827,1,2033, 99001,2029,830,1,2030,
9697832,1,2035,838,1, 9901836,1,2031,841,1,
96982037,843,1,2039,848, 99022032,846,1,2033,851,
96991,1931,946,1,2041, 99031,2035,857,1,2037,
9700854,1,2043,860,1, 9904862,1,2039,867,1,
97012045,865,1,1574,885, 99051931,965,1,2041,873,
97021,1958,3493,16,0, 99061,2043,879,1,2045,
9703549,1,50,3494,19, 9907884,1,1574,904,1,
9704689,1,50,3495,5, 99081958,3539,16,0,574,
970538,1,1901,3496,16, 99091,50,3540,19,707,
97060,687,1,2075,3497, 99101,50,3541,5,38,
970716,0,687,1,1860, 99111,1901,3542,16,0,
9708907,1,1803,873,1, 9912705,1,2075,3543,16,
97091804,3498,16,0,687, 99130,705,1,1860,926,
97101,2413,3499,16,0, 99141,1803,892,1,1804,
9711687,1,2198,3500,16, 99153544,16,0,705,1,
97120,687,1,1873,921, 99162413,3545,16,0,705,
97131,1657,979,1,1989, 99171,2198,3546,16,0,
97141002,1,1990,3501,16, 9918705,1,1873,940,1,
97150,687,1,1775,3502, 99191657,998,1,1989,1020,
971616,0,687,1,32, 99201,1990,3547,16,0,
97173503,16,0,687,1, 9921705,1,1775,3548,16,
97182105,900,1,2106,3504, 99220,705,1,32,3549,
971916,0,687,1,2364, 992316,0,705,1,2105,
9720913,1,2227,993,1, 9924919,1,2106,3550,16,
97212337,3505,16,0,687, 99250,705,1,2364,932,
97221,2021,804,1,2458, 99261,2227,1012,1,2337,
9723961,1,2459,967,1, 99273551,16,0,705,1,
97242462,974,1,2136,928, 99282021,823,1,2458,980,
97251,2464,984,1,2029, 99291,2459,986,1,2462,
9726811,1,2030,817,1, 9930993,1,2136,947,1,
97272031,822,1,2032,827, 99312464,1003,1,2029,830,
97281,2033,832,1,2035, 99321,2030,836,1,2031,
9729838,1,2037,843,1, 9933841,1,2032,846,1,
97302039,848,1,1931,946, 99342033,851,1,2035,857,
97311,2041,854,1,2043, 99351,2037,862,1,2039,
9732860,1,2045,865,1, 9936867,1,1931,965,1,
97331574,885,1,1958,3506, 99372041,873,1,2043,879,
973416,0,687,1,51, 99381,2045,884,1,1574,
97353507,19,127,1,51, 9939904,1,1958,3552,16,
97363508,5,55,1,0, 99400,705,1,51,3553,
97373509,16,0,125,1, 994119,127,1,51,3554,
97382075,3510,16,0,125, 99425,56,1,0,3555,
97391,1860,907,1,10, 994316,0,125,1,2075,
97403511,16,0,125,1, 99443556,16,0,125,1,
97412737,3459,1,2337,3512, 99451860,926,1,10,3557,
974216,0,125,1,2413, 994616,0,125,1,2758,
97433513,16,0,125,1, 99473487,1,1901,3558,16,
97442198,3514,16,0,125, 99480,125,1,2413,3559,
97451,1873,921,1,21, 994916,0,125,1,2198,
97463515,16,0,125,1, 99503560,16,0,125,1,
97471657,979,1,2531,3516, 99511873,940,1,21,3561,
974816,0,446,1,2032, 995216,0,125,1,1657,
9749827,1,1989,1002,1, 9953998,1,2030,836,1,
97501990,3517,16,0,125, 99541989,1020,1,1990,3562,
97511,2458,961,1,1775, 995516,0,125,1,2458,
97523518,16,0,125,1, 9956980,1,2459,986,1,
975332,3519,16,0,125, 99571775,3563,16,0,125,
97541,2105,900,1,2106, 99581,32,3564,16,0,
97553520,16,0,125,1, 9959125,1,2567,3565,16,
97562765,3453,1,2553,3521, 99600,125,1,2105,919,
975716,0,125,1,2227, 99611,2106,3566,16,0,
9758993,1,1901,3522,16, 9962125,1,2545,3567,16,
97590,125,1,2776,3417, 99630,467,1,2227,1012,
97601,52,3523,16,0, 99641,2337,3568,16,0,
9761125,1,1803,873,1, 9965125,1,2035,857,1,
97621804,3524,16,0,125, 996652,3569,16,0,125,
97631,2459,967,1,2462, 99671,1803,892,1,1804,
9764974,1,2136,928,1, 99683570,16,0,125,1,
97652464,984,1,2029,811, 99692786,3480,1,2462,993,
97661,2466,3447,1,2031, 99701,2136,947,1,2464,
9767822,1,2795,3426,1, 99711003,1,2029,830,1,
97682796,3432,1,2797,3437, 99722466,3504,1,2031,841,
97691,2798,3442,1,2364, 99731,2032,846,1,2033,
9770913,1,2039,848,1, 9974851,1,2797,3498,1,
97711931,946,1,2041,854, 99752798,3571,16,0,125,
97721,2021,804,1,2043, 99761,2364,932,1,2039,
9773860,1,2045,865,1, 9977867,1,1931,965,1,
97742724,3525,16,0,125, 99782041,873,1,2021,823,
97751,2030,817,1,2033, 99791,2043,879,1,2045,
9776832,1,2035,838,1, 9980884,1,2816,3464,1,
97772037,843,1,2777,3526, 99812817,3493,1,2818,3470,
977816,0,125,1,1574, 99821,2819,3475,1,2522,
9779885,1,1958,3527,16, 99833572,16,0,467,1,
97800,125,1,2506,3528, 99842037,862,1,1574,904,
978116,0,446,1,52, 99851,1958,3573,16,0,
97823529,19,124,1,52, 9986125,1,2745,3574,16,
97833530,5,53,1,0, 99870,125,1,2506,3575,
97843531,16,0,122,1, 998816,0,467,1,52,
97852075,3532,16,0,122, 99893576,19,124,1,52,
97861,1860,907,1,1804, 99903577,5,53,1,0,
97873533,16,0,122,1, 99913578,16,0,122,1,
978810,3534,16,0,122, 99922075,3579,16,0,122,
97891,2737,3459,1,2337, 99931,1860,926,1,10,
97903535,16,0,122,1, 99943580,16,0,122,1,
97912413,3536,16,0,122, 99952758,3487,1,1901,3581,
97921,2198,3537,16,0, 999616,0,122,1,2413,
9793122,1,1873,921,1, 99973582,16,0,122,1,
979421,3538,16,0,122, 99982198,3583,16,0,122,
97951,1657,979,1,2030, 99991,1873,940,1,21,
9796817,1,2032,827,1, 100003584,16,0,122,1,
97971989,1002,1,1990,3539, 100011657,998,1,2030,836,
979816,0,122,1,2035, 100021,1989,1020,1,1990,
9799838,1,1775,3540,16, 100033585,16,0,122,1,
98000,122,1,32,3541, 100042458,980,1,2459,986,
100051,1775,3586,16,0,
10006122,1,32,3587,16,
100070,122,1,2567,3588,
980116,0,122,1,2105, 1000816,0,122,1,2105,
9802900,1,2106,3542,16, 10009919,1,2106,3589,16,
98030,122,1,2765,3453, 100100,122,1,2227,1012,
98041,2553,3543,16,0, 100111,2337,3590,16,0,
9805122,1,2227,993,1, 10012122,1,2035,857,1,
98061901,3544,16,0,122, 1001352,3591,16,0,122,
98071,2776,3417,1,52, 100141,1803,892,1,1804,
98083545,16,0,122,1, 100153592,16,0,122,1,
98091803,873,1,2458,961, 100162786,3480,1,2462,993,
98101,2459,967,1,2462, 100171,2136,947,1,2464,
9811974,1,2136,928,1, 100181003,1,2029,830,1,
98122464,984,1,2029,811, 100192466,3504,1,2031,841,
98131,2466,3447,1,2031, 100201,2032,846,1,2033,
9814822,1,2795,3426,1, 10021851,1,2797,3498,1,
98152796,3432,1,2797,3437, 100222798,3593,16,0,122,
98161,2798,3442,1,2364, 100231,2364,932,1,2039,
9817913,1,2039,848,1, 10024867,1,1931,965,1,
98181931,946,1,2041,854, 100252041,873,1,2021,823,
98191,2021,804,1,2043, 100261,2043,879,1,2045,
9820860,1,2045,865,1, 10027884,1,2816,3464,1,
98212033,832,1,2037,843, 100282817,3493,1,2818,3470,
98221,2777,3546,16,0, 100291,2819,3475,1,2037,
9823122,1,1574,885,1, 10030862,1,1574,904,1,
98241958,3547,16,0,122, 100311958,3594,16,0,122,
98251,2724,3548,16,0, 100321,2745,3595,16,0,
9826122,1,53,3549,19, 10033122,1,53,3596,19,
9827121,1,53,3550,5, 10034121,1,53,3597,5,
982853,1,0,3551,16, 1003553,1,0,3598,16,
98290,119,1,2075,3552, 100360,119,1,2075,3599,
983016,0,119,1,1860, 1003716,0,119,1,1860,
9831907,1,1804,3553,16, 10038926,1,10,3600,16,
98320,119,1,10,3554, 100390,119,1,2758,3487,
983316,0,119,1,2737, 100401,1901,3601,16,0,
98343459,1,2337,3555,16, 10041119,1,2413,3602,16,
98350,119,1,2413,3556, 100420,119,1,2198,3603,
983616,0,119,1,2198, 1004316,0,119,1,1873,
98373557,16,0,119,1, 10044940,1,21,3604,16,
98381873,921,1,21,3558, 100450,119,1,1657,998,
983916,0,119,1,1657, 100461,2030,836,1,1989,
9840979,1,2030,817,1, 100471020,1,1990,3605,16,
98412032,827,1,1989,1002, 100480,119,1,2458,980,
98421,1990,3559,16,0, 100491,2459,986,1,1775,
9843119,1,2035,838,1, 100503606,16,0,119,1,
98441775,3560,16,0,119, 1005132,3607,16,0,119,
98451,32,3561,16,0, 100521,2567,3608,16,0,
9846119,1,2105,900,1, 10053119,1,2105,919,1,
98472106,3562,16,0,119, 100542106,3609,16,0,119,
98481,2765,3453,1,2553, 100551,2227,1012,1,2337,
98493563,16,0,119,1, 100563610,16,0,119,1,
98502227,993,1,1901,3564, 100572035,857,1,52,3611,
985116,0,119,1,2776, 1005816,0,119,1,1803,
98523417,1,52,3565,16, 10059892,1,1804,3612,16,
98530,119,1,1803,873, 100600,119,1,2786,3480,
98541,2458,961,1,2459, 100611,2462,993,1,2136,
9855967,1,2462,974,1, 10062947,1,2464,1003,1,
98562136,928,1,2464,984, 100632029,830,1,2466,3504,
98571,2029,811,1,2466, 100641,2031,841,1,2032,
98583447,1,2031,822,1, 10065846,1,2033,851,1,
98592795,3426,1,2796,3432, 100662797,3498,1,2798,3613,
98601,2797,3437,1,2798, 1006716,0,119,1,2364,
98613442,1,2364,913,1, 10068932,1,2039,867,1,
98622039,848,1,1931,946, 100691931,965,1,2041,873,
98631,2041,854,1,2021, 100701,2021,823,1,2043,
9864804,1,2043,860,1, 10071879,1,2045,884,1,
98652045,865,1,2033,832, 100722816,3464,1,2817,3493,
98661,2037,843,1,2777, 100731,2818,3470,1,2819,
98673566,16,0,119,1, 100743475,1,2037,862,1,
98681574,885,1,1958,3567, 100751574,904,1,1958,3614,
986916,0,119,1,2724, 1007616,0,119,1,2745,
98703568,16,0,119,1, 100773615,16,0,119,1,
987154,3569,19,118,1, 1007854,3616,19,118,1,
987254,3570,5,54,1, 1007954,3617,5,54,1,
98730,3571,16,0,116, 100800,3618,16,0,116,
98741,2539,3572,16,0, 100811,2075,3619,16,0,
9875497,1,1860,907,1, 10082116,1,1860,926,1,
98761804,3573,16,0,116, 1008310,3620,16,0,116,
98771,10,3574,16,0, 100841,2758,3487,1,1901,
9878116,1,2737,3459,1, 100853621,16,0,116,1,
98792337,3575,16,0,116, 100862413,3622,16,0,116,
98801,2413,3576,16,0, 100871,2198,3623,16,0,
9881116,1,2198,3577,16, 10088116,1,1873,940,1,
98820,116,1,1873,921, 1008921,3624,16,0,116,
98831,21,3578,16,0, 100901,1657,998,1,2030,
9884116,1,1657,979,1, 10091836,1,1989,1020,1,
98852030,817,1,2032,827, 100921990,3625,16,0,116,
98861,1989,1002,1,1990, 100931,2458,980,1,2459,
98873579,16,0,116,1, 10094986,1,1775,3626,16,
98882035,838,1,1775,3580, 100950,116,1,32,3627,
988916,0,116,1,32, 1009616,0,116,1,2567,
98903581,16,0,116,1, 100973628,16,0,116,1,
98912105,900,1,2106,3582, 100982105,919,1,2106,3629,
989216,0,116,1,2765, 1009916,0,116,1,2553,
98933453,1,2553,3583,16, 101003630,16,0,732,1,
98940,116,1,2227,993, 101012227,1012,1,2337,3631,
98951,1901,3584,16,0, 1010216,0,116,1,2035,
9896116,1,2776,3417,1, 10103857,1,52,3632,16,
989752,3585,16,0,116, 101040,116,1,1803,892,
98981,1803,873,1,2458, 101051,1804,3633,16,0,
9899961,1,2459,967,1, 10106116,1,2786,3480,1,
99002462,974,1,2136,928, 101072462,993,1,2136,947,
99011,2464,984,1,2029, 101081,2464,1003,1,2029,
9902811,1,2466,3447,1, 10109830,1,2466,3504,1,
99032031,822,1,2795,3426, 101102031,841,1,2032,846,
99041,2796,3432,1,2797, 101111,2033,851,1,2797,
99053437,1,2798,3442,1, 101123498,1,2798,3634,16,
99062364,913,1,2039,848, 101130,116,1,2364,932,
99071,1931,946,1,2041, 101141,2039,867,1,1931,
9908854,1,2021,804,1, 10115965,1,2041,873,1,
99092043,860,1,2045,865, 101162021,823,1,2043,879,
99101,2033,832,1,2075, 101171,2045,884,1,2816,
99113586,16,0,116,1, 101183464,1,2817,3493,1,
99122037,843,1,2777,3587, 101192818,3470,1,2819,3475,
991316,0,116,1,1574, 101201,2037,862,1,1574,
9914885,1,1958,3588,16, 10121904,1,1958,3635,16,
99150,116,1,2724,3589, 101220,116,1,2745,3636,
991616,0,116,1,55, 1012316,0,116,1,55,
99173590,19,115,1,55, 101243637,19,115,1,55,
99183591,5,54,1,0, 101253638,5,56,1,0,
99193592,16,0,113,1, 101263639,16,0,113,1,
99202075,3593,16,0,113, 101272537,3640,16,0,684,
99211,1860,907,1,1804, 101281,2510,3641,16,0,
99223594,16,0,113,1, 10129684,1,2075,3642,16,
992310,3595,16,0,113, 101300,113,1,1860,926,
99241,2737,3459,1,2337, 101311,10,3643,16,0,
99253596,16,0,113,1, 10132113,1,2758,3487,1,
99262413,3597,16,0,113, 101331901,3644,16,0,113,
99271,2198,3598,16,0, 101341,2413,3645,16,0,
9928113,1,1873,921,1, 10135113,1,2198,3646,16,
992921,3599,16,0,113, 101360,113,1,1873,940,
99301,1657,979,1,2030, 101371,21,3647,16,0,
9931817,1,2032,827,1, 10138113,1,1657,998,1,
99321989,1002,1,1990,3600, 101392030,836,1,1989,1020,
101401,1990,3648,16,0,
10141113,1,2458,980,1,
101422459,986,1,1775,3649,
1014316,0,113,1,32,
101443650,16,0,113,1,
101452567,3651,16,0,113,
101461,2105,919,1,2106,
101473652,16,0,113,1,
101482227,1012,1,2337,3653,
993316,0,113,1,2035, 1014916,0,113,1,2035,
9934838,1,1775,3601,16, 10150857,1,52,3654,16,
99350,113,1,32,3602, 101510,113,1,1803,892,
993616,0,113,1,2105, 101521,1804,3655,16,0,
9937900,1,2106,3603,16, 10153113,1,2786,3480,1,
99380,113,1,2765,3453, 101542462,993,1,2136,947,
99391,2553,3604,16,0, 101551,2464,1003,1,2029,
9940113,1,2227,993,1, 10156830,1,2466,3504,1,
99411901,3605,16,0,113, 101572031,841,1,2032,846,
99421,2776,3417,1,52, 101581,2033,851,1,2797,
99433606,16,0,113,1, 101593498,1,2798,3656,16,
99441803,873,1,2458,961, 101600,113,1,2364,932,
99451,2459,967,1,2462, 101611,2039,867,1,1931,
9946974,1,2136,928,1, 10162965,1,2041,873,1,
99472464,984,1,2029,811, 101632021,823,1,2043,879,
99481,2466,3447,1,2031, 101641,2045,884,1,2514,
9949822,1,2795,3426,1, 101653657,16,0,684,1,
99502796,3432,1,2797,3437, 101662816,3464,1,2817,3493,
99511,2798,3442,1,2364, 101671,2818,3470,1,2819,
9952913,1,2039,848,1, 101683475,1,2037,862,1,
99531931,946,1,2041,854, 101691574,904,1,1958,3658,
99541,2021,804,1,2043, 1017016,0,113,1,2745,
9955860,1,2045,865,1, 101713659,16,0,113,1,
99562033,832,1,2522,3607, 1017256,3660,19,112,1,
995716,0,467,1,2037, 1017356,3661,5,55,1,
9958843,1,2777,3608,16, 101740,3662,16,0,110,
99590,113,1,1574,885, 101751,2075,3663,16,0,
99601,1958,3609,16,0, 10176110,1,1860,926,1,
9961113,1,2724,3610,16, 1017710,3664,16,0,110,
99620,113,1,56,3611, 101781,2758,3487,1,1901,
996319,112,1,56,3612, 101793665,16,0,110,1,
99645,55,1,0,3613, 101802413,3666,16,0,110,
996516,0,110,1,2510, 101811,2525,3667,16,0,
99663614,16,0,662,1, 10182491,1,1657,998,1,
99672075,3615,16,0,110, 101831873,940,1,21,3668,
99681,1860,907,1,10, 1018416,0,110,1,2529,
99693616,16,0,110,1, 101853669,16,0,491,1,
99702737,3459,1,2337,3617, 101862030,836,1,1989,1020,
997116,0,110,1,2413, 101871,1990,3670,16,0,
99723618,16,0,110,1, 10188110,1,2458,980,1,
99732198,3619,16,0,110, 101892459,986,1,1775,3671,
99741,1873,921,1,21, 1019016,0,110,1,32,
99753620,16,0,110,1, 101913672,16,0,110,1,
99761657,979,1,2030,817, 101922567,3673,16,0,110,
99771,2032,827,1,1989, 101931,2105,919,1,2106,
99781002,1,1990,3621,16, 101943674,16,0,110,1,
99790,110,1,2458,961, 101952227,1012,1,2337,3675,
99801,1775,3622,16,0, 1019616,0,110,1,2035,
9981110,1,32,3623,16, 10197857,1,52,3676,16,
99820,110,1,2105,900, 101980,110,1,1803,892,
99831,2106,3624,16,0, 101991,1804,3677,16,0,
9984110,1,2765,3453,1, 10200110,1,2786,3480,1,
99852553,3625,16,0,110, 102012462,993,1,2136,947,
99861,2227,993,1,1901, 102021,2464,1003,1,2029,
99873626,16,0,110,1, 10203830,1,2466,3504,1,
99882776,3417,1,52,3627, 102042031,841,1,2032,846,
998916,0,110,1,1803, 102051,2033,851,1,2797,
9990873,1,1804,3628,16, 102063498,1,2798,3678,16,
99910,110,1,2459,967, 102070,110,1,2364,932,
99921,2462,974,1,2136, 102081,2039,867,1,1931,
9993928,1,2464,984,1, 10209965,1,2041,873,1,
99942029,811,1,2466,3447, 102102021,823,1,2043,879,
99951,2031,822,1,2795, 102111,2045,884,1,2198,
99963426,1,2796,3432,1, 102123679,16,0,110,1,
99972797,3437,1,2798,3442, 102132816,3464,1,2817,3493,
99981,2364,913,1,2039, 102141,2818,3470,1,2819,
9999848,1,1931,946,1, 102153475,1,2037,862,1,
100002041,854,1,2021,804, 102161574,904,1,1958,3680,
100011,2043,860,1,2045, 1021716,0,110,1,2745,
10002865,1,2514,3629,16, 102183681,16,0,110,1,
100030,662,1,2033,832, 1021957,3682,19,109,1,
100041,2035,838,1,2037, 1022057,3683,5,53,1,
10005843,1,2777,3630,16, 102210,3684,16,0,107,
100060,110,1,1574,885, 102221,2075,3685,16,0,
100071,1958,3631,16,0, 10223107,1,1860,926,1,
10008110,1,2724,3632,16, 1022410,3686,16,0,107,
100090,110,1,57,3633, 102251,2758,3487,1,1901,
1001019,109,1,57,3634, 102263687,16,0,107,1,
100115,53,1,0,3635, 102272413,3688,16,0,107,
1001216,0,107,1,2075, 102281,2198,3689,16,0,
100133636,16,0,107,1, 10229107,1,1873,940,1,
100141860,907,1,1804,3637, 1023021,3690,16,0,107,
1001516,0,107,1,10, 102311,1657,998,1,2030,
100163638,16,0,107,1, 10232836,1,1989,1020,1,
100172737,3459,1,2337,3639, 102331990,3691,16,0,107,
1001816,0,107,1,2413, 102341,2458,980,1,2459,
100193640,16,0,107,1, 10235986,1,1775,3692,16,
100202198,3641,16,0,107, 102360,107,1,32,3693,
100211,1873,921,1,21, 1023716,0,107,1,2567,
100223642,16,0,107,1, 102383694,16,0,107,1,
100231657,979,1,2030,817, 102392105,919,1,2106,3695,
100241,2032,827,1,1989, 1024016,0,107,1,2227,
100251002,1,1990,3643,16, 102411012,1,2337,3696,16,
100260,107,1,2035,838, 102420,107,1,2035,857,
100271,1775,3644,16,0, 102431,52,3697,16,0,
10028107,1,32,3645,16, 10244107,1,1803,892,1,
100290,107,1,2105,900, 102451804,3698,16,0,107,
100301,2106,3646,16,0, 102461,2786,3480,1,2462,
10031107,1,2765,3453,1, 10247993,1,2136,947,1,
100322553,3647,16,0,107, 102482464,1003,1,2029,830,
100331,2227,993,1,1901, 102491,2466,3504,1,2031,
100343648,16,0,107,1, 10250841,1,2032,846,1,
100352776,3417,1,52,3649, 102512033,851,1,2797,3498,
1003616,0,107,1,1803, 102521,2798,3699,16,0,
10037873,1,2458,961,1, 10253107,1,2364,932,1,
100382459,967,1,2462,974, 102542039,867,1,1931,965,
100391,2136,928,1,2464, 102551,2041,873,1,2021,
10040984,1,2029,811,1, 10256823,1,2043,879,1,
100412466,3447,1,2031,822, 102572045,884,1,2816,3464,
100421,2795,3426,1,2796, 102581,2817,3493,1,2818,
100433432,1,2797,3437,1, 102593470,1,2819,3475,1,
100442798,3442,1,2364,913, 102602037,862,1,1574,904,
100451,2039,848,1,1931, 102611,1958,3700,16,0,
10046946,1,2041,854,1, 10262107,1,2745,3701,16,
100472021,804,1,2043,860, 102630,107,1,58,3702,
100481,2045,865,1,2033, 1026419,380,1,58,3703,
10049832,1,2037,843,1, 102655,27,1,2627,1739,
100502777,3650,16,0,107, 102661,2628,1744,1,2629,
100511,1574,885,1,1958, 102671834,1,2630,1755,1,
100523651,16,0,107,1, 102682520,1749,1,2632,1761,
100532724,3652,16,0,107, 102691,2633,1766,1,2560,
100541,58,3653,19,356, 102701810,1,2635,1776,1,
100551,58,3654,5,24, 102712636,1840,1,2625,1728,
100561,2664,3655,16,0, 102721,2638,1786,1,2565,
10057354,1,2546,1761,1, 102731816,1,2640,3704,16,
100582620,1730,1,2621,1735, 102740,378,1,2459,986,
100591,2612,1795,1,2618, 102751,2682,3705,16,0,
100601720,1,2520,1740,1, 10276378,1,2535,1791,1,
100612566,1773,1,2568,3656, 102772580,1804,1,2637,1781,
1006216,0,354,1,2459, 102781,2464,1003,1,2543,
10063967,1,2609,1780,1, 102791823,1,2470,3706,16,
100642610,1785,1,2611,1790, 102800,378,1,2582,3707,
100651,2464,984,1,2613, 1028116,0,378,1,2634,
100661800,1,2614,1805,1, 102821771,1,2624,1829,1,
100672616,1709,1,2617,1715, 102832551,1798,1,2626,1734,
100681,2470,3657,16,0, 102841,59,3708,19,377,
10069354,1,2619,1725,1, 102851,59,3709,5,27,
100702537,1754,1,2529,1747, 102861,2627,1739,1,2628,
100711,2623,3658,16,0, 102871744,1,2629,1834,1,
10072354,1,2551,1767,1, 102882630,1755,1,2520,1749,
1007359,3659,19,441,1, 102891,2632,1761,1,2633,
1007459,3660,5,24,1, 102901766,1,2560,1810,1,
100752664,3661,16,0,439, 102912635,1776,1,2636,1840,
100761,2546,1761,1,2620, 102921,2625,1728,1,2638,
100771730,1,2621,1735,1, 102931786,1,2565,1816,1,
100782612,1795,1,2618,1720, 102942640,3710,16,0,375,
100791,2520,1740,1,2566, 102951,2459,986,1,2682,
100801773,1,2568,3662,16, 102963711,16,0,375,1,
100810,439,1,2459,967, 102972535,1791,1,2580,1804,
100821,2609,1780,1,2610, 102981,2637,1781,1,2464,
100831785,1,2611,1790,1, 102991003,1,2543,1823,1,
100842464,984,1,2613,1800, 103002470,3712,16,0,375,
100851,2614,1805,1,2616, 103011,2582,3713,16,0,
100861709,1,2617,1715,1, 10302375,1,2634,1771,1,
100872470,3663,16,0,439, 103032624,1829,1,2551,1798,
100881,2619,1725,1,2537, 103041,2626,1734,1,60,
100891754,1,2529,1747,1, 103053714,19,423,1,60,
100902623,3664,16,0,439, 103063715,5,27,1,2627,
100911,2551,1767,1,60, 103071739,1,2628,1744,1,
100923665,19,399,1,60, 103082629,1834,1,2630,1755,
100933666,5,24,1,2664, 103091,2520,1749,1,2632,
100943667,16,0,397,1, 103101761,1,2633,1766,1,
100952546,1761,1,2620,1730, 103112560,1810,1,2635,1776,
100961,2621,1735,1,2612, 103121,2636,1840,1,2625,
100971795,1,2618,1720,1, 103131728,1,2638,1786,1,
100982520,1740,1,2566,1773, 103142565,1816,1,2640,3716,
100991,2568,3668,16,0, 1031516,0,421,1,2459,
10100397,1,2459,967,1, 10316986,1,2682,3717,16,
101012609,1780,1,2610,1785, 103170,421,1,2535,1791,
101021,2611,1790,1,2464, 103181,2580,1804,1,2637,
10103984,1,2613,1800,1, 103191781,1,2464,1003,1,
101042614,1805,1,2616,1709, 103202543,1823,1,2470,3718,
101051,2617,1715,1,2470, 1032116,0,421,1,2582,
101063669,16,0,397,1, 103223719,16,0,421,1,
101072619,1725,1,2537,1754, 103232634,1771,1,2624,1829,
101081,2529,1747,1,2623, 103241,2551,1798,1,2626,
101093670,16,0,397,1, 103251734,1,61,3720,19,
101102551,1767,1,61,3671, 10326543,1,61,3721,5,
1011119,644,1,61,3672, 1032727,1,2627,1739,1,
101125,24,1,2664,3673, 103282628,1744,1,2629,1834,
1011316,0,642,1,2546, 103291,2630,1755,1,2520,
101141761,1,2620,1730,1, 103301749,1,2632,1761,1,
101152621,1735,1,2612,1795, 103312633,1766,1,2560,1810,
101161,2618,1720,1,2520, 103321,2635,1776,1,2636,
101171740,1,2566,1773,1, 103331840,1,2625,1728,1,
101182568,3674,16,0,642, 103342638,1786,1,2565,1816,
101191,2459,967,1,2609, 103351,2640,3722,16,0,
101201780,1,2610,1785,1, 10336541,1,2459,986,1,
101212611,1790,1,2464,984, 103372682,3723,16,0,541,
101221,2613,1800,1,2614, 103381,2535,1791,1,2580,
101231805,1,2616,1709,1, 103391804,1,2637,1781,1,
101242617,1715,1,2470,3675, 103402464,1003,1,2543,1823,
1012516,0,642,1,2619, 103411,2470,3724,16,0,
101261725,1,2537,1754,1, 10342541,1,2582,3725,16,
101272529,1747,1,2623,3676, 103430,541,1,2634,1771,
1012816,0,642,1,2551, 103441,2624,1829,1,2551,
101291767,1,62,3677,19, 103451798,1,2626,1734,1,
10130392,1,62,3678,5, 1034662,3726,19,665,1,
1013124,1,2664,3679,16, 1034762,3727,5,27,1,
101320,390,1,2546,1761, 103482627,1739,1,2628,1744,
101331,2620,1730,1,2621, 103491,2629,1834,1,2630,
101341735,1,2612,1795,1, 103501755,1,2520,1749,1,
101352618,1720,1,2520,1740, 103512632,1761,1,2633,1766,
101361,2566,1773,1,2568, 103521,2560,1810,1,2635,
101373680,16,0,390,1, 103531776,1,2636,1840,1,
101382459,967,1,2609,1780, 103542625,1728,1,2638,1786,
101391,2610,1785,1,2611, 103551,2565,1816,1,2640,
101401790,1,2464,984,1, 103563728,16,0,663,1,
101412613,1800,1,2614,1805, 103572459,986,1,2682,3729,
101421,2616,1709,1,2617, 1035816,0,663,1,2535,
101431715,1,2470,3681,16, 103591791,1,2580,1804,1,
101440,390,1,2619,1725, 103602637,1781,1,2464,1003,
101451,2537,1754,1,2529, 103611,2543,1823,1,2470,
101461747,1,2623,3682,16, 103623730,16,0,663,1,
101470,390,1,2551,1767, 103632582,3731,16,0,663,
101481,63,3683,19,389, 103641,2634,1771,1,2624,
101491,63,3684,5,24, 103651829,1,2551,1798,1,
101501,2664,3685,16,0, 103662626,1734,1,63,3732,
10151387,1,2546,1761,1, 1036719,413,1,63,3733,
101522620,1730,1,2621,1735, 103685,27,1,2627,1739,
101531,2612,1795,1,2618, 103691,2628,1744,1,2629,
101541720,1,2520,1740,1, 103701834,1,2630,1755,1,
101552566,1773,1,2568,3686, 103712520,1749,1,2632,1761,
1015616,0,387,1,2459, 103721,2633,1766,1,2560,
10157967,1,2609,1780,1, 103731810,1,2635,1776,1,
101582610,1785,1,2611,1790, 103742636,1840,1,2625,1728,
101591,2464,984,1,2613, 103751,2638,1786,1,2565,
101601800,1,2614,1805,1, 103761816,1,2640,3734,16,
101612616,1709,1,2617,1715, 103770,411,1,2459,986,
101621,2470,3687,16,0, 103781,2682,3735,16,0,
10163387,1,2619,1725,1, 10379411,1,2535,1791,1,
101642537,1754,1,2529,1747, 103802580,1804,1,2637,1781,
101651,2623,3688,16,0, 103811,2464,1003,1,2543,
10166387,1,2551,1767,1, 103821823,1,2470,3736,16,
1016764,3689,19,386,1, 103830,411,1,2582,3737,
1016864,3690,5,24,1, 1038416,0,411,1,2634,
101692664,3691,16,0,384, 103851771,1,2624,1829,1,
101701,2546,1761,1,2620, 103862551,1798,1,2626,1734,
101711730,1,2621,1735,1, 103871,64,3738,19,410,
101722612,1795,1,2618,1720, 103881,64,3739,5,27,
101731,2520,1740,1,2566, 103891,2627,1739,1,2628,
101741773,1,2568,3692,16, 103901744,1,2629,1834,1,
101750,384,1,2459,967, 103912630,1755,1,2520,1749,
101761,2609,1780,1,2610, 103921,2632,1761,1,2633,
101771785,1,2611,1790,1, 103931766,1,2560,1810,1,
101782464,984,1,2613,1800, 103942635,1776,1,2636,1840,
101791,2614,1805,1,2616, 103951,2625,1728,1,2638,
101801709,1,2617,1715,1, 103961786,1,2565,1816,1,
101812470,3693,16,0,384, 103972640,3740,16,0,408,
101821,2619,1725,1,2537, 103981,2459,986,1,2682,
101831754,1,2529,1747,1, 103993741,16,0,408,1,
101842623,3694,16,0,384, 104002535,1791,1,2580,1804,
101851,2551,1767,1,65, 104011,2637,1781,1,2464,
101863695,19,438,1,65, 104021003,1,2543,1823,1,
101873696,5,24,1,2664, 104032470,3742,16,0,408,
101883697,16,0,436,1, 104041,2582,3743,16,0,
101892546,1761,1,2620,1730, 10405408,1,2634,1771,1,
101901,2621,1735,1,2612, 104062624,1829,1,2551,1798,
101911795,1,2618,1720,1, 104071,2626,1734,1,65,
101922520,1740,1,2566,1773, 104083744,19,462,1,65,
101931,2568,3698,16,0, 104093745,5,27,1,2627,
10194436,1,2459,967,1, 104101739,1,2628,1744,1,
101952609,1780,1,2610,1785, 104112629,1834,1,2630,1755,
101961,2611,1790,1,2464, 104121,2520,1749,1,2632,
10197984,1,2613,1800,1, 104131761,1,2633,1766,1,
101982614,1805,1,2616,1709, 104142560,1810,1,2635,1776,
101991,2617,1715,1,2470, 104151,2636,1840,1,2625,
102003699,16,0,436,1, 104161728,1,2638,1786,1,
102012619,1725,1,2537,1754, 104172565,1816,1,2640,3746,
102021,2529,1747,1,2623, 1041816,0,460,1,2459,
102033700,16,0,436,1, 10419986,1,2682,3747,16,
102042551,1767,1,66,3701, 104200,460,1,2535,1791,
1020519,435,1,66,3702, 104211,2580,1804,1,2637,
102065,24,1,2664,3703, 104221781,1,2464,1003,1,
1020716,0,433,1,2546, 104232543,1823,1,2470,3748,
102081761,1,2620,1730,1, 1042416,0,460,1,2582,
102092621,1735,1,2612,1795, 104253749,16,0,460,1,
102101,2618,1720,1,2520, 104262634,1771,1,2624,1829,
102111740,1,2566,1773,1, 104271,2551,1798,1,2626,
102122568,3704,16,0,433, 104281734,1,66,3750,19,
102131,2459,967,1,2609, 10429459,1,66,3751,5,
102141780,1,2610,1785,1, 1043027,1,2627,1739,1,
102152611,1790,1,2464,984, 104312628,1744,1,2629,1834,
102161,2613,1800,1,2614, 104321,2630,1755,1,2520,
102171805,1,2616,1709,1, 104331749,1,2632,1761,1,
102182617,1715,1,2470,3705, 104342633,1766,1,2560,1810,
1021916,0,433,1,2619, 104351,2635,1776,1,2636,
102201725,1,2537,1754,1, 104361840,1,2625,1728,1,
102212529,1747,1,2623,3706, 104372638,1786,1,2565,1816,
1022216,0,433,1,2551, 104381,2640,3752,16,0,
102231767,1,67,3707,19, 10439457,1,2459,986,1,
10224432,1,67,3708,5, 104402682,3753,16,0,457,
1022524,1,2664,3709,16, 104411,2535,1791,1,2580,
102260,430,1,2546,1761, 104421804,1,2637,1781,1,
102271,2620,1730,1,2621, 104432464,1003,1,2543,1823,
102281735,1,2612,1795,1, 104441,2470,3754,16,0,
102292618,1720,1,2520,1740, 10445457,1,2582,3755,16,
102301,2566,1773,1,2568, 104460,457,1,2634,1771,
102313710,16,0,430,1, 104471,2624,1829,1,2551,
102322459,967,1,2609,1780, 104481798,1,2626,1734,1,
102331,2610,1785,1,2611, 1044967,3756,19,456,1,
102341790,1,2464,984,1, 1045067,3757,5,27,1,
102352613,1800,1,2614,1805, 104512627,1739,1,2628,1744,
102361,2616,1709,1,2617, 104521,2629,1834,1,2630,
102371715,1,2470,3711,16, 104531755,1,2520,1749,1,
102380,430,1,2619,1725, 104542632,1761,1,2633,1766,
102391,2537,1754,1,2529, 104551,2560,1810,1,2635,
102401747,1,2623,3712,16, 104561776,1,2636,1840,1,
102410,430,1,2551,1767, 104572625,1728,1,2638,1786,
102421,68,3713,19,429, 104581,2565,1816,1,2640,
102431,68,3714,5,24, 104593758,16,0,454,1,
102441,2664,3715,16,0, 104602459,986,1,2682,3759,
10245427,1,2546,1761,1, 1046116,0,454,1,2535,
102462620,1730,1,2621,1735, 104621791,1,2580,1804,1,
102471,2612,1795,1,2618, 104632637,1781,1,2464,1003,
102481720,1,2520,1740,1, 104641,2543,1823,1,2470,
102492566,1773,1,2568,3716, 104653760,16,0,454,1,
1025016,0,427,1,2459, 104662582,3761,16,0,454,
10251967,1,2609,1780,1, 104671,2634,1771,1,2624,
102522610,1785,1,2611,1790, 104681829,1,2551,1798,1,
102531,2464,984,1,2613, 104692626,1734,1,68,3762,
102541800,1,2614,1805,1, 1047019,453,1,68,3763,
102552616,1709,1,2617,1715, 104715,27,1,2627,1739,
102561,2470,3717,16,0, 104721,2628,1744,1,2629,
10257427,1,2619,1725,1, 104731834,1,2630,1755,1,
102582537,1754,1,2529,1747, 104742520,1749,1,2632,1761,
102591,2623,3718,16,0, 104751,2633,1766,1,2560,
10260427,1,2551,1767,1, 104761810,1,2635,1776,1,
1026169,3719,19,365,1, 104772636,1840,1,2625,1728,
1026269,3720,5,24,1, 104781,2638,1786,1,2565,
102632664,3721,16,0,363, 104791816,1,2640,3764,16,
102641,2546,1761,1,2620, 104800,451,1,2459,986,
102651730,1,2621,1735,1, 104811,2682,3765,16,0,
102662612,1795,1,2618,1720, 10482451,1,2535,1791,1,
102671,2520,1740,1,2566, 104832580,1804,1,2637,1781,
102681773,1,2568,3722,16, 104841,2464,1003,1,2543,
102690,363,1,2459,967, 104851823,1,2470,3766,16,
102701,2609,1780,1,2610, 104860,451,1,2582,3767,
102711785,1,2611,1790,1, 1048716,0,451,1,2634,
102722464,984,1,2613,1800, 104881771,1,2624,1829,1,
102731,2614,1805,1,2616, 104892551,1798,1,2626,1734,
102741709,1,2617,1715,1, 104901,69,3768,19,389,
102752470,3723,16,0,363, 104911,69,3769,5,27,
102761,2619,1725,1,2537, 104921,2627,1739,1,2628,
102771754,1,2529,1747,1, 104931744,1,2629,1834,1,
102782623,3724,16,0,363, 104942630,1755,1,2520,1749,
102791,2551,1767,1,70, 104951,2632,1761,1,2633,
102803725,19,362,1,70, 104961766,1,2560,1810,1,
102813726,5,24,1,2664, 104972635,1776,1,2636,1840,
102823727,16,0,360,1, 104981,2625,1728,1,2638,
102832546,1761,1,2620,1730, 104991786,1,2565,1816,1,
102841,2621,1735,1,2612, 105002640,3770,16,0,387,
102851795,1,2618,1720,1, 105011,2459,986,1,2682,
102862520,1740,1,2566,1773, 105023771,16,0,387,1,
102871,2568,3728,16,0, 105032535,1791,1,2580,1804,
10288360,1,2459,967,1, 105041,2637,1781,1,2464,
102892609,1780,1,2610,1785, 105051003,1,2543,1823,1,
102901,2611,1790,1,2464, 105062470,3772,16,0,387,
10291984,1,2613,1800,1, 105071,2582,3773,16,0,
102922614,1805,1,2616,1709, 10508387,1,2634,1771,1,
102931,2617,1715,1,2470, 105092624,1829,1,2551,1798,
102943729,16,0,360,1, 105101,2626,1734,1,70,
102952619,1725,1,2537,1754, 105113774,19,386,1,70,
102961,2529,1747,1,2623, 105123775,5,27,1,2627,
102973730,16,0,360,1, 105131739,1,2628,1744,1,
102982551,1767,1,71,3731, 105142629,1834,1,2630,1755,
1029919,359,1,71,3732, 105151,2520,1749,1,2632,
103005,24,1,2664,3733, 105161761,1,2633,1766,1,
1030116,0,357,1,2546, 105172560,1810,1,2635,1776,
103021761,1,2620,1730,1, 105181,2636,1840,1,2625,
103032621,1735,1,2612,1795, 105191728,1,2638,1786,1,
103041,2618,1720,1,2520, 105202565,1816,1,2640,3776,
103051740,1,2566,1773,1, 1052116,0,384,1,2459,
103062568,3734,16,0,357, 10522986,1,2682,3777,16,
103071,2459,967,1,2609, 105230,384,1,2535,1791,
103081780,1,2610,1785,1, 105241,2580,1804,1,2637,
103092611,1790,1,2464,984, 105251781,1,2464,1003,1,
103101,2613,1800,1,2614, 105262543,1823,1,2470,3778,
103111805,1,2616,1709,1, 1052716,0,384,1,2582,
103122617,1715,1,2470,3735, 105283779,16,0,384,1,
1031316,0,357,1,2619, 105292634,1771,1,2624,1829,
103141725,1,2537,1754,1, 105301,2551,1798,1,2626,
103152529,1747,1,2623,3736, 105311734,1,71,3780,19,
1031616,0,357,1,2551, 10532383,1,71,3781,5,
103171767,1,72,3737,19, 1053327,1,2627,1739,1,
10318426,1,72,3738,5, 105342628,1744,1,2629,1834,
1031924,1,2664,3739,16, 105351,2630,1755,1,2520,
103200,424,1,2546,1761, 105361749,1,2632,1761,1,
103211,2620,1730,1,2621, 105372633,1766,1,2560,1810,
103221735,1,2612,1795,1, 105381,2635,1776,1,2636,
103232618,1720,1,2520,1740, 105391840,1,2625,1728,1,
103241,2566,1773,1,2568, 105402638,1786,1,2565,1816,
103253740,16,0,424,1, 105411,2640,3782,16,0,
103262459,967,1,2609,1780, 10542381,1,2459,986,1,
103271,2610,1785,1,2611, 105432682,3783,16,0,381,
103281790,1,2464,984,1, 105441,2535,1791,1,2580,
103292613,1800,1,2614,1805, 105451804,1,2637,1781,1,
103301,2616,1709,1,2617, 105462464,1003,1,2543,1823,
103311715,1,2470,3741,16, 105471,2470,3784,16,0,
103320,424,1,2619,1725, 10548381,1,2582,3785,16,
103331,2537,1754,1,2529, 105490,381,1,2634,1771,
103341747,1,2623,3742,16, 105501,2624,1829,1,2551,
103350,424,1,2551,1767, 105511798,1,2626,1734,1,
103361,73,3743,19,730, 1055272,3786,19,450,1,
103371,73,3744,5,24, 1055372,3787,5,27,1,
103381,2664,3745,16,0, 105542627,1739,1,2628,1744,
10339728,1,2546,1761,1, 105551,2629,1834,1,2630,
103402620,1730,1,2621,1735, 105561755,1,2520,1749,1,
103411,2612,1795,1,2618, 105572632,1761,1,2633,1766,
103421720,1,2520,1740,1, 105581,2560,1810,1,2635,
103432566,1773,1,2568,3746, 105591776,1,2636,1840,1,
1034416,0,728,1,2459, 105602625,1728,1,2638,1786,
10345967,1,2609,1780,1, 105611,2565,1816,1,2640,
103462610,1785,1,2611,1790, 105623788,16,0,448,1,
103471,2464,984,1,2613, 105632459,986,1,2682,3789,
103481800,1,2614,1805,1, 1056416,0,448,1,2535,
103492616,1709,1,2617,1715, 105651791,1,2580,1804,1,
103501,2470,3747,16,0, 105662637,1781,1,2464,1003,
10351728,1,2619,1725,1, 105671,2543,1823,1,2470,
103522537,1754,1,2529,1747, 105683790,16,0,448,1,
103531,2623,3748,16,0, 105692582,3791,16,0,448,
10354728,1,2551,1767,1, 105701,2634,1771,1,2624,
1035574,3749,19,422,1, 105711829,1,2551,1798,1,
1035674,3750,5,24,1, 105722626,1734,1,73,3792,
103572664,3751,16,0,420, 1057319,447,1,73,3793,
103581,2546,1761,1,2620, 105745,27,1,2627,1739,
103591730,1,2621,1735,1, 105751,2628,1744,1,2629,
103602612,1795,1,2618,1720, 105761834,1,2630,1755,1,
103611,2520,1740,1,2566, 105772520,1749,1,2632,1761,
103621773,1,2568,3752,16, 105781,2633,1766,1,2560,
103630,420,1,2459,967, 105791810,1,2635,1776,1,
103641,2609,1780,1,2610, 105802636,1840,1,2625,1728,
103651785,1,2611,1790,1, 105811,2638,1786,1,2565,
103662464,984,1,2613,1800, 105821816,1,2640,3794,16,
103671,2614,1805,1,2616, 105830,445,1,2459,986,
103681709,1,2617,1715,1, 105841,2682,3795,16,0,
103692470,3753,16,0,420, 10585445,1,2535,1791,1,
103701,2619,1725,1,2537, 105862580,1804,1,2637,1781,
103711754,1,2529,1747,1, 105871,2464,1003,1,2543,
103722623,3754,16,0,420, 105881823,1,2470,3796,16,
103731,2551,1767,1,75, 105890,445,1,2582,3797,
103743755,19,411,1,75, 1059016,0,445,1,2634,
103753756,5,24,1,2664, 105911771,1,2624,1829,1,
103763757,16,0,409,1, 105922551,1798,1,2626,1734,
103772546,1761,1,2620,1730, 105931,74,3798,19,751,
103781,2621,1735,1,2612, 105941,74,3799,5,27,
103791795,1,2618,1720,1, 105951,2627,1739,1,2628,
103802520,1740,1,2566,1773, 105961744,1,2629,1834,1,
103811,2568,3758,16,0, 105972630,1755,1,2520,1749,
10382409,1,2459,967,1, 105981,2632,1761,1,2633,
103832609,1780,1,2610,1785, 105991766,1,2560,1810,1,
103841,2611,1790,1,2464, 106002635,1776,1,2636,1840,
10385984,1,2613,1800,1, 106011,2625,1728,1,2638,
103862614,1805,1,2616,1709, 106021786,1,2565,1816,1,
103871,2617,1715,1,2470, 106032640,3800,16,0,749,
103883759,16,0,409,1, 106041,2459,986,1,2682,
103892619,1725,1,2537,1754, 106053801,16,0,749,1,
103901,2529,1747,1,2623, 106062535,1791,1,2580,1804,
103913760,16,0,409,1, 106071,2637,1781,1,2464,
103922551,1767,1,76,3761, 106081003,1,2543,1823,1,
1039319,534,1,76,3762, 106092470,3802,16,0,749,
103945,24,1,2664,3763, 106101,2582,3803,16,0,
1039516,0,532,1,2546, 10611749,1,2634,1771,1,
103961761,1,2620,1730,1, 106122624,1829,1,2551,1798,
103972621,1735,1,2612,1795, 106131,2626,1734,1,75,
103981,2618,1720,1,2520, 106143804,19,562,1,75,
103991740,1,2566,1773,1, 106153805,5,27,1,2627,
104002568,3764,16,0,532, 106161739,1,2628,1744,1,
104011,2459,967,1,2609, 106172629,1834,1,2630,1755,
104021780,1,2610,1785,1, 106181,2520,1749,1,2632,
104032611,1790,1,2464,984, 106191761,1,2633,1766,1,
104041,2613,1800,1,2614, 106202560,1810,1,2635,1776,
104051805,1,2616,1709,1, 106211,2636,1840,1,2625,
104062617,1715,1,2470,3765, 106221728,1,2638,1786,1,
1040716,0,532,1,2619, 106232565,1816,1,2640,3806,
104081725,1,2537,1754,1, 1062416,0,560,1,2459,
104092529,1747,1,2623,3766, 10625986,1,2682,3807,16,
1041016,0,532,1,2551, 106260,560,1,2535,1791,
104111767,1,77,3767,19, 106271,2580,1804,1,2637,
10412531,1,77,3768,5, 106281781,1,2464,1003,1,
1041324,1,2664,3769,16, 106292543,1823,1,2470,3808,
104140,529,1,2546,1761, 1063016,0,560,1,2582,
104151,2620,1730,1,2621, 106313809,16,0,560,1,
104161735,1,2612,1795,1, 106322634,1771,1,2624,1829,
104172618,1720,1,2520,1740, 106331,2551,1798,1,2626,
104181,2566,1773,1,2568, 106341734,1,76,3810,19,
104193770,16,0,529,1, 10635432,1,76,3811,5,
104202459,967,1,2609,1780, 1063627,1,2627,1739,1,
104211,2610,1785,1,2611, 106372628,1744,1,2629,1834,
104221790,1,2464,984,1, 106381,2630,1755,1,2520,
104232613,1800,1,2614,1805, 106391749,1,2632,1761,1,
104241,2616,1709,1,2617, 106402633,1766,1,2560,1810,
104251715,1,2470,3771,16, 106411,2635,1776,1,2636,
104260,529,1,2619,1725, 106421840,1,2625,1728,1,
104271,2537,1754,1,2529, 106432638,1786,1,2565,1816,
104281747,1,2623,3772,16, 106441,2640,3812,16,0,
104290,529,1,2551,1767, 10645430,1,2459,986,1,
104301,78,3773,19,528, 106462682,3813,16,0,430,
104311,78,3774,5,24, 106471,2535,1791,1,2580,
104321,2664,3775,16,0, 106481804,1,2637,1781,1,
10433526,1,2546,1761,1, 106492464,1003,1,2543,1823,
104342620,1730,1,2621,1735, 106501,2470,3814,16,0,
104351,2612,1795,1,2618, 10651430,1,2582,3815,16,
104361720,1,2520,1740,1, 106520,430,1,2634,1771,
104372566,1773,1,2568,3776, 106531,2624,1829,1,2551,
1043816,0,526,1,2459, 106541798,1,2626,1734,1,
10439967,1,2609,1780,1, 1065577,3816,19,559,1,
104402610,1785,1,2611,1790, 1065677,3817,5,27,1,
104411,2464,984,1,2613, 106572627,1739,1,2628,1744,
104421800,1,2614,1805,1, 106581,2629,1834,1,2630,
104432616,1709,1,2617,1715, 106591755,1,2520,1749,1,
104441,2470,3777,16,0, 106602632,1761,1,2633,1766,
10445526,1,2619,1725,1, 106611,2560,1810,1,2635,
104462537,1754,1,2529,1747, 106621776,1,2636,1840,1,
104471,2623,3778,16,0, 106632625,1728,1,2638,1786,
10448526,1,2551,1767,1, 106641,2565,1816,1,2640,
1044979,3779,19,525,1, 106653818,16,0,557,1,
1045079,3780,5,24,1, 106662459,986,1,2682,3819,
104512664,3781,16,0,523, 1066716,0,557,1,2535,
104521,2546,1761,1,2620, 106681791,1,2580,1804,1,
104531730,1,2621,1735,1, 106692637,1781,1,2464,1003,
104542612,1795,1,2618,1720, 106701,2543,1823,1,2470,
104551,2520,1740,1,2566, 106713820,16,0,557,1,
104561773,1,2568,3782,16, 106722582,3821,16,0,557,
104570,523,1,2459,967, 106731,2634,1771,1,2624,
104581,2609,1780,1,2610, 106741829,1,2551,1798,1,
104591785,1,2611,1790,1, 106752626,1734,1,78,3822,
104602464,984,1,2613,1800, 1067619,556,1,78,3823,
104611,2614,1805,1,2616, 106775,27,1,2627,1739,
104621709,1,2617,1715,1, 106781,2628,1744,1,2629,
104632470,3783,16,0,523, 106791834,1,2630,1755,1,
104641,2619,1725,1,2537, 106802520,1749,1,2632,1761,
104651754,1,2529,1747,1, 106811,2633,1766,1,2560,
104662623,3784,16,0,523, 106821810,1,2635,1776,1,
104671,2551,1767,1,80, 106832636,1840,1,2625,1728,
104683785,19,521,1,80, 106841,2638,1786,1,2565,
104693786,5,24,1,2664, 106851816,1,2640,3824,16,
104703787,16,0,519,1, 106860,554,1,2459,986,
104712546,1761,1,2620,1730, 106871,2682,3825,16,0,
104721,2621,1735,1,2612, 10688554,1,2535,1791,1,
104731795,1,2618,1720,1, 106892580,1804,1,2637,1781,
104742520,1740,1,2566,1773, 106901,2464,1003,1,2543,
104751,2568,3788,16,0, 106911823,1,2470,3826,16,
10476519,1,2459,967,1, 106920,554,1,2582,3827,
104772609,1780,1,2610,1785, 1069316,0,554,1,2634,
104781,2611,1790,1,2464, 106941771,1,2624,1829,1,
10479984,1,2613,1800,1, 106952551,1798,1,2626,1734,
104802614,1805,1,2616,1709, 106961,79,3828,19,553,
104811,2617,1715,1,2470, 106971,79,3829,5,27,
104823789,16,0,519,1, 106981,2627,1739,1,2628,
104832619,1725,1,2537,1754, 106991744,1,2629,1834,1,
104841,2529,1747,1,2623, 107002630,1755,1,2520,1749,
104853790,16,0,519,1, 107011,2632,1761,1,2633,
104862551,1767,1,81,3791, 107021766,1,2560,1810,1,
1048719,383,1,81,3792, 107032635,1776,1,2636,1840,
104885,24,1,2664,3793, 107041,2625,1728,1,2638,
1048916,0,381,1,2546, 107051786,1,2565,1816,1,
104901761,1,2620,1730,1, 107062640,3830,16,0,551,
104912621,1735,1,2612,1795, 107071,2459,986,1,2682,
104921,2618,1720,1,2520, 107083831,16,0,551,1,
104931740,1,2566,1773,1, 107092535,1791,1,2580,1804,
104942568,3794,16,0,381, 107101,2637,1781,1,2464,
104951,2459,967,1,2609, 107111003,1,2543,1823,1,
104961780,1,2610,1785,1, 107122470,3832,16,0,551,
104972611,1790,1,2464,984, 107131,2582,3833,16,0,
104981,2613,1800,1,2614, 10714551,1,2634,1771,1,
104991805,1,2616,1709,1, 107152624,1829,1,2551,1798,
105002617,1715,1,2470,3795, 107161,2626,1734,1,80,
1050116,0,381,1,2619, 107173834,19,420,1,80,
105021725,1,2537,1754,1, 107183835,5,27,1,2627,
105032529,1747,1,2623,3796, 107191739,1,2628,1744,1,
1050416,0,381,1,2551, 107202629,1834,1,2630,1755,
105051767,1,82,3797,19, 107211,2520,1749,1,2632,
10506544,1,82,3798,5, 107221761,1,2633,1766,1,
1050724,1,2664,3799,16, 107232560,1810,1,2635,1776,
105080,542,1,2546,1761, 107241,2636,1840,1,2625,
105091,2620,1730,1,2621, 107251728,1,2638,1786,1,
105101735,1,2612,1795,1, 107262565,1816,1,2640,3836,
105112618,1720,1,2520,1740, 1072716,0,418,1,2459,
105121,2566,1773,1,2568, 10728986,1,2682,3837,16,
105133800,16,0,542,1, 107290,418,1,2535,1791,
105142459,967,1,2609,1780, 107301,2580,1804,1,2637,
105151,2610,1785,1,2611, 107311781,1,2464,1003,1,
105161790,1,2464,984,1, 107322543,1823,1,2470,3838,
105172613,1800,1,2614,1805, 1073316,0,418,1,2582,
105181,2616,1709,1,2617, 107343839,16,0,418,1,
105191715,1,2470,3801,16, 107352634,1771,1,2624,1829,
105200,542,1,2619,1725, 107361,2551,1798,1,2626,
105211,2537,1754,1,2529, 107371734,1,81,3840,19,
105221747,1,2623,3802,16, 10738407,1,81,3841,5,
105230,542,1,2551,1767, 1073927,1,2627,1739,1,
105241,83,3803,19,380, 107402628,1744,1,2629,1834,
105251,83,3804,5,24, 107411,2630,1755,1,2520,
105261,2664,3805,16,0, 107421749,1,2632,1761,1,
10527378,1,2546,1761,1, 107432633,1766,1,2560,1810,
105282620,1730,1,2621,1735, 107441,2635,1776,1,2636,
105291,2612,1795,1,2618, 107451840,1,2625,1728,1,
105301720,1,2520,1740,1, 107462638,1786,1,2565,1816,
105312566,1773,1,2568,3806, 107471,2640,3842,16,0,
1053216,0,378,1,2459, 10748405,1,2459,986,1,
10533967,1,2609,1780,1, 107492682,3843,16,0,405,
105342610,1785,1,2611,1790, 107501,2535,1791,1,2580,
105351,2464,984,1,2613, 107511804,1,2637,1781,1,
105361800,1,2614,1805,1, 107522464,1003,1,2543,1823,
105372616,1709,1,2617,1715, 107531,2470,3844,16,0,
105381,2470,3807,16,0, 10754405,1,2582,3845,16,
10539378,1,2619,1725,1, 107550,405,1,2634,1771,
105402537,1754,1,2529,1747, 107561,2624,1829,1,2551,
105411,2623,3808,16,0, 107571798,1,2626,1734,1,
10542378,1,2551,1767,1, 1075882,3846,19,443,1,
1054384,3809,19,377,1, 1075982,3847,5,27,1,
1054484,3810,5,24,1, 107602627,1739,1,2628,1744,
105452664,3811,16,0,375, 107611,2629,1834,1,2630,
105461,2546,1761,1,2620, 107621755,1,2520,1749,1,
105471730,1,2621,1735,1, 107632632,1761,1,2633,1766,
105482612,1795,1,2618,1720, 107641,2560,1810,1,2635,
105491,2520,1740,1,2566, 107651776,1,2636,1840,1,
105501773,1,2568,3812,16, 107662625,1728,1,2638,1786,
105510,375,1,2459,967, 107671,2565,1816,1,2640,
105521,2609,1780,1,2610, 107683848,16,0,441,1,
105531785,1,2611,1790,1, 107692459,986,1,2682,3849,
105542464,984,1,2613,1800, 1077016,0,441,1,2535,
105551,2614,1805,1,2616, 107711791,1,2580,1804,1,
105561709,1,2617,1715,1, 107722637,1781,1,2464,1003,
105572470,3813,16,0,375, 107731,2543,1823,1,2470,
105581,2619,1725,1,2537, 107743850,16,0,441,1,
105591754,1,2529,1747,1, 107752582,3851,16,0,441,
105602623,3814,16,0,375, 107761,2634,1771,1,2624,
105611,2551,1767,1,85, 107771829,1,2551,1798,1,
105623815,19,415,1,85, 107782626,1734,1,83,3852,
105633816,5,24,1,2664, 1077919,404,1,83,3853,
105643817,16,0,413,1, 107805,27,1,2627,1739,
105652546,1761,1,2620,1730, 107811,2628,1744,1,2629,
105661,2621,1735,1,2612, 107821834,1,2630,1755,1,
105671795,1,2618,1720,1, 107832520,1749,1,2632,1761,
105682520,1740,1,2566,1773, 107841,2633,1766,1,2560,
105691,2568,3818,16,0, 107851810,1,2635,1776,1,
10570413,1,2459,967,1, 107862636,1840,1,2625,1728,
105712609,1780,1,2610,1785, 107871,2638,1786,1,2565,
105721,2611,1790,1,2464, 107881816,1,2640,3854,16,
10573984,1,2613,1800,1, 107890,402,1,2459,986,
105742614,1805,1,2616,1709, 107901,2682,3855,16,0,
105751,2617,1715,1,2470, 10791402,1,2535,1791,1,
105763819,16,0,413,1, 107922580,1804,1,2637,1781,
105772619,1725,1,2537,1754, 107931,2464,1003,1,2543,
105781,2529,1747,1,2623, 107941823,1,2470,3856,16,
105793820,16,0,413,1, 107950,402,1,2582,3857,
105802551,1767,1,86,3821, 1079616,0,402,1,2634,
1058119,537,1,86,3822, 107971771,1,2624,1829,1,
105825,24,1,2664,3823, 107982551,1798,1,2626,1734,
1058316,0,535,1,2546, 107991,84,3858,19,401,
105841761,1,2620,1730,1, 108001,84,3859,5,27,
105852621,1735,1,2612,1795, 108011,2627,1739,1,2628,
105861,2618,1720,1,2520, 108021744,1,2629,1834,1,
105871740,1,2566,1773,1, 108032630,1755,1,2520,1749,
105882568,3824,16,0,535, 108041,2632,1761,1,2633,
105891,2459,967,1,2609, 108051766,1,2560,1810,1,
105901780,1,2610,1785,1, 108062635,1776,1,2636,1840,
105912611,1790,1,2464,984, 108071,2625,1728,1,2638,
105921,2613,1800,1,2614, 108081786,1,2565,1816,1,
105931805,1,2616,1709,1, 108092640,3860,16,0,399,
105942617,1715,1,2470,3825, 108101,2459,986,1,2682,
1059516,0,535,1,2619, 108113861,16,0,399,1,
105961725,1,2537,1754,1, 108122535,1791,1,2580,1804,
105972529,1747,1,2623,3826, 108131,2637,1781,1,2464,
1059816,0,535,1,2551, 108141003,1,2543,1823,1,
105991767,1,87,3827,19, 108152470,3862,16,0,399,
10600402,1,87,3828,5, 108161,2582,3863,16,0,
1060124,1,2664,3829,16, 10817399,1,2634,1771,1,
106020,400,1,2546,1761, 108182624,1829,1,2551,1798,
106031,2620,1730,1,2621, 108191,2626,1734,1,85,
106041735,1,2612,1795,1, 108203864,19,439,1,85,
106052618,1720,1,2520,1740, 108213865,5,27,1,2627,
106061,2566,1773,1,2568, 108221739,1,2628,1744,1,
106073830,16,0,400,1, 108232629,1834,1,2630,1755,
106082459,967,1,2609,1780, 108241,2520,1749,1,2632,
106091,2610,1785,1,2611, 108251761,1,2633,1766,1,
106101790,1,2464,984,1, 108262560,1810,1,2635,1776,
106112613,1800,1,2614,1805, 108271,2636,1840,1,2625,
106121,2616,1709,1,2617, 108281728,1,2638,1786,1,
106131715,1,2470,3831,16, 108292565,1816,1,2640,3866,
106140,400,1,2619,1725, 1083016,0,437,1,2459,
106151,2537,1754,1,2529, 10831986,1,2682,3867,16,
106161747,1,2623,3832,16, 108320,437,1,2535,1791,
106170,400,1,2551,1767, 108331,2580,1804,1,2637,
106181,88,3833,19,374, 108341781,1,2464,1003,1,
106191,88,3834,5,24, 108352543,1823,1,2470,3868,
106201,2664,3835,16,0, 1083616,0,437,1,2582,
10621372,1,2546,1761,1, 108373869,16,0,437,1,
106222620,1730,1,2621,1735, 108382634,1771,1,2624,1829,
106231,2612,1795,1,2618, 108391,2551,1798,1,2626,
106241720,1,2520,1740,1, 108401734,1,86,3870,19,
106252566,1773,1,2568,3836, 10841436,1,86,3871,5,
1062616,0,372,1,2459, 1084227,1,2627,1739,1,
10627967,1,2609,1780,1, 108432628,1744,1,2629,1834,
106282610,1785,1,2611,1790, 108441,2630,1755,1,2520,
106291,2464,984,1,2613, 108451749,1,2632,1761,1,
106301800,1,2614,1805,1, 108462633,1766,1,2560,1810,
106312616,1709,1,2617,1715, 108471,2635,1776,1,2636,
106321,2470,3837,16,0, 108481840,1,2625,1728,1,
10633372,1,2619,1725,1, 108492638,1786,1,2565,1816,
106342537,1754,1,2529,1747, 108501,2640,3872,16,0,
106351,2623,3838,16,0, 10851434,1,2459,986,1,
10636372,1,2551,1767,1, 108522682,3873,16,0,434,
1063789,3839,19,368,1, 108531,2535,1791,1,2580,
1063889,3840,5,24,1, 108541804,1,2637,1781,1,
106392664,3841,16,0,366, 108552464,1003,1,2543,1823,
106401,2546,1761,1,2620, 108561,2470,3874,16,0,
106411730,1,2621,1735,1, 10857434,1,2582,3875,16,
106422612,1795,1,2618,1720, 108580,434,1,2634,1771,
106431,2520,1740,1,2566, 108591,2624,1829,1,2551,
106441773,1,2568,3842,16, 108601798,1,2626,1734,1,
106450,366,1,2459,967, 1086187,3876,19,550,1,
106461,2609,1780,1,2610, 1086287,3877,5,27,1,
106471785,1,2611,1790,1, 108632627,1739,1,2628,1744,
106482464,984,1,2613,1800, 108641,2629,1834,1,2630,
106491,2614,1805,1,2616, 108651755,1,2520,1749,1,
106501709,1,2617,1715,1, 108662632,1761,1,2633,1766,
106512470,3843,16,0,366, 108671,2560,1810,1,2635,
106521,2619,1725,1,2537, 108681776,1,2636,1840,1,
106531754,1,2529,1747,1, 108692625,1728,1,2638,1786,
106542623,3844,16,0,366, 108701,2565,1816,1,2640,
106551,2551,1767,1,90, 108713878,16,0,548,1,
106563845,19,371,1,90, 108722459,986,1,2682,3879,
106573846,5,24,1,2664, 1087316,0,548,1,2535,
106583847,16,0,369,1, 108741791,1,2580,1804,1,
106592546,1761,1,2620,1730, 108752637,1781,1,2464,1003,
106601,2621,1735,1,2612, 108761,2543,1823,1,2470,
106611795,1,2618,1720,1, 108773880,16,0,548,1,
106622520,1740,1,2566,1773, 108782582,3881,16,0,548,
106631,2568,3848,16,0, 108791,2634,1771,1,2624,
10664369,1,2459,967,1, 108801829,1,2551,1798,1,
106652609,1780,1,2610,1785, 108812626,1734,1,88,3882,
106661,2611,1790,1,2464, 1088219,398,1,88,3883,
10667984,1,2613,1800,1, 108835,27,1,2627,1739,
106682614,1805,1,2616,1709, 108841,2628,1744,1,2629,
106691,2617,1715,1,2470, 108851834,1,2630,1755,1,
106703849,16,0,369,1, 108862520,1749,1,2632,1761,
106712619,1725,1,2537,1754, 108871,2633,1766,1,2560,
106721,2529,1747,1,2623, 108881810,1,2635,1776,1,
106733850,16,0,369,1, 108892636,1840,1,2625,1728,
106742551,1767,1,91,3851, 108901,2638,1786,1,2565,
1067519,418,1,91,3852, 108911816,1,2640,3884,16,
106765,24,1,2664,3853, 108920,396,1,2459,986,
1067716,0,416,1,2546, 108931,2682,3885,16,0,
106781761,1,2620,1730,1, 10894396,1,2535,1791,1,
106792621,1735,1,2612,1795, 108952580,1804,1,2637,1781,
106801,2618,1720,1,2520, 108961,2464,1003,1,2543,
106811740,1,2566,1773,1, 108971823,1,2470,3886,16,
106822568,3854,16,0,416, 108980,396,1,2582,3887,
106831,2459,967,1,2609, 1089916,0,396,1,2634,
106841780,1,2610,1785,1, 109001771,1,2624,1829,1,
106852611,1790,1,2464,984, 109012551,1798,1,2626,1734,
106861,2613,1800,1,2614, 109021,89,3888,19,392,
106871805,1,2616,1709,1, 109031,89,3889,5,27,
106882617,1715,1,2470,3855, 109041,2627,1739,1,2628,
1068916,0,416,1,2619, 109051744,1,2629,1834,1,
106901725,1,2537,1754,1, 109062630,1755,1,2520,1749,
106912529,1747,1,2623,3856, 109071,2632,1761,1,2633,
1069216,0,416,1,2551, 109081766,1,2560,1810,1,
106931767,1,92,3857,19, 109092635,1776,1,2636,1840,
10694133,1,92,3858,5, 109101,2625,1728,1,2638,
10695129,1,0,3859,16, 109111786,1,2565,1816,1,
106960,714,1,1,2146, 109122640,3890,16,0,390,
106971,2,2152,1,3, 109131,2459,986,1,2682,
106982157,1,4,2162,1, 109143891,16,0,390,1,
106995,2167,1,6,2172, 109152535,1791,1,2580,1804,
107001,7,2177,1,8, 109161,2637,1781,1,2464,
107013860,16,0,131,1, 109171003,1,2543,1823,1,
107021515,3861,16,0,176, 109182470,3892,16,0,390,
107031,2523,3862,16,0, 109191,2582,3893,16,0,
10704468,1,2022,3863,16, 10920390,1,2634,1771,1,
107050,548,1,256,3864, 109212624,1829,1,2551,1798,
1070616,0,184,1,2777, 109221,2626,1734,1,90,
107073865,16,0,714,1, 109233894,19,395,1,90,
107082025,3866,16,0,552, 109243895,5,27,1,2627,
107091,18,3867,16,0, 109251739,1,2628,1744,1,
10710148,1,2027,3868,16, 109262629,1834,1,2630,1755,
107110,556,1,2029,811, 109271,2520,1749,1,2632,
107121,2030,817,1,2031, 109281761,1,2633,1766,1,
10713822,1,2032,827,1, 109292560,1810,1,2635,1776,
107142033,832,1,277,3869, 109301,2636,1840,1,2625,
1071516,0,184,1,2035, 109311728,1,2638,1786,1,
10716838,1,2037,843,1, 109322565,1816,1,2640,3896,
107172540,3870,16,0,498, 1093316,0,393,1,2459,
107181,2039,848,1,32, 10934986,1,2682,3897,16,
107193871,16,0,176,1, 109350,393,1,2535,1791,
107202041,854,1,2795,3426, 109361,2580,1804,1,2637,
107211,2796,3432,1,2797, 109371781,1,2464,1003,1,
107223437,1,2798,3442,1, 109382543,1823,1,2470,3898,
1072341,3872,16,0,184, 1093916,0,393,1,2582,
107241,1297,3873,16,0, 109403899,16,0,393,1,
10725176,1,43,3874,16, 109412634,1771,1,2624,1829,
107260,184,1,46,3875, 109421,2551,1798,1,2626,
1072716,0,189,1,1804, 109431734,1,91,3900,19,
107283876,16,0,176,1, 10944569,1,91,3901,5,
10729299,3877,16,0,184, 1094527,1,2627,1739,1,
107301,52,3878,16,0, 109462628,1744,1,2629,1834,
10731176,1,509,3879,16, 109471,2630,1755,1,2520,
107320,184,1,2318,3880, 109481749,1,2632,1761,1,
1073316,0,176,1,62, 109492633,1766,1,2560,1810,
107343881,16,0,206,1, 109501,2635,1776,1,2636,
1073565,3882,16,0,208, 109511840,1,2625,1728,1,
107361,2075,3883,16,0, 109522638,1786,1,2565,1816,
10737176,1,1574,885,1, 109531,2640,3902,16,0,
1073871,3884,16,0,184, 10954567,1,2459,986,1,
107391,1775,3885,16,0, 109552682,3903,16,0,567,
10740176,1,76,3886,16, 109561,2535,1791,1,2580,
107410,184,1,1834,3887, 109571804,1,2637,1781,1,
1074216,0,176,1,2337, 109582464,1003,1,2543,1823,
107433888,16,0,176,1, 109591,2470,3904,16,0,
1074479,3889,16,0,184, 10960567,1,2582,3905,16,
107451,1335,3890,16,0, 109610,567,1,2634,1771,
10746176,1,2511,3891,16, 109621,2624,1829,1,2551,
107470,453,1,322,3892, 109631798,1,2626,1734,1,
1074816,0,184,1,85, 1096492,3906,19,133,1,
107493893,16,0,184,1, 1096592,3907,5,129,1,
107501261,3894,16,0,176, 109660,3908,16,0,355,
107511,89,3895,16,0, 109671,1,2191,1,2,
10752184,1,2765,3453,1, 109682197,1,3,2202,1,
10753346,3896,16,0,184, 109694,2207,1,5,2212,
107541,97,3897,16,0, 109701,6,2217,1,7,
10755184,1,2106,3898,16, 109712222,1,8,3909,16,
107560,176,1,2043,860, 109720,131,1,1515,3910,
107571,102,3899,16,0, 1097316,0,180,1,2021,
10758184,1,1860,907,1, 10974823,1,2022,3911,16,
107591803,873,1,2364,913, 109750,573,1,256,3912,
107601,2293,3900,16,0, 1097616,0,188,1,2526,
10761184,1,1113,3901,16, 109773913,16,0,294,1,
107620,168,1,112,3902, 109782025,3914,16,0,577,
1076316,0,184,1,1117, 109791,18,3915,16,0,
107643903,16,0,176,1, 10980147,1,2027,3916,16,
107651873,921,1,1876,3904, 109810,581,1,2029,830,
1076616,0,176,1,372, 109821,2030,836,1,2031,
107673905,16,0,586,1, 10983841,1,2032,846,1,
10768374,3906,16,0,588, 109842786,3480,1,277,3917,
107691,124,3907,16,0, 1098516,0,188,1,2035,
10770184,1,376,3908,16, 10986857,1,2037,862,1,
107710,590,1,378,3909, 109872039,867,1,32,3918,
1077216,0,592,1,2136, 1098816,0,180,1,2041,
10773928,1,381,3910,16, 10989873,1,2293,3919,16,
107740,184,1,525,3911, 109900,188,1,2043,879,
1077516,0,184,1,137, 109911,2797,3498,1,2798,
107763912,16,0,184,1, 109923920,16,0,355,1,
107772021,804,1,1901,3913, 1099341,3921,16,0,188,
1077816,0,176,1,1153, 109941,1297,3922,16,0,
107793914,16,0,176,1, 10995180,1,43,3923,16,
10780151,3915,16,0,184, 109960,188,1,2554,3924,
107811,1407,3916,16,0, 1099716,0,531,1,46,
10782176,1,1659,3917,16, 109983925,16,0,193,1,
107830,176,1,2413,3918, 109991804,3926,16,0,180,
1078416,0,176,1,406, 110001,299,3927,16,0,
107853919,16,0,184,1, 11001188,1,52,3928,16,
107861371,3920,16,0,176, 110020,180,1,2816,3464,
107871,2105,900,1,166, 110031,2817,3493,1,2818,
107883921,16,0,184,1, 110043470,1,2819,3475,1,
107892045,865,1,1622,3922, 110052318,3929,16,0,180,
1079016,0,184,1,1931, 110061,62,3930,16,0,
10791946,1,1933,3923,16, 11007209,1,65,3931,16,
107920,176,1,431,3924, 110080,214,1,2075,3932,
1079316,0,184,1,1585, 1100916,0,180,1,1574,
107943925,16,0,184,1, 11010904,1,71,3933,16,
10795182,3926,16,0,184, 110110,188,1,1775,3934,
107961,1189,3927,16,0, 1101216,0,180,1,76,
10797176,1,1443,3928,16, 110133935,16,0,188,1,
107980,176,1,1695,3929, 110141834,3936,16,0,180,
1079916,0,176,1,2198, 110151,2337,3937,16,0,
108003930,16,0,176,1, 11016180,1,79,3938,16,
108012776,3417,1,447,3931, 110170,188,1,1335,3939,
1080216,0,184,1,2458, 1101816,0,180,1,2511,
10803961,1,2459,967,1, 110193940,16,0,472,1,
108041958,3932,16,0,176, 11020322,3941,16,0,188,
108051,2462,974,1,1657, 110211,85,3942,16,0,
10806979,1,2464,984,1, 11022188,1,2761,3943,16,
108072466,3447,1,459,3933, 110230,188,1,89,3944,
1080816,0,184,1,2468, 1102416,0,188,1,2033,
108093934,16,0,352,1, 11025851,1,509,3945,16,
10810462,3935,16,0,184, 110260,188,1,346,3946,
108111,199,3936,16,0, 1102716,0,188,1,97,
10812184,1,217,3937,16, 110283947,16,0,188,1,
108130,184,1,2227,993, 110292106,3948,16,0,180,
108141,1225,3938,16,0, 110301,102,3949,16,0,
10815176,1,1479,3939,16, 11031188,1,1860,926,1,
108160,176,1,1731,3940, 110321803,892,1,2364,932,
1081716,0,184,1,2737, 110331,1113,3950,16,0,
108183459,1,2740,3941,16, 11034173,1,112,3951,16,
108190,184,1,1989,1002, 110350,188,1,1117,3952,
108201,1990,3942,16,0, 1103616,0,180,1,1873,
10821176,1,236,3943,16, 11037940,1,1876,3953,16,
108220,184,1,2507,3944, 110380,180,1,372,3954,
1082316,0,447,1,1756, 1103916,0,611,1,374,
108243945,16,0,176,1, 110403955,16,0,613,1,
1082593,3946,19,702,1, 11041124,3956,16,0,188,
1082693,3947,5,95,1, 110421,376,3957,16,0,
10827256,3948,16,0,700, 11043615,1,378,3958,16,
108281,1261,3949,16,0, 110440,617,1,2136,947,
10829700,1,509,3950,16, 110451,1261,3959,16,0,
108300,700,1,1515,3951, 11046180,1,381,3960,16,
1083116,0,700,1,2021, 110470,188,1,525,3961,
10832804,1,1775,3952,16, 1104816,0,188,1,137,
108330,700,1,2029,811, 110493962,16,0,188,1,
108341,2030,817,1,2031, 110501901,3963,16,0,180,
10835822,1,2032,827,1, 110511,1153,3964,16,0,
108362033,832,1,277,3953, 11052180,1,151,3965,16,
1083716,0,700,1,2035, 110530,188,1,1407,3966,
10838838,1,2037,843,1, 1105416,0,180,1,1659,
108392039,848,1,32,3954, 110553967,16,0,180,1,
1084016,0,700,1,2041, 110562413,3968,16,0,180,
10841854,1,2293,3955,16, 110571,406,3969,16,0,
108420,700,1,2043,860, 11058188,1,1371,3970,16,
108431,2045,865,1,41, 110590,180,1,2105,919,
108443956,16,0,700,1, 110601,166,3971,16,0,
108451297,3957,16,0,700, 11061188,1,2045,884,1,
108461,43,3958,16,0, 110621622,3972,16,0,188,
10847700,1,1803,873,1, 110631,2758,3487,1,1931,
108481804,3959,16,0,700, 11064965,1,1933,3973,16,
108491,299,3960,16,0, 110650,180,1,431,3974,
10850700,1,52,3961,16, 1106616,0,188,1,1585,
108510,700,1,2318,3962, 110673975,16,0,188,1,
1085216,0,700,1,62, 11068182,3976,16,0,188,
108533963,16,0,700,1, 110691,1189,3977,16,0,
108542075,3964,16,0,700, 11070180,1,1443,3978,16,
108551,1574,885,1,71, 110710,180,1,1695,3979,
108563965,16,0,700,1, 1107216,0,180,1,2198,
1085776,3966,16,0,700, 110733980,16,0,180,1,
108581,1834,3967,16,0, 11074447,3981,16,0,188,
10859700,1,2337,3968,16, 110751,2458,980,1,2459,
108600,700,1,79,3969, 11076986,1,1958,3982,16,
1086116,0,700,1,1335, 110770,180,1,2462,993,
108623970,16,0,700,1, 110781,1657,998,1,2464,
10863322,3971,16,0,700, 110791003,1,2466,3504,1,
108641,85,3972,16,0, 11080459,3983,16,0,188,
10865700,1,89,3973,16, 110811,2468,3984,16,0,
108660,700,1,346,3974, 11082373,1,462,3985,16,
1086716,0,700,1,2105, 110830,188,1,199,3986,
10868900,1,2106,3975,16, 1108416,0,188,1,217,
108690,700,1,97,3976, 110853987,16,0,188,1,
1087016,0,700,1,1860, 110862227,1012,1,1225,3988,
10871907,1,2364,913,1, 1108716,0,180,1,1479,
10872102,3977,16,0,700, 110883989,16,0,180,1,
108731,112,3978,16,0, 110891731,3990,16,0,188,
10874700,1,1117,3979,16, 110901,1989,1020,1,1990,
108750,700,1,1873,921, 110913991,16,0,180,1,
108761,1876,3980,16,0, 11092236,3992,16,0,188,
10877700,1,124,3981,16, 110931,2507,3993,16,0,
108780,700,1,2136,928, 11094468,1,1756,3994,16,
108791,381,3982,16,0, 110950,180,1,93,3995,
10880700,1,525,3983,16, 1109619,719,1,93,3996,
108810,700,1,137,3984, 110975,95,1,2761,3997,
1088216,0,700,1,1901, 1109816,0,717,1,256,
108833985,16,0,700,1, 110993998,16,0,717,1,
108841153,3986,16,0,700, 111001261,3999,16,0,717,
108851,151,3987,16,0, 111011,509,4000,16,0,
10886700,1,1407,3988,16, 11102717,1,1515,4001,16,
108870,700,1,1659,3989, 111030,717,1,2021,823,
1088816,0,700,1,2413, 111041,1775,4002,16,0,
108893990,16,0,700,1, 11105717,1,2029,830,1,
10890406,3991,16,0,700, 111062030,836,1,2031,841,
108911,1371,3992,16,0, 111071,2032,846,1,2033,
10892700,1,166,3993,16, 11108851,1,277,4003,16,
108930,700,1,1622,3994, 111090,717,1,2035,857,
1089416,0,700,1,1931, 111101,2037,862,1,2039,
10895946,1,1933,3995,16, 11111867,1,32,4004,16,
108960,700,1,431,3996, 111120,717,1,2041,873,
1089716,0,700,1,1585, 111131,2293,4005,16,0,
108983997,16,0,700,1, 11114717,1,2043,879,1,
10899182,3998,16,0,700, 111152045,884,1,41,4006,
109001,1189,3999,16,0, 1111616,0,717,1,1297,
10901700,1,1443,4000,16, 111174007,16,0,717,1,
109020,700,1,1695,4001, 1111843,4008,16,0,717,
1090316,0,700,1,2198, 111191,1803,892,1,1804,
109044002,16,0,700,1, 111204009,16,0,717,1,
10905447,4003,16,0,700, 11121299,4010,16,0,717,
109061,2458,961,1,2459, 111221,52,4011,16,0,
10907967,1,1958,4004,16, 11123717,1,2318,4012,16,
109080,700,1,2462,974, 111240,717,1,62,4013,
109091,1657,979,1,2464, 1112516,0,717,1,2075,
10910984,1,199,4005,16, 111264014,16,0,717,1,
109110,700,1,459,4006, 111271574,904,1,71,4015,
1091216,0,700,1,462, 1112816,0,717,1,76,
109134007,16,0,700,1, 111294016,16,0,717,1,
10914217,4008,16,0,700, 111301834,4017,16,0,717,
109151,2227,993,1,1225, 111311,2337,4018,16,0,
109164009,16,0,700,1, 11132717,1,79,4019,16,
109171479,4010,16,0,700, 111330,717,1,1335,4020,
109181,1731,4011,16,0, 1113416,0,717,1,322,
10919700,1,2740,4012,16, 111354021,16,0,717,1,
109200,700,1,1989,1002, 1113685,4022,16,0,717,
109211,1990,4013,16,0, 111371,89,4023,16,0,
10922700,1,236,4014,16, 11138717,1,346,4024,16,
109230,700,1,1756,4015, 111390,717,1,2105,919,
1092416,0,700,1,94, 111401,2106,4025,16,0,
109254016,19,699,1,94, 11141717,1,97,4026,16,
109264017,5,95,1,256, 111420,717,1,1860,926,
109274018,16,0,697,1, 111431,2364,932,1,102,
109281261,4019,16,0,697, 111444027,16,0,717,1,
109291,509,4020,16,0, 11145112,4028,16,0,717,
10930697,1,1515,4021,16, 111461,1117,4029,16,0,
109310,697,1,2021,804, 11147717,1,1873,940,1,
109321,1775,4022,16,0, 111481876,4030,16,0,717,
10933697,1,2029,811,1, 111491,124,4031,16,0,
109342030,817,1,2031,822, 11150717,1,2136,947,1,
109351,2032,827,1,2033, 11151381,4032,16,0,717,
10936832,1,277,4023,16, 111521,525,4033,16,0,
109370,697,1,2035,838, 11153717,1,137,4034,16,
109381,2037,843,1,2039, 111540,717,1,1901,4035,
10939848,1,32,4024,16, 1115516,0,717,1,1153,
109400,697,1,2041,854, 111564036,16,0,717,1,
109411,2293,4025,16,0, 11157151,4037,16,0,717,
10942697,1,2043,860,1, 111581,1407,4038,16,0,
109432045,865,1,41,4026, 11159717,1,1659,4039,16,
1094416,0,697,1,1297, 111600,717,1,2413,4040,
109454027,16,0,697,1, 1116116,0,717,1,406,
1094643,4028,16,0,697, 111624041,16,0,717,1,
109471,1803,873,1,1804, 111631371,4042,16,0,717,
109484029,16,0,697,1, 111641,166,4043,16,0,
10949299,4030,16,0,697, 11165717,1,1622,4044,16,
109501,52,4031,16,0, 111660,717,1,1931,965,
10951697,1,2318,4032,16, 111671,1933,4045,16,0,
109520,697,1,62,4033, 11168717,1,431,4046,16,
1095316,0,697,1,2075, 111690,717,1,1585,4047,
109544034,16,0,697,1, 1117016,0,717,1,182,
109551574,885,1,71,4035, 111714048,16,0,717,1,
1095616,0,697,1,76, 111721189,4049,16,0,717,
109574036,16,0,697,1, 111731,1443,4050,16,0,
109581834,4037,16,0,697, 11174717,1,1695,4051,16,
109591,2337,4038,16,0, 111750,717,1,2198,4052,
10960697,1,79,4039,16, 1117616,0,717,1,447,
109610,697,1,1335,4040, 111774053,16,0,717,1,
1096216,0,697,1,322, 111782458,980,1,2459,986,
109634041,16,0,697,1, 111791,1958,4054,16,0,
1096485,4042,16,0,697, 11180717,1,2462,993,1,
109651,89,4043,16,0, 111811657,998,1,2464,1003,
10966697,1,346,4044,16, 111821,199,4055,16,0,
109670,697,1,2105,900, 11183717,1,459,4056,16,
109681,2106,4045,16,0, 111840,717,1,462,4057,
10969697,1,97,4046,16, 1118516,0,717,1,217,
109700,697,1,1860,907, 111864058,16,0,717,1,
109711,2364,913,1,102, 111872227,1012,1,1225,4059,
109724047,16,0,697,1, 1118816,0,717,1,1479,
10973112,4048,16,0,697, 111894060,16,0,717,1,
109741,1117,4049,16,0, 111901731,4061,16,0,717,
10975697,1,1873,921,1, 111911,1989,1020,1,1990,
109761876,4050,16,0,697, 111924062,16,0,717,1,
109771,124,4051,16,0, 11193236,4063,16,0,717,
10978697,1,2136,928,1, 111941,1756,4064,16,0,
10979381,4052,16,0,697, 11195717,1,94,4065,19,
109801,525,4053,16,0, 11196716,1,94,4066,5,
10981697,1,137,4054,16, 1119795,1,2761,4067,16,
109820,697,1,1901,4055, 111980,714,1,256,4068,
1098316,0,697,1,1153, 1119916,0,714,1,1261,
109844056,16,0,697,1, 112004069,16,0,714,1,
10985151,4057,16,0,697, 11201509,4070,16,0,714,
109861,1407,4058,16,0, 112021,1515,4071,16,0,
10987697,1,1659,4059,16, 11203714,1,2021,823,1,
109880,697,1,2413,4060, 112041775,4072,16,0,714,
1098916,0,697,1,406, 112051,2029,830,1,2030,
109904061,16,0,697,1, 11206836,1,2031,841,1,
109911371,4062,16,0,697, 112072032,846,1,2033,851,
109921,166,4063,16,0, 112081,277,4073,16,0,
10993697,1,1622,4064,16, 11209714,1,2035,857,1,
109940,697,1,1931,946, 112102037,862,1,2039,867,
109951,1933,4065,16,0, 112111,32,4074,16,0,
10996697,1,431,4066,16, 11212714,1,2041,873,1,
109970,697,1,1585,4067, 112132293,4075,16,0,714,
1099816,0,697,1,182, 112141,2043,879,1,2045,
109994068,16,0,697,1, 11215884,1,41,4076,16,
110001189,4069,16,0,697, 112160,714,1,1297,4077,
110011,1443,4070,16,0, 1121716,0,714,1,43,
11002697,1,1695,4071,16, 112184078,16,0,714,1,
110030,697,1,2198,4072, 112191803,892,1,1804,4079,
1100416,0,697,1,447, 1122016,0,714,1,299,
110054073,16,0,697,1, 112214080,16,0,714,1,
110062458,961,1,2459,967, 1122252,4081,16,0,714,
110071,1958,4074,16,0, 112231,2318,4082,16,0,
11008697,1,2462,974,1, 11224714,1,62,4083,16,
110091657,979,1,2464,984, 112250,714,1,2075,4084,
110101,199,4075,16,0, 1122616,0,714,1,1574,
11011697,1,459,4076,16, 11227904,1,71,4085,16,
110120,697,1,462,4077, 112280,714,1,76,4086,
1101316,0,697,1,217, 1122916,0,714,1,1834,
110144078,16,0,697,1, 112304087,16,0,714,1,
110152227,993,1,1225,4079, 112312337,4088,16,0,714,
1101616,0,697,1,1479, 112321,79,4089,16,0,
110174080,16,0,697,1, 11233714,1,1335,4090,16,
110181731,4081,16,0,697, 112340,714,1,322,4091,
110191,2740,4082,16,0, 1123516,0,714,1,85,
11020697,1,1989,1002,1, 112364092,16,0,714,1,
110211990,4083,16,0,697, 1123789,4093,16,0,714,
110221,236,4084,16,0, 112381,346,4094,16,0,
11023697,1,1756,4085,16, 11239714,1,2105,919,1,
110240,697,1,95,4086, 112402106,4095,16,0,714,
1102519,696,1,95,4087, 112411,97,4096,16,0,
110265,95,1,256,4088, 11242714,1,1860,926,1,
1102716,0,694,1,1261, 112432364,932,1,102,4097,
110284089,16,0,694,1, 1124416,0,714,1,112,
11029509,4090,16,0,694, 112454098,16,0,714,1,
110301,1515,4091,16,0, 112461117,4099,16,0,714,
11031694,1,2021,804,1, 112471,1873,940,1,1876,
110321775,4092,16,0,694, 112484100,16,0,714,1,
110331,2029,811,1,2030, 11249124,4101,16,0,714,
11034817,1,2031,822,1, 112501,2136,947,1,381,
110352032,827,1,2033,832, 112514102,16,0,714,1,
110361,277,4093,16,0, 11252525,4103,16,0,714,
11037694,1,2035,838,1, 112531,137,4104,16,0,
110382037,843,1,2039,848, 11254714,1,1901,4105,16,
110391,32,4094,16,0, 112550,714,1,1153,4106,
11040694,1,2041,854,1, 1125616,0,714,1,151,
110412293,4095,16,0,694, 112574107,16,0,714,1,
110421,2043,860,1,2045, 112581407,4108,16,0,714,
11043865,1,41,4096,16, 112591,1659,4109,16,0,
110440,694,1,1297,4097, 11260714,1,2413,4110,16,
1104516,0,694,1,43, 112610,714,1,406,4111,
110464098,16,0,694,1, 1126216,0,714,1,1371,
110471803,873,1,1804,4099, 112634112,16,0,714,1,
1104816,0,694,1,299, 11264166,4113,16,0,714,
110494100,16,0,694,1, 112651,1622,4114,16,0,
1105052,4101,16,0,694, 11266714,1,1931,965,1,
110511,2318,4102,16,0, 112671933,4115,16,0,714,
11052694,1,62,4103,16, 112681,431,4116,16,0,
110530,694,1,2075,4104, 11269714,1,1585,4117,16,
1105416,0,694,1,1574, 112700,714,1,182,4118,
11055885,1,71,4105,16, 1127116,0,714,1,1189,
110560,694,1,76,4106, 112724119,16,0,714,1,
1105716,0,694,1,1834, 112731443,4120,16,0,714,
110584107,16,0,694,1, 112741,1695,4121,16,0,
110592337,4108,16,0,694, 11275714,1,2198,4122,16,
110601,79,4109,16,0, 112760,714,1,447,4123,
11061694,1,1335,4110,16, 1127716,0,714,1,2458,
110620,694,1,322,4111, 11278980,1,2459,986,1,
1106316,0,694,1,85, 112791958,4124,16,0,714,
110644112,16,0,694,1, 112801,2462,993,1,1657,
1106589,4113,16,0,694, 11281998,1,2464,1003,1,
110661,346,4114,16,0, 11282199,4125,16,0,714,
11067694,1,2105,900,1, 112831,459,4126,16,0,
110682106,4115,16,0,694, 11284714,1,462,4127,16,
110691,97,4116,16,0, 112850,714,1,217,4128,
11070694,1,1860,907,1, 1128616,0,714,1,2227,
110712364,913,1,102,4117, 112871012,1,1225,4129,16,
1107216,0,694,1,112, 112880,714,1,1479,4130,
110734118,16,0,694,1, 1128916,0,714,1,1731,
110741117,4119,16,0,694, 112904131,16,0,714,1,
110751,1873,921,1,1876, 112911989,1020,1,1990,4132,
110764120,16,0,694,1, 1129216,0,714,1,236,
11077124,4121,16,0,694, 112934133,16,0,714,1,
110781,2136,928,1,381, 112941756,4134,16,0,714,
110794122,16,0,694,1, 112951,95,4135,19,713,
11080525,4123,16,0,694, 112961,95,4136,5,95,
110811,137,4124,16,0, 112971,2761,4137,16,0,
11082694,1,1901,4125,16, 11298711,1,256,4138,16,
110830,694,1,1153,4126, 112990,711,1,1261,4139,
1108416,0,694,1,151, 1130016,0,711,1,509,
110854127,16,0,694,1, 113014140,16,0,711,1,
110861407,4128,16,0,694, 113021515,4141,16,0,711,
110871,1659,4129,16,0, 113031,2021,823,1,1775,
11088694,1,2413,4130,16, 113044142,16,0,711,1,
110890,694,1,406,4131, 113052029,830,1,2030,836,
1109016,0,694,1,1371, 113061,2031,841,1,2032,
110914132,16,0,694,1, 11307846,1,2033,851,1,
11092166,4133,16,0,694, 11308277,4143,16,0,711,
110931,1622,4134,16,0, 113091,2035,857,1,2037,
11094694,1,1931,946,1, 11310862,1,2039,867,1,
110951933,4135,16,0,694, 1131132,4144,16,0,711,
110961,431,4136,16,0, 113121,2041,873,1,2293,
11097694,1,1585,4137,16, 113134145,16,0,711,1,
110980,694,1,182,4138, 113142043,879,1,2045,884,
1109916,0,694,1,1189, 113151,41,4146,16,0,
111004139,16,0,694,1, 11316711,1,1297,4147,16,
111011443,4140,16,0,694, 113170,711,1,43,4148,
111021,1695,4141,16,0, 1131816,0,711,1,1803,
11103694,1,2198,4142,16, 11319892,1,1804,4149,16,
111040,694,1,447,4143, 113200,711,1,299,4150,
1110516,0,694,1,2458, 1132116,0,711,1,52,
11106961,1,2459,967,1, 113224151,16,0,711,1,
111071958,4144,16,0,694, 113232318,4152,16,0,711,
111081,2462,974,1,1657, 113241,62,4153,16,0,
11109979,1,2464,984,1, 11325711,1,2075,4154,16,
11110199,4145,16,0,694, 113260,711,1,1574,904,
111111,459,4146,16,0, 113271,71,4155,16,0,
11112694,1,462,4147,16, 11328711,1,76,4156,16,
111130,694,1,217,4148, 113290,711,1,1834,4157,
1111416,0,694,1,2227, 1133016,0,711,1,2337,
11115993,1,1225,4149,16, 113314158,16,0,711,1,
111160,694,1,1479,4150, 1133279,4159,16,0,711,
1111716,0,694,1,1731, 113331,1335,4160,16,0,
111184151,16,0,694,1, 11334711,1,322,4161,16,
111192740,4152,16,0,694, 113350,711,1,85,4162,
111201,1989,1002,1,1990, 1133616,0,711,1,89,
111214153,16,0,694,1, 113374163,16,0,711,1,
11122236,4154,16,0,694, 11338346,4164,16,0,711,
111231,1756,4155,16,0, 113391,2105,919,1,2106,
11124694,1,96,4156,19, 113404165,16,0,711,1,
11125103,1,96,4157,5, 1134197,4166,16,0,711,
111261,1,0,4158,16, 113421,1860,926,1,2364,
111270,104,1,97,4159, 11343932,1,102,4167,16,
1112819,758,1,97,4160, 113440,711,1,112,4168,
111295,1,1,0,4161, 1134516,0,711,1,1117,
1113016,0,756,1,98, 113464169,16,0,711,1,
111314162,19,139,1,98, 113471873,940,1,1876,4170,
111324163,5,2,1,0, 1134816,0,711,1,124,
111334164,16,0,143,1, 113494171,16,0,711,1,
111342777,4165,16,0,137, 113502136,947,1,381,4172,
111351,99,4166,19,142, 1135116,0,711,1,525,
111361,99,4167,5,2, 113524173,16,0,711,1,
111371,0,4168,16,0, 11353137,4174,16,0,711,
11138140,1,2777,4169,16, 113541,1901,4175,16,0,
111390,248,1,100,4170, 11355711,1,1153,4176,16,
1114019,243,1,100,4171, 113560,711,1,151,4177,
111415,2,1,0,4172, 1135716,0,711,1,1407,
1114216,0,708,1,2777, 113584178,16,0,711,1,
111434173,16,0,241,1, 113591659,4179,16,0,711,
11144101,4174,19,712,1, 113601,2413,4180,16,0,
11145101,4175,5,4,1, 11361711,1,406,4181,16,
111460,4176,16,0,713, 113620,711,1,1371,4182,
111471,2718,4177,16,0, 1136316,0,711,1,166,
11148710,1,2777,4178,16, 113644183,16,0,711,1,
111490,713,1,2788,4179, 113651622,4184,16,0,711,
1115016,0,710,1,102, 113661,1931,965,1,1933,
111514180,19,722,1,102, 113674185,16,0,711,1,
111524181,5,2,1,2623, 11368431,4186,16,0,711,
111534182,16,0,739,1, 113691,1585,4187,16,0,
111542470,4183,16,0,720, 11370711,1,182,4188,16,
111551,103,4184,19,622, 113710,711,1,1189,4189,
111561,103,4185,5,4, 1137216,0,711,1,1443,
111571,2664,4186,16,0, 113734190,16,0,711,1,
11158685,1,2623,4187,16, 113741695,4191,16,0,711,
111590,620,1,2470,4188, 113751,2198,4192,16,0,
1116016,0,620,1,2568, 11376711,1,447,4193,16,
111614189,16,0,685,1, 113770,711,1,2458,980,
11162104,4190,19,619,1, 113781,2459,986,1,1958,
11163104,4191,5,4,1, 113794194,16,0,711,1,
111642664,4192,16,0,684, 113802462,993,1,1657,998,
111651,2623,4193,16,0, 113811,2464,1003,1,199,
11166617,1,2470,4194,16, 113824195,16,0,711,1,
111670,617,1,2568,4195, 11383459,4196,16,0,711,
1116816,0,684,1,105, 113841,462,4197,16,0,
111694196,19,616,1,105, 11385711,1,217,4198,16,
111704197,5,4,1,2664, 113860,711,1,2227,1012,
111714198,16,0,683,1, 113871,1225,4199,16,0,
111722623,4199,16,0,614, 11388711,1,1479,4200,16,
111731,2470,4200,16,0, 113890,711,1,1731,4201,
11174614,1,2568,4201,16, 1139016,0,711,1,1989,
111750,683,1,106,4202, 113911020,1,1990,4202,16,
1117619,602,1,106,4203, 113920,711,1,236,4203,
111775,4,1,2664,4204, 1139316,0,711,1,1756,
1117816,0,600,1,2623, 113944204,16,0,711,1,
111794205,16,0,690,1, 1139596,4205,19,103,1,
111802470,4206,16,0,690, 1139696,4206,5,1,1,
111811,2568,4207,16,0, 113970,4207,16,0,104,
11182600,1,107,4208,19, 113981,97,4208,19,142,
11183599,1,107,4209,5, 113991,97,4209,5,1,
111844,1,2664,4210,16, 114001,0,4210,16,0,
111850,597,1,2623,4211, 11401140,1,98,4211,19,
1118616,0,612,1,2470, 11402172,1,98,4212,5,
111874212,16,0,612,1, 114032,1,0,4213,16,
111882568,4213,16,0,597, 114040,170,1,2798,4214,
111891,108,4214,19,611, 1140516,0,497,1,99,
111901,108,4215,5,4, 114064215,19,169,1,99,
111911,2664,4216,16,0, 114074216,5,2,1,0,
11192754,1,2623,4217,16, 114084217,16,0,167,1,
111930,609,1,2470,4218, 114092798,4218,16,0,268,
1119416,0,609,1,2568, 114101,100,4219,19,485,
111954219,16,0,754,1, 114111,100,4220,5,2,
11196109,4220,19,151,1, 114121,0,4221,16,0,
11197109,4221,5,3,1, 11413752,1,2798,4222,16,
111982553,4222,16,0,517, 114140,483,1,101,4223,
111991,2724,4223,16,0, 1141519,279,1,101,4224,
11200723,1,10,4224,16, 114165,4,1,0,4225,
112010,149,1,110,4225, 1141716,0,354,1,2809,
1120219,629,1,110,4226, 114184226,16,0,277,1,
112035,1,1,2539,4227, 114192798,4227,16,0,354,
1120416,0,627,1,111, 114201,2739,4228,16,0,
112054228,19,487,1,111, 11421277,1,102,4229,19,
112064229,5,1,1,2531, 11422309,1,102,4230,5,
112074230,16,0,485,1, 114232,1,2640,4231,16,
11208112,4231,19,474,1, 114240,307,1,2470,4232,
11209112,4232,5,1,1, 1142516,0,760,1,103,
112102522,4233,16,0,472, 114264233,19,730,1,103,
112111,113,4234,19,462, 114274234,5,4,1,2640,
112121,113,4235,5,1, 114284235,16,0,737,1,
112131,2506,4236,16,0, 114292470,4236,16,0,737,
11214460,1,114,4237,19, 114301,2582,4237,16,0,
11215161,1,114,4238,5, 11431728,1,2682,4238,16,
1121617,1,0,4239,16, 114320,728,1,104,4239,
112170,731,1,2777,4240, 1143319,727,1,104,4240,
1121816,0,731,1,2075, 114345,4,1,2640,4241,
112194241,16,0,725,1, 1143516,0,736,1,2470,
112202337,4242,16,0,725, 114364242,16,0,736,1,
112211,2413,4243,16,0, 114372582,4243,16,0,725,
11222725,1,2553,4244,16, 114381,2682,4244,16,0,
112230,348,1,10,4245, 11439725,1,105,4245,19,
1122416,0,348,1,1901, 11440652,1,105,4246,5,
112254246,16,0,725,1, 114414,1,2640,4247,16,
112262198,4247,16,0,725, 114420,650,1,2470,4248,
112271,21,4248,16,0, 1144316,0,650,1,2582,
11228159,1,2106,4249,16, 114444249,16,0,724,1,
112290,725,1,2724,4250, 114452682,4250,16,0,724,
1123016,0,348,1,1804, 114461,106,4251,19,333,
112314251,16,0,725,1, 114471,106,4252,5,4,
112321990,4252,16,0,725, 114481,2640,4253,16,0,
112331,32,4253,16,0, 11449331,1,2470,4254,16,
11234725,1,1958,4254,16, 114500,331,1,2582,4255,
112350,725,1,1775,4255, 1145116,0,639,1,2682,
1123616,0,725,1,115, 114524256,16,0,639,1,
112374256,19,501,1,115, 11453107,4257,19,638,1,
112384257,5,1,1,2539, 11454107,4258,5,4,1,
112394258,16,0,499,1, 114552640,4259,16,0,734,
11240116,4259,19,450,1, 114561,2470,4260,16,0,
11241116,4260,5,2,1, 11457734,1,2582,4261,16,
112422531,4261,16,0,607, 114580,636,1,2682,4262,
112431,2506,4262,16,0, 1145916,0,636,1,108,
11244448,1,117,4263,19, 114604263,19,635,1,108,
11245471,1,117,4264,5, 114614264,5,4,1,2640,
112461,1,2522,4265,16, 114624265,16,0,733,1,
112470,469,1,118,4266, 114632470,4266,16,0,733,
1124819,456,1,118,4267, 114641,2582,4267,16,0,
112495,2,1,2510,4268, 11465633,1,2682,4268,16,
1125016,0,454,1,2514, 114660,633,1,109,4269,
112514269,16,0,459,1, 1146719,145,1,109,4270,
11252119,4270,19,130,1, 114685,4,1,2640,4271,
11253119,4271,5,18,1, 1146916,0,143,1,2470,
112540,4272,16,0,128, 114704272,16,0,143,1,
112551,2777,4273,16,0, 114712582,4273,16,0,247,
11256128,1,2075,4274,16, 114721,2682,4274,16,0,
112570,147,1,2337,4275, 11473247,1,110,4275,19,
1125816,0,147,1,2413, 11474150,1,110,4276,5,
112594276,16,0,147,1, 114753,1,2567,4277,16,
112602553,4277,16,0,147, 114760,753,1,2745,4278,
112611,10,4278,16,0, 1147716,0,204,1,10,
11262147,1,2198,4279,16, 114784279,16,0,148,1,
112630,147,1,1901,4280, 11479111,4280,19,658,1,
1126416,0,147,1,52, 11480111,4281,5,1,1,
112654281,16,0,204,1, 114812553,4282,16,0,656,
1126621,4282,16,0,147, 114821,112,4283,19,524,
112671,2106,4283,16,0, 114831,112,4284,5,1,
11268147,1,2724,4284,16, 114841,2545,4285,16,0,
112690,147,1,1804,4285, 11485522,1,113,4286,19,
1127016,0,147,1,1990, 11486511,1,113,4287,5,
112714286,16,0,147,1, 114871,1,2537,4288,16,
1127232,4287,16,0,147, 114880,509,1,114,4289,
112731,1958,4288,16,0, 1148919,501,1,114,4290,
11274147,1,1775,4289,16, 114905,1,1,2522,4291,
112750,147,1,120,4290, 1149116,0,499,1,115,
1127619,638,1,120,4291, 114924292,19,481,1,115,
112775,4,1,2664,4292, 114934293,5,1,1,2506,
1127816,0,636,1,2623, 114944294,16,0,479,1,
112794293,16,0,636,1, 11495116,4295,19,160,1,
112802470,4294,16,0,636, 11496116,4296,5,17,1,
112811,2568,4295,16,0, 114970,4297,16,0,766,
11282636,1,121,4296,19, 114981,2075,4298,16,0,
11283236,1,121,4297,5, 11499746,1,2337,4299,16,
112844,1,2664,4298,16, 115000,746,1,2745,4300,
112850,234,1,2623,4299, 1150116,0,369,1,2413,
1128616,0,234,1,2470, 115024301,16,0,746,1,
112874300,16,0,234,1, 1150310,4302,16,0,369,
112882568,4301,16,0,234, 115041,1901,4303,16,0,
112891,122,4302,19,495, 11505746,1,2198,4304,16,
112901,122,4303,5,4, 115060,746,1,21,4305,
112911,2664,4304,16,0, 1150716,0,158,1,2106,
11292493,1,2623,4305,16, 115084306,16,0,746,1,
112930,493,1,2470,4306, 115092798,4307,16,0,766,
1129416,0,493,1,2568, 115101,2567,4308,16,0,
112954307,16,0,493,1, 11511369,1,1804,4309,16,
11296123,4308,19,482,1, 115120,746,1,1990,4310,
11297123,4309,5,4,1, 1151316,0,746,1,32,
112982664,4310,16,0,480, 115144311,16,0,746,1,
112991,2623,4311,16,0, 115151958,4312,16,0,746,
11300480,1,2470,4312,16, 115161,1775,4313,16,0,
113010,480,1,2568,4313, 11517746,1,117,4314,19,
1130216,0,480,1,124, 11518655,1,117,4315,5,
113034314,19,746,1,124, 115191,1,2553,4316,16,
113044315,5,4,1,2664, 115200,653,1,118,4317,
113054316,16,0,744,1, 1152119,242,1,118,4318,
113062623,4317,16,0,744, 115225,3,1,2522,4319,
113071,2470,4318,16,0, 1152316,0,489,1,2545,
11308744,1,2568,4319,16, 115244320,16,0,240,1,
113090,744,1,125,4320, 115252506,4321,16,0,469,
1131019,737,1,125,4321, 115261,119,4322,19,475,
113115,4,1,2664,4322, 115271,119,4323,5,3,
1131216,0,735,1,2623, 115281,2510,4324,16,0,
113134323,16,0,735,1, 11529473,1,2514,4325,16,
113142470,4324,16,0,735, 115300,478,1,2537,4326,
113151,2568,4325,16,0, 1153116,0,508,1,120,
11316735,1,126,4326,19, 115324327,19,303,1,120,
11317271,1,126,4327,5, 115334328,5,2,1,2525,
1131819,1,2544,4328,16, 115344329,16,0,301,1,
113190,630,1,2518,4329, 115352529,4330,16,0,498,
1132016,0,666,1,2075, 115361,121,4331,19,130,
113214330,16,0,557,1, 115371,121,4332,5,18,
113222337,4331,16,0,557, 115381,0,4333,16,0,
113231,2413,4332,16,0, 11539128,1,2075,4334,16,
11324557,1,2527,4333,16, 115400,146,1,2337,4335,
113250,479,1,1901,4334, 1154116,0,146,1,2745,
1132616,0,557,1,2198, 115424336,16,0,146,1,
113274335,16,0,557,1, 115432413,4337,16,0,146,
113282535,4336,16,0,613, 115441,10,4338,16,0,
113291,2564,4337,16,0, 11545146,1,2198,4339,16,
11330522,1,2106,4338,16, 115460,146,1,1901,4340,
113310,557,1,1958,4339, 1154716,0,146,1,52,
1133216,0,557,1,1804, 115484341,16,0,207,1,
113334340,16,0,557,1, 1154921,4342,16,0,146,
113341990,4341,16,0,557, 115501,2106,4343,16,0,
113351,31,4342,16,0, 11551146,1,2798,4344,16,
11336347,1,32,4343,16, 115520,128,1,2567,4345,
113370,557,1,2549,4344, 1155316,0,146,1,1804,
1133816,0,511,1,2735, 115544346,16,0,146,1,
113394345,16,0,269,1, 115551990,4347,16,0,146,
113401775,4346,16,0,557, 115561,32,4348,16,0,
113411,127,4347,19,317, 11557146,1,1958,4349,16,
113421,127,4348,5,1, 115580,146,1,1775,4350,
113431,32,4349,16,0, 1155916,0,146,1,122,
11344315,1,128,4350,19, 115604351,19,547,1,122,
11345275,1,128,4351,5, 115614352,5,4,1,2640,
1134611,1,2075,4352,16, 115624353,16,0,545,1,
113470,653,1,2337,4353, 115632470,4354,16,0,545,
1134816,0,279,1,2413, 115641,2582,4355,16,0,
113494354,16,0,489,1, 11565545,1,2682,4356,16,
113501901,4355,16,0,403, 115660,545,1,123,4357,
113511,2198,4356,16,0, 1156719,538,1,123,4358,
11352333,1,2106,4357,16, 115685,4,1,2640,4359,
113530,682,1,1804,4358, 1156916,0,536,1,2470,
1135416,0,300,1,1990, 115704360,16,0,536,1,
113554359,16,0,545,1, 115712582,4361,16,0,536,
1135632,4360,16,0,343, 115721,2682,4362,16,0,
113571,1958,4361,16,0, 11573536,1,124,4363,19,
11358504,1,1775,4362,16, 11574647,1,124,4364,5,
113590,273,1,129,4363, 115754,1,2640,4365,16,
1136019,659,1,129,4364, 115760,645,1,2470,4366,
113615,11,1,2075,4365, 1157716,0,645,1,2582,
1136216,0,657,1,2337, 115784367,16,0,645,1,
113634366,16,0,657,1, 115792682,4368,16,0,645,
113642413,4367,16,0,657, 115801,125,4369,19,516,
113651,1901,4368,16,0, 115811,125,4370,5,4,
11366657,1,2198,4369,16, 115821,2640,4371,16,0,
113670,657,1,2106,4370, 11583514,1,2470,4372,16,
1136816,0,657,1,1804, 115840,514,1,2582,4373,
113694371,16,0,657,1, 1158516,0,514,1,2682,
113701990,4372,16,0,657, 115864374,16,0,514,1,
113711,32,4373,16,0, 11587126,4375,19,630,1,
11372657,1,1958,4374,16, 11588126,4376,5,4,1,
113730,657,1,1775,4375, 115892640,4377,16,0,628,
1137416,0,657,1,130, 115901,2470,4378,16,0,
113754376,19,718,1,130, 11591628,1,2582,4379,16,
113764377,5,11,1,2075, 115920,628,1,2682,4380,
113774378,16,0,716,1, 1159316,0,628,1,127,
113782337,4379,16,0,716, 115944381,19,769,1,127,
113791,2413,4380,16,0, 115954382,5,4,1,2640,
11380716,1,1901,4381,16, 115964383,16,0,767,1,
113810,716,1,2198,4382, 115972470,4384,16,0,767,
1138216,0,716,1,2106, 115981,2582,4385,16,0,
113834383,16,0,716,1, 11599767,1,2682,4386,16,
113841804,4384,16,0,716, 116000,767,1,128,4387,
113851,1990,4385,16,0, 1160119,759,1,128,4388,
11386716,1,32,4386,16, 116025,4,1,2640,4389,
113870,716,1,1958,4387, 1160316,0,757,1,2470,
1138816,0,716,1,1775, 116044390,16,0,757,1,
113894388,16,0,716,1, 116052582,4391,16,0,757,
11390131,4389,19,172,1, 116061,2682,4392,16,0,
11391131,4390,5,31,1, 11607757,1,129,4393,19,
113921901,4391,16,0,724, 11608368,1,129,4394,5,
113931,1479,4392,16,0, 1160920,1,2518,4395,16,
11394631,1,2075,4393,16, 116100,688,1,2075,4396,
113950,724,1,1695,4394, 1161116,0,582,1,2558,
1139616,0,200,1,1756, 116124397,16,0,535,1,
113974395,16,0,199,1, 116132337,4398,16,0,582,
113982413,4396,16,0,724, 116141,2413,4399,16,0,
113991,2198,4397,16,0, 11615582,1,2563,4400,16,
11400724,1,1876,4398,16, 116160,544,1,1901,4401,
114010,741,1,1659,4399, 1161716,0,582,1,2198,
1140216,0,199,1,1443, 116184402,16,0,582,1,
114034400,16,0,573,1, 116192533,4403,16,0,503,
114041117,4401,16,0,170, 116201,2756,4404,16,0,
114051,1990,4402,16,0, 11621765,1,2106,4405,16,
11406724,1,1189,4403,16, 116220,582,1,2541,4406,
114070,255,1,1775,4404, 1162316,0,632,1,1804,
1140816,0,724,1,32, 116244407,16,0,582,1,
114094405,16,0,724,1, 116251990,4408,16,0,582,
114102106,4406,16,0,724, 116261,31,4409,16,0,
114111,1515,4407,16,0, 11627366,1,32,4410,16,
11412655,1,2337,4408,16, 116280,582,1,2549,4411,
114130,724,1,52,4409, 1162916,0,527,1,1958,
1141416,0,667,1,1804, 116304412,16,0,582,1,
114154410,16,0,724,1, 116312578,4413,16,0,756,
114161261,4411,16,0,311, 116321,1775,4414,16,0,
114171,1153,4412,16,0, 11633582,1,130,4415,19,
11418262,1,1225,4413,16, 11634330,1,130,4416,5,
114190,289,1,1335,4414, 116351,1,32,4417,16,
1142016,0,478,1,1933, 116360,328,1,131,4418,
114214415,16,0,634,1, 1163719,282,1,131,4419,
114221834,4416,16,0,327, 116385,11,1,2075,4420,
114231,1297,4417,16,0, 1163916,0,675,1,2337,
11424337,1,1407,4418,16, 116404421,16,0,287,1,
114250,647,1,2318,4419, 116412413,4422,16,0,504,
1142616,0,199,1,1958, 116421,1901,4423,16,0,
114274420,16,0,724,1, 11643424,1,2198,4424,16,
114281371,4421,16,0,464, 116440,349,1,2106,4425,
114291,132,4422,19,582, 1164516,0,704,1,1804,
114301,132,4423,5,11, 116464426,16,0,314,1,
114311,2075,4424,16,0, 116471990,4427,16,0,570,
11432580,1,2337,4425,16, 116481,32,4428,16,0,
114330,580,1,2413,4426, 11649361,1,1958,4429,16,
1143416,0,580,1,1901, 116500,518,1,1775,4430,
114354427,16,0,580,1, 1165116,0,280,1,132,
114362198,4428,16,0,580, 116524431,19,681,1,132,
114371,2106,4429,16,0, 116534432,5,11,1,2075,
11438580,1,1804,4430,16, 116544433,16,0,679,1,
114390,580,1,1990,4431, 116552337,4434,16,0,679,
1144016,0,580,1,32, 116561,2413,4435,16,0,
114414432,16,0,580,1, 11657679,1,1901,4436,16,
114421958,4433,16,0,580, 116580,679,1,2198,4437,
114431,1775,4434,16,0, 1165916,0,679,1,2106,
11444580,1,133,4435,19, 116604438,16,0,679,1,
11445578,1,133,4436,5, 116611804,4439,16,0,679,
1144611,1,2075,4437,16, 116621,1990,4440,16,0,
114470,576,1,2337,4438, 11663679,1,32,4441,16,
1144816,0,576,1,2413, 116640,679,1,1958,4442,
114494439,16,0,576,1, 1166516,0,679,1,1775,
114501901,4440,16,0,576, 116664443,16,0,679,1,
114511,2198,4441,16,0, 11667133,4444,19,742,1,
11452576,1,2106,4442,16, 11668133,4445,5,11,1,
114530,576,1,1804,4443, 116692075,4446,16,0,740,
1145416,0,576,1,1990, 116701,2337,4447,16,0,
114554444,16,0,576,1, 11671740,1,2413,4448,16,
1145632,4445,16,0,576, 116720,740,1,1901,4449,
114571,1958,4446,16,0, 1167316,0,740,1,2198,
11458576,1,1775,4447,16, 116744450,16,0,740,1,
114590,576,1,134,4448, 116752106,4451,16,0,740,
1146019,651,1,134,4449, 116761,1804,4452,16,0,
114615,11,1,2075,4450, 11677740,1,1990,4453,16,
1146216,0,649,1,2337, 116780,740,1,32,4454,
114634451,16,0,649,1, 1167916,0,740,1,1958,
114642413,4452,16,0,649, 116804455,16,0,740,1,
114651,1901,4453,16,0, 116811775,4456,16,0,740,
11466649,1,2198,4454,16, 116821,134,4457,19,176,
114670,649,1,2106,4455, 116831,134,4458,5,31,
1146816,0,649,1,1804, 116841,1901,4459,16,0,
114694456,16,0,649,1, 11685745,1,1479,4460,16,
114701990,4457,16,0,649, 116860,640,1,2075,4461,
114711,32,4458,16,0, 1168716,0,745,1,1695,
11472649,1,1958,4459,16, 116884462,16,0,205,1,
114730,649,1,1775,4460, 116891756,4463,16,0,203,
1147416,0,649,1,135, 116901,2413,4464,16,0,
114754461,19,572,1,135, 11691745,1,2198,4465,16,
114764462,5,11,1,2075, 116920,745,1,1876,4466,
114774463,16,0,570,1, 1169316,0,762,1,1659,
114782337,4464,16,0,570, 116944467,16,0,203,1,
114791,2413,4465,16,0, 116951443,4468,16,0,598,
11480570,1,1901,4466,16, 116961,1117,4469,16,0,
114810,570,1,2198,4467, 11697174,1,1990,4470,16,
1148216,0,570,1,2106, 116980,745,1,1189,4471,
114834468,16,0,570,1, 1169916,0,258,1,1775,
114841804,4469,16,0,570, 117004472,16,0,745,1,
114851,1990,4470,16,0, 1170132,4473,16,0,745,
11486570,1,32,4471,16, 117021,2106,4474,16,0,
114870,570,1,1958,4472, 11703745,1,1515,4475,16,
1148816,0,570,1,1775, 117040,677,1,2337,4476,
114894473,16,0,570,1, 1170516,0,745,1,52,
11490136,4474,19,569,1, 117064477,16,0,689,1,
11491136,4475,5,11,1, 117071804,4478,16,0,745,
114922075,4476,16,0,567, 117081,1261,4479,16,0,
114931,2337,4477,16,0, 11709326,1,1153,4480,16,
11494567,1,2413,4478,16, 117100,265,1,1225,4481,
114950,567,1,1901,4479, 1171116,0,297,1,1335,
1149616,0,567,1,2198, 117124482,16,0,495,1,
114974480,16,0,567,1, 117131933,4483,16,0,643,
114982106,4481,16,0,567, 117141,1834,4484,16,0,
114991,1804,4482,16,0, 11715343,1,1297,4485,16,
11500567,1,1990,4483,16, 117160,353,1,1407,4486,
115010,567,1,32,4484, 1171716,0,668,1,2318,
1150216,0,567,1,1958, 117184487,16,0,203,1,
115034485,16,0,567,1, 117191958,4488,16,0,745,
115041775,4486,16,0,567, 117201,1371,4489,16,0,
115051,137,4487,19,566, 11721486,1,135,4490,19,
115061,137,4488,5,11, 11722607,1,135,4491,5,
115071,2075,4489,16,0, 1172311,1,2075,4492,16,
11508564,1,2337,4490,16, 117240,605,1,2337,4493,
115090,564,1,2413,4491, 1172516,0,605,1,2413,
1151016,0,564,1,1901, 117264494,16,0,605,1,
115114492,16,0,564,1, 117271901,4495,16,0,605,
115122198,4493,16,0,564, 117281,2198,4496,16,0,
115131,2106,4494,16,0, 11729605,1,2106,4497,16,
11514564,1,1804,4495,16, 117300,605,1,1804,4498,
115150,564,1,1990,4496, 1173116,0,605,1,1990,
1151616,0,564,1,32, 117324499,16,0,605,1,
115174497,16,0,564,1, 1173332,4500,16,0,605,
115181958,4498,16,0,564, 117341,1958,4501,16,0,
115191,1775,4499,16,0, 11735605,1,1775,4502,16,
11520564,1,138,4500,19, 117360,605,1,136,4503,
11521563,1,138,4501,5, 1173719,603,1,136,4504,
1152211,1,2075,4502,16, 117385,11,1,2075,4505,
115230,561,1,2337,4503, 1173916,0,601,1,2337,
1152416,0,561,1,2413, 117404506,16,0,601,1,
115254504,16,0,561,1, 117412413,4507,16,0,601,
115261901,4505,16,0,561, 117421,1901,4508,16,0,
115271,2198,4506,16,0, 11743601,1,2198,4509,16,
11528561,1,2106,4507,16, 117440,601,1,2106,4510,
115290,561,1,1804,4508, 1174516,0,601,1,1804,
1153016,0,561,1,1990, 117464511,16,0,601,1,
115314509,16,0,561,1, 117471990,4512,16,0,601,
1153232,4510,16,0,561, 117481,32,4513,16,0,
115331,1958,4511,16,0, 11749601,1,1958,4514,16,
11534561,1,1775,4512,16, 117500,601,1,1775,4515,
115350,561,1,139,4513, 1175116,0,601,1,137,
1153619,560,1,139,4514, 117524516,19,672,1,137,
115375,11,1,2075,4515, 117534517,5,11,1,2075,
1153816,0,558,1,2337, 117544518,16,0,670,1,
115394516,16,0,558,1, 117552337,4519,16,0,670,
115402413,4517,16,0,558, 117561,2413,4520,16,0,
115411,1901,4518,16,0, 11757670,1,1901,4521,16,
11542558,1,2198,4519,16, 117580,670,1,2198,4522,
115430,558,1,2106,4520, 1175916,0,670,1,2106,
1154416,0,558,1,1804, 117604523,16,0,670,1,
115454521,16,0,558,1, 117611804,4524,16,0,670,
115461990,4522,16,0,558, 117621,1990,4525,16,0,
115471,32,4523,16,0, 11763670,1,32,4526,16,
11548558,1,1958,4524,16, 117640,670,1,1958,4527,
115490,558,1,1775,4525, 1176516,0,670,1,1775,
1155016,0,558,1,140, 117664528,16,0,670,1,
115514526,19,157,1,140, 11767138,4529,19,597,1,
115524527,5,3,1,1756, 11768138,4530,5,11,1,
115534528,16,0,299,1, 117692075,4531,16,0,595,
115542318,4529,16,0,310, 117701,2337,4532,16,0,
115551,1659,4530,16,0, 11771595,1,2413,4533,16,
11556155,1,141,4531,19, 117720,595,1,1901,4534,
11557605,1,141,4532,5, 1177316,0,595,1,2198,
1155868,1,1901,4533,16, 117744535,16,0,595,1,
115590,603,1,1479,4534, 117752106,4536,16,0,595,
1156016,0,603,1,112,
115614535,16,0,603,1,
115622293,4536,16,0,603,
115631,1804,4537,16,0, 117761,1804,4537,16,0,
11564603,1,431,4538,16, 11777595,1,1990,4538,16,
115650,603,1,1443,4539, 117780,595,1,32,4539,
1156616,0,603,1,1756, 1177916,0,595,1,1958,
115674540,16,0,603,1, 117804540,16,0,595,1,
11568124,4541,16,0,603, 117811775,4541,16,0,595,
115691,525,4542,16,0, 117821,139,4542,19,594,
11570603,1,236,4543,16, 117831,139,4543,5,11,
115710,603,1,346,4544, 117841,2075,4544,16,0,
1157216,0,603,1,1876, 11785592,1,2337,4545,16,
115734545,16,0,603,1, 117860,592,1,2413,4546,
115741659,4546,16,0,603, 1178716,0,592,1,1901,
115751,1225,4547,16,0, 117884547,16,0,592,1,
11576603,1,1117,4548,16, 117892198,4548,16,0,592,
115770,603,1,137,4549, 117901,2106,4549,16,0,
1157816,0,603,1,2318, 11791592,1,1804,4550,16,
115794550,16,0,603,1, 117920,592,1,1990,4551,
115801775,4551,16,0,603, 1179316,0,592,1,32,
115811,32,4552,16,0, 117944552,16,0,592,1,
11582603,1,1407,4553,16, 117951958,4553,16,0,592,
115830,603,1,2740,4554, 117961,1775,4554,16,0,
1158416,0,603,1,256, 11797592,1,140,4555,19,
115854555,16,0,603,1, 11798591,1,140,4556,5,
11586459,4556,16,0,603, 1179911,1,2075,4557,16,
115871,406,4557,16,0, 118000,589,1,2337,4558,
11588603,1,41,4558,16, 1180116,0,589,1,2413,
115890,603,1,151,4559, 118024559,16,0,589,1,
1159016,0,603,1,43, 118031901,4560,16,0,589,
115914560,16,0,603,1, 118041,2198,4561,16,0,
115921585,4561,16,0,603, 11805589,1,2106,4562,16,
115931,1990,4562,16,0, 118060,589,1,1804,4563,
11594603,1,2337,4563,16, 1180716,0,589,1,1990,
115950,603,1,509,4564, 118084564,16,0,589,1,
1159616,0,603,1,52, 1180932,4565,16,0,589,
115974565,16,0,603,1, 118101,1958,4566,16,0,
11598381,4566,16,0,603, 11811589,1,1775,4567,16,
115991,447,4567,16,0, 118120,589,1,141,4568,
11600603,1,166,4568,16, 1181319,588,1,141,4569,
116010,603,1,462,4569, 118145,11,1,2075,4570,
1160216,0,603,1,277, 1181516,0,586,1,2337,
116034570,16,0,603,1, 118164571,16,0,586,1,
116041695,4571,16,0,603, 118172413,4572,16,0,586,
116051,62,4572,16,0, 118181,1901,4573,16,0,
11606663,1,1153,4573,16, 11819586,1,2198,4574,16,
116070,603,1,2106,4574, 118200,586,1,2106,4575,
1160816,0,603,1,1335, 1182116,0,586,1,1804,
116094575,16,0,603,1, 118224576,16,0,586,1,
1161071,4576,16,0,603, 118231990,4577,16,0,586,
116111,182,4577,16,0, 118241,32,4578,16,0,
11612603,1,76,4578,16, 11825586,1,1958,4579,16,
116130,603,1,79,4579, 118260,586,1,1775,4580,
1161416,0,603,1,1933, 1182716,0,586,1,142,
116154580,16,0,603,1, 118284581,19,585,1,142,
11616299,4581,16,0,603, 118294582,5,11,1,2075,
116171,85,4582,16,0, 118304583,16,0,583,1,
11618603,1,1515,4583,16, 118312337,4584,16,0,583,
116190,603,1,2198,4584, 118321,2413,4585,16,0,
1162016,0,603,1,89, 11833583,1,1901,4586,16,
116214585,16,0,603,1, 118340,583,1,2198,4587,
116221834,4586,16,0,603, 1183516,0,583,1,2106,
116231,1622,4587,16,0, 118364588,16,0,583,1,
11624603,1,2413,4588,16, 118371804,4589,16,0,583,
116250,603,1,2075,4589, 118381,1990,4590,16,0,
1162616,0,603,1,1731, 11839583,1,32,4591,16,
116274590,16,0,603,1, 118400,583,1,1958,4592,
1162897,4591,16,0,603, 1184116,0,583,1,1775,
116291,1297,4592,16,0, 118424593,16,0,583,1,
11630603,1,1189,4593,16, 11843143,4594,19,156,1,
116310,603,1,102,4594, 11844143,4595,5,3,1,
1163216,0,603,1,1261, 118451756,4596,16,0,313,
116334595,16,0,603,1, 118461,2318,4597,16,0,
11634322,4596,16,0,603, 11847325,1,1659,4598,16,
116351,1958,4597,16,0, 118480,154,1,144,4599,
11636603,1,199,4598,16, 1184919,624,1,144,4600,
116370,603,1,1371,4599, 118505,68,1,1901,4601,
1163816,0,603,1,217, 1185116,0,622,1,1479,
116394600,16,0,603,1, 118524602,16,0,622,1,
11640142,4601,19,677,1, 11853112,4603,16,0,622,
11641142,4602,5,2,1, 118541,2293,4604,16,0,
11642459,4603,16,0,675, 11855622,1,1804,4605,16,
116431,41,4604,16,0, 118560,622,1,431,4606,
11644747,1,143,4605,19, 1185716,0,622,1,1443,
11645681,1,143,4606,5, 118584607,16,0,622,1,
116463,1,462,4607,16, 118591756,4608,16,0,622,
116470,679,1,459,4608, 118601,124,4609,16,0,
1164816,0,706,1,41, 11861622,1,525,4610,16,
116494609,16,0,706,1, 118620,622,1,236,4611,
11650144,4610,19,4611,4, 1186316,0,622,1,346,
1165136,69,0,120,0, 118644612,16,0,622,1,
11652112,0,114,0,101, 118651876,4613,16,0,622,
116530,115,0,115,0, 118661,1659,4614,16,0,
11654105,0,111,0,110, 11867622,1,1225,4615,16,
116550,65,0,114,0, 118680,622,1,1117,4616,
11656103,0,117,0,109, 1186916,0,622,1,137,
116570,101,0,110,0, 118704617,16,0,622,1,
11658116,0,1,144,4606, 118712318,4618,16,0,622,
116591,145,4612,19,595, 118721,1775,4619,16,0,
116601,145,4613,5,68, 11873622,1,32,4620,16,
116611,1901,4614,16,0, 118740,622,1,1407,4621,
11662593,1,1479,4615,16, 1187516,0,622,1,2761,
116630,593,1,112,4616, 118764622,16,0,622,1,
1166416,0,593,1,2293, 11877256,4623,16,0,622,
116654617,16,0,593,1, 118781,459,4624,16,0,
116661804,4618,16,0,593, 11879622,1,406,4625,16,
116671,431,4619,16,0, 118800,622,1,41,4626,
11668593,1,1443,4620,16, 1188116,0,622,1,151,
116690,593,1,1756,4621, 118824627,16,0,622,1,
1167016,0,593,1,124, 1188343,4628,16,0,622,
116714622,16,0,593,1, 118841,1585,4629,16,0,
11672525,4623,16,0,593, 11885622,1,1990,4630,16,
116731,236,4624,16,0, 118860,622,1,2337,4631,
11674593,1,346,4625,16, 1188716,0,622,1,509,
116750,593,1,1876,4626, 118884632,16,0,622,1,
1167616,0,593,1,1659, 1188952,4633,16,0,622,
116774627,16,0,593,1, 118901,381,4634,16,0,
116781225,4628,16,0,593, 11891622,1,447,4635,16,
116791,1117,4629,16,0, 118920,622,1,166,4636,
11680593,1,137,4630,16, 1189316,0,622,1,462,
116810,593,1,2318,4631, 118944637,16,0,622,1,
1168216,0,593,1,1775, 11895277,4638,16,0,622,
116834632,16,0,593,1, 118961,1695,4639,16,0,
1168432,4633,16,0,593, 11897622,1,62,4640,16,
116851,1407,4634,16,0, 118980,685,1,1153,4641,
11686593,1,2740,4635,16, 1189916,0,622,1,2106,
116870,593,1,256,4636, 119004642,16,0,622,1,
1168816,0,593,1,459, 119011335,4643,16,0,622,
116894637,16,0,593,1, 119021,71,4644,16,0,
11690406,4638,16,0,593, 11903622,1,182,4645,16,
116911,41,4639,16,0, 119040,622,1,76,4646,
11692593,1,151,4640,16, 1190516,0,622,1,79,
116930,593,1,43,4641, 119064647,16,0,622,1,
1169416,0,593,1,1585, 119071933,4648,16,0,622,
116954642,16,0,593,1, 119081,299,4649,16,0,
116961990,4643,16,0,593, 11909622,1,85,4650,16,
116971,2337,4644,16,0, 119100,622,1,1515,4651,
11698593,1,509,4645,16, 1191116,0,622,1,2198,
116990,593,1,52,4646, 119124652,16,0,622,1,
1170016,0,593,1,381, 1191389,4653,16,0,622,
117014647,16,0,593,1, 119141,1834,4654,16,0,
11702447,4648,16,0,593, 11915622,1,1622,4655,16,
117031,166,4649,16,0, 119160,622,1,2413,4656,
11704593,1,462,4650,16, 1191716,0,622,1,2075,
117050,593,1,277,4651, 119184657,16,0,622,1,
1170616,0,593,1,1695, 119191731,4658,16,0,622,
117074652,16,0,593,1, 119201,97,4659,16,0,
1170862,4653,16,0,664, 11921622,1,1297,4660,16,
117091,1153,4654,16,0, 119220,622,1,1189,4661,
11710593,1,2106,4655,16, 1192316,0,622,1,102,
117110,593,1,1335,4656, 119244662,16,0,622,1,
1171216,0,593,1,71, 119251261,4663,16,0,622,
117134657,16,0,593,1, 119261,322,4664,16,0,
11714182,4658,16,0,593, 11927622,1,1958,4665,16,
117151,76,4659,16,0, 119280,622,1,199,4666,
11716593,1,79,4660,16, 1192916,0,622,1,1371,
117170,593,1,1933,4661, 119304667,16,0,622,1,
1171816,0,593,1,299, 11931217,4668,16,0,622,
117194662,16,0,593,1, 119321,145,4669,19,699,
1172085,4663,16,0,593, 119331,145,4670,5,2,
117211,1515,4664,16,0, 119341,459,4671,16,0,
11722593,1,2198,4665,16, 11935697,1,41,4672,16,
117230,593,1,89,4666, 119360,770,1,146,4673,
1172416,0,593,1,1834, 1193719,703,1,146,4674,
117254667,16,0,593,1, 119385,3,1,462,4675,
117261622,4668,16,0,593, 1193916,0,701,1,459,
117271,2413,4669,16,0, 119404676,16,0,723,1,
11728593,1,2075,4670,16, 1194141,4677,16,0,723,
117290,593,1,1731,4671, 119421,147,4678,19,4679,
1173016,0,593,1,97, 119434,36,69,0,120,
117314672,16,0,593,1,
117321297,4673,16,0,593,
117331,1189,4674,16,0,
11734593,1,102,4675,16,
117350,593,1,1261,4676,
1173616,0,593,1,322,
117374677,16,0,593,1,
117381958,4678,16,0,593,
117391,199,4679,16,0,
11740593,1,1371,4680,16,
117410,593,1,217,4681,
1174216,0,593,1,146,
117434682,19,4683,4,28,
1174486,0,101,0,99,
117450,116,0,111,0,
11746114,0,67,0,111,
117470,110,0,115,0,
11748116,0,97,0,110,
117490,116,0,1,146,
117504613,1,147,4684,19,
117514685,4,32,82,0,
11752111,0,116,0,97,
117530,116,0,105,0,
11754111,0,110,0,67,
117550,111,0,110,0,
11756115,0,116,0,97,
117570,110,0,116,0,
117581,147,4613,1,148,
117594686,19,4687,4,24,
1176076,0,105,0,115,
117610,116,0,67,0,
11762111,0,110,0,115,
117630,116,0,97,0,
11764110,0,116,0,1,
11765148,4613,1,149,4688,
1176619,180,1,149,4689,
117675,67,1,1901,4690,
1176816,0,661,1,1479,
117694691,16,0,584,1,
11770112,4692,16,0,264,
117711,2293,4693,16,0,
11772288,1,1804,4694,16,
117730,661,1,431,4695,
1177416,0,656,1,1443,
117754696,16,0,518,1,
117761756,4697,16,0,759,
117771,124,4698,16,0,
11778272,1,525,4699,16,
117790,320,1,236,4700,
1178016,0,353,1,346,
117814701,16,0,547,1,
117821876,4702,16,0,332,
117831,1659,4703,16,0,
11784759,1,1225,4704,16,
117850,263,1,1117,4705,
1178616,0,230,1,137,
117874706,16,0,287,1,
117882318,4707,16,0,759,
117891,1775,4708,16,0,
11790661,1,32,4709,16,
117910,661,1,1407,4710,
1179216,0,538,1,2740,
117934711,16,0,738,1,
11794256,4712,16,0,407,
117951,459,4713,16,0,
11796178,1,406,4714,16,
117970,641,1,41,4715,
1179816,0,178,1,151,
117994716,16,0,298,1,
1180043,4717,16,0,709,
118011,1990,4718,16,0,
11802661,1,2337,4719,16,
118030,661,1,509,4720,
1180416,0,734,1,52,
118054721,16,0,669,1,
11806381,4722,16,0,608,
118071,447,4723,16,0,
11808320,1,166,4724,16,
118090,309,1,462,4725,
1181016,0,178,1,277,
118114726,16,0,452,1,
118121695,4727,16,0,284,
118131,1261,4728,16,0,
11814296,1,1153,4729,16,
118150,185,1,2106,4730,
1181616,0,661,1,1335,
118174731,16,0,340,1,
1181871,4732,16,0,214,
118191,182,4733,16,0,
11820320,1,76,4734,16,
118210,606,1,79,4735,
1182216,0,229,1,1933,
118234736,16,0,419,1,
11824299,4737,16,0,484,
118251,85,4738,16,0,
11826514,1,1515,4739,16,
118270,640,1,2198,4740,
1182816,0,661,1,89,
118294741,16,0,244,1,
118301834,4742,16,0,308,
118311,1622,4743,16,0,
11832733,1,2413,4744,16,
118330,661,1,2075,4745,
1183416,0,661,1,1731,
118354746,16,0,265,1,
1183697,4747,16,0,423,
118371,1297,4748,16,0,
11838342,1,1189,4749,16,
118390,228,1,102,4750,
1184016,0,253,1,1585,
118414751,16,0,743,1,
11842322,4752,16,0,515,
118431,1958,4753,16,0,
11844661,1,199,4754,16,
118450,331,1,1371,4755,
1184616,0,408,1,217,
118474756,16,0,339,1,
11848150,4757,19,4758,4,
1184936,67,0,111,0,
11850110,0,115,0,116,
118510,97,0,110,0,
11852116,0,69,0,120,
118530,112,0,114,0, 119440,112,0,114,0,
11854101,0,115,0,115, 11945101,0,115,0,115,
118550,105,0,111,0, 119460,105,0,111,0,
11856110,0,1,150,4689, 11947110,0,65,0,114,
118571,151,4759,19,4760, 119480,103,0,117,0,
118584,30,73,0,100, 11949109,0,101,0,110,
118590,101,0,110,0, 119500,116,0,1,147,
11860116,0,69,0,120, 119514674,1,148,4680,19,
118610,112,0,114,0, 11952620,1,148,4681,5,
11862101,0,115,0,115, 1195368,1,1901,4682,16,
118630,105,0,111,0, 119540,618,1,1479,4683,
11864110,0,1,151,4689, 1195516,0,618,1,112,
118651,152,4761,19,4762, 119564684,16,0,618,1,
118664,36,73,0,100, 119572293,4685,16,0,618,
118670,101,0,110,0, 119581,1804,4686,16,0,
11868116,0,68,0,111, 11959618,1,431,4687,16,
119600,618,1,1443,4688,
1196116,0,618,1,1756,
119624689,16,0,618,1,
11963124,4690,16,0,618,
119641,525,4691,16,0,
11965618,1,236,4692,16,
119660,618,1,346,4693,
1196716,0,618,1,1876,
119684694,16,0,618,1,
119691659,4695,16,0,618,
119701,1225,4696,16,0,
11971618,1,1117,4697,16,
119720,618,1,137,4698,
1197316,0,618,1,2318,
119744699,16,0,618,1,
119751775,4700,16,0,618,
119761,32,4701,16,0,
11977618,1,1407,4702,16,
119780,618,1,2761,4703,
1197916,0,618,1,256,
119804704,16,0,618,1,
11981459,4705,16,0,618,
119821,406,4706,16,0,
11983618,1,41,4707,16,
119840,618,1,151,4708,
1198516,0,618,1,43,
119864709,16,0,618,1,
119871585,4710,16,0,618,
119881,1990,4711,16,0,
11989618,1,2337,4712,16,
119900,618,1,509,4713,
1199116,0,618,1,52,
119924714,16,0,618,1,
11993381,4715,16,0,618,
119941,447,4716,16,0,
11995618,1,166,4717,16,
119960,618,1,462,4718,
1199716,0,618,1,277,
119984719,16,0,618,1,
119991695,4720,16,0,618,
120001,62,4721,16,0,
12001686,1,1153,4722,16,
120020,618,1,2106,4723,
1200316,0,618,1,1335,
120044724,16,0,618,1,
1200571,4725,16,0,618,
120061,182,4726,16,0,
12007618,1,76,4727,16,
120080,618,1,79,4728,
1200916,0,618,1,1933,
120104729,16,0,618,1,
12011299,4730,16,0,618,
120121,85,4731,16,0,
12013618,1,1515,4732,16,
120140,618,1,2198,4733,
1201516,0,618,1,89,
120164734,16,0,618,1,
120171834,4735,16,0,618,
120181,1622,4736,16,0,
12019618,1,2413,4737,16,
120200,618,1,2075,4738,
1202116,0,618,1,1731,
120224739,16,0,618,1,
1202397,4740,16,0,618,
120241,1297,4741,16,0,
12025618,1,1189,4742,16,
120260,618,1,102,4743,
1202716,0,618,1,1261,
120284744,16,0,618,1,
12029322,4745,16,0,618,
120301,1958,4746,16,0,
12031618,1,199,4747,16,
120320,618,1,1371,4748,
1203316,0,618,1,217,
120344749,16,0,618,1,
12035149,4750,19,4751,4,
1203628,86,0,101,0,
1203799,0,116,0,111,
120380,114,0,67,0,
12039111,0,110,0,115,
120400,116,0,97,0,
12041110,0,116,0,1,
12042149,4681,1,150,4752,
1204319,4753,4,32,82,
120440,111,0,116,0,
1204597,0,116,0,105,
120460,111,0,110,0,
1204767,0,111,0,110,
120480,115,0,116,0,
1204997,0,110,0,116,
120500,1,150,4681,1,
12051151,4754,19,4755,4,
1205224,76,0,105,0,
12053115,0,116,0,67,
120540,111,0,110,0,
12055115,0,116,0,97,
120560,110,0,116,0,
120571,151,4681,1,152,
120584756,19,184,1,152,
120594757,5,67,1,1901,
120604758,16,0,683,1,
120611479,4759,16,0,609,
120621,112,4760,16,0,
12063267,1,2293,4761,16,
120640,296,1,1804,4762,
1206516,0,683,1,431,
120664763,16,0,678,1,
120671443,4764,16,0,540,
120681,1756,4765,16,0,
12069777,1,124,4766,16,
120700,276,1,525,4767,
1207116,0,336,1,236,
120724768,16,0,374,1,
12073346,4769,16,0,572,
120741,1876,4770,16,0,
12075348,1,1659,4771,16,
120760,777,1,1225,4772,
1207716,0,266,1,1117,
120784773,16,0,236,1,
12079137,4774,16,0,295,
120801,2318,4775,16,0,
12081777,1,1775,4776,16,
120820,683,1,32,4777,
1208316,0,683,1,1407,
120844778,16,0,563,1,
120852761,4779,16,0,312,
120861,256,4780,16,0,
12087428,1,459,4781,16,
120880,182,1,406,4782,
1208916,0,662,1,41,
120904783,16,0,182,1,
12091151,4784,16,0,311,
120921,43,4785,16,0,
12093735,1,1990,4786,16,
120940,683,1,2337,4787,
1209516,0,683,1,509,
120964788,16,0,755,1,
1209752,4789,16,0,691,
120981,381,4790,16,0,
12099627,1,447,4791,16,
121000,336,1,166,4792,
1210116,0,323,1,462,
121024793,16,0,182,1,
12103277,4794,16,0,471,
121041,1695,4795,16,0,
12105292,1,1261,4796,16,
121060,310,1,1153,4797,
1210716,0,189,1,2106,
121084798,16,0,683,1,
121091335,4799,16,0,358,
121101,71,4800,16,0,
12111220,1,182,4801,16,
121120,336,1,76,4802,
1211316,0,625,1,79,
121144803,16,0,235,1,
121151933,4804,16,0,440,
121161,299,4805,16,0,
12117502,1,85,4806,16,
121180,530,1,1515,4807,
1211916,0,649,1,2198,
121204808,16,0,683,1,
1212189,4809,16,0,248,
121221,1834,4810,16,0,
12123322,1,1622,4811,16,
121240,754,1,2413,4812,
1212516,0,683,1,2075,
121264813,16,0,683,1,
121271731,4814,16,0,269,
121281,97,4815,16,0,
12129444,1,1297,4816,16,
121300,360,1,1189,4817,
1213116,0,234,1,102,
121324818,16,0,256,1,
121331585,4819,16,0,764,
121341,322,4820,16,0,
12135532,1,1958,4821,16,
121360,683,1,199,4822,
1213716,0,347,1,1371,
121384823,16,0,429,1,
12139217,4824,16,0,357,
121401,153,4825,19,4826,
121414,36,67,0,111,
121420,110,0,115,0,
12143116,0,97,0,110,
118690,116,0,69,0, 121440,116,0,69,0,
11870120,0,112,0,114, 12145120,0,112,0,114,
118710,101,0,115,0, 121460,101,0,115,0,
11872115,0,105,0,111, 12147115,0,105,0,111,
118730,110,0,1,152, 121480,110,0,1,153,
118744689,1,153,4763,19, 121494757,1,154,4827,19,
118754764,4,44,70,0, 121504828,4,30,73,0,
11876117,0,110,0,99, 12151100,0,101,0,110,
118770,116,0,105,0, 121520,116,0,69,0,
11878111,0,110,0,67, 12153120,0,112,0,114,
118790,97,0,108,0, 121540,101,0,115,0,
11880108,0,69,0,120, 12155115,0,105,0,111,
118810,112,0,114,0, 121560,110,0,1,154,
11882101,0,115,0,115, 121574757,1,155,4829,19,
118830,105,0,111,0, 121584830,4,36,73,0,
11884110,0,1,153,4689, 12159100,0,101,0,110,
118851,154,4765,19,4766, 121600,116,0,68,0,
118864,32,66,0,105, 12161111,0,116,0,69,
118870,110,0,97,0,
11888114,0,121,0,69,
118890,120,0,112,0,
11890114,0,101,0,115,
118910,115,0,105,0,
11892111,0,110,0,1,
11893154,4689,1,155,4767,
1189419,4768,4,30,85,
118950,110,0,97,0,
11896114,0,121,0,69,
118970,120,0,112,0, 121620,120,0,112,0,
11898114,0,101,0,115, 12163114,0,101,0,115,
118990,115,0,105,0, 121640,115,0,105,0,
11900111,0,110,0,1, 12165111,0,110,0,1,
11901155,4689,1,156,4769, 12166155,4757,1,156,4831,
1190219,4770,4,36,84, 1216719,4832,4,44,70,
119030,121,0,112,0, 121680,117,0,110,0,
11904101,0,99,0,97, 1216999,0,116,0,105,
119050,115,0,116,0, 121700,111,0,110,0,
1217167,0,97,0,108,
121720,108,0,69,0,
12173120,0,112,0,114,
121740,101,0,115,0,
12175115,0,105,0,111,
121760,110,0,1,156,
121774757,1,157,4833,19,
121784834,4,32,66,0,
12179105,0,110,0,97,
121800,114,0,121,0,
1190669,0,120,0,112, 1218169,0,120,0,112,
119070,114,0,101,0, 121820,114,0,101,0,
11908115,0,115,0,105, 12183115,0,115,0,105,
119090,111,0,110,0, 121840,111,0,110,0,
119101,156,4689,1,157, 121851,157,4757,1,158,
119114771,19,4772,4,42, 121864835,19,4836,4,30,
1191280,0,97,0,114, 1218785,0,110,0,97,
119130,101,0,110,0, 121880,114,0,121,0,
11914116,0,104,0,101, 1218969,0,120,0,112,
119150,115,0,105,0,
11916115,0,69,0,120,
119170,112,0,114,0,
11918101,0,115,0,115,
119190,105,0,111,0,
11920110,0,1,157,4689,
119211,158,4773,19,4774,
119224,56,73,0,110,
119230,99,0,114,0,
11924101,0,109,0,101,
119250,110,0,116,0,
1192668,0,101,0,99,
119270,114,0,101,0, 121900,114,0,101,0,
11928109,0,101,0,110, 12191115,0,115,0,105,
119290,116,0,69,0, 121920,111,0,110,0,
121931,158,4757,1,159,
121944837,19,4838,4,36,
1219584,0,121,0,112,
121960,101,0,99,0,
1219797,0,115,0,116,
121980,69,0,120,0,
12199112,0,114,0,101,
122000,115,0,115,0,
12201105,0,111,0,110,
122020,1,159,4757,1,
12203160,4839,19,4840,4,
1220442,80,0,97,0,
12205114,0,101,0,110,
122060,116,0,104,0,
12207101,0,115,0,105,
122080,115,0,69,0,
11930120,0,112,0,114, 12209120,0,112,0,114,
119310,101,0,115,0, 122100,101,0,115,0,
11932115,0,105,0,111, 12211115,0,105,0,111,
119330,110,0,1,158, 122120,110,0,1,160,
119344689,1,160,4775,19, 122134757,1,161,4841,19,
11935786,1,160,4157,1, 122144842,4,56,73,0,
11936161,4776,19,775,1, 12215110,0,99,0,114,
11937161,4157,1,162,4777, 122160,101,0,109,0,
1193819,3445,1,162,4160, 12217101,0,110,0,116,
119391,163,4778,19,3435, 122180,68,0,101,0,
119401,163,4160,1,164, 1221999,0,114,0,101,
119414779,19,3440,1,164, 122200,109,0,101,0,
119424160,1,165,4780,19, 12221110,0,116,0,69,
119433430,1,165,4160,1, 122220,120,0,112,0,
11944166,4781,19,3421,1, 12223114,0,101,0,115,
11945166,4163,1,167,4782, 122240,115,0,105,0,
1194619,3456,1,167,4163, 12225111,0,110,0,1,
119471,168,4783,19,3462, 12226161,4757,1,163,4843,
119481,168,4167,1,169, 1222719,792,1,163,4206,
119494784,19,3451,1,169, 122281,164,4844,19,787,
119504167,1,170,4785,19, 122291,164,4206,1,165,
11951791,1,170,4171,1, 122304845,19,3478,1,165,
11952171,4786,19,781,1, 122314209,1,166,4846,19,
11953171,4171,1,172,4787, 122323496,1,166,4209,1,
1195419,769,1,172,4175, 12233167,4847,19,3473,1,
119551,173,4788,19,796, 12234167,4209,1,168,4848,
119561,173,4175,1,174, 1223519,3468,1,168,4209,
119574789,19,1738,1,174, 122361,169,4849,19,3501,
119584181,1,175,4790,19, 122371,169,4212,1,170,
119591808,1,175,4181,1, 122384850,19,3484,1,170,
11960176,4791,19,1733,1, 122394212,1,171,4851,19,
11961176,4181,1,177,4792, 122403491,1,171,4216,1,
1196219,1803,1,177,4181, 12241172,4852,19,3507,1,
119631,178,4793,19,1728, 12242172,4216,1,173,4853,
119641,178,4181,1,179, 1224319,803,1,173,4220,
119654794,19,1798,1,179, 122441,174,4854,19,798,
119664181,1,180,4795,19, 122451,174,4220,1,175,
119671723,1,180,4181,1, 122464855,19,814,1,175,
11968181,4796,19,1793,1, 122474224,1,176,4856,19,
11969181,4181,1,182,4797, 12248809,1,176,4224,1,
1197019,1718,1,182,4181, 12249177,4857,19,1789,1,
119711,183,4798,19,1788, 12250177,4230,1,178,4858,
119721,183,4181,1,184, 1225119,1758,1,178,4230,
119734799,19,1713,1,184, 122521,179,4859,19,1784,
119744181,1,185,4800,19, 122531,179,4230,1,180,
119751783,1,185,4181,1, 122544860,19,1837,1,180,
11976186,4801,19,1777,1, 122554230,1,181,4861,19,
11977186,4185,1,187,4802, 122561843,1,181,4230,1,
1197819,1771,1,187,4191, 12257182,4862,19,1747,1,
119791,188,4803,19,1765, 12258182,4230,1,183,4863,
119801,188,4197,1,189, 1225919,1779,1,183,4230,
119814804,19,1758,1,189, 122601,184,4864,19,1742,
119824203,1,190,4805,19, 122611,184,4230,1,185,
119831751,1,190,4209,1, 122624865,19,1774,1,185,
11984191,4806,19,1744,1, 122634230,1,186,4866,19,
11985191,4215,1,192,4807, 122641737,1,186,4230,1,
1198619,1853,1,192,4221, 12265187,4867,19,1769,1,
119871,193,4808,19,1828, 12266187,4230,1,188,4868,
119881,193,4221,1,194, 1226719,1732,1,188,4230,
119894809,19,2231,1,194, 122681,189,4869,19,1764,
119904226,1,195,4810,19, 122691,189,4230,1,190,
119912200,1,195,4229,1, 122704870,19,1832,1,190,
11992196,4811,19,2192,1, 122714230,1,191,4871,19,
11993196,4232,1,197,4812, 122721808,1,191,4234,1,
1199419,2222,1,197,4235, 12273192,4872,19,1820,1,
119951,198,4813,19,1203, 12274192,4240,1,193,4873,
119961,198,4238,1,199, 1227519,1814,1,193,4246,
119974814,19,2207,1,199, 122761,194,4874,19,1802,
119984257,1,200,4815,19, 122771,194,4252,1,195,
119991874,1,200,4260,1, 122784875,19,1827,1,195,
12000201,4816,19,2186,1, 122794258,1,196,4876,19,
12001201,4264,1,202,4817, 122801795,1,196,4264,1,
1200219,1816,1,202,4267, 12281197,4877,19,1753,1,
120031,203,4818,19,987, 12282197,4270,1,198,4878,
120041,203,4327,1,204, 1228319,1895,1,198,4276,
120054819,19,971,1,204, 122841,199,4879,19,1871,
120064327,1,205,4820,19, 122851,199,4276,1,200,
12007977,1,205,4348,1, 122864880,19,2280,1,200,
12008206,4821,19,965,1, 122874281,1,201,4881,19,
12009206,4348,1,207,4822, 122882245,1,201,4284,1,
1201019,1231,1,207,4364, 12289202,4882,19,2239,1,
120111,208,4823,19,868, 12290202,4287,1,203,4883,
120121,208,4351,1,209, 1229119,2233,1,203,4290,
120134824,19,982,1,209, 122921,204,4884,19,2265,
120144351,1,210,4825,19, 122931,204,4293,1,205,
12015863,1,210,4351,1, 122944885,19,1222,1,205,
12016211,4826,19,888,1, 122954296,1,206,4886,19,
12017211,4351,1,212,4827, 122962253,1,206,4315,1,
1201819,857,1,212,4351, 12297207,4887,19,1917,1,
120191,213,4828,19,851, 12298207,4318,1,208,4888,
120201,213,4351,1,214, 1229919,1851,1,208,4323,
120214829,19,846,1,214, 123001,209,4889,19,1864,
120224351,1,215,4830,19, 123011,209,4328,1,210,
12023841,1,215,4351,1, 123024890,19,1006,1,210,
12024216,4831,19,835,1, 123034394,1,211,4891,19,
12025216,4351,1,217,4832, 12304990,1,211,4394,1,
1202619,830,1,217,4351, 12305212,4892,19,996,1,
120271,218,4833,19,825, 12306212,4416,1,213,4893,
120281,218,4351,1,219, 1230719,984,1,213,4416,
120294834,19,820,1,219, 123081,214,4894,19,1250,
120304351,1,220,4835,19, 123091,214,4432,1,215,
12031815,1,220,4351,1, 123104895,19,887,1,215,
12032221,4836,19,1238,1, 123114419,1,216,4896,19,
12033221,4436,1,222,4837, 123121001,1,216,4419,1,
1203419,1377,1,222,4449, 12313217,4897,19,882,1,
120351,223,4838,19,1225, 12314217,4419,1,218,4898,
120361,223,4462,1,224, 1231519,907,1,218,4419,
120374839,19,1365,1,224, 123161,219,4899,19,876,
120384462,1,225,4840,19, 123171,219,4419,1,220,
120391005,1,225,4475,1, 123184900,19,870,1,220,
12040226,4841,19,808,1, 123194419,1,221,4901,19,
12041226,4475,1,227,4842, 12320865,1,221,4419,1,
1204219,903,1,227,4475, 12321222,4902,19,860,1,
120431,228,4843,19,931, 12322222,4419,1,223,4903,
120441,228,4475,1,229, 1232319,854,1,223,4419,
120454844,19,950,1,229, 123241,224,4904,19,849,
120464488,1,230,4845,19, 123251,224,4419,1,225,
12047996,1,230,4488,1, 123264905,19,844,1,225,
12048231,4846,19,911,1, 123274419,1,226,4906,19,
12049231,4501,1,232,4847, 12328839,1,226,4419,1,
1205019,924,1,232,4501, 12329227,4907,19,834,1,
120511,233,4848,19,877, 12330227,4419,1,228,4908,
120521,233,4514,1,234, 1233119,1257,1,228,4504,
120534849,19,916,1,234, 123321,229,4909,19,1395,
120544514,1,235,4850,19, 123331,229,4517,1,230,
120551563,1,235,4527,1, 123344910,19,1244,1,230,
12056236,4851,19,1244,1, 123354530,1,231,4911,19,
12057236,4527,1,237,4852, 123361383,1,231,4530,1,
1205819,1595,1,237,4527, 12337232,4912,19,1023,1,
120591,238,4853,19,1627, 12338232,4543,1,233,4913,
120601,238,4527,1,239, 1233919,827,1,233,4543,
120614854,19,1493,1,239, 123401,234,4914,19,922,
120624377,1,240,4855,19, 123411,234,4543,1,235,
120631552,1,240,4377,1, 123424915,19,950,1,235,
12064241,4856,19,1219,1, 123434543,1,236,4916,19,
12065241,4390,1,242,4857, 12344969,1,236,4556,1,
1206619,1659,1,242,4390, 12345237,4917,19,1015,1,
120671,243,4858,19,1590, 12346237,4556,1,238,4918,
120681,243,4390,1,244, 1234719,930,1,238,4569,
120694859,19,1537,1,244, 123481,239,4919,19,943,
120704390,1,245,4860,19, 123491,239,4569,1,240,
120711461,1,245,4390,1, 123504920,19,896,1,240,
12072246,4861,19,1387,1, 123514582,1,241,4921,19,
12073246,4390,1,247,4862, 12352935,1,241,4582,1,
1207419,1397,1,247,4390, 12353242,4922,19,1581,1,
120751,248,4863,19,1214, 12354242,4595,1,243,4923,
120761,248,4390,1,249, 1235519,1263,1,243,4595,
120774864,19,1643,1,249, 123561,244,4924,19,1613,
120784390,1,250,4865,19, 123571,244,4595,1,245,
120791585,1,250,4390,1, 123584925,19,1645,1,245,
12080251,4866,19,1527,1, 123594595,1,246,4926,19,
12081251,4390,1,252,4867, 123601511,1,246,4445,1,
1208219,1450,1,252,4390, 12361247,4927,19,1570,1,
120831,253,4868,19,1413, 12362247,4445,1,248,4928,
120841,253,4390,1,254, 1236319,1238,1,248,4458,
120854869,19,1197,1,254, 123641,249,4929,19,1677,
120864390,1,255,4870,19, 123651,249,4458,1,250,
120871547,1,255,4390,1, 123664930,19,1608,1,250,
12088256,4871,19,1573,1, 123674458,1,251,4931,19,
12089256,4390,1,257,4872, 123681555,1,251,4458,1,
1209019,1520,1,257,4390, 12369252,4932,19,1479,1,
120911,258,4873,19,1542, 12370252,4458,1,253,4933,
120921,258,4390,1,259, 1237119,1405,1,253,4458,
120934874,19,1353,1,259, 123721,254,4934,19,1415,
120944390,1,260,4875,19, 123731,254,4458,1,255,
120951256,1,260,4390,1, 123744935,19,1233,1,255,
12096261,4876,19,1186,1, 123754458,1,256,4936,19,
12097261,4390,1,262,4877, 123761661,1,256,4458,1,
1209819,1617,1,262,4390, 12377257,4937,19,1603,1,
120991,263,4878,19,1568, 12378257,4458,1,258,4938,
121001,263,4390,1,264, 1237919,1545,1,258,4458,
121014879,19,1515,1,264, 123801,259,4939,19,1468,
121024390,1,265,4880,19, 123811,259,4458,1,260,
121031382,1,265,4423,1, 123824940,19,1431,1,260,
12104266,4881,19,1360,1, 123834458,1,261,4941,19,
12105266,4423,1,267,4882, 123841216,1,261,4458,1,
1210619,1648,1,267,4613, 12385262,4942,19,1565,1,
121071,268,4883,19,1672, 12386262,4458,1,263,4943,
121081,268,4613,1,269, 1238719,1591,1,263,4458,
121094884,19,1638,1,269, 123881,264,4944,19,1538,
121104613,1,270,4885,19, 123891,264,4458,1,265,
121111633,1,270,4613,1, 123904945,19,1560,1,265,
12112271,4886,19,1654,1, 123914458,1,266,4946,19,
12113271,4613,1,272,4887, 123921371,1,266,4458,1,
1211419,1601,1,272,4613, 12393267,4947,19,1275,1,
121151,273,4888,19,1306, 12394267,4458,1,268,4948,
121161,273,4613,1,274, 1239519,1204,1,268,4458,
121174889,19,1482,1,274, 123961,269,4949,19,1635,
121184689,1,275,4890,19, 123971,269,4458,1,270,
121191267,1,275,4689,1, 123984950,19,1586,1,270,
12120276,4891,19,1274,1, 123994458,1,271,4951,19,
12121276,4689,1,277,4892, 124001533,1,271,4458,1,
1212219,1295,1,277,4689, 12401272,4952,19,1400,1,
121231,278,4893,19,1290, 12402272,4491,1,273,4953,
121241,278,4689,1,279, 1240319,1378,1,273,4491,
121254894,19,1285,1,279, 124041,274,4954,19,1666,
121264689,1,280,4895,19, 124051,274,4681,1,275,
121271280,1,280,4689,1, 124064955,19,1689,1,275,
12128281,4896,19,1471,1, 124074681,1,276,4956,19,
12129281,4689,1,282,4897, 124081656,1,276,4681,1,
1213019,1499,1,282,4689, 12409277,4957,19,1651,1,
121311,283,4898,19,1476, 12410277,4681,1,278,4958,
121321,283,4689,1,284, 1241119,1672,1,278,4681,
121334899,19,1466,1,284, 124121,279,4959,19,1619,
121344689,1,285,4900,19, 124131,279,4681,1,280,
121351456,1,285,4689,1, 124144960,19,1325,1,280,
12136286,4901,19,1439,1, 124154681,1,281,4961,19,
12137286,4689,1,287,4902, 124161500,1,281,4757,1,
1213819,1392,1,287,4689, 12417282,4962,19,1286,1,
121391,288,4903,19,1300, 12418282,4757,1,283,4963,
121401,288,4689,1,289, 1241919,1293,1,283,4757,
121414904,19,1261,1,289, 124201,284,4964,19,1314,
121424689,1,290,4905,19, 124211,284,4757,1,285,
121431209,1,290,4689,1, 124224965,19,1309,1,285,
12144291,4906,19,1667,1, 124234757,1,286,4966,19,
12145291,4689,1,292,4907, 124241304,1,286,4757,1,
1214619,1622,1,292,4689, 12425287,4967,19,1299,1,
121471,293,4908,19,1612, 12426287,4757,1,288,4968,
121481,293,4689,1,294, 1242719,1489,1,288,4757,
121494909,19,1607,1,294, 124281,289,4969,19,1517,
121504689,1,295,4910,19, 124291,289,4757,1,290,
121511558,1,295,4689,1, 124304970,19,1494,1,290,
12152296,4911,19,1532,1, 124314757,1,291,4971,19,
12153296,4689,1,297,4912, 124321484,1,291,4757,1,
1215419,1509,1,297,4689, 12433292,4972,19,1474,1,
121551,298,4913,19,1504, 12434292,4757,1,293,4973,
121561,298,4689,1,299, 1243519,1457,1,293,4757,
121574914,19,1445,1,299, 124361,294,4974,19,1410,
121584689,1,300,4915,19, 124371,294,4757,1,295,
121591421,1,300,4689,1, 124384975,19,1319,1,295,
12160301,4916,19,1487,1, 124394757,1,296,4976,19,
12161301,4689,1,302,4917, 124401280,1,296,4757,1,
1216219,1579,1,302,4689, 12441297,4977,19,1228,1,
121631,303,4918,19,1434, 12442297,4757,1,298,4978,
121641,303,4689,1,304, 1244319,1684,1,298,4757,
121654919,19,1428,1,304, 124441,299,4979,19,1640,
121664689,1,305,4920,19, 124451,299,4757,1,300,
121671408,1,305,4689,1, 124464980,19,1630,1,300,
12168306,4921,19,1371,1, 124474757,1,301,4981,19,
12169306,4689,1,307,4922, 124481625,1,301,4757,1,
1217019,1348,1,307,4689, 12449302,4982,19,1576,1,
121711,308,4923,19,1192, 12450302,4757,1,303,4983,
121721,308,4689,1,309, 1245119,1550,1,303,4757,
121734924,19,1682,1,309, 124521,304,4984,19,1527,
121744689,1,310,4925,19, 124531,304,4757,1,305,
121751312,1,310,4689,1, 124544985,19,1522,1,305,
12176311,4926,19,1318,1, 124554757,1,306,4986,19,
12177311,4689,1,312,4927, 124561463,1,306,4757,1,
1217819,1338,1,312,4689, 12457307,4987,19,1439,1,
121791,313,4928,19,1328, 12458307,4757,1,308,4988,
121801,313,4689,1,314, 1245919,1505,1,308,4757,
121814929,19,1333,1,314, 124601,309,4989,19,1597,
121824689,1,315,4930,19, 124611,309,4757,1,310,
121831323,1,315,4689,1, 124624990,19,1452,1,310,
12184316,4931,19,1677,1, 124634757,1,311,4991,19,
12185316,4689,1,317,4932, 124641446,1,311,4757,1,
1218619,1343,1,317,4689, 12465312,4992,19,1426,1,
121871,318,4933,19,1403, 12466312,4757,1,313,4993,
121881,318,4532,1,319, 1246719,1389,1,313,4757,
121894934,19,1868,1,319, 124681,314,4994,19,1366,
121904602,1,320,4935,19, 124691,314,4757,1,315,
121911859,1,320,4602,1, 124704995,19,1211,1,315,
12192321,4936,19,1838,1, 124714757,1,316,4996,19,
12193321,4606,1,322,4937, 124721699,1,316,4757,1,
1219419,2180,1,322,4271, 12473317,4997,19,1331,1,
121951,323,4938,19,2175, 12474317,4757,1,318,4998,
121961,323,4271,1,324, 1247519,1336,1,318,4757,
121974939,19,2170,1,324, 124761,319,4999,19,1356,
121984271,1,325,4940,19, 124771,319,4757,1,320,
121992165,1,325,4271,1, 124785000,19,1346,1,320,
12200326,4941,19,2160,1, 124794757,1,321,5001,19,
12201326,4271,1,327,4942, 124801351,1,321,4757,1,
1220219,2155,1,327,4271, 12481322,5002,19,1341,1,
122031,328,4943,19,2150, 12482322,4757,1,323,5003,
122041,328,4271,1,329, 1248319,1694,1,323,4757,
122054944,19,2139,1,329, 124841,324,5004,19,1361,
122064291,1,330,4945,19, 124851,324,4757,1,325,
122072134,1,330,4291,1, 124865005,19,1421,1,325,
12208331,4946,19,2129,1, 124874600,1,326,5006,19,
12209331,4291,1,332,4947, 124881911,1,326,4670,1,
1221019,2124,1,332,4291, 12489327,5007,19,1901,1,
122111,333,4948,19,2119, 12490327,4670,1,328,5008,
122121,333,4291,1,334, 1249119,1881,1,328,4674,
122134949,19,2114,1,334, 124921,329,5009,19,2225,
122144291,1,335,4950,19, 124931,329,4332,1,330,
122152109,1,335,4291,1, 124945010,19,2220,1,330,
12216336,4951,19,2104,1, 124954332,1,331,5011,19,
12217336,4291,1,337,4952, 124962215,1,331,4332,1,
1221819,2099,1,337,4291, 12497332,5012,19,2210,1,
122191,338,4953,19,1930, 12498332,4332,1,333,5013,
122201,338,4291,1,339, 1249919,2205,1,333,4332,
122214954,19,2093,1,339, 125001,334,5014,19,2200,
122224297,1,340,4955,19, 125011,334,4332,1,335,
122232088,1,340,4297,1, 125025015,19,2195,1,335,
12224341,4956,19,2083,1, 125034332,1,336,5016,19,
12225341,4297,1,342,4957, 125042184,1,336,4352,1,
1222619,1922,1,342,4297, 12505337,5017,19,2179,1,
122271,343,4958,19,2078, 12506337,4352,1,338,5018,
122281,343,4297,1,344, 1250719,2174,1,338,4352,
122294959,19,2073,1,344, 125081,339,5019,19,2169,
122304297,1,345,4960,19, 125091,339,4352,1,340,
122312068,1,345,4297,1, 125105020,19,2164,1,340,
12232346,4961,19,2063,1, 125114352,1,341,5021,19,
12233346,4297,1,347,4962, 125122159,1,341,4352,1,
1223419,2058,1,347,4303, 12513342,5022,19,2154,1,
122351,348,4963,19,2053, 12514342,4352,1,343,5023,
122361,348,4303,1,349, 1251519,2149,1,343,4352,
122374964,19,1914,1,349, 125161,344,5024,19,2144,
122384309,1,350,4965,19, 125171,344,4352,1,345,
122392046,1,350,4309,1, 125185025,19,1972,1,345,
12240351,4966,19,2041,1, 125194358,1,346,5026,19,
12241351,4309,1,352,4967, 125202137,1,346,4358,1,
1224219,2036,1,352,4309, 12521347,5027,19,2011,1,
122431,353,4968,19,1908, 12522347,4358,1,348,5028,
122441,353,4309,1,354, 1252319,2131,1,348,4358,
122454969,19,2030,1,354, 125241,349,5029,19,1965,
122464309,1,355,4970,19, 125251,349,4358,1,350,
122471960,1,355,4309,1, 125265030,19,2126,1,350,
12248356,4971,19,2025,1, 125274358,1,351,5031,19,
12249356,4309,1,357,4972, 125282121,1,351,4358,1,
1225019,2020,1,357,4309, 12529352,5032,19,2116,1,
122511,358,4973,19,2015, 12530352,4358,1,353,5033,
122521,358,4309,1,359, 1253119,2111,1,353,4364,
122534974,19,2010,1,359, 125321,354,5034,19,2106,
122544315,1,360,4975,19, 125331,354,4364,1,355,
122552005,1,360,4315,1, 125345035,19,2100,1,355,
12256361,4976,19,2000,1, 125354370,1,356,5036,19,
12257361,4315,1,362,4977, 125361956,1,356,4370,1,
1225819,1994,1,362,4321, 12537357,5037,19,2094,1,
122591,363,4978,19,4979, 12538357,4370,1,358,5038,
122604,50,65,0,114, 1253919,2089,1,358,4370,
122610,103,0,117,0, 125401,359,5039,19,2084,
12262109,0,101,0,110, 125411,359,4370,1,360,
122630,116,0,68,0, 125425040,19,1949,1,360,
12264101,0,99,0,108, 125434370,1,361,5041,19,
122650,97,0,114,0, 125442078,1,361,4370,1,
1226697,0,116,0,105, 12545362,5042,19,2003,1,
122670,111,0,110,0, 12546362,4370,1,363,5043,
1226876,0,105,0,115, 1254719,2073,1,363,4370,
122690,116,0,95,0, 125481,364,5044,19,2068,
1227051,0,1,363,4221, 125491,364,4370,1,365,
122711,364,4980,19,4981, 125505045,19,2063,1,365,
122724,28,65,0,114, 125514376,1,366,5046,19,
122730,103,0,117,0, 125522058,1,366,4376,1,
12274109,0,101,0,110, 12553367,5047,19,2053,1,
122750,116,0,76,0, 12554367,4376,1,368,5048,
12276105,0,115,0,116, 1255519,2047,1,368,4382,
122770,95,0,51,0, 125561,369,5049,19,2041,
122781,364,4602,1,365, 125571,369,4388,1,370,
122794982,19,4983,4,50, 125585050,19,5051,4,50,
1228065,0,114,0,103, 1255965,0,114,0,103,
122810,117,0,109,0, 125600,117,0,109,0,
12282101,0,110,0,116, 12561101,0,110,0,116,
@@ -12286,17 +12565,29 @@ public yyLSLSyntax
12286116,0,105,0,111, 12565116,0,105,0,111,
122870,110,0,76,0, 125660,110,0,76,0,
12288105,0,115,0,116, 12567105,0,115,0,116,
122890,95,0,52,0, 125680,95,0,51,0,
122901,365,4221,1,366, 125691,370,4276,1,371,
122914984,19,4985,4,28, 125705052,19,5053,4,28,
1229265,0,114,0,103, 1257165,0,114,0,103,
122930,117,0,109,0, 125720,117,0,109,0,
12294101,0,110,0,116, 12573101,0,110,0,116,
122950,76,0,105,0, 125740,76,0,105,0,
12296115,0,116,0,95, 12575115,0,116,0,95,
122970,52,0,1,366, 125760,51,0,1,371,
122984602,1,367,4986,19, 125774670,1,372,5054,19,
122994987,4,50,65,0, 125785055,4,50,65,0,
12579114,0,103,0,117,
125800,109,0,101,0,
12581110,0,116,0,68,
125820,101,0,99,0,
12583108,0,97,0,114,
125840,97,0,116,0,
12585105,0,111,0,110,
125860,76,0,105,0,
12587115,0,116,0,95,
125880,52,0,1,372,
125894276,1,373,5056,19,
125905057,4,50,65,0,
12300114,0,103,0,117, 12591114,0,103,0,117,
123010,109,0,101,0, 125920,109,0,101,0,
12302110,0,116,0,68, 12593110,0,116,0,68,
@@ -12306,10 +12597,19 @@ public yyLSLSyntax
12306105,0,111,0,110, 12597105,0,111,0,110,
123070,76,0,105,0, 125980,76,0,105,0,
12308115,0,116,0,95, 12599115,0,116,0,95,
123090,53,0,1,367, 126000,53,0,1,373,
123104221,2,0,0}; 126014276,1,374,5058,19,
126025059,4,28,65,0,
12603114,0,103,0,117,
126040,109,0,101,0,
12605110,0,116,0,76,
126060,105,0,115,0,
12607116,0,95,0,52,
126080,1,374,4670,2,
126090,0};
12311new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); 12610new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory));
12312new Sfactory(this,"VectorArgStateEvent",new SCreator(VectorArgStateEvent_factory)); 12611new Sfactory(this,"VectorArgStateEvent",new SCreator(VectorArgStateEvent_factory));
12612new Sfactory(this,"IntVecVecArgStateEvent",new SCreator(IntVecVecArgStateEvent_factory));
12313new Sfactory(this,"IntArgStateEvent_1",new SCreator(IntArgStateEvent_1_factory)); 12613new Sfactory(this,"IntArgStateEvent_1",new SCreator(IntArgStateEvent_1_factory));
12314new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory)); 12614new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory));
12315new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); 12615new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory));
@@ -12384,14 +12684,15 @@ new Sfactory(this,"SimpleAssignment_13",new SCreator(SimpleAssignment_13_factory
12384new Sfactory(this,"JumpLabel",new SCreator(JumpLabel_factory)); 12684new Sfactory(this,"JumpLabel",new SCreator(JumpLabel_factory));
12385new Sfactory(this,"SimpleAssignment_15",new SCreator(SimpleAssignment_15_factory)); 12685new Sfactory(this,"SimpleAssignment_15",new SCreator(SimpleAssignment_15_factory));
12386new Sfactory(this,"StateBody_10",new SCreator(StateBody_10_factory)); 12686new Sfactory(this,"StateBody_10",new SCreator(StateBody_10_factory));
12387new Sfactory(this,"StateBody_11",new SCreator(StateBody_11_factory)); 12687new Sfactory(this,"IntVecVecArgEvent",new SCreator(IntVecVecArgEvent_factory));
12388new Sfactory(this,"StateBody_12",new SCreator(StateBody_12_factory)); 12688new Sfactory(this,"StateBody_12",new SCreator(StateBody_12_factory));
12389new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory)); 12689new Sfactory(this,"StateBody_14",new SCreator(StateBody_14_factory));
12390new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); 12690new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory));
12391new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); 12691new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory));
12392new Sfactory(this,"VoidArgEvent_4",new SCreator(VoidArgEvent_4_factory)); 12692new Sfactory(this,"VoidArgEvent_4",new SCreator(VoidArgEvent_4_factory));
12393new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); 12693new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory));
12394new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); 12694new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory));
12695new Sfactory(this,"IntVecVecArgEvent_1",new SCreator(IntVecVecArgEvent_1_factory));
12395new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); 12696new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory));
12396new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory)); 12697new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory));
12397new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory)); 12698new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory));
@@ -12408,6 +12709,7 @@ new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclara
12408new Sfactory(this,"IntArgumentDeclarationList_1",new SCreator(IntArgumentDeclarationList_1_factory)); 12709new Sfactory(this,"IntArgumentDeclarationList_1",new SCreator(IntArgumentDeclarationList_1_factory));
12409new Sfactory(this,"IntDeclaration_1",new SCreator(IntDeclaration_1_factory)); 12710new Sfactory(this,"IntDeclaration_1",new SCreator(IntDeclaration_1_factory));
12410new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); 12711new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory));
12712new Sfactory(this,"IntVecVecArgumentDeclarationList",new SCreator(IntVecVecArgumentDeclarationList_factory));
12411new Sfactory(this,"VectorArgumentDeclarationList_1",new SCreator(VectorArgumentDeclarationList_1_factory)); 12713new Sfactory(this,"VectorArgumentDeclarationList_1",new SCreator(VectorArgumentDeclarationList_1_factory));
12412new Sfactory(this,"KeyArgumentDeclarationList",new SCreator(KeyArgumentDeclarationList_factory)); 12714new Sfactory(this,"KeyArgumentDeclarationList",new SCreator(KeyArgumentDeclarationList_factory));
12413new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); 12715new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory));
@@ -12436,6 +12738,7 @@ new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory));
12436new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory)); 12738new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory));
12437new Sfactory(this,"Constant",new SCreator(Constant_factory)); 12739new Sfactory(this,"Constant",new SCreator(Constant_factory));
12438new Sfactory(this,"State",new SCreator(State_factory)); 12740new Sfactory(this,"State",new SCreator(State_factory));
12741new Sfactory(this,"StateBody_13",new SCreator(StateBody_13_factory));
12439new Sfactory(this,"KeyArgStateEvent_1",new SCreator(KeyArgStateEvent_1_factory)); 12742new Sfactory(this,"KeyArgStateEvent_1",new SCreator(KeyArgStateEvent_1_factory));
12440new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory)); 12743new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory));
12441new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); 12744new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory));
@@ -12446,8 +12749,9 @@ new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDecla
12446new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory)); 12749new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory));
12447new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory)); 12750new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory));
12448new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory)); 12751new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory));
12449new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory)); 12752new Sfactory(this,"StateBody_11",new SCreator(StateBody_11_factory));
12450new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); 12753new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory));
12754new Sfactory(this,"IntVecVecArgStateEvent_1",new SCreator(IntVecVecArgStateEvent_1_factory));
12451new Sfactory(this,"KeyDeclaration",new SCreator(KeyDeclaration_factory)); 12755new Sfactory(this,"KeyDeclaration",new SCreator(KeyDeclaration_factory));
12452new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); 12756new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory));
12453new Sfactory(this,"IntArgEvent_10",new SCreator(IntArgEvent_10_factory)); 12757new Sfactory(this,"IntArgEvent_10",new SCreator(IntArgEvent_10_factory));
@@ -12475,7 +12779,7 @@ new Sfactory(this,"Event_7",new SCreator(Event_7_factory));
12475new Sfactory(this,"Event_8",new SCreator(Event_8_factory)); 12779new Sfactory(this,"Event_8",new SCreator(Event_8_factory));
12476new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory)); 12780new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory));
12477new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory)); 12781new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory));
12478new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory)); 12782new Sfactory(this,"IntVecVecArgumentDeclarationList_1",new SCreator(IntVecVecArgumentDeclarationList_1_factory));
12479new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); 12783new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory));
12480new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); 12784new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory));
12481new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); 12785new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory));
@@ -12498,6 +12802,7 @@ new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory));
12498new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); 12802new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory));
12499new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory)); 12803new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory));
12500new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); 12804new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory));
12805new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory));
12501new Sfactory(this,"SimpleAssignment_19",new SCreator(SimpleAssignment_19_factory)); 12806new Sfactory(this,"SimpleAssignment_19",new SCreator(SimpleAssignment_19_factory));
12502new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory)); 12807new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory));
12503new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory)); 12808new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory));
@@ -12517,10 +12822,11 @@ new Sfactory(this,"StateBody_7",new SCreator(StateBody_7_factory));
12517new Sfactory(this,"StateBody_8",new SCreator(StateBody_8_factory)); 12822new Sfactory(this,"StateBody_8",new SCreator(StateBody_8_factory));
12518new Sfactory(this,"StateBody_9",new SCreator(StateBody_9_factory)); 12823new Sfactory(this,"StateBody_9",new SCreator(StateBody_9_factory));
12519new Sfactory(this,"Statement",new SCreator(Statement_factory)); 12824new Sfactory(this,"Statement",new SCreator(Statement_factory));
12825new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory));
12520new Sfactory(this,"JumpStatement",new SCreator(JumpStatement_factory)); 12826new Sfactory(this,"JumpStatement",new SCreator(JumpStatement_factory));
12521new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory)); 12827new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory));
12522new Sfactory(this,"IntArgEvent",new SCreator(IntArgEvent_factory)); 12828new Sfactory(this,"IntArgEvent",new SCreator(IntArgEvent_factory));
12523new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory)); 12829new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory));
12524new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory)); 12830new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory));
12525new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory)); 12831new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory));
12526new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); 12832new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory));
@@ -12529,7 +12835,7 @@ new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory))
12529new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); 12835new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory));
12530new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); 12836new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory));
12531new Sfactory(this,"VectorDeclaration",new SCreator(VectorDeclaration_factory)); 12837new Sfactory(this,"VectorDeclaration",new SCreator(VectorDeclaration_factory));
12532new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); 12838new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory));
12533new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory)); 12839new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory));
12534new Sfactory(this,"VoidArgEvent_6",new SCreator(VoidArgEvent_6_factory)); 12840new Sfactory(this,"VoidArgEvent_6",new SCreator(VoidArgEvent_6_factory));
12535new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); 12841new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory));
@@ -12583,6 +12889,7 @@ new Sfactory(this,"VoidArgStateEvent",new SCreator(VoidArgStateEvent_factory));
12583} 12889}
12584public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } 12890public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); }
12585public static object VectorArgStateEvent_factory(Parser yyp) { return new VectorArgStateEvent(yyp); } 12891public static object VectorArgStateEvent_factory(Parser yyp) { return new VectorArgStateEvent(yyp); }
12892public static object IntVecVecArgStateEvent_factory(Parser yyp) { return new IntVecVecArgStateEvent(yyp); }
12586public static object IntArgStateEvent_1_factory(Parser yyp) { return new IntArgStateEvent_1(yyp); } 12893public static object IntArgStateEvent_1_factory(Parser yyp) { return new IntArgStateEvent_1(yyp); }
12587public static object SimpleAssignment_9_factory(Parser yyp) { return new SimpleAssignment_9(yyp); } 12894public static object SimpleAssignment_9_factory(Parser yyp) { return new SimpleAssignment_9(yyp); }
12588public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); } 12895public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); }
@@ -12657,14 +12964,15 @@ public static object SimpleAssignment_13_factory(Parser yyp) { return new Simple
12657public static object JumpLabel_factory(Parser yyp) { return new JumpLabel(yyp); } 12964public static object JumpLabel_factory(Parser yyp) { return new JumpLabel(yyp); }
12658public static object SimpleAssignment_15_factory(Parser yyp) { return new SimpleAssignment_15(yyp); } 12965public static object SimpleAssignment_15_factory(Parser yyp) { return new SimpleAssignment_15(yyp); }
12659public static object StateBody_10_factory(Parser yyp) { return new StateBody_10(yyp); } 12966public static object StateBody_10_factory(Parser yyp) { return new StateBody_10(yyp); }
12660public static object StateBody_11_factory(Parser yyp) { return new StateBody_11(yyp); } 12967public static object IntVecVecArgEvent_factory(Parser yyp) { return new IntVecVecArgEvent(yyp); }
12661public static object StateBody_12_factory(Parser yyp) { return new StateBody_12(yyp); } 12968public static object StateBody_12_factory(Parser yyp) { return new StateBody_12(yyp); }
12662public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); } 12969public static object StateBody_14_factory(Parser yyp) { return new StateBody_14(yyp); }
12663public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } 12970public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); }
12664public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } 12971public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); }
12665public static object VoidArgEvent_4_factory(Parser yyp) { return new VoidArgEvent_4(yyp); } 12972public static object VoidArgEvent_4_factory(Parser yyp) { return new VoidArgEvent_4(yyp); }
12666public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } 12973public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); }
12667public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } 12974public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); }
12975public static object IntVecVecArgEvent_1_factory(Parser yyp) { return new IntVecVecArgEvent_1(yyp); }
12668public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } 12976public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); }
12669public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); } 12977public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); }
12670public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); } 12978public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); }
@@ -12681,6 +12989,7 @@ public static object GlobalVariableDeclaration_factory(Parser yyp) { return new
12681public static object IntArgumentDeclarationList_1_factory(Parser yyp) { return new IntArgumentDeclarationList_1(yyp); } 12989public static object IntArgumentDeclarationList_1_factory(Parser yyp) { return new IntArgumentDeclarationList_1(yyp); }
12682public static object IntDeclaration_1_factory(Parser yyp) { return new IntDeclaration_1(yyp); } 12990public static object IntDeclaration_1_factory(Parser yyp) { return new IntDeclaration_1(yyp); }
12683public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } 12991public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); }
12992public static object IntVecVecArgumentDeclarationList_factory(Parser yyp) { return new IntVecVecArgumentDeclarationList(yyp); }
12684public static object VectorArgumentDeclarationList_1_factory(Parser yyp) { return new VectorArgumentDeclarationList_1(yyp); } 12993public static object VectorArgumentDeclarationList_1_factory(Parser yyp) { return new VectorArgumentDeclarationList_1(yyp); }
12685public static object KeyArgumentDeclarationList_factory(Parser yyp) { return new KeyArgumentDeclarationList(yyp); } 12994public static object KeyArgumentDeclarationList_factory(Parser yyp) { return new KeyArgumentDeclarationList(yyp); }
12686public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } 12995public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); }
@@ -12709,6 +13018,7 @@ public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentLis
12709public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); } 13018public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); }
12710public static object Constant_factory(Parser yyp) { return new Constant(yyp); } 13019public static object Constant_factory(Parser yyp) { return new Constant(yyp); }
12711public static object State_factory(Parser yyp) { return new State(yyp); } 13020public static object State_factory(Parser yyp) { return new State(yyp); }
13021public static object StateBody_13_factory(Parser yyp) { return new StateBody_13(yyp); }
12712public static object KeyArgStateEvent_1_factory(Parser yyp) { return new KeyArgStateEvent_1(yyp); } 13022public static object KeyArgStateEvent_1_factory(Parser yyp) { return new KeyArgStateEvent_1(yyp); }
12713public static object SimpleAssignment_8_factory(Parser yyp) { return new SimpleAssignment_8(yyp); } 13023public static object SimpleAssignment_8_factory(Parser yyp) { return new SimpleAssignment_8(yyp); }
12714public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } 13024public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); }
@@ -12719,8 +13029,9 @@ public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return ne
12719public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); } 13029public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); }
12720public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); } 13030public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); }
12721public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); } 13031public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); }
12722public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); } 13032public static object StateBody_11_factory(Parser yyp) { return new StateBody_11(yyp); }
12723public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } 13033public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); }
13034public static object IntVecVecArgStateEvent_1_factory(Parser yyp) { return new IntVecVecArgStateEvent_1(yyp); }
12724public static object KeyDeclaration_factory(Parser yyp) { return new KeyDeclaration(yyp); } 13035public static object KeyDeclaration_factory(Parser yyp) { return new KeyDeclaration(yyp); }
12725public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } 13036public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); }
12726public static object IntArgEvent_10_factory(Parser yyp) { return new IntArgEvent_10(yyp); } 13037public static object IntArgEvent_10_factory(Parser yyp) { return new IntArgEvent_10(yyp); }
@@ -12748,7 +13059,7 @@ public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); }
12748public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); } 13059public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); }
12749public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); } 13060public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); }
12750public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); } 13061public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); }
12751public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); } 13062public static object IntVecVecArgumentDeclarationList_1_factory(Parser yyp) { return new IntVecVecArgumentDeclarationList_1(yyp); }
12752public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } 13063public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); }
12753public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } 13064public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); }
12754public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } 13065public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); }
@@ -12771,6 +13082,7 @@ public static object Statement_10_factory(Parser yyp) { return new Statement_10(
12771public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } 13082public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); }
12772public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); } 13083public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); }
12773public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } 13084public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); }
13085public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); }
12774public static object SimpleAssignment_19_factory(Parser yyp) { return new SimpleAssignment_19(yyp); } 13086public static object SimpleAssignment_19_factory(Parser yyp) { return new SimpleAssignment_19(yyp); }
12775public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); } 13087public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); }
12776public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); } 13088public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); }
@@ -12790,10 +13102,11 @@ public static object StateBody_7_factory(Parser yyp) { return new StateBody_7(yy
12790public static object StateBody_8_factory(Parser yyp) { return new StateBody_8(yyp); } 13102public static object StateBody_8_factory(Parser yyp) { return new StateBody_8(yyp); }
12791public static object StateBody_9_factory(Parser yyp) { return new StateBody_9(yyp); } 13103public static object StateBody_9_factory(Parser yyp) { return new StateBody_9(yyp); }
12792public static object Statement_factory(Parser yyp) { return new Statement(yyp); } 13104public static object Statement_factory(Parser yyp) { return new Statement(yyp); }
13105public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); }
12793public static object JumpStatement_factory(Parser yyp) { return new JumpStatement(yyp); } 13106public static object JumpStatement_factory(Parser yyp) { return new JumpStatement(yyp); }
12794public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); } 13107public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); }
12795public static object IntArgEvent_factory(Parser yyp) { return new IntArgEvent(yyp); } 13108public static object IntArgEvent_factory(Parser yyp) { return new IntArgEvent(yyp); }
12796public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); } 13109public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); }
12797public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); } 13110public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); }
12798public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); } 13111public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); }
12799public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } 13112public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); }
@@ -12802,7 +13115,7 @@ public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryE
12802public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } 13115public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); }
12803public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } 13116public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); }
12804public static object VectorDeclaration_factory(Parser yyp) { return new VectorDeclaration(yyp); } 13117public static object VectorDeclaration_factory(Parser yyp) { return new VectorDeclaration(yyp); }
12805public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } 13118public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); }
12806public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); } 13119public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); }
12807public static object VoidArgEvent_6_factory(Parser yyp) { return new VoidArgEvent_6(yyp); } 13120public static object VoidArgEvent_6_factory(Parser yyp) { return new VoidArgEvent_6(yyp); }
12808public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } 13121public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); }