aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorHomer Horwitz2008-12-07 19:20:45 +0000
committerHomer Horwitz2008-12-07 19:20:45 +0000
commit7083be07b0d94f626154aef603f06e55e8045b40 (patch)
treec126f267f86354c68ad72b9efd477d8eebbab4fb
parent* Tweaks physics so that linked prim are a single body. This will make linke... (diff)
downloadopensim-SC_OLD-7083be07b0d94f626154aef603f06e55e8045b40.zip
opensim-SC_OLD-7083be07b0d94f626154aef603f06e55e8045b40.tar.gz
opensim-SC_OLD-7083be07b0d94f626154aef603f06e55e8045b40.tar.bz2
opensim-SC_OLD-7083be07b0d94f626154aef603f06e55e8045b40.tar.xz
Allow empty statements in LSL (; followed by ;). Fixes Mantis#2320
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs15400
-rw-r--r--bin/Tools.dllbin153600 -> 153088 bytes
2 files changed, 7735 insertions, 7665 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
index bfc1afc..49a507f 100644
--- a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs
@@ -253,11 +253,24 @@ public class Statement : SYMBOL{
253 public Statement (Parser yyp, JumpStatement js ):base(((LSLSyntax 253 public Statement (Parser yyp, JumpStatement js ):base(((LSLSyntax
254)yyp)){ kids . Add ( js ); 254)yyp)){ kids . Add ( js );
255} 255}
256 public Statement (Parser yyp, EmptyStatement es ):base(((LSLSyntax
257)yyp)){ kids . Add ( es );
258}
256 259
257public override string yyname { get { return "Statement"; }} 260public override string yyname { get { return "Statement"; }}
258public override int yynum { get { return 109; }} 261public override int yynum { get { return 109; }}
259public Statement(Parser yyp):base(yyp){}} 262public Statement(Parser yyp):base(yyp){}}
260//%+Assignment+110 263//%+EmptyStatement+110
264public class EmptyStatement : SYMBOL{
265 public EmptyStatement (Parser yyp):base(((LSLSyntax
266)yyp)){}
267 public override string ToString (){ return base . ToString ();
268}
269
270public override string yyname { get { return "EmptyStatement"; }}
271public override int yynum { get { return 110; }}
272}
273//%+Assignment+111
261public class Assignment : SYMBOL{ 274public class Assignment : SYMBOL{
262 protected string m_assignmentType ; 275 protected string m_assignmentType ;
263 public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax 276 public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax
@@ -277,9 +290,9 @@ public class Assignment : SYMBOL{
277} 290}
278 291
279public override string yyname { get { return "Assignment"; }} 292public override string yyname { get { return "Assignment"; }}
280public override int yynum { get { return 110; }} 293public override int yynum { get { return 111; }}
281public Assignment(Parser yyp):base(yyp){}} 294public Assignment(Parser yyp):base(yyp){}}
282//%+SimpleAssignment+111 295//%+SimpleAssignment+112
283public class SimpleAssignment : Assignment{ 296public class SimpleAssignment : Assignment{
284 public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax 297 public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax
285)yyp)){ m_assignmentType = assignmentType ; 298)yyp)){ m_assignmentType = assignmentType ;
@@ -289,9 +302,9 @@ public class SimpleAssignment : Assignment{
289} 302}
290 303
291public override string yyname { get { return "SimpleAssignment"; }} 304public override string yyname { get { return "SimpleAssignment"; }}
292public override int yynum { get { return 111; }} 305public override int yynum { get { return 112; }}
293public SimpleAssignment(Parser yyp):base(yyp){}} 306public SimpleAssignment(Parser yyp):base(yyp){}}
294//%+ReturnStatement+112 307//%+ReturnStatement+113
295public class ReturnStatement : SYMBOL{ 308public class ReturnStatement : SYMBOL{
296 public ReturnStatement (Parser yyp):base(((LSLSyntax 309 public ReturnStatement (Parser yyp):base(((LSLSyntax
297)yyp)){} 310)yyp)){}
@@ -301,9 +314,9 @@ public class ReturnStatement : SYMBOL{
301} 314}
302 315
303public override string yyname { get { return "ReturnStatement"; }} 316public override string yyname { get { return "ReturnStatement"; }}
304public override int yynum { get { return 112; }} 317public override int yynum { get { return 113; }}
305} 318}
306//%+JumpLabel+113 319//%+JumpLabel+114
307public class JumpLabel : SYMBOL{ 320public class JumpLabel : SYMBOL{
308 private string m_labelName ; 321 private string m_labelName ;
309 public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax 322 public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax
@@ -316,9 +329,9 @@ public class JumpLabel : SYMBOL{
316} 329}
317 330
318public override string yyname { get { return "JumpLabel"; }} 331public override string yyname { get { return "JumpLabel"; }}
319public override int yynum { get { return 113; }} 332public override int yynum { get { return 114; }}
320public JumpLabel(Parser yyp):base(yyp){}} 333public JumpLabel(Parser yyp):base(yyp){}}
321//%+JumpStatement+114 334//%+JumpStatement+115
322public class JumpStatement : SYMBOL{ 335public class JumpStatement : SYMBOL{
323 private string m_targetName ; 336 private string m_targetName ;
324 public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax 337 public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax
@@ -331,9 +344,9 @@ public class JumpStatement : SYMBOL{
331} 344}
332 345
333public override string yyname { get { return "JumpStatement"; }} 346public override string yyname { get { return "JumpStatement"; }}
334public override int yynum { get { return 114; }} 347public override int yynum { get { return 115; }}
335public JumpStatement(Parser yyp):base(yyp){}} 348public JumpStatement(Parser yyp):base(yyp){}}
336//%+StateChange+115 349//%+StateChange+116
337public class StateChange : SYMBOL{ 350public class StateChange : SYMBOL{
338 private string m_newState ; 351 private string m_newState ;
339 public StateChange (Parser yyp, string newState ):base(((LSLSyntax 352 public StateChange (Parser yyp, string newState ):base(((LSLSyntax
@@ -344,9 +357,9 @@ public class StateChange : SYMBOL{
344} 357}
345 358
346public override string yyname { get { return "StateChange"; }} 359public override string yyname { get { return "StateChange"; }}
347public override int yynum { get { return 115; }} 360public override int yynum { get { return 116; }}
348public StateChange(Parser yyp):base(yyp){}} 361public StateChange(Parser yyp):base(yyp){}}
349//%+IfStatement+116 362//%+IfStatement+117
350public class IfStatement : SYMBOL{ 363public class IfStatement : SYMBOL{
351 private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); 364 private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ());
352 else kids . Add ( s ); 365 else kids . Add ( s );
@@ -363,9 +376,9 @@ public class IfStatement : SYMBOL{
363} 376}
364 377
365public override string yyname { get { return "IfStatement"; }} 378public override string yyname { get { return "IfStatement"; }}
366public override int yynum { get { return 116; }} 379public override int yynum { get { return 117; }}
367public IfStatement(Parser yyp):base(yyp){}} 380public IfStatement(Parser yyp):base(yyp){}}
368//%+WhileStatement+117 381//%+WhileStatement+118
369public class WhileStatement : SYMBOL{ 382public class WhileStatement : SYMBOL{
370 public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax 383 public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax
371)yyp)){ kids . Add ( s ); 384)yyp)){ kids . Add ( s );
@@ -374,9 +387,9 @@ public class WhileStatement : SYMBOL{
374} 387}
375 388
376public override string yyname { get { return "WhileStatement"; }} 389public override string yyname { get { return "WhileStatement"; }}
377public override int yynum { get { return 117; }} 390public override int yynum { get { return 118; }}
378public WhileStatement(Parser yyp):base(yyp){}} 391public WhileStatement(Parser yyp):base(yyp){}}
379//%+DoWhileStatement+118 392//%+DoWhileStatement+119
380public class DoWhileStatement : SYMBOL{ 393public class DoWhileStatement : SYMBOL{
381 public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax 394 public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax
382)yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ()); 395)yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ());
@@ -385,9 +398,9 @@ public class DoWhileStatement : SYMBOL{
385} 398}
386 399
387public override string yyname { get { return "DoWhileStatement"; }} 400public override string yyname { get { return "DoWhileStatement"; }}
388public override int yynum { get { return 118; }} 401public override int yynum { get { return 119; }}
389public DoWhileStatement(Parser yyp):base(yyp){}} 402public DoWhileStatement(Parser yyp):base(yyp){}}
390//%+ForLoop+119 403//%+ForLoop+120
391public class ForLoop : SYMBOL{ 404public class ForLoop : SYMBOL{
392 public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax 405 public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax
393)yyp)){ kids . Add ( flsa ); 406)yyp)){ kids . Add ( flsa );
@@ -398,9 +411,9 @@ public class ForLoop : SYMBOL{
398} 411}
399 412
400public override string yyname { get { return "ForLoop"; }} 413public override string yyname { get { return "ForLoop"; }}
401public override int yynum { get { return 119; }} 414public override int yynum { get { return 120; }}
402public ForLoop(Parser yyp):base(yyp){}} 415public ForLoop(Parser yyp):base(yyp){}}
403//%+ForLoopStatement+120 416//%+ForLoopStatement+121
404public class ForLoopStatement : SYMBOL{ 417public class ForLoopStatement : SYMBOL{
405 public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax 418 public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax
406)yyp)){ kids . Add ( e ); 419)yyp)){ kids . Add ( e );
@@ -418,9 +431,9 @@ public class ForLoopStatement : SYMBOL{
418} 431}
419 432
420public override string yyname { get { return "ForLoopStatement"; }} 433public override string yyname { get { return "ForLoopStatement"; }}
421public override int yynum { get { return 120; }} 434public override int yynum { get { return 121; }}
422public ForLoopStatement(Parser yyp):base(yyp){}} 435public ForLoopStatement(Parser yyp):base(yyp){}}
423//%+FunctionCall+121 436//%+FunctionCall+122
424public class FunctionCall : SYMBOL{ 437public class FunctionCall : SYMBOL{
425 private string m_id ; 438 private string m_id ;
426 public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax 439 public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax
@@ -434,9 +447,9 @@ public class FunctionCall : SYMBOL{
434} 447}
435 448
436public override string yyname { get { return "FunctionCall"; }} 449public override string yyname { get { return "FunctionCall"; }}
437public override int yynum { get { return 121; }} 450public override int yynum { get { return 122; }}
438public FunctionCall(Parser yyp):base(yyp){}} 451public FunctionCall(Parser yyp):base(yyp){}}
439//%+ArgumentList+122 452//%+ArgumentList+123
440public class ArgumentList : SYMBOL{ 453public class ArgumentList : SYMBOL{
441 public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax 454 public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax
442)yyp)){ AddArgument ( a ); 455)yyp)){ AddArgument ( a );
@@ -450,14 +463,14 @@ public class ArgumentList : SYMBOL{
450} 463}
451 464
452public override string yyname { get { return "ArgumentList"; }} 465public override string yyname { get { return "ArgumentList"; }}
453public override int yynum { get { return 122; }} 466public override int yynum { get { return 123; }}
454public ArgumentList(Parser yyp):base(yyp){}} 467public ArgumentList(Parser yyp):base(yyp){}}
455//%+Argument+123 468//%+Argument+124
456public class Argument : SYMBOL{ 469public class Argument : SYMBOL{
457public override string yyname { get { return "Argument"; }} 470public override string yyname { get { return "Argument"; }}
458public override int yynum { get { return 123; }} 471public override int yynum { get { return 124; }}
459public Argument(Parser yyp):base(yyp){}} 472public Argument(Parser yyp):base(yyp){}}
460//%+ExpressionArgument+124 473//%+ExpressionArgument+125
461public class ExpressionArgument : Argument{ 474public class ExpressionArgument : Argument{
462 public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax 475 public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax
463)yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); 476)yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ());
@@ -465,9 +478,9 @@ public class ExpressionArgument : Argument{
465} 478}
466 479
467public override string yyname { get { return "ExpressionArgument"; }} 480public override string yyname { get { return "ExpressionArgument"; }}
468public override int yynum { get { return 124; }} 481public override int yynum { get { return 125; }}
469public ExpressionArgument(Parser yyp):base(yyp){}} 482public ExpressionArgument(Parser yyp):base(yyp){}}
470//%+Constant+125 483//%+Constant+126
471public class Constant : SYMBOL{ 484public class Constant : SYMBOL{
472 private string m_type ; 485 private string m_type ;
473 private string m_val ; 486 private string m_val ;
@@ -489,9 +502,9 @@ public class Constant : SYMBOL{
489} 502}
490 503
491public override string yyname { get { return "Constant"; }} 504public override string yyname { get { return "Constant"; }}
492public override int yynum { get { return 125; }} 505public override int yynum { get { return 126; }}
493public Constant(Parser yyp):base(yyp){}} 506public Constant(Parser yyp):base(yyp){}}
494//%+VectorConstant+126 507//%+VectorConstant+127
495public class VectorConstant : Constant{ 508public class VectorConstant : Constant{
496 public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax 509 public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax
497)yyp),"vector", null ){ kids . Add ( valX ); 510)yyp),"vector", null ){ kids . Add ( valX );
@@ -500,9 +513,9 @@ public class VectorConstant : Constant{
500} 513}
501 514
502public override string yyname { get { return "VectorConstant"; }} 515public override string yyname { get { return "VectorConstant"; }}
503public override int yynum { get { return 126; }} 516public override int yynum { get { return 127; }}
504public VectorConstant(Parser yyp):base(yyp){}} 517public VectorConstant(Parser yyp):base(yyp){}}
505//%+RotationConstant+127 518//%+RotationConstant+128
506public class RotationConstant : Constant{ 519public class RotationConstant : Constant{
507 public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax 520 public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax
508)yyp),"rotation", null ){ kids . Add ( valX ); 521)yyp),"rotation", null ){ kids . Add ( valX );
@@ -512,36 +525,36 @@ public class RotationConstant : Constant{
512} 525}
513 526
514public override string yyname { get { return "RotationConstant"; }} 527public override string yyname { get { return "RotationConstant"; }}
515public override int yynum { get { return 127; }} 528public override int yynum { get { return 128; }}
516public RotationConstant(Parser yyp):base(yyp){}} 529public RotationConstant(Parser yyp):base(yyp){}}
517//%+ListConstant+128 530//%+ListConstant+129
518public class ListConstant : Constant{ 531public class ListConstant : Constant{
519 public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax 532 public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax
520)yyp),"list", null ){ kids . Add ( al ); 533)yyp),"list", null ){ kids . Add ( al );
521} 534}
522 535
523public override string yyname { get { return "ListConstant"; }} 536public override string yyname { get { return "ListConstant"; }}
524public override int yynum { get { return 128; }} 537public override int yynum { get { return 129; }}
525public ListConstant(Parser yyp):base(yyp){}} 538public ListConstant(Parser yyp):base(yyp){}}
526//%+Expression+129 539//%+Expression+130
527public class Expression : SYMBOL{ 540public class Expression : SYMBOL{
528 protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); 541 protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ());
529 else kids . Add ( e ); 542 else kids . Add ( e );
530} 543}
531 544
532public override string yyname { get { return "Expression"; }} 545public override string yyname { get { return "Expression"; }}
533public override int yynum { get { return 129; }} 546public override int yynum { get { return 130; }}
534public Expression(Parser yyp):base(yyp){}} 547public Expression(Parser yyp):base(yyp){}}
535//%+ConstantExpression+130 548//%+ConstantExpression+131
536public class ConstantExpression : Expression{ 549public class ConstantExpression : Expression{
537 public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax 550 public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax
538)yyp)){ kids . Add ( c ); 551)yyp)){ kids . Add ( c );
539} 552}
540 553
541public override string yyname { get { return "ConstantExpression"; }} 554public override string yyname { get { return "ConstantExpression"; }}
542public override int yynum { get { return 130; }} 555public override int yynum { get { return 131; }}
543public ConstantExpression(Parser yyp):base(yyp){}} 556public ConstantExpression(Parser yyp):base(yyp){}}
544//%+IdentExpression+131 557//%+IdentExpression+132
545public class IdentExpression : Expression{ 558public class IdentExpression : Expression{
546 protected string m_name ; 559 protected string m_name ;
547 public IdentExpression (Parser yyp, string name ):base(((LSLSyntax 560 public IdentExpression (Parser yyp, string name ):base(((LSLSyntax
@@ -554,9 +567,9 @@ public class IdentExpression : Expression{
554} 567}
555 568
556public override string yyname { get { return "IdentExpression"; }} 569public override string yyname { get { return "IdentExpression"; }}
557public override int yynum { get { return 131; }} 570public override int yynum { get { return 132; }}
558public IdentExpression(Parser yyp):base(yyp){}} 571public IdentExpression(Parser yyp):base(yyp){}}
559//%+IdentDotExpression+132 572//%+IdentDotExpression+133
560public class IdentDotExpression : IdentExpression{ 573public class IdentDotExpression : IdentExpression{
561 private string m_member ; 574 private string m_member ;
562 public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax 575 public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax
@@ -570,18 +583,18 @@ public class IdentDotExpression : IdentExpression{
570} 583}
571 584
572public override string yyname { get { return "IdentDotExpression"; }} 585public override string yyname { get { return "IdentDotExpression"; }}
573public override int yynum { get { return 132; }} 586public override int yynum { get { return 133; }}
574public IdentDotExpression(Parser yyp):base(yyp){}} 587public IdentDotExpression(Parser yyp):base(yyp){}}
575//%+FunctionCallExpression+133 588//%+FunctionCallExpression+134
576public class FunctionCallExpression : Expression{ 589public class FunctionCallExpression : Expression{
577 public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax 590 public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax
578)yyp)){ kids . Add ( fc ); 591)yyp)){ kids . Add ( fc );
579} 592}
580 593
581public override string yyname { get { return "FunctionCallExpression"; }} 594public override string yyname { get { return "FunctionCallExpression"; }}
582public override int yynum { get { return 133; }} 595public override int yynum { get { return 134; }}
583public FunctionCallExpression(Parser yyp):base(yyp){}} 596public FunctionCallExpression(Parser yyp):base(yyp){}}
584//%+BinaryExpression+134 597//%+BinaryExpression+135
585public class BinaryExpression : Expression{ 598public class BinaryExpression : Expression{
586 private string m_expressionSymbol ; 599 private string m_expressionSymbol ;
587 public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax 600 public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax
@@ -596,9 +609,9 @@ public class BinaryExpression : Expression{
596} 609}
597 610
598public override string yyname { get { return "BinaryExpression"; }} 611public override string yyname { get { return "BinaryExpression"; }}
599public override int yynum { get { return 134; }} 612public override int yynum { get { return 135; }}
600public BinaryExpression(Parser yyp):base(yyp){}} 613public BinaryExpression(Parser yyp):base(yyp){}}
601//%+UnaryExpression+135 614//%+UnaryExpression+136
602public class UnaryExpression : Expression{ 615public class UnaryExpression : Expression{
603 private string m_unarySymbol ; 616 private string m_unarySymbol ;
604 public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax 617 public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax
@@ -612,9 +625,9 @@ public class UnaryExpression : Expression{
612} 625}
613 626
614public override string yyname { get { return "UnaryExpression"; }} 627public override string yyname { get { return "UnaryExpression"; }}
615public override int yynum { get { return 135; }} 628public override int yynum { get { return 136; }}
616public UnaryExpression(Parser yyp):base(yyp){}} 629public UnaryExpression(Parser yyp):base(yyp){}}
617//%+TypecastExpression+136 630//%+TypecastExpression+137
618public class TypecastExpression : Expression{ 631public class TypecastExpression : Expression{
619 private string m_typecastType ; 632 private string m_typecastType ;
620 public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax 633 public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax
@@ -628,18 +641,18 @@ public class TypecastExpression : Expression{
628} 641}
629 642
630public override string yyname { get { return "TypecastExpression"; }} 643public override string yyname { get { return "TypecastExpression"; }}
631public override int yynum { get { return 136; }} 644public override int yynum { get { return 137; }}
632public TypecastExpression(Parser yyp):base(yyp){}} 645public TypecastExpression(Parser yyp):base(yyp){}}
633//%+ParenthesisExpression+137 646//%+ParenthesisExpression+138
634public class ParenthesisExpression : Expression{ 647public class ParenthesisExpression : Expression{
635 public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax 648 public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax
636)yyp)){ kids . Add ( s ); 649)yyp)){ kids . Add ( s );
637} 650}
638 651
639public override string yyname { get { return "ParenthesisExpression"; }} 652public override string yyname { get { return "ParenthesisExpression"; }}
640public override int yynum { get { return 137; }} 653public override int yynum { get { return 138; }}
641public ParenthesisExpression(Parser yyp):base(yyp){}} 654public ParenthesisExpression(Parser yyp):base(yyp){}}
642//%+IncrementDecrementExpression+138 655//%+IncrementDecrementExpression+139
643public class IncrementDecrementExpression : Expression{ 656public class IncrementDecrementExpression : Expression{
644 private string m_name ; 657 private string m_name ;
645 private string m_operation ; 658 private string m_operation ;
@@ -667,7 +680,7 @@ public class IncrementDecrementExpression : Expression{
667} 680}
668 681
669public override string yyname { get { return "IncrementDecrementExpression"; }} 682public override string yyname { get { return "IncrementDecrementExpression"; }}
670public override int yynum { get { return 138; }} 683public override int yynum { get { return 139; }}
671public IncrementDecrementExpression(Parser yyp):base(yyp){}} 684public IncrementDecrementExpression(Parser yyp):base(yyp){}}
672 685
673public class LSLProgramRoot_1 : LSLProgramRoot { 686public class LSLProgramRoot_1 : LSLProgramRoot {
@@ -827,63 +840,71 @@ public class StatementList_2 : StatementList {
827 ((Statement)(yyq.StackAt(0).m_value)) 840 ((Statement)(yyq.StackAt(0).m_value))
828 ){}} 841 ){}}
829 842
843public class EmptyStatement_1 : EmptyStatement {
844 public EmptyStatement_1(Parser yyq):base(yyq){}}
845
830public class Statement_1 : Statement { 846public class Statement_1 : Statement {
831 public Statement_1(Parser yyq):base(yyq, 847 public Statement_1(Parser yyq):base(yyq,
832 ((Declaration)(yyq.StackAt(1).m_value)) 848 ((EmptyStatement)(yyq.StackAt(1).m_value))
833 ){}} 849 ){}}
834 850
835public class Statement_2 : Statement { 851public class Statement_2 : Statement {
836 public Statement_2(Parser yyq):base(yyq, 852 public Statement_2(Parser yyq):base(yyq,
837 ((Assignment)(yyq.StackAt(1).m_value)) 853 ((Declaration)(yyq.StackAt(1).m_value))
838 ){}} 854 ){}}
839 855
840public class Statement_3 : Statement { 856public class Statement_3 : Statement {
841 public Statement_3(Parser yyq):base(yyq, 857 public Statement_3(Parser yyq):base(yyq,
842 ((Expression)(yyq.StackAt(1).m_value)) 858 ((Assignment)(yyq.StackAt(1).m_value))
843 ){}} 859 ){}}
844 860
845public class Statement_4 : Statement { 861public class Statement_4 : Statement {
846 public Statement_4(Parser yyq):base(yyq, 862 public Statement_4(Parser yyq):base(yyq,
847 ((ReturnStatement)(yyq.StackAt(1).m_value)) 863 ((Expression)(yyq.StackAt(1).m_value))
848 ){}} 864 ){}}
849 865
850public class Statement_5 : Statement { 866public class Statement_5 : Statement {
851 public Statement_5(Parser yyq):base(yyq, 867 public Statement_5(Parser yyq):base(yyq,
852 ((JumpLabel)(yyq.StackAt(1).m_value)) 868 ((ReturnStatement)(yyq.StackAt(1).m_value))
853 ){}} 869 ){}}
854 870
855public class Statement_6 : Statement { 871public class Statement_6 : Statement {
856 public Statement_6(Parser yyq):base(yyq, 872 public Statement_6(Parser yyq):base(yyq,
857 ((JumpStatement)(yyq.StackAt(1).m_value)) 873 ((JumpLabel)(yyq.StackAt(1).m_value))
858 ){}} 874 ){}}
859 875
860public class Statement_7 : Statement { 876public class Statement_7 : Statement {
861 public Statement_7(Parser yyq):base(yyq, 877 public Statement_7(Parser yyq):base(yyq,
862 ((StateChange)(yyq.StackAt(1).m_value)) 878 ((JumpStatement)(yyq.StackAt(1).m_value))
863 ){}} 879 ){}}
864 880
865public class Statement_8 : Statement { 881public class Statement_8 : Statement {
866 public Statement_8(Parser yyq):base(yyq, 882 public Statement_8(Parser yyq):base(yyq,
867 ((IfStatement)(yyq.StackAt(0).m_value)) 883 ((StateChange)(yyq.StackAt(1).m_value))
868 ){}} 884 ){}}
869 885
870public class Statement_9 : Statement { 886public class Statement_9 : Statement {
871 public Statement_9(Parser yyq):base(yyq, 887 public Statement_9(Parser yyq):base(yyq,
872 ((WhileStatement)(yyq.StackAt(0).m_value)) 888 ((IfStatement)(yyq.StackAt(0).m_value))
873 ){}} 889 ){}}
874 890
875public class Statement_10 : Statement { 891public class Statement_10 : Statement {
876 public Statement_10(Parser yyq):base(yyq, 892 public Statement_10(Parser yyq):base(yyq,
877 ((DoWhileStatement)(yyq.StackAt(0).m_value)) 893 ((WhileStatement)(yyq.StackAt(0).m_value))
878 ){}} 894 ){}}
879 895
880public class Statement_11 : Statement { 896public class Statement_11 : Statement {
881 public Statement_11(Parser yyq):base(yyq, 897 public Statement_11(Parser yyq):base(yyq,
882 ((ForLoop)(yyq.StackAt(0).m_value)) 898 ((DoWhileStatement)(yyq.StackAt(0).m_value))
883 ){}} 899 ){}}
884 900
885public class Statement_12 : Statement { 901public class Statement_12 : Statement {
886 public Statement_12(Parser yyq):base(yyq, 902 public Statement_12(Parser yyq):base(yyq,
903 ((ForLoop)(yyq.StackAt(0).m_value))
904 ){}}
905
906public class Statement_13 : Statement {
907 public Statement_13(Parser yyq):base(yyq,
887 ((CompoundStatement)(yyq.StackAt(0).m_value)) 908 ((CompoundStatement)(yyq.StackAt(0).m_value))
888 ){}} 909 ){}}
889 910
@@ -1931,9 +1952,6 @@ public class ArgumentDeclarationList_4 : ArgumentDeclarationList {
1931public class ArgumentDeclarationList_5 : ArgumentDeclarationList { 1952public class ArgumentDeclarationList_5 : ArgumentDeclarationList {
1932 public ArgumentDeclarationList_5(Parser yyq):base(yyq){}} 1953 public ArgumentDeclarationList_5(Parser yyq):base(yyq){}}
1933 1954
1934public class Statement_13 : Statement {
1935 public Statement_13(Parser yyq):base(yyq){}}
1936
1937public class ArgumentList_4 : ArgumentList { 1955public class ArgumentList_4 : ArgumentList {
1938 public ArgumentList_4(Parser yyq):base(yyq){}} 1956 public ArgumentList_4(Parser yyq):base(yyq){}}
1939public yyLSLSyntax 1957public yyLSLSyntax
@@ -1947,9 +1965,9 @@ public yyLSLSyntax
194797,0,109,0,82, 196597,0,109,0,82,
19480,111,0,111,0, 19660,111,0,111,0,
1949116,0,1,95,1, 1967116,0,1,95,1,
19502,104,18,1,2609, 19682,104,18,1,2610,
1951102,2,0,105,5, 1969102,2,0,105,5,
1952312,1,0,106,18, 1970313,1,0,106,18,
19531,0,0,2,0, 19711,0,0,2,0,
19541,1,107,18,1, 19721,1,107,18,1,
19551,108,20,109,4, 19731,108,20,109,4,
@@ -2054,7 +2072,7 @@ public yyLSLSyntax
20540,97,0,116,0, 20720,97,0,116,0,
2055101,0,109,0,101, 2073101,0,109,0,101,
20560,110,0,116,0, 20740,110,0,116,0,
20571,120,1,2,2, 20751,121,1,2,2,
20580,1,1695,148,18, 20760,1,1695,148,18,
20591,1695,143,2,0, 20771,1695,143,2,0,
20601,30,149,18,1, 20781,30,149,18,1,
@@ -2090,7 +2108,7 @@ public yyLSLSyntax
20900,115,0,105,0, 21080,115,0,105,0,
2091103,0,110,0,109, 2109103,0,110,0,109,
20920,101,0,110,0, 21100,101,0,110,0,
2093116,0,1,111,1, 2111116,0,1,112,1,
20942,2,0,1,1117, 21122,2,0,1,1117,
2095162,18,1,1117,163, 2113162,18,1,1117,163,
209620,164,4,28,80, 211420,164,4,28,80,
@@ -2110,7 +2128,7 @@ public yyLSLSyntax
21100,112,0,114,0, 21280,112,0,114,0,
2111101,0,115,0,115, 2129101,0,115,0,115,
21120,105,0,111,0, 21300,105,0,111,0,
2113110,0,1,129,1, 2131110,0,1,130,1,
21142,2,0,1,43, 21322,2,0,1,43,
2115170,18,1,43,171, 2133170,18,1,43,171,
211620,172,4,22,82, 213420,172,4,22,82,
@@ -2150,1532 +2168,1545 @@ public yyLSLSyntax
215018,1,51,183,2, 216818,1,51,183,2,
21510,1,52,187,18, 21690,1,52,187,18,
21521,52,135,2,0, 21701,52,135,2,0,
21531,1730,188,18,1, 21711,2281,188,18,1,
21541730,160,2,0,1, 21722281,160,2,0,1,
21551731,189,18,1,1731, 21731730,189,18,1,1730,
2156190,20,191,4,18, 2174160,2,0,1,1731,
215783,0,69,0,77, 2175190,18,1,1731,191,
21580,73,0,67,0, 217620,192,4,18,83,
215979,0,76,0,79, 21770,69,0,77,0,
21600,78,0,1,11, 217873,0,67,0,79,
21611,1,2,0,1, 21790,76,0,79,0,
216261,192,18,1,61, 218078,0,1,11,1,
2163129,2,0,1,62, 21811,2,0,1,61,
2164193,18,1,62,153, 2182193,18,1,61,129,
21652,0,1,63,194, 21832,0,1,62,194,
216618,1,63,132,2, 218418,1,62,153,2,
21670,1,65,195,18, 21850,1,63,195,18,
21681,65,176,2,0, 21861,63,132,2,0,
21691,66,196,18,1, 21871,65,196,18,1,
217066,132,2,0,1, 218865,176,2,0,1,
217167,197,18,1,67, 218966,197,18,1,66,
2172180,2,0,1,68, 2190132,2,0,1,67,
2173198,18,1,68,183, 2191198,18,1,67,180,
21742,0,1,69,199, 21922,0,1,68,199,
217518,1,69,180,2, 219318,1,68,183,2,
21760,1,70,200,18, 21940,1,69,200,18,
21771,70,183,2,0, 21951,69,180,2,0,
21781,71,201,18,1, 21961,70,201,18,1,
217971,135,2,0,1, 219770,183,2,0,1,
218073,202,18,1,73, 219871,202,18,1,71,
2181168,2,0,1,74, 2199135,2,0,1,73,
2182203,18,1,74,153, 2200203,18,1,73,168,
21832,0,1,1189,204, 22012,0,1,74,204,
218418,1,1189,205,20, 220218,1,74,153,2,
2185206,4,22,83,0, 22030,1,1189,205,18,
218684,0,65,0,82, 22041,1189,206,20,207,
21870,95,0,69,0, 22054,22,83,0,84,
218881,0,85,0,65, 22060,65,0,82,0,
21890,76,0,83,0, 220795,0,69,0,81,
21901,8,1,1,2, 22080,85,0,65,0,
21910,1,76,207,18, 220976,0,83,0,1,
21921,76,208,20,209, 22108,1,1,2,0,
21934,20,76,0,69, 22111,76,208,18,1,
21940,70,0,84,0, 221276,209,20,210,4,
219595,0,83,0,72, 221320,76,0,69,0,
21960,73,0,70,0, 221470,0,84,0,95,
219784,0,1,40,1, 22150,83,0,72,0,
21981,2,0,1,1153, 221673,0,70,0,84,
2199210,18,1,1153,211, 22170,1,40,1,1,
220020,212,4,24,83, 22182,0,1,1153,211,
22010,76,0,65,0, 221918,1,1153,212,20,
220283,0,72,0,95, 2220213,4,24,83,0,
222176,0,65,0,83,
22220,72,0,95,0,
222369,0,81,0,85,
22240,65,0,76,0,
222583,0,1,9,1,
22261,2,0,1,79,
2227214,18,1,79,215,
222820,216,4,10,84,
22290,73,0,76,0,
223068,0,69,0,1,
223136,1,1,2,0,
22321,1195,217,18,1,
22331195,168,2,0,1,
223482,218,18,1,82,
2235168,2,0,1,1123,
2236219,18,1,1123,168,
22372,0,1,85,220,
223818,1,85,221,20,
2239222,4,26,83,0,
224084,0,82,0,79,
22410,75,0,69,0,
224295,0,83,0,84,
22430,82,0,79,0,
224475,0,69,0,1,
224539,1,1,2,0,
22461,89,223,18,1,
224789,224,20,225,4,
224810,77,0,73,0,
224978,0,85,0,83,
22500,1,19,1,1,
22512,0,1,93,226,
225218,1,93,168,2,
22530,1,97,227,18,
22541,97,228,20,229,
22554,14,65,0,77,
22560,80,0,95,0,
225765,0,77,0,80,
22580,1,38,1,1,
22592,0,1,102,230,
226018,1,102,231,20,
2261232,4,22,69,0,
226288,0,67,0,76,
22630,65,0,77,0,
226465,0,84,0,73,
22650,79,0,78,0,
22661,37,1,1,2,
22670,1,1775,233,18,
22681,1775,153,2,0,
22691,107,234,18,1,
2270107,168,2,0,1,
22711224,235,18,1,1224,
2272160,2,0,1,1225,
2273236,18,1,1225,237,
227420,238,4,24,77,
22750,73,0,78,0,
227685,0,83,0,95,
22030,69,0,81,0, 22770,69,0,81,0,
220485,0,65,0,76, 227885,0,65,0,76,
22050,83,0,1,9, 22790,83,0,1,7,
22061,1,2,0,1, 22801,1,2,0,1,
220779,213,18,1,79, 2281112,239,18,1,112,
2208214,20,215,4,10, 2282240,20,241,4,28,
220984,0,73,0,76, 228371,0,82,0,69,
22100,68,0,69,0, 22840,65,0,84,0,
22111,36,1,1,2, 228569,0,82,0,95,
22120,1,1195,216,18, 22860,69,0,81,0,
22131,1195,168,2,0, 228785,0,65,0,76,
22141,82,217,18,1, 22880,83,0,1,32,
221582,168,2,0,1,
22161123,218,18,1,1123,
2217168,2,0,1,85,
2218219,18,1,85,220,
221920,221,4,26,83,
22200,84,0,82,0,
222179,0,75,0,69,
22220,95,0,83,0,
222384,0,82,0,79,
22240,75,0,69,0,
22251,39,1,1,2,
22260,1,2547,222,18,
22271,2547,223,20,224,
22284,34,67,0,111,
22290,109,0,112,0,
2230111,0,117,0,110,
22310,100,0,83,0,
2232116,0,97,0,116,
22330,101,0,109,0,
2234101,0,110,0,116,
22350,1,107,1,2,
22362,0,1,89,225,
223718,1,89,226,20,
2238227,4,10,77,0,
223973,0,78,0,85,
22400,83,0,1,19,
22411,1,2,0,1, 22891,1,2,0,1,
224293,228,18,1,93, 22901188,242,18,1,1188,
2243168,2,0,1,97, 2291160,2,0,1,1231,
2244229,18,1,97,230, 2292243,18,1,1231,168,
224520,231,4,14,65, 22932,0,1,118,244,
22460,77,0,80,0, 229418,1,118,168,2,
224795,0,65,0,77, 22950,1,1737,245,18,
22480,80,0,1,38, 22961,1737,168,2,0,
22971,124,246,18,1,
2298124,247,20,248,4,
229922,76,0,69,0,
230083,0,83,0,95,
23010,69,0,81,0,
230285,0,65,0,76,
23030,83,0,1,31,
22491,1,2,0,1, 23041,1,2,0,1,
2250102,232,18,1,102, 23052355,249,18,1,2355,
2251233,20,234,4,22, 2306250,20,251,4,18,
225269,0,88,0,67,
22530,76,0,65,0,
225477,0,65,0,84,
22550,73,0,79,0,
225678,0,1,37,1,
22571,2,0,1,1775,
2258235,18,1,1775,153,
22592,0,1,107,236,
226018,1,107,168,2,
22610,1,2196,237,18,
22621,2196,160,2,0,
22631,1224,238,18,1,
22641224,160,2,0,1,
22651225,239,18,1,1225,
2266240,20,241,4,24,
226777,0,73,0,78,
22680,85,0,83,0,
226995,0,69,0,81,
22700,85,0,65,0,
227176,0,83,0,1,
22727,1,1,2,0,
22731,112,242,18,1,
2274112,243,20,244,4,
227528,71,0,82,0,
227669,0,65,0,84,
22770,69,0,82,0,
227895,0,69,0,81,
22790,85,0,65,0,
228076,0,83,0,1,
228132,1,1,2,0,
22821,1188,245,18,1,
22831188,160,2,0,1,
22841231,246,18,1,1231,
2285168,2,0,1,118,
2286247,18,1,118,168,
22872,0,1,1737,248,
228818,1,1737,168,2,
22890,1,124,249,18,
22901,124,250,20,251,
22914,22,76,0,69,
22920,83,0,83,0,
229395,0,69,0,81,
22940,85,0,65,0,
229576,0,83,0,1,
229631,1,1,2,0,
22971,2280,252,18,1,
22982280,160,2,0,1,
22992354,253,18,1,2354,
2300254,20,255,4,18,
230183,0,116,0,97, 230783,0,116,0,97,
23020,116,0,101,0, 23080,116,0,101,0,
2303109,0,101,0,110, 2309109,0,101,0,110,
23040,116,0,1,109, 23100,116,0,1,109,
23051,2,2,0,1, 23111,2,2,0,1,
23062355,256,18,1,2355, 23122356,252,18,1,2356,
2307257,20,258,4,22, 2313253,20,254,4,22,
230882,0,73,0,71, 231482,0,73,0,71,
23090,72,0,84,0, 23150,72,0,84,0,
231095,0,66,0,82, 231695,0,66,0,82,
23110,65,0,67,0, 23170,65,0,67,0,
231269,0,1,13,1, 231869,0,1,13,1,
23131,2,0,1,130, 23191,2,0,1,130,
2314259,18,1,130,168, 2320255,18,1,130,168,
23152,0,1,1802,260, 23212,0,1,1802,256,
231618,1,1802,254,2, 232218,1,1802,250,2,
23170,1,2360,261,18, 23230,1,1804,257,18,
23181,2360,257,2,0, 23241,1804,258,20,259,
23191,1804,262,18,1, 23254,4,68,0,79,
23201804,263,20,264,4, 23260,1,44,1,1,
23214,68,0,79,0, 23272,0,1,2363,260,
23221,44,1,1,2, 232818,1,2363,261,20,
23230,1,2362,265,18, 2329262,4,34,67,0,
23241,2362,223,2,0, 2330111,0,109,0,112,
23251,2363,266,18,1, 23310,111,0,117,0,
23262363,150,2,0,1, 2332110,0,100,0,83,
23272364,267,18,1,2364, 23330,116,0,97,0,
2328268,20,269,4,10, 2334116,0,101,0,109,
23350,101,0,110,0,
2336116,0,1,107,1,
23372,2,0,1,2364,
2338263,18,1,2364,150,
23392,0,1,137,264,
234018,1,137,265,20,
2341266,4,36,69,0,
234288,0,67,0,76,
23430,65,0,77,0,
234465,0,84,0,73,
23450,79,0,78,0,
234695,0,69,0,81,
23470,85,0,65,0,
234876,0,83,0,1,
234930,1,1,2,0,
23501,2366,267,18,1,
23512366,132,2,0,1,
23522367,268,18,1,2367,
2353156,2,0,1,1701,
2354269,18,1,1701,168,
23552,0,1,1756,270,
235618,1,1756,191,2,
23570,1,2370,271,18,
23581,2370,272,20,273,
23594,22,84,0,79,
23600,85,0,67,0,
236172,0,95,0,69,
23620,86,0,69,0,
236378,0,84,0,1,
236488,1,1,2,0,
23651,143,274,18,1,
2366143,168,2,0,1,
23672372,275,18,1,2372,
2368276,20,277,4,32,
232983,0,84,0,65, 236983,0,84,0,65,
23300,84,0,69,0, 23700,84,0,69,0,
23311,48,1,1,2, 237195,0,69,0,88,
23320,1,137,270,18, 23720,73,0,84,0,
23331,137,271,20,272, 237395,0,69,0,86,
23344,36,69,0,88, 23740,69,0,78,0,
23350,67,0,76,0, 237584,0,1,86,1,
233665,0,77,0,65, 23761,2,0,1,2373,
23370,84,0,73,0, 2377278,18,1,2373,279,
233879,0,78,0,95, 237820,280,4,34,83,
23390,69,0,81,0, 23790,84,0,65,0,
234085,0,65,0,76, 238084,0,69,0,95,
23410,83,0,1,30, 23810,69,0,78,0,
238284,0,82,0,89,
23830,95,0,69,0,
238486,0,69,0,78,
23850,84,0,1,85,
23421,1,2,0,1, 23861,1,2,0,1,
23432366,273,18,1,2366, 23871260,281,18,1,1260,
2344156,2,0,1,2367, 2388160,2,0,1,1261,
2345274,18,1,2367,275, 2389282,18,1,1261,283,
234620,276,4,34,84, 239020,284,4,22,80,
23470,79,0,85,0, 23910,76,0,85,0,
234867,0,72,0,95, 239283,0,95,0,69,
23490,83,0,84,0, 23930,81,0,85,0,
235065,0,82,0,84, 239465,0,76,0,83,
23950,1,6,1,1,
23962,0,1,2376,285,
239718,1,2376,286,20,
2398287,4,34,82,0,
239969,0,77,0,79,
24000,84,0,69,0,
240195,0,68,0,65,
24020,84,0,65,0,
240395,0,69,0,86,
24040,69,0,78,0,
240584,0,1,82,1,
24061,2,0,1,2377,
2407288,18,1,2377,289,
240820,290,4,24,79,
24090,78,0,95,0,
241082,0,69,0,90,
23510,95,0,69,0, 24110,95,0,69,0,
235286,0,69,0,78, 241286,0,69,0,78,
23530,84,0,1,89, 24130,84,0,1,81,
23541,1,2,0,1, 24141,1,2,0,1,
23551701,277,18,1,1701, 24152378,291,18,1,2378,
2356168,2,0,1,1756, 2416292,20,293,4,32,
2357278,18,1,1756,190, 241779,0,66,0,74,
23582,0,1,2370,279, 24180,69,0,67,0,
235918,1,2370,280,20, 241984,0,95,0,82,
2360281,4,22,84,0, 24200,69,0,90,0,
236173,0,77,0,69, 242195,0,69,0,86,
23620,82,0,95,0, 24220,69,0,78,0,
236369,0,86,0,69, 242384,0,1,80,1,
23640,78,0,84,0, 24241,2,0,1,151,
23651,87,1,1,2, 2425294,18,1,151,295,
23660,1,143,282,18, 242620,296,4,26,69,
23671,143,168,2,0, 24270,81,0,85,0,
23681,2372,283,18,1, 242865,0,76,0,83,
23692372,284,20,285,4,
237034,83,0,84,0,
237165,0,84,0,69,
23720,95,0,69,0, 24290,95,0,69,0,
237378,0,84,0,82, 243081,0,85,0,65,
23740,89,0,95,0, 24310,76,0,83,0,
237569,0,86,0,69, 24321,29,1,1,2,
23760,78,0,84,0, 24330,1,2380,297,18,
23771,85,1,1,2, 24341,2380,298,20,299,
23780,1,2373,286,18, 24354,46,78,0,79,
23791,2373,287,20,288,
23804,24,83,0,69,
23810,78,0,83,0,
238279,0,82,0,95,
23830,69,0,86,0,
238469,0,78,0,84,
23850,1,84,1,1,
23862,0,1,1260,289,
238718,1,1260,160,2,
23880,1,1261,290,18,
23891,1261,291,20,292,
23904,22,80,0,76,
23910,85,0,83,0,
239295,0,69,0,81,
23930,85,0,65,0,
239476,0,83,0,1,
23956,1,1,2,0,
23961,2376,293,18,1,
23972376,294,20,295,4,
239824,79,0,78,0,
239995,0,82,0,69,
24000,90,0,95,0,
240169,0,86,0,69,
24020,78,0,84,0,
24031,81,1,1,2,
24040,1,2377,296,18,
24051,2377,297,20,298,
24064,32,79,0,66,
24070,74,0,69,0,
240867,0,84,0,95,
24090,82,0,69,0,
241090,0,95,0,69,
24110,86,0,69,0,
241278,0,84,0,1,
241380,1,1,2,0,
24141,2378,299,18,1,
24152378,300,20,301,4,
241638,78,0,79,0,
241784,0,95,0,65,
24180,84,0,95,0, 24360,84,0,95,0,
243765,0,84,0,95,
24380,82,0,79,0,
243984,0,95,0,84,
24400,65,0,82,0,
244171,0,69,0,84,
24420,95,0,69,0,
244386,0,69,0,78,
24440,84,0,1,78,
24451,1,2,0,1,
24461267,300,18,1,1267,
2447168,2,0,1,2382,
2448301,18,1,2382,302,
244920,303,4,36,77,
24500,79,0,86,0,
245173,0,78,0,71,
24520,95,0,83,0,
241984,0,65,0,82, 245384,0,65,0,82,
24200,71,0,69,0, 24540,84,0,95,0,
242184,0,95,0,69, 245569,0,86,0,69,
24220,86,0,69,0, 24560,78,0,84,0,
242378,0,84,0,1, 24571,76,1,1,2,
242479,1,1,2,0, 24580,1,2383,304,18,
24251,151,302,18,1, 24591,2383,305,20,306,
2426151,303,20,304,4, 24604,32,77,0,79,
242726,69,0,81,0, 24610,86,0,73,0,
242885,0,65,0,76, 246278,0,71,0,95,
24290,83,0,95,0, 24630,69,0,78,0,
243069,0,81,0,85, 246468,0,95,0,69,
24310,65,0,76,0,
243283,0,1,29,1,
24331,2,0,1,2380,
2434305,18,1,2380,306,
243520,307,4,30,78,
24360,79,0,95,0,
243783,0,69,0,78,
24380,83,0,79,0,
243982,0,95,0,69,
24400,86,0,69,0, 24650,86,0,69,0,
244178,0,84,0,1, 246678,0,84,0,1,
244277,1,1,2,0, 246775,1,1,2,0,
24431,1267,308,18,1, 24681,2310,307,18,1,
24441267,168,2,0,1, 24692310,308,20,309,4,
24452382,309,18,1,2382, 247026,83,0,116,0,
2446310,20,311,4,32, 247197,0,116,0,101,
244777,0,79,0,86, 24720,109,0,101,0,
24480,73,0,78,0, 2473110,0,116,0,76,
244971,0,95,0,69, 24740,105,0,115,0,
24500,78,0,68,0, 2475116,0,1,108,1,
245195,0,69,0,86, 24762,2,0,1,157,
24520,69,0,78,0, 2477310,18,1,157,168,
245384,0,1,75,1, 24782,0,1,2386,311,
24541,2,0,1,2309, 247918,1,2386,312,20,
2455312,18,1,2309,313, 2480313,4,36,76,0,
245620,314,4,26,83, 248173,0,78,0,75,
24570,116,0,97,0, 24820,95,0,77,0,
2458116,0,101,0,109, 248369,0,83,0,83,
24590,101,0,110,0, 24840,65,0,71,0,
2460116,0,76,0,105, 248569,0,95,0,69,
24610,115,0,116,0,
24621,108,1,2,2,
24630,1,2384,315,18,
24641,2384,316,20,317,
24654,24,76,0,73,
24660,83,0,84,0,
246769,0,78,0,95,
24680,69,0,86,0,
246969,0,78,0,84,
24700,1,73,1,1,
24712,0,1,157,318,
247218,1,157,168,2,
24730,1,2386,319,18,
24741,2386,320,20,321,
24754,52,76,0,65,
24760,78,0,68,0,
247795,0,67,0,79,
24780,76,0,76,0,
247973,0,83,0,73,
24800,79,0,78,0,
248195,0,83,0,84,
24820,65,0,82,0,
248384,0,95,0,69,
24840,86,0,69,0, 24860,86,0,69,0,
248578,0,84,0,1, 248778,0,84,0,1,
248671,1,1,2,0, 248872,1,1,2,0,
24871,1773,322,18,1, 24891,1773,314,18,1,
24881773,146,2,0,1, 24901773,146,2,0,1,
24892388,323,18,1,2388, 24912388,315,18,1,2388,
2490324,20,325,4,40, 2492316,20,317,4,48,
249176,0,65,0,78, 249376,0,65,0,78,
24920,68,0,95,0, 24940,68,0,95,0,
249367,0,79,0,76, 249567,0,79,0,76,
24940,76,0,73,0, 24960,76,0,73,0,
249583,0,73,0,79, 249783,0,73,0,79,
24960,78,0,95,0, 24980,78,0,95,0,
249769,0,86,0,69, 249969,0,78,0,68,
24980,78,0,84,0,
24991,69,1,1,2,
25000,1,1832,326,18,
25011,1832,254,2,0,
25021,1833,327,18,1,
25031833,328,20,329,4,
250410,87,0,72,0,
250573,0,76,0,69,
25060,1,45,1,1,
25072,0,1,1834,330,
250818,1,1834,135,2,
25090,1,2392,331,18,
25101,2392,332,20,333,
25114,26,67,0,79,
25120,78,0,84,0,
251382,0,79,0,76,
25140,95,0,69,0, 25000,95,0,69,0,
251586,0,69,0,78, 250186,0,69,0,78,
25160,84,0,1,65, 25020,84,0,1,70,
25171,1,2,0,1, 25031,1,2,0,1,
25182393,334,18,1,2393, 25041832,318,18,1,1832,
2519335,20,336,4,42, 2505250,2,0,1,1833,
252067,0,79,0,76, 2506319,18,1,1833,320,
25210,76,0,73,0, 250720,321,4,10,87,
252283,0,73,0,79, 25080,72,0,73,0,
25230,78,0,95,0, 250976,0,69,0,1,
252483,0,84,0,65, 251045,1,1,2,0,
25250,82,0,84,0, 25111,1834,322,18,1,
25121834,135,2,0,1,
25132392,323,18,1,2392,
2514324,20,325,4,32,
251568,0,65,0,84,
25160,65,0,83,0,
251769,0,82,0,86,
25180,69,0,82,0,
252695,0,69,0,86, 251995,0,69,0,86,
25270,69,0,78,0, 25200,69,0,78,0,
252884,0,1,64,1, 252184,0,1,66,1,
25291,2,0,1,166, 25221,2,0,1,2393,
2530337,18,1,166,338, 2523326,18,1,2393,327,
253120,339,4,20,76, 252420,328,4,26,67,
25320,69,0,70,0, 25250,79,0,78,0,
253384,0,95,0,65, 252684,0,82,0,79,
25340,78,0,71,0, 25270,76,0,95,0,
253576,0,69,0,1, 252869,0,86,0,69,
253625,1,1,2,0, 25290,78,0,84,0,
25371,2395,340,18,1, 25301,65,1,1,2,
25382395,341,20,342,4, 25310,1,166,329,18,
253930,67,0,79,0, 25321,166,330,20,331,
254076,0,76,0,73, 25334,20,76,0,69,
25410,83,0,73,0, 25340,70,0,84,0,
254279,0,78,0,95, 253595,0,65,0,78,
25430,69,0,86,0, 25360,71,0,76,0,
254469,0,78,0,84, 253769,0,1,25,1,
25450,1,62,1,1, 25381,2,0,1,2395,
25462,0,1,2396,343, 2539332,18,1,2395,333,
254718,1,2396,344,20, 254020,334,4,38,67,
2548345,4,26,67,0, 25410,79,0,76,0,
254972,0,65,0,78, 254276,0,73,0,83,
25500,71,0,69,0, 25430,73,0,79,0,
255168,0,95,0,69, 254478,0,95,0,69,
25450,78,0,68,0,
254695,0,69,0,86,
25470,69,0,78,0,
254884,0,1,63,1,
25491,2,0,1,2396,
2550335,18,1,2396,336,
255120,337,4,30,67,
25520,79,0,76,0,
255376,0,73,0,83,
25540,73,0,79,0,
255578,0,95,0,69,
25520,86,0,69,0, 25560,86,0,69,0,
255378,0,84,0,1, 255778,0,84,0,1,
255461,1,1,2,0, 255862,1,1,2,0,
25551,1840,346,18,1, 25591,1840,338,18,1,
25561840,168,2,0,1, 25601840,168,2,0,1,
25572398,347,18,1,2398, 25612398,339,18,1,2398,
2558348,20,349,4,30, 2562340,20,341,4,24,
255965,0,84,0,95, 256365,0,84,0,84,
25600,84,0,65,0, 25640,65,0,67,0,
256182,0,71,0,69,
25620,84,0,95,0,
256369,0,86,0,69,
25640,78,0,84,0,
25651,59,1,1,2,
25660,1,2399,350,18,
25671,2399,351,20,352,
25684,38,65,0,84,
25690,95,0,82,0,
257079,0,84,0,95,
25710,84,0,65,0,
257282,0,71,0,69,
25730,84,0,95,0,
257469,0,86,0,69,
25750,78,0,84,0,
25761,58,1,1,2,
25770,1,172,353,18,
25781,172,168,2,0,
25791,2401,354,18,1,
25802401,135,2,0,1,
25812605,355,18,1,2605,
2582356,20,357,4,48,
258371,0,108,0,111,
25840,98,0,97,0,
2585108,0,70,0,117,
25860,110,0,99,0,
2587116,0,105,0,111,
25880,110,0,68,0,
2589101,0,102,0,105,
25900,110,0,105,0,
2591116,0,105,0,111,
25920,110,0,1,98,
25931,2,2,0,1,
25941296,358,18,1,1296,
2595160,2,0,1,1297,
2596359,18,1,1297,360,
259720,361,4,12,69,
25980,81,0,85,0,
259965,0,76,0,83,
26000,1,15,1,1,
26012,0,1,2412,362,
260218,1,2412,153,2,
26030,1,2414,363,18,
26041,2414,223,2,0,
26051,1859,364,18,1,
26061859,153,2,0,1,
26071860,365,18,1,1860,
2608190,2,0,1,188,
2609366,18,1,188,168,
26102,0,1,182,367,
261118,1,182,368,20,
2612369,4,22,82,0,
261373,0,71,0,72,
26140,84,0,95,0,
261565,0,78,0,71,
26160,76,0,69,0,
26171,26,1,1,2,
26180,1,199,370,18,
26191,199,371,20,372,
26204,10,67,0,65,
26210,82,0,69,0,
262284,0,1,35,1,
26231,2,0,1,1871,
2624373,18,1,1871,160,
26252,0,1,1872,374,
262618,1,1872,153,2,
26270,1,1873,375,18,
26281,1873,190,2,0,
26291,1875,376,18,1,
26301875,328,2,0,1,
2631205,377,18,1,205,
2632168,2,0,1,1882,
2633378,18,1,1882,168,
26342,0,1,2365,379,
263518,1,2365,132,2,
26360,1,2368,380,18,
26371,2368,381,20,382,
26384,30,84,0,79,
26390,85,0,67,0,
264072,0,95,0,69, 256572,0,95,0,69,
26410,78,0,68,0, 25660,86,0,69,0,
256778,0,84,0,1,
256860,1,1,2,0,
25691,2399,342,18,1,
25702399,343,20,344,4,
257130,65,0,84,0,
257295,0,84,0,65,
25730,82,0,71,0,
257469,0,84,0,95,
25750,69,0,86,0,
257669,0,78,0,84,
25770,1,59,1,1,
25782,0,1,172,345,
257918,1,172,168,2,
25800,1,2401,346,18,
25811,2401,347,20,348,
25824,10,69,0,118,
25830,101,0,110,0,
2584116,0,1,106,1,
25852,2,0,1,2402,
2586349,18,1,2402,135,
25872,0,1,1296,350,
258818,1,1296,160,2,
25890,1,1297,351,18,
25901,1297,352,20,353,
25914,12,69,0,81,
25920,85,0,65,0,
259376,0,83,0,1,
259415,1,1,2,0,
25951,2413,354,18,1,
25962413,153,2,0,1,
25972415,355,18,1,2415,
2598261,2,0,1,1859,
2599356,18,1,1859,153,
26002,0,1,1860,357,
260118,1,1860,191,2,
26020,1,188,358,18,
26031,188,168,2,0,
26041,182,359,18,1,
2605182,360,20,361,4,
260622,82,0,73,0,
260771,0,72,0,84,
26080,95,0,65,0,
260978,0,71,0,76,
26100,69,0,1,26,
26111,1,2,0,1,
2612199,362,18,1,199,
2613363,20,364,4,10,
261467,0,65,0,82,
26150,69,0,84,0,
26161,35,1,1,2,
26170,1,1871,365,18,
26181,1871,160,2,0,
26191,1872,366,18,1,
26201872,153,2,0,1,
26211873,367,18,1,1873,
2622191,2,0,1,1875,
2623368,18,1,1875,320,
26242,0,1,205,369,
262518,1,205,168,2,
26260,1,2359,370,18,
26271,2359,250,2,0,
26281,2361,371,18,1,
26292361,253,2,0,1,
26301882,372,18,1,1882,
2631168,2,0,1,2227,
2632373,18,1,2227,250,
26332,0,1,2368,374,
263418,1,2368,375,20,
2635376,4,34,84,0,
263679,0,85,0,67,
26370,72,0,95,0,
263883,0,84,0,65,
26390,82,0,84,0,
264295,0,69,0,86, 264095,0,69,0,86,
26430,69,0,78,0, 26410,69,0,78,0,
264484,0,1,90,1, 264284,0,1,89,1,
26451,2,0,1,217, 26431,2,0,1,217,
2646383,18,1,217,384, 2644377,18,1,217,378,
264720,385,4,12,83, 264520,379,4,12,83,
26480,84,0,82,0, 26460,84,0,82,0,
264979,0,75,0,69, 264779,0,75,0,69,
26500,1,34,1,1, 26480,1,34,1,1,
26512,0,1,1332,386, 26492,0,1,1332,380,
265218,1,1332,160,2, 265018,1,1332,160,2,
26530,1,2371,387,18, 26510,1,2371,381,18,
26541,2371,388,20,389, 26521,2371,382,20,383,
26554,32,83,0,84, 26534,22,84,0,73,
26560,65,0,84,0, 26540,77,0,69,0,
265769,0,95,0,69, 265582,0,95,0,69,
26580,88,0,73,0,
265984,0,95,0,69,
26600,86,0,69,0, 26560,86,0,69,0,
266178,0,84,0,1, 265778,0,84,0,1,
266286,1,1,2,0, 265887,1,1,2,0,
26631,1335,390,18,1, 26591,1335,384,18,1,
26641335,163,2,0,1, 26601335,163,2,0,1,
26652374,391,18,1,2374, 26612374,385,18,1,2374,
2666392,20,393,4,52, 2662386,20,387,4,24,
266782,0,85,0,78, 266383,0,69,0,78,
26680,95,0,84,0, 26640,83,0,79,0,
266973,0,77,0,69, 266582,0,95,0,69,
26700,95,0,80,0, 26660,86,0,69,0,
267169,0,82,0,77, 266778,0,84,0,1,
26720,73,0,83,0, 266884,1,1,2,0,
267383,0,73,0,79, 26691,223,388,18,1,
26740,78,0,83,0, 2670223,168,2,0,1,
267595,0,69,0,86, 26712452,389,18,1,2452,
26760,69,0,78,0, 2672390,20,391,4,20,
267784,0,1,83,1, 267383,0,116,0,97,
26781,2,0,1,223, 26740,116,0,101,0,
2679394,18,1,223,168, 267569,0,118,0,101,
26802,0,1,2452,395, 26760,110,0,116,0,
268118,1,2452,257,2, 26771,102,1,2,2,
26820,1,2453,396,18, 26780,1,2453,392,18,
26831,2453,397,20,398, 26791,2453,253,2,0,
26844,20,83,0,116, 26801,2454,393,18,1,
26850,97,0,116,0, 26812454,390,2,0,1,
2686101,0,69,0,118, 26821341,394,18,1,1341,
26870,101,0,110,0, 2683168,2,0,1,2456,
2688116,0,1,102,1, 2684395,18,1,2456,156,
26892,2,0,1,2454, 26852,0,1,2381,396,
2690399,18,1,2454,400, 268618,1,2381,397,20,
269120,401,4,26,68, 2687398,4,30,78,0,
26920,69,0,70,0, 268879,0,95,0,83,
269365,0,85,0,76,
26940,84,0,95,0,
269583,0,84,0,65,
26960,84,0,69,0,
26971,47,1,1,2,
26980,1,1341,402,18,
26991,1341,168,2,0,
27001,2381,403,18,1,
27012381,404,20,405,4,
270236,77,0,79,0,
270386,0,73,0,78,
27040,71,0,95,0,
270583,0,84,0,65,
27060,82,0,84,0,
270795,0,69,0,86,
27080,69,0,78,0, 26890,69,0,78,0,
270984,0,1,76,1, 269083,0,79,0,82,
27101,2,0,1,1901,
2711406,18,1,1901,153,
27122,0,1,1303,407,
271318,1,1303,168,2,
27140,1,2385,408,18,
27151,2385,409,20,410,
27164,36,76,0,73,
27170,78,0,75,0,
271895,0,77,0,69,
27190,83,0,83,0,
272065,0,71,0,69,
27210,95,0,69,0, 26910,95,0,69,0,
272286,0,69,0,78, 269286,0,69,0,78,
27230,84,0,1,72, 26930,84,0,1,77,
26941,1,2,0,1,
26951901,399,18,1,1901,
2696153,2,0,1,1303,
2697400,18,1,1303,168,
26982,0,1,2384,401,
269918,1,2384,402,20,
2700403,4,22,77,0,
270179,0,78,0,69,
27020,89,0,95,0,
270369,0,86,0,69,
27040,78,0,84,0,
27051,74,1,1,2,
27060,1,2385,404,18,
27071,2385,405,20,406,
27084,24,76,0,73,
27090,83,0,84,0,
271069,0,78,0,95,
27110,69,0,86,0,
271269,0,78,0,84,
27130,1,73,1,1,
27142,0,1,2387,407,
271518,1,2387,408,20,
2716409,4,52,76,0,
271765,0,78,0,68,
27180,95,0,67,0,
271979,0,76,0,76,
27200,73,0,83,0,
272173,0,79,0,78,
27220,95,0,83,0,
272384,0,65,0,82,
27240,84,0,95,0,
272569,0,86,0,69,
27260,78,0,84,0,
27271,71,1,1,2,
27280,1,236,410,18,
27291,236,411,20,412,
27304,6,65,0,77,
27310,80,0,1,33,
27241,1,2,0,1, 27321,1,2,0,1,
27252387,411,18,1,2387, 27332389,413,18,1,2389,
2726412,20,413,4,48, 2734414,20,415,4,40,
272776,0,65,0,78, 273576,0,65,0,78,
27280,68,0,95,0, 27360,68,0,95,0,
272967,0,79,0,76, 273767,0,79,0,76,
27300,76,0,73,0, 27380,76,0,73,0,
273183,0,73,0,79, 273983,0,73,0,79,
27320,78,0,95,0, 27400,78,0,95,0,
273369,0,78,0,68,
27340,95,0,69,0,
273586,0,69,0,78,
27360,84,0,1,70,
27371,1,2,0,1,
2738236,414,18,1,236,
2739415,20,416,4,6,
274065,0,77,0,80,
27410,1,33,1,1,
27422,0,1,2389,417,
274318,1,2389,418,20,
2744419,4,38,72,0,
274584,0,84,0,80,
27460,95,0,82,0,
274769,0,83,0,80,
27480,79,0,78,0,
274983,0,69,0,95,
27500,69,0,86,0,
275169,0,78,0,84,
27520,1,68,1,1,
27532,0,1,2390,420,
275418,1,2390,421,20,
2755422,4,22,69,0,
275677,0,65,0,73,
27570,76,0,95,0,
275869,0,86,0,69, 274169,0,86,0,69,
27590,78,0,84,0, 27420,78,0,84,0,
27601,67,1,1,2, 27431,69,1,1,2,
27610,1,2391,423,18, 27440,1,2390,416,18,
27621,2391,424,20,425, 27451,2390,417,20,418,
27634,32,68,0,65, 27464,38,72,0,84,
27640,84,0,65,0, 27470,84,0,80,0,
276583,0,69,0,82, 274895,0,82,0,69,
27660,86,0,69,0, 27490,83,0,80,0,
276782,0,95,0,69, 275079,0,78,0,83,
27510,69,0,95,0,
275269,0,86,0,69,
27530,78,0,84,0,
27541,68,1,1,2,
27550,1,2391,419,18,
27561,2391,420,20,421,
27574,22,69,0,77,
27580,65,0,73,0,
275976,0,95,0,69,
27680,86,0,69,0, 27600,86,0,69,0,
276978,0,84,0,1, 276178,0,84,0,1,
277066,1,1,2,0, 276267,1,1,2,0,
27711,242,426,18,1, 27631,242,422,18,1,
2772242,168,2,0,1, 2764242,168,2,0,1,
27732397,427,18,1,2397, 27652397,423,18,1,2397,
2774428,20,429,4,24, 2766424,20,425,4,26,
277565,0,84,0,84, 276767,0,72,0,65,
27760,65,0,67,0, 27680,78,0,71,0,
277772,0,95,0,69, 276969,0,68,0,95,
27780,86,0,69,0, 27700,69,0,86,0,
277978,0,84,0,1, 277169,0,78,0,84,
278060,1,1,2,0, 27720,1,61,1,1,
27811,2400,430,18,1, 27732,0,1,2400,426,
27822400,431,20,432,4, 277418,1,2400,427,20,
278310,69,0,118,0, 2775428,4,38,65,0,
2784101,0,110,0,116, 277684,0,95,0,82,
27850,1,106,1,2, 27770,79,0,84,0,
27862,0,1,256,433, 277895,0,84,0,65,
278718,1,256,434,20, 27790,82,0,71,0,
2788435,4,14,80,0, 278069,0,84,0,95,
27810,69,0,86,0,
278269,0,78,0,84,
27830,1,58,1,1,
27842,0,1,256,429,
278518,1,256,430,20,
2786431,4,14,80,0,
278969,0,82,0,67, 278769,0,82,0,67,
27900,69,0,78,0, 27880,69,0,78,0,
279184,0,1,22,1, 278984,0,1,22,1,
27921,2,0,1,1371, 27901,2,0,1,1371,
2793436,18,1,1371,211, 2791432,18,1,1371,212,
27942,0,1,2410,437, 27922,0,1,1931,433,
279518,1,2410,140,2, 279318,1,1931,250,2,
27960,1,1931,438,18, 27940,1,1932,434,18,
27971,1931,254,2,0, 27951,1932,435,20,436,
27981,1932,439,18,1, 27964,4,73,0,70,
27991932,440,20,441,4, 27970,1,42,1,1,
28004,73,0,70,0, 27982,0,1,262,437,
28011,42,1,1,2, 279918,1,262,168,2,
28020,1,262,442,18, 28000,1,1377,438,18,
28031,262,168,2,0, 28011,1377,168,2,0,
28041,1377,443,18,1, 28021,1876,439,18,1,
28051377,168,2,0,1, 28031876,135,2,0,1,
28061876,444,18,1,1876, 28042417,440,18,1,2417,
2807135,2,0,1,1939, 2805441,20,442,4,18,
2808445,18,1,1939,168, 280683,0,116,0,97,
28092,0,1,827,446, 28070,116,0,101,0,
281018,1,827,168,2, 280866,0,111,0,100,
28110,1,277,447,18, 28090,121,0,1,101,
28121,277,448,20,449, 28101,2,2,0,1,
28134,10,83,0,76, 28111939,443,18,1,1939,
28140,65,0,83,0, 2812168,2,0,1,827,
281572,0,1,21,1, 2813444,18,1,827,168,
28161,2,0,1,2358, 28142,0,1,277,445,
2817450,18,1,2358,254, 281518,1,277,446,20,
28182,0,1,283,451, 2816447,4,10,83,0,
281918,1,283,168,2, 281776,0,65,0,83,
28200,1,1958,452,18, 28180,72,0,1,21,
28211,1958,153,2,0, 28191,1,2,0,1,
28221,1406,453,18,1, 2820283,448,18,1,283,
28231406,160,2,0,1, 2821168,2,0,1,1958,
28241407,454,18,1,1407, 2822449,18,1,1958,153,
2825205,2,0,1,2526, 28232,0,1,1406,450,
2826455,18,1,2526,257, 282418,1,1406,160,2,
28272,0,1,299,456, 28250,1,1407,451,18,
282818,1,299,457,20, 28261,1407,206,2,0,
2829458,4,8,83,0, 28271,299,452,18,1,
283084,0,65,0,82, 2828299,453,20,454,4,
28310,1,20,1,1, 28298,83,0,84,0,
28322,0,1,1370,459, 283065,0,82,0,1,
283318,1,1370,160,2, 283120,1,1,2,0,
28340,1,2451,460,18, 28321,1370,455,18,1,
28351,2451,397,2,0, 28331370,160,2,0,1,
28361,2379,461,18,1, 28342529,456,18,1,2529,
28372379,462,20,463,4, 2835457,20,458,4,12,
283846,78,0,79,0, 283683,0,116,0,97,
283984,0,95,0,65, 28370,116,0,101,0,
28400,84,0,95,0, 2838115,0,1,99,1,
284182,0,79,0,84, 28392,2,0,1,2527,
28420,95,0,84,0, 2840459,18,1,2527,253,
284365,0,82,0,71, 28412,0,1,2379,460,
28440,69,0,84,0, 284218,1,2379,461,20,
284595,0,69,0,86, 2843462,4,38,78,0,
28460,69,0,78,0, 284479,0,84,0,95,
284784,0,1,78,1, 28450,65,0,84,0,
28481,2,0,1,2532, 284695,0,84,0,65,
2849464,18,1,2532,465, 28470,82,0,71,0,
285020,466,4,10,83, 284869,0,84,0,95,
28510,116,0,97,0,
2852116,0,101,0,1,
2853100,1,2,2,0,
28541,305,467,18,1,
2855305,168,2,0,1,
28562534,468,18,1,2534,
2857135,2,0,1,2383,
2858469,18,1,2383,470,
285920,471,4,22,77,
28600,79,0,78,0,
286169,0,89,0,95,
28620,69,0,86,0, 28490,69,0,86,0,
286369,0,78,0,84, 285069,0,78,0,84,
28640,1,74,1,1, 28510,1,79,1,1,
28652,0,1,2528,472, 28522,0,1,2532,463,
286618,1,2528,473,20, 285318,1,2532,464,20,
2867474,4,12,83,0, 2854465,4,10,83,0,
2868116,0,97,0,116, 2855116,0,97,0,116,
28690,101,0,115,0, 28560,101,0,1,100,
28701,99,1,2,2, 28571,2,2,0,1,
28710,1,2543,475,18, 2858305,466,18,1,305,
28721,2543,140,2,0, 2859168,2,0,1,2534,
28731,2545,476,18,1, 2860467,18,1,2534,132,
28742545,153,2,0,1, 28612,0,1,2535,468,
28751989,477,18,1,1989, 286218,1,2535,135,2,
2876254,2,0,1,1990, 28630,1,2599,469,18,
2877478,18,1,1990,479, 28641,2599,457,2,0,
287820,480,4,8,69, 28651,2544,470,18,1,
28662544,140,2,0,1,
28671989,471,18,1,1989,
2868250,2,0,1,1990,
2869472,18,1,1990,473,
287020,474,4,8,69,
28790,76,0,83,0, 28710,76,0,83,0,
288069,0,1,43,1, 287269,0,1,43,1,
28811,2,0,1,2607, 28731,2,0,1,2548,
2882481,18,1,2607,356, 2874475,18,1,2548,261,
28832,0,1,2549,482, 28752,0,1,322,476,
288418,1,2549,150,2, 287618,1,322,224,2,
28850,1,322,483,18, 28770,1,2551,477,18,
28861,322,226,2,0, 28781,2551,352,2,0,
28871,1933,484,18,1, 28791,1933,478,18,1,
28881933,135,2,0,1, 28801933,135,2,0,1,
2889883,485,18,1,883, 2881883,479,18,1,883,
2890168,2,0,1,328, 2882168,2,0,1,328,
2891486,18,1,328,168, 2883480,18,1,328,168,
28922,0,1,1443,487, 28842,0,1,1443,481,
289318,1,1443,240,2, 288518,1,1443,237,2,
28940,1,1449,488,18, 28860,1,1449,482,18,
28951,1449,168,2,0, 28871,1449,168,2,0,
28961,2490,489,18,1, 28881,2411,483,18,1,
28972490,490,20,491,4, 28892411,140,2,0,1,
289818,83,0,116,0, 28902491,484,18,1,2491,
289997,0,116,0,101, 2891441,2,0,1,1413,
29000,66,0,111,0, 2892485,18,1,1413,168,
2901100,0,121,0,1, 28932,0,1,346,486,
2902101,1,2,2,0, 289418,1,346,487,20,
29031,2416,492,18,1, 2895488,4,8,80,0,
29042416,490,2,0,1, 289676,0,85,0,83,
29051413,493,18,1,1413, 28970,1,18,1,1,
2906168,2,0,1,346, 28982,0,1,2576,489,
2907494,18,1,346,495, 289918,1,2576,191,2,
290820,496,4,8,80, 29000,1,2021,490,18,
29090,76,0,85,0, 29011,2021,250,2,0,
291083,0,1,18,1, 29021,2022,491,18,1,
29111,2,0,1,2575, 29032022,492,20,493,4,
2912497,18,1,2575,190, 290410,83,0,84,0,
29132,0,1,2021,498, 290565,0,84,0,69,
291418,1,2021,254,2, 29060,1,48,1,1,
29150,1,2022,499,18, 29072,0,1,352,494,
29161,2022,268,2,0, 290818,1,352,168,2,
29171,352,500,18,1, 29090,1,2024,495,18,
2918352,168,2,0,1, 29101,2024,132,2,0,
29192024,501,18,1,2024, 29111,2025,496,18,1,
2920132,2,0,1,2025, 29122025,497,20,498,4,
2921502,18,1,2025,503, 29138,74,0,85,0,
292220,504,4,8,74, 291477,0,80,0,1,
29230,85,0,77,0, 291549,1,1,2,0,
292480,0,1,49,1, 29161,2026,499,18,1,
29251,2,0,1,2026, 29172026,132,2,0,1,
2926505,18,1,2026,132, 29182027,500,18,1,2027,
29272,0,1,2027,506, 2919501,20,502,4,4,
292818,1,2027,507,20, 292065,0,84,0,1,
2929508,4,4,65,0, 292123,1,1,2,0,
293084,0,1,23,1, 29221,2028,503,18,1,
29311,2,0,1,2028, 29232028,132,2,0,1,
2932509,18,1,2028,132, 29242029,504,18,1,2029,
29332,0,1,2029,510, 2925261,2,0,1,2030,
293418,1,2029,223,2, 2926505,18,1,2030,506,
29350,1,2030,511,18, 292720,507,4,14,70,
29361,2030,512,20,513, 29280,111,0,114,0,
29374,14,70,0,111, 292976,0,111,0,111,
29380,114,0,76,0, 29300,112,0,1,120,
2939111,0,111,0,112,
29400,1,119,1,2,
29412,0,1,2031,514,
294218,1,2031,515,20,
2943516,4,32,68,0,
2944111,0,87,0,104,
29450,105,0,108,0,
2946101,0,83,0,116,
29470,97,0,116,0,
2948101,0,109,0,101,
29490,110,0,116,0,
29501,118,1,2,2,
29510,1,2032,517,18,
29521,2032,518,20,519,
29534,28,87,0,104,
29540,105,0,108,0,
2955101,0,83,0,116,
29560,97,0,116,0,
2957101,0,109,0,101,
29580,110,0,116,0,
29591,117,1,2,2,
29600,1,2033,520,18,
29611,2033,521,20,522,
29624,22,73,0,102,
29630,83,0,116,0,
296497,0,116,0,101,
29650,109,0,101,0,
2966110,0,116,0,1,
2967116,1,2,2,0,
29681,2034,523,18,1,
29692034,524,20,525,4,
297022,83,0,116,0,
297197,0,116,0,101,
29720,67,0,104,0,
297397,0,110,0,103,
29740,101,0,1,115,
29751,2,2,0,1, 29311,2,2,0,1,
29761478,526,18,1,1478, 29322031,508,18,1,2031,
2977160,2,0,1,1479, 2933509,20,510,4,32,
2978527,18,1,1479,291, 293468,0,111,0,87,
29792,0,1,2037,528, 29350,104,0,105,0,
298018,1,2037,190,2, 2936108,0,101,0,83,
29810,1,2038,529,18, 29370,116,0,97,0,
29821,2038,530,20,531, 2938116,0,101,0,109,
29834,18,74,0,117, 29390,101,0,110,0,
29840,109,0,112,0, 2940116,0,1,119,1,
298576,0,97,0,98, 29412,2,0,1,2032,
29860,101,0,108,0, 2942511,18,1,2032,512,
29871,113,1,2,2, 294320,513,4,28,87,
29880,1,2039,532,18, 29440,104,0,105,0,
29891,2039,190,2,0, 2945108,0,101,0,83,
29901,2040,533,18,1, 29460,116,0,97,0,
29912040,534,20,535,4, 2947116,0,101,0,109,
299230,82,0,101,0, 29480,101,0,110,0,
2993116,0,117,0,114, 2949116,0,1,118,1,
29940,110,0,83,0, 29502,2,0,1,2033,
2951514,18,1,2033,515,
295220,516,4,22,73,
29530,102,0,83,0,
2995116,0,97,0,116, 2954116,0,97,0,116,
29960,101,0,109,0, 29550,101,0,109,0,
2997101,0,110,0,116, 2956101,0,110,0,116,
29980,1,112,1,2, 29570,1,117,1,2,
29992,0,1,2041,536, 29582,0,1,2034,517,
300018,1,2041,190,2, 295918,1,2034,518,20,
30010,1,1485,537,18, 2960519,4,22,83,0,
30021,1485,168,2,0, 2961116,0,97,0,116,
30031,372,538,18,1, 29620,101,0,67,0,
3004372,180,2,0,1, 2963104,0,97,0,110,
3005373,539,18,1,373, 29640,103,0,101,0,
3006132,2,0,1,374, 29651,116,1,2,2,
3007540,18,1,374,176, 29660,1,1478,520,18,
30082,0,1,375,541, 29671,1478,160,2,0,
300918,1,375,132,2, 29681,1479,521,18,1,
30100,1,376,542,18, 29691479,283,2,0,1,
30111,376,183,2,0, 29702037,522,18,1,2037,
30121,377,543,18,1, 2971191,2,0,1,2038,
3013377,132,2,0,1, 2972523,18,1,2038,524,
3014378,544,18,1,378, 297320,525,4,18,74,
3015176,2,0,1,379, 29740,117,0,109,0,
3016545,18,1,379,132, 2975112,0,76,0,97,
30172,0,1,380,546, 29760,98,0,101,0,
301818,1,380,547,20, 2977108,0,1,114,1,
3019548,4,16,67,0, 29782,2,0,1,2039,
3020111,0,110,0,115, 2979526,18,1,2039,191,
30210,116,0,97,0, 29802,0,1,2040,527,
3022110,0,116,0,1, 298118,1,2040,528,20,
3023125,1,2,2,0, 2982529,4,30,82,0,
30241,381,549,18,1, 2983101,0,116,0,117,
3025381,338,2,0,1, 29840,114,0,110,0,
30262610,550,18,1,2610, 298583,0,116,0,97,
3027551,23,552,4,6, 29860,116,0,101,0,
302869,0,79,0,70, 2987109,0,101,0,110,
30290,1,2,1,6, 29880,116,0,1,113,
30302,0,1,2455,553, 29891,2,2,0,1,
303118,1,2455,156,2, 29902041,530,18,1,2041,
30320,1,371,554,18, 2991191,2,0,1,1485,
30331,371,555,20,556, 2992531,18,1,1485,168,
30344,24,70,0,117, 29932,0,1,372,532,
30350,110,0,99,0, 299418,1,372,180,2,
3036116,0,105,0,111, 29950,1,373,533,18,
30370,110,0,67,0, 29961,373,132,2,0,
303897,0,108,0,108, 29971,374,534,18,1,
30390,1,121,1,2, 2998374,176,2,0,1,
30402,0,1,942,557, 2999375,535,18,1,375,
304118,1,942,168,2, 3000132,2,0,1,376,
30420,1,2533,558,18, 3001536,18,1,376,183,
30431,2533,132,2,0, 30022,0,1,377,537,
30441,387,559,18,1, 300318,1,377,132,2,
3045387,168,2,0,1, 30040,1,378,538,18,
30462394,560,18,1,2394, 30051,378,176,2,0,
3047561,20,562,4,38, 30061,379,539,18,1,
304867,0,79,0,76, 3007379,132,2,0,1,
30490,76,0,73,0, 3008380,540,18,1,380,
305083,0,73,0,79, 3009541,20,542,4,16,
30510,78,0,95,0, 301067,0,111,0,110,
305269,0,78,0,68, 30110,115,0,116,0,
301297,0,110,0,116,
30130,1,126,1,2,
30142,0,1,381,543,
301518,1,381,330,2,
30160,1,2610,104,1,
30172455,544,18,1,2455,
3018545,20,546,4,26,
301968,0,69,0,70,
30200,65,0,85,0,
302176,0,84,0,95,
30220,83,0,84,0,
302365,0,84,0,69,
30240,1,47,1,1,
30252,0,1,371,547,
302618,1,371,548,20,
3027549,4,24,70,0,
3028117,0,110,0,99,
30290,116,0,105,0,
3030111,0,110,0,67,
30310,97,0,108,0,
3032108,0,1,122,1,
30332,2,0,1,942,
3034550,18,1,942,168,
30352,0,1,2533,551,
303618,1,2533,464,2,
30370,1,387,552,18,
30381,387,168,2,0,
30391,2394,553,18,1,
30402394,554,20,555,4,
304142,67,0,79,0,
304276,0,76,0,73,
30430,83,0,73,0,
304479,0,78,0,95,
30450,83,0,84,0,
304665,0,82,0,84,
30530,95,0,69,0, 30470,95,0,69,0,
305486,0,69,0,78, 304886,0,69,0,78,
30550,84,0,1,63, 30490,84,0,1,64,
30561,1,2,0,1, 30501,1,2,0,1,
30571514,563,18,1,1514, 30512546,556,18,1,2546,
3058160,2,0,1,1515, 3052153,2,0,1,1514,
3059564,18,1,1515,360, 3053557,18,1,1514,160,
30602,0,1,2073,565, 30542,0,1,1515,558,
306118,1,2073,160,2, 305518,1,1515,352,2,
30620,1,2074,566,18, 30560,1,2606,559,18,
30631,2074,153,2,0, 30571,2606,560,20,561,
30641,406,567,18,1, 30584,48,71,0,108,
3065406,143,2,0,1, 30590,111,0,98,0,
30661521,568,18,1,1521, 306097,0,108,0,70,
3067168,2,0,1,2556, 30610,117,0,110,0,
3068569,18,1,2556,168, 306299,0,116,0,105,
30692,0,1,412,570, 30630,111,0,110,0,
307018,1,412,168,2, 306468,0,101,0,102,
30710,1,2023,571,18, 30650,105,0,110,0,
30721,2023,400,2,0, 3066105,0,116,0,105,
30731,1442,572,18,1, 30670,111,0,110,0,
30741442,160,2,0,1, 30681,98,1,2,2,
30752035,573,18,1,2035, 30690,1,2074,562,18,
3076190,2,0,1,2036, 30701,2074,160,2,0,
3077574,18,1,2036,575, 30711,2075,563,18,1,
307820,576,4,26,74, 30722075,153,2,0,1,
30790,117,0,109,0, 3073406,564,18,1,406,
3080112,0,83,0,116, 3074143,2,0,1,1521,
30810,97,0,116,0, 3075565,18,1,1521,168,
3082101,0,109,0,101, 30762,0,1,2557,566,
30830,110,0,116,0, 307718,1,2557,168,2,
30841,114,1,2,2, 30780,1,412,567,18,
30850,1,431,577,18, 30791,412,168,2,0,
30861,431,143,2,0, 30801,2023,568,18,1,
30871,2104,578,18,1, 30812023,545,2,0,1,
30882104,254,2,0,1, 30821442,569,18,1,1442,
30892105,579,18,1,2105, 3083160,2,0,1,2035,
3090479,2,0,1,1550, 3084570,18,1,2035,191,
3091580,18,1,1550,160, 30852,0,1,2036,571,
30922,0,1,437,581, 308618,1,2036,572,20,
309318,1,437,168,2, 3087573,4,26,74,0,
30940,1,2044,582,18, 3088117,0,109,0,112,
30951,2044,190,2,0, 30890,83,0,116,0,
30961,2586,583,18,1, 309097,0,116,0,101,
30972586,190,2,0,1,
30981555,584,18,1,1555,
3099168,2,0,1,1001,
3100585,18,1,1001,555,
31012,0,1,1002,586,
310218,1,1002,547,2,
31030,1,447,587,18,
31041,447,368,2,0,
31051,2375,588,18,1,
31062375,589,20,590,4,
310734,82,0,69,0,
310877,0,79,0,84,
31090,69,0,95,0,
311068,0,65,0,84,
31110,65,0,95,0,
311269,0,86,0,69,
31130,78,0,84,0,
31141,82,1,1,2,
31150,1,1010,591,18,
31161,1010,160,2,0,
31171,1011,592,18,1,
31181011,153,2,0,1,
31191012,593,18,1,1012,
3120168,2,0,1,1013,
3121594,18,1,1013,153,
31222,0,1,459,595,
312318,1,459,596,20,
3124597,4,24,76,0,
312569,0,70,0,84,
31260,95,0,66,0,
312782,0,65,0,67,
31280,75,0,69,0,
312984,0,1,27,1,
31301,2,0,1,1574,
3131598,18,1,1574,190,
31322,0,1,461,599,
313318,1,461,600,20,
3134601,4,24,65,0,
3135114,0,103,0,117,
31360,109,0,101,0, 30910,109,0,101,0,
3137110,0,116,0,76, 3092110,0,116,0,1,
31380,105,0,115,0, 3093115,1,2,2,0,
3139116,0,1,122,1, 30941,431,574,18,1,
31402,2,0,1,462, 3095431,143,2,0,1,
3141602,18,1,462,143, 30962105,575,18,1,2105,
31422,0,1,2608,603, 3097250,2,0,1,2106,
314318,1,2608,604,20, 3098576,18,1,2106,473,
3144605,4,50,71,0, 30992,0,1,1550,577,
3145108,0,111,0,98, 310018,1,1550,160,2,
31460,97,0,108,0, 31010,1,437,578,18,
314786,0,97,0,114, 31021,437,168,2,0,
31480,105,0,97,0, 31031,2044,579,18,1,
314998,0,108,0,101, 31042044,580,20,581,4,
310528,69,0,109,0,
3106112,0,116,0,121,
31070,83,0,116,0,
310897,0,116,0,101,
31090,109,0,101,0,
3110110,0,116,0,1,
3111110,1,2,2,0,
31121,2045,582,18,1,
31132045,191,2,0,1,
31141555,583,18,1,1555,
3115168,2,0,1,2588,
3116584,18,1,2588,585,
311720,586,4,34,71,
31180,108,0,111,0,
311998,0,97,0,108,
31500,68,0,101,0, 31200,68,0,101,0,
315199,0,108,0,97, 3121102,0,105,0,110,
31520,114,0,97,0, 31220,105,0,116,0,
3153116,0,105,0,111, 3123105,0,111,0,110,
31540,110,0,1,97, 31240,115,0,1,96,
31551,2,2,0,1, 31251,2,2,0,1,
3156464,606,18,1,464, 31261001,587,18,1,1001,
3157607,20,608,4,16, 3127548,2,0,1,1002,
315865,0,114,0,103, 3128588,18,1,1002,541,
31590,117,0,109,0, 31292,0,1,447,589,
3160101,0,110,0,116, 313018,1,447,360,2,
31310,1,2375,590,18,
31321,2375,591,20,592,
31334,52,82,0,85,
31340,78,0,95,0,
313584,0,73,0,77,
31360,69,0,95,0,
313780,0,69,0,82,
31380,77,0,73,0,
313983,0,83,0,73,
31400,79,0,78,0,
314183,0,95,0,69,
31420,86,0,69,0,
314378,0,84,0,1,
314483,1,1,2,0,
31451,1010,593,18,1,
31461010,160,2,0,1,
31471011,594,18,1,1011,
3148153,2,0,1,1012,
3149595,18,1,1012,168,
31502,0,1,1013,596,
315118,1,1013,153,2,
31520,1,459,597,18,
31531,459,598,20,599,
31544,24,76,0,69,
31550,70,0,84,0,
315695,0,66,0,82,
31570,65,0,67,0,
315875,0,69,0,84,
31590,1,27,1,1,
31602,0,1,1574,600,
316118,1,1574,191,2,
31620,1,461,601,18,
31631,461,602,20,603,
31644,24,65,0,114,
31650,103,0,117,0,
3166109,0,101,0,110,
31670,116,0,76,0,
3168105,0,115,0,116,
31610,1,123,1,2, 31690,1,123,1,2,
31622,0,1,2531,609, 31702,0,1,462,604,
316318,1,2531,465,2, 317118,1,462,143,2,
31640,1,1585,610,18, 31720,1,2608,605,18,
31651,1585,611,20,612, 31731,2608,560,2,0,
31664,12,82,0,69, 31741,464,606,18,1,
31670,84,0,85,0, 3175464,607,20,608,4,
316882,0,78,0,1, 317616,65,0,114,0,
316950,1,1,2,0, 3177103,0,117,0,109,
31701,476,613,18,1, 31780,101,0,110,0,
3171476,614,20,615,4, 3179116,0,1,124,1,
317230,83,0,84,0, 31802,2,0,1,2136,
317382,0,73,0,78, 3181609,18,1,2136,250,
31740,71,0,95,0, 31822,0,1,2611,610,
317567,0,79,0,78, 318318,1,2611,611,23,
31760,83,0,84,0, 3184612,4,6,69,0,
317765,0,78,0,84, 318579,0,70,0,1,
31780,1,3,1,1, 31862,1,6,2,0,
31792,0,1,477,616, 31871,1585,613,18,1,
318018,1,477,617,20, 31881585,614,20,615,4,
3181618,4,28,70,0, 318912,82,0,69,0,
318276,0,79,0,65, 319084,0,85,0,82,
31830,84,0,95,0, 31910,78,0,1,50,
318467,0,79,0,78,
31850,83,0,84,0,
318665,0,78,0,84,
31870,1,94,1,1,
31882,0,1,478,619,
318918,1,478,620,20,
3190621,4,40,72,0,
319169,0,88,0,95,
31920,73,0,78,0,
319384,0,69,0,71,
31940,69,0,82,0,
319595,0,67,0,79,
31960,78,0,83,0,
319784,0,65,0,78,
31980,84,0,1,93,
31991,1,2,0,1, 31921,1,2,0,1,
3200479,622,18,1,479, 3193476,616,18,1,476,
3201623,20,624,4,32, 3194617,20,618,4,30,
319583,0,84,0,82,
31960,73,0,78,0,
319771,0,95,0,67,
31980,79,0,78,0,
319983,0,84,0,65,
32000,78,0,84,0,
32011,3,1,1,2,
32020,1,477,619,18,
32031,477,620,20,621,
32044,28,70,0,76,
32050,79,0,65,0,
320684,0,95,0,67,
32070,79,0,78,0,
320883,0,84,0,65,
32090,78,0,84,0,
32101,94,1,1,2,
32110,1,478,622,18,
32121,478,623,20,624,
32134,40,72,0,69,
32140,88,0,95,0,
320273,0,78,0,84, 321573,0,78,0,84,
32030,69,0,71,0, 32160,69,0,71,0,
320469,0,82,0,95, 321769,0,82,0,95,
32050,67,0,79,0, 32180,67,0,79,0,
320678,0,83,0,84, 321978,0,83,0,84,
32070,65,0,78,0, 32200,65,0,78,0,
320884,0,1,92,1, 322184,0,1,93,1,
32091,2,0,1,480, 32221,2,0,1,479,
3210625,18,1,480,626, 3223625,18,1,479,626,
321120,627,4,26,82, 322420,627,4,32,73,
32120,73,0,71,0,
321372,0,84,0,95,
32140,66,0,82,0,
321565,0,67,0,75,
32160,69,0,84,0,
32171,28,1,1,2,
32180,1,481,628,18,
32191,481,607,2,0,
32201,2550,629,18,1,
32212550,360,2,0,1,
32222606,630,18,1,2606,
3223604,2,0,1,1048,
3224631,18,1,1048,168,
32252,0,1,2042,632,
322618,1,2042,633,20,
3227634,4,20,65,0,
3228115,0,115,0,105,
32290,103,0,110,0,
3230109,0,101,0,110,
32310,116,0,1,110,
32321,2,2,0,1,
32332043,635,18,1,2043,
3234190,2,0,1,1620,
3235636,18,1,1620,160,
32362,0,1,1621,637,
323718,1,1621,150,2,
32380,1,1622,638,18,
32391,1622,360,2,0,
32401,509,639,18,1,
3241509,143,2,0,1,
32421628,640,18,1,1628,
3243168,2,0,1,515,
3244641,18,1,515,168,
32452,0,1,2369,642,
324618,1,2369,643,20,
3247644,4,22,84,0,
324879,0,85,0,67,
32490,72,0,95,0,
325069,0,86,0,69,
32510,78,0,84,0, 32250,78,0,84,0,
32521,88,1,1,2, 322669,0,71,0,69,
32530,1,2587,645,18, 32270,82,0,95,0,
32541,2587,646,20,647, 322867,0,79,0,78,
32554,34,71,0,108, 32290,83,0,84,0,
32560,111,0,98,0, 323065,0,78,0,84,
325797,0,108,0,68, 32310,1,92,1,1,
32580,101,0,102,0, 32322,0,1,480,628,
3259105,0,110,0,105, 323318,1,480,629,20,
3234630,4,26,82,0,
323573,0,71,0,72,
32360,84,0,95,0,
323766,0,82,0,65,
32380,67,0,75,0,
323969,0,84,0,1,
324028,1,1,2,0,
32411,481,631,18,1,
3242481,607,2,0,1,
32432550,632,18,1,2550,
3244150,2,0,1,2607,
3245633,18,1,2607,634,
324620,635,4,50,71,
32470,108,0,111,0,
324898,0,97,0,108,
32490,86,0,97,0,
3250114,0,105,0,97,
32510,98,0,108,0,
3252101,0,68,0,101,
32530,99,0,108,0,
325497,0,114,0,97,
32600,116,0,105,0, 32550,116,0,105,0,
3261111,0,110,0,115, 3256111,0,110,0,1,
32620,1,96,1,2, 325797,1,2,2,0,
32632,0,1,525,648, 32581,1048,636,18,1,
326418,1,525,368,2, 32591048,168,2,0,1,
32650,1,2197,649,18, 32602042,637,18,1,2042,
32661,2197,153,2,0, 3261638,20,639,4,20,
32671,1591,650,18,1, 326265,0,115,0,115,
32681591,168,2,0,1, 32630,105,0,103,0,
32692135,651,18,1,2135, 3264110,0,109,0,101,
3270254,2,0,1,2598, 32650,110,0,116,0,
3271652,18,1,2598,473, 32661,111,1,2,2,
32722,0,1,1094,653, 32670,1,2043,640,18,
327318,1,1094,600,2, 32681,2043,191,2,0,
32740,1,1096,654,18, 32691,1620,641,18,1,
32751,1096,153,2,0, 32701620,160,2,0,1,
32761,1657,655,18,1, 32711621,642,18,1,1621,
32771657,190,2,0,1, 3272150,2,0,1,1622,
32781658,656,18,1,1658, 3273643,18,1,1622,352,
3279657,20,658,4,6, 32742,0,1,509,644,
328070,0,79,0,82, 327518,1,509,143,2,
32810,1,46,1,1, 32760,1,2365,645,18,
32822,0,1,1659,659, 32771,2365,492,2,0,
328318,1,1659,135,2, 32781,1628,646,18,1,
32840,1,2609,104,1, 32791628,168,2,0,1,
32851665,660,18,1,1665, 3280515,647,18,1,515,
3286168,2,0,1,2226, 3281168,2,0,1,2369,
3287661,18,1,2226,254, 3282648,18,1,2369,649,
32882,0,1,1113,662, 328320,650,4,30,84,
32840,79,0,85,0,
328567,0,72,0,95,
32860,69,0,78,0,
328768,0,95,0,69,
32880,86,0,69,0,
328978,0,84,0,1,
329090,1,1,2,0,
32911,2587,651,18,1,
32922587,191,2,0,1,
3293525,652,18,1,525,
3294360,2,0,1,2197,
3295653,18,1,2197,160,
32962,0,1,2198,654,
329718,1,2198,153,2,
32980,1,1591,655,18,
32991,1591,168,2,0,
33001,1094,656,18,1,
33011094,602,2,0,1,
33021096,657,18,1,1096,
3303153,2,0,1,1657,
3304658,18,1,1657,191,
33052,0,1,1658,659,
330618,1,1658,660,20,
3307661,4,6,70,0,
330879,0,82,0,1,
330946,1,1,2,0,
33101,1659,662,18,1,
33111659,135,2,0,1,
33122609,663,18,1,2609,
3313634,2,0,1,1665,
3314664,18,1,1665,168,
33152,0,1,1113,665,
328918,1,1113,176,2, 331618,1,1113,176,2,
32900,663,5,0,664, 33170,666,5,0,667,
32915,319,1,2,665, 33185,321,1,2,668,
329219,552,1,2,666, 331919,612,1,2,669,
32935,6,1,2531,667, 33205,6,1,2453,670,
329417,668,15,669,4, 332117,671,15,672,4,
329514,37,0,83,0, 332212,37,0,83,0,
3296116,0,97,0,116, 3323116,0,97,0,116,
32970,101,0,115,0, 33240,101,0,1,-1,
32981,-1,1,5,670, 33251,5,673,20,674,
329920,671,4,16,83, 33264,14,83,0,116,
33270,97,0,116,0,
3328101,0,95,0,50,
33290,1,154,1,3,
33301,6,1,5,675,
333122,1,14,1,2532,
3332676,17,677,15,678,
33334,14,37,0,83,
33000,116,0,97,0, 33340,116,0,97,0,
3301116,0,101,0,115, 3335116,0,101,0,115,
33020,95,0,50,0, 33360,1,-1,1,5,
33031,151,1,3,1, 3337679,20,680,4,16,
33043,1,2,672,22, 333883,0,116,0,97,
33051,12,1,2532,673, 33390,116,0,101,0,
330617,674,15,669,1, 3340115,0,95,0,50,
3307-1,1,5,675,20, 33410,1,152,1,3,
3308676,4,16,83,0, 33421,3,1,2,681,
3309116,0,97,0,116, 334322,1,12,1,2599,
33100,101,0,115,0, 3344682,17,683,15,684,
331195,0,49,0,1, 33454,30,37,0,76,
3312150,1,3,1,2,
33131,1,677,22,1,
331411,1,2598,678,17,
3315679,15,680,4,30,
331637,0,76,0,83,
33170,76,0,80,0,
3318114,0,111,0,103,
33190,114,0,97,0,
3320109,0,82,0,111,
33210,111,0,116,0,
33221,-1,1,5,681,
332320,682,4,32,76,
33240,83,0,76,0, 33460,83,0,76,0,
332580,0,114,0,111, 334780,0,114,0,111,
33260,103,0,114,0, 33480,103,0,114,0,
332797,0,109,0,82, 334997,0,109,0,82,
33280,111,0,111,0, 33500,111,0,111,0,
3329116,0,95,0,49, 3351116,0,1,-1,1,
33300,1,140,1,3, 33525,685,20,686,4,
33311,3,1,2,683, 335332,76,0,83,0,
333222,1,1,1,2526, 335476,0,80,0,114,
3333684,17,685,15,686, 33550,111,0,103,0,
33344,12,37,0,83, 3356114,0,97,0,109,
33350,116,0,97,0, 33570,82,0,111,0,
3336116,0,101,0,1, 3358111,0,116,0,95,
3337-1,1,5,687,20, 33590,49,0,1,141,
3338688,4,14,83,0, 33601,3,1,3,1,
3339116,0,97,0,116, 33612,687,22,1,1,
33400,101,0,95,0, 33621,2533,688,17,689,
334149,0,1,152,1, 336315,678,1,-1,1,
33423,1,5,1,4, 33645,690,20,691,4,
3343689,22,1,13,1, 336516,83,0,116,0,
33442528,690,17,691,15, 336697,0,116,0,101,
3345680,1,-1,1,5, 33670,115,0,95,0,
3346692,20,693,4,32, 336849,0,1,151,1,
334776,0,83,0,76,
33480,80,0,114,0,
3349111,0,103,0,114,
33500,97,0,109,0,
335182,0,111,0,111,
33520,116,0,95,0,
335350,0,1,141,1,
33543,1,2,1,1, 33693,1,2,1,1,
3355694,22,1,2,1, 3370692,22,1,11,1,
33562452,695,17,696,15, 33712527,693,17,694,15,
3357686,1,-1,1,5, 3372672,1,-1,1,5,
3358697,20,698,4,14, 3373695,20,696,4,14,
335983,0,116,0,97, 337483,0,116,0,97,
33600,116,0,101,0, 33750,116,0,101,0,
337695,0,49,0,1,
3377153,1,3,1,5,
33781,4,697,22,1,
337913,1,2529,698,17,
3380699,15,684,1,-1,
33811,5,700,20,701,
33824,32,76,0,83,
33830,76,0,80,0,
3384114,0,111,0,103,
33850,114,0,97,0,
3386109,0,82,0,111,
33870,111,0,116,0,
336195,0,50,0,1, 338895,0,50,0,1,
3362153,1,3,1,6, 3389142,1,3,1,2,
33631,5,699,22,1, 33901,1,702,22,1,
336414,1,3,700,19, 33912,1,3,703,19,
3365615,1,3,701,5, 3392618,1,3,704,5,
336691,1,256,702,16, 339391,1,256,705,16,
33670,613,1,1261,703, 33940,616,1,1261,706,
336816,0,613,1,509, 339516,0,616,1,509,
3369704,16,0,613,1, 3396707,16,0,616,1,
33702197,705,16,0,613, 33971515,708,16,0,616,
33711,1515,706,16,0, 33981,2021,709,17,710,
3372613,1,2021,707,17, 339915,711,4,24,37,
3373708,15,709,4,24, 34000,73,0,102,0,
337437,0,73,0,102,
33750,83,0,116,0,
337697,0,116,0,101,
33770,109,0,101,0,
3378110,0,116,0,1,
3379-1,1,5,710,20,
3380711,4,26,73,0,
3381102,0,83,0,116,
33820,97,0,116,0,
3383101,0,109,0,101,
33840,110,0,116,0,
338595,0,50,0,1,
3386181,1,3,1,8,
33871,7,712,22,1,
338844,1,1775,713,16,
33890,613,1,2029,714,
339017,715,15,716,4,
339120,37,0,83,0,
3392116,0,97,0,116,
33930,101,0,109,0,
3394101,0,110,0,116,
33950,1,-1,1,5,
3396717,20,718,4,24,
339783,0,116,0,97, 340183,0,116,0,97,
33980,116,0,101,0, 34020,116,0,101,0,
3399109,0,101,0,110, 3403109,0,101,0,110,
34000,116,0,95,0, 34040,116,0,1,-1,
340149,0,50,0,1, 34051,5,712,20,713,
3402175,1,3,1,2, 34064,26,73,0,102,
34031,1,719,22,1, 34070,83,0,116,0,
340438,1,2030,720,17, 340897,0,116,0,101,
3405721,15,716,1,-1, 34090,109,0,101,0,
34061,5,722,20,723, 3410110,0,116,0,95,
34074,24,83,0,116, 34110,50,0,1,184,
34121,3,1,8,1,
34137,714,22,1,45,
34141,1775,715,16,0,
3415616,1,2029,716,17,
3416717,15,718,4,20,
341737,0,83,0,116,
34080,97,0,116,0, 34180,97,0,116,0,
3409101,0,109,0,101, 3419101,0,109,0,101,
34100,110,0,116,0, 34200,110,0,116,0,
341195,0,49,0,49, 34211,-1,1,5,719,
34120,1,174,1,3, 342220,720,4,24,83,
34131,2,1,1,724,
341422,1,37,1,2031,
3415725,17,726,15,716,
34161,-1,1,5,727,
341720,728,4,24,83,
34180,116,0,97,0, 34230,116,0,97,0,
3419116,0,101,0,109, 3424116,0,101,0,109,
34200,101,0,110,0, 34250,101,0,110,0,
3421116,0,95,0,49, 3426116,0,95,0,49,
34220,48,0,1,173, 34270,51,0,1,178,
34231,3,1,2,1,
34241,729,22,1,36,
34251,2032,730,17,731,
342615,716,1,-1,1,
34275,732,20,733,4,
342822,83,0,116,0,
342997,0,116,0,101,
34300,109,0,101,0,
3431110,0,116,0,95,
34320,57,0,1,172,
34331,3,1,2,1, 34281,3,1,2,1,
34341,734,22,1,35, 34291,721,22,1,39,
34351,2033,735,17,736, 34301,2030,722,17,723,
343615,716,1,-1,1, 343115,718,1,-1,1,
34375,737,20,738,4, 34325,724,20,725,4,
343822,83,0,116,0, 343324,83,0,116,0,
343997,0,116,0,101, 343497,0,116,0,101,
34400,109,0,101,0, 34350,109,0,101,0,
3441110,0,116,0,95, 3436110,0,116,0,95,
34420,56,0,1,171, 34370,49,0,50,0,
34431,3,1,2,1, 34381,177,1,3,1,
34441,739,22,1,34, 34392,1,1,726,22,
34451,277,740,16,0, 34401,38,1,2031,727,
3446613,1,2035,741,17, 344117,728,15,718,1,
3447742,15,716,1,-1, 3442-1,1,5,729,20,
34481,5,743,20,744, 3443730,4,24,83,0,
34494,22,83,0,116, 3444116,0,97,0,116,
34500,97,0,116,0, 34450,101,0,109,0,
3451101,0,109,0,101, 3446101,0,110,0,116,
34520,110,0,116,0, 34470,95,0,49,0,
345395,0,55,0,1, 344849,0,1,176,1,
3454170,1,3,1,3, 34493,1,2,1,1,
34551,2,745,22,1, 3450731,22,1,37,1,
345633,1,2037,746,17, 34512032,732,17,733,15,
3457747,15,716,1,-1, 3452718,1,-1,1,5,
34581,5,748,20,749, 3453734,20,735,4,24,
34594,22,83,0,116, 345483,0,116,0,97,
34600,97,0,116,0, 34550,116,0,101,0,
3461101,0,109,0,101, 3456109,0,101,0,110,
34620,110,0,116,0, 34570,116,0,95,0,
346395,0,54,0,1, 345849,0,48,0,1,
3464169,1,3,1,3, 3459175,1,3,1,2,
34651,2,750,22,1, 34601,1,736,22,1,
346632,1,2039,751,17, 346136,1,2033,737,17,
3467752,15,716,1,-1, 3462738,15,718,1,-1,
34681,5,753,20,754, 34631,5,739,20,740,
34694,22,83,0,116, 34644,22,83,0,116,
34700,97,0,116,0, 34650,97,0,116,0,
3471101,0,109,0,101, 3466101,0,109,0,101,
34720,110,0,116,0, 34670,110,0,116,0,
347395,0,53,0,1, 346895,0,57,0,1,
3474168,1,3,1,3, 3469174,1,3,1,2,
34751,2,755,22,1, 34701,1,741,22,1,
347631,1,32,756,16, 347135,1,277,742,16,
34770,613,1,2041,757, 34720,616,1,2035,743,
347817,758,15,716,1, 347317,744,15,718,1,
3479-1,1,5,759,20, 3474-1,1,5,745,20,
3480760,4,22,83,0, 3475746,4,22,83,0,
3481116,0,97,0,116, 3476116,0,97,0,116,
34820,101,0,109,0, 34770,101,0,109,0,
3483101,0,110,0,116, 3478101,0,110,0,116,
34840,95,0,52,0, 34790,95,0,56,0,
34851,167,1,3,1, 34801,173,1,3,1,
34863,1,2,761,22, 34813,1,2,747,22,
34871,30,1,2043,762, 34821,34,1,2037,748,
348817,763,15,716,1, 348317,749,15,718,1,
3489-1,1,5,764,20, 3484-1,1,5,750,20,
3490765,4,22,83,0, 3485751,4,22,83,0,
3491116,0,97,0,116, 3486116,0,97,0,116,
34920,101,0,109,0, 34870,101,0,109,0,
3493101,0,110,0,116, 3488101,0,110,0,116,
34940,95,0,50,0, 34890,95,0,55,0,
34951,165,1,3,1, 34901,172,1,3,1,
34963,1,2,766,22, 34913,1,2,752,22,
34971,28,1,2044,767, 34921,33,1,2039,753,
349817,768,15,716,1, 349317,754,15,718,1,
3499-1,1,5,254,1, 3494-1,1,5,755,20,
35001,1,1,769,22, 3495756,4,22,83,0,
35011,26,1,2550,770, 3496116,0,97,0,116,
350216,0,613,1,41, 34970,101,0,109,0,
3503771,16,0,613,1, 3498101,0,110,0,116,
35041297,772,16,0,613, 34990,95,0,54,0,
35051,43,773,16,0, 35001,171,1,3,1,
3506613,1,1802,774,17, 35013,1,2,757,22,
3507775,15,776,4,16, 35021,32,1,32,758,
350316,0,616,1,2041,
3504759,17,760,15,718,
35051,-1,1,5,761,
350620,762,4,22,83,
35070,116,0,97,0,
3508116,0,101,0,109,
35090,101,0,110,0,
3510116,0,95,0,53,
35110,1,170,1,3,
35121,3,1,2,763,
351322,1,31,1,2043,
3514764,17,765,15,718,
35151,-1,1,5,766,
351620,767,4,22,83,
35170,116,0,97,0,
3518116,0,101,0,109,
35190,101,0,110,0,
3520116,0,95,0,51,
35210,1,168,1,3,
35221,3,1,2,768,
352322,1,29,1,2045,
3524769,17,770,15,718,
35251,-1,1,5,771,
352620,772,4,22,83,
35270,116,0,97,0,
3528116,0,101,0,109,
35290,101,0,110,0,
3530116,0,95,0,49,
35310,1,166,1,3,
35321,3,1,2,773,
353322,1,27,1,41,
3534774,16,0,616,1,
35351297,775,16,0,616,
35361,43,776,16,0,
3537616,1,1802,777,17,
3538778,15,779,4,16,
350837,0,70,0,111, 353937,0,70,0,111,
35090,114,0,76,0, 35400,114,0,76,0,
3510111,0,111,0,112, 3541111,0,111,0,112,
35110,1,-1,1,5, 35420,1,-1,1,5,
3512777,20,778,4,18, 3543780,20,781,4,18,
351370,0,111,0,114, 354470,0,111,0,114,
35140,76,0,111,0, 35450,76,0,111,0,
3515111,0,112,0,95, 3546111,0,112,0,95,
35160,49,0,1,188, 35470,49,0,1,191,
35171,3,1,10,1, 35481,3,1,10,1,
35189,779,22,1,51, 35499,782,22,1,52,
35191,1804,780,16,0, 35501,1804,783,16,0,
3520613,1,299,781,16, 3551616,1,299,784,16,
35210,613,1,2309,782, 35520,616,1,2310,785,
352216,0,613,1,52, 355316,0,616,1,52,
3523783,16,0,613,1, 3554786,16,0,616,1,
3524525,784,16,0,613, 3555525,787,16,0,616,
35251,62,785,16,0, 35561,62,788,16,0,
3526613,1,2074,786,16, 3557616,1,2075,789,16,
35270,613,1,1574,787, 35580,616,1,1574,790,
352817,788,15,716,1, 355917,791,15,718,1,
3529-1,1,5,789,20, 3560-1,1,5,792,20,
3530790,4,22,83,0, 3561793,4,22,83,0,
3531116,0,97,0,116, 3562116,0,97,0,116,
35320,101,0,109,0, 35630,101,0,109,0,
3533101,0,110,0,116, 3564101,0,110,0,116,
35340,95,0,51,0, 35650,95,0,52,0,
35351,166,1,3,1, 35661,169,1,3,1,
35363,1,2,791,22, 35673,1,2,794,22,
35371,29,1,71,792, 35681,30,1,71,795,
353816,0,613,1,76, 356916,0,616,1,76,
3539793,16,0,613,1, 3570796,16,0,616,1,
35401834,794,16,0,613, 35711834,797,16,0,616,
35411,1585,795,16,0, 35721,79,798,16,0,
3542613,1,1335,796,16, 3573616,1,1335,799,16,
35430,613,1,79,797, 35740,616,1,322,800,
354416,0,613,1,85, 357516,0,616,1,85,
3545798,16,0,613,1, 3576801,16,0,616,1,
354689,799,16,0,613, 357789,802,16,0,616,
35471,346,800,16,0, 35781,346,803,16,0,
3548613,1,2104,801,17, 3579616,1,2355,804,17,
3549802,15,709,1,-1, 3580805,15,806,4,28,
35501,5,803,20,804,
35514,26,73,0,102,
35520,83,0,116,0,
355397,0,116,0,101,
35540,109,0,101,0,
3555110,0,116,0,95,
35560,51,0,1,182,
35571,3,1,6,1,
35585,805,22,1,45,
35591,2105,806,16,0,
3560613,1,2358,807,17,
3561808,15,809,4,28,
356237,0,83,0,116, 358137,0,83,0,116,
35630,97,0,116,0, 35820,97,0,116,0,
3564101,0,109,0,101, 3583101,0,109,0,101,
35650,110,0,116,0, 35840,110,0,116,0,
356676,0,105,0,115, 358576,0,105,0,115,
35670,116,0,1,-1, 35860,116,0,1,-1,
35681,5,810,20,811, 35871,5,807,20,808,
35694,30,83,0,116, 35884,30,83,0,116,
35700,97,0,116,0, 35890,97,0,116,0,
3571101,0,109,0,101, 3590101,0,109,0,101,
35720,110,0,116,0, 35910,110,0,116,0,
357376,0,105,0,115, 359276,0,105,0,115,
35740,116,0,95,0, 35930,116,0,95,0,
357549,0,1,162,1, 359450,0,1,164,1,
35763,1,2,1,1, 35953,1,3,1,2,
3577812,22,1,24,1, 3596809,22,1,25,1,
35782360,813,17,814,15, 35972105,810,17,811,15,
3579815,4,36,37,0, 3598711,1,-1,1,5,
358067,0,111,0,109, 3599812,20,813,4,26,
35810,112,0,111,0, 360073,0,102,0,83,
3582117,0,110,0,100, 36010,116,0,97,0,
35830,83,0,116,0, 3602116,0,101,0,109,
358497,0,116,0,101, 36030,101,0,110,0,
35850,109,0,101,0, 3604116,0,95,0,51,
3586110,0,116,0,1, 36050,1,185,1,3,
3587-1,1,5,816,20, 36061,6,1,5,814,
3588817,4,38,67,0, 360722,1,46,1,2106,
3608815,16,0,616,1,
36092359,816,17,817,15,
3610806,1,-1,1,5,
3611818,20,819,4,30,
361283,0,116,0,97,
36130,116,0,101,0,
3614109,0,101,0,110,
36150,116,0,76,0,
3616105,0,115,0,116,
36170,95,0,49,0,
36181,163,1,3,1,
36192,1,1,820,22,
36201,24,1,2361,821,
362117,822,15,823,4,
362236,37,0,67,0,
3589111,0,109,0,112, 3623111,0,109,0,112,
35900,111,0,117,0, 36240,111,0,117,0,
3591110,0,100,0,83, 3625110,0,100,0,83,
35920,116,0,97,0, 36260,116,0,97,0,
3593116,0,101,0,109, 3627116,0,101,0,109,
35940,101,0,110,0, 36280,101,0,110,0,
3595116,0,95,0,49, 3629116,0,1,-1,1,
35960,1,160,1,3, 36305,824,20,825,4,
35971,3,1,2,818, 363138,67,0,111,0,
359822,1,22,1,97, 3632109,0,112,0,111,
3599819,16,0,613,1, 36330,117,0,110,0,
36001860,820,17,821,15, 3634100,0,83,0,116,
3601822,4,34,37,0, 36350,97,0,116,0,
3636101,0,109,0,101,
36370,110,0,116,0,
363895,0,49,0,1,
3639161,1,3,1,3,
36401,2,826,22,1,
364122,1,1860,827,17,
3642828,15,829,4,34,
364337,0,68,0,111,
36440,87,0,104,0,
3645105,0,108,0,101,
36460,83,0,116,0,
364797,0,116,0,101,
36480,109,0,101,0,
3649110,0,116,0,1,
3650-1,1,5,830,20,
3651831,4,36,68,0,
3652111,0,87,0,104,
36530,105,0,108,0,
3654101,0,83,0,116,
36550,97,0,116,0,
3656101,0,109,0,101,
36570,110,0,116,0,
365895,0,49,0,1,
3659189,1,3,1,8,
36601,7,832,22,1,
366150,1,97,833,16,
36620,616,1,112,834,
366316,0,616,1,1117,
3664835,16,0,616,1,
36651873,836,17,837,15,
3666829,1,-1,1,5,
3667838,20,839,4,36,
360268,0,111,0,87, 366868,0,111,0,87,
36030,104,0,105,0, 36690,104,0,105,0,
3604108,0,101,0,83, 3670108,0,101,0,83,
36050,116,0,97,0, 36710,116,0,97,0,
3606116,0,101,0,109, 3672116,0,101,0,109,
36070,101,0,110,0, 36730,101,0,110,0,
3608116,0,1,-1,1, 3674116,0,95,0,50,
36095,823,20,824,4, 36750,1,190,1,3,
361036,68,0,111,0, 36761,8,1,7,840,
361187,0,104,0,105, 367722,1,51,1,102,
36120,108,0,101,0, 3678841,16,0,616,1,
361383,0,116,0,97, 36791876,842,16,0,616,
36140,116,0,101,0, 36801,2551,843,16,0,
3615109,0,101,0,110, 3681616,1,124,844,16,
36160,116,0,95,0, 36820,616,1,2136,845,
361749,0,1,186,1, 368317,846,15,711,1,
36183,1,8,1,7, 3684-1,1,5,847,20,
3619825,22,1,49,1, 3685848,4,26,73,0,
3620102,826,16,0,613, 3686102,0,83,0,116,
36211,112,827,16,0,
3622613,1,1117,828,16,
36230,613,1,1873,829,
362417,830,15,822,1,
3625-1,1,5,831,20,
3626832,4,36,68,0,
3627111,0,87,0,104,
36280,105,0,108,0,
3629101,0,83,0,116,
36300,97,0,116,0, 36870,97,0,116,0,
3631101,0,109,0,101, 3688101,0,109,0,101,
36320,110,0,116,0, 36890,110,0,116,0,
363395,0,50,0,1, 369095,0,52,0,1,
3634187,1,3,1,8, 3691186,1,3,1,8,
36351,7,833,22,1, 36921,7,849,22,1,
363650,1,1876,834,16, 369347,1,381,850,16,
36370,613,1,124,835, 36940,616,1,137,851,
363816,0,613,1,2135, 369516,0,616,1,1901,
3639836,17,837,15,709, 3696852,16,0,616,1,
36401,-1,1,5,838, 36971153,853,16,0,616,
364120,839,4,26,73, 36981,151,854,16,0,
36420,102,0,83,0, 3699616,1,1407,855,16,
3643116,0,97,0,116, 37000,616,1,1659,856,
36440,101,0,109,0, 370116,0,616,1,406,
3645101,0,110,0,116, 3702857,16,0,616,1,
36460,95,0,52,0, 37031371,858,16,0,616,
36471,183,1,3,1, 37041,166,859,16,0,
36488,1,7,840,22, 3705616,1,1622,860,16,
36491,46,1,381,841, 37060,616,1,2356,861,
365016,0,613,1,322, 370717,862,15,823,1,
3651842,16,0,613,1, 3708-1,1,5,863,20,
3652137,843,16,0,613, 3709864,4,38,67,0,
36531,1901,844,16,0,
3654613,1,1153,845,16,
36550,613,1,151,846,
365616,0,613,1,1407,
3657847,16,0,613,1,
36581659,848,16,0,613,
36591,406,849,16,0,
3660613,1,1371,850,16,
36610,613,1,166,851,
366216,0,613,1,1622,
3663852,16,0,613,1,
36642354,853,17,854,15,
3665809,1,-1,1,5,
3666855,20,856,4,30,
366783,0,116,0,97,
36680,116,0,101,0,
3669109,0,101,0,110,
36700,116,0,76,0,
3671105,0,115,0,116,
36720,95,0,50,0,
36731,163,1,3,1,
36743,1,2,857,22,
36751,25,1,2355,858,
367617,859,15,815,1,
3677-1,1,5,860,20,
3678861,4,38,67,0,
3679111,0,109,0,112, 3710111,0,109,0,112,
36800,111,0,117,0, 37110,111,0,117,0,
3681110,0,100,0,83, 3712110,0,100,0,83,
@@ -3683,10 +3714,10 @@ public yyLSLSyntax
3683116,0,101,0,109, 3714116,0,101,0,109,
36840,101,0,110,0, 37150,101,0,110,0,
3685116,0,95,0,50, 3716116,0,95,0,50,
36860,1,161,1,3, 37170,1,162,1,3,
36871,4,1,3,862, 37181,4,1,3,865,
368822,1,23,1,1931, 371922,1,23,1,1931,
3689863,17,864,15,865, 3720866,17,867,15,868,
36904,30,37,0,87, 37214,30,37,0,87,
36910,104,0,105,0, 37220,104,0,105,0,
3692108,0,101,0,83, 3723108,0,101,0,83,
@@ -3694,406 +3725,395 @@ public yyLSLSyntax
3694116,0,101,0,109, 3725116,0,101,0,109,
36950,101,0,110,0, 37260,101,0,110,0,
3696116,0,1,-1,1, 3727116,0,1,-1,1,
36975,866,20,867,4, 37285,869,20,870,4,
369832,87,0,104,0, 372932,87,0,104,0,
3699105,0,108,0,101, 3730105,0,108,0,101,
37000,83,0,116,0, 37310,83,0,116,0,
370197,0,116,0,101, 373297,0,116,0,101,
37020,109,0,101,0, 37330,109,0,101,0,
3703110,0,116,0,95, 3734110,0,116,0,95,
37040,49,0,1,184, 37350,49,0,1,187,
37051,3,1,6,1, 37361,3,1,6,1,
37065,868,22,1,47, 37375,871,22,1,48,
37071,1933,869,16,0, 37381,1933,872,16,0,
3708613,1,431,870,16, 3739616,1,431,873,16,
37090,613,1,182,871, 37400,616,1,1585,874,
371016,0,613,1,1189, 374116,0,616,1,182,
3711872,16,0,613,1, 3742875,16,0,616,1,
37121443,873,16,0,613, 37431189,876,16,0,616,
37131,1695,874,16,0, 37441,1443,877,16,0,
3714613,1,447,875,16, 3745616,1,1695,878,16,
37150,613,1,199,876, 37460,616,1,2198,879,
371616,0,613,1,1958, 374716,0,616,1,447,
3717877,16,0,613,1, 3748880,16,0,616,1,
37181657,878,17,879,15, 3749199,881,16,0,616,
3719716,1,-1,1,5, 37501,1958,882,16,0,
3720880,20,881,4,22, 3751616,1,1657,883,17,
372183,0,116,0,97, 3752884,15,718,1,-1,
37220,116,0,101,0, 37531,5,885,20,886,
3723109,0,101,0,110, 37544,22,83,0,116,
37240,116,0,95,0, 37550,97,0,116,0,
372549,0,1,164,1, 3756101,0,109,0,101,
37263,1,3,1,2, 37570,110,0,116,0,
3727882,22,1,27,1, 375895,0,50,0,1,
3728459,883,16,0,613, 3759167,1,3,1,3,
37291,462,884,16,0, 37601,2,887,22,1,
3730613,1,217,885,16, 376128,1,459,888,16,
37310,613,1,2226,886, 37620,616,1,462,889,
373217,887,15,865,1, 376316,0,616,1,217,
3733-1,1,5,888,20, 3764890,16,0,616,1,
3734889,4,32,87,0, 37652227,891,17,892,15,
3735104,0,105,0,108, 3766868,1,-1,1,5,
37360,101,0,83,0, 3767893,20,894,4,32,
3737116,0,97,0,116, 376887,0,104,0,105,
37380,101,0,109,0, 37690,108,0,101,0,
3739101,0,110,0,116,
37400,95,0,50,0,
37411,185,1,3,1,
37426,1,5,890,22,
37431,48,1,1225,891,
374416,0,613,1,1479,
3745892,16,0,613,1,
37461731,893,16,0,613,
37471,1989,894,17,895,
374815,709,1,-1,1,
37495,896,20,897,4,
375026,73,0,102,0,
375183,0,116,0,97, 377083,0,116,0,97,
37520,116,0,101,0, 37710,116,0,101,0,
3753109,0,101,0,110, 3772109,0,101,0,110,
37540,116,0,95,0, 37730,116,0,95,0,
375549,0,1,180,1, 377450,0,1,188,1,
37563,1,6,1,5, 37753,1,6,1,5,
3757898,22,1,43,1, 3776895,22,1,49,1,
37581990,899,16,0,613, 37771225,896,16,0,616,
37591,236,900,16,0, 37781,1479,897,16,0,
3760613,1,1756,901,16, 3779616,1,1731,898,16,
37610,613,1,4,902, 37800,616,1,1989,899,
376219,184,1,4,903, 378117,900,15,711,1,
37635,96,1,256,904, 3782-1,1,5,901,20,
376416,0,542,1,1261, 3783902,4,26,73,0,
3765905,16,0,542,1, 3784102,0,83,0,116,
3766509,906,16,0,542, 37850,97,0,116,0,
37671,2197,907,16,0, 3786101,0,109,0,101,
3768542,1,1515,908,16, 37870,110,0,116,0,
37690,542,1,2021,707, 378895,0,49,0,1,
37701,1775,909,16,0, 3789183,1,3,1,6,
3771542,1,2029,714,1, 37901,5,903,22,1,
37722030,720,1,2031,725, 379144,1,1990,904,16,
37731,2032,730,1,2033, 37920,616,1,236,905,
3774735,1,277,910,16, 379316,0,616,1,1756,
37750,542,1,2035,741, 3794906,16,0,616,1,
37761,2037,746,1,2039, 37954,907,19,184,1,
3777751,1,32,911,16, 37964,908,5,96,1,
37780,542,1,2041,757, 3797256,909,16,0,536,
37791,2043,762,1,2044, 37981,1261,910,16,0,
3780767,1,40,912,16, 3799536,1,509,911,16,
37810,186,1,41,913, 38000,536,1,1515,912,
378216,0,542,1,1297, 380116,0,536,1,2021,
3783914,16,0,542,1, 3802709,1,1775,913,16,
378443,915,16,0,542, 38030,536,1,2029,716,
37851,44,916,16,0, 38041,2030,722,1,2031,
3786186,1,1802,774,1, 3805727,1,2032,732,1,
37871804,917,16,0,542, 38062033,737,1,277,914,
37881,299,918,16,0, 380716,0,536,1,2035,
3789542,1,2309,919,16, 3808743,1,2037,748,1,
37900,542,1,52,920, 38092039,753,1,32,915,
379116,0,542,1,47, 381016,0,536,1,2041,
3792921,16,0,182,1, 3811759,1,2043,764,1,
3793525,922,16,0,542, 38122045,769,1,40,916,
37941,63,923,16,0, 381316,0,186,1,2551,
3795200,1,2074,924,16, 3814917,16,0,536,1,
37960,542,1,1574,787, 38151297,918,16,0,536,
37971,66,925,16,0, 38161,43,919,16,0,
3798198,1,71,926,16, 3817536,1,41,920,16,
37990,542,1,76,927, 38180,536,1,1802,777,
380016,0,542,1,1834, 38191,1804,921,16,0,
3801928,16,0,542,1, 3820536,1,299,922,16,
380279,929,16,0,542, 38210,536,1,44,923,
38031,1335,930,16,0, 382216,0,186,1,2310,
3804542,1,322,931,16, 3823924,16,0,536,1,
38050,542,1,85,932, 382452,925,16,0,536,
380616,0,542,1,89, 38251,47,926,16,0,
3807933,16,0,542,1, 3826182,1,525,927,16,
3808346,934,16,0,542, 38270,536,1,63,928,
38091,2104,801,1,2105, 382816,0,201,1,66,
3810935,16,0,542,1, 3829929,16,0,199,1,
38112358,807,1,2360,813, 38302075,930,16,0,536,
38121,97,936,16,0, 38311,1574,790,1,71,
3813542,1,1860,820,1, 3832931,16,0,536,1,
3814102,937,16,0,542, 383376,932,16,0,536,
38151,1114,938,16,0, 38341,1834,933,16,0,
3816182,1,112,939,16, 3835536,1,79,934,16,
38170,542,1,1117,940, 38360,536,1,1335,935,
381816,0,542,1,1873, 383716,0,536,1,322,
3819829,1,1876,941,16, 3838936,16,0,536,1,
38200,542,1,2550,942, 383985,937,16,0,536,
382116,0,542,1,124, 38401,89,938,16,0,
3822943,16,0,542,1, 3841536,1,346,939,16,
38232135,836,1,381,944, 38420,536,1,2355,804,
382416,0,542,1,137, 38431,2105,810,1,2106,
3825945,16,0,542,1, 3844940,16,0,536,1,
38261901,946,16,0,542, 38452359,816,1,2361,821,
38271,1153,947,16,0, 38461,1860,827,1,97,
3828542,1,151,948,16, 3847941,16,0,536,1,
38290,542,1,1407,949, 38481114,942,16,0,182,
383016,0,542,1,1659, 38491,112,943,16,0,
3831950,16,0,542,1, 3850536,1,1117,944,16,
3832406,951,16,0,542, 38510,536,1,1873,836,
38331,1371,952,16,0, 38521,102,945,16,0,
3834542,1,166,953,16, 3853536,1,1876,946,16,
38350,542,1,1622,954, 38540,536,1,124,947,
383616,0,542,1,2354, 385516,0,536,1,2136,
3837853,1,2355,858,1, 3856845,1,381,948,16,
38381931,863,1,1933,955, 38570,536,1,137,949,
383916,0,542,1,431, 385816,0,536,1,1901,
3840956,16,0,542,1, 3859950,16,0,536,1,
38411585,957,16,0,542, 38601153,951,16,0,536,
38421,182,958,16,0, 38611,151,952,16,0,
3843542,1,1189,959,16, 3862536,1,1407,953,16,
38440,542,1,1443,960, 38630,536,1,1659,954,
384516,0,542,1,1695, 386416,0,536,1,406,
3846961,16,0,542,1, 3865955,16,0,536,1,
3847447,962,16,0,542, 38661371,956,16,0,536,
38481,199,963,16,0, 38671,166,957,16,0,
3849542,1,1958,964,16, 3868536,1,1622,958,16,
38500,542,1,1657,878, 38690,536,1,2356,861,
38511,459,965,16,0, 38701,1931,866,1,1933,
3852542,1,462,966,16, 3871959,16,0,536,1,
38530,542,1,217,967, 3872431,960,16,0,536,
385416,0,542,1,2226, 38731,1585,961,16,0,
3855886,1,1225,968,16, 3874536,1,182,962,16,
38560,542,1,1479,969, 38750,536,1,1189,963,
385716,0,542,1,1731, 387616,0,536,1,1443,
3858970,16,0,542,1, 3877964,16,0,536,1,
38591989,894,1,1990,971, 38781695,965,16,0,536,
386016,0,542,1,236, 38791,2198,966,16,0,
3861972,16,0,542,1, 3880536,1,447,967,16,
38621756,973,16,0,542, 38810,536,1,199,968,
38631,5,974,19,181, 388216,0,536,1,1958,
38641,5,975,5,96, 3883969,16,0,536,1,
38651,256,976,16,0, 38841657,883,1,459,970,
3866538,1,1261,977,16, 388516,0,536,1,462,
38670,538,1,509,978, 3886971,16,0,536,1,
386816,0,538,1,2197, 3887217,972,16,0,536,
3869979,16,0,538,1, 38881,2227,891,1,1225,
38701515,980,16,0,538, 3889973,16,0,536,1,
38711,2021,707,1,1775, 38901479,974,16,0,536,
3872981,16,0,538,1, 38911,1731,975,16,0,
38732029,714,1,2030,720, 3892536,1,1989,899,1,
38741,2031,725,1,2032, 38931990,976,16,0,536,
3875730,1,2033,735,1, 38941,236,977,16,0,
3876277,982,16,0,538, 3895536,1,1756,978,16,
38771,2035,741,1,2037, 38960,536,1,5,979,
3878746,1,2039,751,1, 389719,181,1,5,980,
387932,983,16,0,538, 38985,96,1,256,981,
38801,2041,757,1,2043, 389916,0,532,1,1261,
3881762,1,2044,767,1, 3900982,16,0,532,1,
388240,984,16,0,185, 3901509,983,16,0,532,
38831,41,985,16,0, 39021,1515,984,16,0,
3884538,1,1297,986,16, 3903532,1,2021,709,1,
38850,538,1,43,987, 39041775,985,16,0,532,
388616,0,538,1,44, 39051,2029,716,1,2030,
3887988,16,0,185,1, 3906722,1,2031,727,1,
38881802,774,1,1804,989, 39072032,732,1,2033,737,
388916,0,538,1,299, 39081,277,986,16,0,
3890990,16,0,538,1, 3909532,1,2035,743,1,
38912309,991,16,0,538, 39102037,748,1,2039,753,
38921,52,992,16,0, 39111,32,987,16,0,
3893538,1,47,993,16, 3912532,1,2041,759,1,
38940,179,1,525,994, 39132043,764,1,2045,769,
389516,0,538,1,63, 39141,40,988,16,0,
3896995,16,0,199,1, 3915185,1,2551,989,16,
38972074,996,16,0,538, 39160,532,1,1297,990,
38981,1574,787,1,66, 391716,0,532,1,43,
3899997,16,0,197,1, 3918991,16,0,532,1,
390071,998,16,0,538, 391941,992,16,0,532,
39011,76,999,16,0, 39201,1802,777,1,1804,
3902538,1,1834,1000,16, 3921993,16,0,532,1,
39030,538,1,79,1001, 3922299,994,16,0,532,
390416,0,538,1,1335, 39231,44,995,16,0,
39051002,16,0,538,1, 3924185,1,2310,996,16,
3906322,1003,16,0,538, 39250,532,1,52,997,
39071,85,1004,16,0, 392616,0,532,1,47,
3908538,1,89,1005,16, 3927998,16,0,179,1,
39090,538,1,346,1006, 3928525,999,16,0,532,
391016,0,538,1,2104, 39291,63,1000,16,0,
3911801,1,2105,1007,16, 3930200,1,66,1001,16,
39120,538,1,2358,807, 39310,198,1,2075,1002,
39131,2360,813,1,97, 393216,0,532,1,1574,
39141008,16,0,538,1, 3933790,1,71,1003,16,
39151860,820,1,102,1009, 39340,532,1,76,1004,
391616,0,538,1,1114, 393516,0,532,1,1834,
39171010,16,0,179,1, 39361005,16,0,532,1,
3918112,1011,16,0,538, 393779,1006,16,0,532,
39191,1117,1012,16,0, 39381,1335,1007,16,0,
3920538,1,1873,829,1, 3939532,1,322,1008,16,
39211876,1013,16,0,538, 39400,532,1,85,1009,
39221,2550,1014,16,0, 394116,0,532,1,89,
3923538,1,124,1015,16, 39421010,16,0,532,1,
39240,538,1,2135,836, 3943346,1011,16,0,532,
39251,381,1016,16,0, 39441,2355,804,1,2105,
3926538,1,137,1017,16, 3945810,1,2106,1012,16,
39270,538,1,1901,1018, 39460,532,1,2359,816,
392816,0,538,1,1153, 39471,2361,821,1,1860,
39291019,16,0,538,1, 3948827,1,97,1013,16,
3930151,1020,16,0,538, 39490,532,1,1114,1014,
39311,1407,1021,16,0, 395016,0,179,1,112,
3932538,1,1659,1022,16, 39511015,16,0,532,1,
39330,538,1,406,1023, 39521117,1016,16,0,532,
393416,0,538,1,1371, 39531,1873,836,1,102,
39351024,16,0,538,1, 39541017,16,0,532,1,
3936166,1025,16,0,538, 39551876,1018,16,0,532,
39371,1622,1026,16,0, 39561,124,1019,16,0,
3938538,1,2354,853,1, 3957532,1,2136,845,1,
39392355,858,1,1931,863, 3958381,1020,16,0,532,
39401,1933,1027,16,0, 39591,137,1021,16,0,
3941538,1,431,1028,16, 3960532,1,1901,1022,16,
39420,538,1,1585,1029, 39610,532,1,1153,1023,
394316,0,538,1,182, 396216,0,532,1,151,
39441030,16,0,538,1, 39631024,16,0,532,1,
39451189,1031,16,0,538, 39641407,1025,16,0,532,
39461,1443,1032,16,0, 39651,1659,1026,16,0,
3947538,1,1695,1033,16, 3966532,1,406,1027,16,
39480,538,1,447,1034, 39670,532,1,1371,1028,
394916,0,538,1,199, 396816,0,532,1,166,
39501035,16,0,538,1, 39691029,16,0,532,1,
39511958,1036,16,0,538, 39701622,1030,16,0,532,
39521,1657,878,1,459, 39711,2356,861,1,1931,
39531037,16,0,538,1, 3972866,1,1933,1031,16,
3954462,1038,16,0,538, 39730,532,1,431,1032,
39551,217,1039,16,0, 397416,0,532,1,1585,
3956538,1,2226,886,1, 39751033,16,0,532,1,
39571225,1040,16,0,538, 3976182,1034,16,0,532,
39581,1479,1041,16,0, 39771,1189,1035,16,0,
3959538,1,1731,1042,16, 3978532,1,1443,1036,16,
39600,538,1,1989,894, 39790,532,1,1695,1037,
39611,1990,1043,16,0, 398016,0,532,1,2198,
3962538,1,236,1044,16, 39811038,16,0,532,1,
39630,538,1,1756,1045, 3982447,1039,16,0,532,
396416,0,538,1,6, 39831,199,1040,16,0,
39651046,19,292,1,6, 3984532,1,1958,1041,16,
39661047,5,2,1,1114, 39850,532,1,1657,883,
39671048,16,0,290,1, 39861,459,1042,16,0,
396840,1049,16,0,527, 3987532,1,462,1043,16,
39691,7,1050,19,241, 39880,532,1,217,1044,
39701,7,1051,5,2, 398916,0,532,1,2227,
39711,1114,1052,16,0, 3990891,1,1225,1045,16,
3972239,1,40,1053,16, 39910,532,1,1479,1046,
39730,487,1,8,1054, 399216,0,532,1,1731,
397419,206,1,8,1055, 39931047,16,0,532,1,
39755,2,1,1114,1056, 39941989,899,1,1990,1048,
397616,0,204,1,40, 399516,0,532,1,236,
39771057,16,0,454,1, 39961049,16,0,532,1,
39789,1058,19,212,1, 39971756,1050,16,0,532,
39799,1059,5,2,1, 39981,6,1051,19,284,
39801114,1060,16,0,210, 39991,6,1052,5,2,
39811,40,1061,16,0, 40001,1114,1053,16,0,
3982436,1,10,1062,19, 4001282,1,40,1054,16,
3983164,1,10,1063,5, 40020,521,1,7,1055,
39842,1,1114,1064,16, 400319,238,1,7,1056,
39850,162,1,40,1065, 40045,2,1,1114,1057,
398616,0,390,1,11, 400516,0,236,1,40,
39871066,19,191,1,11, 40061058,16,0,481,1,
39881067,5,141,1,1260, 40078,1059,19,207,1,
39891068,17,1069,15,1070, 40088,1060,5,2,1,
39904,34,37,0,83, 40091114,1061,16,0,205,
39910,105,0,109,0, 40101,40,1062,16,0,
3992112,0,108,0,101, 4011451,1,9,1063,19,
39930,65,0,115,0, 4012213,1,9,1064,5,
3994115,0,105,0,103, 40132,1,1114,1065,16,
39950,110,0,109,0, 40140,211,1,40,1066,
3996101,0,110,0,116, 401516,0,432,1,10,
39970,1,-1,1,5, 40161067,19,164,1,10,
39981071,20,1072,4,38, 40171068,5,2,1,1114,
399983,0,105,0,109, 40181069,16,0,162,1,
40000,112,0,108,0, 401940,1070,16,0,384,
4001101,0,65,0,115, 40201,11,1071,19,192,
40020,115,0,105,0, 40211,11,1072,5,142,
4003103,0,110,0,109, 40221,1260,1073,17,1074,
40040,101,0,110,0, 402315,1075,4,34,37,
4005116,0,95,0,50, 40240,83,0,105,0,
40060,49,0,1,215,
40071,3,1,6,1,
40085,1073,22,1,78,
40091,1011,1074,17,1075,
401015,1076,4,44,37,
40110,80,0,97,0,
4012114,0,101,0,110,
40130,116,0,104,0,
4014101,0,115,0,105,
40150,115,0,69,0,
4016120,0,112,0,114,
40170,101,0,115,0,
4018115,0,105,0,111,
40190,110,0,1,-1,
40201,5,1077,20,1078,
40214,46,80,0,97,
40220,114,0,101,0,
4023110,0,116,0,104,
40240,101,0,115,0,
4025105,0,115,0,69,
40260,120,0,112,0,
4027114,0,101,0,115,
40280,115,0,105,0,
4029111,0,110,0,95,
40300,50,0,1,262,
40311,3,1,4,1,
40323,1079,22,1,125,
40331,1514,1080,17,1081,
403415,1070,1,-1,1,
40355,1082,20,1083,4,
403638,83,0,105,0,
4037109,0,112,0,108, 4025109,0,112,0,108,
40380,101,0,65,0, 40260,101,0,65,0,
4039115,0,115,0,105, 4027115,0,115,0,105,
40400,103,0,110,0, 40280,103,0,110,0,
4041109,0,101,0,110, 4029109,0,101,0,110,
40420,116,0,95,0, 40300,116,0,1,-1,
404349,0,52,0,1, 40311,5,1076,20,1077,
4044208,1,3,1,4, 40324,38,83,0,105,
40451,3,1084,22,1,
404671,1,9,1085,17,
40471086,15,1087,4,24,
404837,0,68,0,101,
40490,99,0,108,0,
405097,0,114,0,97,
40510,116,0,105,0,
4052111,0,110,0,1,
4053-1,1,5,1088,20,
40541089,4,26,68,0,
4055101,0,99,0,108,
40560,97,0,114,0,
405797,0,116,0,105,
40580,111,0,110,0,
405995,0,49,0,1,
4060159,1,3,1,3,
40611,2,1090,22,1,
406221,1,262,1091,17,
40631092,15,1093,4,34,
406437,0,66,0,105,
40650,110,0,97,0,
4066114,0,121,0,69,
40670,120,0,112,0,
4068114,0,101,0,115,
40690,115,0,105,0,
4070111,0,110,0,1,
4071-1,1,5,1094,20,
40721095,4,36,66,0,
4073105,0,110,0,97,
40740,114,0,121,0,
407569,0,120,0,112,
40760,114,0,101,0,
4077115,0,115,0,105,
40780,111,0,110,0,
407995,0,53,0,1,
4080244,1,3,1,4,
40811,3,1096,22,1,
4082107,1,1267,1097,17,
40831098,15,1070,1,-1,
40841,5,1099,20,1100,
40854,36,83,0,105,
40860,109,0,112,0, 40330,109,0,112,0,
4087108,0,101,0,65, 4034108,0,101,0,65,
40880,115,0,115,0, 40350,115,0,115,0,
4089105,0,103,0,110, 4036105,0,103,0,110,
40900,109,0,101,0, 40370,109,0,101,0,
4091110,0,116,0,95, 4038110,0,116,0,95,
40920,56,0,1,202, 40390,50,0,49,0,
40931,3,1,6,1, 40401,218,1,3,1,
40945,1101,22,1,65, 40416,1,5,1078,22,
40951,2021,707,1,1521, 40421,79,1,1011,1079,
40961102,17,1103,15,1070, 404317,1080,15,1081,4,
404444,37,0,80,0,
404597,0,114,0,101,
40460,110,0,116,0,
4047104,0,101,0,115,
40480,105,0,115,0,
404969,0,120,0,112,
40500,114,0,101,0,
4051115,0,115,0,105,
40520,111,0,110,0,
40531,-1,1,5,1082,
405420,1083,4,46,80,
40550,97,0,114,0,
4056101,0,110,0,116,
40570,104,0,101,0,
4058115,0,105,0,115,
40590,69,0,120,0,
4060112,0,114,0,101,
40610,115,0,115,0,
4062105,0,111,0,110,
40630,95,0,50,0,
40641,265,1,3,1,
40654,1,3,1084,22,
40661,126,1,1514,1085,
406717,1086,15,1075,1,
4068-1,1,5,1087,20,
40691088,4,38,83,0,
4070105,0,109,0,112,
40710,108,0,101,0,
407265,0,115,0,115,
40730,105,0,103,0,
4074110,0,109,0,101,
40750,110,0,116,0,
407695,0,49,0,52,
40770,1,211,1,3,
40781,4,1,3,1089,
407922,1,72,1,9,
40801090,17,1091,15,1092,
40814,24,37,0,68,
40820,101,0,99,0,
4083108,0,97,0,114,
40840,97,0,116,0,
4085105,0,111,0,110,
40860,1,-1,1,5,
40871093,20,1094,4,26,
408868,0,101,0,99,
40890,108,0,97,0,
4090114,0,97,0,116,
40910,105,0,111,0,
4092110,0,95,0,49,
40930,1,160,1,3,
40941,3,1,2,1095,
409522,1,21,1,262,
40961096,17,1097,15,1098,
40974,34,37,0,66,
40980,105,0,110,0,
409997,0,114,0,121,
41000,69,0,120,0,
4101112,0,114,0,101,
41020,115,0,115,0,
4103105,0,111,0,110,
41040,1,-1,1,5,
41051099,20,1100,4,36,
410666,0,105,0,110,
41070,97,0,114,0,
4108121,0,69,0,120,
41090,112,0,114,0,
4110101,0,115,0,115,
41110,105,0,111,0,
4112110,0,95,0,53,
41130,1,247,1,3,
41141,4,1,3,1101,
411522,1,108,1,1267,
41161102,17,1103,15,1075,
40971,-1,1,5,1104, 41171,-1,1,5,1104,
409820,1105,4,36,83, 411820,1105,4,36,83,
40990,105,0,109,0, 41190,105,0,109,0,
@@ -4102,198 +4122,226 @@ public yyLSLSyntax
4102115,0,105,0,103, 4122115,0,105,0,103,
41030,110,0,109,0, 41230,110,0,109,0,
4104101,0,110,0,116, 4124101,0,110,0,116,
41050,95,0,49,0, 41250,95,0,56,0,
41061,195,1,3,1, 41261,205,1,3,1,
41074,1,3,1106,22, 41276,1,5,1106,22,
41081,58,1,2024,1107, 41281,66,1,2021,709,
410917,1108,15,1109,4, 41291,1521,1107,17,1108,
411024,37,0,83,0, 413015,1075,1,-1,1,
4111116,0,97,0,116, 41315,1109,20,1110,4,
41120,101,0,67,0, 413236,83,0,105,0,
4113104,0,97,0,110, 4133109,0,112,0,108,
41140,103,0,101,0, 41340,101,0,65,0,
41151,-1,1,5,1110, 4135115,0,115,0,105,
411620,1111,4,26,83, 41360,103,0,110,0,
41170,116,0,97,0, 4137109,0,101,0,110,
4118116,0,101,0,67, 41380,116,0,95,0,
41190,104,0,97,0, 413949,0,1,198,1,
4120110,0,103,0,101, 41403,1,4,1,3,
41210,95,0,49,0, 41411111,22,1,59,1,
41221,178,1,3,1, 41422024,1112,17,1113,15,
41233,1,2,1112,22, 41431114,4,24,37,0,
41241,41,1,1775,1113, 414483,0,116,0,97,
412516,0,582,1,19, 41450,116,0,101,0,
41261114,17,1086,1,2, 414667,0,104,0,97,
41271090,1,2028,1115,17, 41470,110,0,103,0,
41281116,15,1117,4,20, 4148101,0,1,-1,1,
412937,0,74,0,117, 41495,1115,20,1116,4,
415026,83,0,116,0,
415197,0,116,0,101,
41520,67,0,104,0,
415397,0,110,0,103,
41540,101,0,95,0,
415549,0,1,181,1,
41563,1,3,1,2,
41571117,22,1,42,1,
41581775,1118,17,1119,15,
41591120,4,30,37,0,
416069,0,109,0,112,
41610,116,0,121,0,
416283,0,116,0,97,
41630,116,0,101,0,
4164109,0,101,0,110,
41650,116,0,1,-1,
41661,5,1121,20,1122,
41674,32,69,0,109,
41680,112,0,116,0,
4169121,0,83,0,116,
41700,97,0,116,0,
4171101,0,109,0,101,
41720,110,0,116,0,
417395,0,49,0,1,
4174165,1,3,1,1,
41751,0,1123,22,1,
417626,1,19,1124,17,
41771091,1,2,1095,1,
41782028,1125,17,1126,15,
41791127,4,20,37,0,
418074,0,117,0,109,
41810,112,0,76,0,
418297,0,98,0,101,
41830,108,0,1,-1,
41841,5,1128,20,1129,
41854,22,74,0,117,
41300,109,0,112,0, 41860,109,0,112,0,
413176,0,97,0,98, 418776,0,97,0,98,
41320,101,0,108,0, 41880,101,0,108,0,
41331,-1,1,5,1118, 418995,0,49,0,1,
413420,1119,4,22,74, 4190179,1,3,1,3,
41350,117,0,109,0, 41911,2,1130,22,1,
4136112,0,76,0,97, 419240,1,2029,716,1,
41370,98,0,101,0, 41932281,1131,17,1132,15,
4138108,0,95,0,49, 41941133,4,34,37,0,
41390,1,176,1,3,
41401,3,1,2,1120,
414122,1,39,1,2280,
41421121,17,1122,15,1123,
41434,34,37,0,70,
41440,111,0,114,0,
414576,0,111,0,111,
41460,112,0,83,0,
4147116,0,97,0,116,
41480,101,0,109,0,
4149101,0,110,0,116,
41500,1,-1,1,5,
41511124,20,1125,4,36,
415270,0,111,0,114, 419570,0,111,0,114,
41530,76,0,111,0, 41960,76,0,111,0,
4154111,0,112,0,83, 4197111,0,112,0,83,
41550,116,0,97,0, 41980,116,0,97,0,
4156116,0,101,0,109, 4199116,0,101,0,109,
41570,101,0,110,0, 42000,101,0,110,0,
4158116,0,95,0,50, 4201116,0,1,-1,1,
41590,1,190,1,3, 42025,1134,20,1135,4,
41601,2,1,1,1126, 420336,70,0,111,0,
416122,1,53,1,2030, 4204114,0,76,0,111,
4162720,1,2031,725,1, 42050,111,0,112,0,
41632032,730,1,2033,735, 420683,0,116,0,97,
41641,2034,1127,16,0, 42070,116,0,101,0,
4165573,1,2035,741,1, 4208109,0,101,0,110,
41662036,1128,16,0,528, 42090,116,0,95,0,
41671,2037,746,1,2038, 421050,0,1,193,1,
41681129,16,0,532,1, 42113,1,2,1,1,
41692039,751,1,32,1130, 42121136,22,1,54,1,
417016,0,582,1,2041, 42132031,727,1,2032,732,
4171757,1,2042,1131,16, 42141,2033,737,1,2034,
41720,635,1,2043,762, 42151137,16,0,570,1,
41731,2044,767,1,2226, 42162035,743,1,2036,1138,
4174886,1,2549,1132,16, 421716,0,522,1,2037,
41750,583,1,40,1133, 4218748,1,2038,1139,16,
417617,1134,15,1135,4, 42190,526,1,2039,753,
417732,37,0,73,0, 42201,32,1140,17,1119,
4178100,0,101,0,110, 42211,0,1123,1,2041,
41790,116,0,69,0, 4222759,1,2042,1141,16,
4180120,0,112,0,114, 42230,640,1,2043,764,
41810,101,0,115,0, 42241,2044,1142,16,0,
4182115,0,105,0,111, 4225582,1,2045,769,1,
41830,110,0,1,-1, 422640,1143,17,1144,15,
41841,5,1136,20,1137, 42271145,4,32,37,0,
41854,34,73,0,100, 422873,0,100,0,101,
41860,101,0,110,0,
4187116,0,69,0,120,
41880,112,0,114,0,
4189101,0,115,0,115,
41900,105,0,111,0,
4191110,0,95,0,49,
41920,1,229,1,3,
41931,2,1,1,1138,
419422,1,92,1,1296,
41951139,17,1140,15,1070,
41961,-1,1,5,1141,
419720,1142,4,38,83,
41980,105,0,109,0,
4199112,0,108,0,101,
42000,65,0,115,0,
4201115,0,105,0,103,
42020,110,0,109,0,
4203101,0,110,0,116,
42040,95,0,50,0,
420548,0,1,214,1,
42063,1,6,1,5,
42071143,22,1,77,1,
4208283,1144,17,1145,15,
42091093,1,-1,1,5,
42101146,20,1147,4,36,
421166,0,105,0,110,
42120,97,0,114,0,
4213121,0,69,0,120,
42140,112,0,114,0,
4215101,0,115,0,115,
42160,105,0,111,0,
4217110,0,95,0,52,
42180,1,243,1,3,
42191,4,1,3,1148,
422022,1,106,1,44,
42211149,17,1134,1,1,
42221138,1,1802,774,1,
42232556,1150,16,0,497,
42241,47,1151,17,1152,
422515,1153,4,38,37,
42260,73,0,100,0,
4227101,0,110,0,116,
42280,68,0,111,0,
4229116,0,69,0,120,
42300,112,0,114,0,
4231101,0,115,0,115,
42320,105,0,111,0,
4233110,0,1,-1,1,
42345,1154,20,1155,4,
423540,73,0,100,0,
4236101,0,110,0,116,
42370,68,0,111,0,
4238116,0,69,0,120,
42390,112,0,114,0,
4240101,0,115,0,115,
42410,105,0,111,0,
4242110,0,95,0,49,
42430,1,230,1,3,
42441,4,1,3,1156,
424522,1,93,1,48,
42461157,17,1158,15,1159,
42474,58,37,0,73,
42480,110,0,99,0,
4249114,0,101,0,109,
42500,101,0,110,0,
4251116,0,68,0,101,
42520,99,0,114,0,
4253101,0,109,0,101,
42540,110,0,116,0, 42290,110,0,116,0,
425569,0,120,0,112, 423069,0,120,0,112,
42560,114,0,101,0, 42310,114,0,101,0,
4257115,0,115,0,105, 4232115,0,115,0,105,
42580,111,0,110,0, 42330,111,0,110,0,
42591,-1,1,5,1160, 42341,-1,1,5,1146,
426020,1161,4,60,73, 423520,1147,4,34,73,
42610,110,0,99,0, 42360,100,0,101,0,
4262114,0,101,0,109, 4237110,0,116,0,69,
42630,101,0,110,0, 42380,120,0,112,0,
4264116,0,68,0,101, 4239114,0,101,0,115,
42650,99,0,114,0, 42400,115,0,105,0,
4266101,0,109,0,101, 4241111,0,110,0,95,
42670,110,0,116,0, 42420,49,0,1,232,
426869,0,120,0,112, 42431,3,1,2,1,
42690,114,0,101,0, 42441,1148,22,1,93,
42451,1296,1149,17,1150,
424615,1075,1,-1,1,
42475,1151,20,1152,4,
424838,83,0,105,0,
4249109,0,112,0,108,
42500,101,0,65,0,
4270115,0,115,0,105, 4251115,0,115,0,105,
42710,111,0,110,0, 42520,103,0,110,0,
427295,0,52,0,1,
4273234,1,3,1,5,
42741,4,1162,22,1,
427597,1,49,1163,17,
42761164,15,1159,1,-1,
42771,5,1165,20,1166,
42784,60,73,0,110,
42790,99,0,114,0,
4280101,0,109,0,101,
42810,110,0,116,0,
428268,0,101,0,99,
42830,114,0,101,0,
4284109,0,101,0,110, 4253109,0,101,0,110,
42540,116,0,95,0,
425550,0,48,0,1,
4256217,1,3,1,6,
42571,5,1153,22,1,
425878,1,283,1154,17,
42591155,15,1098,1,-1,
42601,5,1156,20,1157,
42614,36,66,0,105,
42620,110,0,97,0,
4263114,0,121,0,69,
42640,120,0,112,0,
4265114,0,101,0,115,
42660,115,0,105,0,
4267111,0,110,0,95,
42680,52,0,1,246,
42691,3,1,4,1,
42703,1158,22,1,107,
42711,44,1159,17,1144,
42721,1,1148,1,1802,
4273777,1,47,1160,17,
42741161,15,1162,4,38,
427537,0,73,0,100,
42760,101,0,110,0,
4277116,0,68,0,111,
42780,116,0,69,0,
4279120,0,112,0,114,
42800,101,0,115,0,
4281115,0,105,0,111,
42820,110,0,1,-1,
42831,5,1163,20,1164,
42844,40,73,0,100,
42850,101,0,110,0,
4286116,0,68,0,111,
42850,116,0,69,0, 42870,116,0,69,0,
4286120,0,112,0,114, 4288120,0,112,0,114,
42870,101,0,115,0, 42890,101,0,115,0,
4288115,0,105,0,111, 4290115,0,105,0,111,
42890,110,0,95,0, 42910,110,0,95,0,
429051,0,1,233,1, 429249,0,1,233,1,
42913,1,5,1,4, 42933,1,4,1,3,
42921167,22,1,96,1, 42941165,22,1,94,1,
42932309,1168,16,0,582, 429548,1166,17,1167,15,
42941,51,1169,17,1170, 42961168,4,58,37,0,
429515,1159,1,-1,1, 429773,0,110,0,99,
42965,1171,20,1172,4, 42980,114,0,101,0,
4299109,0,101,0,110,
43000,116,0,68,0,
4301101,0,99,0,114,
43020,101,0,109,0,
4303101,0,110,0,116,
43040,69,0,120,0,
4305112,0,114,0,101,
43060,115,0,115,0,
4307105,0,111,0,110,
43080,1,-1,1,5,
43091169,20,1170,4,60,
431073,0,110,0,99,
43110,114,0,101,0,
4312109,0,101,0,110,
43130,116,0,68,0,
4314101,0,99,0,114,
43150,101,0,109,0,
4316101,0,110,0,116,
43170,69,0,120,0,
4318112,0,114,0,101,
43190,115,0,115,0,
4320105,0,111,0,110,
43210,95,0,52,0,
43221,237,1,3,1,
43235,1,4,1171,22,
43241,98,1,49,1172,
432517,1173,15,1168,1,
4326-1,1,5,1174,20,
43271175,4,60,73,0,
4328110,0,99,0,114,
43290,101,0,109,0,
4330101,0,110,0,116,
43310,68,0,101,0,
433299,0,114,0,101,
43330,109,0,101,0,
4334110,0,116,0,69,
43350,120,0,112,0,
4336114,0,101,0,115,
43370,115,0,105,0,
4338111,0,110,0,95,
43390,51,0,1,236,
43401,3,1,5,1,
43414,1176,22,1,97,
43421,50,1177,17,1178,
434315,1168,1,-1,1,
43445,1179,20,1180,4,
429760,73,0,110,0, 434560,73,0,110,0,
429899,0,114,0,101, 434699,0,114,0,101,
42990,109,0,101,0, 43470,109,0,101,0,
@@ -4305,13 +4353,13 @@ public yyLSLSyntax
43050,112,0,114,0, 43530,112,0,114,0,
4306101,0,115,0,115, 4354101,0,115,0,115,
43070,105,0,111,0, 43550,105,0,111,0,
4308110,0,95,0,49, 4356110,0,95,0,50,
43090,1,231,1,3, 43570,1,235,1,3,
43101,3,1,2,1173, 43581,3,1,2,1181,
431122,1,94,1,50, 435922,1,96,1,51,
43121174,17,1175,15,1159, 43601182,17,1183,15,1168,
43131,-1,1,5,1176, 43611,-1,1,5,1184,
431420,1177,4,60,73, 436220,1185,4,60,73,
43150,110,0,99,0, 43630,110,0,99,0,
4316114,0,101,0,109, 4364114,0,101,0,109,
43170,101,0,110,0, 43650,101,0,110,0,
@@ -4323,12 +4371,12 @@ public yyLSLSyntax
43230,114,0,101,0, 43710,114,0,101,0,
4324115,0,115,0,105, 4372115,0,115,0,105,
43250,111,0,110,0, 43730,111,0,110,0,
432695,0,50,0,1, 437495,0,49,0,1,
4327232,1,3,1,3, 4375234,1,3,1,3,
43281,2,1178,22,1, 43761,2,1186,22,1,
432995,1,305,1179,17, 437795,1,305,1187,17,
43301180,15,1093,1,-1, 43781188,15,1098,1,-1,
43311,5,1181,20,1182, 43791,5,1189,20,1190,
43324,36,66,0,105, 43804,36,66,0,105,
43330,110,0,97,0, 43810,110,0,97,0,
4334114,0,121,0,69, 4382114,0,121,0,69,
@@ -4336,11 +4384,11 @@ public yyLSLSyntax
4336114,0,101,0,115, 4384114,0,101,0,115,
43370,115,0,105,0, 43850,115,0,105,0,
4338111,0,110,0,95, 4386111,0,110,0,95,
43390,51,0,1,242, 43870,51,0,1,245,
43401,3,1,4,1, 43881,3,1,4,1,
43413,1183,22,1,105, 43893,1191,22,1,106,
43421,525,1184,17,1185, 43901,525,1192,17,1193,
434315,1186,4,34,37, 439115,1194,4,34,37,
43440,82,0,111,0, 43920,82,0,111,0,
4345116,0,97,0,116, 4393116,0,97,0,116,
43460,105,0,111,0, 43940,105,0,111,0,
@@ -4348,7 +4396,7 @@ public yyLSLSyntax
43480,110,0,115,0, 43960,110,0,115,0,
4349116,0,97,0,110, 4397116,0,97,0,110,
43500,116,0,1,-1, 43980,116,0,1,-1,
43511,5,1187,20,1188, 43991,5,1195,20,1196,
43524,36,82,0,111, 44004,36,82,0,111,
43530,116,0,97,0, 44010,116,0,97,0,
4354116,0,105,0,111, 4402116,0,105,0,111,
@@ -4356,11 +4404,11 @@ public yyLSLSyntax
4356111,0,110,0,115, 4404111,0,110,0,115,
43570,116,0,97,0, 44050,116,0,97,0,
4358110,0,116,0,95, 4406110,0,116,0,95,
43590,49,0,1,227, 44070,49,0,1,230,
43601,3,1,10,1, 44081,3,1,10,1,
43619,1189,22,1,90, 44099,1197,22,1,91,
43621,63,1190,17,1191, 44101,63,1198,17,1199,
436315,1192,4,38,37, 441115,1200,4,38,37,
43640,84,0,121,0, 44120,84,0,121,0,
4365112,0,101,0,99, 4413112,0,101,0,99,
43660,97,0,115,0, 44140,97,0,115,0,
@@ -4369,7 +4417,7 @@ public yyLSLSyntax
4369101,0,115,0,115, 4417101,0,115,0,115,
43700,105,0,111,0, 44180,105,0,111,0,
4371110,0,1,-1,1, 4419110,0,1,-1,1,
43725,1193,20,1194,4, 44205,1201,20,1202,4,
437340,84,0,121,0, 442140,84,0,121,0,
4374112,0,101,0,99, 4422112,0,101,0,99,
43750,97,0,115,0, 44230,97,0,115,0,
@@ -4378,12 +4426,12 @@ public yyLSLSyntax
4378101,0,115,0,115, 4426101,0,115,0,115,
43790,105,0,111,0, 44270,105,0,111,0,
4380110,0,95,0,50, 4428110,0,95,0,50,
43810,1,264,1,3, 44290,1,267,1,3,
43821,5,1,4,1195, 44301,5,1,4,1203,
438322,1,127,1,66, 443122,1,128,1,66,
43841196,17,1197,15,1192, 44321204,17,1205,15,1200,
43851,-1,1,5,1198, 44331,-1,1,5,1206,
438620,1199,4,40,84, 443420,1207,4,40,84,
43870,121,0,112,0, 44350,121,0,112,0,
4388101,0,99,0,97, 4436101,0,99,0,97,
43890,115,0,116,0, 44370,115,0,116,0,
@@ -4392,11 +4440,11 @@ public yyLSLSyntax
4392115,0,115,0,105, 4440115,0,115,0,105,
43930,111,0,110,0, 44410,111,0,110,0,
439495,0,51,0,1, 444295,0,51,0,1,
4395265,1,3,1,7, 4443268,1,3,1,7,
43961,6,1200,22,1, 44441,6,1208,22,1,
4397128,1,67,1201,17, 4445129,1,67,1209,17,
43981202,15,1192,1,-1, 44461210,15,1200,1,-1,
43991,5,1203,20,1204, 44471,5,1211,20,1212,
44004,40,84,0,121, 44484,40,84,0,121,
44010,112,0,101,0, 44490,112,0,101,0,
440299,0,97,0,115, 445099,0,97,0,115,
@@ -4405,12 +4453,12 @@ public yyLSLSyntax
44050,101,0,115,0, 44530,101,0,115,0,
4406115,0,105,0,111, 4454115,0,105,0,111,
44070,110,0,95,0, 44550,110,0,95,0,
440855,0,1,269,1, 445655,0,1,272,1,
44093,1,8,1,7, 44573,1,8,1,7,
44101205,22,1,132,1, 44581213,22,1,133,1,
441168,1206,17,1207,15, 445968,1214,17,1215,15,
44121192,1,-1,1,5, 44601200,1,-1,1,5,
44131208,20,1209,4,40, 44611216,20,1217,4,40,
441484,0,121,0,112, 446284,0,121,0,112,
44150,101,0,99,0, 44630,101,0,99,0,
441697,0,115,0,116, 446497,0,115,0,116,
@@ -4419,12 +4467,12 @@ public yyLSLSyntax
44190,115,0,115,0, 44670,115,0,115,0,
4420105,0,111,0,110, 4468105,0,111,0,110,
44210,95,0,53,0, 44690,95,0,53,0,
44221,267,1,3,1, 44701,270,1,3,1,
44238,1,7,1210,22, 44718,1,7,1218,22,
44241,130,1,69,1211, 44721,131,1,69,1219,
442517,1212,15,1192,1, 447317,1220,15,1200,1,
4426-1,1,5,1213,20, 4474-1,1,5,1221,20,
44271214,4,40,84,0, 44751222,4,40,84,0,
4428121,0,112,0,101, 4476121,0,112,0,101,
44290,99,0,97,0, 44770,99,0,97,0,
4430115,0,116,0,69, 4478115,0,116,0,69,
@@ -4432,12 +4480,12 @@ public yyLSLSyntax
4432114,0,101,0,115, 4480114,0,101,0,115,
44330,115,0,105,0, 44810,115,0,105,0,
4434111,0,110,0,95, 4482111,0,110,0,95,
44350,54,0,1,268, 44830,54,0,1,271,
44361,3,1,6,1, 44841,3,1,6,1,
44375,1215,22,1,131, 44855,1223,22,1,132,
44381,70,1216,17,1217, 44861,70,1224,17,1225,
443915,1192,1,-1,1, 448715,1200,1,-1,1,
44405,1218,20,1219,4, 44885,1226,20,1227,4,
444140,84,0,121,0, 448940,84,0,121,0,
4442112,0,101,0,99, 4490112,0,101,0,99,
44430,97,0,115,0, 44910,97,0,115,0,
@@ -4446,12 +4494,12 @@ public yyLSLSyntax
4446101,0,115,0,115, 4494101,0,115,0,115,
44470,105,0,111,0, 44950,105,0,111,0,
4448110,0,95,0,52, 4496110,0,95,0,52,
44490,1,266,1,3, 44970,1,269,1,3,
44501,6,1,5,1220, 44981,6,1,5,1228,
445122,1,129,1,74, 449922,1,130,1,74,
44521221,17,1222,15,1192, 45001229,17,1230,15,1200,
44531,-1,1,5,1223, 45011,-1,1,5,1231,
445420,1224,4,40,84, 450220,1232,4,40,84,
44550,121,0,112,0, 45030,121,0,112,0,
4456101,0,99,0,97, 4504101,0,99,0,97,
44570,115,0,116,0, 45050,115,0,116,0,
@@ -4460,11 +4508,11 @@ public yyLSLSyntax
4460115,0,115,0,105, 4508115,0,115,0,105,
44610,111,0,110,0, 45090,111,0,110,0,
446295,0,57,0,1, 451095,0,57,0,1,
4463271,1,3,1,7, 4511274,1,3,1,7,
44641,6,1225,22,1, 45121,6,1233,22,1,
4465134,1,1013,1226,17, 4513135,1,1013,1234,17,
44661227,15,1076,1,-1, 45141235,15,1081,1,-1,
44671,5,1228,20,1229, 45151,5,1236,20,1237,
44684,46,80,0,97, 45164,46,80,0,97,
44690,114,0,101,0, 45170,114,0,101,0,
4470110,0,116,0,104, 4518110,0,116,0,104,
@@ -4474,12 +4522,12 @@ public yyLSLSyntax
4474114,0,101,0,115, 4522114,0,101,0,115,
44750,115,0,105,0, 45230,115,0,105,0,
4476111,0,110,0,95, 4524111,0,110,0,95,
44770,49,0,1,261, 45250,49,0,1,264,
44781,3,1,4,1, 45261,3,1,4,1,
44793,1230,22,1,124, 45273,1238,22,1,125,
44801,1332,1231,17,1232, 45281,1332,1239,17,1240,
448115,1070,1,-1,1, 452915,1075,1,-1,1,
44825,1233,20,1234,4, 45305,1241,20,1242,4,
448338,83,0,105,0, 453138,83,0,105,0,
4484109,0,112,0,108, 4532109,0,112,0,108,
44850,101,0,65,0, 45330,101,0,65,0,
@@ -4488,11 +4536,11 @@ public yyLSLSyntax
4488109,0,101,0,110, 4536109,0,101,0,110,
44890,116,0,95,0, 45370,116,0,95,0,
449049,0,57,0,1, 453849,0,57,0,1,
4491213,1,3,1,6, 4539216,1,3,1,6,
44921,5,1235,22,1, 45401,5,1243,22,1,
449376,1,1048,1236,17, 454177,1,1048,1244,17,
44941237,15,1093,1,-1, 45421245,15,1098,1,-1,
44951,5,1238,20,1239, 45431,5,1246,20,1247,
44964,38,66,0,105, 45444,38,66,0,105,
44970,110,0,97,0, 45450,110,0,97,0,
4498114,0,121,0,69, 4546114,0,121,0,69,
@@ -4501,10 +4549,10 @@ public yyLSLSyntax
45010,115,0,105,0, 45490,115,0,105,0,
4502111,0,110,0,95, 4550111,0,110,0,95,
45030,49,0,56,0, 45510,49,0,56,0,
45041,257,1,3,1, 45521,260,1,3,1,
45054,1,3,1240,22, 45534,1,3,1248,22,
45061,120,1,1585,1241, 45541,121,1,1585,1249,
450717,1242,15,1243,4, 455517,1250,15,1251,4,
450832,37,0,82,0, 455632,37,0,82,0,
4509101,0,116,0,117, 4557101,0,116,0,117,
45100,114,0,110,0, 45580,114,0,110,0,
@@ -4512,7 +4560,7 @@ public yyLSLSyntax
45120,116,0,101,0, 45600,116,0,101,0,
4513109,0,101,0,110, 4561109,0,101,0,110,
45140,116,0,1,-1, 45620,116,0,1,-1,
45151,5,1244,20,1245, 45631,5,1252,20,1253,
45164,34,82,0,101, 45644,34,82,0,101,
45170,116,0,117,0, 45650,116,0,117,0,
4518114,0,110,0,83, 4566114,0,110,0,83,
@@ -4520,323 +4568,191 @@ public yyLSLSyntax
4520116,0,101,0,109, 4568116,0,101,0,109,
45210,101,0,110,0, 45690,101,0,110,0,
4522116,0,95,0,50, 4570116,0,95,0,50,
45230,1,220,1,3, 45710,1,223,1,3,
45241,2,1,1,1246, 45721,2,1,1,1254,
452522,1,83,1,2023, 457322,1,84,1,2023,
45261247,17,1248,15,1109, 45741255,17,1256,15,1114,
45271,-1,1,5,1249, 45751,-1,1,5,1257,
452820,1250,4,26,83, 457620,1258,4,26,83,
45290,116,0,97,0, 45770,116,0,97,0,
4530116,0,101,0,67, 4578116,0,101,0,67,
45310,104,0,97,0, 45790,104,0,97,0,
4532110,0,103,0,101, 4580110,0,103,0,101,
45330,95,0,50,0, 45810,95,0,50,0,
45341,179,1,3,1, 45821,182,1,3,1,
45353,1,2,1251,22, 45833,1,2,1259,22,
45361,42,1,82,1252, 45841,43,1,2136,845,
453717,1253,15,1254,4, 45851,82,1260,17,1261,
453832,37,0,85,0, 458615,1262,4,32,37,
4539110,0,97,0,114, 45870,85,0,110,0,
45400,121,0,69,0, 458897,0,114,0,121,
4541120,0,112,0,114, 45890,69,0,120,0,
45420,101,0,115,0, 4590112,0,114,0,101,
4543115,0,105,0,111,
45440,110,0,1,-1,
45451,5,1255,20,1256,
45464,34,85,0,110,
45470,97,0,114,0,
4548121,0,69,0,120,
45490,112,0,114,0,
4550101,0,115,0,115,
45510,105,0,111,0,
4552110,0,95,0,51,
45530,1,260,1,3,
45541,3,1,2,1257,
455522,1,123,1,2026,
45561258,17,1259,15,1260,
45574,28,37,0,74,
45580,117,0,109,0,
4559112,0,83,0,116,
45600,97,0,116,0,
4561101,0,109,0,101,
45620,110,0,116,0,
45631,-1,1,5,1261,
456420,1262,4,30,74,
45650,117,0,109,0,
4566112,0,83,0,116,
45670,97,0,116,0,
4568101,0,109,0,101,
45690,110,0,116,0,
457095,0,49,0,1,
4571177,1,3,1,3,
45721,2,1263,22,1,
457340,1,1591,1264,17,
45741265,15,1243,1,-1,
45751,5,1266,20,1267,
45764,34,82,0,101,
45770,116,0,117,0,
4578114,0,110,0,83,
45790,116,0,97,0,
4580116,0,101,0,109,
45810,101,0,110,0,
4582116,0,95,0,49,
45830,1,219,1,3,
45841,3,1,2,1268,
458522,1,82,1,1341,
45861269,17,1270,15,1070,
45871,-1,1,5,1271,
458820,1272,4,36,83,
45890,105,0,109,0,
4590112,0,108,0,101,
45910,65,0,115,0,
4592115,0,105,0,103,
45930,110,0,109,0,
4594101,0,110,0,116,
45950,95,0,54,0,
45961,200,1,3,1,
45974,1,3,1273,22,
45981,63,1,328,1274,
459917,1275,15,1093,1,
4600-1,1,5,1276,20,
46011277,4,36,66,0,
4602105,0,110,0,97,
46030,114,0,121,0,
460469,0,120,0,112,
46050,114,0,101,0,
4606115,0,115,0,105,
46070,111,0,110,0,
460895,0,50,0,1,
4609241,1,3,1,4,
46101,3,1278,22,1,
4611104,1,1303,1279,17,
46121280,15,1070,1,-1,
46131,5,1281,20,1282,
46144,36,83,0,105,
46150,109,0,112,0,
4616108,0,101,0,65,
46170,115,0,115,0, 45910,115,0,115,0,
4618105,0,103,0,110, 4592105,0,111,0,110,
46190,109,0,101,0, 45930,1,-1,1,5,
4620110,0,116,0,95, 45941263,20,1264,4,34,
46210,55,0,1,201,
46221,3,1,6,1,
46235,1283,22,1,64,
46241,1096,1284,17,1285,
462515,1286,4,26,37,
46260,70,0,117,0,
4627110,0,99,0,116,
46280,105,0,111,0,
4629110,0,67,0,97,
46300,108,0,108,0,
46311,-1,1,5,1287,
463220,1288,4,28,70,
46330,117,0,110,0,
463499,0,116,0,105,
46350,111,0,110,0,
463667,0,97,0,108,
46370,108,0,95,0,
463849,0,1,272,1,
46393,1,5,1,4,
46401289,22,1,135,1,
464193,1290,17,1291,15,
46421254,1,-1,1,5,
46431292,20,1293,4,34,
464485,0,110,0,97, 459585,0,110,0,97,
46450,114,0,121,0, 45960,114,0,121,0,
464669,0,120,0,112, 459769,0,120,0,112,
46470,114,0,101,0, 45980,114,0,101,0,
4648115,0,115,0,105, 4599115,0,115,0,105,
46490,111,0,110,0, 46000,111,0,110,0,
465095,0,50,0,1, 460195,0,51,0,1,
4651259,1,3,1,3, 4602263,1,3,1,3,
46521,2,1294,22,1, 46031,2,1265,22,1,
4653122,1,1550,1295,17, 4604124,1,2026,1266,17,
46541296,15,1070,1,-1, 46051267,15,1268,4,28,
46551,5,1297,20,1298, 460637,0,74,0,117,
46564,38,83,0,105, 46070,109,0,112,0,
460883,0,116,0,97,
46090,116,0,101,0,
4610109,0,101,0,110,
46110,116,0,1,-1,
46121,5,1269,20,1270,
46134,30,74,0,117,
46140,109,0,112,0,
461583,0,116,0,97,
46160,116,0,101,0,
4617109,0,101,0,110,
46180,116,0,95,0,
461949,0,1,180,1,
46203,1,3,1,2,
46211271,22,1,41,1,
46221591,1272,17,1273,15,
46231251,1,-1,1,5,
46241274,20,1275,4,34,
462582,0,101,0,116,
46260,117,0,114,0,
4627110,0,83,0,116,
46280,97,0,116,0,
4629101,0,109,0,101,
46300,110,0,116,0,
463195,0,49,0,1,
4632222,1,3,1,3,
46331,2,1276,22,1,
463483,1,1341,1277,17,
46351278,15,1075,1,-1,
46361,5,1279,20,1280,
46374,36,83,0,105,
46570,109,0,112,0, 46380,109,0,112,0,
4658108,0,101,0,65, 4639108,0,101,0,65,
46590,115,0,115,0, 46400,115,0,115,0,
4660105,0,103,0,110, 4641105,0,103,0,110,
46610,109,0,101,0, 46420,109,0,101,0,
4662110,0,116,0,95, 4643110,0,116,0,95,
46630,49,0,51,0, 46440,54,0,1,203,
46641,207,1,3,1, 46451,3,1,4,1,
46654,1,3,1299,22, 46463,1281,22,1,64,
46661,70,1,2354,853, 46471,2030,722,1,328,
46671,2355,858,1,2040, 46481282,17,1283,15,1098,
46681300,16,0,536,1, 46491,-1,1,5,1284,
46692358,807,1,352,1301, 465020,1285,4,36,66,
467017,1302,15,1093,1, 46510,105,0,110,0,
4671-1,1,5,1303,20, 465297,0,114,0,121,
46721304,4,36,66,0, 46530,69,0,120,0,
4673105,0,110,0,97, 4654112,0,114,0,101,
46740,114,0,121,0, 46550,115,0,115,0,
467569,0,120,0,112, 4656105,0,111,0,110,
46760,114,0,101,0, 46570,95,0,50,0,
4677115,0,115,0,105, 46581,244,1,3,1,
46780,111,0,110,0, 46594,1,3,1286,22,
467995,0,49,0,1, 46601,105,1,1303,1287,
4680240,1,3,1,4, 466117,1288,15,1075,1,
46811,3,1305,22,1, 4662-1,1,5,1289,20,
4682103,1,1859,1306,16, 46631290,4,36,83,0,
46830,365,1,1860,820,
46841,1804,1307,16,0,
4685582,1,107,1308,17,
46861309,15,1254,1,-1,
46871,5,1310,20,1311,
46884,34,85,0,110,
46890,97,0,114,0,
4690121,0,69,0,120,
46910,112,0,114,0,
4692101,0,115,0,115,
46930,105,0,111,0,
4694110,0,95,0,49,
46950,1,258,1,3,
46961,3,1,2,1312,
469722,1,121,1,1114,
46981313,17,1152,1,3,
46991156,1,2105,1314,16,
47000,582,1,1872,1315,
470116,0,375,1,1873,
4702829,1,118,1316,17,
47031317,15,1093,1,-1,
47041,5,1318,20,1319,
47054,38,66,0,105,
47060,110,0,97,0,
4707114,0,121,0,69,
47080,120,0,112,0,
4709114,0,101,0,115,
47100,115,0,105,0,
4711111,0,110,0,95,
47120,49,0,52,0,
47131,253,1,3,1,
47144,1,3,1320,22,
47151,116,1,1123,1321,
471617,1322,15,1070,1,
4717-1,1,5,1323,20,
47181324,4,38,83,0,
4719105,0,109,0,112, 4664105,0,109,0,112,
47200,108,0,101,0, 46650,108,0,101,0,
472165,0,115,0,115, 466665,0,115,0,115,
47220,105,0,103,0, 46670,105,0,103,0,
4723110,0,109,0,101, 4668110,0,109,0,101,
47240,110,0,116,0, 46690,110,0,116,0,
472595,0,49,0,50, 467095,0,55,0,1,
47260,1,206,1,3, 4671204,1,3,1,6,
47271,6,1,5,1325, 46721,5,1291,22,1,
472822,1,69,1,371, 467365,1,1096,1292,17,
47291326,17,1327,15,1328, 46741293,15,1294,4,26,
47304,46,37,0,70, 467537,0,70,0,117,
47310,117,0,110,0,
473299,0,116,0,105,
47330,111,0,110,0,
473467,0,97,0,108,
47350,108,0,69,0,
4736120,0,112,0,114,
47370,101,0,115,0,
4738115,0,105,0,111,
47390,110,0,1,-1,
47401,5,1329,20,1330,
47414,48,70,0,117,
47420,110,0,99,0, 46760,110,0,99,0,
4743116,0,105,0,111, 4677116,0,105,0,111,
47440,110,0,67,0, 46780,110,0,67,0,
474597,0,108,0,108, 467997,0,108,0,108,
46800,1,-1,1,5,
46811295,20,1296,4,28,
468270,0,117,0,110,
46830,99,0,116,0,
4684105,0,111,0,110,
46850,67,0,97,0,
4686108,0,108,0,95,
46870,49,0,1,275,
46881,3,1,5,1,
46894,1297,22,1,136,
46901,93,1298,17,1299,
469115,1262,1,-1,1,
46925,1300,20,1301,4,
469334,85,0,110,0,
469497,0,114,0,121,
47460,69,0,120,0, 46950,69,0,120,0,
4747112,0,114,0,101, 4696112,0,114,0,101,
47480,115,0,115,0, 46970,115,0,115,0,
4749105,0,111,0,110, 4698105,0,111,0,110,
47500,95,0,49,0, 46990,95,0,50,0,
47511,239,1,3,1, 47001,262,1,3,1,
47522,1,1,1331,22, 47013,1,2,1302,22,
47531,102,1,1377,1332, 47021,123,1,1550,1303,
475417,1333,15,1070,1, 470317,1304,15,1075,1,
4755-1,1,5,1334,20, 4704-1,1,5,1305,20,
47561335,4,36,83,0, 47051306,4,38,83,0,
4757105,0,109,0,112, 4706105,0,109,0,112,
47580,108,0,101,0, 47070,108,0,101,0,
475965,0,115,0,115, 470865,0,115,0,115,
47600,105,0,103,0, 47090,105,0,103,0,
4761110,0,109,0,101, 4710110,0,109,0,101,
47620,110,0,116,0, 47110,110,0,116,0,
476395,0,53,0,1, 471295,0,49,0,51,
4764199,1,3,1,4, 47130,1,210,1,3,
47651,3,1336,22,1, 47141,4,1,3,1307,
476662,1,375,1337,17, 471522,1,71,1,2355,
47671338,15,1159,1,-1, 4716804,1,2356,861,1,
47681,5,1339,20,1340, 47172106,1308,17,1119,1,
47694,60,73,0,110, 47180,1123,1,1555,1309,
47700,99,0,114,0, 471916,0,600,1,2359,
4771101,0,109,0,101, 4720816,1,352,1310,17,
47720,110,0,116,0, 47211311,15,1098,1,-1,
477368,0,101,0,99, 47221,5,1312,20,1313,
47740,114,0,101,0, 47234,36,66,0,105,
4775109,0,101,0,110, 47240,110,0,97,0,
47760,116,0,69,0, 4725114,0,121,0,69,
4777120,0,112,0,114, 47260,120,0,112,0,
47780,101,0,115,0, 4727114,0,101,0,115,
4779115,0,105,0,111, 47280,115,0,105,0,
47800,110,0,95,0, 4729111,0,110,0,95,
478156,0,1,238,1, 47300,49,0,1,243,
47823,1,5,1,4, 47311,3,1,4,1,
47831341,22,1,101,1, 47323,1314,22,1,104,
4784377,1342,17,1343,15, 47331,1859,1315,16,0,
47851159,1,-1,1,5, 4734357,1,1860,827,1,
47861344,20,1345,4,60, 47351804,1316,17,1119,1,
478773,0,110,0,99, 47360,1123,1,107,1317,
47880,114,0,101,0, 473717,1318,15,1262,1,
4789109,0,101,0,110, 4738-1,1,5,1319,20,
47900,116,0,68,0, 47391320,4,34,85,0,
4791101,0,99,0,114,
47920,101,0,109,0,
4793101,0,110,0,116,
47940,69,0,120,0,
4795112,0,114,0,101,
47960,115,0,115,0,
4797105,0,111,0,110,
47980,95,0,53,0,
47991,235,1,3,1,
48003,1,2,1346,22,
48011,98,1,2135,836,
48021,827,1347,17,1348,
480315,1093,1,-1,1,
48045,1349,20,1350,4,
480538,66,0,105,0,
4806110,0,97,0,114, 4740110,0,97,0,114,
48070,121,0,69,0, 47410,121,0,69,0,
4808120,0,112,0,114, 4742120,0,112,0,114,
48090,101,0,115,0, 47430,101,0,115,0,
4810115,0,105,0,111, 4744115,0,105,0,111,
48110,110,0,95,0, 47450,110,0,95,0,
481249,0,53,0,1, 474649,0,1,261,1,
4813254,1,3,1,4, 47473,1,3,1,2,
48141,3,1351,22,1, 47481321,22,1,122,1,
4815117,1,380,1352,17, 47491114,1322,17,1161,1,
48161353,15,1354,4,38, 47503,1165,1,2105,810,
481737,0,67,0,111, 47511,1872,1323,16,0,
48180,110,0,115,0, 4752367,1,1873,836,1,
4819116,0,97,0,110, 4753118,1324,17,1325,15,
48200,116,0,69,0, 47541098,1,-1,1,5,
4821120,0,112,0,114, 47551326,20,1327,4,38,
48220,101,0,115,0,
4823115,0,105,0,111,
48240,110,0,1,-1,
48251,5,1355,20,1356,
48264,40,67,0,111,
48270,110,0,115,0,
4828116,0,97,0,110,
48290,116,0,69,0,
4830120,0,112,0,114,
48310,101,0,115,0,
4832115,0,105,0,111,
48330,110,0,95,0,
483449,0,1,228,1,
48353,1,2,1,1,
48361357,22,1,91,1,
4837130,1358,17,1359,15,
48381093,1,-1,1,5,
48391360,20,1361,4,38,
484066,0,105,0,110, 475666,0,105,0,110,
48410,97,0,114,0, 47570,97,0,114,0,
4842121,0,69,0,120, 4758121,0,69,0,120,
@@ -4844,46 +4760,64 @@ public yyLSLSyntax
4844101,0,115,0,115, 4760101,0,115,0,115,
48450,105,0,111,0, 47610,105,0,111,0,
4846110,0,95,0,49, 4762110,0,95,0,49,
48470,51,0,1,252, 47630,52,0,1,256,
48481,3,1,4,1, 47641,3,1,4,1,
48493,1362,22,1,115, 47653,1328,22,1,117,
48501,1628,1363,17,1364, 47661,1123,1329,17,1330,
485115,1365,4,22,37, 476715,1075,1,-1,1,
48520,65,0,115,0, 47685,1331,20,1332,4,
4853115,0,105,0,103, 476938,83,0,105,0,
48540,110,0,109,0, 4770109,0,112,0,108,
4855101,0,110,0,116, 47710,101,0,65,0,
4772115,0,115,0,105,
47730,103,0,110,0,
4774109,0,101,0,110,
47750,116,0,95,0,
477649,0,50,0,1,
4777209,1,3,1,6,
47781,5,1333,22,1,
477970,1,371,1334,17,
47801335,15,1336,4,46,
478137,0,70,0,117,
47820,110,0,99,0,
4783116,0,105,0,111,
47840,110,0,67,0,
478597,0,108,0,108,
47860,69,0,120,0,
4787112,0,114,0,101,
47880,115,0,115,0,
4789105,0,111,0,110,
48560,1,-1,1,5, 47900,1,-1,1,5,
48571366,20,1367,4,24, 47911337,20,1338,4,48,
485865,0,115,0,115, 479270,0,117,0,110,
48590,105,0,103,0, 47930,99,0,116,0,
4860110,0,109,0,101, 4794105,0,111,0,110,
48610,110,0,116,0, 47950,67,0,97,0,
486295,0,49,0,1, 4796108,0,108,0,69,
4863193,1,3,1,4,
48641,3,1368,22,1,
486556,1,2074,1369,16,
48660,582,1,373,1370,
486717,1371,15,1159,1,
4868-1,1,5,1372,20,
48691373,4,60,73,0,
4870110,0,99,0,114,
48710,101,0,109,0,
4872101,0,110,0,116,
48730,68,0,101,0,
487499,0,114,0,101,
48750,109,0,101,0,
4876110,0,116,0,69,
48770,120,0,112,0, 47970,120,0,112,0,
4878114,0,101,0,115, 4798114,0,101,0,115,
48790,115,0,105,0, 47990,115,0,105,0,
4880111,0,110,0,95, 4800111,0,110,0,95,
48810,54,0,1,236, 48010,49,0,1,242,
48821,3,1,3,1, 48021,3,1,2,1,
48832,1374,22,1,99, 48031,1339,22,1,103,
48841,379,1375,17,1376, 48041,2550,1340,16,0,
488515,1159,1,-1,1, 4805651,1,1377,1341,17,
48865,1377,20,1378,4, 48061342,15,1075,1,-1,
48071,5,1343,20,1344,
48084,36,83,0,105,
48090,109,0,112,0,
4810108,0,101,0,65,
48110,115,0,115,0,
4812105,0,103,0,110,
48130,109,0,101,0,
4814110,0,116,0,95,
48150,53,0,1,202,
48161,3,1,4,1,
48173,1345,22,1,63,
48181,375,1346,17,1347,
481915,1168,1,-1,1,
48205,1348,20,1349,4,
488760,73,0,110,0, 482160,73,0,110,0,
488899,0,114,0,101, 482299,0,114,0,101,
48890,109,0,101,0, 48230,109,0,101,0,
@@ -4895,68 +4829,32 @@ public yyLSLSyntax
48950,112,0,114,0, 48290,112,0,114,0,
4896101,0,115,0,115, 4830101,0,115,0,115,
48970,105,0,111,0, 48310,105,0,111,0,
4898110,0,95,0,55, 4832110,0,95,0,56,
48990,1,237,1,3, 48330,1,241,1,3,
49001,5,1,4,1379, 48341,5,1,4,1350,
490122,1,100,1,143, 483522,1,102,1,2310,
49021380,17,1381,15,1093, 48361351,17,1119,1,0,
49031,-1,1,5,1382, 48371123,1,377,1352,17,
490420,1383,4,38,66, 48381353,15,1168,1,-1,
49050,105,0,110,0, 48391,5,1354,20,1355,
490697,0,114,0,121, 48404,60,73,0,110,
49070,69,0,120,0, 48410,99,0,114,0,
4908112,0,114,0,101, 4842101,0,109,0,101,
49090,115,0,115,0,
4910105,0,111,0,110,
49110,95,0,49,0,
491250,0,1,251,1,
49133,1,4,1,3,
49141384,22,1,114,1,
49151901,1385,16,0,582,
49161,1152,1386,17,1387,
491715,1070,1,-1,1,
49185,1388,20,1389,4,
491938,83,0,105,0,
4920109,0,112,0,108,
49210,101,0,65,0,
4922115,0,115,0,105,
49230,103,0,110,0,
4924109,0,101,0,110,
49250,116,0,95,0,
492650,0,52,0,1,
4927218,1,3,1,6,
49281,5,1390,22,1,
492981,1,1555,1391,16,
49300,598,1,1406,1392,
493117,1393,15,1070,1,
4932-1,1,5,1394,20,
49331395,4,38,83,0,
4934105,0,109,0,112,
49350,108,0,101,0,
493665,0,115,0,115,
49370,105,0,103,0,
4938110,0,109,0,101,
49390,110,0,116,0, 48430,110,0,116,0,
494095,0,49,0,55, 484468,0,101,0,99,
49410,1,211,1,3, 48450,114,0,101,0,
49421,4,1,3,1396, 4846109,0,101,0,110,
494322,1,74,1,1159, 48470,116,0,69,0,
49441397,17,1398,15,1070, 4848120,0,112,0,114,
49451,-1,1,5,1399, 48490,101,0,115,0,
494620,1400,4,38,83, 4850115,0,105,0,111,
49470,105,0,109,0, 48510,110,0,95,0,
4948112,0,108,0,101, 485253,0,1,238,1,
49490,65,0,115,0, 48533,1,3,1,2,
4950115,0,105,0,103, 48541356,22,1,99,1,
49510,110,0,109,0, 4855827,1357,17,1358,15,
4952101,0,110,0,116, 48561098,1,-1,1,5,
49530,95,0,49,0, 48571359,20,1360,4,38,
495449,0,1,205,1,
49553,1,6,1,5,
49561401,22,1,68,1,
4957157,1402,17,1403,15,
49581093,1,-1,1,5,
49591404,20,1405,4,38,
496066,0,105,0,110, 485866,0,105,0,110,
49610,97,0,114,0, 48590,97,0,114,0,
4962121,0,69,0,120, 4860121,0,69,0,120,
@@ -4964,106 +4862,112 @@ public yyLSLSyntax
4964101,0,115,0,115, 4862101,0,115,0,115,
49650,105,0,111,0, 48630,105,0,111,0,
4966110,0,95,0,49, 4864110,0,95,0,49,
49670,49,0,1,250, 48650,53,0,1,257,
49681,3,1,4,1, 48661,3,1,4,1,
49693,1406,22,1,113, 48673,1361,22,1,118,
49701,1413,1407,17,1408, 48681,380,1362,17,1363,
497115,1070,1,-1,1, 486915,1364,4,38,37,
49725,1409,20,1410,4, 48700,67,0,111,0,
497336,83,0,105,0, 4871110,0,115,0,116,
4974109,0,112,0,108, 48720,97,0,110,0,
49750,101,0,65,0, 4873116,0,69,0,120,
4976115,0,115,0,105, 48740,112,0,114,0,
49770,103,0,110,0, 4875101,0,115,0,115,
4978109,0,101,0,110, 48760,105,0,111,0,
49790,116,0,95,0, 4877110,0,1,-1,1,
498052,0,1,198,1, 48785,1365,20,1366,4,
49813,1,4,1,3, 487940,67,0,111,0,
49821411,22,1,61,1, 4880110,0,115,0,116,
4983883,1412,17,1413,15, 48810,97,0,110,0,
49841093,1,-1,1,5, 4882116,0,69,0,120,
49851414,20,1415,4,38,
498666,0,105,0,110,
49870,97,0,114,0,
4988121,0,69,0,120,
49890,112,0,114,0, 48830,112,0,114,0,
4990101,0,115,0,115, 4884101,0,115,0,115,
49910,105,0,111,0, 48850,105,0,111,0,
4992110,0,95,0,49, 4886110,0,95,0,49,
49930,54,0,1,255, 48870,1,231,1,3,
49941,3,1,4,1, 48881,2,1,1,1367,
49953,1416,22,1,118, 488922,1,92,1,883,
49961,2104,801,1,1478, 48901368,17,1369,15,1098,
49971417,17,1418,15,1070, 48911,-1,1,5,1370,
49981,-1,1,5,1419, 489220,1371,4,38,66,
499920,1420,4,38,83, 48930,105,0,110,0,
50000,105,0,109,0, 489497,0,114,0,121,
5001112,0,108,0,101, 48950,69,0,120,0,
50020,65,0,115,0, 4896112,0,114,0,101,
5003115,0,105,0,103, 48970,115,0,115,0,
50040,110,0,109,0, 4898105,0,111,0,110,
5005101,0,110,0,116,
50060,95,0,49,0, 48990,95,0,49,0,
500753,0,1,209,1, 490054,0,1,258,1,
50083,1,4,1,3, 49013,1,4,1,3,
50091421,22,1,72,1, 49021372,22,1,119,1,
50101620,1422,17,1423,15, 49031628,1373,17,1374,15,
50111365,1,-1,1,5, 49041375,4,22,37,0,
50121424,20,1425,4,24,
501365,0,115,0,115, 490565,0,115,0,115,
50140,105,0,103,0, 49060,105,0,103,0,
5015110,0,109,0,101, 4907110,0,109,0,101,
50160,110,0,116,0, 49080,110,0,116,0,
501795,0,50,0,1, 49091,-1,1,5,1376,
5018194,1,3,1,2, 491020,1377,4,24,65,
50191,1,1426,22,1, 49110,115,0,115,0,
502057,1,1621,1427,16, 4912105,0,103,0,110,
50210,655,1,1574,787, 49130,109,0,101,0,
50221,172,1428,17,1429, 4914110,0,116,0,95,
502315,1093,1,-1,1, 49150,49,0,1,196,
50245,1430,20,1431,4, 49161,3,1,4,1,
502538,66,0,105,0, 49173,1378,22,1,57,
5026110,0,97,0,114, 49181,2075,1379,17,1119,
50270,121,0,69,0, 49191,0,1123,1,373,
5028120,0,112,0,114, 49201380,17,1381,15,1168,
50290,101,0,115,0, 49211,-1,1,5,1382,
5030115,0,105,0,111, 492220,1383,4,60,73,
50310,110,0,95,0, 49230,110,0,99,0,
503249,0,48,0,1, 4924114,0,101,0,109,
5033249,1,3,1,4, 49250,101,0,110,0,
50341,3,1432,22,1, 4926116,0,68,0,101,
5035112,1,1931,863,1, 49270,99,0,114,0,
50362360,813,1,1188,1433, 4928101,0,109,0,101,
503717,1434,15,1070,1,
5038-1,1,5,1435,20,
50391436,4,38,83,0,
5040105,0,109,0,112,
50410,108,0,101,0,
504265,0,115,0,115,
50430,105,0,103,0,
5044110,0,109,0,101,
50450,110,0,116,0, 49290,110,0,116,0,
504695,0,50,0,51, 493069,0,120,0,112,
50470,1,217,1,3, 49310,114,0,101,0,
50481,6,1,5,1437, 4932115,0,115,0,105,
504922,1,80,1,1442, 49330,111,0,110,0,
50501438,17,1439,15,1070, 493495,0,54,0,1,
50511,-1,1,5,1440, 4935239,1,3,1,3,
505220,1441,4,38,83, 49361,2,1384,22,1,
50530,105,0,109,0, 4937100,1,130,1385,17,
5054112,0,108,0,101, 49381386,15,1098,1,-1,
50550,65,0,115,0, 49391,5,1387,20,1388,
5056115,0,105,0,103, 49404,38,66,0,105,
50570,110,0,109,0, 49410,110,0,97,0,
4942114,0,121,0,69,
49430,120,0,112,0,
4944114,0,101,0,115,
49450,115,0,105,0,
4946111,0,110,0,95,
49470,49,0,51,0,
49481,255,1,3,1,
49494,1,3,1389,22,
49501,116,1,379,1390,
495117,1391,15,1168,1,
4952-1,1,5,1392,20,
49531393,4,60,73,0,
4954110,0,99,0,114,
49550,101,0,109,0,
5058101,0,110,0,116, 4956101,0,110,0,116,
50590,95,0,49,0, 49570,68,0,101,0,
506054,0,1,210,1, 495899,0,114,0,101,
50613,1,4,1,3, 49590,109,0,101,0,
50621442,22,1,73,1, 4960110,0,116,0,69,
50631694,1443,16,0,189, 49610,120,0,112,0,
50641,942,1444,17,1445, 4962114,0,101,0,115,
506515,1093,1,-1,1, 49630,115,0,105,0,
50665,1446,20,1447,4, 4964111,0,110,0,95,
49650,55,0,1,240,
49661,3,1,5,1,
49674,1394,22,1,101,
49681,143,1395,17,1396,
496915,1098,1,-1,1,
49705,1397,20,1398,4,
506738,66,0,105,0, 497138,66,0,105,0,
5068110,0,97,0,114, 4972110,0,97,0,114,
50690,121,0,69,0, 49730,121,0,69,0,
@@ -5071,12 +4975,40 @@ public yyLSLSyntax
50710,101,0,115,0, 49750,101,0,115,0,
5072115,0,105,0,111, 4976115,0,105,0,111,
50730,110,0,95,0, 49770,110,0,95,0,
497849,0,50,0,1,
4979254,1,3,1,4,
49801,3,1399,22,1,
4981115,1,1901,1400,17,
49821119,1,0,1123,1,
49831152,1401,17,1402,15,
49841075,1,-1,1,5,
49851403,20,1404,4,38,
498683,0,105,0,109,
49870,112,0,108,0,
4988101,0,65,0,115,
49890,115,0,105,0,
4990103,0,110,0,109,
49910,101,0,110,0,
4992116,0,95,0,50,
49930,52,0,1,221,
49941,3,1,6,1,
49955,1405,22,1,82,
49961,1406,1406,17,1407,
499715,1075,1,-1,1,
49985,1408,20,1409,4,
499938,83,0,105,0,
5000109,0,112,0,108,
50010,101,0,65,0,
5002115,0,115,0,105,
50030,103,0,110,0,
5004109,0,101,0,110,
50050,116,0,95,0,
507449,0,55,0,1, 500649,0,55,0,1,
5075256,1,3,1,4, 5007214,1,3,1,4,
50761,3,1448,22,1, 50081,3,1410,22,1,
5077119,1,1195,1449,17, 500975,1,1159,1411,17,
50781450,15,1070,1,-1, 50101412,15,1075,1,-1,
50791,5,1451,20,1452, 50111,5,1413,20,1414,
50804,38,83,0,105, 50124,38,83,0,105,
50810,109,0,112,0, 50130,109,0,112,0,
5082108,0,101,0,65, 5014108,0,101,0,65,
@@ -5084,71 +5016,39 @@ public yyLSLSyntax
5084105,0,103,0,110, 5016105,0,103,0,110,
50850,109,0,101,0, 50170,109,0,101,0,
5086110,0,116,0,95, 5018110,0,116,0,95,
50870,49,0,48,0, 50190,49,0,49,0,
50881,204,1,3,1, 50201,208,1,3,1,
50896,1,5,1453,22, 50216,1,5,1415,22,
50901,67,1,1449,1454, 50221,69,1,157,1416,
509117,1455,15,1070,1, 502317,1417,15,1098,1,
5092-1,1,5,1456,20, 5024-1,1,5,1418,20,
50931457,4,36,83,0, 50251419,4,38,66,0,
5094105,0,109,0,112, 5026105,0,110,0,97,
50950,108,0,101,0, 50270,114,0,121,0,
509665,0,115,0,115, 502869,0,120,0,112,
50970,105,0,103,0, 50290,114,0,101,0,
5098110,0,109,0,101, 5030115,0,115,0,105,
50990,110,0,116,0, 50310,111,0,110,0,
510095,0,51,0,1, 503295,0,49,0,49,
5101197,1,3,1,4, 50330,1,253,1,3,
51021,3,1458,22,1, 50341,4,1,3,1420,
510360,1,1701,1459,17, 503522,1,114,1,1413,
51041460,15,1123,1,-1, 50361421,17,1422,15,1075,
51051,5,1461,20,1462, 50371,-1,1,5,1423,
51064,36,70,0,111, 503820,1424,4,36,83,
51070,114,0,76,0, 50390,105,0,109,0,
5108111,0,111,0,112, 5040112,0,108,0,101,
51090,83,0,116,0, 50410,65,0,115,0,
511097,0,116,0,101, 5042115,0,105,0,103,
51110,109,0,101,0, 50430,110,0,109,0,
5112110,0,116,0,95, 5044101,0,110,0,116,
51130,51,0,1,191, 50450,95,0,52,0,
51141,3,1,4,1, 50461,201,1,3,1,
51153,1463,22,1,54, 50474,1,3,1425,22,
51161,447,1464,17,1465, 50481,62,1,1370,1426,
511715,1466,4,30,37, 504917,1427,15,1075,1,
51180,86,0,101,0, 5050-1,1,5,1428,20,
511999,0,116,0,111, 50511429,4,38,83,0,
51200,114,0,67,0,
5121111,0,110,0,115,
51220,116,0,97,0,
5123110,0,116,0,1,
5124-1,1,5,1467,20,
51251468,4,32,86,0,
5126101,0,99,0,116,
51270,111,0,114,0,
512867,0,111,0,110,
51290,115,0,116,0,
513097,0,110,0,116,
51310,95,0,49,0,
51321,226,1,3,1,
51338,1,7,1469,22,
51341,89,1,1958,1470,
513516,0,582,1,188,
51361471,17,1472,15,1093,
51371,-1,1,5,1473,
513820,1474,4,36,66,
51390,105,0,110,0,
514097,0,114,0,121,
51410,69,0,120,0,
5142112,0,114,0,101,
51430,115,0,115,0,
5144105,0,111,0,110,
51450,95,0,57,0,
51461,248,1,3,1,
51474,1,3,1475,22,
51481,111,1,1370,1476,
514917,1477,15,1070,1,
5150-1,1,5,1478,20,
51511479,4,38,83,0,
5152105,0,109,0,112, 5052105,0,109,0,112,
51530,108,0,101,0, 50530,108,0,101,0,
515465,0,115,0,115, 505465,0,115,0,115,
@@ -5156,25 +5056,121 @@ public yyLSLSyntax
5156110,0,109,0,101, 5056110,0,109,0,101,
51570,110,0,116,0, 50570,110,0,116,0,
515895,0,49,0,56, 505895,0,49,0,56,
51590,1,212,1,3, 50590,1,215,1,3,
51601,4,1,3,1480, 50601,4,1,3,1430,
516122,1,75,1,1657, 506122,1,76,1,2040,
5162878,1,205,1481,17, 50621431,16,0,530,1,
51631482,15,1093,1,-1, 50631478,1432,17,1433,15,
51641,5,1483,20,1484, 50641075,1,-1,1,5,
51654,36,66,0,105, 50651434,20,1435,4,38,
506683,0,105,0,109,
50670,112,0,108,0,
5068101,0,65,0,115,
50690,115,0,105,0,
5070103,0,110,0,109,
50710,101,0,110,0,
5072116,0,95,0,49,
50730,53,0,1,212,
50741,3,1,4,1,
50753,1436,22,1,73,
50761,1620,1437,17,1438,
507715,1375,1,-1,1,
50785,1439,20,1440,4,
507924,65,0,115,0,
5080115,0,105,0,103,
50810,110,0,109,0,
5082101,0,110,0,116,
50830,95,0,50,0,
50841,197,1,3,1,
50852,1,1,1441,22,
50861,58,1,1621,1442,
508716,0,658,1,1574,
5088790,1,172,1443,17,
50891444,15,1098,1,-1,
50901,5,1445,20,1446,
50914,38,66,0,105,
50920,110,0,97,0,
5093114,0,121,0,69,
50940,120,0,112,0,
5095114,0,101,0,115,
50960,115,0,105,0,
5097111,0,110,0,95,
50980,49,0,48,0,
50991,252,1,3,1,
51004,1,3,1447,22,
51011,113,1,1931,866,
51021,2361,821,1,1188,
51031448,17,1449,15,1075,
51041,-1,1,5,1450,
510520,1451,4,38,83,
51060,105,0,109,0,
5107112,0,108,0,101,
51080,65,0,115,0,
5109115,0,105,0,103,
51100,110,0,109,0,
5111101,0,110,0,116,
51120,95,0,50,0,
511351,0,1,220,1,
51143,1,6,1,5,
51151452,22,1,81,1,
51161442,1453,17,1454,15,
51171075,1,-1,1,5,
51181455,20,1456,4,38,
511983,0,105,0,109,
51200,112,0,108,0,
5121101,0,65,0,115,
51220,115,0,105,0,
5123103,0,110,0,109,
51240,101,0,110,0,
5125116,0,95,0,49,
51260,54,0,1,213,
51271,3,1,4,1,
51283,1457,22,1,74,
51291,1694,1458,16,0,
5130190,1,942,1459,17,
51311460,15,1098,1,-1,
51321,5,1461,20,1462,
51334,38,66,0,105,
51660,110,0,97,0, 51340,110,0,97,0,
5167114,0,121,0,69, 5135114,0,121,0,69,
51680,120,0,112,0, 51360,120,0,112,0,
5169114,0,101,0,115, 5137114,0,101,0,115,
51700,115,0,105,0, 51380,115,0,105,0,
5171111,0,110,0,95, 5139111,0,110,0,95,
51720,56,0,1,247, 51400,49,0,55,0,
51411,259,1,3,1,
51424,1,3,1463,22,
51431,120,1,2198,1464,
514417,1119,1,0,1123,
51451,1195,1465,17,1466,
514615,1075,1,-1,1,
51475,1467,20,1468,4,
514838,83,0,105,0,
5149109,0,112,0,108,
51500,101,0,65,0,
5151115,0,115,0,105,
51520,103,0,110,0,
5153109,0,101,0,110,
51540,116,0,95,0,
515549,0,48,0,1,
5156207,1,3,1,6,
51571,5,1469,22,1,
515868,1,1449,1470,17,
51591471,15,1075,1,-1,
51601,5,1472,20,1473,
51614,36,83,0,105,
51620,109,0,112,0,
5163108,0,101,0,65,
51640,115,0,115,0,
5165105,0,103,0,110,
51660,109,0,101,0,
5167110,0,116,0,95,
51680,51,0,1,200,
51731,3,1,4,1, 51691,3,1,4,1,
51743,1485,22,1,110, 51703,1474,22,1,61,
51751,1665,1486,17,1487, 51711,1701,1475,17,1476,
517615,1123,1,-1,1, 517215,1133,1,-1,1,
51775,1488,20,1489,4, 51735,1477,20,1478,4,
517836,70,0,111,0, 517436,70,0,111,0,
5179114,0,76,0,111, 5175114,0,76,0,111,
51800,111,0,112,0, 51760,111,0,112,0,
@@ -5182,14 +5178,73 @@ public yyLSLSyntax
51820,116,0,101,0, 51780,116,0,101,0,
5183109,0,101,0,110, 5179109,0,101,0,110,
51840,116,0,95,0, 51800,116,0,95,0,
518549,0,1,189,1, 518151,0,1,194,1,
51863,1,2,1,1, 51823,1,4,1,3,
51871490,22,1,52,1, 51831479,22,1,55,1,
51882029,714,1,2197,1491, 5184447,1480,17,1481,15,
518916,0,582,1,1224, 51851482,4,30,37,0,
51901492,17,1493,15,1070, 518686,0,101,0,99,
51911,-1,1,5,1494, 51870,116,0,111,0,
519220,1495,4,38,83, 5188114,0,67,0,111,
51890,110,0,115,0,
5190116,0,97,0,110,
51910,116,0,1,-1,
51921,5,1483,20,1484,
51934,32,86,0,101,
51940,99,0,116,0,
5195111,0,114,0,67,
51960,111,0,110,0,
5197115,0,116,0,97,
51980,110,0,116,0,
519995,0,49,0,1,
5200229,1,3,1,8,
52011,7,1485,22,1,
520290,1,1958,1486,17,
52031119,1,0,1123,1,
5204188,1487,17,1488,15,
52051098,1,-1,1,5,
52061489,20,1490,4,36,
520766,0,105,0,110,
52080,97,0,114,0,
5209121,0,69,0,120,
52100,112,0,114,0,
5211101,0,115,0,115,
52120,105,0,111,0,
5213110,0,95,0,57,
52140,1,251,1,3,
52151,4,1,3,1491,
521622,1,112,1,1657,
5217883,1,205,1492,17,
52181493,15,1098,1,-1,
52191,5,1494,20,1495,
52204,36,66,0,105,
52210,110,0,97,0,
5222114,0,121,0,69,
52230,120,0,112,0,
5224114,0,101,0,115,
52250,115,0,105,0,
5226111,0,110,0,95,
52270,56,0,1,250,
52281,3,1,4,1,
52293,1496,22,1,111,
52301,2557,1497,16,0,
5231489,1,1665,1498,17,
52321499,15,1133,1,-1,
52331,5,1500,20,1501,
52344,36,70,0,111,
52350,114,0,76,0,
5236111,0,111,0,112,
52370,83,0,116,0,
523897,0,116,0,101,
52390,109,0,101,0,
5240110,0,116,0,95,
52410,49,0,1,192,
52421,3,1,2,1,
52431,1502,22,1,53,
52441,2227,891,1,1224,
52451503,17,1504,15,1075,
52461,-1,1,5,1505,
524720,1506,4,38,83,
51930,105,0,109,0, 52480,105,0,109,0,
5194112,0,108,0,101, 5249112,0,108,0,101,
51950,65,0,115,0, 52500,65,0,115,0,
@@ -5197,12 +5252,12 @@ public yyLSLSyntax
51970,110,0,109,0, 52520,110,0,109,0,
5198101,0,110,0,116, 5253101,0,110,0,116,
51990,95,0,50,0, 52540,95,0,50,0,
520050,0,1,216,1, 525550,0,1,219,1,
52013,1,6,1,5, 52563,1,6,1,5,
52021496,22,1,79,1, 52571507,22,1,80,1,
5203223,1497,17,1498,15, 5258223,1508,17,1509,15,
52041093,1,-1,1,5, 52591098,1,-1,1,5,
52051499,20,1500,4,36, 52601510,20,1511,4,36,
520666,0,105,0,110, 526166,0,105,0,110,
52070,97,0,114,0, 52620,97,0,114,0,
5208121,0,69,0,120, 5263121,0,69,0,120,
@@ -5210,12 +5265,12 @@ public yyLSLSyntax
5210101,0,115,0,115, 5265101,0,115,0,115,
52110,105,0,111,0, 52660,105,0,111,0,
5212110,0,95,0,55, 5267110,0,95,0,55,
52130,1,246,1,3, 52680,1,249,1,3,
52141,4,1,3,1501, 52691,4,1,3,1512,
521522,1,109,1,1730, 527022,1,110,1,1730,
52161502,17,1503,15,1123, 52711513,17,1514,15,1133,
52171,-1,1,5,1504, 52721,-1,1,5,1515,
521820,1505,4,36,70, 527320,1516,4,36,70,
52190,111,0,114,0, 52740,111,0,114,0,
522076,0,111,0,111, 527576,0,111,0,111,
52210,112,0,83,0, 52760,112,0,83,0,
@@ -5223,35 +5278,35 @@ public yyLSLSyntax
52230,101,0,109,0, 52780,101,0,109,0,
5224101,0,110,0,116, 5279101,0,110,0,116,
52250,95,0,52,0, 52800,95,0,52,0,
52261,192,1,3,1, 52811,195,1,3,1,
52274,1,3,1506,22, 52824,1,3,1517,22,
52281,55,1,476,1507, 52831,56,1,476,1518,
522917,1508,15,1509,4, 528417,1519,15,1520,4,
523018,37,0,67,0, 528518,37,0,67,0,
5231111,0,110,0,115, 5286111,0,110,0,115,
52320,116,0,97,0, 52870,116,0,97,0,
5233110,0,116,0,1, 5288110,0,116,0,1,
5234-1,1,5,1510,20, 5289-1,1,5,1521,20,
52351511,4,20,67,0, 52901522,4,20,67,0,
5236111,0,110,0,115, 5291111,0,110,0,115,
52370,116,0,97,0, 52920,116,0,97,0,
5238110,0,116,0,95, 5293110,0,116,0,95,
52390,52,0,1,224, 52940,52,0,1,227,
52401,3,1,2,1, 52951,3,1,2,1,
52411,1512,22,1,87, 52961,1523,22,1,88,
52421,477,1513,17,1514, 52971,477,1524,17,1525,
524315,1509,1,-1,1, 529815,1520,1,-1,1,
52445,1515,20,1516,4, 52995,1526,20,1527,4,
524520,67,0,111,0, 530020,67,0,111,0,
5246110,0,115,0,116, 5301110,0,115,0,116,
52470,97,0,110,0, 53020,97,0,110,0,
5248116,0,95,0,51, 5303116,0,95,0,51,
52490,1,223,1,3, 53040,1,226,1,3,
52501,2,1,1,1517, 53051,2,1,1,1528,
525122,1,86,1,1231, 530622,1,87,1,1231,
52521518,17,1519,15,1070, 53071529,17,1530,15,1075,
52531,-1,1,5,1520, 53081,-1,1,5,1531,
525420,1521,4,36,83, 530920,1532,4,36,83,
52550,105,0,109,0, 53100,105,0,109,0,
5256112,0,108,0,101, 5311112,0,108,0,101,
52570,65,0,115,0, 53120,65,0,115,0,
@@ -5259,38 +5314,38 @@ public yyLSLSyntax
52590,110,0,109,0, 53140,110,0,109,0,
5260101,0,110,0,116, 5315101,0,110,0,116,
52610,95,0,57,0, 53160,95,0,57,0,
52621,203,1,3,1, 53171,206,1,3,1,
52636,1,5,1522,22, 53186,1,5,1533,22,
52641,66,1,479,1523, 53191,67,1,479,1534,
526517,1524,15,1509,1, 532017,1535,15,1520,1,
5266-1,1,5,1525,20, 5321-1,1,5,1536,20,
52671526,4,20,67,0, 53221537,4,20,67,0,
5268111,0,110,0,115, 5323111,0,110,0,115,
52690,116,0,97,0, 53240,116,0,97,0,
5270110,0,116,0,95, 5325110,0,116,0,95,
52710,49,0,1,221, 53260,49,0,1,224,
52721,3,1,2,1, 53271,3,1,2,1,
52731,1527,22,1,84, 53281,1538,22,1,85,
52741,480,1528,17,1529, 53291,480,1539,17,1540,
527515,1530,4,26,37, 533015,1541,4,26,37,
52760,76,0,105,0, 53310,76,0,105,0,
5277115,0,116,0,67, 5332115,0,116,0,67,
52780,111,0,110,0, 53330,111,0,110,0,
5279115,0,116,0,97, 5334115,0,116,0,97,
52800,110,0,116,0, 53350,110,0,116,0,
52811,-1,1,5,1531, 53361,-1,1,5,1542,
528220,1532,4,28,76, 533720,1543,4,28,76,
52830,105,0,115,0, 53380,105,0,115,0,
5284116,0,67,0,111, 5339116,0,67,0,111,
52850,110,0,115,0, 53400,110,0,115,0,
5286116,0,97,0,110, 5341116,0,97,0,110,
52870,116,0,95,0, 53420,116,0,95,0,
528849,0,1,225,1, 534349,0,1,228,1,
52893,1,4,1,3, 53443,1,4,1,3,
52901533,22,1,88,1, 53451544,22,1,89,1,
52911485,1534,17,1535,15, 53461485,1545,17,1546,15,
52921070,1,-1,1,5, 53471075,1,-1,1,5,
52931536,20,1537,4,36, 53481547,20,1548,4,36,
529483,0,105,0,109, 534983,0,105,0,109,
52950,112,0,108,0, 53500,112,0,108,0,
5296101,0,65,0,115, 5351101,0,65,0,115,
@@ -5298,37 +5353,51 @@ public yyLSLSyntax
5298103,0,110,0,109, 5353103,0,110,0,109,
52990,101,0,110,0, 53540,101,0,110,0,
5300116,0,95,0,50, 5355116,0,95,0,50,
53010,1,196,1,3, 53560,1,199,1,3,
53021,4,1,3,1538, 53571,4,1,3,1549,
530322,1,59,1,1737, 535822,1,60,1,1737,
53041539,16,0,278,1, 53591550,16,0,270,1,
53051989,894,1,1990,1540, 53601989,899,1,1990,1551,
530616,0,582,1,242, 536117,1119,1,0,1123,
53071541,17,1542,15,1093, 53621,242,1552,17,1553,
53081,-1,1,5,1543, 536315,1098,1,-1,1,
530920,1544,4,36,66, 53645,1554,20,1555,4,
53100,105,0,110,0, 536536,66,0,105,0,
531197,0,114,0,121, 5366110,0,97,0,114,
53120,69,0,120,0, 53670,121,0,69,0,
5313112,0,114,0,101, 5368120,0,112,0,114,
53140,115,0,115,0, 53690,101,0,115,0,
5315105,0,111,0,110, 5370115,0,105,0,111,
53160,95,0,54,0, 53710,110,0,95,0,
53171,245,1,3,1, 537254,0,1,248,1,
53184,1,3,1545,22, 53733,1,4,1,3,
53191,108,1,478,1546, 53741556,22,1,109,1,
532017,1547,15,1509,1, 5375478,1557,17,1558,15,
5321-1,1,5,1548,20, 53761520,1,-1,1,5,
53221549,4,20,67,0, 53771559,20,1560,4,20,
5323111,0,110,0,115, 537867,0,111,0,110,
53240,116,0,97,0, 53790,115,0,116,0,
5325110,0,116,0,95, 538097,0,110,0,116,
53260,50,0,1,222, 53810,95,0,50,0,
53271,3,1,2,1, 53821,225,1,3,1,
53281,1550,22,1,85, 53832,1,1,1561,22,
53291,1001,1551,17,1552, 53841,86,1,1001,1562,
533015,1192,1,-1,1, 538517,1563,15,1200,1,
53315,1553,20,1554,4, 5386-1,1,5,1564,20,
53871565,4,40,84,0,
5388121,0,112,0,101,
53890,99,0,97,0,
5390115,0,116,0,69,
53910,120,0,112,0,
5392114,0,101,0,115,
53930,115,0,105,0,
5394111,0,110,0,95,
53950,56,0,1,273,
53961,3,1,5,1,
53974,1566,22,1,134,
53981,1002,1567,17,1568,
539915,1200,1,-1,1,
54005,1569,20,1570,4,
533240,84,0,121,0, 540140,84,0,121,0,
5333112,0,101,0,99, 5402112,0,101,0,99,
53340,97,0,115,0, 54030,97,0,115,0,
@@ -5336,152 +5405,114 @@ public yyLSLSyntax
53360,112,0,114,0, 54050,112,0,114,0,
5337101,0,115,0,115, 5406101,0,115,0,115,
53380,105,0,111,0, 54070,105,0,111,0,
5339110,0,95,0,56, 5408110,0,95,0,49,
53400,1,270,1,3, 54090,1,266,1,3,
53411,5,1,4,1555, 54101,5,1,4,1571,
534222,1,133,1,1002, 541122,1,127,1,12,
53431556,17,1557,15,1192, 54121572,19,157,1,12,
53441,-1,1,5,1558, 54131573,5,41,1,2075,
534520,1559,4,40,84, 54141574,16,0,155,1,
53460,121,0,112,0, 54151860,827,1,2413,1575,
5347101,0,99,0,97, 541616,0,155,1,2198,
53480,115,0,116,0, 54171576,16,0,155,1,
534969,0,120,0,112, 54181873,836,1,2310,1577,
53500,114,0,101,0,
5351115,0,115,0,105,
53520,111,0,110,0,
535395,0,49,0,1,
5354263,1,3,1,5,
53551,4,1560,22,1,
5356126,1,12,1561,19,
5357157,1,12,1562,5,
535841,1,2074,1563,16,
53590,155,1,1860,820,
53601,2412,1564,16,0,
5361155,1,2197,1565,16,
53620,155,1,2309,1566,
536316,0,155,1,1657, 541916,0,155,1,1657,
5364878,1,1989,894,1, 5420883,1,1989,899,1,
53651990,1567,16,0,155, 54211990,1578,16,0,155,
53661,31,1568,16,0, 54221,31,1579,16,0,
5367155,1,32,1569,16, 5423155,1,32,1580,16,
53680,155,1,2104,801, 54240,155,1,2356,861,
53691,2105,1570,16,0, 54251,2105,810,1,2106,
5370155,1,2358,807,1, 54261581,16,0,155,1,
53712545,1571,16,0,155, 54272359,816,1,2546,1582,
53721,2226,886,1,1901, 542816,0,155,1,2227,
53731572,16,0,155,1, 5429891,1,1901,1583,16,
53742454,1573,16,0,553, 54300,155,1,2455,1584,
53751,1802,774,1,2021, 543116,0,395,1,1802,
5376707,1,1804,1574,16, 5432777,1,2021,709,1,
53770,155,1,2135,836, 54331804,1585,16,0,155,
53781,2354,853,1,2355, 54341,2136,845,1,2355,
5379858,1,2029,714,1, 5435804,1,2029,716,1,
53802030,720,1,2031,725, 54362030,722,1,2031,727,
53811,2032,730,1,2360, 54371,2032,732,1,2033,
5382813,1,2035,741,1, 5438737,1,2361,821,1,
53832037,746,1,2365,1575, 54392035,743,1,2037,748,
538416,0,273,1,2039, 54401,2366,1586,16,0,
5385751,1,1931,863,1, 5441268,1,1931,866,1,
53862041,757,1,1873,829, 54422041,759,1,2043,764,
53871,2043,762,1,2044, 54431,2045,769,1,1775,
5388767,1,1775,1576,16, 54441587,16,0,155,1,
53890,155,1,2033,735, 54452039,753,1,1574,790,
53901,1574,787,1,1958, 54461,1958,1588,16,0,
53911577,16,0,155,1, 5447155,1,13,1589,19,
539213,1578,19,258,1, 5448254,1,13,1590,5,
539313,1579,5,33,1, 544933,1,1860,827,1,
53941860,820,1,2414,1580, 54502415,1591,17,1592,15,
539517,1581,15,1582,4, 54511593,4,22,37,0,
539622,37,0,83,0, 545283,0,116,0,97,
54530,116,0,101,0,
545469,0,118,0,101,
54550,110,0,116,0,
54561,-1,1,5,1594,
545720,1595,4,24,83,
54580,116,0,97,0,
5459116,0,101,0,69,
54600,118,0,101,0,
5461110,0,116,0,95,
54620,49,0,1,157,
54631,3,1,6,1,
54645,1596,22,1,17,
54651,2417,1597,16,0,
5466392,1,1873,836,1,
54672310,1598,16,0,252,
54681,1657,883,1,2029,
5469716,1,1989,899,1,
547032,1599,16,0,371,
54711,2105,810,1,2359,
5472816,1,2227,891,1,
54731574,790,1,2452,1600,
547417,1601,15,1602,4,
547520,37,0,83,0,
5397116,0,97,0,116, 5476116,0,97,0,116,
53980,101,0,69,0, 54770,101,0,66,0,
5399118,0,101,0,110, 5478111,0,100,0,121,
54000,116,0,1,-1, 54790,1,-1,1,5,
54011,5,1583,20,1584, 54801603,20,1604,4,22,
54024,24,83,0,116,
54030,97,0,116,0,
5404101,0,69,0,118,
54050,101,0,110,0,
5406116,0,95,0,49,
54070,1,156,1,3,
54081,6,1,5,1585,
540922,1,17,1,2416,
54101586,16,0,395,1,
54112309,1587,16,0,256,
54121,1657,878,1,2031,
5413725,1,1989,894,1,
541432,1588,16,0,261,
54151,2104,801,1,2226,
5416886,1,2033,735,1,
54172451,1589,17,1590,15,
54181591,4,20,37,0,
541983,0,116,0,97, 548183,0,116,0,97,
54200,116,0,101,0, 54820,116,0,101,0,
542166,0,111,0,100, 548366,0,111,0,100,
54220,121,0,1,-1, 54840,121,0,95,0,
54231,5,1592,20,1593, 548550,0,1,156,1,
54244,22,83,0,116, 54863,1,3,1,2,
54250,97,0,116,0, 54871605,22,1,16,1,
5426101,0,66,0,111, 54882454,1606,17,1607,15,
54270,100,0,121,0, 54891602,1,-1,1,5,
542895,0,50,0,1, 54901608,20,1609,4,22,
5429155,1,3,1,3, 549183,0,116,0,97,
54301,2,1594,22,1, 54920,116,0,101,0,
543116,1,2453,1595,17, 549366,0,111,0,100,
54321596,15,1591,1,-1, 54940,121,0,95,0,
54331,5,1597,20,1598, 549549,0,1,155,1,
54344,22,83,0,116, 54963,1,2,1,1,
54350,97,0,116,0, 54971610,22,1,15,1,
5436101,0,66,0,111, 54981802,777,1,2021,709,
54370,100,0,121,0, 54991,2136,845,1,2355,
543895,0,49,0,1, 5500804,1,2356,861,1,
5439154,1,3,1,2, 55012030,722,1,2031,727,
54401,1,1599,22,1, 55021,2032,732,1,2033,
544115,1,1802,774,1, 5503737,1,2361,821,1,
54422021,707,1,2135,836, 55042035,743,1,2037,748,
54431,2354,853,1,2355, 55051,2039,753,1,1931,
5444858,1,2029,714,1, 5506866,1,2041,759,1,
54452030,720,1,2358,807, 55072043,764,1,2045,769,
54461,2032,730,1,2360, 55081,2491,1611,16,0,
5447813,1,2035,741,1, 5509459,1,14,1612,19,
54482037,746,1,2039,751, 5510144,1,14,1613,5,
54491,1931,863,1,2041, 5511104,1,1260,1073,1,
5450757,1,1873,829,1, 55121011,1079,1,1514,1085,
54512043,762,1,2044,767, 55131,9,1090,1,10,
54521,2490,1600,16,0, 55141614,17,1615,15,1616,
5453455,1,1574,787,1, 55154,48,37,0,65,
545414,1601,19,144,1,
545514,1602,5,104,1,
54561260,1068,1,1011,1074,
54571,1514,1080,1,9,
54581085,1,10,1603,17,
54591604,15,1605,4,48,
546037,0,65,0,114,
54610,103,0,117,0,
5462109,0,101,0,110,
54630,116,0,68,0,
5464101,0,99,0,108,
54650,97,0,114,0,
546697,0,116,0,105,
54670,111,0,110,0,
546876,0,105,0,115,
54690,116,0,1,-1,
54701,5,140,1,0,
54711,0,1606,22,1,
547218,1,262,1091,1,
54731267,1097,1,1521,1102,
54741,1773,1607,16,0,
5475148,1,19,1114,1,
547620,1608,16,0,142,
54771,2280,1121,1,525,
54781184,1,2534,1609,17,
54791610,15,1605,1,-1,
54801,5,140,1,0,
54811,0,1606,1,30,
54821611,17,1612,15,1605,
54831,-1,1,5,1613,
548420,1614,4,50,65,
54850,114,0,103,0, 55160,114,0,103,0,
5486117,0,109,0,101, 5517117,0,109,0,101,
54870,110,0,116,0, 55180,110,0,116,0,
@@ -5491,62 +5522,21 @@ public yyLSLSyntax
54910,105,0,111,0, 55220,105,0,111,0,
5492110,0,76,0,105, 5523110,0,76,0,105,
54930,115,0,116,0, 55240,115,0,116,0,
549495,0,50,0,1, 55251,-1,1,5,140,
5495158,1,3,1,4, 55261,0,1,0,1617,
54961,3,1615,22,1, 552722,1,18,1,262,
549720,1,283,1144,1, 55281096,1,1267,1102,1,
54982543,1616,16,0,142, 55291521,1107,1,1773,1618,
54991,40,1133,1,41, 553016,0,148,1,19,
55001617,17,1618,15,1619, 55311124,1,20,1619,16,
55014,26,37,0,65, 55320,142,1,2281,1131,
55020,114,0,103,0, 55331,525,1192,1,2535,
5503117,0,109,0,101, 55341620,17,1621,15,1616,
55040,110,0,116,0, 55351,-1,1,5,140,
550576,0,105,0,115, 55361,0,1,0,1617,
55060,116,0,1,-1, 55371,30,1622,17,1623,
55071,5,600,1,0, 553815,1616,1,-1,1,
55081,0,1620,22,1, 55395,1624,20,1625,4,
5509136,1,42,1621,17,
55101622,15,1623,4,38,
551137,0,69,0,120,
55120,112,0,114,0,
5513101,0,115,0,115,
55140,105,0,111,0,
5515110,0,65,0,114,
55160,103,0,117,0,
5517109,0,101,0,110,
55180,116,0,1,-1,
55191,5,1624,20,1625,
55204,40,69,0,120,
55210,112,0,114,0,
5522101,0,115,0,115,
55230,105,0,111,0,
5524110,0,65,0,114,
55250,103,0,117,0,
5526109,0,101,0,110,
55270,116,0,95,0,
552849,0,1,275,1,
55293,1,2,1,1,
55301626,22,1,139,1,
553144,1149,1,47,1151,
55321,48,1157,1,49,
55331163,1,50,1174,1,
553451,1169,1,305,1179,
55351,63,1190,1,66,
55361196,1,67,1201,1,
55371478,1417,1,69,1211,
55381,70,1216,1,68,
55391206,1,74,1221,1,
55401013,1226,1,1332,1231,
55411,1048,1236,1,82,
55421252,1,1296,1139,1,
55431341,1269,1,328,1274,
55441,1303,1279,1,1096,
55451284,1,93,1290,1,
55461550,1295,1,352,1301,
55471,2363,1627,17,1628,
554815,1605,1,-1,1,
55495,1629,20,1630,4,
555050,65,0,114,0, 554050,65,0,114,0,
5551103,0,117,0,109, 5541103,0,117,0,109,
55520,101,0,110,0, 55420,101,0,110,0,
@@ -5556,2719 +5546,2807 @@ public yyLSLSyntax
55560,116,0,105,0, 55460,116,0,105,0,
5557111,0,110,0,76, 5547111,0,110,0,76,
55580,105,0,115,0, 55480,105,0,115,0,
5559116,0,95,0,49, 5549116,0,95,0,50,
55600,1,157,1,3, 55500,1,159,1,3,
55611,2,1,1,1631, 55511,4,1,3,1626,
556222,1,19,1,107, 555222,1,20,1,283,
55631308,1,1114,1313,1, 55531154,1,2544,1627,16,
55641370,1476,1,118,1316, 55540,142,1,40,1143,
55651,1123,1321,1,371, 55551,41,1628,17,1629,
55661326,1,1377,1332,1, 555615,1630,4,26,37,
5567375,1337,1,377,1342, 55570,65,0,114,0,
55681,379,1375,1,380, 5558103,0,117,0,109,
55691352,1,883,1412,1, 55590,101,0,110,0,
5570373,1370,1,130,1358, 5560116,0,76,0,105,
55711,2401,1632,17,1633, 55610,115,0,116,0,
557215,1605,1,-1,1, 55621,-1,1,5,602,
55735,140,1,0,1, 55631,0,1,0,1631,
55740,1606,1,143,1380, 556422,1,137,1,42,
55751,1152,1386,1,387, 55651632,17,1633,15,1634,
55761634,16,0,567,1, 55664,38,37,0,69,
55771406,1392,1,1159,1397, 55670,120,0,112,0,
55781,157,1402,1,1413, 5568114,0,101,0,115,
55791407,1,1665,1486,1, 55690,115,0,105,0,
5580412,1635,16,0,577, 5570111,0,110,0,65,
55811,1094,1636,16,0, 55710,114,0,103,0,
5582602,1,172,1428,1, 5572117,0,109,0,101,
5583827,1347,1,1188,1433, 55730,110,0,116,0,
55841,437,1637,16,0, 55741,-1,1,5,1635,
5585639,1,1442,1438,1, 557520,1636,4,40,69,
55861694,1638,16,0,148, 55760,120,0,112,0,
55871,942,1444,1,1195, 5577114,0,101,0,115,
55881449,1,1449,1454,1, 55780,115,0,105,0,
55891701,1459,1,447,1464, 5579111,0,110,0,65,
55901,188,1471,1,205, 55800,114,0,103,0,
55911481,1,459,1639,17, 5581117,0,109,0,101,
55921640,15,1619,1,-1, 55820,110,0,116,0,
55931,5,600,1,0, 558395,0,49,0,1,
55941,0,1620,1,461, 5584278,1,3,1,2,
55951641,16,0,602,1, 55851,1,1637,22,1,
5596464,1642,17,1643,15, 5586140,1,44,1159,1,
55971619,1,-1,1,5, 558747,1160,1,48,1166,
55981644,20,1645,4,28, 55881,49,1172,1,50,
559965,0,114,0,103, 55891177,1,51,1182,1,
56000,117,0,109,0, 5590305,1187,1,63,1198,
5601101,0,110,0,116, 55911,66,1204,1,67,
56020,76,0,105,0, 55921209,1,1478,1432,1,
5603115,0,116,0,95, 559369,1219,1,70,1224,
56040,50,0,1,274, 55941,68,1214,1,74,
56051,3,1,4,1, 55951229,1,1013,1234,1,
56063,1646,22,1,138, 55961332,1239,1,1048,1244,
56071,1224,1492,1,223, 55971,82,1260,1,1296,
56081497,1,1730,1502,1, 55981149,1,1341,1277,1,
5609476,1507,1,477,1513, 5599328,1282,1,1303,1287,
56101,1231,1518,1,2410, 56001,1096,1292,1,93,
56111647,16,0,142,1, 56011298,1,1550,1303,1,
5612480,1528,1,1485,1534, 5602352,1310,1,2364,1638,
56131,242,1541,1,478, 560317,1639,15,1616,1,
56141546,1,479,1523,1, 5604-1,1,5,1640,20,
5615481,1648,17,1649,15, 56051641,4,50,65,0,
56161619,1,-1,1,5, 5606114,0,103,0,117,
56171650,20,1651,4,28, 56070,109,0,101,0,
561865,0,114,0,103, 5608110,0,116,0,68,
56190,117,0,109,0, 56090,101,0,99,0,
5620101,0,110,0,116, 5610108,0,97,0,114,
56110,97,0,116,0,
5612105,0,111,0,110,
56210,76,0,105,0, 56130,76,0,105,0,
5622115,0,116,0,95, 5614115,0,116,0,95,
56230,49,0,1,273, 56150,49,0,1,158,
56241,3,1,2,1, 56161,3,1,2,1,
56251,1652,22,1,137, 56171,1642,22,1,19,
56261,1001,1551,1,1002, 56181,107,1317,1,1114,
56271556,1,15,1653,19, 56191322,1,1370,1426,1,
5628361,1,15,1654,5, 5620118,1324,1,1123,1329,
56296,1,1114,1655,16, 56211,371,1334,1,1377,
56300,359,1,1621,1656, 56221341,1,375,1346,1,
563116,0,638,1,40, 5623377,1352,1,379,1390,
56321657,16,0,564,1, 56241,380,1362,1,883,
563319,1114,1,9,1085, 56251368,1,373,1380,1,
56341,2549,1658,16,0, 5626130,1385,1,2402,1643,
5635629,1,16,1659,19, 562717,1644,15,1616,1,
5636136,1,16,1660,5, 5628-1,1,5,140,1,
5637134,1,256,1661,16, 56290,1,0,1617,1,
56380,187,1,1261,1662, 56301152,1401,1,143,1395,
563916,0,187,1,509, 56311,387,1645,16,0,
56401663,16,0,187,1, 5632564,1,1406,1406,1,
56412197,1664,16,0,187, 56332411,1646,16,0,142,
56421,9,1665,16,0, 56341,1159,1411,1,157,
5643134,1,2021,707,1, 56351416,1,1413,1421,1,
56442372,1666,17,1667,15, 56361665,1498,1,412,1647,
56451668,4,12,37,0, 563716,0,574,1,1094,
56381648,16,0,604,1,
5639172,1443,1,827,1357,
56401,1188,1448,1,437,
56411649,16,0,644,1,
56421442,1453,1,1694,1650,
564316,0,148,1,942,
56441459,1,1195,1465,1,
56451449,1470,1,1701,1475,
56461,447,1480,1,188,
56471487,1,205,1492,1,
5648459,1651,17,1652,15,
56491630,1,-1,1,5,
5650602,1,0,1,0,
56511631,1,461,1653,16,
56520,604,1,464,1654,
565317,1655,15,1630,1,
5654-1,1,5,1656,20,
56551657,4,28,65,0,
5656114,0,103,0,117,
56570,109,0,101,0,
5658110,0,116,0,76,
56590,105,0,115,0,
5660116,0,95,0,50,
56610,1,277,1,3,
56621,4,1,3,1658,
566322,1,139,1,1224,
56641503,1,223,1508,1,
56651730,1513,1,476,1518,
56661,477,1524,1,1231,
56671529,1,479,1534,1,
5668480,1539,1,1485,1545,
56691,242,1552,1,478,
56701557,1,481,1659,17,
56711660,15,1630,1,-1,
56721,5,1661,20,1662,
56734,28,65,0,114,
56740,103,0,117,0,
5675109,0,101,0,110,
56760,116,0,76,0,
5677105,0,115,0,116,
56780,95,0,49,0,
56791,276,1,3,1,
56802,1,1,1663,22,
56811,138,1,1001,1562,
56821,1002,1567,1,15,
56831664,19,353,1,15,
56841665,5,6,1,1114,
56851666,16,0,351,1,
56861621,1667,16,0,643,
56871,40,1668,16,0,
5688558,1,19,1124,1,
56899,1090,1,2550,1669,
569016,0,477,1,16,
56911670,19,136,1,16,
56921671,5,134,1,256,
56931672,16,0,187,1,
56941261,1673,16,0,187,
56951,509,1674,16,0,
5696187,1,9,1675,16,
56970,134,1,2021,709,
56981,2372,1676,17,1677,
569915,1678,4,12,37,
57000,69,0,118,0,
5701101,0,110,0,116,
57020,1,-1,1,5,
57031679,20,1680,4,16,
564669,0,118,0,101, 570469,0,118,0,101,
56470,110,0,116,0, 57050,110,0,116,0,
56481,-1,1,5,1669, 570695,0,50,0,57,
564920,1670,4,16,69, 57070,1,314,1,3,
56500,118,0,101,0, 57081,2,1,1,1681,
5651110,0,116,0,95, 570922,1,176,1,1775,
56520,50,0,56,0,
56531,310,1,3,1,
56542,1,1,1671,22,
56551,174,1,1775,1672,
565616,0,187,1,2029,
5657714,1,2030,720,1,
56582031,725,1,2032,730,
56591,2033,735,1,277,
56601673,16,0,187,1,
56612035,741,1,2037,746,
56621,2039,751,1,32,
56631674,16,0,187,1,
56642041,757,1,2043,762,
56651,2044,767,1,40,
56661675,16,0,166,1,
566741,1676,16,0,187,
56681,1297,1677,16,0,
5669187,1,43,1678,16,
56700,187,1,44,1679,
567116,0,166,1,1802,
5672774,1,1804,1680,16,
56730,187,1,299,1681,
567416,0,187,1,2309,
56751682,16,0,187,1, 57101682,16,0,187,1,
567652,1683,16,0,187, 57112029,716,1,2030,722,
56771,1515,1684,16,0, 57121,2031,727,1,2534,
5678187,1,525,1685,16, 57131683,16,0,468,1,
56790,187,1,62,1686, 57142033,737,1,277,1684,
568016,0,201,1,63, 571516,0,187,1,2035,
56811687,16,0,166,1, 5716743,1,2037,748,1,
56822074,1688,16,0,187, 57172039,753,1,32,1685,
56831,1574,787,1,71, 571816,0,187,1,2041,
56841689,16,0,187,1, 5719759,1,2043,764,1,
56851833,1690,16,0,330, 57202045,769,1,40,1686,
56861,1834,1691,16,0, 572116,0,166,1,41,
5687187,1,79,1692,16, 57221687,16,0,187,1,
56880,187,1,1335,1693, 57231297,1688,16,0,187,
568916,0,187,1,322, 57241,43,1689,16,0,
5725187,1,44,1690,16,
57260,166,1,1802,777,
57271,1804,1691,16,0,
5728187,1,299,1692,16,
57290,187,1,2310,1693,
573016,0,187,1,52,
56901694,16,0,187,1, 57311694,16,0,187,1,
569176,1695,16,0,187, 57321515,1695,16,0,187,
56921,85,1696,16,0, 57331,525,1696,16,0,
5693187,1,89,1697,16, 5734187,1,62,1697,16,
56940,187,1,2354,853, 57350,202,1,63,1698,
56951,2355,858,1,97, 573616,0,166,1,2075,
56961698,16,0,187,1, 57371699,16,0,187,1,
56972358,807,1,2360,813, 57381574,790,1,71,1700,
56981,102,1699,16,0, 573916,0,187,1,1833,
5699187,1,1860,820,1, 57401701,16,0,322,1,
57002533,1700,16,0,468, 57411834,1702,16,0,187,
57011,346,1701,16,0, 57421,79,1703,16,0,
5702187,1,2367,1702,17, 5743187,1,1335,1704,16,
57031703,15,1668,1,-1, 57440,187,1,2136,845,
57041,5,1704,20,1705, 57451,322,1705,16,0,
5746187,1,76,1706,16,
57470,187,1,85,1707,
574816,0,187,1,89,
57491708,16,0,187,1,
5750346,1709,16,0,187,
57511,2355,804,1,2356,
5752861,1,2106,1710,16,
57530,187,1,2359,816,
57541,2361,821,1,1860,
5755827,1,97,1711,16,
57560,187,1,2368,1712,
575717,1713,15,1678,1,
5758-1,1,5,1714,20,
57591715,4,16,69,0,
5760118,0,101,0,110,
57610,116,0,95,0,
576251,0,51,0,1,
5763318,1,3,1,2,
57641,1,1716,22,1,
5765180,1,2369,1717,17,
57661718,15,1678,1,-1,
57671,5,1719,20,1720,
57054,16,69,0,118, 57684,16,69,0,118,
57060,101,0,110,0, 57690,101,0,110,0,
5707116,0,95,0,51, 5770116,0,95,0,51,
57080,51,0,1,315, 57710,50,0,1,317,
57091,3,1,2,1, 57721,3,1,2,1,
57101,1706,22,1,179, 57731,1721,22,1,179,
57111,2368,1707,17,1708, 57741,2370,1722,17,1723,
571215,1668,1,-1,1, 577515,1678,1,-1,1,
57135,1709,20,1710,4, 57765,1724,20,1725,4,
571416,69,0,118,0, 577716,69,0,118,0,
5715101,0,110,0,116, 5778101,0,110,0,116,
57160,95,0,51,0, 57790,95,0,51,0,
571750,0,1,314,1, 578049,0,1,316,1,
57183,1,2,1,1, 57813,1,2,1,1,
57191711,22,1,178,1, 57821726,22,1,178,1,
57202369,1712,17,1713,15, 5783112,1727,16,0,187,
57211668,1,-1,1,5, 57841,1117,1728,16,0,
57221714,20,1715,4,16, 5785187,1,2373,1729,17,
572369,0,118,0,101, 57861730,15,1678,1,-1,
57240,110,0,116,0, 57871,5,1731,20,1732,
572595,0,51,0,49, 57884,16,69,0,118,
57260,1,313,1,3, 57890,101,0,110,0,
57271,2,1,1,1716, 5790116,0,95,0,50,
572822,1,177,1,2370, 57910,56,0,1,313,
57291717,17,1718,15,1668, 57921,3,1,2,1,
57301,-1,1,5,1719, 57931,1733,22,1,175,
573120,1720,4,16,69, 57941,2374,1734,17,1735,
57320,118,0,101,0, 579515,1678,1,-1,1,
5733110,0,116,0,95,
57340,51,0,48,0,
57351,312,1,3,1,
57362,1,1,1721,22,
57371,176,1,112,1722,
573816,0,187,1,1117,
57391723,16,0,187,1,
57402373,1724,17,1725,15,
57411668,1,-1,1,5,
57421726,20,1727,4,16,
574369,0,118,0,101,
57440,110,0,116,0,
574595,0,50,0,55,
57460,1,309,1,3,
57471,2,1,1,1728,
574822,1,173,1,2374,
57491729,17,1730,15,1668,
57501,-1,1,5,1731,
575120,1732,4,16,69,
57520,118,0,101,0,
5753110,0,116,0,95,
57540,50,0,54,0,
57551,308,1,3,1,
57562,1,1,1733,22,
57571,172,1,1873,829,
57581,2376,1734,17,1735,
575915,1668,1,-1,1,
57605,1736,20,1737,4, 57965,1736,20,1737,4,
576116,69,0,118,0, 579716,69,0,118,0,
5762101,0,110,0,116, 5798101,0,110,0,116,
57630,95,0,50,0, 57990,95,0,50,0,
576452,0,1,306,1, 580055,0,1,312,1,
57653,1,2,1,1, 58013,1,2,1,1,
57661738,22,1,170,1, 58021738,22,1,174,1,
57671875,1739,16,0,444, 58031873,836,1,2376,1739,
57681,2378,1740,17,1741, 580417,1740,15,1678,1,
576915,1668,1,-1,1, 5805-1,1,5,1741,20,
57705,1742,20,1743,4, 58061742,4,16,69,0,
5807118,0,101,0,110,
58080,116,0,95,0,
580950,0,53,0,1,
5810310,1,3,1,2,
58111,1,1743,22,1,
5812172,1,1875,1744,16,
58130,439,1,2378,1745,
581417,1746,15,1678,1,
5815-1,1,5,1747,20,
58161748,4,16,69,0,
5817118,0,101,0,110,
58180,116,0,95,0,
581950,0,51,0,1,
5820308,1,3,1,2,
58211,1,1749,22,1,
5822170,1,2379,1750,17,
58231751,15,1678,1,-1,
58241,5,1752,20,1753,
58254,16,69,0,118,
58260,101,0,110,0,
5827116,0,95,0,50,
58280,50,0,1,307,
58291,3,1,2,1,
58301,1754,22,1,169,
58311,2380,1755,17,1756,
583215,1678,1,-1,1,
58335,1757,20,1758,4,
577116,69,0,118,0, 583416,69,0,118,0,
5772101,0,110,0,116, 5835101,0,110,0,116,
57730,95,0,50,0, 58360,95,0,50,0,
577450,0,1,304,1, 583749,0,1,306,1,
57753,1,2,1,1, 58383,1,2,1,1,
57761744,22,1,168,1, 58391759,22,1,168,1,
57772379,1745,17,1746,15, 58402381,1760,17,1761,15,
57781668,1,-1,1,5, 58411678,1,-1,1,5,
57791747,20,1748,4,16, 58421762,20,1763,4,16,
578069,0,118,0,101, 584369,0,118,0,101,
57810,110,0,116,0, 58440,110,0,116,0,
578295,0,50,0,49, 584595,0,50,0,48,
57830,1,303,1,3, 58460,1,305,1,3,
57841,2,1,1,1749, 58471,2,1,1,1764,
578522,1,167,1,2380, 584822,1,167,1,2382,
57861750,17,1751,15,1668, 58491765,17,1766,15,1678,
57871,-1,1,5,1752, 58501,-1,1,5,1767,
578820,1753,4,16,69, 585120,1768,4,16,69,
57890,118,0,101,0, 58520,118,0,101,0,
5790110,0,116,0,95, 5853110,0,116,0,95,
57910,50,0,48,0, 58540,49,0,57,0,
58551,304,1,3,1,
58562,1,1,1769,22,
58571,166,1,124,1770,
585816,0,187,1,2384,
58591771,17,1772,15,1678,
58601,-1,1,5,1773,
586120,1774,4,16,69,
58620,118,0,101,0,
5863110,0,116,0,95,
58640,49,0,55,0,
57921,302,1,3,1, 58651,302,1,3,1,
57932,1,1,1754,22, 58662,1,1,1775,22,
57941,166,1,2381,1755, 58671,164,1,2385,1776,
579517,1756,15,1668,1, 586817,1777,15,1678,1,
5796-1,1,5,1757,20, 5869-1,1,5,1778,20,
57971758,4,16,69,0, 58701779,4,16,69,0,
5798118,0,101,0,110, 5871118,0,101,0,110,
57990,116,0,95,0, 58720,116,0,95,0,
580049,0,57,0,1, 587349,0,54,0,1,
5801301,1,3,1,2, 5874301,1,3,1,2,
58021,1,1759,22,1, 58751,1,1780,22,1,
5803165,1,2382,1760,17, 5876163,1,2386,1781,17,
58041761,15,1668,1,-1, 58771782,15,1678,1,-1,
58051,5,1762,20,1763, 58781,5,1783,20,1784,
58064,16,69,0,118, 58794,16,69,0,118,
58070,101,0,110,0, 58800,101,0,110,0,
5808116,0,95,0,49, 5881116,0,95,0,49,
58090,56,0,1,300, 58820,53,0,1,300,
58101,3,1,2,1, 58831,3,1,2,1,
58111,1764,22,1,164, 58841,1785,22,1,162,
58121,124,1765,16,0, 58851,2387,1786,17,1787,
5813187,1,2384,1766,17, 588615,1678,1,-1,1,
58141767,15,1668,1,-1, 58875,1788,20,1789,4,
58151,5,1768,20,1769,
58164,16,69,0,118,
58170,101,0,110,0,
5818116,0,95,0,49,
58190,54,0,1,298,
58201,3,1,2,1,
58211,1770,22,1,162,
58221,2385,1771,17,1772,
582315,1668,1,-1,1,
58245,1773,20,1774,4,
582516,69,0,118,0, 588816,69,0,118,0,
5826101,0,110,0,116, 5889101,0,110,0,116,
58270,95,0,49,0, 58900,95,0,49,0,
582853,0,1,297,1, 589152,0,1,299,1,
58293,1,2,1,1, 58923,1,2,1,1,
58301775,22,1,161,1, 58931790,22,1,161,1,
58312386,1776,17,1777,15, 58942388,1791,17,1792,15,
58321668,1,-1,1,5, 58951678,1,-1,1,5,
58331778,20,1779,4,16, 58961793,20,1794,4,16,
583469,0,118,0,101, 589769,0,118,0,101,
58350,110,0,116,0, 58980,110,0,116,0,
583695,0,49,0,52, 589995,0,49,0,51,
58370,1,296,1,3, 59000,1,298,1,3,
58381,2,1,1,1780, 59011,2,1,1,1795,
583922,1,160,1,2387, 590222,1,160,1,2389,
58401781,17,1782,15,1668, 59031796,17,1797,15,1678,
58411,-1,1,5,1783, 59041,-1,1,5,1798,
584220,1784,4,16,69, 590520,1799,4,16,69,
58430,118,0,101,0, 59060,118,0,101,0,
5844110,0,116,0,95, 5907110,0,116,0,95,
58450,49,0,51,0, 59080,49,0,50,0,
58461,295,1,3,1, 59091,297,1,3,1,
58472,1,1,1785,22, 59102,1,1,1800,22,
58481,159,1,2388,1786, 59111,159,1,2390,1801,
584917,1787,15,1668,1, 591217,1802,15,1678,1,
5850-1,1,5,1788,20, 5913-1,1,5,1803,20,
58511789,4,16,69,0, 59141804,4,16,69,0,
5852118,0,101,0,110, 5915118,0,101,0,110,
58530,116,0,95,0, 59160,116,0,95,0,
585449,0,50,0,1, 591749,0,49,0,1,
5855294,1,3,1,2, 5918296,1,3,1,2,
58561,1,1790,22,1, 59191,1,1805,22,1,
5857158,1,2389,1791,17, 5920158,1,2391,1806,17,
58581792,15,1668,1,-1, 59211807,15,1678,1,-1,
58591,5,1793,20,1794, 59221,5,1808,20,1809,
58604,16,69,0,118, 59234,16,69,0,118,
58610,101,0,110,0, 59240,101,0,110,0,
5862116,0,95,0,49, 5925116,0,95,0,49,
58630,49,0,1,293, 59260,48,0,1,295,
58641,3,1,2,1, 59271,3,1,2,1,
58651,1795,22,1,157, 59281,1810,22,1,157,
58661,2390,1796,17,1797, 59291,2392,1811,17,1812,
586715,1668,1,-1,1, 593015,1678,1,-1,1,
58685,1798,20,1799,4, 59315,1813,20,1814,4,
586916,69,0,118,0, 593214,69,0,118,0,
5870101,0,110,0,116, 5933101,0,110,0,116,
58710,95,0,49,0, 59340,95,0,57,0,
587248,0,1,292,1, 59351,294,1,3,1,
59362,1,1,1815,22,
59371,156,1,2393,1816,
593817,1817,15,1678,1,
5939-1,1,5,1818,20,
59401819,4,14,69,0,
5941118,0,101,0,110,
59420,116,0,95,0,
594356,0,1,293,1,
58733,1,2,1,1, 59443,1,2,1,1,
58741800,22,1,156,1, 59451820,22,1,155,1,
58752391,1801,17,1802,15, 59462394,1821,17,1822,15,
58761668,1,-1,1,5, 59471678,1,-1,1,5,
58771803,20,1804,4,14, 59481823,20,1824,4,14,
587869,0,118,0,101, 594969,0,118,0,101,
58790,110,0,116,0, 59500,110,0,116,0,
588095,0,57,0,1, 595195,0,55,0,1,
5881291,1,3,1,2, 5952292,1,3,1,2,
58821,1,1805,22,1, 59531,1,1825,22,1,
5883155,1,2392,1806,17, 5954154,1,2395,1826,17,
58841807,15,1668,1,-1, 59551827,15,1678,1,-1,
58851,5,1808,20,1809, 59561,5,1828,20,1829,
58864,14,69,0,118, 59574,14,69,0,118,
58870,101,0,110,0, 59580,101,0,110,0,
5888116,0,95,0,56, 5959116,0,95,0,54,
58890,1,290,1,3, 59600,1,291,1,3,
58901,2,1,1,1810, 59611,2,1,1,1830,
589122,1,154,1,2393, 596222,1,153,1,137,
58921811,17,1812,15,1668, 59631831,16,0,187,1,
58931,-1,1,5,1813, 59642397,1832,17,1833,15,
589420,1814,4,14,69, 59651678,1,-1,1,5,
59661834,20,1835,4,14,
596769,0,118,0,101,
59680,110,0,116,0,
596995,0,52,0,1,
5970289,1,3,1,2,
59711,1,1836,22,1,
5972151,1,2398,1837,17,
59731838,15,1678,1,-1,
59741,5,1839,20,1840,
59754,14,69,0,118,
59760,101,0,110,0,
5977116,0,95,0,51,
59780,1,288,1,3,
59791,2,1,1,1841,
598022,1,150,1,2399,
59811842,17,1843,15,1678,
59821,-1,1,5,1844,
598320,1845,4,14,69,
58950,118,0,101,0, 59840,118,0,101,0,
5896110,0,116,0,95, 5985110,0,116,0,95,
58970,55,0,1,289, 59860,50,0,1,287,
58981,3,1,2,1, 59871,3,1,2,1,
58991,1815,22,1,153, 59881,1846,22,1,149,
59001,2394,1816,17,1817, 59891,2400,1847,17,1848,
590115,1668,1,-1,1, 599015,1678,1,-1,1,
59025,1818,20,1819,4, 59915,1849,20,1850,4,
590314,69,0,118,0, 599214,69,0,118,0,
5904101,0,110,0,116, 5993101,0,110,0,116,
59050,95,0,54,0, 59940,95,0,49,0,
59061,288,1,3,1, 59951,286,1,3,1,
59072,1,1,1820,22, 59962,1,1,1851,22,
59081,152,1,2395,1821, 59971,148,1,2401,1852,
590917,1822,15,1668,1, 599816,0,349,1,381,
5910-1,1,5,1823,20, 59991853,16,0,187,1,
59111824,4,14,69,0, 60001901,1854,16,0,187,
5912118,0,101,0,110, 60011,102,1855,16,0,
59130,116,0,95,0, 6002187,1,1153,1856,16,
591453,0,1,287,1, 60030,187,1,151,1857,
59153,1,2,1,1, 600416,0,187,1,1407,
59161825,22,1,151,1, 60051858,16,0,187,1,
5917137,1826,16,0,187, 60061659,1859,16,0,187,
59181,2397,1827,17,1828, 60071,2032,732,1,406,
591915,1668,1,-1,1, 60081860,16,0,187,1,
59205,1829,20,1830,4, 60091371,1861,16,0,187,
592114,69,0,118,0, 60101,2105,810,1,166,
60111862,16,0,187,1,
60121622,1863,16,0,187,
60131,1931,866,1,1932,
60141864,16,0,478,1,
60151933,1865,16,0,187,
60161,1876,1866,16,0,
6017187,1,431,1867,16,
60180,187,1,1585,1868,
601916,0,187,1,182,
60201869,16,0,187,1,
60211189,1870,16,0,187,
60221,2371,1871,17,1872,
602315,1678,1,-1,1,
60245,1873,20,1874,4,
602516,69,0,118,0,
5922101,0,110,0,116, 6026101,0,110,0,116,
59230,95,0,51,0, 60270,95,0,51,0,
59241,285,1,3,1, 602848,0,1,315,1,
59252,1,1,1831,22,
59261,149,1,2398,1832,
592717,1833,15,1668,1,
5928-1,1,5,1834,20,
59291835,4,14,69,0,
5930118,0,101,0,110,
59310,116,0,95,0,
593250,0,1,284,1,
59333,1,2,1,1, 60293,1,2,1,1,
59341836,22,1,148,1, 60301875,22,1,177,1,
59352399,1837,17,1838,15, 60311695,1876,16,0,187,
59361668,1,-1,1,5, 60321,2198,1877,16,0,
59371839,20,1840,4,14, 6033187,1,2375,1878,17,
593869,0,118,0,101, 60341879,15,1678,1,-1,
59390,110,0,116,0, 60351,5,1880,20,1881,
594095,0,49,0,1,
5941283,1,3,1,2,
59421,1,1841,22,1,
5943147,1,2400,1842,16,
59440,354,1,381,1843,
594516,0,187,1,1901,
59461844,16,0,187,1,
59471153,1845,16,0,187,
59481,151,1846,16,0,
5949187,1,1407,1847,16,
59500,187,1,1659,1848,
595116,0,187,1,406,
59521849,16,0,187,1,
59531371,1850,16,0,187,
59541,2104,801,1,2105,
59551851,16,0,187,1,
5956166,1852,16,0,187,
59571,1622,1853,16,0,
5958187,1,1931,863,1,
59591932,1854,16,0,484,
59601,1933,1855,16,0,
5961187,1,1876,1856,16,
59620,187,1,431,1857,
596316,0,187,1,1585,
59641858,16,0,187,1,
5965182,1859,16,0,187,
59661,1189,1860,16,0,
5967187,1,2371,1861,17,
59681862,15,1668,1,-1,
59691,5,1863,20,1864,
59704,16,69,0,118, 60364,16,69,0,118,
59710,101,0,110,0, 60370,101,0,110,0,
5972116,0,95,0,50, 6038116,0,95,0,50,
59730,57,0,1,311, 60390,54,0,1,311,
59741,3,1,2,1, 60401,3,1,2,1,
59751,1865,22,1,175, 60411,1882,22,1,173,
59761,1695,1866,16,0, 60421,2377,1883,17,1884,
5977187,1,2375,1867,17, 604315,1678,1,-1,1,
59781868,15,1668,1,-1, 60445,1885,20,1886,4,
59791,5,1869,20,1870,
59804,16,69,0,118,
59810,101,0,110,0,
5982116,0,95,0,50,
59830,53,0,1,307,
59841,3,1,2,1,
59851,1871,22,1,171,
59861,2377,1872,17,1873,
598715,1668,1,-1,1,
59885,1874,20,1875,4,
598916,69,0,118,0, 604516,69,0,118,0,
5990101,0,110,0,116, 6046101,0,110,0,116,
59910,95,0,50,0, 60470,95,0,50,0,
599251,0,1,305,1, 604852,0,1,309,1,
59933,1,2,1,1, 60493,1,2,1,1,
59941876,22,1,169,1, 60501887,22,1,171,1,
59952135,836,1,447,1877, 6051447,1888,16,0,187,
599616,0,187,1,199, 60521,199,1889,16,0,
59971878,16,0,187,1, 6053187,1,2383,1890,17,
59982383,1879,17,1880,15, 60541891,15,1678,1,-1,
59991668,1,-1,1,5, 60551,5,1892,20,1893,
60001881,20,1882,4,16, 60564,16,69,0,118,
600169,0,118,0,101,
60020,110,0,116,0,
600395,0,49,0,55,
60040,1,299,1,3,
60051,2,1,1,1883,
600622,1,163,1,1958,
60071884,16,0,187,1,
60082550,1885,16,0,187,
60091,1657,878,1,1658,
60101886,16,0,659,1,
6011459,1887,16,0,187,
60121,462,1888,16,0,
6013187,1,2396,1889,17,
60141890,15,1668,1,-1,
60151,5,1891,20,1892,
60164,14,69,0,118,
60170,101,0,110,0, 60570,101,0,110,0,
6018116,0,95,0,52, 6058116,0,95,0,49,
60190,1,286,1,3, 60590,56,0,1,303,
60201,2,1,1,1893, 60601,3,1,2,1,
602122,1,150,1,217, 60611,1894,22,1,165,
60221894,16,0,187,1, 60621,1958,1895,16,0,
60232226,886,1,1225,1895, 6063187,1,2551,1896,16,
602416,0,187,1,1479, 60640,187,1,1657,883,
60251896,16,0,187,1, 60651,1658,1897,16,0,
60261731,1897,16,0,187, 6066662,1,459,1898,16,
60271,1989,894,1,1990, 60670,187,1,462,1899,
60281898,16,0,187,1, 606816,0,187,1,2396,
60291443,1899,16,0,187, 60691900,17,1901,15,1678,
60301,236,1900,16,0, 60701,-1,1,5,1902,
6031187,1,1756,1901,16, 607120,1903,4,14,69,
60320,187,1,17,1902, 60720,118,0,101,0,
603319,154,1,17,1903, 6073110,0,116,0,95,
60345,116,1,1,1904, 60740,53,0,1,290,
603517,1905,15,1906,4, 60751,3,1,2,1,
603618,37,0,84,0, 60761,1904,22,1,152,
6037121,0,112,0,101, 60771,217,1905,16,0,
60380,110,0,97,0, 6078187,1,2227,891,1,
6039109,0,101,0,1, 60791225,1906,16,0,187,
6040-1,1,5,1907,20, 60801,1479,1907,16,0,
60411908,4,20,84,0, 6081187,1,1731,1908,16,
60820,187,1,1989,899,
60831,1990,1909,16,0,
6084187,1,1443,1910,16,
60850,187,1,236,1911,
608616,0,187,1,1756,
60871912,16,0,187,1,
608817,1913,19,154,1,
608917,1914,5,116,1,
60901,1915,17,1916,15,
60911917,4,18,37,0,
609284,0,121,0,112,
60930,101,0,110,0,
609497,0,109,0,101,
60950,1,-1,1,5,
60961918,20,1919,4,20,
609784,0,121,0,112,
60980,101,0,110,0,
609997,0,109,0,101,
61000,95,0,55,0,
61011,285,1,3,1,
61022,1,1,1920,22,
61031,147,1,2,1921,
610417,1922,15,1917,1,
6105-1,1,5,1923,20,
61061924,4,20,84,0,
6042121,0,112,0,101, 6107121,0,112,0,101,
60430,110,0,97,0, 61080,110,0,97,0,
6044109,0,101,0,95, 6109109,0,101,0,95,
60450,55,0,1,282, 61100,54,0,1,284,
60461,3,1,2,1, 61111,3,1,2,1,
60471,1909,22,1,146, 61121,1925,22,1,146,
60481,2,1910,17,1911, 61131,3,1926,17,1927,
604915,1906,1,-1,1, 611415,1917,1,-1,1,
60505,1912,20,1913,4, 61155,1928,20,1929,4,
605120,84,0,121,0, 611620,84,0,121,0,
6052112,0,101,0,110, 6117112,0,101,0,110,
60530,97,0,109,0, 61180,97,0,109,0,
6054101,0,95,0,54, 6119101,0,95,0,53,
60550,1,281,1,3, 61200,1,283,1,3,
60561,2,1,1,1914, 61211,2,1,1,1930,
605722,1,145,1,3, 612222,1,145,1,4,
60581915,17,1916,15,1906, 61231931,17,1932,15,1917,
60591,-1,1,5,1917, 61241,-1,1,5,1933,
606020,1918,4,20,84, 612520,1934,4,20,84,
60610,121,0,112,0, 61260,121,0,112,0,
6062101,0,110,0,97, 6127101,0,110,0,97,
60630,109,0,101,0, 61280,109,0,101,0,
606495,0,53,0,1, 612995,0,52,0,1,
6065280,1,3,1,2, 6130282,1,3,1,2,
60661,1,1919,22,1, 61311,1,1935,22,1,
6067144,1,4,1920,17, 6132144,1,5,1936,17,
60681921,15,1906,1,-1, 61331937,15,1917,1,-1,
60691,5,1922,20,1923, 61341,5,1938,20,1939,
60704,20,84,0,121, 61354,20,84,0,121,
60710,112,0,101,0, 61360,112,0,101,0,
6072110,0,97,0,109, 6137110,0,97,0,109,
60730,101,0,95,0, 61380,101,0,95,0,
607452,0,1,279,1, 613951,0,1,281,1,
60753,1,2,1,1, 61403,1,2,1,1,
60761924,22,1,143,1, 61411940,22,1,143,1,
60775,1925,17,1926,15, 61426,1941,17,1942,15,
60781906,1,-1,1,5, 61431917,1,-1,1,5,
60791927,20,1928,4,20, 61441943,20,1944,4,20,
608084,0,121,0,112, 614584,0,121,0,112,
60810,101,0,110,0, 61460,101,0,110,0,
608297,0,109,0,101, 614797,0,109,0,101,
60830,95,0,51,0, 61480,95,0,50,0,
60841,278,1,3,1, 61491,280,1,3,1,
60852,1,1,1929,22, 61502,1,1,1945,22,
60861,142,1,6,1930, 61511,142,1,7,1946,
608717,1931,15,1906,1, 615217,1947,15,1917,1,
6088-1,1,5,1932,20, 6153-1,1,5,1948,20,
60891933,4,20,84,0, 61541949,4,20,84,0,
6090121,0,112,0,101, 6155121,0,112,0,101,
60910,110,0,97,0, 61560,110,0,97,0,
6092109,0,101,0,95, 6157109,0,101,0,95,
60930,50,0,1,277, 61580,49,0,1,279,
60941,3,1,2,1, 61591,3,1,2,1,
60951,1934,22,1,141, 61601,1950,22,1,141,
60961,7,1935,17,1936, 61611,1514,1085,1,9,
609715,1906,1,-1,1, 61621090,1,10,1614,1,
60985,1937,20,1938,4, 6163262,1096,1,1267,1102,
609920,84,0,121,0, 61641,1521,1107,1,1773,
6100112,0,101,0,110, 61651951,16,0,233,1,
61010,97,0,109,0, 616619,1124,1,20,1952,
6102101,0,95,0,49, 616716,0,152,1,2281,
61030,1,276,1,3, 61681131,1,525,1192,1,
61041,2,1,1,1939, 61692535,1620,1,30,1622,
610522,1,140,1,1514, 61701,283,1154,1,2544,
61061080,1,9,1085,1, 61711953,16,0,556,1,
610710,1603,1,262,1091, 61721010,1954,16,0,594,
61081,1267,1097,1,1521, 61731,40,1143,1,41,
61091102,1,1773,1940,16, 61741628,1,42,1632,1,
61100,235,1,19,1114, 617544,1159,1,2402,1643,
61111,20,1941,16,0, 61761,47,1160,1,1303,
6112152,1,2280,1121,1, 61771287,1,49,1172,1,
6113525,1184,1,2534,1609, 617850,1177,1,48,1166,
61141,30,1611,1,283, 61791,305,1187,1,51,
61151144,1,2543,1942,16, 61801182,1,61,1955,16,
61160,476,1,1010,1943, 61810,194,1,63,1198,
611716,0,592,1,40, 61821,66,1204,1,67,
61181133,1,41,1617,1, 61831209,1,68,1214,1,
611942,1621,1,44,1149, 618469,1219,1,70,1224,
61201,1260,1068,1,47, 61851,73,1956,16,0,
61211151,1,1303,1279,1, 6186204,1,74,1229,1,
612249,1163,1,50,1174, 61871013,1234,1,328,1282,
61231,48,1157,1,305, 61881,1048,1244,1,82,
61241179,1,51,1169,1, 61891260,1,1840,1957,16,
612561,1944,16,0,193, 61900,356,1,1341,1277,
61261,63,1190,1,2073, 61911,1260,1073,1,1094,
61271945,16,0,566,1, 61921958,16,0,657,1,
612866,1196,1,67,1201, 61931096,1292,1,93,1298,
61291,68,1206,1,69, 61941,1550,1303,1,352,
61301211,1,70,1216,1, 61951310,1,2364,1638,1,
613173,1946,16,0,203, 61961011,1079,1,107,1317,
61321,74,1221,1,1013, 61971,1114,1322,1,1871,
61331226,1,328,1274,1, 61981959,16,0,366,1,
61341048,1236,1,82,1252, 61991370,1426,1,1478,1432,
61351,1840,1947,16,0, 62001,118,1324,1,1123,
6136364,1,1341,1269,1, 62011329,1,1332,1239,1,
61371094,1948,16,0,654, 62021377,1341,1,375,1346,
61381,1096,1284,1,93, 62031,1882,1960,16,0,
61391290,1,1550,1295,1, 6204399,1,377,1352,1,
6140827,1347,1,2363,1627, 6205827,1357,1,380,1362,
61411,1011,1074,1,107, 62061,130,1385,1,2074,
61421308,1,1114,1313,1, 62071961,16,0,563,1,
61431871,1949,16,0,374, 6208371,1334,1,373,1380,
61441,1370,1476,1,1478, 62091,1012,1962,16,0,
61451417,1,118,1316,1, 6210596,1,379,1390,1,
61461123,1321,1,1332,1231, 6211143,1395,1,1152,1401,
61471,1377,1332,1,375, 62121,1406,1406,1,2411,
61481337,1,1882,1950,16, 62131963,16,0,354,1,
61490,406,1,377,1342, 62141159,1411,1,157,1416,
61501,352,1301,1,379, 62151,1413,1421,1,883,
61511375,1,380,1352,1, 62161368,1,1296,1149,1,
6152130,1358,1,371,1326, 6217172,1443,1,1665,1498,
61531,373,1370,1,1012, 62181,1939,1964,16,0,
61541951,16,0,594,1, 6219449,1,1188,1448,1,
61552401,1632,1,143,1380, 62201442,1453,1,188,1487,
61561,1152,1386,1,1406, 62211,942,1459,1,1195,
61571392,1,1159,1397,1, 62221465,1,1449,1470,1,
6158157,1402,1,1413,1407, 62231701,1475,1,447,1480,
61591,883,1412,1,1296, 62241,205,1492,1,459,
61601139,1,172,1428,1, 62251651,1,464,1654,1,
61611665,1486,1,1939,1952, 62262197,1965,16,0,654,
616216,0,452,1,1188, 62271,1224,1503,1,223,
61631433,1,1442,1438,1, 62281508,1,1730,1513,1,
61642196,1953,16,0,649, 6229476,1518,1,477,1524,
61651,942,1444,1,1195, 62301,1231,1529,1,479,
61661449,1,1449,1454,1, 62311534,1,480,1539,1,
61671701,1459,1,447,1464, 62321485,1545,1,242,1552,
61681,188,1471,1,205, 62331,478,1557,1,481,
61691481,1,459,1639,1, 62341659,1,1001,1562,1,
6170464,1642,1,1224,1492, 62351002,1567,1,18,1966,
61711,223,1497,1,1730, 623619,488,1,18,1967,
61721502,1,476,1507,1, 62375,83,1,1011,1079,
6173477,1513,1,1231,1518, 62381,1012,1968,16,0,
61741,2410,1954,16,0, 6239486,1,1013,1234,1,
6175362,1,480,1528,1, 6240262,1096,1,1267,1969,
61761485,1534,1,242,1541, 624116,0,486,1,515,
61771,478,1546,1,479, 62421970,16,0,486,1,
61781523,1,481,1648,1, 62431521,1971,16,0,486,
61791001,1551,1,1002,1556, 62441,525,1192,1,283,
61801,18,1955,19,496, 62451154,1,2557,1972,16,
61811,18,1956,5,83, 62460,486,1,40,1143,
61821,1011,1074,1,1012, 62471,42,1973,16,0,
61831957,16,0,494,1, 6248486,1,44,1159,1,
61841013,1226,1,262,1091, 624947,1160,1,1303,1974,
61851,1267,1958,16,0, 625016,0,486,1,1555,
6186494,1,515,1959,16, 62511975,16,0,486,1,
61870,494,1,1521,1960, 625250,1177,1,48,1166,
618816,0,494,1,525, 62531,49,1172,1,51,
61891184,1,283,1144,1, 62541182,1,63,1198,1,
619040,1133,1,42,1961, 6255305,1187,1,66,1204,
619116,0,494,1,44, 62561,67,1209,1,68,
61921149,1,2556,1962,16, 62571214,1,69,1219,1,
61930,494,1,47,1151, 625870,1224,1,73,1976,
61941,1303,1963,16,0, 625916,0,486,1,74,
6195494,1,1555,1964,16, 62601229,1,328,1282,1,
61960,494,1,50,1174, 62611048,1977,16,0,486,
61971,48,1157,1,49, 62621,82,1978,16,0,
61981163,1,51,1169,1, 6263486,1,1840,1979,16,
619963,1190,1,305,1179, 62640,486,1,1591,1980,
62001,66,1196,1,67, 626516,0,486,1,1341,
62011201,1,68,1206,1, 62661981,16,0,486,1,
620269,1211,1,70,1216, 62671096,1292,1,93,1298,
62031,73,1965,16,0, 62681,352,1310,1,107,
6204494,1,74,1221,1, 62691982,16,0,486,1,
6205328,1274,1,1048,1966, 62701114,1322,1,118,1983,
620616,0,494,1,82, 627116,0,486,1,1123,
62071967,16,0,494,1, 62721984,16,0,486,1,
62081840,1968,16,0,494, 6273371,1334,1,1628,1985,
62091,1591,1969,16,0, 627416,0,486,1,375,
6210494,1,1341,1970,16, 62751346,1,1882,1986,16,
62110,494,1,1096,1284, 62760,486,1,377,1352,
62121,93,1290,1,352, 62771,379,1390,1,380,
62131301,1,107,1971,16, 62781362,1,883,1987,16,
62140,494,1,1114,1313, 62790,486,1,373,1380,
62151,118,1972,16,0, 62801,130,1988,16,0,
6216494,1,1123,1973,16, 6281486,1,143,1989,16,
62170,494,1,371,1326, 62820,486,1,387,1990,
62181,1628,1974,16,0, 628316,0,486,1,1159,
6219494,1,375,1337,1, 62841991,16,0,486,1,
62201882,1975,16,0,494, 6285157,1992,16,0,486,
62211,377,1342,1,379, 62861,1413,1993,16,0,
62221375,1,380,1352,1, 6287486,1,1665,1994,16,
6223883,1976,16,0,494, 62880,486,1,412,1995,
62241,373,1370,1,130, 628916,0,486,1,1377,
62251977,16,0,494,1, 62901996,16,0,486,1,
6226143,1978,16,0,494, 6291172,1997,16,0,486,
62271,387,1979,16,0, 62921,1939,1998,16,0,
6228494,1,1159,1980,16, 6293486,1,437,1999,16,
62290,494,1,157,1981, 62940,486,1,188,2000,
623016,0,494,1,1413, 629516,0,486,1,942,
62311982,16,0,494,1, 62962001,16,0,486,1,
62321665,1983,16,0,494, 62971195,2002,16,0,486,
62331,412,1984,16,0, 62981,1449,2003,16,0,
6234494,1,1377,1985,16, 6299486,1,1701,2004,16,
62350,494,1,172,1986, 63000,486,1,447,1480,
623616,0,494,1,1939, 63011,205,2005,16,0,
62371987,16,0,494,1, 6302486,1,827,2006,16,
6238437,1988,16,0,494, 63030,486,1,223,2007,
62391,188,1989,16,0, 630416,0,486,1,476,
6240494,1,942,1990,16, 63051518,1,477,1524,1,
62410,494,1,1195,1991, 63061231,2008,16,0,486,
624216,0,494,1,1449, 63071,479,1534,1,480,
62431992,16,0,494,1, 63081539,1,1485,2009,16,
62441701,1993,16,0,494, 63090,486,1,1737,2010,
62451,447,1464,1,205, 631016,0,486,1,242,
62461994,16,0,494,1, 63112011,16,0,486,1,
6247827,1995,16,0,494, 6312478,1557,1,1001,1562,
62481,223,1996,16,0, 63131,1002,1567,1,19,
6249494,1,476,1507,1, 63142012,19,225,1,19,
6250477,1513,1,1231,1997, 63152013,5,171,1,256,
625116,0,494,1,479, 63162014,16,0,223,1,
62521523,1,480,1528,1, 63171261,2015,16,0,223,
62531485,1998,16,0,494, 63181,1011,1079,1,1012,
62541,1737,1999,16,0, 63192016,16,0,476,1,
6255494,1,242,2000,16, 63201515,2017,16,0,223,
62560,494,1,478,1546, 63211,262,1096,1,1267,
62571,1001,1551,1,1002, 63222018,16,0,476,1,
62581556,1,19,2001,19, 63232021,709,1,1521,2019,
6259227,1,19,2002,5, 632416,0,476,1,1775,
6260171,1,256,2003,16, 63252020,16,0,223,1,
62610,225,1,1261,2004, 63262029,716,1,2030,722,
626216,0,225,1,1011, 63271,2031,727,1,2032,
62631074,1,1012,2005,16, 6328732,1,2033,737,1,
62640,483,1,1515,2006, 6329277,2021,16,0,223,
626516,0,225,1,262, 63301,2035,743,1,2037,
62661091,1,1267,2007,16, 6331748,1,2039,753,1,
62670,483,1,2021,707, 633232,2022,16,0,223,
62681,1521,2008,16,0, 63331,2041,759,1,2043,
6269483,1,1775,2009,16, 6334764,1,2045,769,1,
62700,225,1,2029,714, 633540,1143,1,41,2023,
62711,2030,720,1,2031, 633616,0,223,1,42,
6272725,1,2032,730,1, 63372024,16,0,476,1,
62732033,735,1,277,2010, 633843,2025,16,0,223,
627416,0,225,1,2035, 63391,44,1159,1,1802,
6275741,1,2037,746,1, 6340777,1,1804,2026,16,
62762039,751,1,32,2011, 63410,223,1,1303,2027,
627716,0,225,1,2041, 634216,0,476,1,49,
6278757,1,2043,762,1, 63431172,1,47,1160,1,
62792044,767,1,40,1133, 634448,1166,1,52,2028,
62801,41,2012,16,0, 634516,0,223,1,50,
6281225,1,42,2013,16, 63461177,1,51,1182,1,
62820,483,1,43,2014, 6347509,2029,16,0,223,
628316,0,225,1,44, 63481,299,2030,16,0,
62841149,1,1802,774,1, 6349223,1,283,1154,1,
62852556,2015,16,0,483, 635063,1198,1,305,1187,
62861,1804,2016,16,0, 63511,66,1204,1,67,
6287225,1,48,1157,1, 63521209,1,68,1214,1,
628849,1163,1,2309,2017, 635369,1219,1,70,1224,
628916,0,225,1,51, 63541,71,2031,16,0,
62901169,1,52,2018,16, 6355223,1,73,2032,16,
62910,225,1,47,1151, 63560,476,1,74,1229,
62921,305,1179,1,50, 63571,1013,1234,1,76,
62931174,1,509,2019,16, 63582033,16,0,223,1,
62940,225,1,299,2020, 63591834,2034,16,0,223,
629516,0,225,1,283, 63601,1048,2035,16,0,
62961144,1,63,1190,1, 6361476,1,79,2036,16,
62971002,1556,1,66,1196, 63620,223,1,1335,2037,
62981,67,1201,1,68, 636316,0,223,1,2136,
62991206,1,69,1211,1, 6364845,1,82,2038,16,
630070,1216,1,71,2021, 63650,476,1,1840,2039,
630116,0,225,1,73, 636616,0,476,1,1297,
63022022,16,0,483,1, 63672040,16,0,223,1,
630374,1221,1,1013,1226, 636885,2041,16,0,223,
63041,76,2023,16,0, 63691,1341,2042,16,0,
6305225,1,1834,2024,16, 6370476,1,89,2043,16,
63060,225,1,1048,2025, 63710,223,1,1096,1292,
630716,0,483,1,79, 63721,93,1298,1,322,
63082026,16,0,225,1, 63732044,16,0,223,1,
63091335,2027,16,0,225, 63742355,804,1,2356,861,
63101,82,2028,16,0, 63751,2106,2045,16,0,
6311483,1,1840,2029,16, 6376223,1,1555,2046,16,
63120,483,1,1297,2030, 63770,476,1,2359,816,
631316,0,225,1,85, 63781,827,2047,16,0,
63142031,16,0,225,1, 6379476,1,2361,821,1,
63151341,2032,16,0,483, 63801860,827,1,97,2048,
63161,89,2033,16,0, 638116,0,223,1,1114,
6317225,1,1303,2034,16, 63821322,1,112,2049,16,
63180,483,1,1096,1284, 63830,223,1,1117,2050,
63191,93,1290,1,2354, 638416,0,223,1,352,
6320853,1,2355,858,1, 63851310,1,1873,836,1,
632197,2035,16,0,225, 6386102,2051,16,0,223,
63221,2358,807,1,2360, 63871,118,2052,16,0,
6323813,1,102,2036,16, 6388476,1,1123,2053,16,
63240,225,1,1860,820, 63890,476,1,371,1334,
63251,107,2037,16,0, 63901,515,2054,16,0,
6326483,1,1114,1313,1, 6391476,1,107,2055,16,
6327112,2038,16,0,225, 63920,476,1,124,2056,
63281,1117,2039,16,0, 639316,0,223,1,1882,
6329225,1,352,1301,1, 63942057,16,0,476,1,
63301873,829,1,118,2040, 6395377,1352,1,379,1390,
633116,0,483,1,1123, 63961,380,1362,1,130,
63322041,16,0,483,1, 63972058,16,0,476,1,
6333371,1326,1,2550,2042, 6398346,2059,16,0,223,
633416,0,225,1,1377, 63991,2075,2060,16,0,
63352043,16,0,483,1, 6400223,1,373,1380,1,
6336124,2044,16,0,225, 6401387,2061,16,0,476,
63371,1882,2045,16,0, 64021,137,2062,16,0,
6338483,1,377,1342,1, 6403223,1,143,2063,16,
63392135,836,1,827,2046, 64040,476,1,1901,2064,
634016,0,483,1,380, 640516,0,223,1,1153,
63411352,1,130,2047,16, 64062065,16,0,223,1,
63420,483,1,322,2048, 6407375,1346,1,151,2066,
634316,0,225,1,2074, 640816,0,223,1,1407,
63442049,16,0,225,1, 64092067,16,0,223,1,
6345373,1370,1,387,2050, 64101659,2068,16,0,223,
634616,0,483,1,137, 64111,1159,2069,16,0,
63472051,16,0,225,1, 6412476,1,381,2070,16,
6348515,2052,16,0,483, 64130,223,1,157,2071,
63491,379,1375,1,143, 641416,0,476,1,1413,
63502053,16,0,483,1, 64152072,16,0,476,1,
63511901,2054,16,0,225, 6416883,2073,16,0,476,
63521,2197,2055,16,0, 64171,1371,2074,16,0,
6353225,1,1153,2056,16, 6418223,1,328,1282,1,
63540,225,1,375,1337, 64192105,810,1,166,2075,
63551,151,2057,16,0, 642016,0,223,1,1377,
6356225,1,1407,2058,16, 64212076,16,0,476,1,
63570,225,1,1659,2059, 64221622,2077,16,0,223,
635816,0,225,1,1159, 64231,406,2078,16,0,
63592060,16,0,483,1, 6424223,1,1574,790,1,
6360381,2061,16,0,225, 6425172,2079,16,0,476,
63611,157,2062,16,0, 64261,1931,866,1,412,
6362483,1,1413,2063,16, 64272080,16,0,476,1,
63630,483,1,883,2064, 64281933,2081,16,0,223,
636416,0,483,1,1371, 64291,1876,2082,16,0,
63652065,16,0,225,1, 6430223,1,431,2083,16,
6366328,1274,1,2104,801, 64310,223,1,1585,2084,
63671,2105,2066,16,0, 643216,0,223,1,182,
6368225,1,166,2067,16, 64332085,16,0,223,1,
63690,225,1,346,2068, 64341628,2086,16,0,476,
637016,0,225,1,1622, 64351,1189,2087,16,0,
63712069,16,0,225,1, 6436223,1,437,2088,16,
6372406,2070,16,0,225, 64370,476,1,1591,2089,
63731,1574,787,1,172, 643816,0,476,1,188,
63742071,16,0,483,1, 64392090,16,0,476,1,
63751931,863,1,412,2072, 64401695,2091,16,0,223,
637616,0,483,1,1933, 64411,2198,2092,16,0,
63772073,16,0,225,1, 6442223,1,1195,2093,16,
63781876,2074,16,0,225, 64430,476,1,1449,2094,
63791,431,2075,16,0, 644416,0,476,1,1701,
6380225,1,1585,2076,16, 64452095,16,0,476,1,
63810,225,1,182,2077, 6446447,2096,16,0,223,
638216,0,225,1,1628, 64471,2310,2097,16,0,
63832078,16,0,483,1, 6448223,1,1958,2098,16,
63841189,2079,16,0,225, 64490,223,1,2551,2099,
63851,437,2080,16,0, 645016,0,223,1,1657,
6386483,1,1591,2081,16, 6451883,1,205,2100,16,
63870,483,1,188,2082, 64520,476,1,199,2101,
638816,0,483,1,1695, 645316,0,223,1,459,
63892083,16,0,225,1, 64542102,16,0,223,1,
63901195,2084,16,0,483, 64552557,2103,16,0,476,
63911,1449,2085,16,0, 64561,462,2104,16,0,
6392483,1,1701,2086,16, 6457223,1,1665,2105,16,
63930,483,1,447,2087, 64580,476,1,217,2106,
639416,0,225,1,199, 645916,0,223,1,2227,
63952088,16,0,225,1, 6460891,1,942,2107,16,
63961958,2089,16,0,225, 64610,476,1,1225,2108,
63971,525,2090,16,0, 646216,0,223,1,223,
6398225,1,1657,878,1, 64632109,16,0,476,1,
6399205,2091,16,0,483, 64641479,2110,16,0,223,
64001,459,2092,16,0, 64651,1731,2111,16,0,
6401225,1,462,2093,16, 6466223,1,477,1524,1,
64020,225,1,1665,2094, 64671231,2112,16,0,476,
640316,0,483,1,217, 64681,479,1534,1,480,
64042095,16,0,225,1, 64691539,1,1485,2113,16,
64052226,886,1,942,2096, 64700,476,1,1737,2114,
640616,0,483,1,1225, 647116,0,476,1,1989,
64072097,16,0,225,1, 6472899,1,1990,2115,16,
6408223,2098,16,0,483, 64730,223,1,1443,2116,
64091,1479,2099,16,0, 647416,0,223,1,236,
6410225,1,1731,2100,16, 64752117,16,0,223,1,
64110,225,1,477,1513, 6476525,2118,16,0,223,
64121,1231,2101,16,0, 64771,476,1518,1,242,
6413483,1,479,1523,1, 64782119,16,0,476,1,
6414480,1528,1,1485,2102, 6479478,1557,1,1939,2120,
641516,0,483,1,1737, 648016,0,476,1,1001,
64162103,16,0,483,1, 64811562,1,1002,1567,1,
64171989,894,1,1990,2104, 64821756,2121,16,0,223,
641816,0,225,1,1443, 64831,20,2122,19,454,
64192105,16,0,225,1, 64841,20,2123,5,83,
6420236,2106,16,0,225, 64851,1011,1079,1,1012,
64211,476,1507,1,242, 64862124,16,0,452,1,
64222107,16,0,483,1, 64871013,1234,1,262,1096,
6423478,1546,1,1939,2108, 64881,1267,2125,16,0,
642416,0,483,1,1001, 6489452,1,515,2126,16,
64251551,1,1555,2109,16, 64900,452,1,1521,2127,
64260,483,1,1756,2110, 649116,0,452,1,525,
642716,0,225,1,20, 64921192,1,283,1154,1,
64282111,19,458,1,20, 64932557,2128,16,0,452,
64292112,5,83,1,1011, 64941,40,1143,1,42,
64301074,1,1012,2113,16, 64952129,16,0,452,1,
64310,456,1,1013,1226, 649644,1159,1,47,1160,
64321,262,1091,1,1267, 64971,1303,2130,16,0,
64332114,16,0,456,1, 6498452,1,1555,2131,16,
6434515,2115,16,0,456, 64990,452,1,50,1177,
64351,1521,2116,16,0, 65001,48,1166,1,49,
6436456,1,525,1184,1, 65011172,1,51,1182,1,
6437283,1144,1,40,1133, 650263,1198,1,305,1187,
64381,42,2117,16,0, 65031,66,1204,1,67,
6439456,1,44,1149,1, 65041209,1,68,1214,1,
64402556,2118,16,0,456, 650569,1219,1,70,1224,
64411,47,1151,1,1303, 65061,73,2132,16,0,
64422119,16,0,456,1, 6507452,1,74,1229,1,
64431555,2120,16,0,456, 6508328,2133,16,0,452,
64441,50,1174,1,48, 65091,1048,2134,16,0,
64451157,1,49,1163,1, 6510452,1,82,2135,16,
644651,1169,1,63,1190, 65110,452,1,1840,2136,
64471,305,1179,1,66, 651216,0,452,1,1591,
64481196,1,67,1201,1, 65132137,16,0,452,1,
644968,1206,1,69,1211, 65141341,2138,16,0,452,
64501,70,1216,1,73, 65151,1096,1292,1,93,
64512121,16,0,456,1, 65161298,1,352,2139,16,
645274,1221,1,328,2122, 65170,452,1,107,2140,
645316,0,456,1,1048, 651816,0,452,1,1114,
64542123,16,0,456,1, 65191322,1,118,2141,16,
645582,2124,16,0,456, 65200,452,1,1123,2142,
64561,1840,2125,16,0, 652116,0,452,1,371,
6457456,1,1591,2126,16, 65221334,1,1628,2143,16,
64580,456,1,1341,2127, 65230,452,1,375,1346,
645916,0,456,1,1096, 65241,1882,2144,16,0,
64601284,1,93,1290,1, 6525452,1,377,1352,1,
6461352,2128,16,0,456, 6526379,1390,1,380,1362,
64621,107,2129,16,0, 65271,883,2145,16,0,
6463456,1,1114,1313,1, 6528452,1,373,1380,1,
6464118,2130,16,0,456, 6529130,2146,16,0,452,
64651,1123,2131,16,0, 65301,143,2147,16,0,
6466456,1,371,1326,1, 6531452,1,387,2148,16,
64671628,2132,16,0,456, 65320,452,1,1159,2149,
64681,375,1337,1,1882, 653316,0,452,1,157,
64692133,16,0,456,1, 65342150,16,0,452,1,
6470377,1342,1,379,1375, 65351413,2151,16,0,452,
64711,380,1352,1,883, 65361,1665,2152,16,0,
64722134,16,0,456,1, 6537452,1,412,2153,16,
6473373,1370,1,130,2135, 65380,452,1,1377,2154,
647416,0,456,1,143, 653916,0,452,1,172,
64752136,16,0,456,1, 65402155,16,0,452,1,
6476387,2137,16,0,456, 65411939,2156,16,0,452,
64771,1159,2138,16,0, 65421,437,2157,16,0,
6478456,1,157,2139,16, 6543452,1,188,2158,16,
64790,456,1,1413,2140, 65440,452,1,942,2159,
648016,0,456,1,1665, 654516,0,452,1,1195,
64812141,16,0,456,1, 65462160,16,0,452,1,
6482412,2142,16,0,456, 65471449,2161,16,0,452,
64831,1377,2143,16,0, 65481,1701,2162,16,0,
6484456,1,172,2144,16, 6549452,1,447,1480,1,
64850,456,1,1939,2145, 6550205,2163,16,0,452,
648616,0,456,1,437, 65511,827,2164,16,0,
64872146,16,0,456,1, 6552452,1,223,2165,16,
6488188,2147,16,0,456, 65530,452,1,476,1518,
64891,942,2148,16,0, 65541,477,1524,1,1231,
6490456,1,1195,2149,16, 65552166,16,0,452,1,
64910,456,1,1449,2150, 6556479,1534,1,480,1539,
649216,0,456,1,1701, 65571,1485,2167,16,0,
64932151,16,0,456,1, 6558452,1,1737,2168,16,
6494447,1464,1,205,2152, 65590,452,1,242,2169,
649516,0,456,1,827, 656016,0,452,1,478,
64962153,16,0,456,1, 65611557,1,1001,1562,1,
6497223,2154,16,0,456, 65621002,1567,1,21,2170,
64981,476,1507,1,477, 656319,447,1,21,2171,
64991513,1,1231,2155,16, 65645,83,1,1011,1079,
65000,456,1,479,1523, 65651,1012,2172,16,0,
65011,480,1528,1,1485, 6566445,1,1013,1234,1,
65022156,16,0,456,1, 6567262,1096,1,1267,2173,
65031737,2157,16,0,456, 656816,0,445,1,515,
65041,242,2158,16,0, 65692174,16,0,445,1,
6505456,1,478,1546,1, 65701521,2175,16,0,445,
65061001,1551,1,1002,1556, 65711,525,1192,1,283,
65071,21,2159,19,449, 65721154,1,2557,2176,16,
65081,21,2160,5,83, 65730,445,1,40,1143,
65091,1011,1074,1,1012, 65741,42,2177,16,0,
65102161,16,0,447,1, 6575445,1,44,1159,1,
65111013,1226,1,262,1091, 657647,1160,1,1303,2178,
65121,1267,2162,16,0, 657716,0,445,1,1555,
6513447,1,515,2163,16, 65782179,16,0,445,1,
65140,447,1,1521,2164, 657950,1177,1,48,1166,
651516,0,447,1,525, 65801,49,1172,1,51,
65161184,1,283,1144,1, 65811182,1,63,1198,1,
651740,1133,1,42,2165, 6582305,1187,1,66,1204,
651816,0,447,1,44, 65831,67,1209,1,68,
65191149,1,2556,2166,16, 65841214,1,69,1219,1,
65200,447,1,47,1151, 658570,1224,1,73,2180,
65211,1303,2167,16,0, 658616,0,445,1,74,
6522447,1,1555,2168,16, 65871229,1,328,2181,16,
65230,447,1,50,1174, 65880,445,1,1048,2182,
65241,48,1157,1,49, 658916,0,445,1,82,
65251163,1,51,1169,1, 65902183,16,0,445,1,
652663,1190,1,305,1179, 65911840,2184,16,0,445,
65271,66,1196,1,67, 65921,1591,2185,16,0,
65281201,1,68,1206,1, 6593445,1,1341,2186,16,
652969,1211,1,70,1216, 65940,445,1,1096,1292,
65301,73,2169,16,0, 65951,93,1298,1,352,
6531447,1,74,1221,1, 65962187,16,0,445,1,
6532328,2170,16,0,447, 6597107,2188,16,0,445,
65331,1048,2171,16,0, 65981,1114,1322,1,118,
6534447,1,82,2172,16, 65992189,16,0,445,1,
65350,447,1,1840,2173, 66001123,2190,16,0,445,
653616,0,447,1,1591, 66011,371,1334,1,1628,
65372174,16,0,447,1, 66022191,16,0,445,1,
65381341,2175,16,0,447, 6603375,1346,1,1882,2192,
65391,1096,1284,1,93, 660416,0,445,1,377,
65401290,1,352,2176,16, 66051352,1,379,1390,1,
65410,447,1,107,2177, 6606380,1362,1,883,2193,
654216,0,447,1,1114, 660716,0,445,1,373,
65431313,1,118,2178,16, 66081380,1,130,2194,16,
65440,447,1,1123,2179, 66090,445,1,143,2195,
654516,0,447,1,371, 661016,0,445,1,387,
65461326,1,1628,2180,16, 66112196,16,0,445,1,
65470,447,1,375,1337, 66121159,2197,16,0,445,
65481,1882,2181,16,0, 66131,157,2198,16,0,
6549447,1,377,1342,1, 6614445,1,1413,2199,16,
6550379,1375,1,380,1352, 66150,445,1,1665,2200,
65511,883,2182,16,0, 661616,0,445,1,412,
6552447,1,373,1370,1, 66172201,16,0,445,1,
6553130,2183,16,0,447, 66181377,2202,16,0,445,
65541,143,2184,16,0, 66191,172,2203,16,0,
6555447,1,387,2185,16, 6620445,1,1939,2204,16,
65560,447,1,1159,2186, 66210,445,1,437,2205,
655716,0,447,1,157, 662216,0,445,1,188,
65582187,16,0,447,1, 66232206,16,0,445,1,
65591413,2188,16,0,447, 6624942,2207,16,0,445,
65601,1665,2189,16,0, 66251,1195,2208,16,0,
6561447,1,412,2190,16, 6626445,1,1449,2209,16,
65620,447,1,1377,2191, 66270,445,1,1701,2210,
656316,0,447,1,172, 662816,0,445,1,447,
65642192,16,0,447,1, 66291480,1,205,2211,16,
65651939,2193,16,0,447, 66300,445,1,827,2212,
65661,437,2194,16,0, 663116,0,445,1,223,
6567447,1,188,2195,16, 66322213,16,0,445,1,
65680,447,1,942,2196, 6633476,1518,1,477,1524,
656916,0,447,1,1195, 66341,1231,2214,16,0,
65702197,16,0,447,1, 6635445,1,479,1534,1,
65711449,2198,16,0,447, 6636480,1539,1,1485,2215,
65721,1701,2199,16,0, 663716,0,445,1,1737,
6573447,1,447,1464,1, 66382216,16,0,445,1,
6574205,2200,16,0,447, 6639242,2217,16,0,445,
65751,827,2201,16,0, 66401,478,1557,1,1001,
6576447,1,223,2202,16, 66411562,1,1002,1567,1,
65770,447,1,476,1507, 664222,2218,19,431,1,
65781,477,1513,1,1231, 664322,2219,5,83,1,
65792203,16,0,447,1, 66441011,1079,1,1012,2220,
6580479,1523,1,480,1528, 664516,0,429,1,1013,
65811,1485,2204,16,0, 66461234,1,262,1096,1,
6582447,1,1737,2205,16, 66471267,2221,16,0,429,
65830,447,1,242,2206, 66481,515,2222,16,0,
658416,0,447,1,478, 6649429,1,1521,2223,16,
65851546,1,1001,1551,1, 66500,429,1,525,1192,
65861002,1556,1,22,2207, 66511,283,1154,1,2557,
658719,435,1,22,2208, 66522224,16,0,429,1,
65885,83,1,1011,1074, 665340,1143,1,42,2225,
65891,1012,2209,16,0, 665416,0,429,1,44,
6590433,1,1013,1226,1, 66551159,1,47,1160,1,
6591262,1091,1,1267,2210, 66561303,2226,16,0,429,
659216,0,433,1,515, 66571,1555,2227,16,0,
65932211,16,0,433,1, 6658429,1,50,1177,1,
65941521,2212,16,0,433, 665948,1166,1,49,1172,
65951,525,1184,1,283, 66601,51,1182,1,63,
65961144,1,40,1133,1, 66611198,1,305,1187,1,
659742,2213,16,0,433, 666266,1204,1,67,1209,
65981,44,1149,1,2556, 66631,68,1214,1,69,
65992214,16,0,433,1, 66641219,1,70,1224,1,
660047,1151,1,1303,2215, 666573,2228,16,0,429,
660116,0,433,1,1555, 66661,74,1229,1,328,
66022216,16,0,433,1, 66672229,16,0,429,1,
660350,1174,1,48,1157, 66681048,2230,16,0,429,
66041,49,1163,1,51, 66691,82,2231,16,0,
66051169,1,63,1190,1, 6670429,1,1840,2232,16,
6606305,1179,1,66,1196, 66710,429,1,1591,2233,
66071,67,1201,1,68, 667216,0,429,1,1341,
66081206,1,69,1211,1, 66732234,16,0,429,1,
660970,1216,1,73,2217, 66741096,1292,1,93,1298,
661016,0,433,1,74, 66751,352,2235,16,0,
66111221,1,328,2218,16, 6676429,1,107,2236,16,
66120,433,1,1048,2219, 66770,429,1,1114,1322,
661316,0,433,1,82, 66781,118,2237,16,0,
66142220,16,0,433,1, 6679429,1,1123,2238,16,
66151840,2221,16,0,433, 66800,429,1,371,1334,
66161,1591,2222,16,0, 66811,1628,2239,16,0,
6617433,1,1341,2223,16, 6682429,1,375,1346,1,
66180,433,1,1096,1284, 66831882,2240,16,0,429,
66191,93,1290,1,352, 66841,377,1352,1,379,
66202224,16,0,433,1, 66851390,1,380,1362,1,
6621107,2225,16,0,433, 6686883,2241,16,0,429,
66221,1114,1313,1,118, 66871,373,1380,1,130,
66232226,16,0,433,1, 66882242,16,0,429,1,
66241123,2227,16,0,433, 6689143,2243,16,0,429,
66251,371,1326,1,1628, 66901,387,2244,16,0,
66262228,16,0,433,1, 6691429,1,1159,2245,16,
6627375,1337,1,1882,2229, 66920,429,1,157,2246,
662816,0,433,1,377, 669316,0,429,1,1413,
66291342,1,379,1375,1, 66942247,16,0,429,1,
6630380,1352,1,883,2230, 66951665,2248,16,0,429,
663116,0,433,1,373, 66961,412,2249,16,0,
66321370,1,130,2231,16, 6697429,1,1377,2250,16,
66330,433,1,143,2232, 66980,429,1,172,2251,
663416,0,433,1,387, 669916,0,429,1,1939,
66352233,16,0,433,1, 67002252,16,0,429,1,
66361159,2234,16,0,433, 6701437,2253,16,0,429,
66371,157,2235,16,0, 67021,188,2254,16,0,
6638433,1,1413,2236,16, 6703429,1,942,2255,16,
66390,433,1,1665,2237, 67040,429,1,1195,2256,
664016,0,433,1,412, 670516,0,429,1,1449,
66412238,16,0,433,1, 67062257,16,0,429,1,
66421377,2239,16,0,433, 67071701,2258,16,0,429,
66431,172,2240,16,0, 67081,447,1480,1,205,
6644433,1,1939,2241,16, 67092259,16,0,429,1,
66450,433,1,437,2242, 6710827,2260,16,0,429,
664616,0,433,1,188, 67111,223,2261,16,0,
66472243,16,0,433,1, 6712429,1,476,1518,1,
6648942,2244,16,0,433, 6713477,1524,1,1231,2262,
66491,1195,2245,16,0, 671416,0,429,1,479,
6650433,1,1449,2246,16, 67151534,1,480,1539,1,
66510,433,1,1701,2247, 67161485,2263,16,0,429,
665216,0,433,1,447, 67171,1737,2264,16,0,
66531464,1,205,2248,16, 6718429,1,242,2265,16,
66540,433,1,827,2249, 67190,429,1,478,1557,
665516,0,433,1,223, 67201,1001,1562,1,1002,
66562250,16,0,433,1, 67211567,1,23,2266,19,
6657476,1507,1,477,1513, 6722502,1,23,2267,5,
66581,1231,2251,16,0, 672336,1,2075,2268,16,
6659433,1,479,1523,1, 67240,500,1,1860,827,
6660480,1528,1,1485,2252, 67251,2198,2269,16,0,
666116,0,433,1,1737, 6726500,1,1873,836,1,
66622253,16,0,433,1, 67272310,2270,16,0,500,
6663242,2254,16,0,433, 67281,1657,883,1,1989,
66641,478,1546,1,1001, 6729899,1,1990,2271,16,
66651551,1,1002,1556,1, 67300,500,1,1775,2272,
666623,2255,19,508,1, 673116,0,500,1,32,
666723,2256,5,36,1, 67322273,16,0,500,1,
66682074,2257,16,0,506, 67332356,861,1,2105,810,
66691,1860,820,1,2197, 67341,2106,2274,16,0,
66702258,16,0,506,1, 6735500,1,2359,816,1,
66712309,2259,16,0,506, 67362227,891,1,1901,2275,
66721,1657,878,1,2031, 673716,0,500,1,1802,
6673725,1,1989,894,1, 6738777,1,2021,709,1,
66741990,2260,16,0,506, 67391804,2276,16,0,500,
66751,1775,2261,16,0, 67401,2136,845,1,2355,
6676506,1,32,2262,16, 6741804,1,2029,716,1,
66770,506,1,2104,801, 67422030,722,1,2031,727,
66781,2105,2263,16,0, 67431,2032,732,1,2033,
6679506,1,2226,886,1, 6744737,1,2361,821,1,
66801901,2264,16,0,506, 67452035,743,1,2037,748,
66811,1802,774,1,2021, 67461,2039,753,1,1931,
6682707,1,1804,2265,16, 6747866,1,2041,759,1,
66830,506,1,2135,836, 67482043,764,1,2045,769,
66841,2354,853,1,2355, 67491,1574,790,1,1958,
6685858,1,2029,714,1, 67502277,16,0,500,1,
66862030,720,1,2358,807, 675124,2278,19,177,1,
66871,2032,730,1,2360, 675224,2279,5,5,1,
6688813,1,2035,741,1, 675344,2280,16,0,175,
66892037,746,1,2039,751, 67541,377,2281,16,0,
66901,1931,863,1,2041, 6755538,1,40,2282,16,
6691757,1,1873,829,1, 67560,665,1,63,2283,
66922043,762,1,2044,767, 675716,0,196,1,373,
66931,2033,735,1,1574, 67582284,16,0,534,1,
6694787,1,1958,2266,16, 675925,2285,19,331,1,
66950,506,1,24,2267, 676025,2286,5,172,1,
669619,177,1,24,2268, 6761256,2287,16,0,543,
66975,5,1,44,2269, 67621,1261,2288,16,0,
669816,0,175,1,377, 6763543,1,1011,1079,1,
66992270,16,0,544,1, 67641012,2289,16,0,329,
670040,2271,16,0,662, 67651,1515,2290,16,0,
67011,63,2272,16,0, 6766543,1,262,1096,1,
6702195,1,373,2273,16, 67671267,2291,16,0,329,
67030,540,1,25,2274, 67681,2021,709,1,1521,
670419,339,1,25,2275, 67692292,16,0,329,1,
67055,172,1,256,2276, 67701775,2293,16,0,543,
670616,0,549,1,1261, 67711,2029,716,1,2030,
67072277,16,0,549,1, 6772722,1,2031,727,1,
67081011,1074,1,1012,2278, 67732032,732,1,2033,737,
670916,0,337,1,1515, 67741,277,2294,16,0,
67102279,16,0,549,1, 6775543,1,2035,743,1,
6711262,1091,1,1267,2280, 67762037,748,1,2039,753,
671216,0,337,1,2021, 67771,32,2295,16,0,
6713707,1,1521,2281,16, 6778543,1,2041,759,1,
67140,337,1,1775,2282, 67792043,764,1,2045,769,
671516,0,549,1,2029, 67801,40,1143,1,41,
6716714,1,2030,720,1, 67812296,16,0,543,1,
67172031,725,1,2032,730, 678242,2297,16,0,329,
67181,2033,735,1,277, 67831,43,2298,16,0,
67192283,16,0,549,1, 6784543,1,44,1159,1,
67202035,741,1,2037,746, 67851802,777,1,1804,2299,
67211,2039,751,1,32, 678616,0,543,1,48,
67222284,16,0,549,1, 67871166,1,49,1172,1,
67232041,757,1,2043,762, 678847,1160,1,51,1182,
67241,2044,767,1,40, 67891,52,2300,16,0,
67251133,1,41,2285,16, 6790543,1,50,1177,1,
67260,549,1,42,2286, 6791305,1187,1,509,2301,
672716,0,337,1,43, 679216,0,543,1,299,
67282287,16,0,549,1, 67932302,16,0,543,1,
672944,1149,1,1802,774, 679462,2303,16,0,543,
67301,2556,2288,16,0, 67951,63,1198,1,66,
6731337,1,1804,2289,16, 67961204,1,67,1209,1,
67320,549,1,48,1157, 679768,1214,1,69,1219,
67331,49,1163,1,2309, 67981,70,1224,1,71,
67342290,16,0,549,1, 67992304,16,0,543,1,
673551,1169,1,52,2291, 6800283,1154,1,73,2305,
673616,0,549,1,47, 680116,0,329,1,74,
67371151,1,305,1179,1, 68021229,1,1013,1234,1,
673850,1174,1,509,2292, 680376,2306,16,0,543,
673916,0,549,1,299, 68041,1834,2307,16,0,
67402293,16,0,549,1, 6805543,1,1048,1244,1,
674162,2294,16,0,549, 680679,2308,16,0,543,
67421,63,1190,1,1002, 68071,1335,2309,16,0,
67431556,1,66,1196,1, 6808543,1,2136,845,1,
674467,1201,1,68,1206, 680982,2310,16,0,329,
67451,69,1211,1,70, 68101,1840,2311,16,0,
67461216,1,71,2295,16, 6811329,1,1297,2312,16,
67470,549,1,283,1144, 68120,543,1,85,2313,
67481,73,2296,16,0, 681316,0,543,1,1341,
6749337,1,74,1221,1, 68142314,16,0,329,1,
67501013,1226,1,76,2297, 681589,2315,16,0,543,
675116,0,549,1,1834, 68161,1303,2316,16,0,
67522298,16,0,549,1, 6817329,1,1096,1292,1,
67531048,1236,1,79,2299, 681893,1298,1,322,2317,
675416,0,549,1,1335, 681916,0,543,1,2355,
67552300,16,0,549,1, 6820804,1,2356,861,1,
675682,2301,16,0,337, 68212106,2318,16,0,543,
67571,1840,2302,16,0, 68221,1555,2319,16,0,
6758337,1,1297,2303,16, 6823329,1,2359,816,1,
67590,549,1,85,2304, 6824827,2320,16,0,329,
676016,0,549,1,1341, 68251,2361,821,1,1860,
67612305,16,0,337,1, 6826827,1,97,2321,16,
676289,2306,16,0,549, 68270,543,1,1114,1322,
67631,1303,2307,16,0, 68281,112,2322,16,0,
6764337,1,1096,1284,1, 6829543,1,1117,2323,16,
676593,1290,1,2354,853, 68300,543,1,352,1310,
67661,2355,858,1,97, 68311,1873,836,1,102,
67672308,16,0,549,1, 68322324,16,0,543,1,
67682358,807,1,2360,813, 6833118,1324,1,1123,2325,
67691,102,2309,16,0, 683416,0,329,1,371,
6770549,1,1860,820,1, 68351334,1,515,2326,16,
6771107,2310,16,0,337, 68360,329,1,107,2327,
67721,1114,1313,1,112, 683716,0,329,1,124,
67732311,16,0,549,1, 68382328,16,0,543,1,
67741117,2312,16,0,549, 68391882,2329,16,0,329,
67751,352,1301,1,1873, 68401,377,1352,1,379,
6776829,1,118,1316,1, 68411390,1,380,1362,1,
67771123,2313,16,0,337, 6842130,1385,1,346,2330,
67781,371,1326,1,2550, 684316,0,543,1,2075,
67792314,16,0,549,1, 68442331,16,0,543,1,
67801377,2315,16,0,337, 6845373,1380,1,387,2332,
67811,124,2316,16,0, 684616,0,329,1,137,
6782549,1,1882,2317,16, 68472333,16,0,543,1,
67830,337,1,377,1342, 6848143,2334,16,0,329,
67841,2135,836,1,827, 68491,1901,2335,16,0,
67852318,16,0,337,1, 6850543,1,1153,2336,16,
6786380,1352,1,130,1358, 68510,543,1,375,1346,
67871,322,2319,16,0, 68521,151,2337,16,0,
6788549,1,2074,2320,16, 6853543,1,1407,2338,16,
67890,549,1,373,1370, 68540,543,1,1659,2339,
67901,387,2321,16,0, 685516,0,543,1,1159,
6791337,1,137,2322,16, 68562340,16,0,329,1,
67920,549,1,515,2323, 6857381,2341,16,0,543,
679316,0,337,1,379, 68581,157,2342,16,0,
67941375,1,143,2324,16, 6859329,1,1413,2343,16,
67950,337,1,1901,2325, 68600,329,1,883,2344,
679616,0,549,1,2197, 686116,0,329,1,1371,
67972326,16,0,549,1, 68622345,16,0,543,1,
67981153,2327,16,0,549, 6863328,1282,1,2105,810,
67991,375,1337,1,151, 68641,166,2346,16,0,
68002328,16,0,549,1, 6865543,1,1377,2347,16,
68011407,2329,16,0,549, 68660,329,1,1622,2348,
68021,1659,2330,16,0, 686716,0,543,1,406,
6803549,1,1159,2331,16, 68682349,16,0,543,1,
68040,337,1,381,2332, 68691574,790,1,172,1443,
680516,0,549,1,157, 68701,1931,866,1,412,
68062333,16,0,337,1, 68712350,16,0,329,1,
68071413,2334,16,0,337, 68721933,2351,16,0,543,
68081,883,2335,16,0, 68731,1876,2352,16,0,
6809337,1,1371,2336,16, 6874543,1,431,2353,16,
68100,549,1,328,1274, 68750,543,1,1585,2354,
68111,2104,801,1,2105, 687616,0,543,1,182,
68122337,16,0,549,1, 68772355,16,0,543,1,
6813166,2338,16,0,549, 68781628,2356,16,0,329,
68141,346,2339,16,0, 68791,1189,2357,16,0,
6815549,1,1622,2340,16, 6880543,1,437,2358,16,
68160,549,1,406,2341, 68810,329,1,1591,2359,
681716,0,549,1,1574, 688216,0,329,1,188,
6818787,1,172,1428,1, 68831487,1,1695,2360,16,
68191931,863,1,412,2342, 68840,543,1,2198,2361,
682016,0,337,1,1933, 688516,0,543,1,1195,
68212343,16,0,549,1, 68862362,16,0,329,1,
68221876,2344,16,0,549, 68871449,2363,16,0,329,
68231,431,2345,16,0, 68881,1701,2364,16,0,
6824549,1,1585,2346,16, 6889329,1,447,2365,16,
68250,549,1,182,2347, 68900,543,1,2310,2366,
682616,0,549,1,1628, 689116,0,543,1,1958,
68272348,16,0,337,1, 68922367,16,0,543,1,
68281189,2349,16,0,549, 68932551,2368,16,0,543,
68291,437,2350,16,0, 68941,1657,883,1,205,
6830337,1,1591,2351,16, 68952369,16,0,329,1,
68310,337,1,188,1471, 6896199,2370,16,0,543,
68321,1695,2352,16,0, 68971,459,2371,16,0,
6833549,1,1195,2353,16, 6898543,1,2557,2372,16,
68340,337,1,1449,2354, 68990,329,1,462,2373,
683516,0,337,1,1701, 690016,0,543,1,1665,
68362355,16,0,337,1, 69012374,16,0,329,1,
6837447,2356,16,0,549, 6902217,2375,16,0,543,
68381,199,2357,16,0, 69031,2227,891,1,942,
6839549,1,1958,2358,16, 69041459,1,1225,2376,16,
68400,549,1,525,2359, 69050,543,1,223,2377,
684116,0,549,1,1657, 690616,0,329,1,1479,
6842878,1,205,2360,16, 69072378,16,0,543,1,
68430,337,1,459,2361, 69081731,2379,16,0,543,
684416,0,549,1,462, 69091,477,1524,1,1231,
68452362,16,0,549,1, 69102380,16,0,329,1,
68461665,2363,16,0,337, 6911479,1534,1,480,1539,
68471,217,2364,16,0, 69121,1485,2381,16,0,
6848549,1,2226,886,1, 6913329,1,1737,2382,16,
6849942,1444,1,1225,2365, 69140,329,1,1989,899,
685016,0,549,1,223, 69151,1990,2383,16,0,
68512366,16,0,337,1, 6916543,1,1443,2384,16,
68521479,2367,16,0,549, 69170,543,1,236,2385,
68531,1731,2368,16,0, 691816,0,543,1,525,
6854549,1,477,1513,1, 69192386,16,0,543,1,
68551231,2369,16,0,337, 6920476,1518,1,242,2387,
68561,479,1523,1,480, 692116,0,329,1,478,
68571528,1,1485,2370,16, 69221557,1,1939,2388,16,
68580,337,1,1737,2371, 69230,329,1,1001,1562,
685916,0,337,1,1989, 69241,1002,1567,1,1756,
6860894,1,1990,2372,16, 69252389,16,0,543,1,
68610,549,1,1443,2373, 692626,2390,19,361,1,
686216,0,549,1,236, 692726,2391,5,83,1,
68632374,16,0,549,1, 69281011,1079,1,1012,2392,
6864476,1507,1,242,2375, 692916,0,359,1,1013,
686516,0,337,1,478, 69301234,1,262,1096,1,
68661546,1,1939,2376,16, 69311267,2393,16,0,359,
68670,337,1,1001,1551, 69321,515,2394,16,0,
68681,1555,2377,16,0, 6933652,1,1521,2395,16,
6869337,1,1756,2378,16, 69340,359,1,525,1192,
68700,549,1,26,2379, 69351,283,1154,1,2557,
687119,369,1,26,2380, 69362396,16,0,359,1,
68725,83,1,1011,1074, 693740,1143,1,42,2397,
68731,1012,2381,16,0, 693816,0,359,1,44,
6874367,1,1013,1226,1, 69391159,1,47,1160,1,
6875262,1091,1,1267,2382, 69401303,2398,16,0,359,
687616,0,367,1,515, 69411,1555,2399,16,0,
68772383,16,0,648,1, 6942359,1,50,1177,1,
68781521,2384,16,0,367, 694348,1166,1,49,1172,
68791,525,1184,1,283, 69441,51,1182,1,63,
68801144,1,40,1133,1, 69451198,1,305,1187,1,
688142,2385,16,0,367, 694666,1204,1,67,1209,
68821,44,1149,1,2556, 69471,68,1214,1,69,
68832386,16,0,367,1, 69481219,1,70,1224,1,
688447,1151,1,1303,2387, 694973,2400,16,0,359,
688516,0,367,1,1555, 69501,74,1229,1,328,
68862388,16,0,367,1, 69511282,1,1048,1244,1,
688750,1174,1,48,1157, 695282,2401,16,0,359,
68881,49,1163,1,51, 69531,1840,2402,16,0,
68891169,1,63,1190,1, 6954359,1,1591,2403,16,
6890305,1179,1,66,1196, 69550,359,1,1341,2404,
68911,67,1201,1,68, 695616,0,359,1,1096,
68921206,1,69,1211,1, 69571292,1,93,1298,1,
689370,1216,1,73,2389, 6958352,1310,1,107,2405,
689416,0,367,1,74, 695916,0,359,1,1114,
68951221,1,328,1274,1, 69601322,1,118,1324,1,
68961048,1236,1,82,2390, 69611123,2406,16,0,359,
689716,0,367,1,1840, 69621,371,1334,1,1628,
68982391,16,0,367,1, 69632407,16,0,359,1,
68991591,2392,16,0,367, 6964375,1346,1,1882,2408,
69001,1341,2393,16,0, 696516,0,359,1,377,
6901367,1,1096,1284,1, 69661352,1,379,1390,1,
690293,1290,1,352,1301, 6967380,1362,1,883,2409,
69031,107,2394,16,0, 696816,0,359,1,373,
6904367,1,1114,1313,1, 69691380,1,130,1385,1,
6905118,1316,1,1123,2395, 6970143,2410,16,0,359,
690616,0,367,1,371, 69711,387,2411,16,0,
69071326,1,1628,2396,16, 6972359,1,1159,2412,16,
69080,367,1,375,1337, 69730,359,1,157,2413,
69091,1882,2397,16,0, 697416,0,359,1,1413,
6910367,1,377,1342,1, 69752414,16,0,359,1,
6911379,1375,1,380,1352, 69761665,2415,16,0,359,
69121,883,2398,16,0, 69771,412,2416,16,0,
6913367,1,373,1370,1, 6978359,1,1377,2417,16,
6914130,1358,1,143,2399, 69790,359,1,172,1443,
691516,0,367,1,387, 69801,1939,2418,16,0,
69162400,16,0,367,1, 6981359,1,437,2419,16,
69171159,2401,16,0,367, 69820,589,1,188,1487,
69181,157,2402,16,0, 69831,942,1459,1,1195,
6919367,1,1413,2403,16, 69842420,16,0,359,1,
69200,367,1,1665,2404, 69851449,2421,16,0,359,
692116,0,367,1,412, 69861,1701,2422,16,0,
69222405,16,0,367,1, 6987359,1,447,1480,1,
69231377,2406,16,0,367, 6988205,2423,16,0,359,
69241,172,1428,1,1939, 69891,827,2424,16,0,
69252407,16,0,367,1, 6990359,1,223,2425,16,
6926437,2408,16,0,587, 69910,359,1,476,1518,
69271,188,1471,1,942, 69921,477,1524,1,1231,
69281444,1,1195,2409,16, 69932426,16,0,359,1,
69290,367,1,1449,2410, 6994479,1534,1,480,1539,
693016,0,367,1,1701, 69951,1485,2427,16,0,
69312411,16,0,367,1, 6996359,1,1737,2428,16,
6932447,1464,1,205,2412, 69970,359,1,242,2429,
693316,0,367,1,827, 699816,0,359,1,478,
69342413,16,0,367,1, 69991557,1,1001,1562,1,
6935223,2414,16,0,367, 70001002,1567,1,27,2430,
69361,476,1507,1,477, 700119,599,1,27,2431,
69371513,1,1231,2415,16, 70025,91,1,256,2432,
69380,367,1,479,1523, 700316,0,597,1,1261,
69391,480,1528,1,1485, 70042433,16,0,597,1,
69402416,16,0,367,1, 7005509,2434,16,0,597,
69411737,2417,16,0,367, 70061,1515,2435,16,0,
69421,242,2418,16,0, 7007597,1,2021,709,1,
6943367,1,478,1546,1, 70081775,2436,16,0,597,
69441001,1551,1,1002,1556, 70091,2029,716,1,2030,
69451,27,2419,19,597, 7010722,1,2031,727,1,
69461,27,2420,5,91, 70112032,732,1,2033,737,
69471,256,2421,16,0, 70121,277,2437,16,0,
6948595,1,1261,2422,16, 7013597,1,2035,743,1,
69490,595,1,509,2423, 70142037,748,1,2039,753,
695016,0,595,1,2197, 70151,32,2438,16,0,
69512424,16,0,595,1, 7016597,1,2041,759,1,
69521515,2425,16,0,595, 70172043,764,1,2045,769,
69531,2021,707,1,1775, 70181,41,2439,16,0,
69542426,16,0,595,1, 7019597,1,1297,2440,16,
69552029,714,1,2030,720, 70200,597,1,43,2441,
69561,2031,725,1,2032, 702116,0,597,1,1802,
6957730,1,2033,735,1, 7022777,1,1804,2442,16,
6958277,2427,16,0,595, 70230,597,1,299,2443,
69591,2035,741,1,2037, 702416,0,597,1,2310,
6960746,1,2039,751,1, 70252444,16,0,597,1,
696132,2428,16,0,595, 702652,2445,16,0,597,
69621,2041,757,1,2043, 70271,525,2446,16,0,
6963762,1,2044,767,1, 7028597,1,62,2447,16,
69642550,2429,16,0,595, 70290,597,1,2075,2448,
69651,41,2430,16,0, 703016,0,597,1,1574,
6966595,1,1297,2431,16, 7031790,1,71,2449,16,
69670,595,1,43,2432, 70320,597,1,76,2450,
696816,0,595,1,1802, 703316,0,597,1,1834,
6969774,1,1804,2433,16, 70342451,16,0,597,1,
69700,595,1,299,2434, 703579,2452,16,0,597,
697116,0,595,1,2309, 70361,1335,2453,16,0,
69722435,16,0,595,1, 7037597,1,322,2454,16,
697352,2436,16,0,595, 70380,597,1,85,2455,
69741,525,2437,16,0, 703916,0,597,1,89,
6975595,1,62,2438,16, 70402456,16,0,597,1,
69760,595,1,2074,2439, 7041346,2457,16,0,597,
697716,0,595,1,1574, 70421,2355,804,1,2105,
6978787,1,71,2440,16, 7043810,1,2106,2458,16,
69790,595,1,76,2441, 70440,597,1,2359,816,
698016,0,595,1,1834, 70451,2361,821,1,1860,
69812442,16,0,595,1, 7046827,1,97,2459,16,
69821585,2443,16,0,595, 70470,597,1,112,2460,
69831,1335,2444,16,0, 704816,0,597,1,1117,
6984595,1,79,2445,16, 70492461,16,0,597,1,
69850,595,1,85,2446, 70501873,836,1,102,2462,
698616,0,595,1,89, 705116,0,597,1,1876,
69872447,16,0,595,1, 70522463,16,0,597,1,
6988346,2448,16,0,595, 70532551,2464,16,0,597,
69891,2104,801,1,2105, 70541,124,2465,16,0,
69902449,16,0,595,1, 7055597,1,2136,845,1,
69912358,807,1,2360,813, 7056381,2466,16,0,597,
69921,97,2450,16,0, 70571,137,2467,16,0,
6993595,1,1860,820,1, 7058597,1,1901,2468,16,
6994102,2451,16,0,595, 70590,597,1,1153,2469,
69951,112,2452,16,0, 706016,0,597,1,151,
6996595,1,1117,2453,16, 70612470,16,0,597,1,
69970,595,1,1873,829, 70621407,2471,16,0,597,
69981,1876,2454,16,0, 70631,1659,2472,16,0,
6999595,1,124,2455,16, 7064597,1,406,2473,16,
70000,595,1,2135,836, 70650,597,1,1371,2474,
70011,381,2456,16,0, 706616,0,597,1,166,
7002595,1,322,2457,16, 70672475,16,0,597,1,
70030,595,1,137,2458, 70681622,2476,16,0,597,
700416,0,595,1,1901, 70691,2356,861,1,1931,
70052459,16,0,595,1, 7070866,1,1933,2477,16,
70061153,2460,16,0,595, 70710,597,1,431,2478,
70071,151,2461,16,0, 707216,0,597,1,1585,
7008595,1,1407,2462,16, 70732479,16,0,597,1,
70090,595,1,1659,2463, 7074182,2480,16,0,597,
701016,0,595,1,406, 70751,1189,2481,16,0,
70112464,16,0,595,1, 7076597,1,1443,2482,16,
70121371,2465,16,0,595, 70770,597,1,1695,2483,
70131,166,2466,16,0, 707816,0,597,1,2198,
7014595,1,1622,2467,16, 70792484,16,0,597,1,
70150,595,1,2354,853, 7080447,2485,16,0,597,
70161,2355,858,1,1931, 70811,199,2486,16,0,
7017863,1,1933,2468,16, 7082597,1,1958,2487,16,
70180,595,1,431,2469, 70830,597,1,1657,883,
701916,0,595,1,182, 70841,459,2488,16,0,
70202470,16,0,595,1, 7085597,1,462,2489,16,
70211189,2471,16,0,595, 70860,597,1,217,2490,
70221,1443,2472,16,0, 708716,0,597,1,2227,
7023595,1,1695,2473,16, 7088891,1,1225,2491,16,
70240,595,1,447,2474, 70890,597,1,1479,2492,
702516,0,595,1,199, 709016,0,597,1,1731,
70262475,16,0,595,1, 70912493,16,0,597,1,
70271958,2476,16,0,595, 70921989,899,1,1990,2494,
70281,1657,878,1,459, 709316,0,597,1,236,
70292477,16,0,595,1, 70942495,16,0,597,1,
7030462,2478,16,0,595, 70951756,2496,16,0,597,
70311,217,2479,16,0, 70961,28,2497,19,630,
7032595,1,2226,886,1, 70971,28,2498,5,60,
70331225,2480,16,0,595, 70981,328,1282,1,223,
70341,1479,2481,16,0, 70991508,1,1096,1292,1,
7035595,1,1731,2482,16, 7100118,1324,1,883,1368,
70360,595,1,1989,894, 71011,525,1192,1,1001,
70371,1990,2483,16,0, 71021562,1,130,1385,1,
7038595,1,236,2484,16, 7103459,1651,1,1114,1322,
70390,595,1,1756,2485, 71041,352,1310,1,447,
704016,0,595,1,28, 71051480,1,464,1654,1,
70412486,19,627,1,28, 71061011,1079,1,1013,1234,
70422487,5,60,1,328, 71071,242,1552,1,143,
70431274,1,223,1497,1, 71081395,1,40,1143,1,
70441096,1284,1,118,1316, 710941,1628,1,42,1632,
70451,883,1412,1,525, 71101,479,1534,1,44,
70461184,1,1001,1551,1, 71111159,1,481,1659,1,
7047130,1358,1,459,1639, 7112373,1380,1,47,1160,
70481,1114,1313,1,352, 71131,157,1416,1,49,
70491301,1,447,1464,1, 71141172,1,50,1177,1,
7050464,1642,1,1011,1074, 711548,1166,1,379,1390,
70511,1013,1226,1,242, 71161,380,1362,1,51,
70521541,1,143,1380,1, 71171182,1,476,1518,1,
705340,1133,1,41,1617, 7118371,1334,1,478,1557,
70541,42,1621,1,479, 71191,1048,1244,1,375,
70551523,1,44,1149,1, 71201346,1,172,1443,1,
7056481,1648,1,373,1370, 7121262,1096,1,283,1154,
70571,47,1151,1,157, 71221,63,1198,1,67,
70581402,1,49,1163,1, 71231209,1,68,1214,1,
705950,1174,1,48,1157, 712469,1219,1,66,1204,
70601,379,1375,1,380, 71251,461,2499,16,0,
70611352,1,51,1169,1, 7126628,1,74,1229,1,
7062476,1507,1,371,1326, 7127377,1352,1,1002,1567,
70631,478,1546,1,1048, 71281,70,1224,1,188,
70641236,1,375,1337,1, 71291487,1,82,1260,1,
7065172,1428,1,262,1091, 7130305,1187,1,477,1524,
70661,283,1144,1,63, 71311,827,1357,1,93,
70671190,1,67,1201,1, 71321298,1,480,1539,1,
706868,1206,1,69,1211, 7133205,1492,1,942,1459,
70691,66,1196,1,461, 71341,107,1317,1,29,
70702488,16,0,625,1, 71352500,19,296,1,29,
707174,1221,1,377,1342, 71362501,5,83,1,1011,
70721,1002,1556,1,70, 71371079,1,1012,2502,16,
70731216,1,188,1471,1, 71380,294,1,1013,1234,
707482,1252,1,305,1179, 71391,262,1096,1,1267,
70751,477,1513,1,827, 71402503,16,0,294,1,
70761347,1,93,1290,1, 7141515,2504,16,0,294,
7077480,1528,1,205,1481, 71421,1521,2505,16,0,
70781,942,1444,1,107, 7143294,1,525,1192,1,
70791308,1,29,2489,19, 7144283,1154,1,2557,2506,
7080304,1,29,2490,5, 714516,0,294,1,40,
708183,1,1011,1074,1, 71461143,1,42,2507,16,
70821012,2491,16,0,302, 71470,294,1,44,1159,
70831,1013,1226,1,262, 71481,47,1160,1,1303,
70841091,1,1267,2492,16, 71492508,16,0,294,1,
70850,302,1,515,2493, 71501555,2509,16,0,294,
708616,0,302,1,1521, 71511,50,1177,1,48,
70872494,16,0,302,1, 71521166,1,49,1172,1,
7088525,1184,1,283,1144, 715351,1182,1,63,1198,
70891,40,1133,1,42, 71541,305,1187,1,66,
70902495,16,0,302,1, 71551204,1,67,1209,1,
709144,1149,1,2556,2496, 715668,1214,1,69,1219,
709216,0,302,1,47, 71571,70,1224,1,73,
70931151,1,1303,2497,16, 71582510,16,0,294,1,
70940,302,1,1555,2498, 715974,1229,1,328,1282,
709516,0,302,1,50, 71601,1048,1244,1,82,
70961174,1,48,1157,1, 71612511,16,0,294,1,
709749,1163,1,51,1169, 71621840,2512,16,0,294,
70981,63,1190,1,305, 71631,1591,2513,16,0,
70991179,1,66,1196,1, 7164294,1,1341,2514,16,
710067,1201,1,68,1206, 71650,294,1,1096,1292,
71011,69,1211,1,70, 71661,93,1298,1,352,
71021216,1,73,2499,16, 71671310,1,107,2515,16,
71030,302,1,74,1221, 71680,294,1,1114,1322,
71041,328,1274,1,1048, 71691,118,1324,1,1123,
71051236,1,82,2500,16, 71702516,16,0,294,1,
71060,302,1,1840,2501, 7171371,1334,1,1628,2517,
710716,0,302,1,1591, 717216,0,294,1,375,
71082502,16,0,302,1, 71731346,1,1882,2518,16,
71091341,2503,16,0,302, 71740,294,1,377,1352,
71101,1096,1284,1,93, 71751,379,1390,1,380,
71111290,1,352,1301,1, 71761362,1,883,2519,16,
7112107,2504,16,0,302, 71770,294,1,373,1380,
71131,1114,1313,1,118, 71781,130,1385,1,143,
71141316,1,1123,2505,16, 71791395,1,387,2520,16,
71150,302,1,371,1326, 71800,294,1,1159,2521,
71161,1628,2506,16,0, 718116,0,294,1,157,
7117302,1,375,1337,1, 71821416,1,1413,2522,16,
71181882,2507,16,0,302, 71830,294,1,1665,2523,
71191,377,1342,1,379, 718416,0,294,1,412,
71201375,1,380,1352,1, 71852524,16,0,294,1,
7121883,2508,16,0,302, 71861377,2525,16,0,294,
71221,373,1370,1,130, 71871,172,1443,1,1939,
71231358,1,143,1380,1, 71882526,16,0,294,1,
7124387,2509,16,0,302, 7189437,2527,16,0,294,
71251,1159,2510,16,0, 71901,188,1487,1,942,
7126302,1,157,1402,1, 71911459,1,1195,2528,16,
71271413,2511,16,0,302, 71920,294,1,1449,2529,
71281,1665,2512,16,0, 719316,0,294,1,1701,
7129302,1,412,2513,16, 71942530,16,0,294,1,
71300,302,1,1377,2514, 7195447,1480,1,205,2531,
713116,0,302,1,172, 719616,0,294,1,827,
71321428,1,1939,2515,16, 71972532,16,0,294,1,
71330,302,1,437,2516, 7198223,2533,16,0,294,
713416,0,302,1,188, 71991,476,1518,1,477,
71351471,1,942,1444,1, 72001524,1,1231,2534,16,
71361195,2517,16,0,302, 72010,294,1,479,1534,
71371,1449,2518,16,0, 72021,480,1539,1,1485,
7138302,1,1701,2519,16, 72032535,16,0,294,1,
71390,302,1,447,1464, 72041737,2536,16,0,294,
71401,205,2520,16,0, 72051,242,2537,16,0,
7141302,1,827,2521,16, 7206294,1,478,1557,1,
71420,302,1,223,2522, 72071001,1562,1,1002,1567,
714316,0,302,1,476, 72081,30,2538,19,266,
71441507,1,477,1513,1, 72091,30,2539,5,83,
71451231,2523,16,0,302, 72101,1011,1079,1,1012,
71461,479,1523,1,480, 72112540,16,0,264,1,
71471528,1,1485,2524,16, 72121013,1234,1,262,1096,
71480,302,1,1737,2525, 72131,1267,2541,16,0,
714916,0,302,1,242, 7214264,1,515,2542,16,
71502526,16,0,302,1, 72150,264,1,1521,2543,
7151478,1546,1,1001,1551, 721616,0,264,1,525,
71521,1002,1556,1,30, 72171192,1,283,1154,1,
71532527,19,272,1,30, 72182557,2544,16,0,264,
71542528,5,83,1,1011, 72191,40,1143,1,42,
71551074,1,1012,2529,16, 72202545,16,0,264,1,
71560,270,1,1013,1226, 722144,1159,1,47,1160,
71571,262,1091,1,1267, 72221,1303,2546,16,0,
71582530,16,0,270,1, 7223264,1,1555,2547,16,
7159515,2531,16,0,270, 72240,264,1,50,1177,
71601,1521,2532,16,0, 72251,48,1166,1,49,
7161270,1,525,1184,1, 72261172,1,51,1182,1,
7162283,1144,1,40,1133, 722763,1198,1,305,1187,
71631,42,2533,16,0, 72281,66,1204,1,67,
7164270,1,44,1149,1, 72291209,1,68,1214,1,
71652556,2534,16,0,270, 723069,1219,1,70,1224,
71661,47,1151,1,1303, 72311,73,2548,16,0,
71672535,16,0,270,1, 7232264,1,74,1229,1,
71681555,2536,16,0,270, 7233328,1282,1,1048,1244,
71691,50,1174,1,48, 72341,82,2549,16,0,
71701157,1,49,1163,1, 7235264,1,1840,2550,16,
717151,1169,1,63,1190, 72360,264,1,1591,2551,
71721,305,1179,1,66, 723716,0,264,1,1341,
71731196,1,67,1201,1, 72382552,16,0,264,1,
717468,1206,1,69,1211, 72391096,1292,1,93,1298,
71751,70,1216,1,73, 72401,352,1310,1,107,
71762537,16,0,270,1, 72412553,16,0,264,1,
717774,1221,1,328,1274, 72421114,1322,1,118,1324,
71781,1048,1236,1,82, 72431,1123,2554,16,0,
71792538,16,0,270,1, 7244264,1,371,1334,1,
71801840,2539,16,0,270, 72451628,2555,16,0,264,
71811,1591,2540,16,0, 72461,375,1346,1,1882,
7182270,1,1341,2541,16, 72472556,16,0,264,1,
71830,270,1,1096,1284, 7248377,1352,1,379,1390,
71841,93,1290,1,352, 72491,380,1362,1,883,
71851301,1,107,2542,16, 72502557,16,0,264,1,
71860,270,1,1114,1313, 7251373,1380,1,130,1385,
71871,118,1316,1,1123, 72521,143,1395,1,387,
71882543,16,0,270,1, 72532558,16,0,264,1,
7189371,1326,1,1628,2544, 72541159,2559,16,0,264,
719016,0,270,1,375, 72551,157,1416,1,1413,
71911337,1,1882,2545,16, 72562560,16,0,264,1,
71920,270,1,377,1342, 72571665,2561,16,0,264,
71931,379,1375,1,380, 72581,412,2562,16,0,
71941352,1,883,2546,16, 7259264,1,1377,2563,16,
71950,270,1,373,1370, 72600,264,1,172,1443,
71961,130,1358,1,143, 72611,1939,2564,16,0,
71971380,1,387,2547,16, 7262264,1,437,2565,16,
71980,270,1,1159,2548, 72630,264,1,188,1487,
719916,0,270,1,157, 72641,942,1459,1,1195,
72001402,1,1413,2549,16, 72652566,16,0,264,1,
72010,270,1,1665,2550, 72661449,2567,16,0,264,
720216,0,270,1,412, 72671,1701,2568,16,0,
72032551,16,0,270,1, 7268264,1,447,1480,1,
72041377,2552,16,0,270, 7269205,2569,16,0,264,
72051,172,1428,1,1939, 72701,827,2570,16,0,
72062553,16,0,270,1, 7271264,1,223,2571,16,
7207437,2554,16,0,270, 72720,264,1,476,1518,
72081,188,1471,1,942, 72731,477,1524,1,1231,
72091444,1,1195,2555,16, 72742572,16,0,264,1,
72100,270,1,1449,2556, 7275479,1534,1,480,1539,
721116,0,270,1,1701, 72761,1485,2573,16,0,
72122557,16,0,270,1, 7277264,1,1737,2574,16,
7213447,1464,1,205,2558, 72780,264,1,242,2575,
721416,0,270,1,827, 727916,0,264,1,478,
72152559,16,0,270,1, 72801557,1,1001,1562,1,
7216223,2560,16,0,270, 72811002,1567,1,31,2576,
72171,476,1507,1,477, 728219,248,1,31,2577,
72181513,1,1231,2561,16, 72835,83,1,1011,1079,
72190,270,1,479,1523, 72841,1012,2578,16,0,
72201,480,1528,1,1485, 7285246,1,1013,1234,1,
72212562,16,0,270,1, 7286262,1096,1,1267,2579,
72221737,2563,16,0,270, 728716,0,246,1,515,
72231,242,2564,16,0, 72882580,16,0,246,1,
7224270,1,478,1546,1, 72891521,2581,16,0,246,
72251001,1551,1,1002,1556, 72901,525,1192,1,283,
72261,31,2565,19,251, 72911154,1,2557,2582,16,
72271,31,2566,5,83, 72920,246,1,40,1143,
72281,1011,1074,1,1012, 72931,42,2583,16,0,
72292567,16,0,249,1, 7294246,1,44,1159,1,
72301013,1226,1,262,1091, 729547,1160,1,1303,2584,
72311,1267,2568,16,0, 729616,0,246,1,1555,
7232249,1,515,2569,16, 72972585,16,0,246,1,
72330,249,1,1521,2570, 729850,1177,1,48,1166,
723416,0,249,1,525, 72991,49,1172,1,51,
72351184,1,283,1144,1, 73001182,1,63,1198,1,
723640,1133,1,42,2571, 7301305,1187,1,66,1204,
723716,0,249,1,44, 73021,67,1209,1,68,
72381149,1,2556,2572,16, 73031214,1,69,1219,1,
72390,249,1,47,1151, 730470,1224,1,73,2586,
72401,1303,2573,16,0, 730516,0,246,1,74,
7241249,1,1555,2574,16, 73061229,1,328,1282,1,
72420,249,1,50,1174, 73071048,1244,1,82,2587,
72431,48,1157,1,49, 730816,0,246,1,1840,
72441163,1,51,1169,1, 73092588,16,0,246,1,
724563,1190,1,305,1179, 73101591,2589,16,0,246,
72461,66,1196,1,67, 73111,1341,2590,16,0,
72471201,1,68,1206,1, 7312246,1,1096,1292,1,
724869,1211,1,70,1216, 731393,1298,1,352,1310,
72491,73,2575,16,0, 73141,107,2591,16,0,
7250249,1,74,1221,1, 7315246,1,1114,1322,1,
7251328,1274,1,1048,1236, 7316118,1324,1,1123,2592,
72521,82,2576,16,0, 731716,0,246,1,371,
7253249,1,1840,2577,16, 73181334,1,1628,2593,16,
72540,249,1,1591,2578, 73190,246,1,375,1346,
725516,0,249,1,1341, 73201,1882,2594,16,0,
72562579,16,0,249,1, 7321246,1,377,1352,1,
72571096,1284,1,93,1290, 7322379,1390,1,380,1362,
72581,352,1301,1,107, 73231,883,2595,16,0,
72592580,16,0,249,1, 7324246,1,373,1380,1,
72601114,1313,1,118,1316, 7325130,1385,1,143,2596,
72611,1123,2581,16,0, 732616,0,246,1,387,
7262249,1,371,1326,1, 73272597,16,0,246,1,
72631628,2582,16,0,249, 73281159,2598,16,0,246,
72641,375,1337,1,1882, 73291,157,2599,16,0,
72652583,16,0,249,1, 7330246,1,1413,2600,16,
7266377,1342,1,379,1375, 73310,246,1,1665,2601,
72671,380,1352,1,883, 733216,0,246,1,412,
72682584,16,0,249,1, 73332602,16,0,246,1,
7269373,1370,1,130,1358, 73341377,2603,16,0,246,
72701,143,2585,16,0, 73351,172,1443,1,1939,
7271249,1,387,2586,16, 73362604,16,0,246,1,
72720,249,1,1159,2587, 7337437,2605,16,0,246,
727316,0,249,1,157, 73381,188,1487,1,942,
72742588,16,0,249,1, 73391459,1,1195,2606,16,
72751413,2589,16,0,249, 73400,246,1,1449,2607,
72761,1665,2590,16,0, 734116,0,246,1,1701,
7277249,1,412,2591,16, 73422608,16,0,246,1,
72780,249,1,1377,2592, 7343447,1480,1,205,2609,
727916,0,249,1,172, 734416,0,246,1,827,
72801428,1,1939,2593,16, 73452610,16,0,246,1,
72810,249,1,437,2594, 7346223,2611,16,0,246,
728216,0,249,1,188, 73471,476,1518,1,477,
72831471,1,942,1444,1, 73481524,1,1231,2612,16,
72841195,2595,16,0,249, 73490,246,1,479,1534,
72851,1449,2596,16,0, 73501,480,1539,1,1485,
7286249,1,1701,2597,16, 73512613,16,0,246,1,
72870,249,1,447,1464, 73521737,2614,16,0,246,
72881,205,2598,16,0, 73531,242,2615,16,0,
7289249,1,827,2599,16, 7354246,1,478,1557,1,
72900,249,1,223,2600, 73551001,1562,1,1002,1567,
729116,0,249,1,476, 73561,32,2616,19,241,
72921507,1,477,1513,1, 73571,32,2617,5,83,
72931231,2601,16,0,249, 73581,1011,1079,1,1012,
72941,479,1523,1,480, 73592618,16,0,239,1,
72951528,1,1485,2602,16, 73601013,1234,1,262,1096,
72960,249,1,1737,2603, 73611,1267,2619,16,0,
729716,0,249,1,242, 7362239,1,515,2620,16,
72982604,16,0,249,1, 73630,239,1,1521,2621,
7299478,1546,1,1001,1551, 736416,0,239,1,525,
73001,1002,1556,1,32, 73651192,1,283,1154,1,
73012605,19,244,1,32, 73662557,2622,16,0,239,
73022606,5,83,1,1011, 73671,40,1143,1,42,
73031074,1,1012,2607,16, 73682623,16,0,239,1,
73040,242,1,1013,1226, 736944,1159,1,47,1160,
73051,262,1091,1,1267, 73701,1303,2624,16,0,
73062608,16,0,242,1, 7371239,1,1555,2625,16,
7307515,2609,16,0,242, 73720,239,1,50,1177,
73081,1521,2610,16,0, 73731,48,1166,1,49,
7309242,1,525,1184,1, 73741172,1,51,1182,1,
7310283,1144,1,40,1133, 737563,1198,1,305,1187,
73111,42,2611,16,0, 73761,66,1204,1,67,
7312242,1,44,1149,1, 73771209,1,68,1214,1,
73132556,2612,16,0,242, 737869,1219,1,70,1224,
73141,47,1151,1,1303, 73791,73,2626,16,0,
73152613,16,0,242,1, 7380239,1,74,1229,1,
73161555,2614,16,0,242, 7381328,1282,1,1048,1244,
73171,50,1174,1,48, 73821,82,2627,16,0,
73181157,1,49,1163,1, 7383239,1,1840,2628,16,
731951,1169,1,63,1190, 73840,239,1,1591,2629,
73201,305,1179,1,66, 738516,0,239,1,1341,
73211196,1,67,1201,1, 73862630,16,0,239,1,
732268,1206,1,69,1211, 73871096,1292,1,93,1298,
73231,70,1216,1,73, 73881,352,1310,1,107,
73242615,16,0,242,1, 73892631,16,0,239,1,
732574,1221,1,328,1274, 73901114,1322,1,118,1324,
73261,1048,1236,1,82, 73911,1123,2632,16,0,
73272616,16,0,242,1, 7392239,1,371,1334,1,
73281840,2617,16,0,242, 73931628,2633,16,0,239,
73291,1591,2618,16,0, 73941,375,1346,1,1882,
7330242,1,1341,2619,16, 73952634,16,0,239,1,
73310,242,1,1096,1284, 7396377,1352,1,379,1390,
73321,93,1290,1,352, 73971,380,1362,1,883,
73331301,1,107,2620,16, 73982635,16,0,239,1,
73340,242,1,1114,1313, 7399373,1380,1,130,1385,
73351,118,1316,1,1123, 74001,143,2636,16,0,
73362621,16,0,242,1, 7401239,1,387,2637,16,
7337371,1326,1,1628,2622, 74020,239,1,1159,2638,
733816,0,242,1,375, 740316,0,239,1,157,
73391337,1,1882,2623,16, 74042639,16,0,239,1,
73400,242,1,377,1342, 74051413,2640,16,0,239,
73411,379,1375,1,380, 74061,1665,2641,16,0,
73421352,1,883,2624,16, 7407239,1,412,2642,16,
73430,242,1,373,1370, 74080,239,1,1377,2643,
73441,130,1358,1,143, 740916,0,239,1,172,
73452625,16,0,242,1, 74101443,1,1939,2644,16,
7346387,2626,16,0,242, 74110,239,1,437,2645,
73471,1159,2627,16,0, 741216,0,239,1,188,
7348242,1,157,2628,16, 74131487,1,942,1459,1,
73490,242,1,1413,2629, 74141195,2646,16,0,239,
735016,0,242,1,1665, 74151,1449,2647,16,0,
73512630,16,0,242,1, 7416239,1,1701,2648,16,
7352412,2631,16,0,242, 74170,239,1,447,1480,
73531,1377,2632,16,0, 74181,205,2649,16,0,
7354242,1,172,1428,1, 7419239,1,827,2650,16,
73551939,2633,16,0,242, 74200,239,1,223,2651,
73561,437,2634,16,0, 742116,0,239,1,476,
7357242,1,188,1471,1, 74221518,1,477,1524,1,
7358942,1444,1,1195,2635, 74231231,2652,16,0,239,
735916,0,242,1,1449, 74241,479,1534,1,480,
73602636,16,0,242,1, 74251539,1,1485,2653,16,
73611701,2637,16,0,242, 74260,239,1,1737,2654,
73621,447,1464,1,205, 742716,0,239,1,242,
73632638,16,0,242,1, 74282655,16,0,239,1,
7364827,2639,16,0,242, 7429478,1557,1,1001,1562,
73651,223,2640,16,0, 74301,1002,1567,1,33,
7366242,1,476,1507,1, 74312656,19,412,1,33,
7367477,1513,1,1231,2641, 74322657,5,83,1,1011,
736816,0,242,1,479, 74331079,1,1012,2658,16,
73691523,1,480,1528,1, 74340,410,1,1013,1234,
73701485,2642,16,0,242, 74351,262,1096,1,1267,
73711,1737,2643,16,0, 74362659,16,0,410,1,
7372242,1,242,2644,16, 7437515,2660,16,0,410,
73730,242,1,478,1546, 74381,1521,2661,16,0,
73741,1001,1551,1,1002, 7439410,1,525,1192,1,
73751556,1,33,2645,19, 7440283,1154,1,2557,2662,
7376416,1,33,2646,5, 744116,0,410,1,40,
737783,1,1011,1074,1, 74421143,1,42,2663,16,
73781012,2647,16,0,414, 74430,410,1,44,1159,
73791,1013,1226,1,262, 74441,47,1160,1,1303,
73801091,1,1267,2648,16, 74452664,16,0,410,1,
73810,414,1,515,2649, 74461555,2665,16,0,410,
738216,0,414,1,1521, 74471,50,1177,1,48,
73832650,16,0,414,1, 74481166,1,49,1172,1,
7384525,1184,1,283,1144, 744951,1182,1,63,1198,
73851,40,1133,1,42, 74501,305,1187,1,66,
73862651,16,0,414,1, 74511204,1,67,1209,1,
738744,1149,1,2556,2652, 745268,1214,1,69,1219,
738816,0,414,1,47, 74531,70,1224,1,73,
73891151,1,1303,2653,16, 74542666,16,0,410,1,
73900,414,1,1555,2654, 745574,1229,1,328,1282,
739116,0,414,1,50, 74561,1048,1244,1,82,
73921174,1,48,1157,1, 74572667,16,0,410,1,
739349,1163,1,51,1169, 74581840,2668,16,0,410,
73941,63,1190,1,305, 74591,1591,2669,16,0,
73951179,1,66,1196,1, 7460410,1,1341,2670,16,
739667,1201,1,68,1206, 74610,410,1,1096,1292,
73971,69,1211,1,70, 74621,93,1298,1,352,
73981216,1,73,2655,16, 74631310,1,107,2671,16,
73990,414,1,74,1221, 74640,410,1,1114,1322,
74001,328,1274,1,1048, 74651,118,1324,1,1123,
74011236,1,82,2656,16, 74662672,16,0,410,1,
74020,414,1,1840,2657, 7467371,1334,1,1628,2673,
740316,0,414,1,1591, 746816,0,410,1,375,
74042658,16,0,414,1, 74691346,1,1882,2674,16,
74051341,2659,16,0,414, 74700,410,1,377,1352,
74061,1096,1284,1,93, 74711,379,1390,1,380,
74071290,1,352,1301,1, 74721362,1,883,2675,16,
7408107,2660,16,0,414, 74730,410,1,373,1380,
74091,1114,1313,1,118, 74741,130,1385,1,143,
74101316,1,1123,2661,16, 74751395,1,387,2676,16,
74110,414,1,371,1326, 74760,410,1,1159,2677,
74121,1628,2662,16,0, 747716,0,410,1,157,
7413414,1,375,1337,1, 74781416,1,1413,2678,16,
74141882,2663,16,0,414, 74790,410,1,1665,2679,
74151,377,1342,1,379, 748016,0,410,1,412,
74161375,1,380,1352,1, 74812680,16,0,410,1,
7417883,2664,16,0,414, 74821377,2681,16,0,410,
74181,373,1370,1,130, 74831,172,1443,1,1939,
74191358,1,143,1380,1, 74842682,16,0,410,1,
7420387,2665,16,0,414, 7485437,2683,16,0,410,
74211,1159,2666,16,0, 74861,188,1487,1,942,
7422414,1,157,1402,1, 74871459,1,1195,2684,16,
74231413,2667,16,0,414, 74880,410,1,1449,2685,
74241,1665,2668,16,0, 748916,0,410,1,1701,
7425414,1,412,2669,16, 74902686,16,0,410,1,
74260,414,1,1377,2670, 7491447,1480,1,205,2687,
742716,0,414,1,172, 749216,0,410,1,827,
74281428,1,1939,2671,16, 74932688,16,0,410,1,
74290,414,1,437,2672, 7494223,2689,16,0,410,
743016,0,414,1,188, 74951,476,1518,1,477,
74311471,1,942,1444,1, 74961524,1,1231,2690,16,
74321195,2673,16,0,414, 74970,410,1,479,1534,
74331,1449,2674,16,0, 74981,480,1539,1,1485,
7434414,1,1701,2675,16, 74992691,16,0,410,1,
74350,414,1,447,1464, 75001737,2692,16,0,410,
74361,205,2676,16,0, 75011,242,1552,1,478,
7437414,1,827,2677,16, 75021557,1,1001,1562,1,
74380,414,1,223,2678, 75031002,1567,1,34,2693,
743916,0,414,1,476, 750419,379,1,34,2694,
74401507,1,477,1513,1, 75055,83,1,1011,1079,
74411231,2679,16,0,414, 75061,1012,2695,16,0,
74421,479,1523,1,480, 7507377,1,1013,1234,1,
74431528,1,1485,2680,16, 7508262,1096,1,1267,2696,
74440,414,1,1737,2681, 750916,0,377,1,515,
744516,0,414,1,242, 75102697,16,0,377,1,
74461541,1,478,1546,1, 75111521,2698,16,0,377,
74471001,1551,1,1002,1556, 75121,525,1192,1,283,
74481,34,2682,19,385, 75131154,1,2557,2699,16,
74491,34,2683,5,83, 75140,377,1,40,1143,
74501,1011,1074,1,1012, 75151,42,2700,16,0,
74512684,16,0,383,1, 7516377,1,44,1159,1,
74521013,1226,1,262,1091, 751747,1160,1,1303,2701,
74531,1267,2685,16,0, 751816,0,377,1,1555,
7454383,1,515,2686,16, 75192702,16,0,377,1,
74550,383,1,1521,2687, 752050,1177,1,48,1166,
745616,0,383,1,525, 75211,49,1172,1,51,
74571184,1,283,1144,1, 75221182,1,63,1198,1,
745840,1133,1,42,2688, 7523305,1187,1,66,1204,
745916,0,383,1,44, 75241,67,1209,1,68,
74601149,1,2556,2689,16, 75251214,1,69,1219,1,
74610,383,1,47,1151, 752670,1224,1,73,2703,
74621,1303,2690,16,0, 752716,0,377,1,74,
7463383,1,1555,2691,16, 75281229,1,328,1282,1,
74640,383,1,50,1174, 75291048,1244,1,82,2704,
74651,48,1157,1,49, 753016,0,377,1,1840,
74661163,1,51,1169,1, 75312705,16,0,377,1,
746763,1190,1,305,1179, 75321591,2706,16,0,377,
74681,66,1196,1,67, 75331,1341,2707,16,0,
74691201,1,68,1206,1, 7534377,1,1096,1292,1,
747069,1211,1,70,1216, 753593,1298,1,352,1310,
74711,73,2692,16,0, 75361,107,2708,16,0,
7472383,1,74,1221,1, 7537377,1,1114,1322,1,
7473328,1274,1,1048,1236, 7538118,1324,1,1123,2709,
74741,82,2693,16,0, 753916,0,377,1,371,
7475383,1,1840,2694,16, 75401334,1,1628,2710,16,
74760,383,1,1591,2695, 75410,377,1,375,1346,
747716,0,383,1,1341, 75421,1882,2711,16,0,
74782696,16,0,383,1, 7543377,1,377,1352,1,
74791096,1284,1,93,1290, 7544379,1390,1,380,1362,
74801,352,1301,1,107, 75451,883,2712,16,0,
74812697,16,0,383,1, 7546377,1,373,1380,1,
74821114,1313,1,118,1316, 7547130,1385,1,143,1395,
74831,1123,2698,16,0, 75481,387,2713,16,0,
7484383,1,371,1326,1, 7549377,1,1159,2714,16,
74851628,2699,16,0,383, 75500,377,1,157,1416,
74861,375,1337,1,1882, 75511,1413,2715,16,0,
74872700,16,0,383,1, 7552377,1,1665,2716,16,
7488377,1342,1,379,1375, 75530,377,1,412,2717,
74891,380,1352,1,883, 755416,0,377,1,1377,
74902701,16,0,383,1, 75552718,16,0,377,1,
7491373,1370,1,130,1358, 7556172,1443,1,1939,2719,
74921,143,1380,1,387, 755716,0,377,1,437,
74932702,16,0,383,1, 75582720,16,0,377,1,
74941159,2703,16,0,383, 7559188,1487,1,942,1459,
74951,157,1402,1,1413, 75601,1195,2721,16,0,
74962704,16,0,383,1, 7561377,1,1449,2722,16,
74971665,2705,16,0,383, 75620,377,1,1701,2723,
74981,412,2706,16,0, 756316,0,377,1,447,
7499383,1,1377,2707,16, 75641480,1,205,1492,1,
75000,383,1,172,1428, 7565827,2724,16,0,377,
75011,1939,2708,16,0, 75661,223,1508,1,476,
7502383,1,437,2709,16, 75671518,1,477,1524,1,
75030,383,1,188,1471, 75681231,2725,16,0,377,
75041,942,1444,1,1195, 75691,479,1534,1,480,
75052710,16,0,383,1, 75701539,1,1485,2726,16,
75061449,2711,16,0,383, 75710,377,1,1737,2727,
75071,1701,2712,16,0, 757216,0,377,1,242,
7508383,1,447,1464,1, 75731552,1,478,1557,1,
7509205,1481,1,827,2713, 75741001,1562,1,1002,1567,
751016,0,383,1,223, 75751,35,2728,19,364,
75111497,1,476,1507,1, 75761,35,2729,5,83,
7512477,1513,1,1231,2714, 75771,1011,1079,1,1012,
751316,0,383,1,479, 75782730,16,0,362,1,
75141523,1,480,1528,1, 75791013,1234,1,262,1096,
75151485,2715,16,0,383, 75801,1267,2731,16,0,
75161,1737,2716,16,0, 7581362,1,515,2732,16,
7517383,1,242,1541,1, 75820,362,1,1521,2733,
7518478,1546,1,1001,1551, 758316,0,362,1,525,
75191,1002,1556,1,35, 75841192,1,283,1154,1,
75202717,19,372,1,35, 75852557,2734,16,0,362,
75212718,5,83,1,1011, 75861,40,1143,1,42,
75221074,1,1012,2719,16, 75872735,16,0,362,1,
75230,370,1,1013,1226, 758844,1159,1,47,1160,
75241,262,1091,1,1267, 75891,1303,2736,16,0,
75252720,16,0,370,1, 7590362,1,1555,2737,16,
7526515,2721,16,0,370, 75910,362,1,50,1177,
75271,1521,2722,16,0, 75921,48,1166,1,49,
7528370,1,525,1184,1, 75931172,1,51,1182,1,
7529283,1144,1,40,1133, 759463,1198,1,305,1187,
75301,42,2723,16,0, 75951,66,1204,1,67,
7531370,1,44,1149,1, 75961209,1,68,1214,1,
75322556,2724,16,0,370, 759769,1219,1,70,1224,
75331,47,1151,1,1303, 75981,73,2738,16,0,
75342725,16,0,370,1, 7599362,1,74,1229,1,
75351555,2726,16,0,370, 7600328,1282,1,1048,1244,
75361,50,1174,1,48, 76011,82,2739,16,0,
75371157,1,49,1163,1, 7602362,1,1840,2740,16,
753851,1169,1,63,1190, 76030,362,1,1591,2741,
75391,305,1179,1,66, 760416,0,362,1,1341,
75401196,1,67,1201,1, 76052742,16,0,362,1,
754168,1206,1,69,1211, 76061096,1292,1,93,1298,
75421,70,1216,1,73, 76071,352,1310,1,107,
75432727,16,0,370,1, 76082743,16,0,362,1,
754474,1221,1,328,1274, 76091114,1322,1,118,1324,
75451,1048,1236,1,82, 76101,1123,2744,16,0,
75462728,16,0,370,1, 7611362,1,371,1334,1,
75471840,2729,16,0,370, 76121628,2745,16,0,362,
75481,1591,2730,16,0, 76131,375,1346,1,1882,
7549370,1,1341,2731,16, 76142746,16,0,362,1,
75500,370,1,1096,1284, 7615377,1352,1,379,1390,
75511,93,1290,1,352, 76161,380,1362,1,883,
75521301,1,107,2732,16, 76172747,16,0,362,1,
75530,370,1,1114,1313, 7618373,1380,1,130,1385,
75541,118,1316,1,1123, 76191,143,1395,1,387,
75552733,16,0,370,1, 76202748,16,0,362,1,
7556371,1326,1,1628,2734, 76211159,2749,16,0,362,
755716,0,370,1,375, 76221,157,1416,1,1413,
75581337,1,1882,2735,16, 76232750,16,0,362,1,
75590,370,1,377,1342, 76241665,2751,16,0,362,
75601,379,1375,1,380, 76251,412,2752,16,0,
75611352,1,883,2736,16, 7626362,1,1377,2753,16,
75620,370,1,373,1370, 76270,362,1,172,1443,
75631,130,1358,1,143, 76281,1939,2754,16,0,
75641380,1,387,2737,16, 7629362,1,437,2755,16,
75650,370,1,1159,2738, 76300,362,1,188,1487,
756616,0,370,1,157, 76311,942,1459,1,1195,
75671402,1,1413,2739,16, 76322756,16,0,362,1,
75680,370,1,1665,2740, 76331449,2757,16,0,362,
756916,0,370,1,412, 76341,1701,2758,16,0,
75702741,16,0,370,1, 7635362,1,447,1480,1,
75711377,2742,16,0,370, 7636205,1492,1,827,2759,
75721,172,1428,1,1939, 763716,0,362,1,223,
75732743,16,0,370,1, 76382760,16,0,362,1,
7574437,2744,16,0,370, 7639476,1518,1,477,1524,
75751,188,1471,1,942, 76401,1231,2761,16,0,
75761444,1,1195,2745,16, 7641362,1,479,1534,1,
75770,370,1,1449,2746, 7642480,1539,1,1485,2762,
757816,0,370,1,1701, 764316,0,362,1,1737,
75792747,16,0,370,1, 76442763,16,0,362,1,
7580447,1464,1,205,1481, 7645242,1552,1,478,1557,
75811,827,2748,16,0, 76461,1001,1562,1,1002,
7582370,1,223,2749,16, 76471567,1,36,2764,19,
75830,370,1,476,1507, 7648216,1,36,2765,5,
75841,477,1513,1,1231, 764990,1,256,2766,16,
75852750,16,0,370,1, 76500,214,1,1261,2767,
7586479,1523,1,480,1528, 765116,0,214,1,509,
75871,1485,2751,16,0, 76522768,16,0,214,1,
7588370,1,1737,2752,16, 76531515,2769,16,0,214,
75890,370,1,242,1541, 76541,2021,709,1,1775,
75901,478,1546,1,1001, 76552770,16,0,214,1,
75911551,1,1002,1556,1, 76562029,716,1,2030,722,
759236,2753,19,215,1, 76571,2031,727,1,2032,
759336,2754,5,90,1, 7658732,1,2033,737,1,
7594256,2755,16,0,213, 7659277,2771,16,0,214,
75951,1261,2756,16,0, 76601,2035,743,1,2037,
7596213,1,509,2757,16, 7661748,1,2039,753,1,
75970,213,1,2197,2758, 766232,2772,16,0,214,
759816,0,213,1,1515, 76631,2041,759,1,2043,
75992759,16,0,213,1, 7664764,1,2045,769,1,
76002021,707,1,1775,2760, 766541,2773,16,0,214,
760116,0,213,1,2029, 76661,1297,2774,16,0,
7602714,1,2030,720,1, 7667214,1,43,2775,16,
76032031,725,1,2032,730, 76680,214,1,1802,777,
76041,2033,735,1,277, 76691,1804,2776,16,0,
76052761,16,0,213,1, 7670214,1,299,2777,16,
76062035,741,1,2037,746, 76710,214,1,2310,2778,
76071,2039,751,1,32, 767216,0,214,1,52,
76082762,16,0,213,1, 76732779,16,0,214,1,
76092041,757,1,2043,762, 7674525,2780,16,0,214,
76101,2044,767,1,2550, 76751,2075,2781,16,0,
76112763,16,0,213,1, 7676214,1,1574,790,1,
761241,2764,16,0,213, 767771,2782,16,0,214,
76131,1297,2765,16,0, 76781,76,2783,16,0,
7614213,1,43,2766,16, 7679214,1,1834,2784,16,
76150,213,1,1802,774, 76800,214,1,79,2785,
76161,1804,2767,16,0, 768116,0,214,1,1335,
7617213,1,299,2768,16, 76822786,16,0,214,1,
76180,213,1,2309,2769, 7683322,2787,16,0,214,
761916,0,213,1,52, 76841,85,2788,16,0,
76202770,16,0,213,1, 7685214,1,89,2789,16,
7621525,2771,16,0,213, 76860,214,1,346,2790,
76221,2074,2772,16,0, 768716,0,214,1,2355,
7623213,1,1574,787,1, 7688804,1,2105,810,1,
762471,2773,16,0,213, 76892106,2791,16,0,214,
76251,76,2774,16,0, 76901,2359,816,1,2361,
7626213,1,1834,2775,16, 7691821,1,1860,827,1,
76270,213,1,79,2776, 769297,2792,16,0,214,
762816,0,213,1,1335, 76931,112,2793,16,0,
76292777,16,0,213,1, 7694214,1,1117,2794,16,
7630322,2778,16,0,213, 76950,214,1,1873,836,
76311,85,2779,16,0, 76961,102,2795,16,0,
7632213,1,89,2780,16, 7697214,1,1876,2796,16,
76330,213,1,346,2781, 76980,214,1,2551,2797,
763416,0,213,1,2104, 769916,0,214,1,124,
7635801,1,2105,2782,16, 77002798,16,0,214,1,
76360,213,1,2358,807, 77012136,845,1,381,2799,
76371,2360,813,1,97, 770216,0,214,1,137,
76382783,16,0,213,1, 77032800,16,0,214,1,
76391860,820,1,102,2784, 77041901,2801,16,0,214,
764016,0,213,1,112, 77051,1153,2802,16,0,
76412785,16,0,213,1, 7706214,1,151,2803,16,
76421117,2786,16,0,213, 77070,214,1,1407,2804,
76431,1873,829,1,1876, 770816,0,214,1,1659,
76442787,16,0,213,1, 77092805,16,0,214,1,
7645124,2788,16,0,213, 7710406,2806,16,0,214,
76461,2135,836,1,381, 77111,1371,2807,16,0,
76472789,16,0,213,1, 7712214,1,166,2808,16,
7648137,2790,16,0,213, 77130,214,1,1622,2809,
76491,1901,2791,16,0, 771416,0,214,1,2356,
7650213,1,1153,2792,16, 7715861,1,1931,866,1,
76510,213,1,151,2793, 77161933,2810,16,0,214,
765216,0,213,1,1407, 77171,431,2811,16,0,
76532794,16,0,213,1, 7718214,1,1585,2812,16,
76541659,2795,16,0,213, 77190,214,1,182,2813,
76551,406,2796,16,0, 772016,0,214,1,1189,
7656213,1,1371,2797,16, 77212814,16,0,214,1,
76570,213,1,166,2798, 77221443,2815,16,0,214,
765816,0,213,1,1622, 77231,1695,2816,16,0,
76592799,16,0,213,1, 7724214,1,2198,2817,16,
76602354,853,1,2355,858, 77250,214,1,447,2818,
76611,1931,863,1,1933, 772616,0,214,1,199,
76622800,16,0,213,1, 77272819,16,0,214,1,
7663431,2801,16,0,213, 77281958,2820,16,0,214,
76641,1585,2802,16,0, 77291,1657,883,1,459,
7665213,1,182,2803,16, 77302821,16,0,214,1,
76660,213,1,1189,2804, 7731462,2822,16,0,214,
766716,0,213,1,1443, 77321,217,2823,16,0,
76682805,16,0,213,1, 7733214,1,2227,891,1,
76691695,2806,16,0,213, 77341225,2824,16,0,214,
76701,447,2807,16,0, 77351,1479,2825,16,0,
7671213,1,199,2808,16, 7736214,1,1731,2826,16,
76720,213,1,1958,2809, 77370,214,1,1989,899,
767316,0,213,1,1657, 77381,1990,2827,16,0,
7674878,1,459,2810,16, 7739214,1,236,2828,16,
76750,213,1,462,2811, 77400,214,1,1756,2829,
767616,0,213,1,217, 774116,0,214,1,37,
76772812,16,0,213,1, 77422830,19,232,1,37,
76782226,886,1,1225,2813, 77432831,5,90,1,256,
767916,0,213,1,1479, 77442832,16,0,230,1,
76802814,16,0,213,1, 77451261,2833,16,0,230,
76811731,2815,16,0,213, 77461,509,2834,16,0,
76821,1989,894,1,1990, 7747230,1,1515,2835,16,
76832816,16,0,213,1, 77480,230,1,2021,709,
7684236,2817,16,0,213, 77491,1775,2836,16,0,
76851,1756,2818,16,0, 7750230,1,2029,716,1,
7686213,1,37,2819,19, 77512030,722,1,2031,727,
7687234,1,37,2820,5, 77521,2032,732,1,2033,
768890,1,256,2821,16, 7753737,1,277,2837,16,
76890,232,1,1261,2822, 77540,230,1,2035,743,
769016,0,232,1,509, 77551,2037,748,1,2039,
76912823,16,0,232,1, 7756753,1,32,2838,16,
76922197,2824,16,0,232, 77570,230,1,2041,759,
76931,1515,2825,16,0, 77581,2043,764,1,2045,
7694232,1,2021,707,1, 7759769,1,41,2839,16,
76951775,2826,16,0,232, 77600,230,1,1297,2840,
76961,2029,714,1,2030, 776116,0,230,1,43,
7697720,1,2031,725,1, 77622841,16,0,230,1,
76982032,730,1,2033,735, 77631802,777,1,1804,2842,
76991,277,2827,16,0, 776416,0,230,1,299,
7700232,1,2035,741,1, 77652843,16,0,230,1,
77012037,746,1,2039,751, 77662310,2844,16,0,230,
77021,32,2828,16,0, 77671,52,2845,16,0,
7703232,1,2041,757,1, 7768230,1,525,2846,16,
77042043,762,1,2044,767, 77690,230,1,2075,2847,
77051,2550,2829,16,0, 777016,0,230,1,1574,
7706232,1,41,2830,16, 7771790,1,71,2848,16,
77070,232,1,1297,2831, 77720,230,1,76,2849,
770816,0,232,1,43, 777316,0,230,1,1834,
77092832,16,0,232,1, 77742850,16,0,230,1,
77101802,774,1,1804,2833, 777579,2851,16,0,230,
771116,0,232,1,299, 77761,1335,2852,16,0,
77122834,16,0,232,1, 7777230,1,322,2853,16,
77132309,2835,16,0,232, 77780,230,1,85,2854,
77141,52,2836,16,0, 777916,0,230,1,89,
7715232,1,525,2837,16, 77802855,16,0,230,1,
77160,232,1,2074,2838, 7781346,2856,16,0,230,
771716,0,232,1,1574, 77821,2355,804,1,2105,
7718787,1,71,2839,16, 7783810,1,2106,2857,16,
77190,232,1,76,2840, 77840,230,1,2359,816,
772016,0,232,1,1834, 77851,2361,821,1,1860,
77212841,16,0,232,1, 7786827,1,97,2858,16,
772279,2842,16,0,232, 77870,230,1,112,2859,
77231,1335,2843,16,0, 778816,0,230,1,1117,
7724232,1,322,2844,16, 77892860,16,0,230,1,
77250,232,1,85,2845, 77901873,836,1,102,2861,
772616,0,232,1,89, 779116,0,230,1,1876,
77272846,16,0,232,1, 77922862,16,0,230,1,
7728346,2847,16,0,232, 77932551,2863,16,0,230,
77291,2104,801,1,2105, 77941,124,2864,16,0,
77302848,16,0,232,1, 7795230,1,2136,845,1,
77312358,807,1,2360,813, 7796381,2865,16,0,230,
77321,97,2849,16,0, 77971,137,2866,16,0,
7733232,1,1860,820,1, 7798230,1,1901,2867,16,
7734102,2850,16,0,232, 77990,230,1,1153,2868,
77351,112,2851,16,0, 780016,0,230,1,151,
7736232,1,1117,2852,16, 78012869,16,0,230,1,
77370,232,1,1873,829, 78021407,2870,16,0,230,
77381,1876,2853,16,0, 78031,1659,2871,16,0,
7739232,1,124,2854,16, 7804230,1,406,2872,16,
77400,232,1,2135,836, 78050,230,1,1371,2873,
77411,381,2855,16,0, 780616,0,230,1,166,
7742232,1,137,2856,16, 78072874,16,0,230,1,
77430,232,1,1901,2857, 78081622,2875,16,0,230,
774416,0,232,1,1153, 78091,2356,861,1,1931,
77452858,16,0,232,1, 7810866,1,1933,2876,16,
7746151,2859,16,0,232, 78110,230,1,431,2877,
77471,1407,2860,16,0, 781216,0,230,1,1585,
7748232,1,1659,2861,16, 78132878,16,0,230,1,
77490,232,1,406,2862, 7814182,2879,16,0,230,
775016,0,232,1,1371, 78151,1189,2880,16,0,
77512863,16,0,232,1, 7816230,1,1443,2881,16,
7752166,2864,16,0,232, 78170,230,1,1695,2882,
77531,1622,2865,16,0, 781816,0,230,1,2198,
7754232,1,2354,853,1, 78192883,16,0,230,1,
77552355,858,1,1931,863, 7820447,2884,16,0,230,
77561,1933,2866,16,0, 78211,199,2885,16,0,
7757232,1,431,2867,16, 7822230,1,1958,2886,16,
77580,232,1,1585,2868, 78230,230,1,1657,883,
775916,0,232,1,182, 78241,459,2887,16,0,
77602869,16,0,232,1, 7825230,1,462,2888,16,
77611189,2870,16,0,232, 78260,230,1,217,2889,
77621,1443,2871,16,0, 782716,0,230,1,2227,
7763232,1,1695,2872,16, 7828891,1,1225,2890,16,
77640,232,1,447,2873, 78290,230,1,1479,2891,
776516,0,232,1,199, 783016,0,230,1,1731,
77662874,16,0,232,1, 78312892,16,0,230,1,
77671958,2875,16,0,232, 78321989,899,1,1990,2893,
77681,1657,878,1,459, 783316,0,230,1,236,
77692876,16,0,232,1, 78342894,16,0,230,1,
7770462,2877,16,0,232, 78351756,2895,16,0,230,
77711,217,2878,16,0, 78361,38,2896,19,229,
7772232,1,2226,886,1, 78371,38,2897,5,83,
77731225,2879,16,0,232, 78381,1011,1079,1,1012,
77741,1479,2880,16,0, 78392898,16,0,227,1,
7775232,1,1731,2881,16, 78401013,1234,1,262,1096,
77760,232,1,1989,894, 78411,1267,2899,16,0,
77771,1990,2882,16,0, 7842227,1,515,2900,16,
7778232,1,236,2883,16, 78430,227,1,1521,2901,
77790,232,1,1756,2884, 784416,0,227,1,525,
778016,0,232,1,38, 78451192,1,283,1154,1,
77812885,19,231,1,38, 78462557,2902,16,0,227,
77822886,5,83,1,1011, 78471,40,1143,1,42,
77831074,1,1012,2887,16, 78482903,16,0,227,1,
77840,229,1,1013,1226, 784944,1159,1,47,1160,
77851,262,1091,1,1267, 78501,1303,2904,16,0,
77862888,16,0,229,1, 7851227,1,1555,2905,16,
7787515,2889,16,0,229, 78520,227,1,50,1177,
77881,1521,2890,16,0, 78531,48,1166,1,49,
7789229,1,525,1184,1, 78541172,1,51,1182,1,
7790283,1144,1,40,1133, 785563,1198,1,305,1187,
77911,42,2891,16,0, 78561,66,1204,1,67,
7792229,1,44,1149,1, 78571209,1,68,1214,1,
77932556,2892,16,0,229, 785869,1219,1,70,1224,
77941,47,1151,1,1303, 78591,73,2906,16,0,
77952893,16,0,229,1, 7860227,1,74,1229,1,
77961555,2894,16,0,229, 7861328,1282,1,1048,1244,
77971,50,1174,1,48, 78621,82,2907,16,0,
77981157,1,49,1163,1, 7863227,1,1840,2908,16,
779951,1169,1,63,1190, 78640,227,1,1591,2909,
78001,305,1179,1,66, 786516,0,227,1,1341,
78011196,1,67,1201,1, 78662910,16,0,227,1,
780268,1206,1,69,1211, 78671096,1292,1,93,1298,
78031,70,1216,1,73, 78681,352,1310,1,107,
78042895,16,0,229,1, 78692911,16,0,227,1,
780574,1221,1,328,1274, 78701114,1322,1,118,1324,
78061,1048,1236,1,82, 78711,1123,2912,16,0,
78072896,16,0,229,1, 7872227,1,371,1334,1,
78081840,2897,16,0,229, 78731628,2913,16,0,227,
78091,1591,2898,16,0, 78741,375,1346,1,1882,
7810229,1,1341,2899,16, 78752914,16,0,227,1,
78110,229,1,1096,1284, 7876377,1352,1,379,1390,
78121,93,1290,1,352, 78771,380,1362,1,883,
78131301,1,107,2900,16, 78781368,1,373,1380,1,
78140,229,1,1114,1313, 7879130,1385,1,143,1395,
78151,118,1316,1,1123, 78801,387,2915,16,0,
78162901,16,0,229,1, 7881227,1,1159,2916,16,
7817371,1326,1,1628,2902, 78820,227,1,157,1416,
781816,0,229,1,375, 78831,1413,2917,16,0,
78191337,1,1882,2903,16, 7884227,1,1665,2918,16,
78200,229,1,377,1342, 78850,227,1,412,2919,
78211,379,1375,1,380, 788616,0,227,1,1377,
78221352,1,883,1412,1, 78872920,16,0,227,1,
7823373,1370,1,130,1358, 7888172,1443,1,1939,2921,
78241,143,1380,1,387, 788916,0,227,1,437,
78252904,16,0,229,1, 78902922,16,0,227,1,
78261159,2905,16,0,229, 7891188,1487,1,942,1459,
78271,157,1402,1,1413, 78921,1195,2923,16,0,
78282906,16,0,229,1, 7893227,1,1449,2924,16,
78291665,2907,16,0,229, 78940,227,1,1701,2925,
78301,412,2908,16,0, 789516,0,227,1,447,
7831229,1,1377,2909,16, 78961480,1,205,1492,1,
78320,229,1,172,1428, 7897827,1357,1,223,1508,
78331,1939,2910,16,0, 78981,476,1518,1,477,
7834229,1,437,2911,16, 78991524,1,1231,2926,16,
78350,229,1,188,1471, 79000,227,1,479,1534,
78361,942,1444,1,1195, 79011,480,1539,1,1485,
78372912,16,0,229,1, 79022927,16,0,227,1,
78381449,2913,16,0,229, 79031737,2928,16,0,227,
78391,1701,2914,16,0, 79041,242,1552,1,478,
7840229,1,447,1464,1, 79051557,1,1001,1562,1,
7841205,1481,1,827,1347, 79061002,1567,1,39,2929,
78421,223,1497,1,476, 790719,222,1,39,2930,
78431507,1,477,1513,1, 79085,83,1,1011,1079,
78441231,2915,16,0,229, 79091,1012,2931,16,0,
78451,479,1523,1,480, 7910220,1,1013,1234,1,
78461528,1,1485,2916,16, 7911262,1096,1,1267,2932,
78470,229,1,1737,2917, 791216,0,220,1,515,
784816,0,229,1,242, 79132933,16,0,220,1,
78491541,1,478,1546,1, 79141521,2934,16,0,220,
78501001,1551,1,1002,1556, 79151,525,1192,1,283,
78511,39,2918,19,221, 79161154,1,2557,2935,16,
78521,39,2919,5,83, 79170,220,1,40,1143,
78531,1011,1074,1,1012, 79181,42,2936,16,0,
78542920,16,0,219,1, 7919220,1,44,1159,1,
78551013,1226,1,262,1091, 792047,1160,1,1303,2937,
78561,1267,2921,16,0, 792116,0,220,1,1555,
7857219,1,515,2922,16, 79222938,16,0,220,1,
78580,219,1,1521,2923, 792350,1177,1,48,1166,
785916,0,219,1,525, 79241,49,1172,1,51,
78601184,1,283,1144,1, 79251182,1,63,1198,1,
786140,1133,1,42,2924, 7926305,1187,1,66,1204,
786216,0,219,1,44, 79271,67,1209,1,68,
78631149,1,2556,2925,16, 79281214,1,69,1219,1,
78640,219,1,47,1151, 792970,1224,1,73,2939,
78651,1303,2926,16,0, 793016,0,220,1,74,
7866219,1,1555,2927,16, 79311229,1,328,1282,1,
78670,219,1,50,1174, 79321048,1244,1,82,2940,
78681,48,1157,1,49, 793316,0,220,1,1840,
78691163,1,51,1169,1, 79342941,16,0,220,1,
787063,1190,1,305,1179, 79351591,2942,16,0,220,
78711,66,1196,1,67, 79361,1341,2943,16,0,
78721201,1,68,1206,1, 7937220,1,1096,1292,1,
787369,1211,1,70,1216, 793893,1298,1,352,1310,
78741,73,2928,16,0, 79391,107,2944,16,0,
7875219,1,74,1221,1, 7940220,1,1114,1322,1,
7876328,1274,1,1048,1236, 7941118,1324,1,1123,2945,
78771,82,2929,16,0, 794216,0,220,1,371,
7878219,1,1840,2930,16, 79431334,1,1628,2946,16,
78790,219,1,1591,2931, 79440,220,1,375,1346,
788016,0,219,1,1341, 79451,1882,2947,16,0,
78812932,16,0,219,1, 7946220,1,377,1352,1,
78821096,1284,1,93,1290, 7947379,1390,1,380,1362,
78831,352,1301,1,107, 79481,883,1368,1,373,
78842933,16,0,219,1, 79491380,1,130,1385,1,
78851114,1313,1,118,1316, 7950143,1395,1,387,2948,
78861,1123,2934,16,0, 795116,0,220,1,1159,
7887219,1,371,1326,1, 79522949,16,0,220,1,
78881628,2935,16,0,219, 7953157,1416,1,1413,2950,
78891,375,1337,1,1882, 795416,0,220,1,1665,
78902936,16,0,219,1, 79552951,16,0,220,1,
7891377,1342,1,379,1375, 7956412,2952,16,0,220,
78921,380,1352,1,883, 79571,1377,2953,16,0,
78931412,1,373,1370,1, 7958220,1,172,1443,1,
7894130,1358,1,143,1380, 79591939,2954,16,0,220,
78951,387,2937,16,0, 79601,437,2955,16,0,
7896219,1,1159,2938,16, 7961220,1,188,1487,1,
78970,219,1,157,1402, 7962942,1459,1,1195,2956,
78981,1413,2939,16,0, 796316,0,220,1,1449,
7899219,1,1665,2940,16, 79642957,16,0,220,1,
79000,219,1,412,2941, 79651701,2958,16,0,220,
790116,0,219,1,1377, 79661,447,1480,1,205,
79022942,16,0,219,1, 79671492,1,827,1357,1,
7903172,1428,1,1939,2943, 7968223,1508,1,476,1518,
790416,0,219,1,437, 79691,477,1524,1,1231,
79052944,16,0,219,1, 79702959,16,0,220,1,
7906188,1471,1,942,1444, 7971479,1534,1,480,1539,
79071,1195,2945,16,0, 79721,1485,2960,16,0,
7908219,1,1449,2946,16, 7973220,1,1737,2961,16,
79090,219,1,1701,2947, 79740,220,1,242,1552,
791016,0,219,1,447, 79751,478,1557,1,1001,
79111464,1,205,1481,1, 79761562,1,1002,1567,1,
7912827,1347,1,223,1497, 797740,2962,19,210,1,
79131,476,1507,1,477, 797840,2963,5,83,1,
79141513,1,1231,2948,16, 79791011,1079,1,1012,2964,
79150,219,1,479,1523, 798016,0,208,1,1013,
79161,480,1528,1,1485, 79811234,1,262,1096,1,
79172949,16,0,219,1, 79821267,2965,16,0,208,
79181737,2950,16,0,219, 79831,515,2966,16,0,
79191,242,1541,1,478, 7984208,1,1521,2967,16,
79201546,1,1001,1551,1, 79850,208,1,525,1192,
79211002,1556,1,40,2951, 79861,283,1154,1,2557,
792219,209,1,40,2952, 79872968,16,0,208,1,
79235,83,1,1011,1074, 798840,1143,1,42,2969,
79241,1012,2953,16,0, 798916,0,208,1,44,
7925207,1,1013,1226,1, 79901159,1,47,1160,1,
7926262,1091,1,1267,2954, 79911303,2970,16,0,208,
792716,0,207,1,515, 79921,1555,2971,16,0,
79282955,16,0,207,1, 7993208,1,50,1177,1,
79291521,2956,16,0,207, 799448,1166,1,49,1172,
79301,525,1184,1,283, 79951,51,1182,1,63,
79311144,1,40,1133,1, 79961198,1,305,1187,1,
793242,2957,16,0,207, 799766,1204,1,67,1209,
79331,44,1149,1,2556, 79981,68,1214,1,69,
79342958,16,0,207,1, 79991219,1,70,1224,1,
793547,1151,1,1303,2959, 800073,2972,16,0,208,
793616,0,207,1,1555, 80011,74,1229,1,328,
79372960,16,0,207,1, 80021282,1,1048,1244,1,
793850,1174,1,48,1157, 800382,2973,16,0,208,
79391,49,1163,1,51, 80041,1840,2974,16,0,
79401169,1,63,1190,1, 8005208,1,1591,2975,16,
7941305,1179,1,66,1196, 80060,208,1,1341,2976,
79421,67,1201,1,68, 800716,0,208,1,1096,
79431206,1,69,1211,1, 80081292,1,93,1298,1,
794470,1216,1,73,2961, 8009352,1310,1,107,2977,
794516,0,207,1,74, 801016,0,208,1,1114,
79461221,1,328,1274,1, 80111322,1,118,2978,16,
79471048,1236,1,82,2962, 80120,208,1,1123,2979,
794816,0,207,1,1840, 801316,0,208,1,371,
79492963,16,0,207,1, 80141334,1,1628,2980,16,
79501591,2964,16,0,207, 80150,208,1,375,1346,
79511,1341,2965,16,0, 80161,1882,2981,16,0,
7952207,1,1096,1284,1, 8017208,1,377,1352,1,
795393,1290,1,352,1301, 8018379,1390,1,380,1362,
79541,107,2966,16,0, 80191,883,2982,16,0,
7955207,1,1114,1313,1, 8020208,1,373,1380,1,
7956118,2967,16,0,207, 8021130,2983,16,0,208,
79571,1123,2968,16,0, 80221,143,2984,16,0,
7958207,1,371,1326,1, 8023208,1,387,2985,16,
79591628,2969,16,0,207, 80240,208,1,1159,2986,
79601,375,1337,1,1882, 802516,0,208,1,157,
79612970,16,0,207,1, 80262987,16,0,208,1,
7962377,1342,1,379,1375, 80271413,2988,16,0,208,
79631,380,1352,1,883, 80281,1665,2989,16,0,
79642971,16,0,207,1, 8029208,1,412,2990,16,
7965373,1370,1,130,2972, 80300,208,1,1377,2991,
796616,0,207,1,143, 803116,0,208,1,172,
79672973,16,0,207,1, 80322992,16,0,208,1,
7968387,2974,16,0,207, 80331939,2993,16,0,208,
79691,1159,2975,16,0, 80341,437,2994,16,0,
7970207,1,157,2976,16, 8035208,1,188,2995,16,
79710,207,1,1413,2977, 80360,208,1,942,1459,
797216,0,207,1,1665, 80371,1195,2996,16,0,
79732978,16,0,207,1, 8038208,1,1449,2997,16,
7974412,2979,16,0,207, 80390,208,1,1701,2998,
79751,1377,2980,16,0, 804016,0,208,1,447,
7976207,1,172,2981,16, 80411480,1,205,2999,16,
79770,207,1,1939,2982, 80420,208,1,827,3000,
797816,0,207,1,437, 804316,0,208,1,223,
79792983,16,0,207,1, 80443001,16,0,208,1,
7980188,2984,16,0,207, 8045476,1518,1,477,1524,
79811,942,1444,1,1195, 80461,1231,3002,16,0,
79822985,16,0,207,1, 8047208,1,479,1534,1,
79831449,2986,16,0,207, 8048480,1539,1,1485,3003,
79841,1701,2987,16,0, 804916,0,208,1,1737,
7985207,1,447,1464,1, 80503004,16,0,208,1,
7986205,2988,16,0,207, 8051242,3005,16,0,208,
79871,827,2989,16,0, 80521,478,1557,1,1001,
7988207,1,223,2990,16, 80531562,1,1002,1567,1,
79890,207,1,476,1507, 805441,3006,19,172,1,
79901,477,1513,1,1231, 805541,3007,5,83,1,
79912991,16,0,207,1, 80561011,1079,1,1012,3008,
7992479,1523,1,480,1528, 805716,0,170,1,1013,
79931,1485,2992,16,0, 80581234,1,262,1096,1,
7994207,1,1737,2993,16, 80591267,3009,16,0,170,
79950,207,1,242,2994, 80601,515,3010,16,0,
799616,0,207,1,478, 8061170,1,1521,3011,16,
79971546,1,1001,1551,1, 80620,170,1,525,1192,
79981002,1556,1,41,2995, 80631,283,1154,1,2557,
799919,172,1,41,2996, 80643012,16,0,170,1,
80005,83,1,1011,1074, 806540,1143,1,42,3013,
80011,1012,2997,16,0, 806616,0,170,1,44,
8002170,1,1013,1226,1, 80671159,1,47,1160,1,
8003262,1091,1,1267,2998, 80681303,3014,16,0,170,
800416,0,170,1,515, 80691,1555,3015,16,0,
80052999,16,0,170,1, 8070170,1,50,1177,1,
80061521,3000,16,0,170, 807148,1166,1,49,1172,
80071,525,1184,1,283, 80721,51,1182,1,63,
80081144,1,40,1133,1, 80731198,1,305,1187,1,
800942,3001,16,0,170, 807466,1204,1,67,1209,
80101,44,1149,1,2556, 80751,68,1214,1,69,
80113002,16,0,170,1, 80761219,1,70,1224,1,
801247,1151,1,1303,3003, 807773,3016,16,0,170,
801316,0,170,1,1555, 80781,74,1229,1,328,
80143004,16,0,170,1, 80791282,1,1048,1244,1,
801550,1174,1,48,1157, 808082,3017,16,0,170,
80161,49,1163,1,51, 80811,1840,3018,16,0,
80171169,1,63,1190,1, 8082170,1,1591,3019,16,
8018305,1179,1,66,1196, 80830,170,1,1341,3020,
80191,67,1201,1,68, 808416,0,170,1,1096,
80201206,1,69,1211,1, 80851292,1,93,1298,1,
802170,1216,1,73,3005, 8086352,1310,1,107,3021,
802216,0,170,1,74, 808716,0,170,1,1114,
80231221,1,328,1274,1, 80881322,1,118,3022,16,
80241048,1236,1,82,3006, 80890,170,1,1123,3023,
802516,0,170,1,1840, 809016,0,170,1,371,
80263007,16,0,170,1, 80911334,1,1628,3024,16,
80271591,3008,16,0,170, 80920,170,1,375,1346,
80281,1341,3009,16,0, 80931,1882,3025,16,0,
8029170,1,1096,1284,1, 8094170,1,377,1352,1,
803093,1290,1,352,1301, 8095379,1390,1,380,1362,
80311,107,3010,16,0, 80961,883,3026,16,0,
8032170,1,1114,1313,1, 8097170,1,373,1380,1,
8033118,3011,16,0,170, 8098130,3027,16,0,170,
80341,1123,3012,16,0, 80991,143,3028,16,0,
8035170,1,371,1326,1, 8100170,1,387,3029,16,
80361628,3013,16,0,170, 81010,170,1,1159,3030,
80371,375,1337,1,1882, 810216,0,170,1,157,
80383014,16,0,170,1, 81033031,16,0,170,1,
8039377,1342,1,379,1375, 81041413,3032,16,0,170,
80401,380,1352,1,883, 81051,1665,3033,16,0,
80413015,16,0,170,1, 8106170,1,412,3034,16,
8042373,1370,1,130,3016, 81070,170,1,1377,3035,
804316,0,170,1,143, 810816,0,170,1,172,
80443017,16,0,170,1, 81093036,16,0,170,1,
8045387,3018,16,0,170, 81101939,3037,16,0,170,
80461,1159,3019,16,0, 81111,437,3038,16,0,
8047170,1,157,3020,16, 8112170,1,188,3039,16,
80480,170,1,1413,3021, 81130,170,1,942,1459,
804916,0,170,1,1665, 81141,1195,3040,16,0,
80503022,16,0,170,1, 8115170,1,1449,3041,16,
8051412,3023,16,0,170, 81160,170,1,1701,3042,
80521,1377,3024,16,0, 811716,0,170,1,447,
8053170,1,172,3025,16, 81181480,1,205,3043,16,
80540,170,1,1939,3026, 81190,170,1,827,3044,
805516,0,170,1,437, 812016,0,170,1,223,
80563027,16,0,170,1, 81213045,16,0,170,1,
8057188,3028,16,0,170, 8122476,1518,1,477,1524,
80581,942,1444,1,1195, 81231,1231,3046,16,0,
80593029,16,0,170,1, 8124170,1,479,1534,1,
80601449,3030,16,0,170, 8125480,1539,1,1485,3047,
80611,1701,3031,16,0, 812616,0,170,1,1737,
8062170,1,447,1464,1, 81273048,16,0,170,1,
8063205,3032,16,0,170, 8128242,3049,16,0,170,
80641,827,3033,16,0, 81291,478,1557,1,1001,
8065170,1,223,3034,16, 81301562,1,1002,1567,1,
80660,170,1,476,1507, 813142,3050,19,436,1,
80671,477,1513,1,1231, 813242,3051,5,36,1,
80683035,16,0,170,1, 81332075,3052,16,0,434,
8069479,1523,1,480,1528, 81341,1860,827,1,2198,
80701,1485,3036,16,0, 81353053,16,0,434,1,
8071170,1,1737,3037,16, 81361873,836,1,2310,3054,
80720,170,1,242,3038, 813716,0,434,1,1657,
807316,0,170,1,478, 8138883,1,1989,899,1,
80741546,1,1001,1551,1, 81391990,3055,16,0,434,
80751002,1556,1,42,3039, 81401,1775,3056,16,0,
807619,441,1,42,3040, 8141434,1,32,3057,16,
80775,36,1,2074,3041, 81420,434,1,2356,861,
807816,0,439,1,1860, 81431,2105,810,1,2106,
8079820,1,2197,3042,16, 81443058,16,0,434,1,
80800,439,1,2309,3043, 81452359,816,1,2227,891,
808116,0,439,1,1657, 81461,1901,3059,16,0,
8082878,1,2031,725,1, 8147434,1,1802,777,1,
80831989,894,1,1990,3044, 81482021,709,1,1804,3060,
808416,0,439,1,1775, 814916,0,434,1,2136,
80853045,16,0,439,1, 8150845,1,2355,804,1,
808632,3046,16,0,439, 81512029,716,1,2030,722,
80871,2104,801,1,2105, 81521,2031,727,1,2032,
80883047,16,0,439,1, 8153732,1,2033,737,1,
80892226,886,1,1901,3048, 81542361,821,1,2035,743,
809016,0,439,1,1802, 81551,2037,748,1,2039,
8091774,1,2021,707,1, 8156753,1,1931,866,1,
80921804,3049,16,0,439, 81572041,759,1,2043,764,
80931,2135,836,1,2354, 81581,2045,769,1,1574,
8094853,1,2355,858,1, 8159790,1,1958,3061,16,
80952029,714,1,2030,720, 81600,434,1,43,3062,
80961,2358,807,1,2032, 816119,474,1,43,3063,
8097730,1,2360,813,1, 81625,24,1,2035,743,
80982035,741,1,2037,746, 81631,2037,748,1,2039,
80991,2039,751,1,1931, 8164753,1,2041,759,1,
8100863,1,2041,757,1, 81652227,891,1,2043,764,
81011873,829,1,2043,762, 81661,1860,827,1,2021,
81021,2044,767,1,2033, 8167709,1,2031,727,1,
8103735,1,1574,787,1, 81681574,790,1,2136,845,
81041958,3050,16,0,439, 81691,1873,836,1,2356,
81051,43,3051,19,480, 8170861,1,1802,777,1,
81061,43,3052,5,24, 81712105,3064,16,0,576,
81071,2035,741,1,2037, 81721,1989,3065,16,0,
8108746,1,1657,878,1, 8173472,1,1657,883,1,
81092039,751,1,2041,757, 81742361,821,1,2029,716,
81101,1931,863,1,2043, 81751,2030,722,1,1931,
8111762,1,2044,767,1, 8176866,1,2032,732,1,
81121860,820,1,1574,787, 81772033,737,1,2045,769,
81131,2021,707,1,2104, 81781,44,3066,19,259,
81143053,16,0,579,1, 81791,44,3067,5,36,
81152135,836,1,1873,829, 81801,2075,3068,16,0,
81161,2355,858,1,1802, 8181257,1,1860,827,1,
8117774,1,2226,886,1, 81822198,3069,16,0,257,
81181989,3054,16,0,478, 81831,1873,836,1,2310,
81191,2360,813,1,2029, 81843070,16,0,257,1,
8120714,1,2030,720,1, 81851657,883,1,1989,899,
81212031,725,1,2032,730, 81861,1990,3071,16,0,
81221,2033,735,1,44, 8187257,1,1775,3072,16,
81233055,19,264,1,44, 81880,257,1,32,3073,
81243056,5,36,1,2074, 818916,0,257,1,2356,
81253057,16,0,262,1, 8190861,1,2105,810,1,
81261860,820,1,2197,3058, 81912106,3074,16,0,257,
812716,0,262,1,2309, 81921,2359,816,1,2227,
81283059,16,0,262,1, 8193891,1,1901,3075,16,
81291657,878,1,2031,725, 81940,257,1,1802,777,
81301,1989,894,1,1990, 81951,2021,709,1,1804,
81313060,16,0,262,1, 81963076,16,0,257,1,
81321775,3061,16,0,262, 81972136,845,1,2355,804,
81331,32,3062,16,0, 81981,2029,716,1,2030,
8134262,1,2104,801,1, 8199722,1,2031,727,1,
81352105,3063,16,0,262, 82002032,732,1,2033,737,
81361,2226,886,1,1901, 82011,2361,821,1,2035,
81373064,16,0,262,1, 8202743,1,2037,748,1,
81381802,774,1,2021,707, 82032039,753,1,1931,866,
81391,1804,3065,16,0, 82041,2041,759,1,2043,
8140262,1,2135,836,1, 8205764,1,2045,769,1,
81412354,853,1,2355,858, 82061574,790,1,1958,3077,
81421,2029,714,1,2030, 820716,0,257,1,45,
8143720,1,2358,807,1, 82083078,19,321,1,45,
81442032,730,1,2360,813, 82093079,5,37,1,2075,
81451,2035,741,1,2037, 82103080,16,0,368,1,
8146746,1,2039,751,1, 82111860,827,1,2198,3081,
81471931,863,1,2041,757, 821216,0,368,1,1873,
81481,1873,829,1,2043, 8213836,1,2310,3082,16,
8149762,1,2044,767,1, 82140,368,1,1657,883,
81502033,735,1,1574,787, 82151,1989,899,1,1990,
81511,1958,3066,16,0, 82163083,16,0,368,1,
8152262,1,45,3067,19, 82171775,3084,16,0,368,
8153329,1,45,3068,5, 82181,32,3085,16,0,
815437,1,2074,3069,16, 8219368,1,2356,861,1,
81550,376,1,1860,820, 82202105,810,1,2106,3086,
81561,2197,3070,16,0, 822116,0,368,1,2359,
8157376,1,2309,3071,16, 8222816,1,2227,891,1,
81580,376,1,1657,878, 82231901,3087,16,0,368,
81591,2031,725,1,1989, 82241,1802,777,1,2021,
8160894,1,1990,3072,16, 8225709,1,1804,3088,16,
81610,376,1,1775,3073, 82260,368,1,2136,845,
816216,0,376,1,32, 82271,2355,804,1,2029,
81633074,16,0,376,1, 8228716,1,2030,722,1,
81642104,801,1,2105,3075, 82292031,727,1,2032,732,
816516,0,376,1,2226, 82301,2033,737,1,2361,
8166886,1,1901,3076,16, 8231821,1,2035,743,1,
81670,376,1,1802,774, 82322037,748,1,2039,753,
81681,2021,707,1,1804, 82331,1931,866,1,2041,
81693077,16,0,376,1, 8234759,1,2043,764,1,
81702135,836,1,2354,853, 82352045,769,1,1832,3089,
81711,2355,858,1,2029, 823616,0,319,1,1574,
8172714,1,2030,720,1, 8237790,1,1958,3090,16,
81732358,807,1,2032,730, 82380,368,1,46,3091,
81741,2360,813,1,2035, 823919,661,1,46,3092,
8175741,1,2037,746,1, 82405,36,1,2075,3093,
81762039,751,1,1931,863, 824116,0,659,1,1860,
81771,2041,757,1,1873, 8242827,1,2198,3094,16,
8178829,1,2043,762,1, 82430,659,1,1873,836,
81792044,767,1,1832,3078, 82441,2310,3095,16,0,
818016,0,327,1,2033, 8245659,1,1657,883,1,
8181735,1,1574,787,1, 82461989,899,1,1990,3096,
81821958,3079,16,0,376, 824716,0,659,1,1775,
81831,46,3080,19,658, 82483097,16,0,659,1,
81841,46,3081,5,36, 824932,3098,16,0,659,
81851,2074,3082,16,0, 82501,2356,861,1,2105,
8186656,1,1860,820,1, 8251810,1,2106,3099,16,
81872197,3083,16,0,656, 82520,659,1,2359,816,
81881,2309,3084,16,0, 82531,2227,891,1,1901,
8189656,1,1657,878,1, 82543100,16,0,659,1,
81902031,725,1,1989,894, 82551802,777,1,2021,709,
81911,1990,3085,16,0, 82561,1804,3101,16,0,
8192656,1,1775,3086,16, 8257659,1,2136,845,1,
81930,656,1,32,3087, 82582355,804,1,2029,716,
819416,0,656,1,2104, 82591,2030,722,1,2031,
8195801,1,2105,3088,16, 8260727,1,2032,732,1,
81960,656,1,2226,886, 82612033,737,1,2361,821,
81971,1901,3089,16,0, 82621,2035,743,1,2037,
8198656,1,1802,774,1, 8263748,1,2039,753,1,
81992021,707,1,1804,3090, 82641931,866,1,2041,759,
820016,0,656,1,2135, 82651,2043,764,1,2045,
8201836,1,2354,853,1, 8266769,1,1574,790,1,
82022355,858,1,2029,714, 82671958,3102,16,0,659,
82031,2030,720,1,2358, 82681,47,3103,19,546,
8204807,1,2032,730,1, 82691,47,3104,5,19,
82052360,813,1,2035,741, 82701,0,3105,16,0,
82061,2037,746,1,2039, 8271544,1,2548,3106,17,
8207751,1,1931,863,1, 82723107,15,3108,4,50,
82082041,757,1,1873,829, 827337,0,71,0,108,
82091,2043,762,1,2044, 82740,111,0,98,0,
8210767,1,2033,735,1, 827597,0,108,0,70,
82111574,787,1,1958,3091, 82760,117,0,110,0,
821216,0,656,1,47, 827799,0,116,0,105,
82133092,19,401,1,47, 82780,111,0,110,0,
82143093,5,19,1,0, 827968,0,101,0,102,
82153094,16,0,399,1, 82800,105,0,110,0,
82162531,667,1,2587,3095, 8281105,0,116,0,105,
821716,0,399,1,2022, 82820,111,0,110,0,
82183096,16,0,571,1, 82831,-1,1,5,3109,
82192526,684,1,2528,3097, 828420,3110,4,52,71,
822016,0,399,1,2605, 82850,108,0,111,0,
82213098,17,3099,15,3100, 828698,0,97,0,108,
82224,36,37,0,71, 82870,70,0,117,0,
8288110,0,99,0,116,
82890,105,0,111,0,
8290110,0,68,0,101,
82910,102,0,105,0,
8292110,0,105,0,116,
82930,105,0,111,0,
8294110,0,95,0,49,
82950,1,149,1,3,
82961,6,1,5,3111,
829722,1,9,1,2599,
82983112,16,0,544,1,
82992527,693,1,2529,3113,
830016,0,544,1,2532,
8301676,1,2453,670,1,
83022608,3114,17,3115,15,
83033116,4,36,37,0,
830471,0,108,0,111,
83050,98,0,97,0,
8306108,0,68,0,101,
83070,102,0,105,0,
8308110,0,105,0,116,
83090,105,0,111,0,
8310110,0,115,0,1,
8311-1,1,5,3117,20,
83123118,4,38,71,0,
8313108,0,111,0,98,
83140,97,0,108,0,
831568,0,101,0,102,
83160,105,0,110,0,
8317105,0,116,0,105,
83180,111,0,110,0,
8319115,0,95,0,51,
83200,1,145,1,3,
83211,2,1,1,3119,
832222,1,5,1,2609,
83233120,17,3121,15,3116,
83241,-1,1,5,3122,
832520,3123,4,38,71,
82230,108,0,111,0, 83260,108,0,111,0,
822498,0,97,0,108, 832798,0,97,0,108,
82250,68,0,101,0, 83280,68,0,101,0,
8226102,0,105,0,110, 8329102,0,105,0,110,
82270,105,0,116,0, 83300,105,0,116,0,
8228105,0,111,0,110, 8331105,0,111,0,110,
82290,115,0,1,-1, 83320,115,0,95,0,
82301,5,3101,20,3102, 833349,0,1,143,1,
82314,38,71,0,108, 83343,1,2,1,1,
82320,111,0,98,0, 83353124,22,1,3,1,
823397,0,108,0,68, 83362576,3125,17,3126,15,
82340,101,0,102,0, 83373127,4,52,37,0,
8235105,0,110,0,105, 833871,0,108,0,111,
82360,116,0,105,0, 83390,98,0,97,0,
8237111,0,110,0,115, 8340108,0,86,0,97,
82380,95,0,52,0, 83410,114,0,105,0,
82391,145,1,3,1, 834297,0,98,0,108,
82403,1,2,3103,22, 83430,101,0,68,0,
82411,6,1,2452,695, 8344101,0,99,0,108,
82421,2607,3104,17,3105, 83450,97,0,114,0,
824315,3100,1,-1,1, 834697,0,116,0,105,
82445,3106,20,3107,4, 83470,111,0,110,0,
824538,71,0,108,0, 83481,-1,1,5,3128,
8246111,0,98,0,97, 834920,3129,4,54,71,
82470,108,0,68,0,
8248101,0,102,0,105,
82490,110,0,105,0,
8250116,0,105,0,111,
82510,110,0,115,0,
825295,0,51,0,1,
8253144,1,3,1,2,
82541,1,3108,22,1,
82555,1,2608,3109,17,
82563110,15,3100,1,-1,
82571,5,3111,20,3112,
82584,38,71,0,108,
82590,111,0,98,0,
826097,0,108,0,68,
82610,101,0,102,0,
8262105,0,110,0,105,
82630,116,0,105,0,
8264111,0,110,0,115,
82650,95,0,49,0,
82661,142,1,3,1,
82672,1,1,3113,22,
82681,3,1,2598,3114,
826916,0,399,1,2575,
82703115,17,3116,15,3117,
82714,52,37,0,71,
82720,108,0,111,0, 83500,108,0,111,0,
827398,0,97,0,108, 835198,0,97,0,108,
82740,86,0,97,0, 83520,86,0,97,0,
@@ -8278,2194 +8356,2169 @@ public yyLSLSyntax
82780,99,0,108,0, 83560,99,0,108,0,
827997,0,114,0,97, 835797,0,114,0,97,
82800,116,0,105,0, 83580,116,0,105,0,
8281111,0,110,0,1, 8359111,0,110,0,95,
8282-1,1,5,3118,20, 83600,50,0,1,148,
82833119,4,54,71,0, 83611,3,1,5,1,
83624,3130,22,1,8,
83631,2022,3131,16,0,
8364568,1,2356,861,1,
83652533,688,1,2606,3132,
836617,3133,15,3116,1,
8367-1,1,5,3134,20,
83683135,4,38,71,0,
8284108,0,111,0,98, 8369108,0,111,0,98,
82850,97,0,108,0, 83700,97,0,108,0,
828686,0,97,0,114,
82870,105,0,97,0,
828898,0,108,0,101,
82890,68,0,101,0,
829099,0,108,0,97,
82910,114,0,97,0,
8292116,0,105,0,111,
82930,110,0,95,0,
829450,0,1,147,1,
82953,1,5,1,4,
82963120,22,1,8,1,
82972355,858,1,2532,673,
82981,2606,3121,17,3122,
829915,3100,1,-1,1,
83005,3123,20,3124,4,
830138,71,0,108,0,
8302111,0,98,0,97,
83030,108,0,68,0,
8304101,0,102,0,105,
83050,110,0,105,0,
8306116,0,105,0,111,
83070,110,0,115,0,
830895,0,50,0,1,
8309143,1,3,1,3,
83101,2,3125,22,1,
83114,1,2360,813,1,
83122547,3126,17,3127,15,
83133128,4,50,37,0,
831471,0,108,0,111,
83150,98,0,97,0,
8316108,0,70,0,117,
83170,110,0,99,0,
8318116,0,105,0,111,
83190,110,0,68,0,
8320101,0,102,0,105,
83210,110,0,105,0,
8322116,0,105,0,111,
83230,110,0,1,-1,
83241,5,3129,20,3130,
83254,52,71,0,108,
83260,111,0,98,0,
832797,0,108,0,70,
83280,117,0,110,0,
832999,0,116,0,105,
83300,111,0,110,0,
833168,0,101,0,102, 837168,0,101,0,102,
83320,105,0,110,0, 83720,105,0,110,0,
8333105,0,116,0,105, 8373105,0,116,0,105,
83340,111,0,110,0, 83740,111,0,110,0,
833595,0,49,0,1, 8375115,0,95,0,52,
8336148,1,3,1,6,
83371,5,3131,22,1,
83389,1,2586,3132,17,
83393133,15,3117,1,-1,
83401,5,3134,20,3135,
83414,54,71,0,108,
83420,111,0,98,0,
834397,0,108,0,86,
83440,97,0,114,0,
8345105,0,97,0,98,
83460,108,0,101,0,
834768,0,101,0,99,
83480,108,0,97,0,
8349114,0,97,0,116,
83500,105,0,111,0,
8351110,0,95,0,49,
83520,1,146,1,3, 83760,1,146,1,3,
83531,3,1,2,3136, 83771,3,1,2,3136,
835422,1,7,1,2362, 837822,1,6,1,2607,
83553137,17,3138,15,3128, 83793137,17,3138,15,3116,
83561,-1,1,5,3139, 83801,-1,1,5,3139,
835720,3140,4,52,71, 838120,3140,4,38,71,
83580,108,0,111,0, 83820,108,0,111,0,
835998,0,97,0,108, 838398,0,97,0,108,
83600,70,0,117,0, 83840,68,0,101,0,
8361110,0,99,0,116, 8385102,0,105,0,110,
83620,105,0,111,0, 83860,105,0,116,0,
8363110,0,68,0,101, 8387105,0,111,0,110,
83640,102,0,105,0, 83880,115,0,95,0,
8365110,0,105,0,116, 838950,0,1,144,1,
83660,105,0,111,0, 83903,1,3,1,2,
8367110,0,95,0,50, 83913141,22,1,4,1,
83680,1,149,1,3, 83922361,821,1,2363,3142,
83691,7,1,6,3141, 839317,3143,15,3108,1,
837022,1,10,1,48, 8394-1,1,5,3144,20,
83713142,19,269,1,48, 83953145,4,52,71,0,
83723143,5,52,1,0, 8396108,0,111,0,98,
83733144,16,0,267,1, 83970,97,0,108,0,
83742074,3145,16,0,499, 839870,0,117,0,110,
83751,1860,820,1,2197, 83990,99,0,116,0,
83763146,16,0,499,1, 8400105,0,111,0,110,
83772526,684,1,2309,3147, 84010,68,0,101,0,
837816,0,499,1,2528, 8402102,0,105,0,110,
83793148,16,0,267,1, 84030,105,0,116,0,
83801657,878,1,2030,720, 8404105,0,111,0,110,
83811,2532,673,1,1989, 84050,95,0,50,0,
8382894,1,1990,3149,16, 84061,150,1,3,1,
83830,499,1,2035,741, 84077,1,6,3146,22,
83841,1775,3150,16,0, 84081,10,1,2587,3147,
8385499,1,32,3151,16, 840917,3148,15,3127,1,
83860,499,1,2104,801, 8410-1,1,5,3149,20,
83871,2105,3152,16,0, 84113150,4,54,71,0,
8388499,1,2547,3126,1, 8412108,0,111,0,98,
83892226,886,1,2606,3121, 84130,97,0,108,0,
83901,1901,3153,16,0, 841486,0,97,0,114,
8391499,1,2531,667,1, 84150,105,0,97,0,
83922586,3132,1,2587,3154, 841698,0,108,0,101,
839316,0,267,1,2452, 84170,68,0,101,0,
8394695,1,1802,774,1, 841899,0,108,0,97,
83952021,707,1,1804,3155, 84190,114,0,97,0,
839616,0,499,1,2135, 8420116,0,105,0,111,
8397836,1,2354,853,1, 84210,110,0,95,0,
83982355,858,1,2029,714, 842249,0,1,147,1,
83991,2575,3115,1,2358, 84233,1,3,1,2,
8400807,1,2032,730,1, 84243151,22,1,7,1,
84012360,813,1,2362,3137, 84252588,3152,16,0,544,
84021,2037,746,1,2039, 84261,48,3153,19,493,
8403751,1,1931,863,1, 84271,48,3154,5,52,
84042041,757,1,1873,829, 84281,0,3155,16,0,
84051,2043,762,1,2044, 8429645,1,2075,3156,16,
8406767,1,2031,725,1, 84300,491,1,1860,827,
84072598,3156,16,0,267, 84311,2198,3157,16,0,
84081,2033,735,1,2605, 8432491,1,1657,883,1,
84093098,1,1574,787,1, 84332527,693,1,2310,3158,
84102607,3104,1,2608,3109, 843416,0,491,1,2529,
84111,1958,3157,16,0, 84353159,16,0,645,1,
8412499,1,49,3158,19, 84362029,716,1,2532,676,
8413504,1,49,3159,5, 84371,2032,732,1,1989,
841436,1,2074,3160,16, 8438899,1,1990,3160,16,
84150,502,1,1860,820, 84390,491,1,1775,3161,
84161,2197,3161,16,0, 844016,0,491,1,32,
8417502,1,2309,3162,16, 84413162,16,0,491,1,
84180,502,1,1657,878, 84422105,810,1,2106,3163,
84191,2031,725,1,1989, 844316,0,491,1,2043,
8420894,1,1990,3163,16, 8444764,1,2548,3106,1,
84210,502,1,1775,3164, 84452227,891,1,1901,3164,
842216,0,502,1,32, 844616,0,491,1,2587,
84233165,16,0,502,1, 84473147,1,2453,670,1,
84242104,801,1,2105,3166, 84481802,777,1,2021,709,
842516,0,502,1,2226, 84491,1804,3165,16,0,
8426886,1,1901,3167,16, 8450491,1,2136,845,1,
84270,502,1,1802,774, 84512355,804,1,2356,861,
84281,2021,707,1,1804, 84521,2030,722,1,2576,
84293168,16,0,502,1, 84533125,1,2359,816,1,
84302135,836,1,2354,853, 84542033,737,1,2361,821,
84311,2355,858,1,2029, 84551,2035,743,1,2363,
8432714,1,2030,720,1, 84563142,1,2037,748,1,
84332358,807,1,2032,730, 84572039,753,1,1931,866,
84341,2360,813,1,2035, 84581,2041,759,1,1873,
8435741,1,2037,746,1, 8459836,1,2588,3166,16,
84362039,751,1,1931,863, 84600,645,1,2045,769,
84371,2041,757,1,1873, 84611,1574,790,1,2031,
8438829,1,2043,762,1, 8462727,1,2599,3167,16,
84392044,767,1,2033,735, 84630,645,1,2606,3132,
84401,1574,787,1,1958, 84641,2607,3137,1,2608,
84413169,16,0,502,1, 84653114,1,2609,3120,1,
844250,3170,19,612,1, 84661958,3168,16,0,491,
844350,3171,5,36,1, 84671,2533,688,1,49,
84442074,3172,16,0,610, 84683169,19,498,1,49,
84451,1860,820,1,2197, 84693170,5,36,1,2075,
84463173,16,0,610,1, 84703171,16,0,496,1,
84472309,3174,16,0,610, 84711860,827,1,2198,3172,
84481,1657,878,1,2031, 847216,0,496,1,1873,
8449725,1,1989,894,1, 8473836,1,2310,3173,16,
84501990,3175,16,0,610, 84740,496,1,1657,883,
84511,1775,3176,16,0, 84751,1989,899,1,1990,
8452610,1,32,3177,16, 84763174,16,0,496,1,
84530,610,1,2104,801, 84771775,3175,16,0,496,
84541,2105,3178,16,0, 84781,32,3176,16,0,
8455610,1,2226,886,1, 8479496,1,2356,861,1,
84561901,3179,16,0,610, 84802105,810,1,2106,3177,
84571,1802,774,1,2021, 848116,0,496,1,2359,
8458707,1,1804,3180,16, 8482816,1,2227,891,1,
84590,610,1,2135,836, 84831901,3178,16,0,496,
84601,2354,853,1,2355, 84841,1802,777,1,2021,
8461858,1,2029,714,1, 8485709,1,1804,3179,16,
84622030,720,1,2358,807, 84860,496,1,2136,845,
84631,2032,730,1,2360, 84871,2355,804,1,2029,
8464813,1,2035,741,1, 8488716,1,2030,722,1,
84652037,746,1,2039,751, 84892031,727,1,2032,732,
84661,1931,863,1,2041, 84901,2033,737,1,2361,
8467757,1,1873,829,1, 8491821,1,2035,743,1,
84682043,762,1,2044,767, 84922037,748,1,2039,753,
84691,2033,735,1,1574, 84931,1931,866,1,2041,
8470787,1,1958,3181,16, 8494759,1,2043,764,1,
84710,610,1,51,3182, 84952045,769,1,1574,790,
847219,127,1,51,3183, 84961,1958,3180,16,0,
84735,51,1,0,3184, 8497496,1,50,3181,19,
847416,0,125,1,2401, 8498615,1,50,3182,5,
84753185,16,0,125,1, 849936,1,2075,3183,16,
84761860,820,1,10,3186, 85000,613,1,1860,827,
847716,0,125,1,2197, 85011,2198,3184,16,0,
84783187,16,0,125,1, 8502613,1,1873,836,1,
84792309,3188,16,0,125, 85032310,3185,16,0,613,
84801,21,3189,16,0, 85041,1657,883,1,1989,
8481125,1,1657,878,1, 8505899,1,1990,3186,16,
84822030,720,1,2031,725, 85060,613,1,1775,3187,
84831,2074,3190,16,0, 850716,0,613,1,32,
8484125,1,1989,894,1, 85083188,16,0,613,1,
84851990,3191,16,0,125, 85092356,861,1,2105,810,
84861,2035,741,1,1775, 85101,2106,3189,16,0,
84873192,16,0,125,1, 8511613,1,2359,816,1,
848832,3193,16,0,125, 85122227,891,1,1901,3190,
84891,2104,801,1,2105, 851316,0,613,1,1802,
84903194,16,0,125,1, 8514777,1,2021,709,1,
84912547,3126,1,2226,886, 85151804,3191,16,0,613,
84921,2606,3121,1,1901, 85161,2136,845,1,2355,
84933195,16,0,125,1, 8517804,1,2029,716,1,
849452,3196,16,0,125, 85182030,722,1,2031,727,
84951,2587,3197,16,0, 85191,2032,732,1,2033,
8496125,1,1802,774,1, 8520737,1,2361,821,1,
84972021,707,1,1804,3198, 85212035,743,1,2037,748,
849816,0,125,1,2135, 85221,2039,753,1,1931,
8499836,1,2354,853,1, 8523866,1,2041,759,1,
85002355,858,1,2029,714, 85242043,764,1,2045,769,
85011,2575,3115,1,2358, 85251,1574,790,1,1958,
8502807,1,2032,730,1, 85263192,16,0,613,1,
85032360,813,1,2362,3137, 852751,3193,19,127,1,
85041,2037,746,1,2039, 852851,3194,5,51,1,
8505751,1,1931,863,1, 85290,3195,16,0,125,
85062041,757,1,1873,829, 85301,2402,3196,16,0,
85071,2043,762,1,2044, 8531125,1,1860,827,1,
8508767,1,2033,735,1, 853210,3197,16,0,125,
85092605,3098,1,1574,787, 85331,2198,3198,16,0,
85101,2607,3104,1,2608, 8534125,1,1873,836,1,
85113109,1,1958,3199,16, 85352310,3199,16,0,125,
85120,125,1,2586,3132, 85361,1657,883,1,21,
85131,2534,3200,16,0, 85373200,16,0,125,1,
8514125,1,52,3201,19, 85382031,727,1,2032,732,
8515124,1,52,3202,5, 85391,1989,899,1,2535,
851651,1,0,3203,16, 85403201,16,0,125,1,
85170,122,1,2401,3204, 85411775,3202,16,0,125,
851816,0,122,1,1860, 85421,32,3203,16,0,
8519820,1,10,3205,16, 8543125,1,2105,810,1,
85200,122,1,2197,3206, 85442106,3204,16,0,125,
852116,0,122,1,2309, 85451,2043,764,1,2548,
85223207,16,0,122,1, 85463106,1,2227,891,1,
852321,3208,16,0,122, 85471901,3205,16,0,125,
85241,1657,878,1,2030, 85481,52,3206,16,0,
8525720,1,2031,725,1, 8549125,1,1802,777,1,
85262074,3209,16,0,122, 85502021,709,1,1804,3207,
85271,1989,894,1,1990, 855116,0,125,1,2136,
85283210,16,0,122,1, 8552845,1,2355,804,1,
85292035,741,1,1775,3211, 85532356,861,1,2030,722,
853016,0,122,1,32, 85541,2576,3125,1,2359,
85313212,16,0,122,1, 8555816,1,2033,737,1,
85322104,801,1,2105,3213, 85562361,821,1,2035,743,
853316,0,122,1,2547, 85571,2363,3142,1,2037,
85343126,1,2226,886,1, 8558748,1,2039,753,1,
85352606,3121,1,1901,3214, 85591931,866,1,2041,759,
853616,0,122,1,52, 85601,2587,3147,1,2588,
85373215,16,0,122,1, 85613208,16,0,125,1,
85382587,3216,16,0,122, 85622045,769,1,1574,790,
85391,1802,774,1,2021, 85631,2029,716,1,1990,
8540707,1,1804,3217,16, 85643209,16,0,125,1,
85410,122,1,2135,836, 85652075,3210,16,0,125,
85421,2354,853,1,2355, 85661,2606,3132,1,2607,
8543858,1,2029,714,1, 85673137,1,2608,3114,1,
85442575,3115,1,2358,807, 85682609,3120,1,1958,3211,
85451,2032,730,1,2360, 856916,0,125,1,52,
8546813,1,2362,3137,1, 85703212,19,124,1,52,
85472037,746,1,2039,751, 85713213,5,51,1,0,
85481,1931,863,1,2041, 85723214,16,0,122,1,
8549757,1,1873,829,1, 85732402,3215,16,0,122,
85502043,762,1,2044,767, 85741,1860,827,1,10,
85511,2033,735,1,2605, 85753216,16,0,122,1,
85523098,1,1574,787,1, 85762198,3217,16,0,122,
85532607,3104,1,2608,3109, 85771,1873,836,1,2310,
85541,1958,3218,16,0, 85783218,16,0,122,1,
8555122,1,2586,3132,1, 85791657,883,1,21,3219,
85562534,3219,16,0,122, 858016,0,122,1,2031,
85571,53,3220,19,121, 8581727,1,2032,732,1,
85581,53,3221,5,51, 85821989,899,1,2535,3220,
85591,0,3222,16,0, 858316,0,122,1,1775,
8560119,1,2401,3223,16, 85843221,16,0,122,1,
85610,119,1,1860,820, 858532,3222,16,0,122,
85621,10,3224,16,0, 85861,2105,810,1,2106,
8563119,1,2197,3225,16, 85873223,16,0,122,1,
85640,119,1,2309,3226, 85882043,764,1,2548,3106,
856516,0,119,1,21, 85891,2227,891,1,1901,
85663227,16,0,119,1, 85903224,16,0,122,1,
85671657,878,1,2030,720, 859152,3225,16,0,122,
85681,2031,725,1,2074, 85921,1802,777,1,2021,
85693228,16,0,119,1, 8593709,1,1804,3226,16,
85701989,894,1,1990,3229, 85940,122,1,2136,845,
857116,0,119,1,2035, 85951,2355,804,1,2356,
8572741,1,1775,3230,16, 8596861,1,2030,722,1,
85730,119,1,32,3231, 85972576,3125,1,2359,816,
857416,0,119,1,2104, 85981,2033,737,1,2361,
8575801,1,2105,3232,16, 8599821,1,2035,743,1,
85760,119,1,2547,3126, 86002363,3142,1,2037,748,
85771,2226,886,1,2606, 86011,2039,753,1,1931,
85783121,1,1901,3233,16, 8602866,1,2041,759,1,
85790,119,1,52,3234, 86032587,3147,1,2588,3227,
858016,0,119,1,2587, 860416,0,122,1,2045,
85813235,16,0,119,1, 8605769,1,1574,790,1,
85821802,774,1,2021,707, 86062029,716,1,1990,3228,
85831,1804,3236,16,0, 860716,0,122,1,2075,
8584119,1,2135,836,1, 86083229,16,0,122,1,
85852354,853,1,2355,858, 86092606,3132,1,2607,3137,
85861,2029,714,1,2575, 86101,2608,3114,1,2609,
85873115,1,2358,807,1, 86113120,1,1958,3230,16,
85882032,730,1,2360,813, 86120,122,1,53,3231,
85891,2362,3137,1,2037, 861319,121,1,53,3232,
8590746,1,2039,751,1, 86145,51,1,0,3233,
85911931,863,1,2041,757, 861516,0,119,1,2402,
85921,1873,829,1,2043, 86163234,16,0,119,1,
8593762,1,2044,767,1, 86171860,827,1,10,3235,
85942033,735,1,2605,3098, 861816,0,119,1,2198,
85951,1574,787,1,2607, 86193236,16,0,119,1,
85963104,1,2608,3109,1, 86201873,836,1,2310,3237,
85971958,3237,16,0,119, 862116,0,119,1,1657,
85981,2586,3132,1,2534, 8622883,1,21,3238,16,
85993238,16,0,119,1, 86230,119,1,2031,727,
860054,3239,19,118,1, 86241,2032,732,1,1989,
860154,3240,5,51,1, 8625899,1,2535,3239,16,
86020,3241,16,0,116, 86260,119,1,1775,3240,
86031,2401,3242,16,0, 862716,0,119,1,32,
8604116,1,1860,820,1, 86283241,16,0,119,1,
860510,3243,16,0,116, 86292105,810,1,2106,3242,
86061,2197,3244,16,0, 863016,0,119,1,2043,
8607116,1,2309,3245,16, 8631764,1,2548,3106,1,
86080,116,1,21,3246, 86322227,891,1,1901,3243,
860916,0,116,1,1657, 863316,0,119,1,52,
8610878,1,2030,720,1, 86343244,16,0,119,1,
86112031,725,1,2074,3247, 86351802,777,1,2021,709,
861216,0,116,1,1989, 86361,1804,3245,16,0,
8613894,1,1990,3248,16, 8637119,1,2136,845,1,
86140,116,1,2035,741, 86382355,804,1,2356,861,
86151,1775,3249,16,0, 86391,2030,722,1,2576,
8616116,1,32,3250,16, 86403125,1,2359,816,1,
86170,116,1,2104,801, 86412033,737,1,2361,821,
86181,2105,3251,16,0, 86421,2035,743,1,2363,
8619116,1,2547,3126,1, 86433142,1,2037,748,1,
86202226,886,1,2606,3121, 86442039,753,1,1931,866,
86211,1901,3252,16,0, 86451,2041,759,1,2587,
8622116,1,52,3253,16, 86463147,1,2588,3246,16,
86230,116,1,2587,3254, 86470,119,1,2045,769,
86481,1574,790,1,2029,
8649716,1,1990,3247,16,
86500,119,1,2075,3248,
865116,0,119,1,2606,
86523132,1,2607,3137,1,
86532608,3114,1,2609,3120,
86541,1958,3249,16,0,
8655119,1,54,3250,19,
8656118,1,54,3251,5,
865751,1,0,3252,16,
86580,116,1,2402,3253,
865916,0,116,1,1860,
8660827,1,10,3254,16,
86610,116,1,2198,3255,
866216,0,116,1,1873,
8663836,1,2310,3256,16,
86640,116,1,1657,883,
86651,21,3257,16,0,
8666116,1,2031,727,1,
86672032,732,1,1989,899,
86681,2535,3258,16,0,
8669116,1,1775,3259,16,
86700,116,1,32,3260,
867116,0,116,1,2105,
8672810,1,2106,3261,16,
86730,116,1,2043,764,
86741,2548,3106,1,2227,
8675891,1,1901,3262,16,
86760,116,1,52,3263,
862416,0,116,1,1802, 867716,0,116,1,1802,
8625774,1,2021,707,1, 8678777,1,2021,709,1,
86261804,3255,16,0,116, 86791804,3264,16,0,116,
86271,2135,836,1,2354, 86801,2136,845,1,2355,
8628853,1,2355,858,1, 8681804,1,2356,861,1,
86292029,714,1,2575,3115, 86822030,722,1,2576,3125,
86301,2358,807,1,2032, 86831,2359,816,1,2033,
8631730,1,2360,813,1, 8684737,1,2361,821,1,
86322362,3137,1,2037,746, 86852035,743,1,2363,3142,
86331,2039,751,1,1931, 86861,2037,748,1,2039,
8634863,1,2041,757,1, 8687753,1,1931,866,1,
86351873,829,1,2043,762, 86882041,759,1,2587,3147,
86361,2044,767,1,2033, 86891,2588,3265,16,0,
8637735,1,2605,3098,1, 8690116,1,2045,769,1,
86381574,787,1,2607,3104, 86911574,790,1,2029,716,
86391,2608,3109,1,1958, 86921,1990,3266,16,0,
86403256,16,0,116,1, 8693116,1,2075,3267,16,
86412586,3132,1,2534,3257, 86940,116,1,2606,3132,
864216,0,116,1,55, 86951,2607,3137,1,2608,
86433258,19,115,1,55, 86963114,1,2609,3120,1,
86443259,5,51,1,0, 86971958,3268,16,0,116,
86453260,16,0,113,1, 86981,55,3269,19,115,
86462401,3261,16,0,113, 86991,55,3270,5,51,
86471,1860,820,1,10, 87001,0,3271,16,0,
86483262,16,0,113,1, 8701113,1,2402,3272,16,
86492197,3263,16,0,113, 87020,113,1,1860,827,
86501,2309,3264,16,0, 87031,10,3273,16,0,
8651113,1,21,3265,16, 8704113,1,2198,3274,16,
86520,113,1,1657,878, 87050,113,1,1873,836,
86531,2030,720,1,2031, 87061,2310,3275,16,0,
8654725,1,2074,3266,16, 8707113,1,1657,883,1,
86550,113,1,1989,894, 870821,3276,16,0,113,
86561,1990,3267,16,0, 87091,2031,727,1,2032,
8657113,1,2035,741,1, 8710732,1,1989,899,1,
86581775,3268,16,0,113, 87112535,3277,16,0,113,
86591,32,3269,16,0, 87121,1775,3278,16,0,
8660113,1,2104,801,1, 8713113,1,32,3279,16,
86612105,3270,16,0,113, 87140,113,1,2105,810,
86621,2547,3126,1,2226, 87151,2106,3280,16,0,
8663886,1,2606,3121,1, 8716113,1,2043,764,1,
86641901,3271,16,0,113, 87172548,3106,1,2227,891,
86651,52,3272,16,0, 87181,1901,3281,16,0,
8666113,1,2587,3273,16, 8719113,1,52,3282,16,
86670,113,1,1802,774, 87200,113,1,1802,777,
86681,2021,707,1,1804, 87211,2021,709,1,1804,
86693274,16,0,113,1, 87223283,16,0,113,1,
86702135,836,1,2354,853, 87232136,845,1,2355,804,
86711,2355,858,1,2029, 87241,2356,861,1,2030,
8672714,1,2575,3115,1, 8725722,1,2576,3125,1,
86732358,807,1,2032,730, 87262359,816,1,2033,737,
86741,2360,813,1,2362, 87271,2361,821,1,2035,
86753137,1,2037,746,1, 8728743,1,2363,3142,1,
86762039,751,1,1931,863, 87292037,748,1,2039,753,
86771,2041,757,1,1873, 87301,1931,866,1,2041,
8678829,1,2043,762,1, 8731759,1,2587,3147,1,
86792044,767,1,2033,735, 87322588,3284,16,0,113,
86801,2605,3098,1,1574, 87331,2045,769,1,1574,
8681787,1,2607,3104,1, 8734790,1,2029,716,1,
86822608,3109,1,1958,3275, 87351990,3285,16,0,113,
868316,0,113,1,2586, 87361,2075,3286,16,0,
86843132,1,2534,3276,16, 8737113,1,2606,3132,1,
86850,113,1,56,3277, 87382607,3137,1,2608,3114,
868619,112,1,56,3278, 87391,2609,3120,1,1958,
86875,51,1,0,3279, 87403287,16,0,113,1,
868816,0,110,1,2401, 874156,3288,19,112,1,
86893280,16,0,110,1, 874256,3289,5,51,1,
86901860,820,1,10,3281, 87430,3290,16,0,110,
869116,0,110,1,2197, 87441,2402,3291,16,0,
86923282,16,0,110,1, 8745110,1,1860,827,1,
86932309,3283,16,0,110, 874610,3292,16,0,110,
86941,21,3284,16,0, 87471,2198,3293,16,0,
8695110,1,1657,878,1, 8748110,1,1873,836,1,
86962030,720,1,2031,725, 87492310,3294,16,0,110,
86971,2074,3285,16,0, 87501,1657,883,1,21,
8698110,1,1989,894,1, 87513295,16,0,110,1,
86991990,3286,16,0,110, 87522031,727,1,2032,732,
87001,2035,741,1,1775, 87531,1989,899,1,2535,
87013287,16,0,110,1, 87543296,16,0,110,1,
870232,3288,16,0,110, 87551775,3297,16,0,110,
87031,2104,801,1,2105, 87561,32,3298,16,0,
87043289,16,0,110,1, 8757110,1,2105,810,1,
87052547,3126,1,2226,886, 87582106,3299,16,0,110,
87061,2606,3121,1,1901, 87591,2043,764,1,2548,
87073290,16,0,110,1, 87603106,1,2227,891,1,
870852,3291,16,0,110, 87611901,3300,16,0,110,
87091,2587,3292,16,0, 87621,52,3301,16,0,
8710110,1,1802,774,1, 8763110,1,1802,777,1,
87112021,707,1,1804,3293, 87642021,709,1,1804,3302,
871216,0,110,1,2135, 876516,0,110,1,2136,
8713836,1,2354,853,1, 8766845,1,2355,804,1,
87142355,858,1,2029,714, 87672356,861,1,2030,722,
87151,2575,3115,1,2358, 87681,2576,3125,1,2359,
8716807,1,2032,730,1, 8769816,1,2033,737,1,
87172360,813,1,2362,3137, 87702361,821,1,2035,743,
87181,2037,746,1,2039, 87711,2363,3142,1,2037,
8719751,1,1931,863,1, 8772748,1,2039,753,1,
87202041,757,1,1873,829, 87731931,866,1,2041,759,
87211,2043,762,1,2044, 87741,2587,3147,1,2588,
8722767,1,2033,735,1, 87753303,16,0,110,1,
87232605,3098,1,1574,787, 87762045,769,1,1574,790,
87241,2607,3104,1,2608, 87771,2029,716,1,1990,
87253109,1,1958,3294,16, 87783304,16,0,110,1,
87260,110,1,2586,3132, 87792075,3305,16,0,110,
87271,2534,3295,16,0, 87801,2606,3132,1,2607,
8728110,1,57,3296,19, 87813137,1,2608,3114,1,
8729109,1,57,3297,5, 87822609,3120,1,1958,3306,
873051,1,0,3298,16, 878316,0,110,1,57,
87310,107,1,2401,3299, 87843307,19,109,1,57,
873216,0,107,1,1860, 87853308,5,51,1,0,
8733820,1,10,3300,16, 87863309,16,0,107,1,
87340,107,1,2197,3301, 87872402,3310,16,0,107,
873516,0,107,1,2309, 87881,1860,827,1,10,
87363302,16,0,107,1, 87893311,16,0,107,1,
873721,3303,16,0,107, 87902198,3312,16,0,107,
87381,1657,878,1,2030, 87911,1873,836,1,2310,
8739720,1,2031,725,1, 87923313,16,0,107,1,
87402074,3304,16,0,107, 87931657,883,1,21,3314,
87411,1989,894,1,1990, 879416,0,107,1,2031,
87423305,16,0,107,1, 8795727,1,2032,732,1,
87432035,741,1,1775,3306, 87961989,899,1,2535,3315,
874416,0,107,1,32, 879716,0,107,1,1775,
87453307,16,0,107,1, 87983316,16,0,107,1,
87462104,801,1,2105,3308, 879932,3317,16,0,107,
874716,0,107,1,2547, 88001,2105,810,1,2106,
87483126,1,2226,886,1, 88013318,16,0,107,1,
87492606,3121,1,1901,3309, 88022043,764,1,2548,3106,
875016,0,107,1,52, 88031,2227,891,1,1901,
87513310,16,0,107,1, 88043319,16,0,107,1,
87522587,3311,16,0,107, 880552,3320,16,0,107,
87531,1802,774,1,2021, 88061,1802,777,1,2021,
8754707,1,1804,3312,16, 8807709,1,1804,3321,16,
87550,107,1,2135,836, 88080,107,1,2136,845,
87561,2354,853,1,2355, 88091,2355,804,1,2356,
8757858,1,2029,714,1, 8810861,1,2030,722,1,
87582575,3115,1,2358,807, 88112576,3125,1,2359,816,
87591,2032,730,1,2360, 88121,2033,737,1,2361,
8760813,1,2362,3137,1, 8813821,1,2035,743,1,
87612037,746,1,2039,751, 88142363,3142,1,2037,748,
87621,1931,863,1,2041, 88151,2039,753,1,1931,
8763757,1,1873,829,1, 8816866,1,2041,759,1,
87642043,762,1,2044,767, 88172587,3147,1,2588,3322,
87651,2033,735,1,2605, 881816,0,107,1,2045,
87663098,1,1574,787,1, 8819769,1,1574,790,1,
87672607,3104,1,2608,3109, 88202029,716,1,1990,3323,
87681,1958,3313,16,0, 882116,0,107,1,2075,
8769107,1,2586,3132,1, 88223324,16,0,107,1,
87702534,3314,16,0,107, 88232606,3132,1,2607,3137,
87711,58,3315,19,352, 88241,2608,3114,1,2609,
87721,58,3316,5,9, 88253120,1,1958,3325,16,
87731,2414,1580,1,2490, 88260,107,1,58,3326,
87743317,16,0,350,1, 882719,428,1,58,3327,
87752455,3318,16,0,350, 88285,9,1,2415,1591,
87761,2451,1589,1,2416, 88291,2417,3328,16,0,
87773319,16,0,350,1, 8830426,1,2456,3329,16,
87782453,1595,1,2355,858, 88310,426,1,2452,1600,
87791,2360,813,1,2366, 88321,2454,1606,1,2491,
87803320,16,0,350,1, 88333330,16,0,426,1,
878159,3321,19,349,1, 88342356,861,1,2361,821,
878259,3322,5,9,1, 88351,2367,3331,16,0,
87832414,1580,1,2490,3323, 8836426,1,59,3332,19,
878416,0,347,1,2455, 8837344,1,59,3333,5,
87853324,16,0,347,1, 88389,1,2415,1591,1,
87862451,1589,1,2416,3325, 88392417,3334,16,0,342,
878716,0,347,1,2453, 88401,2456,3335,16,0,
87881595,1,2355,858,1, 8841342,1,2452,1600,1,
87892360,813,1,2366,3326, 88422454,1606,1,2491,3336,
879016,0,347,1,60, 884316,0,342,1,2356,
87913327,19,429,1,60, 8844861,1,2361,821,1,
87923328,5,9,1,2414, 88452367,3337,16,0,342,
87931580,1,2490,3329,16, 88461,60,3338,19,341,
87940,427,1,2455,3330, 88471,60,3339,5,9,
879516,0,427,1,2451, 88481,2415,1591,1,2417,
87961589,1,2416,3331,16, 88493340,16,0,339,1,
87970,427,1,2453,1595, 88502456,3341,16,0,339,
87981,2355,858,1,2360, 88511,2452,1600,1,2454,
8799813,1,2366,3332,16, 88521606,1,2491,3342,16,
88000,427,1,61,3333, 88530,339,1,2356,861,
880119,345,1,61,3334, 88541,2361,821,1,2367,
88025,9,1,2414,1580, 88553343,16,0,339,1,
88031,2490,3335,16,0, 885661,3344,19,425,1,
8804343,1,2455,3336,16, 885761,3345,5,9,1,
88050,343,1,2451,1589, 88582415,1591,1,2417,3346,
88061,2416,3337,16,0, 885916,0,423,1,2456,
8807343,1,2453,1595,1, 88603347,16,0,423,1,
88082355,858,1,2360,813, 88612452,1600,1,2454,1606,
88091,2366,3338,16,0, 88621,2491,3348,16,0,
8810343,1,62,3339,19, 8863423,1,2356,861,1,
8811342,1,62,3340,5, 88642361,821,1,2367,3349,
88129,1,2414,1580,1, 886516,0,423,1,62,
88132490,3341,16,0,340, 88663350,19,337,1,62,
88141,2455,3342,16,0, 88673351,5,9,1,2415,
8815340,1,2451,1589,1, 88681591,1,2417,3352,16,
88162416,3343,16,0,340, 88690,335,1,2456,3353,
88171,2453,1595,1,2355, 887016,0,335,1,2452,
8818858,1,2360,813,1, 88711600,1,2454,1606,1,
88192366,3344,16,0,340, 88722491,3354,16,0,335,
88201,63,3345,19,562, 88731,2356,861,1,2361,
88211,63,3346,5,9, 8874821,1,2367,3355,16,
88221,2414,1580,1,2490, 88750,335,1,63,3356,
88233347,16,0,560,1, 887619,334,1,63,3357,
88242455,3348,16,0,560, 88775,9,1,2415,1591,
88251,2451,1589,1,2416, 88781,2417,3358,16,0,
88263349,16,0,560,1, 8879332,1,2456,3359,16,
88272453,1595,1,2355,858, 88800,332,1,2452,1600,
88281,2360,813,1,2366, 88811,2454,1606,1,2491,
88293350,16,0,560,1, 88823360,16,0,332,1,
883064,3351,19,336,1, 88832356,861,1,2361,821,
883164,3352,5,9,1, 88841,2367,3361,16,0,
88322414,1580,1,2490,3353, 8885332,1,64,3362,19,
883316,0,334,1,2455, 8886555,1,64,3363,5,
88343354,16,0,334,1, 88879,1,2415,1591,1,
88352451,1589,1,2416,3355, 88882417,3364,16,0,553,
883616,0,334,1,2453, 88891,2456,3365,16,0,
88371595,1,2355,858,1, 8890553,1,2452,1600,1,
88382360,813,1,2366,3356, 88912454,1606,1,2491,3366,
883916,0,334,1,65, 889216,0,553,1,2356,
88403357,19,333,1,65, 8893861,1,2361,821,1,
88413358,5,9,1,2414, 88942367,3367,16,0,553,
88421580,1,2490,3359,16, 88951,65,3368,19,328,
88430,331,1,2455,3360, 88961,65,3369,5,9,
884416,0,331,1,2451, 88971,2415,1591,1,2417,
88451589,1,2416,3361,16, 88983370,16,0,326,1,
88460,331,1,2453,1595, 88992456,3371,16,0,326,
88471,2355,858,1,2360, 89001,2452,1600,1,2454,
8848813,1,2366,3362,16, 89011606,1,2491,3372,16,
88490,331,1,66,3363, 89020,326,1,2356,861,
885019,425,1,66,3364, 89031,2361,821,1,2367,
88515,9,1,2414,1580, 89043373,16,0,326,1,
88521,2490,3365,16,0, 890566,3374,19,325,1,
8853423,1,2455,3366,16, 890666,3375,5,9,1,
88540,423,1,2451,1589, 89072415,1591,1,2417,3376,
88551,2416,3367,16,0, 890816,0,323,1,2456,
8856423,1,2453,1595,1, 89093377,16,0,323,1,
88572355,858,1,2360,813, 89102452,1600,1,2454,1606,
88581,2366,3368,16,0, 89111,2491,3378,16,0,
8859423,1,67,3369,19, 8912323,1,2356,861,1,
8860422,1,67,3370,5, 89132361,821,1,2367,3379,
88619,1,2414,1580,1, 891416,0,323,1,67,
88622490,3371,16,0,420, 89153380,19,421,1,67,
88631,2455,3372,16,0, 89163381,5,9,1,2415,
8864420,1,2451,1589,1, 89171591,1,2417,3382,16,
88652416,3373,16,0,420, 89180,419,1,2456,3383,
88661,2453,1595,1,2355, 891916,0,419,1,2452,
8867858,1,2360,813,1, 89201600,1,2454,1606,1,
88682366,3374,16,0,420, 89212491,3384,16,0,419,
88691,68,3375,19,419, 89221,2356,861,1,2361,
88701,68,3376,5,9, 8923821,1,2367,3385,16,
88711,2414,1580,1,2490, 89240,419,1,68,3386,
88723377,16,0,417,1, 892519,418,1,68,3387,
88732455,3378,16,0,417, 89265,9,1,2415,1591,
88741,2451,1589,1,2416, 89271,2417,3388,16,0,
88753379,16,0,417,1, 8928416,1,2456,3389,16,
88762453,1595,1,2355,858, 89290,416,1,2452,1600,
88771,2360,813,1,2366, 89301,2454,1606,1,2491,
88783380,16,0,417,1, 89313390,16,0,416,1,
887969,3381,19,325,1, 89322356,861,1,2361,821,
888069,3382,5,9,1, 89331,2367,3391,16,0,
88812414,1580,1,2490,3383, 8934416,1,69,3392,19,
888216,0,323,1,2455, 8935415,1,69,3393,5,
88833384,16,0,323,1, 89369,1,2415,1591,1,
88842451,1589,1,2416,3385, 89372417,3394,16,0,413,
888516,0,323,1,2453, 89381,2456,3395,16,0,
88861595,1,2355,858,1, 8939413,1,2452,1600,1,
88872360,813,1,2366,3386, 89402454,1606,1,2491,3396,
888816,0,323,1,70, 894116,0,413,1,2356,
88893387,19,413,1,70, 8942861,1,2361,821,1,
88903388,5,9,1,2414, 89432367,3397,16,0,413,
88911580,1,2490,3389,16, 89441,70,3398,19,317,
88920,411,1,2455,3390, 89451,70,3399,5,9,
889316,0,411,1,2451, 89461,2415,1591,1,2417,
88941589,1,2416,3391,16, 89473400,16,0,315,1,
88950,411,1,2453,1595, 89482456,3401,16,0,315,
88961,2355,858,1,2360, 89491,2452,1600,1,2454,
8897813,1,2366,3392,16, 89501606,1,2491,3402,16,
88980,411,1,71,3393, 89510,315,1,2356,861,
889919,321,1,71,3394, 89521,2361,821,1,2367,
89005,9,1,2414,1580, 89533403,16,0,315,1,
89011,2490,3395,16,0, 895471,3404,19,409,1,
8902319,1,2455,3396,16, 895571,3405,5,9,1,
89030,319,1,2451,1589, 89562415,1591,1,2417,3406,
89041,2416,3397,16,0, 895716,0,407,1,2456,
8905319,1,2453,1595,1, 89583407,16,0,407,1,
89062355,858,1,2360,813, 89592452,1600,1,2454,1606,
89071,2366,3398,16,0, 89601,2491,3408,16,0,
8908319,1,72,3399,19, 8961407,1,2356,861,1,
8909410,1,72,3400,5, 89622361,821,1,2367,3409,
89109,1,2414,1580,1, 896316,0,407,1,72,
89112490,3401,16,0,408, 89643410,19,313,1,72,
89121,2455,3402,16,0, 89653411,5,9,1,2415,
8913408,1,2451,1589,1, 89661591,1,2417,3412,16,
89142416,3403,16,0,408, 89670,311,1,2456,3413,
89151,2453,1595,1,2355, 896816,0,311,1,2452,
8916858,1,2360,813,1, 89691600,1,2454,1606,1,
89172366,3404,16,0,408, 89702491,3414,16,0,311,
89181,73,3405,19,317, 89711,2356,861,1,2361,
89191,73,3406,5,9, 8972821,1,2367,3415,16,
89201,2414,1580,1,2490, 89730,311,1,73,3416,
89213407,16,0,315,1, 897419,406,1,73,3417,
89222455,3408,16,0,315, 89755,9,1,2415,1591,
89231,2451,1589,1,2416, 89761,2417,3418,16,0,
89243409,16,0,315,1, 8977404,1,2456,3419,16,
89252453,1595,1,2355,858, 89780,404,1,2452,1600,
89261,2360,813,1,2366, 89791,2454,1606,1,2491,
89273410,16,0,315,1, 89803420,16,0,404,1,
892874,3411,19,471,1, 89812356,861,1,2361,821,
892974,3412,5,9,1, 89821,2367,3421,16,0,
89302414,1580,1,2490,3413, 8983404,1,74,3422,19,
893116,0,469,1,2455, 8984403,1,74,3423,5,
89323414,16,0,469,1, 89859,1,2415,1591,1,
89332451,1589,1,2416,3415, 89862417,3424,16,0,401,
893416,0,469,1,2453, 89871,2456,3425,16,0,
89351595,1,2355,858,1, 8988401,1,2452,1600,1,
89362360,813,1,2366,3416, 89892454,1606,1,2491,3426,
893716,0,469,1,75, 899016,0,401,1,2356,
89383417,19,311,1,75, 8991861,1,2361,821,1,
89393418,5,9,1,2414, 89922367,3427,16,0,401,
89401580,1,2490,3419,16, 89931,75,3428,19,306,
89410,309,1,2455,3420, 89941,75,3429,5,9,
894216,0,309,1,2451, 89951,2415,1591,1,2417,
89431589,1,2416,3421,16, 89963430,16,0,304,1,
89440,309,1,2453,1595, 89972456,3431,16,0,304,
89451,2355,858,1,2360, 89981,2452,1600,1,2454,
8946813,1,2366,3422,16, 89991606,1,2491,3432,16,
89470,309,1,76,3423, 90000,304,1,2356,861,
894819,405,1,76,3424, 90011,2361,821,1,2367,
89495,9,1,2414,1580, 90023433,16,0,304,1,
89501,2490,3425,16,0, 900376,3434,19,303,1,
8951403,1,2455,3426,16, 900476,3435,5,9,1,
89520,403,1,2451,1589, 90052415,1591,1,2417,3436,
89531,2416,3427,16,0, 900616,0,301,1,2456,
8954403,1,2453,1595,1, 90073437,16,0,301,1,
89552355,858,1,2360,813, 90082452,1600,1,2454,1606,
89561,2366,3428,16,0, 90091,2491,3438,16,0,
8957403,1,77,3429,19, 9010301,1,2356,861,1,
8958307,1,77,3430,5, 90112361,821,1,2367,3439,
89599,1,2414,1580,1, 901216,0,301,1,77,
89602490,3431,16,0,305, 90133440,19,398,1,77,
89611,2455,3432,16,0, 90143441,5,9,1,2415,
8962305,1,2451,1589,1, 90151591,1,2417,3442,16,
89632416,3433,16,0,305, 90160,396,1,2456,3443,
89641,2453,1595,1,2355, 901716,0,396,1,2452,
8965858,1,2360,813,1, 90181600,1,2454,1606,1,
89662366,3434,16,0,305, 90192491,3444,16,0,396,
89671,78,3435,19,463, 90201,2356,861,1,2361,
89681,78,3436,5,9, 9021821,1,2367,3445,16,
89691,2414,1580,1,2490, 90220,396,1,78,3446,
89703437,16,0,461,1, 902319,299,1,78,3447,
89712455,3438,16,0,461, 90245,9,1,2415,1591,
89721,2451,1589,1,2416, 90251,2417,3448,16,0,
89733439,16,0,461,1, 9026297,1,2456,3449,16,
89742453,1595,1,2355,858, 90270,297,1,2452,1600,
89751,2360,813,1,2366, 90281,2454,1606,1,2491,
89763440,16,0,461,1, 90293450,16,0,297,1,
897779,3441,19,301,1, 90302356,861,1,2361,821,
897879,3442,5,9,1, 90311,2367,3451,16,0,
89792414,1580,1,2490,3443, 9032297,1,79,3452,19,
898016,0,299,1,2455, 9033462,1,79,3453,5,
89813444,16,0,299,1, 90349,1,2415,1591,1,
89822451,1589,1,2416,3445, 90352417,3454,16,0,460,
898316,0,299,1,2453, 90361,2456,3455,16,0,
89841595,1,2355,858,1, 9037460,1,2452,1600,1,
89852360,813,1,2366,3446, 90382454,1606,1,2491,3456,
898616,0,299,1,80, 903916,0,460,1,2356,
89873447,19,298,1,80, 9040861,1,2361,821,1,
89883448,5,9,1,2414, 90412367,3457,16,0,460,
89891580,1,2490,3449,16, 90421,80,3458,19,293,
89900,296,1,2455,3450, 90431,80,3459,5,9,
899116,0,296,1,2451, 90441,2415,1591,1,2417,
89921589,1,2416,3451,16, 90453460,16,0,291,1,
89930,296,1,2453,1595, 90462456,3461,16,0,291,
89941,2355,858,1,2360, 90471,2452,1600,1,2454,
8995813,1,2366,3452,16, 90481606,1,2491,3462,16,
89960,296,1,81,3453, 90490,291,1,2356,861,
899719,295,1,81,3454, 90501,2361,821,1,2367,
89985,9,1,2414,1580, 90513463,16,0,291,1,
89991,2490,3455,16,0, 905281,3464,19,290,1,
9000293,1,2455,3456,16, 905381,3465,5,9,1,
90010,293,1,2451,1589, 90542415,1591,1,2417,3466,
90021,2416,3457,16,0, 905516,0,288,1,2456,
9003293,1,2453,1595,1, 90563467,16,0,288,1,
90042355,858,1,2360,813, 90572452,1600,1,2454,1606,
90051,2366,3458,16,0, 90581,2491,3468,16,0,
9006293,1,82,3459,19, 9059288,1,2356,861,1,
9007590,1,82,3460,5, 90602361,821,1,2367,3469,
90089,1,2414,1580,1, 906116,0,288,1,82,
90092490,3461,16,0,588, 90623470,19,287,1,82,
90101,2455,3462,16,0, 90633471,5,9,1,2415,
9011588,1,2451,1589,1, 90641591,1,2417,3472,16,
90122416,3463,16,0,588, 90650,285,1,2456,3473,
90131,2453,1595,1,2355, 906616,0,285,1,2452,
9014858,1,2360,813,1, 90671600,1,2454,1606,1,
90152366,3464,16,0,588, 90682491,3474,16,0,285,
90161,83,3465,19,393, 90691,2356,861,1,2361,
90171,83,3466,5,9, 9070821,1,2367,3475,16,
90181,2414,1580,1,2490, 90710,285,1,83,3476,
90193467,16,0,391,1, 907219,592,1,83,3477,
90202455,3468,16,0,391, 90735,9,1,2415,1591,
90211,2451,1589,1,2416, 90741,2417,3478,16,0,
90223469,16,0,391,1, 9075590,1,2456,3479,16,
90232453,1595,1,2355,858, 90760,590,1,2452,1600,
90241,2360,813,1,2366, 90771,2454,1606,1,2491,
90253470,16,0,391,1, 90783480,16,0,590,1,
902684,3471,19,288,1, 90792356,861,1,2361,821,
902784,3472,5,9,1, 90801,2367,3481,16,0,
90282414,1580,1,2490,3473, 9081590,1,84,3482,19,
902916,0,286,1,2455, 9082387,1,84,3483,5,
90303474,16,0,286,1, 90839,1,2415,1591,1,
90312451,1589,1,2416,3475, 90842417,3484,16,0,385,
903216,0,286,1,2453, 90851,2456,3485,16,0,
90331595,1,2355,858,1, 9086385,1,2452,1600,1,
90342360,813,1,2366,3476, 90872454,1606,1,2491,3486,
903516,0,286,1,85, 908816,0,385,1,2356,
90363477,19,285,1,85, 9089861,1,2361,821,1,
90373478,5,9,1,2414, 90902367,3487,16,0,385,
90381580,1,2490,3479,16, 90911,85,3488,19,280,
90390,283,1,2455,3480, 90921,85,3489,5,9,
904016,0,283,1,2451, 90931,2415,1591,1,2417,
90411589,1,2416,3481,16, 90943490,16,0,278,1,
90420,283,1,2453,1595, 90952456,3491,16,0,278,
90431,2355,858,1,2360, 90961,2452,1600,1,2454,
9044813,1,2366,3482,16, 90971606,1,2491,3492,16,
90450,283,1,86,3483, 90980,278,1,2356,861,
904619,389,1,86,3484, 90991,2361,821,1,2367,
90475,9,1,2414,1580, 91003493,16,0,278,1,
90481,2490,3485,16,0, 910186,3494,19,277,1,
9049387,1,2455,3486,16, 910286,3495,5,9,1,
90500,387,1,2451,1589, 91032415,1591,1,2417,3496,
90511,2416,3487,16,0, 910416,0,275,1,2456,
9052387,1,2453,1595,1, 91053497,16,0,275,1,
90532355,858,1,2360,813, 91062452,1600,1,2454,1606,
90541,2366,3488,16,0, 91071,2491,3498,16,0,
9055387,1,87,3489,19, 9108275,1,2356,861,1,
9056281,1,87,3490,5, 91092361,821,1,2367,3499,
90579,1,2414,1580,1, 911016,0,275,1,87,
90582490,3491,16,0,279, 91113500,19,383,1,87,
90591,2455,3492,16,0, 91123501,5,9,1,2415,
9060279,1,2451,1589,1, 91131591,1,2417,3502,16,
90612416,3493,16,0,279, 91140,381,1,2456,3503,
90621,2453,1595,1,2355, 911516,0,381,1,2452,
9063858,1,2360,813,1, 91161600,1,2454,1606,1,
90642366,3494,16,0,279, 91172491,3504,16,0,381,
90651,88,3495,19,644, 91181,2356,861,1,2361,
90661,88,3496,5,9, 9119821,1,2367,3505,16,
90671,2414,1580,1,2490, 91200,381,1,88,3506,
90683497,16,0,642,1, 912119,273,1,88,3507,
90692455,3498,16,0,642, 91225,9,1,2415,1591,
90701,2451,1589,1,2416, 91231,2417,3508,16,0,
90713499,16,0,642,1, 9124271,1,2456,3509,16,
90722453,1595,1,2355,858, 91250,271,1,2452,1600,
90731,2360,813,1,2366, 91261,2454,1606,1,2491,
90743500,16,0,642,1, 91273510,16,0,271,1,
907589,3501,19,276,1, 91282356,861,1,2361,821,
907689,3502,5,9,1, 91291,2367,3511,16,0,
90772414,1580,1,2490,3503, 9130271,1,89,3512,19,
907816,0,274,1,2455, 9131376,1,89,3513,5,
90793504,16,0,274,1, 91329,1,2415,1591,1,
90802451,1589,1,2416,3505, 91332417,3514,16,0,374,
908116,0,274,1,2453, 91341,2456,3515,16,0,
90821595,1,2355,858,1, 9135374,1,2452,1600,1,
90832360,813,1,2366,3506, 91362454,1606,1,2491,3516,
908416,0,274,1,90, 913716,0,374,1,2356,
90853507,19,382,1,90, 9138861,1,2361,821,1,
90863508,5,9,1,2414, 91392367,3517,16,0,374,
90871580,1,2490,3509,16, 91401,90,3518,19,650,
90880,380,1,2455,3510, 91411,90,3519,5,9,
908916,0,380,1,2451, 91421,2415,1591,1,2417,
90901589,1,2416,3511,16, 91433520,16,0,648,1,
90910,380,1,2453,1595, 91442456,3521,16,0,648,
90921,2355,858,1,2360, 91451,2452,1600,1,2454,
9093813,1,2366,3512,16, 91461606,1,2491,3522,16,
90940,380,1,91,3513, 91470,648,1,2356,861,
909519,133,1,91,3514, 91481,2361,821,1,2367,
90965,121,1,0,3515, 91493523,16,0,648,1,
909716,0,558,1,1, 915091,3524,19,133,1,
90981904,1,2,1910,1, 915191,3525,5,121,1,
90993,1915,1,4,1920, 91520,3526,16,0,467,
91001,5,1925,1,6, 91531,1,1915,1,2,
91011930,1,7,1935,1, 91541921,1,3,1926,1,
91028,3516,16,0,131, 91554,1931,1,5,1936,
91031,1515,3517,16,0, 91561,6,1941,1,7,
9104165,1,2605,3098,1, 91571946,1,8,3527,16,
91052135,836,1,2021,707, 91580,131,1,1515,3528,
91061,2022,3518,16,0, 915916,0,165,1,2607,
9107501,1,256,3519,16, 91603137,1,2021,709,1,
91080,173,1,2025,3520, 91612022,3529,16,0,495,
910916,0,505,1,18, 91621,256,3530,16,0,
91103521,16,0,138,1, 9163173,1,2025,3531,16,
91112027,3522,16,0,509, 91640,499,1,18,3532,
91121,2029,714,1,2030, 916516,0,138,1,2027,
9113720,1,2031,725,1, 91663533,16,0,503,1,
91142032,730,1,2033,735, 91672029,716,1,2030,722,
91151,277,3523,16,0, 91681,2031,727,1,2032,
9116173,1,2035,741,1, 9169732,1,2033,737,1,
91172037,746,1,2039,751, 9170277,3534,16,0,173,
91181,32,3524,16,0, 91711,2035,743,1,2037,
9119165,1,2041,757,1, 9172748,1,2039,753,1,
91202043,762,1,2044,767, 917332,3535,16,0,165,
91211,2547,3126,1,2550, 91741,2041,759,1,2043,
91223525,16,0,173,1, 9175764,1,2045,769,1,
912341,3526,16,0,173, 91762548,3106,1,41,3536,
91241,1297,3527,16,0, 917716,0,173,1,1297,
9125165,1,43,3528,16, 91783537,16,0,165,1,
91260,173,1,1802,774, 917943,3538,16,0,173,
91271,46,3529,16,0, 91801,1802,777,1,46,
9128178,1,1804,3530,16, 91813539,16,0,178,1,
91290,165,1,299,3531, 91821804,3540,16,0,165,
913016,0,173,1,2309, 91831,299,3541,16,0,
91313532,16,0,165,1, 9184173,1,2310,3542,16,
913252,3533,16,0,165, 91850,165,1,52,3543,
91331,509,3534,16,0, 918616,0,165,1,509,
9134173,1,525,3535,16,
91350,173,1,62,3536,
913616,0,194,1,65,
91373537,16,0,196,1,
91382074,3538,16,0,165,
91391,1574,787,1,71,
91403539,16,0,173,1,
91411775,3540,16,0,165,
91421,76,3541,16,0,
9143173,1,1834,3542,16,
91440,165,1,2197,3543,
914516,0,165,1,79,
91463544,16,0,173,1, 91873544,16,0,173,1,
91471335,3545,16,0,165, 9188525,3545,16,0,173,
91481,322,3546,16,0, 91891,62,3546,16,0,
9149173,1,85,3547,16, 9190195,1,65,3547,16,
91500,173,1,1261,3548, 91910,197,1,2576,3125,
915116,0,165,1,89, 91921,2075,3548,16,0,
91523549,16,0,173,1, 9193165,1,1574,790,1,
9153346,3550,16,0,173, 919471,3549,16,0,173,
91541,2355,858,1,97, 91951,1775,3550,16,0,
91553551,16,0,173,1, 9196165,1,76,3551,16,
91562608,3109,1,2358,807, 91970,173,1,1834,3552,
91571,2360,813,1,102, 919816,0,165,1,2588,
91583552,16,0,173,1, 91993553,16,0,467,1,
91591860,820,1,2364,3553, 920079,3554,16,0,173,
916016,0,379,1,1113, 92011,1335,3555,16,0,
91613554,16,0,158,1, 9202165,1,322,3556,16,
9162112,3555,16,0,173, 92030,173,1,85,3557,
91631,1117,3556,16,0, 920416,0,173,1,1261,
9164165,1,1873,829,1, 92053558,16,0,165,1,
91651876,3557,16,0,165, 920689,3559,16,0,173,
91661,372,3558,16,0, 92071,346,3560,16,0,
9167539,1,374,3559,16, 9208173,1,2355,804,1,
91680,541,1,124,3560, 92092356,861,1,2106,3561,
916916,0,173,1,376, 921016,0,165,1,2609,
91703561,16,0,543,1, 92113120,1,2359,816,1,
9171378,3562,16,0,545, 92122361,821,1,1860,827,
91721,381,3563,16,0, 92131,2363,3142,1,2365,
9173173,1,137,3564,16, 92143562,16,0,267,1,
91740,173,1,1901,3565, 921597,3563,16,0,173,
917516,0,165,1,2575, 92161,1113,3564,16,0,
91763115,1,1153,3566,16, 9217158,1,112,3565,16,
91770,165,1,151,3567, 92180,173,1,1117,3566,
921916,0,165,1,1873,
9220836,1,102,3567,16,
92210,173,1,1876,3568,
922216,0,165,1,372,
92233569,16,0,533,1,
92242551,3570,16,0,173,
92251,374,3571,16,0,
9226535,1,124,3572,16,
92270,173,1,376,3573,
922816,0,537,1,378,
92293574,16,0,539,1,
92302136,845,1,381,3575,
923116,0,173,1,1585,
92323576,16,0,173,1,
9233137,3577,16,0,173,
92341,1901,3578,16,0,
9235165,1,1153,3579,16,
92360,165,1,151,3580,
917816,0,173,1,1407, 923716,0,173,1,1407,
91793568,16,0,165,1, 92383581,16,0,165,1,
91801659,3569,16,0,165, 92391659,3582,16,0,165,
91811,406,3570,16,0, 92401,406,3583,16,0,
9182173,1,2586,3132,1, 9241173,1,2587,3147,1,
91832587,3571,16,0,558, 92421371,3584,16,0,165,
91841,1371,3572,16,0, 92431,2105,810,1,166,
9185165,1,2104,801,1, 92443585,16,0,173,1,
91862105,3573,16,0,165, 92451622,3586,16,0,173,
91871,166,3574,16,0, 92461,1931,866,1,1933,
9188173,1,1622,3575,16, 92473587,16,0,165,1,
91890,173,1,2354,853, 92482606,3132,1,431,3588,
91901,1931,863,1,1933, 924916,0,173,1,2608,
91913576,16,0,165,1, 92503114,1,182,3589,16,
91922362,3137,1,2606,3121, 92510,173,1,1189,3590,
91931,2607,3104,1,1585, 925216,0,165,1,1443,
91943577,16,0,173,1, 92533591,16,0,165,1,
9195182,3578,16,0,173, 92541695,3592,16,0,165,
91961,1189,3579,16,0, 92551,2198,3593,16,0,
9197165,1,1443,3580,16, 9256165,1,447,3594,16,
91980,165,1,1695,3581, 92570,173,1,199,3595,
919916,0,165,1,431, 925816,0,173,1,1958,
92003582,16,0,173,1, 92593596,16,0,165,1,
9201447,3583,16,0,173, 92601657,883,1,459,3597,
92021,199,3584,16,0, 926116,0,173,1,462,
9203173,1,1958,3585,16, 92623598,16,0,173,1,
92040,165,1,1657,878, 9263217,3599,16,0,173,
92051,459,3586,16,0, 92641,2227,891,1,1225,
9206173,1,462,3587,16, 92653600,16,0,165,1,
92070,173,1,217,3588, 92661479,3601,16,0,165,
920816,0,173,1,2226, 92671,1731,3602,16,0,
9209886,1,1225,3589,16, 9268173,1,1989,899,1,
92100,165,1,1479,3590, 92691990,3603,16,0,165,
921116,0,165,1,1731, 92701,236,3604,16,0,
92123591,16,0,173,1, 9271173,1,1756,3605,16,
92131989,894,1,1990,3592, 92720,165,1,92,3606,
921416,0,165,1,236, 927319,627,1,92,3607,
92153593,16,0,173,1, 92745,91,1,256,3608,
92161756,3594,16,0,165, 927516,0,625,1,1261,
92171,92,3595,19,624, 92763609,16,0,625,1,
92181,92,3596,5,91, 9277509,3610,16,0,625,
92191,256,3597,16,0, 92781,1515,3611,16,0,
9220622,1,1261,3598,16, 9279625,1,2021,709,1,
92210,622,1,509,3599, 92801775,3612,16,0,625,
922216,0,622,1,2197, 92811,2029,716,1,2030,
92233600,16,0,622,1, 9282722,1,2031,727,1,
92241515,3601,16,0,622, 92832032,732,1,2033,737,
92251,2021,707,1,1775, 92841,277,3613,16,0,
92263602,16,0,622,1, 9285625,1,2035,743,1,
92272029,714,1,2030,720, 92862037,748,1,2039,753,
92281,2031,725,1,2032, 92871,32,3614,16,0,
9229730,1,2033,735,1, 9288625,1,2041,759,1,
9230277,3603,16,0,622, 92892043,764,1,2045,769,
92311,2035,741,1,2037, 92901,41,3615,16,0,
9232746,1,2039,751,1, 9291625,1,1297,3616,16,
923332,3604,16,0,622, 92920,625,1,43,3617,
92341,2041,757,1,2043, 929316,0,625,1,1802,
9235762,1,2044,767,1, 9294777,1,1804,3618,16,
92362550,3605,16,0,622, 92950,625,1,299,3619,
92371,41,3606,16,0, 929616,0,625,1,2310,
9238622,1,1297,3607,16, 92973620,16,0,625,1,
92390,622,1,43,3608, 929852,3621,16,0,625,
924016,0,622,1,1802, 92991,525,3622,16,0,
9241774,1,1804,3609,16, 9300625,1,62,3623,16,
92420,622,1,299,3610, 93010,625,1,2075,3624,
924316,0,622,1,2309, 930216,0,625,1,1574,
92443611,16,0,622,1, 9303790,1,71,3625,16,
924552,3612,16,0,622, 93040,625,1,76,3626,
92461,525,3613,16,0, 930516,0,625,1,1834,
9247622,1,62,3614,16, 93063627,16,0,625,1,
92480,622,1,2074,3615, 930779,3628,16,0,625,
924916,0,622,1,1574, 93081,1335,3629,16,0,
9250787,1,71,3616,16, 9309625,1,322,3630,16,
92510,622,1,76,3617, 93100,625,1,85,3631,
925216,0,622,1,1834, 931116,0,625,1,89,
92533618,16,0,622,1, 93123632,16,0,625,1,
92541585,3619,16,0,622, 9313346,3633,16,0,625,
92551,1335,3620,16,0, 93141,2355,804,1,2105,
9256622,1,79,3621,16, 9315810,1,2106,3634,16,
92570,622,1,85,3622, 93160,625,1,2359,816,
925816,0,622,1,89, 93171,2361,821,1,1860,
92593623,16,0,622,1, 9318827,1,97,3635,16,
9260346,3624,16,0,622, 93190,625,1,112,3636,
92611,2104,801,1,2105, 932016,0,625,1,1117,
92623625,16,0,622,1, 93213637,16,0,625,1,
92632358,807,1,2360,813, 93221873,836,1,102,3638,
92641,97,3626,16,0, 932316,0,625,1,1876,
9265622,1,1860,820,1, 93243639,16,0,625,1,
9266102,3627,16,0,622, 93252551,3640,16,0,625,
92671,112,3628,16,0, 93261,124,3641,16,0,
9268622,1,1117,3629,16, 9327625,1,2136,845,1,
92690,622,1,1873,829, 9328381,3642,16,0,625,
92701,1876,3630,16,0, 93291,137,3643,16,0,
9271622,1,124,3631,16, 9330625,1,1901,3644,16,
92720,622,1,2135,836, 93310,625,1,1153,3645,
92731,381,3632,16,0, 933216,0,625,1,151,
9274622,1,322,3633,16, 93333646,16,0,625,1,
92750,622,1,137,3634, 93341407,3647,16,0,625,
927616,0,622,1,1901, 93351,1659,3648,16,0,
92773635,16,0,622,1, 9336625,1,406,3649,16,
92781153,3636,16,0,622, 93370,625,1,1371,3650,
92791,151,3637,16,0, 933816,0,625,1,166,
9280622,1,1407,3638,16, 93393651,16,0,625,1,
92810,622,1,1659,3639, 93401622,3652,16,0,625,
928216,0,622,1,406, 93411,2356,861,1,1931,
92833640,16,0,622,1, 9342866,1,1933,3653,16,
92841371,3641,16,0,622, 93430,625,1,431,3654,
92851,166,3642,16,0, 934416,0,625,1,1585,
9286622,1,1622,3643,16, 93453655,16,0,625,1,
92870,622,1,2354,853, 9346182,3656,16,0,625,
92881,2355,858,1,1931, 93471,1189,3657,16,0,
9289863,1,1933,3644,16, 9348625,1,1443,3658,16,
92900,622,1,431,3645, 93490,625,1,1695,3659,
929116,0,622,1,182, 935016,0,625,1,2198,
92923646,16,0,622,1, 93513660,16,0,625,1,
92931189,3647,16,0,622, 9352447,3661,16,0,625,
92941,1443,3648,16,0, 93531,199,3662,16,0,
9295622,1,1695,3649,16, 9354625,1,1958,3663,16,
92960,622,1,447,3650, 93550,625,1,1657,883,
93561,459,3664,16,0,
9357625,1,462,3665,16,
93580,625,1,217,3666,
935916,0,625,1,2227,
9360891,1,1225,3667,16,
93610,625,1,1479,3668,
936216,0,625,1,1731,
93633669,16,0,625,1,
93641989,899,1,1990,3670,
936516,0,625,1,236,
93663671,16,0,625,1,
93671756,3672,16,0,625,
93681,93,3673,19,624,
93691,93,3674,5,91,
93701,256,3675,16,0,
9371622,1,1261,3676,16,
93720,622,1,509,3677,
937316,0,622,1,1515,
93743678,16,0,622,1,
93752021,709,1,1775,3679,
937616,0,622,1,2029,
9377716,1,2030,722,1,
93782031,727,1,2032,732,
93791,2033,737,1,277,
93803680,16,0,622,1,
93812035,743,1,2037,748,
93821,2039,753,1,32,
93833681,16,0,622,1,
93842041,759,1,2043,764,
93851,2045,769,1,41,
93863682,16,0,622,1,
93871297,3683,16,0,622,
93881,43,3684,16,0,
9389622,1,1802,777,1,
93901804,3685,16,0,622,
93911,299,3686,16,0,
9392622,1,2310,3687,16,
93930,622,1,52,3688,
939416,0,622,1,525,
93953689,16,0,622,1,
939662,3690,16,0,622,
93971,2075,3691,16,0,
9398622,1,1574,790,1,
939971,3692,16,0,622,
94001,76,3693,16,0,
9401622,1,1834,3694,16,
94020,622,1,79,3695,
940316,0,622,1,1335,
94043696,16,0,622,1,
9405322,3697,16,0,622,
94061,85,3698,16,0,
9407622,1,89,3699,16,
94080,622,1,346,3700,
940916,0,622,1,2355,
9410804,1,2105,810,1,
94112106,3701,16,0,622,
94121,2359,816,1,2361,
9413821,1,1860,827,1,
941497,3702,16,0,622,
94151,112,3703,16,0,
9416622,1,1117,3704,16,
94170,622,1,1873,836,
94181,102,3705,16,0,
9419622,1,1876,3706,16,
94200,622,1,2551,3707,
942116,0,622,1,124,
94223708,16,0,622,1,
94232136,845,1,381,3709,
942416,0,622,1,137,
94253710,16,0,622,1,
94261901,3711,16,0,622,
94271,1153,3712,16,0,
9428622,1,151,3713,16,
94290,622,1,1407,3714,
943016,0,622,1,1659,
94313715,16,0,622,1,
9432406,3716,16,0,622,
94331,1371,3717,16,0,
9434622,1,166,3718,16,
94350,622,1,1622,3719,
943616,0,622,1,2356,
9437861,1,1931,866,1,
94381933,3720,16,0,622,
94391,431,3721,16,0,
9440622,1,1585,3722,16,
94410,622,1,182,3723,
944216,0,622,1,1189,
94433724,16,0,622,1,
94441443,3725,16,0,622,
94451,1695,3726,16,0,
9446622,1,2198,3727,16,
94470,622,1,447,3728,
929716,0,622,1,199, 944816,0,622,1,199,
92983651,16,0,622,1, 94493729,16,0,622,1,
92991958,3652,16,0,622, 94501958,3730,16,0,622,
93001,1657,878,1,459, 94511,1657,883,1,459,
93013653,16,0,622,1, 94523731,16,0,622,1,
9302462,3654,16,0,622, 9453462,3732,16,0,622,
93031,217,3655,16,0, 94541,217,3733,16,0,
9304622,1,2226,886,1, 9455622,1,2227,891,1,
93051225,3656,16,0,622, 94561225,3734,16,0,622,
93061,1479,3657,16,0, 94571,1479,3735,16,0,
9307622,1,1731,3658,16, 9458622,1,1731,3736,16,
93080,622,1,1989,894, 94590,622,1,1989,899,
93091,1990,3659,16,0, 94601,1990,3737,16,0,
9310622,1,236,3660,16, 9461622,1,236,3738,16,
93110,622,1,1756,3661, 94620,622,1,1756,3739,
931216,0,622,1,93, 946316,0,622,1,94,
93133662,19,621,1,93, 94643740,19,621,1,94,
93143663,5,91,1,256, 94653741,5,91,1,256,
93153664,16,0,619,1, 94663742,16,0,619,1,
93161261,3665,16,0,619, 94671261,3743,16,0,619,
93171,509,3666,16,0, 94681,509,3744,16,0,
9318619,1,2197,3667,16, 9469619,1,1515,3745,16,
93190,619,1,1515,3668, 94700,619,1,2021,709,
932016,0,619,1,2021, 94711,1775,3746,16,0,
9321707,1,1775,3669,16, 9472619,1,2029,716,1,
93220,619,1,2029,714, 94732030,722,1,2031,727,
93231,2030,720,1,2031, 94741,2032,732,1,2033,
9324725,1,2032,730,1, 9475737,1,277,3747,16,
93252033,735,1,277,3670, 94760,619,1,2035,743,
932616,0,619,1,2035, 94771,2037,748,1,2039,
9327741,1,2037,746,1, 9478753,1,32,3748,16,
93282039,751,1,32,3671, 94790,619,1,2041,759,
932916,0,619,1,2041, 94801,2043,764,1,2045,
9330757,1,2043,762,1, 9481769,1,41,3749,16,
93312044,767,1,2550,3672, 94820,619,1,1297,3750,
933216,0,619,1,41, 948316,0,619,1,43,
93333673,16,0,619,1, 94843751,16,0,619,1,
93341297,3674,16,0,619, 94851802,777,1,1804,3752,
93351,43,3675,16,0, 948616,0,619,1,299,
9336619,1,1802,774,1, 94873753,16,0,619,1,
93371804,3676,16,0,619, 94882310,3754,16,0,619,
93381,299,3677,16,0, 94891,52,3755,16,0,
9339619,1,2309,3678,16, 9490619,1,525,3756,16,
93400,619,1,52,3679, 94910,619,1,62,3757,
934116,0,619,1,525, 949216,0,619,1,2075,
93423680,16,0,619,1, 94933758,16,0,619,1,
934362,3681,16,0,619, 94941574,790,1,71,3759,
93441,2074,3682,16,0, 949516,0,619,1,76,
9345619,1,1574,787,1, 94963760,16,0,619,1,
934671,3683,16,0,619, 94971834,3761,16,0,619,
93471,76,3684,16,0, 94981,79,3762,16,0,
9348619,1,1834,3685,16, 9499619,1,1335,3763,16,
93490,619,1,1585,3686, 95000,619,1,322,3764,
935016,0,619,1,1335, 950116,0,619,1,85,
93513687,16,0,619,1, 95023765,16,0,619,1,
935279,3688,16,0,619, 950389,3766,16,0,619,
93531,85,3689,16,0, 95041,346,3767,16,0,
9354619,1,89,3690,16, 9505619,1,2355,804,1,
93550,619,1,346,3691, 95062105,810,1,2106,3768,
935616,0,619,1,2104, 950716,0,619,1,2359,
9357801,1,2105,3692,16, 9508816,1,2361,821,1,
93580,619,1,2358,807, 95091860,827,1,97,3769,
93591,2360,813,1,97,
93603693,16,0,619,1,
93611860,820,1,102,3694,
936216,0,619,1,112, 951016,0,619,1,112,
93633695,16,0,619,1, 95113770,16,0,619,1,
93641117,3696,16,0,619, 95121117,3771,16,0,619,
93651,1873,829,1,1876, 95131,1873,836,1,102,
93663697,16,0,619,1, 95143772,16,0,619,1,
9367124,3698,16,0,619, 95151876,3773,16,0,619,
93681,2135,836,1,381, 95161,2551,3774,16,0,
93693699,16,0,619,1, 9517619,1,124,3775,16,
9370322,3700,16,0,619, 95180,619,1,2136,845,
93711,137,3701,16,0, 95191,381,3776,16,0,
9372619,1,1901,3702,16, 9520619,1,137,3777,16,
93730,619,1,1153,3703, 95210,619,1,1901,3778,
937416,0,619,1,151, 952216,0,619,1,1153,
93753704,16,0,619,1, 95233779,16,0,619,1,
93761407,3705,16,0,619, 9524151,3780,16,0,619,
93771,1659,3706,16,0, 95251,1407,3781,16,0,
9378619,1,406,3707,16, 9526619,1,1659,3782,16,
93790,619,1,1371,3708, 95270,619,1,406,3783,
938016,0,619,1,166, 952816,0,619,1,1371,
93813709,16,0,619,1, 95293784,16,0,619,1,
93821622,3710,16,0,619, 9530166,3785,16,0,619,
93831,2354,853,1,2355, 95311,1622,3786,16,0,
9384858,1,1931,863,1, 9532619,1,2356,861,1,
93851933,3711,16,0,619, 95331931,866,1,1933,3787,
93861,431,3712,16,0, 953416,0,619,1,431,
9387619,1,182,3713,16, 95353788,16,0,619,1,
93880,619,1,1189,3714, 95361585,3789,16,0,619,
938916,0,619,1,1443, 95371,182,3790,16,0,
93903715,16,0,619,1, 9538619,1,1189,3791,16,
93911695,3716,16,0,619, 95390,619,1,1443,3792,
93921,447,3717,16,0, 954016,0,619,1,1695,
9393619,1,199,3718,16, 95413793,16,0,619,1,
93940,619,1,1958,3719, 95422198,3794,16,0,619,
95431,447,3795,16,0,
9544619,1,199,3796,16,
95450,619,1,1958,3797,
939516,0,619,1,1657, 954616,0,619,1,1657,
9396878,1,459,3720,16, 9547883,1,459,3798,16,
93970,619,1,462,3721, 95480,619,1,462,3799,
939816,0,619,1,217, 954916,0,619,1,217,
93993722,16,0,619,1, 95503800,16,0,619,1,
94002226,886,1,1225,3723, 95512227,891,1,1225,3801,
940116,0,619,1,1479, 955216,0,619,1,1479,
94023724,16,0,619,1, 95533802,16,0,619,1,
94031731,3725,16,0,619, 95541731,3803,16,0,619,
94041,1989,894,1,1990, 95551,1989,899,1,1990,
94053726,16,0,619,1, 95563804,16,0,619,1,
9406236,3727,16,0,619, 9557236,3805,16,0,619,
94071,1756,3728,16,0, 95581,1756,3806,16,0,
9408619,1,94,3729,19, 9559619,1,95,3807,19,
9409618,1,94,3730,5, 9560103,1,95,3808,5,
941091,1,256,3731,16, 95611,1,0,3809,16,
94110,616,1,1261,3732, 95620,104,1,96,3810,
941216,0,616,1,509, 956319,586,1,96,3811,
94133733,16,0,616,1, 95645,1,1,0,3812,
94142197,3734,16,0,616, 956516,0,584,1,97,
94151,1515,3735,16,0, 95663813,19,635,1,97,
9416616,1,2021,707,1, 95673814,5,2,1,0,
94171775,3736,16,0,616, 95683815,16,0,663,1,
94181,2029,714,1,2030, 95692588,3816,16,0,633,
9419720,1,2031,725,1, 95701,98,3817,19,561,
94202032,730,1,2033,735, 95711,98,3818,5,2,
94211,277,3737,16,0, 95721,0,3819,16,0,
9422616,1,2035,741,1, 9573605,1,2588,3820,16,
94232037,746,1,2039,751, 95740,559,1,99,3821,
94241,32,3738,16,0, 957519,458,1,99,3822,
9425616,1,2041,757,1, 95765,2,1,0,3823,
94262043,762,1,2044,767, 957716,0,456,1,2588,
94271,2550,3739,16,0, 95783824,16,0,469,1,
9428616,1,41,3740,16, 9579100,3825,19,465,1,
94290,616,1,1297,3741, 9580100,3826,5,4,1,
943016,0,616,1,43, 95810,3827,16,0,551,
94313742,16,0,616,1, 95821,2599,3828,16,0,
94321802,774,1,1804,3743, 9583463,1,2588,3829,16,
943316,0,616,1,299, 95840,551,1,2529,3830,
94343744,16,0,616,1, 958516,0,463,1,101,
94352309,3745,16,0,616, 95863831,19,442,1,101,
94361,52,3746,16,0, 95873832,5,2,1,2367,
9437616,1,525,3747,16, 95883833,16,0,440,1,
94380,616,1,62,3748, 95892456,3834,16,0,484,
943916,0,616,1,2074, 95901,102,3835,19,391,
94403749,16,0,616,1, 95911,102,3836,5,4,
94411574,787,1,71,3750, 95921,2367,3837,16,0,
944216,0,616,1,76, 9593393,1,2456,3838,16,
94433751,16,0,616,1, 95940,393,1,2491,3839,
94441834,3752,16,0,616, 959516,0,389,1,2417,
94451,1585,3753,16,0, 95963840,16,0,389,1,
9446616,1,1335,3754,16, 9597103,3841,19,141,1,
94470,616,1,79,3755, 9598103,3842,5,3,1,
944816,0,616,1,85, 95992402,3843,16,0,483,
94493756,16,0,616,1, 96001,2535,3844,16,0,
945089,3757,16,0,616, 9601470,1,10,3845,16,
94511,346,3758,16,0, 96020,139,1,104,3846,
9452616,1,2104,801,1, 960319,151,1,104,3847,
94532105,3759,16,0,616, 96045,16,1,0,3848,
94541,2358,807,1,2360, 960516,0,632,1,2075,
9455813,1,97,3760,16, 96063849,16,0,642,1,
94560,616,1,1860,820, 960710,3850,16,0,263,
94571,102,3761,16,0, 96081,1901,3851,16,0,
9458616,1,112,3762,16, 9609642,1,2198,3852,16,
94590,616,1,1117,3763, 96100,642,1,2310,3853,
946016,0,616,1,1873, 961116,0,642,1,2535,
9461829,1,1876,3764,16, 96123854,16,0,263,1,
94620,616,1,124,3765, 961321,3855,16,0,149,
946316,0,616,1,2135, 96141,2106,3856,16,0,
9464836,1,381,3766,16, 9615642,1,1958,3857,16,
94650,616,1,322,3767, 96160,642,1,1804,3858,
946616,0,616,1,137, 961716,0,642,1,1990,
94673768,16,0,616,1, 96183859,16,0,642,1,
94681901,3769,16,0,616, 961932,3860,16,0,642,
94691,1153,3770,16,0, 96201,2402,3861,16,0,
9470616,1,151,3771,16, 9621263,1,2588,3862,16,
94710,616,1,1407,3772, 96220,632,1,1775,3863,
947216,0,616,1,1659, 962316,0,642,1,105,
94733773,16,0,616,1, 96243864,19,130,1,105,
9474406,3774,16,0,616, 96253865,5,17,1,0,
94751,1371,3775,16,0, 96263866,16,0,128,1,
9476616,1,166,3776,16, 96272075,3867,16,0,137,
94770,616,1,1622,3777, 96281,10,3868,16,0,
947816,0,616,1,2354, 9629137,1,2198,3869,16,
9479853,1,2355,858,1, 96300,137,1,1901,3870,
94801931,863,1,1933,3778, 963116,0,137,1,52,
948116,0,616,1,431, 96323871,16,0,193,1,
94823779,16,0,616,1, 96332310,3872,16,0,137,
9483182,3780,16,0,616, 96341,2535,3873,16,0,
94841,1189,3781,16,0, 9635137,1,21,3874,16,
9485616,1,1443,3782,16, 96360,137,1,2106,3875,
94860,616,1,1695,3783, 963716,0,137,1,1958,
948716,0,616,1,447, 96383876,16,0,137,1,
94883784,16,0,616,1, 96391804,3877,16,0,137,
9489199,3785,16,0,616, 96401,1990,3878,16,0,
94901,1958,3786,16,0, 9641137,1,32,3879,16,
9491616,1,1657,878,1, 96420,137,1,2402,3880,
9492459,3787,16,0,616, 964316,0,137,1,2588,
94931,462,3788,16,0, 96443881,16,0,128,1,
9494616,1,217,3789,16, 96451775,3882,16,0,137,
94950,616,1,2226,886, 96461,106,3883,19,348,
94961,1225,3790,16,0, 96471,106,3884,5,4,
9497616,1,1479,3791,16, 96481,2367,3885,16,0,
94980,616,1,1731,3792, 9649346,1,2456,3886,16,
949916,0,616,1,1989, 96500,346,1,2491,3887,
9500894,1,1990,3793,16, 965116,0,346,1,2417,
95010,616,1,236,3794, 96523888,16,0,346,1,
950216,0,616,1,1756, 9653107,3889,19,262,1,
95033795,16,0,616,1, 9654107,3890,5,13,1,
950495,3796,19,103,1, 96552075,3891,16,0,504,
950595,3797,5,1,1, 96561,2413,3892,16,0,
95060,3798,16,0,104, 9657355,1,1901,3893,16,
95071,96,3799,19,647, 96580,504,1,2198,3894,
95081,96,3800,5,1, 965916,0,504,1,2310,
95091,0,3801,16,0, 96603895,16,0,504,1,
9510645,1,97,3802,19, 96612106,3896,16,0,504,
9511605,1,97,3803,5, 96621,1804,3897,16,0,
95122,1,0,3804,16, 9663504,1,1990,3898,16,
95130,603,1,2587,3805, 96640,504,1,2546,3899,
951416,0,630,1,98, 966516,0,475,1,31,
95153806,19,357,1,98, 96663900,16,0,260,1,
95163807,5,2,1,0, 966732,3901,16,0,504,
95173808,16,0,481,1, 96681,1958,3902,16,0,
95182587,3809,16,0,355, 9669504,1,1775,3903,16,
95191,99,3810,19,474, 96700,504,1,108,3904,
95201,99,3811,5,2, 967119,309,1,108,3905,
95211,0,3812,16,0, 96725,1,1,32,3906,
9522472,1,2587,3813,16, 967316,0,307,1,109,
95230,652,1,100,3814, 96743907,19,251,1,109,
952419,466,1,100,3815, 96753908,5,10,1,2075,
95255,4,1,0,3816, 96763909,16,0,575,1,
952616,0,464,1,2587, 96771901,3910,16,0,433,
95273817,16,0,464,1, 96781,2198,3911,16,0,
95282598,3818,16,0,609, 9679373,1,2310,3912,16,
95291,2528,3819,16,0, 96800,249,1,2106,3913,
9530609,1,101,3820,19, 968116,0,609,1,1804,
9531491,1,101,3821,5, 96823914,16,0,318,1,
95322,1,2366,3822,16, 96831990,3915,16,0,490,
95330,492,1,2455,3823, 96841,32,3916,16,0,
953416,0,489,1,102, 9685370,1,1958,3917,16,
95353824,19,398,1,102, 96860,471,1,1775,3918,
95363825,5,4,1,2366, 968716,0,256,1,110,
95373826,16,0,396,1, 96883919,19,581,1,110,
95382455,3827,16,0,396, 96893920,5,10,1,2075,
95391,2490,3828,16,0, 96903921,16,0,579,1,
9540460,1,2416,3829,16, 96911901,3922,16,0,579,
95410,460,1,103,3830, 96921,2198,3923,16,0,
954219,141,1,103,3831, 9693579,1,2310,3924,16,
95435,3,1,2401,3832, 96940,579,1,2106,3925,
954416,0,437,1,2534, 969516,0,579,1,1804,
95453833,16,0,475,1, 96963926,16,0,579,1,
954610,3834,16,0,139, 96971990,3927,16,0,579,
95471,104,3835,19,151, 96981,32,3928,16,0,
95481,104,3836,5,16, 9699579,1,1958,3929,16,
95491,0,3837,16,0, 97000,579,1,1775,3930,
9550482,1,2074,3838,16, 970116,0,579,1,111,
95510,637,1,2587,3839, 97023931,19,639,1,111,
955216,0,482,1,10, 97033932,5,10,1,2075,
95533840,16,0,266,1, 97043933,16,0,637,1,
95542197,3841,16,0,637, 97051901,3934,16,0,637,
95551,1901,3842,16,0, 97061,2198,3935,16,0,
9556637,1,2309,3843,16, 9707637,1,2310,3936,16,
95570,637,1,2534,3844, 97080,637,1,2106,3937,
955816,0,266,1,21, 970916,0,637,1,1804,
95593845,16,0,149,1, 97103938,16,0,637,1,
95602105,3846,16,0,637, 97111990,3939,16,0,637,
95611,1804,3847,16,0, 97121,32,3940,16,0,
9562637,1,1990,3848,16, 9713637,1,1958,3941,16,
95630,637,1,32,3849, 97140,637,1,1775,3942,
956416,0,637,1,2401, 971516,0,637,1,112,
95653850,16,0,266,1, 97163943,19,161,1,112,
95661958,3851,16,0,637, 97173944,5,29,1,1479,
95671,1775,3852,16,0, 97183945,16,0,557,1,
9568637,1,105,3853,19, 97192075,3946,16,0,641,
9569130,1,105,3854,5, 97201,1695,3947,16,0,
957017,1,0,3855,16, 9721189,1,1756,3948,16,
95710,128,1,2074,3856, 97220,188,1,2198,3949,
957216,0,137,1,2587, 972316,0,641,1,2310,
95733857,16,0,128,1, 97243950,16,0,641,1,
95742105,3858,16,0,137, 97251876,3951,16,0,653,
95751,10,3859,16,0, 97261,1659,3952,16,0,
9576137,1,2197,3860,16, 9727188,1,1443,3953,16,
95770,137,1,1901,3861, 97280,520,1,1117,3954,
957816,0,137,1,2309, 972916,0,159,1,1990,
95793862,16,0,137,1, 97303955,16,0,641,1,
958052,3863,16,0,192, 97311189,3956,16,0,235,
95811,21,3864,16,0, 97321,1775,3957,16,0,
9582137,1,2534,3865,16, 9733641,1,32,3958,16,
95830,137,1,1804,3866, 97340,641,1,2106,3959,
958416,0,137,1,1990, 973516,0,641,1,1515,
95853867,16,0,137,1, 97363960,16,0,577,1,
958632,3868,16,0,137, 97371901,3961,16,0,641,
95871,2401,3869,16,0, 97381,52,3962,16,0,
9588137,1,1958,3870,16, 9739593,1,1804,3963,16,
95890,137,1,1775,3871, 97400,641,1,1261,3964,
959016,0,137,1,106, 974116,0,350,1,1153,
95913872,19,432,1,106, 97423965,16,0,242,1,
95923873,5,4,1,2366, 97431225,3966,16,0,281,
95933874,16,0,430,1, 97441,1335,3967,16,0,
95942455,3875,16,0,430, 9745455,1,1933,3968,16,
95951,2490,3876,16,0, 97460,562,1,1834,3969,
9596430,1,2416,3877,16, 974716,0,365,1,1297,
95970,430,1,107,3878, 97483970,16,0,380,1,
959819,224,1,107,3879, 97491407,3971,16,0,569,
95995,13,1,2074,3880, 97501,1958,3972,16,0,
960016,0,510,1,2412, 9751641,1,1371,3973,16,
96013881,16,0,363,1, 97520,450,1,113,3974,
96022197,3882,16,0,510, 975319,529,1,113,3975,
96031,1901,3883,16,0, 97545,10,1,2075,3976,
9604510,1,2309,3884,16, 975516,0,527,1,1901,
96050,510,1,1990,3885, 97563977,16,0,527,1,
960616,0,510,1,1804, 97572198,3978,16,0,527,
96073886,16,0,510,1, 97581,2310,3979,16,0,
96082545,3887,16,0,222, 9759527,1,2106,3980,16,
96091,31,3888,16,0, 97600,527,1,1804,3981,
9610265,1,32,3889,16, 976116,0,527,1,1990,
96110,510,1,2105,3890, 97623982,16,0,527,1,
961216,0,510,1,1958, 976332,3983,16,0,527,
96133891,16,0,510,1, 97641,1958,3984,16,0,
96141775,3892,16,0,510, 9765527,1,1775,3985,16,
96151,108,3893,19,314, 97660,527,1,114,3986,
96161,108,3894,5,1, 976719,525,1,114,3987,
96171,32,3895,16,0, 97685,10,1,2075,3988,
9618312,1,109,3896,19, 976916,0,523,1,1901,
9619255,1,109,3897,5, 97703989,16,0,523,1,
962010,1,2074,3898,16, 97712198,3990,16,0,523,
96210,578,1,2197,3899, 97721,2310,3991,16,0,
962216,0,661,1,1901, 9773523,1,2106,3992,16,
96233900,16,0,438,1, 97740,523,1,1804,3993,
96242309,3901,16,0,253, 977516,0,523,1,1990,
96251,1804,3902,16,0, 97763994,16,0,523,1,
9626326,1,1990,3903,16, 977732,3995,16,0,523,
96270,498,1,32,3904, 97781,1958,3996,16,0,
962816,0,450,1,2105, 9779523,1,1775,3997,16,
96293905,16,0,651,1, 97800,523,1,115,3998,
96301958,3906,16,0,477, 978119,573,1,115,3999,
96311,1775,3907,16,0, 97825,10,1,2075,4000,
9632260,1,110,3908,19, 978316,0,571,1,1901,
9633634,1,110,3909,5, 97844001,16,0,571,1,
963410,1,2074,3910,16, 97852198,4002,16,0,571,
96350,632,1,2197,3911, 97861,2310,4003,16,0,
963616,0,632,1,1901, 9787571,1,2106,4004,16,
96373912,16,0,632,1, 97880,571,1,1804,4005,
96382309,3913,16,0,632, 978916,0,571,1,1990,
96391,1804,3914,16,0, 97904006,16,0,571,1,
9640632,1,1990,3915,16, 979132,4007,16,0,571,
96410,632,1,32,3916, 97921,1958,4008,16,0,
964216,0,632,1,2105, 9793571,1,1775,4009,16,
96433917,16,0,632,1, 97940,571,1,116,4010,
96441958,3918,16,0,632, 979519,519,1,116,4011,
96451,1775,3919,16,0, 97965,10,1,2075,4012,
9646632,1,111,3920,19, 979716,0,517,1,1901,
9647161,1,111,3921,5, 97984013,16,0,517,1,
964829,1,1479,3922,16, 97992198,4014,16,0,517,
96490,563,1,2074,3923, 98001,2310,4015,16,0,
965016,0,636,1,1695, 9801517,1,2106,4016,16,
96513924,16,0,188,1, 98020,517,1,1804,4017,
96521756,3925,16,0,252, 980316,0,517,1,1990,
96531,2197,3926,16,0, 98044018,16,0,517,1,
9654636,1,2309,3927,16, 980532,4019,16,0,517,
96550,636,1,1876,3928, 98061,1958,4020,16,0,
965616,0,237,1,1659, 9807517,1,1775,4021,16,
96573929,16,0,252,1, 98080,517,1,117,4022,
96581443,3930,16,0,526, 980919,516,1,117,4023,
96591,1117,3931,16,0, 98105,10,1,2075,4024,
9660159,1,1990,3932,16, 981116,0,514,1,1901,
96610,636,1,1189,3933, 98124025,16,0,514,1,
966216,0,238,1,1775, 98132198,4026,16,0,514,
96633934,16,0,636,1, 98141,2310,4027,16,0,
966432,3935,16,0,636, 9815514,1,2106,4028,16,
96651,2105,3936,16,0, 98160,514,1,1804,4029,
9666636,1,1515,3937,16, 981716,0,514,1,1990,
96670,580,1,1901,3938, 98184030,16,0,514,1,
966816,0,636,1,52, 981932,4031,16,0,514,
96693939,16,0,591,1, 98201,1958,4032,16,0,
96701804,3940,16,0,636, 9821514,1,1775,4033,16,
96711,1261,3941,16,0, 98220,514,1,118,4034,
9672358,1,1153,3942,16, 982319,513,1,118,4035,
96730,245,1,1225,3943, 98245,10,1,2075,4036,
967416,0,289,1,1335, 982516,0,511,1,1901,
96753944,16,0,459,1, 98264037,16,0,511,1,
96761933,3945,16,0,565, 98272198,4038,16,0,511,
96771,1834,3946,16,0, 98281,2310,4039,16,0,
9678373,1,1297,3947,16, 9829511,1,2106,4040,16,
96790,386,1,1407,3948, 98300,511,1,1804,4041,
968016,0,572,1,1958, 983116,0,511,1,1990,
96813949,16,0,636,1, 98324042,16,0,511,1,
96821371,3950,16,0,453, 983332,4043,16,0,511,
96831,112,3951,19,535, 98341,1958,4044,16,0,
96841,112,3952,5,10, 9835511,1,1775,4045,16,
96851,2074,3953,16,0, 98360,511,1,119,4046,
9686533,1,2197,3954,16, 983719,510,1,119,4047,
96870,533,1,1901,3955, 98385,10,1,2075,4048,
968816,0,533,1,2309, 983916,0,508,1,1901,
96893956,16,0,533,1, 98404049,16,0,508,1,
96901804,3957,16,0,533, 98412198,4050,16,0,508,
96911,1990,3958,16,0, 98421,2310,4051,16,0,
9692533,1,32,3959,16, 9843508,1,2106,4052,16,
96930,533,1,2105,3960, 98440,508,1,1804,4053,
969416,0,533,1,1958, 984516,0,508,1,1990,
96953961,16,0,533,1, 98464054,16,0,508,1,
96961775,3962,16,0,533, 984732,4055,16,0,508,
96971,113,3963,19,531, 98481,1958,4056,16,0,
96981,113,3964,5,10, 9849508,1,1775,4057,16,
96991,2074,3965,16,0, 98500,508,1,120,4058,
9700529,1,2197,3966,16, 985119,507,1,120,4059,
97010,529,1,1901,3967, 98525,10,1,2075,4060,
970216,0,529,1,2309, 985316,0,505,1,1901,
97033968,16,0,529,1, 98544061,16,0,505,1,
97041804,3969,16,0,529, 98552198,4062,16,0,505,
97051,1990,3970,16,0, 98561,2310,4063,16,0,
9706529,1,32,3971,16, 9857505,1,2106,4064,16,
97070,529,1,2105,3972, 98580,505,1,1804,4065,
970816,0,529,1,1958, 985916,0,505,1,1990,
97093973,16,0,529,1, 98604066,16,0,505,1,
97101775,3974,16,0,529, 986132,4067,16,0,505,
97111,114,3975,19,576, 98621,1958,4068,16,0,
97121,114,3976,5,10, 9863505,1,1775,4069,16,
97131,2074,3977,16,0, 98640,505,1,121,4070,
9714574,1,2197,3978,16, 986519,147,1,121,4071,
97150,574,1,1901,3979, 98665,2,1,1756,4072,
971616,0,574,1,2309, 986716,0,314,1,1659,
97173980,16,0,574,1, 98684073,16,0,145,1,
97181804,3981,16,0,574, 9869122,4074,19,549,1,
97191,1990,3982,16,0, 9870122,4075,5,65,1,
9720574,1,32,3983,16, 98711479,4076,16,0,547,
97210,574,1,2105,3984, 98721,112,4077,16,0,
972216,0,574,1,1958, 9873547,1,2075,4078,16,
97233985,16,0,574,1, 98740,547,1,1804,4079,
97241775,3986,16,0,574, 987516,0,547,1,431,
97251,115,3987,19,525, 98764080,16,0,547,1,
97261,115,3988,5,10, 98771443,4081,16,0,547,
97271,2074,3989,16,0, 98781,1756,4082,16,0,
9728523,1,2197,3990,16, 9879547,1,124,4083,16,
97290,523,1,1901,3991, 98800,547,1,525,4084,
973016,0,523,1,2309, 988116,0,547,1,236,
97313992,16,0,523,1, 98824085,16,0,547,1,
97321804,3993,16,0,523, 9883346,4086,16,0,547,
97331,1990,3994,16,0, 98841,2310,4087,16,0,
9734523,1,32,3995,16, 9885547,1,1876,4088,16,
97350,523,1,2105,3996, 98860,547,1,1659,4089,
973616,0,523,1,1958, 988716,0,547,1,1225,
97373997,16,0,523,1, 98884090,16,0,547,1,
97381775,3998,16,0,523, 98891117,4091,16,0,547,
97391,116,3999,19,522, 98901,137,4092,16,0,
97401,116,4000,5,10, 9891547,1,1775,4093,16,
97411,2074,4001,16,0, 98920,547,1,32,4094,
9742520,1,2197,4002,16, 989316,0,547,1,1407,
97430,520,1,1901,4003, 98944095,16,0,547,1,
974416,0,520,1,2309, 9895256,4096,16,0,547,
97454004,16,0,520,1, 98961,459,4097,16,0,
97461804,4005,16,0,520, 9897547,1,41,4098,16,
97471,1990,4006,16,0, 98980,547,1,151,4099,
9748520,1,32,4007,16, 989916,0,547,1,43,
97490,520,1,2105,4008, 99004100,16,0,547,1,
975016,0,520,1,1958, 99012551,4101,16,0,547,
97514009,16,0,520,1, 99021,1901,4102,16,0,
97521775,4010,16,0,520, 9903547,1,509,4103,16,
97531,117,4011,19,519, 99040,547,1,52,4104,
97541,117,4012,5,10, 990516,0,547,1,381,
97551,2074,4013,16,0, 99064105,16,0,547,1,
9756517,1,2197,4014,16, 9907447,4106,16,0,547,
97570,517,1,1901,4015, 99081,166,4107,16,0,
975816,0,517,1,2309, 9909547,1,462,4108,16,
97594016,16,0,517,1, 99100,547,1,277,4109,
97601804,4017,16,0,517, 991116,0,547,1,1695,
97611,1990,4018,16,0, 99124110,16,0,547,1,
9762517,1,32,4019,16, 99131261,4111,16,0,547,
97630,517,1,2105,4020, 99141,1153,4112,16,0,
976416,0,517,1,1958, 9915547,1,62,4113,16,
97654021,16,0,517,1, 99160,587,1,2106,4114,
97661775,4022,16,0,517, 991716,0,547,1,1335,
97671,118,4023,19,516, 99184115,16,0,547,1,
97681,118,4024,5,10, 991971,4116,16,0,547,
97691,2074,4025,16,0, 99201,182,4117,16,0,
9770514,1,2197,4026,16, 9921547,1,76,4118,16,
97710,514,1,1901,4027, 99220,547,1,79,4119,
977216,0,514,1,2309, 992316,0,547,1,1933,
97734028,16,0,514,1, 99244120,16,0,547,1,
97741804,4029,16,0,514, 9925299,4121,16,0,547,
97751,1990,4030,16,0, 99261,85,4122,16,0,
9776514,1,32,4031,16, 9927547,1,1515,4123,16,
97770,514,1,2105,4032, 99280,547,1,2198,4124,
977816,0,514,1,1958, 992916,0,547,1,89,
97794033,16,0,514,1, 99304125,16,0,547,1,
97801775,4034,16,0,514, 99311834,4126,16,0,547,
97811,119,4035,19,513, 99321,1622,4127,16,0,
97821,119,4036,5,10, 9933547,1,1990,4128,16,
97831,2074,4037,16,0, 99340,547,1,406,4129,
9784511,1,2197,4038,16, 993516,0,547,1,1731,
97850,511,1,1901,4039, 99364130,16,0,547,1,
978616,0,511,1,2309, 993797,4131,16,0,547,
97874040,16,0,511,1, 99381,1297,4132,16,0,
97881804,4041,16,0,511, 9939547,1,1189,4133,16,
97891,1990,4042,16,0, 99400,547,1,102,4134,
9790511,1,32,4043,16, 994116,0,547,1,1585,
97910,511,1,2105,4044, 99424135,16,0,547,1,
979216,0,511,1,1958, 9943322,4136,16,0,547,
97934045,16,0,511,1, 99441,1958,4137,16,0,
97941775,4046,16,0,511, 9945547,1,199,4138,16,
97951,120,4047,19,147, 99460,547,1,1371,4139,
97961,120,4048,5,2, 994716,0,547,1,217,
97971,1756,4049,16,0, 99484140,16,0,547,1,
9798322,1,1659,4050,16, 9949123,4141,19,603,1,
97990,145,1,121,4051, 9950123,4142,5,2,1,
980019,556,1,121,4052, 9951459,4143,16,0,601,
98015,65,1,1479,4053, 99521,41,4144,16,0,
980216,0,554,1,112, 9953656,1,124,4145,19,
98034054,16,0,554,1, 9954608,1,124,4146,5,
98041804,4055,16,0,554, 99553,1,462,4147,16,
98051,431,4056,16,0, 99560,606,1,459,4148,
9806554,1,1443,4057,16, 995716,0,631,1,41,
98070,554,1,1756,4058, 99584149,16,0,631,1,
980816,0,554,1,124, 9959125,4150,19,4151,4,
98094059,16,0,554,1, 996036,69,0,120,0,
9810525,4060,16,0,554, 9961112,0,114,0,101,
98111,2197,4061,16,0, 99620,115,0,115,0,
9812554,1,236,4062,16, 9963105,0,111,0,110,
98130,554,1,346,4063, 99640,65,0,114,0,
981416,0,554,1,2309, 9965103,0,117,0,109,
98154064,16,0,554,1, 99660,101,0,110,0,
98161876,4065,16,0,554, 9967116,0,1,125,4146,
98171,1659,4066,16,0, 99681,126,4152,19,542,
9818554,1,1225,4067,16, 99691,126,4153,5,65,
98190,554,1,1117,4068, 99701,1479,4154,16,0,
982016,0,554,1,137, 9971540,1,112,4155,16,
98214069,16,0,554,1, 99720,540,1,2075,4156,
98221775,4070,16,0,554, 997316,0,540,1,1804,
98231,32,4071,16,0, 99744157,16,0,540,1,
9824554,1,2105,4072,16, 9975431,4158,16,0,540,
98250,554,1,1407,4073, 99761,1443,4159,16,0,
982616,0,554,1,256, 9977540,1,1756,4160,16,
98274074,16,0,554,1, 99780,540,1,124,4161,
9828459,4075,16,0,554, 997916,0,540,1,525,
98291,41,4076,16,0, 99804162,16,0,540,1,
9830554,1,151,4077,16, 9981236,4163,16,0,540,
98310,554,1,43,4078, 99821,346,4164,16,0,
983216,0,554,1,1901, 9983540,1,2310,4165,16,
98334079,16,0,554,1, 99840,540,1,1876,4166,
9834509,4080,16,0,554, 998516,0,540,1,1659,
98351,52,4081,16,0, 99864167,16,0,540,1,
9836554,1,381,4082,16, 99871225,4168,16,0,540,
98370,554,1,447,4083, 99881,1117,4169,16,0,
983816,0,554,1,166, 9989540,1,137,4170,16,
98394084,16,0,554,1, 99900,540,1,1775,4171,
9840462,4085,16,0,554, 999116,0,540,1,32,
98411,277,4086,16,0, 99924172,16,0,540,1,
9842554,1,1695,4087,16, 99931407,4173,16,0,540,
98430,554,1,1261,4088, 99941,256,4174,16,0,
984416,0,554,1,1153, 9995540,1,459,4175,16,
98454089,16,0,554,1, 99960,540,1,41,4176,
984662,4090,16,0,585, 999716,0,540,1,151,
98471,2550,4091,16,0, 99984177,16,0,540,1,
9848554,1,2074,4092,16, 999943,4178,16,0,540,
98490,554,1,1335,4093, 100001,2551,4179,16,0,
985016,0,554,1,71, 10001540,1,1901,4180,16,
98514094,16,0,554,1, 100020,540,1,509,4181,
9852182,4095,16,0,554, 1000316,0,540,1,52,
98531,76,4096,16,0, 100044182,16,0,540,1,
9854554,1,79,4097,16, 10005381,4183,16,0,540,
98550,554,1,1933,4098, 100061,447,4184,16,0,
985616,0,554,1,299, 10007540,1,166,4185,16,
98574099,16,0,554,1, 100080,540,1,462,4186,
985885,4100,16,0,554, 1000916,0,540,1,277,
98591,1515,4101,16,0, 100104187,16,0,540,1,
9860554,1,89,4102,16, 100111695,4188,16,0,540,
98610,554,1,1834,4103, 100121,1261,4189,16,0,
986216,0,554,1,1622, 10013540,1,1153,4190,16,
98634104,16,0,554,1, 100140,540,1,62,4191,
98641990,4105,16,0,554, 1001516,0,588,1,2106,
98651,406,4106,16,0, 100164192,16,0,540,1,
9866554,1,1731,4107,16, 100171335,4193,16,0,540,
98670,554,1,97,4108, 100181,71,4194,16,0,
986816,0,554,1,1297, 10019540,1,182,4195,16,
98694109,16,0,554,1, 100200,540,1,76,4196,
98701189,4110,16,0,554, 1002116,0,540,1,79,
98711,102,4111,16,0, 100224197,16,0,540,1,
9872554,1,1585,4112,16, 100231933,4198,16,0,540,
98730,554,1,322,4113, 100241,299,4199,16,0,
987416,0,554,1,1958, 10025540,1,85,4200,16,
98754114,16,0,554,1, 100260,540,1,1515,4201,
9876199,4115,16,0,554, 1002716,0,540,1,2198,
98771,1371,4116,16,0, 100284202,16,0,540,1,
9878554,1,217,4117,16, 1002989,4203,16,0,540,
98790,554,1,122,4118, 100301,1834,4204,16,0,
988019,601,1,122,4119, 10031540,1,1622,4205,16,
98815,2,1,459,4120, 100320,540,1,1990,4206,
988216,0,599,1,41, 1003316,0,540,1,406,
98834121,16,0,653,1, 100344207,16,0,540,1,
9884123,4122,19,608,1, 100351731,4208,16,0,540,
9885123,4123,5,3,1, 100361,97,4209,16,0,
9886462,4124,16,0,606, 10037540,1,1297,4210,16,
98871,459,4125,16,0, 100380,540,1,1189,4211,
9888628,1,41,4126,16, 1003916,0,540,1,102,
98890,628,1,124,4127, 100404212,16,0,540,1,
989019,4128,4,36,69, 100411585,4213,16,0,540,
98910,120,0,112,0, 100421,322,4214,16,0,
9892114,0,101,0,115, 10043540,1,1958,4215,16,
98930,115,0,105,0, 100440,540,1,199,4216,
9894111,0,110,0,65, 1004516,0,540,1,1371,
98950,114,0,103,0, 100464217,16,0,540,1,
9896117,0,109,0,101, 10047217,4218,16,0,540,
98970,110,0,116,0, 100481,127,4219,19,4220,
98981,124,4123,1,125, 100494,28,86,0,101,
98994129,19,548,1,125, 100500,99,0,116,0,
99004130,5,65,1,1479, 10051111,0,114,0,67,
99014131,16,0,546,1,
9902112,4132,16,0,546,
99031,1804,4133,16,0,
9904546,1,431,4134,16,
99050,546,1,1443,4135,
990616,0,546,1,1756,
99074136,16,0,546,1,
9908124,4137,16,0,546,
99091,525,4138,16,0,
9910546,1,2197,4139,16,
99110,546,1,236,4140,
991216,0,546,1,346,
99134141,16,0,546,1,
99142309,4142,16,0,546,
99151,1876,4143,16,0,
9916546,1,1659,4144,16,
99170,546,1,1225,4145,
991816,0,546,1,1117,
99194146,16,0,546,1,
9920137,4147,16,0,546,
99211,1775,4148,16,0,
9922546,1,32,4149,16,
99230,546,1,2105,4150,
992416,0,546,1,1407,
99254151,16,0,546,1,
9926256,4152,16,0,546,
99271,459,4153,16,0,
9928546,1,41,4154,16,
99290,546,1,151,4155,
993016,0,546,1,43,
99314156,16,0,546,1,
99321901,4157,16,0,546,
99331,509,4158,16,0,
9934546,1,52,4159,16,
99350,546,1,381,4160,
993616,0,546,1,447,
99374161,16,0,546,1,
9938166,4162,16,0,546,
99391,462,4163,16,0,
9940546,1,277,4164,16,
99410,546,1,1695,4165,
994216,0,546,1,1261,
99434166,16,0,546,1,
99441153,4167,16,0,546,
99451,62,4168,16,0,
9946586,1,2550,4169,16,
99470,546,1,2074,4170,
994816,0,546,1,1335,
99494171,16,0,546,1,
995071,4172,16,0,546,
99511,182,4173,16,0,
9952546,1,76,4174,16,
99530,546,1,79,4175,
995416,0,546,1,1933,
99554176,16,0,546,1,
9956299,4177,16,0,546,
99571,85,4178,16,0,
9958546,1,1515,4179,16,
99590,546,1,89,4180,
996016,0,546,1,1834,
99614181,16,0,546,1,
99621622,4182,16,0,546,
99631,1990,4183,16,0,
9964546,1,406,4184,16,
99650,546,1,1731,4185,
996616,0,546,1,97,
99674186,16,0,546,1,
99681297,4187,16,0,546,
99691,1189,4188,16,0,
9970546,1,102,4189,16,
99710,546,1,1585,4190,
997216,0,546,1,322,
99734191,16,0,546,1,
99741958,4192,16,0,546,
99751,199,4193,16,0,
9976546,1,1371,4194,16,
99770,546,1,217,4195,
997816,0,546,1,126,
99794196,19,4197,4,28,
998086,0,101,0,99,
99810,116,0,111,0,
9982114,0,67,0,111,
99830,110,0,115,0,
9984116,0,97,0,110,
99850,116,0,1,126,
99864130,1,127,4198,19,
99874199,4,32,82,0,
9988111,0,116,0,97,
99890,116,0,105,0,
9990111,0,110,0,67,
99910,111,0,110,0, 100520,111,0,110,0,
9992115,0,116,0,97, 10053115,0,116,0,97,
99930,110,0,116,0, 100540,110,0,116,0,
99941,127,4130,1,128, 100551,127,4153,1,128,
99954200,19,4201,4,24, 100564221,19,4222,4,32,
999676,0,105,0,115, 1005782,0,111,0,116,
99970,116,0,67,0, 100580,97,0,116,0,
9998111,0,110,0,115,
99990,116,0,97,0,
10000110,0,116,0,1,
10001128,4130,1,129,4202,
1000219,169,1,129,4203,
100035,64,1,1479,4204,
1000416,0,537,1,112,
100054205,16,0,247,1,
100061804,4206,16,0,584,
100071,431,4207,16,0,
10008581,1,1443,4208,16,
100090,488,1,1756,4209,
1001016,0,660,1,124,
100114210,16,0,259,1,
10012525,4211,16,0,366,
100131,2197,4212,16,0,
10014584,1,236,4213,16,
100150,426,1,346,4214,
1001616,0,500,1,2309,
100174215,16,0,584,1,
100181876,4216,16,0,378,
100191,1659,4217,16,0,
10020660,1,1225,4218,16,
100210,246,1,1117,4219,
1002216,0,218,1,137,
100234220,16,0,282,1,
100241775,4221,16,0,584,
100251,32,4222,16,0,
10026584,1,2105,4223,16,
100270,584,1,1407,4224,
1002816,0,493,1,256,
100294225,16,0,442,1,
10030459,4226,16,0,167,
100311,41,4227,16,0,
10032167,1,151,4228,16,
100330,318,1,43,4229,
1003416,0,631,1,1901,
100354230,16,0,584,1,
10036509,4231,16,0,641,
100371,52,4232,16,0,
10038593,1,381,4233,16,
100390,559,1,447,4234,
1004016,0,366,1,166,
100414235,16,0,353,1,
10042462,4236,16,0,167,
100431,277,4237,16,0,
10044451,1,1695,4238,16,
100450,277,1,1261,4239,
1004616,0,308,1,1153,
100474240,16,0,174,1,
100482550,4241,16,0,569,
100491,2074,4242,16,0,
10050584,1,1335,4243,16,
100510,402,1,71,4244,
1005216,0,202,1,182,
100534245,16,0,366,1,
1005476,4246,16,0,557,
100551,79,4247,16,0,
10056217,1,1933,4248,16,
100570,445,1,299,4249,
1005816,0,467,1,85,
100594250,16,0,485,1,
100601515,4251,16,0,568,
100611,89,4252,16,0,
10062228,1,1834,4253,16,
100630,346,1,1622,4254,
1006416,0,640,1,1990,
100654255,16,0,584,1,
10066406,4256,16,0,570,
100671,1731,4257,16,0,
10068248,1,97,4258,16,
100690,446,1,1297,4259,
1007016,0,407,1,1189,
100714260,16,0,216,1,
10072102,4261,16,0,236,
100731,1585,4262,16,0,
10074650,1,322,4263,16,
100750,486,1,1958,4264,
1007616,0,584,1,199,
100774265,16,0,377,1,
100781371,4266,16,0,443,
100791,217,4267,16,0,
10080394,1,130,4268,19,
100814269,4,36,67,0,
10082111,0,110,0,115,
100830,116,0,97,0,
10084110,0,116,0,69,
100850,120,0,112,0,
10086114,0,101,0,115,
100870,115,0,105,0,
10088111,0,110,0,1,
10089130,4203,1,131,4270,
1009019,4271,4,30,73,
100910,100,0,101,0,
10092110,0,116,0,69,
100930,120,0,112,0,
10094114,0,101,0,115,
100950,115,0,105,0,
10096111,0,110,0,1,
10097131,4203,1,132,4272,
1009819,4273,4,36,73,
100990,100,0,101,0,
10100110,0,116,0,68,
101010,111,0,116,0,
1010269,0,120,0,112,
101030,114,0,101,0,
10104115,0,115,0,105,
101050,111,0,110,0,
101061,132,4203,1,133,
101074274,19,4275,4,44,
1010870,0,117,0,110,
101090,99,0,116,0,
10110105,0,111,0,110, 10059105,0,111,0,110,
101110,67,0,97,0, 100600,67,0,111,0,
10112108,0,108,0,69, 10061110,0,115,0,116,
101130,120,0,112,0, 100620,97,0,110,0,
10114114,0,101,0,115, 10063116,0,1,128,4153,
101150,115,0,105,0, 100641,129,4223,19,4224,
10116111,0,110,0,1, 100654,24,76,0,105,
10117133,4203,1,134,4276, 100660,115,0,116,0,
1011819,4277,4,32,66, 1006767,0,111,0,110,
101190,105,0,110,0, 100680,115,0,116,0,
1012097,0,114,0,121, 1006997,0,110,0,116,
100700,1,129,4153,1,
10071130,4225,19,169,1,
10072130,4226,5,64,1,
100731479,4227,16,0,531,
100741,112,4228,16,0,
10075244,1,2075,4229,16,
100760,583,1,1804,4230,
1007716,0,583,1,431,
100784231,16,0,578,1,
100791443,4232,16,0,482,
100801,1756,4233,16,0,
10081664,1,124,4234,16,
100820,255,1,525,4235,
1008316,0,358,1,236,
100844236,16,0,422,1,
10085346,4237,16,0,494,
100861,2310,4238,16,0,
10087583,1,1876,4239,16,
100880,372,1,1659,4240,
1008916,0,664,1,1225,
100904241,16,0,243,1,
100911117,4242,16,0,219,
100921,137,4243,16,0,
10093274,1,1775,4244,16,
100940,583,1,32,4245,
1009516,0,583,1,1407,
100964246,16,0,485,1,
10097256,4247,16,0,437,
100981,459,4248,16,0,
10099167,1,41,4249,16,
101000,167,1,151,4250,
1010116,0,310,1,43,
101024251,16,0,636,1,
101032551,4252,16,0,566,
101041,1901,4253,16,0,
10105583,1,509,4254,16,
101060,647,1,52,4255,
1010716,0,595,1,381,
101084256,16,0,552,1,
10109447,4257,16,0,358,
101101,166,4258,16,0,
10111345,1,462,4259,16,
101120,167,1,277,4260,
1011316,0,448,1,1695,
101144261,16,0,269,1,
101151261,4262,16,0,300,
101161,1153,4263,16,0,
10117174,1,2106,4264,16,
101180,583,1,1335,4265,
1011916,0,394,1,71,
101204266,16,0,203,1,
10121182,4267,16,0,358,
101221,76,4268,16,0,
10123550,1,79,4269,16,
101240,218,1,1933,4270,
1012516,0,443,1,299,
101264271,16,0,466,1,
1012785,4272,16,0,479,
101281,1515,4273,16,0,
10129565,1,2198,4274,16,
101300,583,1,89,4275,
1013116,0,226,1,1834,
101324276,16,0,338,1,
101331622,4277,16,0,646,
101341,1990,4278,16,0,
10135583,1,406,4279,16,
101360,567,1,1731,4280,
1013716,0,245,1,97,
101384281,16,0,444,1,
101391297,4282,16,0,400,
101401,1189,4283,16,0,
10141217,1,102,4284,16,
101420,234,1,1585,4285,
1014316,0,655,1,322,
101444286,16,0,480,1,
101451958,4287,16,0,583,
101461,199,4288,16,0,
10147369,1,1371,4289,16,
101480,438,1,217,4290,
1014916,0,388,1,131,
101504291,19,4292,4,36,
1015167,0,111,0,110,
101520,115,0,116,0,
1015397,0,110,0,116,
101210,69,0,120,0, 101540,69,0,120,0,
10122112,0,114,0,101, 10155112,0,114,0,101,
101230,115,0,115,0, 101560,115,0,115,0,
10124105,0,111,0,110, 10157105,0,111,0,110,
101250,1,134,4203,1, 101580,1,131,4226,1,
10126135,4278,19,4279,4, 10159132,4293,19,4294,4,
1012730,85,0,110,0, 1016030,73,0,100,0,
1012897,0,114,0,121, 10161101,0,110,0,116,
101290,69,0,120,0, 101620,69,0,120,0,
10130112,0,114,0,101, 10163112,0,114,0,101,
101310,115,0,115,0, 101640,115,0,115,0,
10132105,0,111,0,110, 10165105,0,111,0,110,
101330,1,135,4203,1, 101660,1,132,4226,1,
10134136,4280,19,4281,4, 10167133,4295,19,4296,4,
1013536,84,0,121,0, 1016836,73,0,100,0,
10136112,0,101,0,99, 10169101,0,110,0,116,
101370,97,0,115,0, 101700,68,0,111,0,
10138116,0,69,0,120, 10171116,0,69,0,120,
101390,112,0,114,0, 101720,112,0,114,0,
10140101,0,115,0,115, 10173101,0,115,0,115,
101410,105,0,111,0, 101740,105,0,111,0,
10142110,0,1,136,4203, 10175110,0,1,133,4226,
101431,137,4282,19,4283, 101761,134,4297,19,4298,
101444,42,80,0,97, 101774,44,70,0,117,
101450,114,0,101,0, 101780,110,0,99,0,
10146110,0,116,0,104, 10179116,0,105,0,111,
101800,110,0,67,0,
1018197,0,108,0,108,
101820,69,0,120,0,
10183112,0,114,0,101,
101840,115,0,115,0,
10185105,0,111,0,110,
101860,1,134,4226,1,
10187135,4299,19,4300,4,
1018832,66,0,105,0,
10189110,0,97,0,114,
101900,121,0,69,0,
10191120,0,112,0,114,
101470,101,0,115,0, 101920,101,0,115,0,
10148105,0,115,0,69, 10193115,0,105,0,111,
101940,110,0,1,135,
101954226,1,136,4301,19,
101964302,4,30,85,0,
10197110,0,97,0,114,
101980,121,0,69,0,
10199120,0,112,0,114,
102000,101,0,115,0,
10201115,0,105,0,111,
102020,110,0,1,136,
102034226,1,137,4303,19,
102044304,4,36,84,0,
10205121,0,112,0,101,
102060,99,0,97,0,
10207115,0,116,0,69,
101490,120,0,112,0, 102080,120,0,112,0,
10150114,0,101,0,115, 10209114,0,101,0,115,
101510,115,0,105,0, 102100,115,0,105,0,
10152111,0,110,0,1, 10211111,0,110,0,1,
10153137,4203,1,138,4284, 10212137,4226,1,138,4305,
1015419,4285,4,56,73, 1021319,4306,4,42,80,
101550,110,0,99,0, 102140,97,0,114,0,
10156114,0,101,0,109, 10215101,0,110,0,116,
101570,101,0,110,0, 102160,104,0,101,0,
10158116,0,68,0,101, 10217115,0,105,0,115,
101590,99,0,114,0, 102180,69,0,120,0,
10160101,0,109,0,101, 10219112,0,114,0,101,
101610,110,0,116,0, 102200,115,0,115,0,
1016269,0,120,0,112, 10221105,0,111,0,110,
101630,114,0,101,0, 102220,1,138,4226,1,
10164115,0,115,0,105, 10223139,4307,19,4308,4,
101650,111,0,110,0, 1022456,73,0,110,0,
101661,138,4203,1,140, 1022599,0,114,0,101,
101674286,19,682,1,140,
101683797,1,141,4287,19,
10169693,1,141,3797,1,
10170142,4288,19,3112,1,
10171142,3800,1,143,4289,
1017219,3124,1,143,3800,
101731,144,4290,19,3107,
101741,144,3800,1,145,
101754291,19,3102,1,145,
101763800,1,146,4292,19,
101773135,1,146,3803,1,
10178147,4293,19,3119,1,
10179147,3803,1,148,4294,
1018019,3130,1,148,3807,
101811,149,4295,19,3140,
101821,149,3807,1,150,
101834296,19,676,1,150,
101843811,1,151,4297,19,
10185671,1,151,3811,1,
10186152,4298,19,688,1,
10187152,3815,1,153,4299,
1018819,698,1,153,3815,
101891,154,4300,19,1598,
101901,154,3821,1,155,
101914301,19,1593,1,155,
101923821,1,156,4302,19,
101931584,1,156,3825,1,
10194157,4303,19,1630,1,
10195157,3831,1,158,4304,
1019619,1614,1,158,3831,
101971,159,4305,19,1089,
101981,159,3836,1,160,
101994306,19,817,1,160,
102003879,1,161,4307,19,
10201861,1,161,3879,1,
10202162,4308,19,811,1,
10203162,3894,1,163,4309,
1020419,856,1,163,3894,
102051,164,4310,19,881,
102061,164,3897,1,165,
102074311,19,765,1,165,
102083897,1,166,4312,19,
10209790,1,166,3897,1,
10210167,4313,19,760,1,
10211167,3897,1,168,4314,
1021219,754,1,168,3897,
102131,169,4315,19,749,
102141,169,3897,1,170,
102154316,19,744,1,170,
102163897,1,171,4317,19,
10217738,1,171,3897,1,
10218172,4318,19,733,1,
10219172,3897,1,173,4319,
1022019,728,1,173,3897,
102211,174,4320,19,723,
102221,174,3897,1,175,
102234321,19,718,1,175,
102243897,1,176,4322,19,
102251119,1,176,3964,1,
10226177,4323,19,1262,1,
10227177,3976,1,178,4324,
1022819,1111,1,178,3988,
102291,179,4325,19,1250,
102301,179,3988,1,180,
102314326,19,897,1,180,
102324000,1,181,4327,19,
10233711,1,181,4000,1,
10234182,4328,19,804,1,
10235182,4000,1,183,4329,
1023619,839,1,183,4000,
102371,184,4330,19,867,
102381,184,4012,1,185,
102394331,19,889,1,185,
102404012,1,186,4332,19,
10241824,1,186,4024,1,
10242187,4333,19,832,1,
10243187,4024,1,188,4334,
1024419,778,1,188,4036,
102451,189,4335,19,1489,
102461,189,4048,1,190,
102474336,19,1125,1,190,
102484048,1,191,4337,19,
102491462,1,191,4048,1,
10250192,4338,19,1505,1,
10251192,4048,1,193,4339,
1025219,1367,1,193,3909,
102531,194,4340,19,1425,
102541,194,3909,1,195,
102554341,19,1105,1,195,
102563921,1,196,4342,19,
102571537,1,196,3921,1,
10258197,4343,19,1457,1,
10259197,3921,1,198,4344,
1026019,1410,1,198,3921,
102611,199,4345,19,1335,
102621,199,3921,1,200,
102634346,19,1272,1,200,
102643921,1,201,4347,19,
102651282,1,201,3921,1,
10266202,4348,19,1100,1,
10267202,3921,1,203,4349,
1026819,1521,1,203,3921,
102691,204,4350,19,1452,
102701,204,3921,1,205,
102714351,19,1400,1,205,
102723921,1,206,4352,19,
102731324,1,206,3921,1,
10274207,4353,19,1298,1,
10275207,3921,1,208,4354,
1027619,1083,1,208,3921,
102771,209,4355,19,1420,
102781,209,3921,1,210,
102794356,19,1441,1,210,
102803921,1,211,4357,19,
102811395,1,211,3921,1,
10282212,4358,19,1479,1,
10283212,3921,1,213,4359,
1028419,1234,1,213,3921,
102851,214,4360,19,1142,
102861,214,3921,1,215,
102874361,19,1072,1,215,
102883921,1,216,4362,19,
102891495,1,216,3921,1,
10290217,4363,19,1436,1,
10291217,3921,1,218,4364,
1029219,1389,1,218,3921,
102931,219,4365,19,1267,
102941,219,3952,1,220,
102954366,19,1245,1,220,
102963952,1,221,4367,19,
102971526,1,221,4130,1,
10298222,4368,19,1549,1,
10299222,4130,1,223,4369,
1030019,1516,1,223,4130,
103011,224,4370,19,1511,
103021,224,4130,1,225,
103034371,19,1532,1,225,
103044130,1,226,4372,19,
103051468,1,226,4130,1,
10306227,4373,19,1188,1,
10307227,4130,1,228,4374,
1030819,1356,1,228,4203,
103091,229,4375,19,1137,
103101,229,4203,1,230,
103114376,19,1155,1,230,
103124203,1,231,4377,19,
103131172,1,231,4203,1,
10314232,4378,19,1177,1,
10315232,4203,1,233,4379,
1031619,1166,1,233,4203,
103171,234,4380,19,1161,
103181,234,4203,1,235,
103194381,19,1345,1,235,
103204203,1,236,4382,19,
103211373,1,236,4203,1,
10322237,4383,19,1378,1,
10323237,4203,1,238,4384,
1032419,1340,1,238,4203,
103251,239,4385,19,1330,
103261,239,4203,1,240,
103274386,19,1304,1,240,
103284203,1,241,4387,19,
103291277,1,241,4203,1,
10330242,4388,19,1182,1,
10331242,4203,1,243,4389,
1033219,1147,1,243,4203,
103331,244,4390,19,1095,
103341,244,4203,1,245,
103354391,19,1544,1,245,
103364203,1,246,4392,19,
103371500,1,246,4203,1,
10338247,4393,19,1484,1,
10339247,4203,1,248,4394,
1034019,1474,1,248,4203,
103411,249,4395,19,1431,
103421,249,4203,1,250,
103434396,19,1405,1,250,
103444203,1,251,4397,19,
103451383,1,251,4203,1,
10346252,4398,19,1361,1,
10347252,4203,1,253,4399,
1034819,1319,1,253,4203,
103491,254,4400,19,1350,
103501,254,4203,1,255,
103514401,19,1415,1,255,
103524203,1,256,4402,19,
103531447,1,256,4203,1,
10354257,4403,19,1239,1,
10355257,4203,1,258,4404,
1035619,1311,1,258,4203,
103571,259,4405,19,1293,
103581,259,4203,1,260,
103594406,19,1256,1,260,
103604203,1,261,4407,19,
103611229,1,261,4203,1,
10362262,4408,19,1078,1,
10363262,4203,1,263,4409,
1036419,1559,1,263,4203,
103651,264,4410,19,1194,
103661,264,4203,1,265,
103674411,19,1199,1,265,
103684203,1,266,4412,19,
103691219,1,266,4203,1,
10370267,4413,19,1209,1,
10371267,4203,1,268,4414,
1037219,1214,1,268,4203,
103731,269,4415,19,1204,
103741,269,4203,1,270,
103754416,19,1554,1,270,
103764203,1,271,4417,19,
103771224,1,271,4203,1,
10378272,4418,19,1288,1,
10379272,4052,1,273,4419,
1038019,1651,1,273,4119,
103811,274,4420,19,1645,
103821,274,4119,1,275,
103834421,19,1625,1,275,
103844123,1,276,4422,19,
103851938,1,276,3854,1,
10386277,4423,19,1933,1,
10387277,3854,1,278,4424,
1038819,1928,1,278,3854,
103891,279,4425,19,1923,
103901,279,3854,1,280,
103914426,19,1918,1,280,
103923854,1,281,4427,19,
103931913,1,281,3854,1,
10394282,4428,19,1908,1,
10395282,3854,1,283,4429,
1039619,1840,1,283,3873,
103971,284,4430,19,1835,
103981,284,3873,1,285,
103994431,19,1830,1,285,
104003873,1,286,4432,19,
104011892,1,286,3873,1,
10402287,4433,19,1824,1,
10403287,3873,1,288,4434,
1040419,1819,1,288,3873,
104051,289,4435,19,1814,
104061,289,3873,1,290,
104074436,19,1809,1,290,
104083873,1,291,4437,19,
104091804,1,291,3873,1,
10410292,4438,19,1799,1,
10411292,3873,1,293,4439,
1041219,1794,1,293,3873,
104131,294,4440,19,1789,
104141,294,3873,1,295,
104154441,19,1784,1,295,
104163873,1,296,4442,19,
104171779,1,296,3873,1,
10418297,4443,19,1774,1,
10419297,3873,1,298,4444,
1042019,1769,1,298,3873,
104211,299,4445,19,1882,
104221,299,3873,1,300,
104234446,19,1763,1,300,
104243873,1,301,4447,19,
104251758,1,301,3873,1,
10426302,4448,19,1753,1,
10427302,3873,1,303,4449,
1042819,1748,1,303,3873,
104291,304,4450,19,1743,
104301,304,3873,1,305,
104314451,19,1875,1,305,
104323873,1,306,4452,19,
104331737,1,306,3873,1,
10434307,4453,19,1870,1,
10435307,3873,1,308,4454,
1043619,1732,1,308,3873,
104371,309,4455,19,1727,
104381,309,3873,1,310,
104394456,19,1670,1,310,
104403873,1,311,4457,19,
104411864,1,311,3873,1,
10442312,4458,19,1720,1,
10443312,3873,1,313,4459,
1044419,1715,1,313,3873,
104451,314,4460,19,1710,
104461,314,3873,1,315,
104474461,19,1705,1,315,
104483873,1,316,4462,19,
104494463,4,50,65,0,
10450114,0,103,0,117,
104510,109,0,101,0, 102260,109,0,101,0,
10452110,0,116,0,68, 10227110,0,116,0,68,
104530,101,0,99,0, 102280,101,0,99,0,
10454108,0,97,0,114, 10229114,0,101,0,109,
104550,97,0,116,0, 102300,101,0,110,0,
10456105,0,111,0,110, 10231116,0,69,0,120,
104570,76,0,105,0, 102320,112,0,114,0,
10458115,0,116,0,95, 10233101,0,115,0,115,
104590,51,0,1,316, 102340,105,0,111,0,
104603831,1,317,4464,19, 10235110,0,1,139,4226,
104614465,4,28,65,0, 102361,141,4309,19,686,
10462114,0,103,0,117, 102371,141,3808,1,142,
104630,109,0,101,0, 102384310,19,701,1,142,
10464110,0,116,0,76, 102393808,1,143,4311,19,
104650,105,0,115,0, 102403123,1,143,3811,1,
10466116,0,95,0,51, 10241144,4312,19,3140,1,
104670,1,317,4119,1, 10242144,3811,1,145,4313,
10468318,4466,19,4467,4, 1024319,3118,1,145,3811,
102441,146,4314,19,3135,
102451,146,3811,1,147,
102464315,19,3150,1,147,
102473814,1,148,4316,19,
102483129,1,148,3814,1,
10249149,4317,19,3110,1,
10250149,3818,1,150,4318,
1025119,3145,1,150,3818,
102521,151,4319,19,691,
102531,151,3822,1,152,
102544320,19,680,1,152,
102553822,1,153,4321,19,
10256696,1,153,3826,1,
10257154,4322,19,674,1,
10258154,3826,1,155,4323,
1025919,1609,1,155,3832,
102601,156,4324,19,1604,
102611,156,3832,1,157,
102624325,19,1595,1,157,
102633836,1,158,4326,19,
102641641,1,158,3842,1,
10265159,4327,19,1625,1,
10266159,3842,1,160,4328,
1026719,1094,1,160,3847,
102681,161,4329,19,825,
102691,161,3890,1,162,
102704330,19,864,1,162,
102713890,1,163,4331,19,
10272819,1,163,3905,1,
10273164,4332,19,808,1,
10274164,3905,1,165,4333,
1027519,1122,1,165,3920,
102761,166,4334,19,772,
102771,166,3908,1,167,
102784335,19,886,1,167,
102793908,1,168,4336,19,
10280767,1,168,3908,1,
10281169,4337,19,793,1,
10282169,3908,1,170,4338,
1028319,762,1,170,3908,
102841,171,4339,19,756,
102851,171,3908,1,172,
102864340,19,751,1,172,
102873908,1,173,4341,19,
10288746,1,173,3908,1,
10289174,4342,19,740,1,
10290174,3908,1,175,4343,
1029119,735,1,175,3908,
102921,176,4344,19,730,
102931,176,3908,1,177,
102944345,19,725,1,177,
102953908,1,178,4346,19,
10296720,1,178,3908,1,
10297179,4347,19,1129,1,
10298179,3987,1,180,4348,
1029919,1270,1,180,3999,
103001,181,4349,19,1116,
103011,181,4011,1,182,
103024350,19,1258,1,182,
103034011,1,183,4351,19,
10304902,1,183,4023,1,
10305184,4352,19,713,1,
10306184,4023,1,185,4353,
1030719,813,1,185,4023,
103081,186,4354,19,848,
103091,186,4023,1,187,
103104355,19,870,1,187,
103114035,1,188,4356,19,
10312894,1,188,4035,1,
10313189,4357,19,831,1,
10314189,4047,1,190,4358,
1031519,839,1,190,4047,
103161,191,4359,19,781,
103171,191,4059,1,192,
103184360,19,1501,1,192,
103194071,1,193,4361,19,
103201135,1,193,4071,1,
10321194,4362,19,1478,1,
10322194,4071,1,195,4363,
1032319,1516,1,195,4071,
103241,196,4364,19,1377,
103251,196,3932,1,197,
103264365,19,1440,1,197,
103273932,1,198,4366,19,
103281110,1,198,3944,1,
10329199,4367,19,1548,1,
10330199,3944,1,200,4368,
1033119,1473,1,200,3944,
103321,201,4369,19,1424,
103331,201,3944,1,202,
103344370,19,1344,1,202,
103353944,1,203,4371,19,
103361280,1,203,3944,1,
10337204,4372,19,1290,1,
10338204,3944,1,205,4373,
1033919,1105,1,205,3944,
103401,206,4374,19,1532,
103411,206,3944,1,207,
103424375,19,1468,1,207,
103433944,1,208,4376,19,
103441414,1,208,3944,1,
10345209,4377,19,1332,1,
10346209,3944,1,210,4378,
1034719,1306,1,210,3944,
103481,211,4379,19,1088,
103491,211,3944,1,212,
103504380,19,1435,1,212,
103513944,1,213,4381,19,
103521456,1,213,3944,1,
10353214,4382,19,1409,1,
10354214,3944,1,215,4383,
1035519,1429,1,215,3944,
103561,216,4384,19,1242,
103571,216,3944,1,217,
103584385,19,1152,1,217,
103593944,1,218,4386,19,
103601077,1,218,3944,1,
10361219,4387,19,1506,1,
10362219,3944,1,220,4388,
1036319,1451,1,220,3944,
103641,221,4389,19,1404,
103651,221,3944,1,222,
103664390,19,1275,1,222,
103673975,1,223,4391,19,
103681253,1,223,3975,1,
10369224,4392,19,1537,1,
10370224,4153,1,225,4393,
1037119,1560,1,225,4153,
103721,226,4394,19,1527,
103731,226,4153,1,227,
103744395,19,1522,1,227,
103754153,1,228,4396,19,
103761543,1,228,4153,1,
10377229,4397,19,1484,1,
10378229,4153,1,230,4398,
1037919,1196,1,230,4153,
103801,231,4399,19,1366,
103811,231,4226,1,232,
103824400,19,1147,1,232,
103834226,1,233,4401,19,
103841164,1,233,4226,1,
10385234,4402,19,1185,1,
10386234,4226,1,235,4403,
1038719,1180,1,235,4226,
103881,236,4404,19,1175,
103891,236,4226,1,237,
103904405,19,1170,1,237,
103914226,1,238,4406,19,
103921355,1,238,4226,1,
10393239,4407,19,1383,1,
10394239,4226,1,240,4408,
1039519,1393,1,240,4226,
103961,241,4409,19,1349,
103971,241,4226,1,242,
103984410,19,1338,1,242,
103994226,1,243,4411,19,
104001313,1,243,4226,1,
10401244,4412,19,1285,1,
10402244,4226,1,245,4413,
1040319,1190,1,245,4226,
104041,246,4414,19,1157,
104051,246,4226,1,247,
104064415,19,1100,1,247,
104074226,1,248,4416,19,
104081555,1,248,4226,1,
10409249,4417,19,1511,1,
10410249,4226,1,250,4418,
1041119,1495,1,250,4226,
104121,251,4419,19,1490,
104131,251,4226,1,252,
104144420,19,1446,1,252,
104154226,1,253,4421,19,
104161419,1,253,4226,1,
10417254,4422,19,1398,1,
10418254,4226,1,255,4423,
1041919,1388,1,255,4226,
104201,256,4424,19,1327,
104211,256,4226,1,257,
104224425,19,1360,1,257,
104234226,1,258,4426,19,
104241371,1,258,4226,1,
10425259,4427,19,1462,1,
10426259,4226,1,260,4428,
1042719,1247,1,260,4226,
104281,261,4429,19,1320,
104291,261,4226,1,262,
104304430,19,1301,1,262,
104314226,1,263,4431,19,
104321264,1,263,4226,1,
10433264,4432,19,1237,1,
10434264,4226,1,265,4433,
1043519,1083,1,265,4226,
104361,266,4434,19,1570,
104371,266,4226,1,267,
104384435,19,1202,1,267,
104394226,1,268,4436,19,
104401207,1,268,4226,1,
10441269,4437,19,1227,1,
10442269,4226,1,270,4438,
1044319,1217,1,270,4226,
104441,271,4439,19,1222,
104451,271,4226,1,272,
104464440,19,1212,1,272,
104474226,1,273,4441,19,
104481565,1,273,4226,1,
10449274,4442,19,1232,1,
10450274,4226,1,275,4443,
1045119,1296,1,275,4075,
104521,276,4444,19,1662,
104531,276,4142,1,277,
104544445,19,1657,1,277,
104554142,1,278,4446,19,
104561636,1,278,4146,1,
10457279,4447,19,1949,1,
10458279,3865,1,280,4448,
1045919,1944,1,280,3865,
104601,281,4449,19,1939,
104611,281,3865,1,282,
104624450,19,1934,1,282,
104633865,1,283,4451,19,
104641929,1,283,3865,1,
10465284,4452,19,1924,1,
10466284,3865,1,285,4453,
1046719,1919,1,285,3865,
104681,286,4454,19,1850,
104691,286,3884,1,287,
104704455,19,1845,1,287,
104713884,1,288,4456,19,
104721840,1,288,3884,1,
10473289,4457,19,1835,1,
10474289,3884,1,290,4458,
1047519,1903,1,290,3884,
104761,291,4459,19,1829,
104771,291,3884,1,292,
104784460,19,1824,1,292,
104793884,1,293,4461,19,
104801819,1,293,3884,1,
10481294,4462,19,1814,1,
10482294,3884,1,295,4463,
1048319,1809,1,295,3884,
104841,296,4464,19,1804,
104851,296,3884,1,297,
104864465,19,1799,1,297,
104873884,1,298,4466,19,
104881794,1,298,3884,1,
10489299,4467,19,1789,1,
10490299,3884,1,300,4468,
1049119,1784,1,300,3884,
104921,301,4469,19,1779,
104931,301,3884,1,302,
104944470,19,1774,1,302,
104953884,1,303,4471,19,
104961893,1,303,3884,1,
10497304,4472,19,1768,1,
10498304,3884,1,305,4473,
1049919,1763,1,305,3884,
105001,306,4474,19,1758,
105011,306,3884,1,307,
105024475,19,1753,1,307,
105033884,1,308,4476,19,
105041748,1,308,3884,1,
10505309,4477,19,1886,1,
10506309,3884,1,310,4478,
1050719,1742,1,310,3884,
105081,311,4479,19,1881,
105091,311,3884,1,312,
105104480,19,1737,1,312,
105113884,1,313,4481,19,
105121732,1,313,3884,1,
10513314,4482,19,1680,1,
10514314,3884,1,315,4483,
1051519,1874,1,315,3884,
105161,316,4484,19,1725,
105171,316,3884,1,317,
105184485,19,1720,1,317,
105193884,1,318,4486,19,
105201715,1,318,3884,1,
10521319,4487,19,4488,4,
1046950,65,0,114,0, 1052250,65,0,114,0,
10470103,0,117,0,109, 10523103,0,117,0,109,
104710,101,0,110,0, 105240,101,0,110,0,
@@ -10475,35 +10528,48 @@ public yyLSLSyntax
104750,116,0,105,0, 105280,116,0,105,0,
10476111,0,110,0,76, 10529111,0,110,0,76,
104770,105,0,115,0, 105300,105,0,115,0,
10478116,0,95,0,52, 10531116,0,95,0,51,
104790,1,318,3831,1, 105320,1,319,3842,1,
10480319,4468,19,4469,4, 10533320,4489,19,4490,4,
1048150,65,0,114,0, 1053428,65,0,114,0,
10482103,0,117,0,109, 10535103,0,117,0,109,
104830,101,0,110,0, 105360,101,0,110,0,
10484116,0,68,0,101, 10537116,0,76,0,105,
104850,99,0,108,0, 105380,115,0,116,0,
1048697,0,114,0,97, 1053995,0,51,0,1,
104870,116,0,105,0, 10540320,4142,1,321,4491,
10488111,0,110,0,76, 1054119,4492,4,50,65,
104890,105,0,115,0, 105420,114,0,103,0,
10490116,0,95,0,53, 10543117,0,109,0,101,
104910,1,319,3831,1, 105440,110,0,116,0,
10492320,4470,19,4471,4, 1054568,0,101,0,99,
1049324,83,0,116,0, 105460,108,0,97,0,
1049497,0,116,0,101, 10547114,0,97,0,116,
104950,109,0,101,0, 105480,105,0,111,0,
10496110,0,116,0,95, 10549110,0,76,0,105,
104970,49,0,51,0, 105500,115,0,116,0,
104981,320,3897,1,321, 1055195,0,52,0,1,
104994472,19,4473,4,28, 10552321,3842,1,322,4493,
1050065,0,114,0,103, 1055319,4494,4,50,65,
105010,117,0,109,0, 105540,114,0,103,0,
10502101,0,110,0,116, 10555117,0,109,0,101,
105030,76,0,105,0, 105560,110,0,116,0,
10504115,0,116,0,95, 1055768,0,101,0,99,
105050,52,0,1,321, 105580,108,0,97,0,
105064119,2,0,0}; 10559114,0,97,0,116,
105600,105,0,111,0,
10561110,0,76,0,105,
105620,115,0,116,0,
1056395,0,53,0,1,
10564322,3842,1,323,4495,
1056519,4496,4,28,65,
105660,114,0,103,0,
10567117,0,109,0,101,
105680,110,0,116,0,
1056976,0,105,0,115,
105700,116,0,95,0,
1057152,0,1,323,4142,
105722,0,0};
10507new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); 10573new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory));
10508new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory)); 10574new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory));
10509new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); 10575new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory));
@@ -10533,7 +10599,6 @@ new Sfactory(this,"ReturnStatement_1",new SCreator(ReturnStatement_1_factory));
10533new Sfactory(this,"IdentDotExpression",new SCreator(IdentDotExpression_factory)); 10599new Sfactory(this,"IdentDotExpression",new SCreator(IdentDotExpression_factory));
10534new Sfactory(this,"Argument",new SCreator(Argument_factory)); 10600new Sfactory(this,"Argument",new SCreator(Argument_factory));
10535new Sfactory(this,"State_2",new SCreator(State_2_factory)); 10601new Sfactory(this,"State_2",new SCreator(State_2_factory));
10536new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory));
10537new Sfactory(this,"GlobalDefinitions_3",new SCreator(GlobalDefinitions_3_factory)); 10602new Sfactory(this,"GlobalDefinitions_3",new SCreator(GlobalDefinitions_3_factory));
10538new Sfactory(this,"GlobalDefinitions_4",new SCreator(GlobalDefinitions_4_factory)); 10603new Sfactory(this,"GlobalDefinitions_4",new SCreator(GlobalDefinitions_4_factory));
10539new Sfactory(this,"Event_1",new SCreator(Event_1_factory)); 10604new Sfactory(this,"Event_1",new SCreator(Event_1_factory));
@@ -10601,12 +10666,11 @@ new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory));
10601new Sfactory(this,"Event_2",new SCreator(Event_2_factory)); 10666new Sfactory(this,"Event_2",new SCreator(Event_2_factory));
10602new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory)); 10667new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory));
10603new Sfactory(this,"Statement_12",new SCreator(Statement_12_factory)); 10668new Sfactory(this,"Statement_12",new SCreator(Statement_12_factory));
10604new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory));
10605new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory)); 10669new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory));
10606new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory)); 10670new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory));
10607new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory)); 10671new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory));
10608new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory)); 10672new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory));
10609new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); 10673new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory));
10610new Sfactory(this,"Constant",new SCreator(Constant_factory)); 10674new Sfactory(this,"Constant",new SCreator(Constant_factory));
10611new Sfactory(this,"State",new SCreator(State_factory)); 10675new Sfactory(this,"State",new SCreator(State_factory));
10612new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); 10676new Sfactory(this,"Event_13",new SCreator(Event_13_factory));
@@ -10622,8 +10686,10 @@ new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecreme
10622new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); 10686new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory));
10623new Sfactory(this,"Event_21",new SCreator(Event_21_factory)); 10687new Sfactory(this,"Event_21",new SCreator(Event_21_factory));
10624new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); 10688new Sfactory(this,"Event_22",new SCreator(Event_22_factory));
10689new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory));
10625new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); 10690new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory));
10626new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); 10691new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory));
10692new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory));
10627new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory)); 10693new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory));
10628new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory)); 10694new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory));
10629new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); 10695new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory));
@@ -10660,7 +10726,7 @@ new Sfactory(this,"SimpleAssignment_16",new SCreator(SimpleAssignment_16_factory
10660new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); 10726new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory));
10661new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); 10727new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory));
10662new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory)); 10728new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory));
10663new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); 10729new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory));
10664new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); 10730new Sfactory(this,"Event_15",new SCreator(Event_15_factory));
10665new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); 10731new Sfactory(this,"Event_16",new SCreator(Event_16_factory));
10666new Sfactory(this,"Event_32",new SCreator(Event_32_factory)); 10732new Sfactory(this,"Event_32",new SCreator(Event_32_factory));
@@ -10700,6 +10766,7 @@ new Sfactory(this,"Event_19",new SCreator(Event_19_factory));
10700new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); 10766new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory));
10701new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); 10767new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory));
10702new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); 10768new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory));
10769new Sfactory(this,"EmptyStatement_1",new SCreator(EmptyStatement_1_factory));
10703new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory)); 10770new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory));
10704new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); 10771new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory));
10705new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); 10772new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory));
@@ -10723,11 +10790,12 @@ new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory))
10723new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); 10790new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory));
10724new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); 10791new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory));
10725new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); 10792new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory));
10793new Sfactory(this,"EmptyStatement",new SCreator(EmptyStatement_factory));
10726new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); 10794new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory));
10727new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); 10795new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory));
10728new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); 10796new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory));
10729new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); 10797new Sfactory(this,"StatementList",new SCreator(StatementList_factory));
10730new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory)); 10798new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory));
10731new Sfactory(this,"WhileStatement_2",new SCreator(WhileStatement_2_factory)); 10799new Sfactory(this,"WhileStatement_2",new SCreator(WhileStatement_2_factory));
10732new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); 10800new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory));
10733new Sfactory(this,"States",new SCreator(States_factory)); 10801new Sfactory(this,"States",new SCreator(States_factory));
@@ -10761,7 +10829,6 @@ public static object ReturnStatement_1_factory(Parser yyp) { return new ReturnSt
10761public static object IdentDotExpression_factory(Parser yyp) { return new IdentDotExpression(yyp); } 10829public static object IdentDotExpression_factory(Parser yyp) { return new IdentDotExpression(yyp); }
10762public static object Argument_factory(Parser yyp) { return new Argument(yyp); } 10830public static object Argument_factory(Parser yyp) { return new Argument(yyp); }
10763public static object State_2_factory(Parser yyp) { return new State_2(yyp); } 10831public static object State_2_factory(Parser yyp) { return new State_2(yyp); }
10764public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); }
10765public static object GlobalDefinitions_3_factory(Parser yyp) { return new GlobalDefinitions_3(yyp); } 10832public static object GlobalDefinitions_3_factory(Parser yyp) { return new GlobalDefinitions_3(yyp); }
10766public static object GlobalDefinitions_4_factory(Parser yyp) { return new GlobalDefinitions_4(yyp); } 10833public static object GlobalDefinitions_4_factory(Parser yyp) { return new GlobalDefinitions_4(yyp); }
10767public static object Event_1_factory(Parser yyp) { return new Event_1(yyp); } 10834public static object Event_1_factory(Parser yyp) { return new Event_1(yyp); }
@@ -10829,12 +10896,11 @@ public static object ReturnStatement_factory(Parser yyp) { return new ReturnStat
10829public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); } 10896public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); }
10830public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); } 10897public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); }
10831public static object Statement_12_factory(Parser yyp) { return new Statement_12(yyp); } 10898public static object Statement_12_factory(Parser yyp) { return new Statement_12(yyp); }
10832public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); }
10833public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); } 10899public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); }
10834public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); } 10900public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); }
10835public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); } 10901public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); }
10836public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); } 10902public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); }
10837public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } 10903public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); }
10838public static object Constant_factory(Parser yyp) { return new Constant(yyp); } 10904public static object Constant_factory(Parser yyp) { return new Constant(yyp); }
10839public static object State_factory(Parser yyp) { return new State(yyp); } 10905public static object State_factory(Parser yyp) { return new State(yyp); }
10840public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } 10906public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); }
@@ -10850,8 +10916,10 @@ public static object IncrementDecrementExpression_8_factory(Parser yyp) { return
10850public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } 10916public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); }
10851public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); } 10917public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); }
10852public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } 10918public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); }
10919public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); }
10853public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } 10920public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); }
10854public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } 10921public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); }
10922public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); }
10855public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); } 10923public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); }
10856public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); } 10924public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); }
10857public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } 10925public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); }
@@ -10888,7 +10956,7 @@ public static object SimpleAssignment_16_factory(Parser yyp) { return new Simple
10888public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } 10956public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); }
10889public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } 10957public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); }
10890public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); } 10958public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); }
10891public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } 10959public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); }
10892public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } 10960public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); }
10893public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } 10961public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); }
10894public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); } 10962public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); }
@@ -10928,6 +10996,7 @@ public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); }
10928public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } 10996public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); }
10929public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } 10997public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); }
10930public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } 10998public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); }
10999public static object EmptyStatement_1_factory(Parser yyp) { return new EmptyStatement_1(yyp); }
10931public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); } 11000public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); }
10932public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } 11001public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); }
10933public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } 11002public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); }
@@ -10951,11 +11020,12 @@ public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoop
10951public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } 11020public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); }
10952public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } 11021public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); }
10953public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } 11022public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); }
11023public static object EmptyStatement_factory(Parser yyp) { return new EmptyStatement(yyp); }
10954public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } 11024public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); }
10955public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } 11025public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); }
10956public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } 11026public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); }
10957public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } 11027public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); }
10958public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); } 11028public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); }
10959public static object WhileStatement_2_factory(Parser yyp) { return new WhileStatement_2(yyp); } 11029public static object WhileStatement_2_factory(Parser yyp) { return new WhileStatement_2(yyp); }
10960public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } 11030public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); }
10961public static object States_factory(Parser yyp) { return new States(yyp); } 11031public static object States_factory(Parser yyp) { return new States(yyp); }
diff --git a/bin/Tools.dll b/bin/Tools.dll
index 073d04d..08dcf42 100644
--- a/bin/Tools.dll
+++ b/bin/Tools.dll
Binary files differ