-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlanguage-parser.tab.c
3398 lines (3194 loc) · 142 KB
/
language-parser.tab.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* A Bison parser, made from language-parser.y
by GNU Bison version 1.28 */
#define YYBISON 1 /* Identify Bison output. */
#define yyparse phpparse
#define yylex phplex
#define yyerror phperror
#define yylval phplval
#define yychar phpchar
#define yydebug phpdebug
#define yynerrs phpnerrs
#define LOGICAL_OR 257
#define LOGICAL_XOR 258
#define LOGICAL_AND 259
#define PHP_PRINT 260
#define PLUS_EQUAL 261
#define MINUS_EQUAL 262
#define MUL_EQUAL 263
#define DIV_EQUAL 264
#define CONCAT_EQUAL 265
#define MOD_EQUAL 266
#define AND_EQUAL 267
#define OR_EQUAL 268
#define XOR_EQUAL 269
#define SHIFT_LEFT_EQUAL 270
#define SHIFT_RIGHT_EQUAL 271
#define BOOLEAN_OR 272
#define BOOLEAN_AND 273
#define IS_EQUAL 274
#define IS_NOT_EQUAL 275
#define IS_SMALLER_OR_EQUAL 276
#define IS_GREATER_OR_EQUAL 277
#define SHIFT_LEFT 278
#define SHIFT_RIGHT 279
#define INCREMENT 280
#define DECREMENT 281
#define INT_CAST 282
#define DOUBLE_CAST 283
#define STRING_CAST 284
#define ARRAY_CAST 285
#define OBJECT_CAST 286
#define NEW 287
#define EXIT 288
#define IF 289
#define ELSEIF 290
#define ELSE 291
#define ENDIF 292
#define LNUMBER 293
#define DNUMBER 294
#define STRING 295
#define NUM_STRING 296
#define INLINE_HTML 297
#define CHARACTER 298
#define BAD_CHARACTER 299
#define ENCAPSED_AND_WHITESPACE 300
#define PHP_ECHO 301
#define DO 302
#define WHILE 303
#define ENDWHILE 304
#define FOR 305
#define ENDFOR 306
#define SWITCH 307
#define ENDSWITCH 308
#define CASE 309
#define DEFAULT 310
#define BREAK 311
#define CONTINUE 312
#define CONTINUED_WHILE 313
#define CONTINUED_DOWHILE 314
#define CONTINUED_FOR 315
#define OLD_FUNCTION 316
#define FUNCTION 317
#define IC_FUNCTION 318
#define PHP_CONST 319
#define RETURN 320
#define INCLUDE 321
#define REQUIRE 322
#define HIGHLIGHT_FILE 323
#define HIGHLIGHT_STRING 324
#define PHP_GLOBAL 325
#define PHP_STATIC 326
#define PHP_UNSET 327
#define PHP_ISSET 328
#define PHP_EMPTY 329
#define CLASS 330
#define EXTENDS 331
#define PHP_CLASS_OPERATOR 332
#define PHP_DOUBLE_ARROW 333
#define PHP_LIST 334
#define PHP_ARRAY 335
#define VAR 336
#define EVAL 337
#define DONE_EVAL 338
#define PHP_LINE 339
#define PHP_FILE 340
#define STRING_CONSTANT 341
#line 1 "language-parser.y"
/*
+----------------------------------------------------------------------+
| PHP HTML Embedded Scripting Language Version 3.0 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2000 PHP Development Team (See Credits file) |
+----------------------------------------------------------------------+
| This program is free software; you can redistribute it and/or modify |
| it under the terms of one of the following licenses: |
| |
| A) the GNU General Public License as published by the Free Software |
| Foundation; either version 2 of the License, or (at your option) |
| any later version. |
| |
| B) the PHP License as published by the PHP Development Team and |
| included in the distribution in the file: LICENSE |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of both licenses referred to here. |
| If you did not, or have any questions about PHP licensing, please |
| contact core@php.net. |
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
/* $Id: language-parser.y,v 1.186 2000/08/11 22:24:55 martin Exp $ */
/*
* LALR shift/reduce conflicts and how they are resolved:
*
* - 2 shift/reduce conflicts due to the dangeling elseif/else ambiguity. Solved by shift.
* - 1 shift/reduce conflict due to arrays within encapsulated strings. Solved by shift.
* - 1 shift/reduce conflict due to objects within encapsulated strings. Solved by shift.
* - 1 shift/reduce conflict due to while loop nesting ambiguity.
* - 1 shift/reduce conflict due to for loop nesting ambiguity.
*
*/
extern char *phptext;
extern int phpleng;
extern int wanted_exit_status;
#define YY_TLS_VARS
#include "php.h"
#include "php3_list.h"
#include "control_structures.h"
#include "main.h"
#include "functions/head.h"
#define YYERROR_VERBOSE
HashTable symbol_table; /* main symbol table */
HashTable function_table; /* function symbol table */
HashTable include_names; /* included file names are stored here, for error messages */
TokenCacheManager token_cache_manager;
Stack css; /* Control Structure Stack, used to store execution states */
Stack for_stack; /* For Stack, used in order to determine
* whether we're in the first iteration of
* a for loop or not
*/
Stack input_source_stack; /* Include Stack, used to keep track of
* of the file pointers when include()'ing
* files.
*/
Stack function_state_stack; /* Function State Stack, used to keep inforation
* about the function call, such as its
* loop nesting level, symbol table, etc.
*/
Stack switch_stack; /* Switch stack, used by the switch() control
* to determine whether a case was already
* matched.
*/
Stack variable_unassign_stack; /* Stack used to unassign variables that weren't properly defined */
HashTable *active_symbol_table; /* this always points to the
* currently active symbol
* table.
*/
int Execute; /* This flag is used by all parts of the program, in order
* to determine whether or not execution should take place.
* It's value is dependant on the value of the ExecuteFlag,
* the loop_change_level (if we're during a break or
* continue) and the function_state.returned (whether
* our current function has been return()ed from).
* In order to restore the correct value, after changing
* one of the above (e.g. when popping the css),
* one should use the macro Execute = SHOULD_EXECUTE;
*/
int ExecuteFlag;
int current_lineno; /* Current line number, broken with include()s */
int include_count;
/* This structure maintains information about the current active scope.
* Kept are the loop nesting level, information about break's and continue's
* we might be in, whether or not our current function has been return()'d
* from, and also, a pointer to the active symbol table. During variable
* -passing in a function call, it also contains a pointer to the
* soon-to-be-called function symbol table.
*/
FunctionState function_state;
FunctionState php3g_function_state_for_require; /* to save state when forcing execution in require() evaluation */
/* The following two variables are used when inside class definitions. */
char *class_name=NULL;
HashTable *class_symbol_table=NULL;
/* Variables used in function calls */
pval globals;
unsigned int param_index; /* used during function calls */
/* Temporary variable used for multi dimensional arrays */
pval *array_ptr;
extern int shutdown_requested;
#include "control_structures_inline.h"
int init_resource_list(void)
{
TLS_VARS;
return _php3_hash_init(&GLOBAL(list), 0, NULL, list_entry_destructor, 0);
}
int init_resource_plist(void)
{
TLS_VARS;
return _php3_hash_init(&GLOBAL(plist), 0, NULL, plist_entry_destructor, 1);
}
void destroy_resource_list(void)
{
TLS_VARS;
_php3_hash_destroy(&GLOBAL(list));
}
void destroy_resource_plist(void)
{
TLS_VARS;
_php3_hash_destroy(&GLOBAL(plist));
}
int clean_module_resource(list_entry *le, int *resource_id)
{
if (le->type == *resource_id) {
#if DEBUG
printf("Cleaning resource %d\n",*resource_id);
#endif
return 1;
} else {
return 0;
}
}
int clean_module_resource_destructors(list_destructors_entry *ld, int *module_number)
{
TLS_VARS;
if (ld->module_number == *module_number) {
_php3_hash_apply_with_argument(&GLOBAL(plist), (int (*)(void *,void *)) clean_module_resource, (void *) &(ld->resource_id));
return 1;
} else {
return 0;
}
}
#ifndef YYSTYPE
#define YYSTYPE int
#endif
#include <stdio.h>
#ifndef __cplusplus
#ifndef __STDC__
#define const
#endif
#endif
#define YYFINAL 626
#define YYFLAG -32768
#define YYNTBASE 117
#define YYTRANSLATE(x) ((unsigned)(x) <= 341 ? yytranslate[x] : 222)
static const char yytranslate[] = { 0,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 41, 114, 2, 112, 40, 26, 115, 109,
110, 38, 35, 3, 36, 37, 39, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 21, 111, 29,
8, 31, 20, 50, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
51, 2, 116, 25, 2, 113, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 107, 24, 108, 42, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 1, 4, 5, 6, 7,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 22, 23, 27, 28, 30, 32, 33, 34, 43,
44, 45, 46, 47, 48, 49, 52, 53, 54, 55,
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
76, 77, 78, 79, 80, 81, 82, 83, 84, 85,
86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
96, 97, 98, 99, 100, 101, 102, 103, 104, 105,
106
};
#if YYDEBUG != 0
static const short yyprhs[] = { 0,
0, 3, 4, 8, 9, 18, 19, 20, 33, 34,
35, 44, 45, 46, 47, 59, 60, 61, 62, 63,
64, 80, 81, 88, 91, 95, 98, 102, 103, 112,
113, 123, 124, 134, 137, 141, 144, 147, 148, 155,
156, 165, 169, 171, 174, 175, 180, 184, 190, 198,
204, 208, 210, 212, 217, 221, 226, 231, 237, 239,
244, 245, 246, 254, 255, 256, 257, 268, 269, 270,
271, 272, 273, 288, 289, 290, 291, 292, 302, 303,
304, 305, 306, 317, 318, 319, 323, 324, 325, 330,
331, 332, 333, 341, 342, 347, 348, 349, 357, 358,
363, 364, 367, 368, 371, 375, 379, 384, 389, 395,
401, 408, 410, 411, 413, 415, 418, 422, 426, 431,
436, 439, 444, 451, 454, 459, 461, 465, 468, 469,
473, 474, 483, 484, 494, 499, 506, 509, 514, 515,
519, 521, 522, 526, 528, 535, 539, 543, 547, 551,
555, 559, 563, 567, 571, 575, 579, 583, 586, 589,
592, 595, 596, 601, 602, 607, 608, 613, 614, 619,
623, 627, 631, 635, 639, 643, 647, 651, 655, 659,
663, 667, 670, 673, 676, 679, 683, 687, 691, 695,
699, 703, 707, 711, 712, 713, 721, 722, 723, 731,
733, 734, 735, 746, 749, 750, 751, 752, 762, 765,
768, 771, 774, 777, 779, 783, 788, 789, 793, 796,
798, 803, 807, 810, 812, 814, 818, 822, 824, 826,
828, 830, 832, 835, 838, 840, 842, 844, 846, 850,
852, 856, 860, 862, 864, 868, 870, 873, 874, 877,
880, 885, 886, 894, 897, 899, 902, 903, 908, 913,
917, 918, 921, 922, 926, 927, 929, 935, 939, 943,
945, 949, 956, 963, 971, 977, 983, 992, 1001, 1011,
1019, 1026, 1029, 1032, 1035, 1038, 1041, 1044, 1047, 1050,
1053, 1056, 1057, 1062, 1067, 1072, 1073, 1081
};
static const short yyrhs[] = { 117,
118, 0, 0, 107, 117, 108, 0, 0, 54, 109,
204, 110, 119, 118, 152, 160, 0, 0, 0, 54,
109, 204, 110, 21, 120, 117, 156, 162, 121, 57,
111, 0, 0, 0, 68, 109, 204, 110, 122, 141,
123, 142, 0, 0, 0, 0, 67, 124, 118, 68,
125, 109, 204, 110, 111, 126, 144, 0, 0, 0,
0, 0, 0, 70, 127, 109, 185, 128, 111, 185,
129, 111, 185, 130, 110, 139, 131, 147, 0, 0,
72, 109, 204, 110, 132, 140, 0, 76, 111, 0,
76, 204, 111, 0, 77, 111, 0, 77, 204, 111,
0, 0, 81, 60, 133, 171, 109, 117, 110, 111,
0, 0, 82, 60, 109, 134, 171, 110, 107, 117,
108, 0, 0, 83, 60, 135, 109, 171, 110, 107,
117, 108, 0, 85, 111, 0, 85, 204, 111, 0,
90, 176, 0, 91, 177, 0, 0, 95, 60, 136,
107, 179, 108, 0, 0, 95, 60, 96, 60, 137,
107, 179, 108, 0, 66, 184, 111, 0, 62, 0,
204, 111, 0, 0, 87, 138, 204, 111, 0, 88,
204, 111, 0, 89, 109, 204, 110, 111, 0, 89,
109, 204, 3, 204, 110, 111, 0, 102, 109, 204,
110, 111, 0, 86, 204, 111, 0, 111, 0, 118,
0, 21, 117, 71, 111, 0, 107, 164, 108, 0,
107, 111, 164, 108, 0, 21, 164, 73, 111, 0,
21, 111, 164, 73, 111, 0, 118, 0, 21, 117,
69, 111, 0, 0, 0, 142, 78, 109, 204, 110,
143, 141, 0, 0, 0, 0, 144, 79, 145, 118,
68, 146, 109, 204, 110, 111, 0, 0, 0, 0,
0, 0, 147, 80, 148, 109, 185, 149, 111, 185,
150, 111, 185, 151, 110, 139, 0, 0, 0, 0,
0, 152, 55, 109, 153, 204, 154, 110, 155, 118,
0, 0, 0, 0, 0, 156, 55, 109, 157, 204,
158, 110, 21, 159, 117, 0, 0, 0, 56, 161,
118, 0, 0, 0, 56, 21, 163, 117, 0, 0,
0, 0, 74, 204, 21, 165, 117, 166, 164, 0,
0, 75, 21, 167, 117, 0, 0, 0, 74, 204,
111, 168, 117, 169, 164, 0, 0, 75, 111, 170,
117, 0, 0, 172, 173, 0, 0, 112, 203, 0,
26, 112, 203, 0, 84, 112, 203, 0, 112, 203,
8, 202, 0, 173, 3, 112, 203, 0, 173, 3,
26, 112, 203, 0, 173, 3, 84, 112, 203, 0,
173, 3, 112, 203, 8, 202, 0, 175, 0, 0,
186, 0, 209, 0, 26, 209, 0, 175, 3, 186,
0, 175, 3, 209, 0, 175, 3, 26, 209, 0,
176, 3, 112, 211, 0, 112, 211, 0, 177, 3,
112, 211, 0, 177, 3, 112, 211, 8, 178, 0,
112, 211, 0, 112, 211, 8, 178, 0, 202, 0,
109, 204, 110, 0, 179, 180, 0, 0, 101, 183,
111, 0, 0, 81, 60, 181, 171, 109, 117, 110,
111, 0, 0, 82, 60, 109, 182, 171, 110, 107,
117, 108, 0, 183, 3, 112, 203, 0, 183, 3,
112, 203, 8, 204, 0, 112, 203, 0, 112, 203,
8, 204, 0, 0, 184, 3, 204, 0, 204, 0,
0, 185, 3, 204, 0, 204, 0, 99, 109, 208,
110, 8, 204, 0, 209, 8, 204, 0, 209, 9,
204, 0, 209, 10, 204, 0, 209, 11, 204, 0,
209, 12, 204, 0, 209, 13, 204, 0, 209, 14,
204, 0, 209, 15, 204, 0, 209, 16, 204, 0,
209, 17, 204, 0, 209, 18, 204, 0, 209, 19,
204, 0, 209, 43, 0, 43, 209, 0, 209, 44,
0, 44, 209, 0, 0, 204, 22, 187, 204, 0,
0, 204, 23, 188, 204, 0, 0, 204, 4, 189,
204, 0, 0, 204, 6, 190, 204, 0, 204, 5,
204, 0, 204, 24, 204, 0, 204, 25, 204, 0,
204, 26, 204, 0, 204, 37, 204, 0, 204, 35,
204, 0, 204, 36, 204, 0, 204, 38, 204, 0,
204, 39, 204, 0, 204, 40, 204, 0, 204, 33,
204, 0, 204, 34, 204, 0, 35, 204, 0, 36,
204, 0, 41, 204, 0, 42, 204, 0, 204, 27,
204, 0, 204, 28, 204, 0, 204, 29, 204, 0,
204, 30, 204, 0, 204, 31, 204, 0, 204, 32,
204, 0, 109, 204, 110, 0, 109, 204, 1, 0,
0, 0, 204, 20, 191, 204, 21, 192, 204, 0,
0, 0, 211, 193, 109, 174, 110, 194, 221, 0,
220, 0, 0, 0, 112, 207, 97, 211, 195, 109,
174, 110, 196, 221, 0, 52, 211, 0, 0, 0,
0, 52, 211, 197, 109, 198, 174, 110, 199, 221,
0, 45, 204, 0, 46, 204, 0, 47, 204, 0,
48, 204, 0, 49, 204, 0, 53, 0, 53, 109,
110, 0, 53, 109, 204, 110, 0, 0, 50, 200,
204, 0, 50, 1, 0, 201, 0, 100, 109, 217,
110, 0, 113, 219, 113, 0, 7, 204, 0, 58,
0, 59, 0, 114, 219, 114, 0, 115, 219, 115,
0, 106, 0, 60, 0, 104, 0, 105, 0, 201,
0, 35, 202, 0, 36, 202, 0, 60, 0, 209,
0, 186, 0, 211, 0, 107, 204, 108, 0, 203,
0, 107, 204, 108, 0, 207, 97, 203, 0, 212,
0, 203, 0, 208, 3, 209, 0, 209, 0, 208,
3, 0, 0, 112, 205, 0, 112, 212, 0, 112,
207, 97, 205, 0, 0, 112, 207, 97, 206, 51,
210, 214, 0, 112, 205, 0, 203, 0, 112, 212,
0, 0, 206, 51, 213, 214, 0, 214, 51, 204,
116, 0, 214, 51, 116, 0, 0, 215, 116, 0,
0, 216, 204, 116, 0, 0, 218, 0, 218, 3,
204, 98, 204, 0, 218, 3, 204, 0, 204, 98,
204, 0, 204, 0, 219, 112, 60, 0, 219, 112,
60, 51, 60, 116, 0, 219, 112, 60, 51, 61,
116, 0, 219, 112, 60, 51, 112, 60, 116, 0,
219, 112, 60, 97, 60, 0, 219, 112, 107, 60,
108, 0, 219, 112, 107, 60, 51, 60, 116, 108,
0, 219, 112, 107, 60, 51, 61, 116, 108, 0,
219, 112, 107, 60, 51, 112, 60, 116, 108, 0,
219, 112, 107, 60, 97, 60, 108, 0, 219, 112,
107, 112, 60, 108, 0, 219, 60, 0, 219, 61,
0, 219, 65, 0, 219, 63, 0, 219, 64, 0,
219, 51, 0, 219, 116, 0, 219, 107, 0, 219,
108, 0, 219, 97, 0, 0, 92, 109, 209, 110,
0, 93, 109, 209, 110, 0, 94, 109, 209, 110,
0, 0, 81, 60, 171, 109, 117, 110, 111, 0,
82, 60, 109, 171, 110, 107, 117, 108, 0
};
#endif
#if YYDEBUG != 0
static const short yyrline[] = { 0,
266, 268, 272, 274, 274, 275, 275, 275, 276, 276,
277, 277, 277, 277, 278, 278, 279, 280, 281, 282,
283, 283, 283, 284, 285, 286, 287, 288, 289, 290,
291, 292, 292, 293, 294, 295, 296, 297, 297, 298,
298, 299, 300, 301, 302, 302, 303, 304, 305, 306,
307, 308, 312, 314, 317, 319, 320, 321, 324, 326,
329, 331, 331, 335, 337, 337, 337, 341, 343, 344,
345, 346, 347, 351, 353, 354, 354, 355, 358, 360,
361, 361, 362, 365, 367, 368, 371, 373, 374, 377,
379, 379, 380, 380, 380, 381, 381, 382, 382, 382,
386, 388, 388, 392, 394, 395, 396, 397, 398, 399,
400, 404, 406, 410, 412, 413, 414, 415, 416, 419,
421, 425, 427, 428, 429, 434, 436, 440, 442, 446,
448, 449, 450, 451, 456, 458, 459, 460, 464, 466,
467, 471, 473, 474, 478, 480, 481, 482, 483, 484,
485, 486, 487, 488, 489, 490, 491, 492, 493, 494,
495, 496, 496, 497, 497, 498, 498, 499, 499, 500,
501, 502, 503, 504, 505, 506, 507, 508, 509, 510,
511, 512, 513, 514, 515, 516, 517, 518, 519, 520,
521, 522, 523, 524, 525, 526, 527, 528, 529, 530,
531, 532, 533, 534, 535, 536, 537, 538, 539, 540,
541, 542, 543, 544, 545, 546, 547, 547, 548, 549,
550, 551, 552, 555, 557, 558, 559, 560, 561, 562,
563, 566, 568, 569, 572, 578, 580, 584, 586, 590,
592, 597, 599, 600, 603, 611, 620, 627, 641, 643,
644, 645, 645, 649, 651, 652, 655, 656, 660, 662,
663, 663, 664, 664, 668, 670, 673, 675, 676, 677,
681, 683, 684, 685, 686, 687, 688, 689, 690, 691,
692, 693, 694, 695, 696, 697, 698, 699, 700, 701,
702, 703, 707, 709, 710, 714, 716, 717
};
#endif
#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
static const char * const yytname[] = { "$","error","$undefined.","','","LOGICAL_OR",
"LOGICAL_XOR","LOGICAL_AND","PHP_PRINT","'='","PLUS_EQUAL","MINUS_EQUAL","MUL_EQUAL",
"DIV_EQUAL","CONCAT_EQUAL","MOD_EQUAL","AND_EQUAL","OR_EQUAL","XOR_EQUAL","SHIFT_LEFT_EQUAL",
"SHIFT_RIGHT_EQUAL","'?'","':'","BOOLEAN_OR","BOOLEAN_AND","'|'","'^'","'&'",
"IS_EQUAL","IS_NOT_EQUAL","'<'","IS_SMALLER_OR_EQUAL","'>'","IS_GREATER_OR_EQUAL",
"SHIFT_LEFT","SHIFT_RIGHT","'+'","'-'","'.'","'*'","'/'","'%'","'!'","'~'","INCREMENT",
"DECREMENT","INT_CAST","DOUBLE_CAST","STRING_CAST","ARRAY_CAST","OBJECT_CAST",
"'@'","'['","NEW","EXIT","IF","ELSEIF","ELSE","ENDIF","LNUMBER","DNUMBER","STRING",
"NUM_STRING","INLINE_HTML","CHARACTER","BAD_CHARACTER","ENCAPSED_AND_WHITESPACE",
"PHP_ECHO","DO","WHILE","ENDWHILE","FOR","ENDFOR","SWITCH","ENDSWITCH","CASE",
"DEFAULT","BREAK","CONTINUE","CONTINUED_WHILE","CONTINUED_DOWHILE","CONTINUED_FOR",
"OLD_FUNCTION","FUNCTION","IC_FUNCTION","PHP_CONST","RETURN","INCLUDE","REQUIRE",
"HIGHLIGHT_FILE","HIGHLIGHT_STRING","PHP_GLOBAL","PHP_STATIC","PHP_UNSET","PHP_ISSET",
"PHP_EMPTY","CLASS","EXTENDS","PHP_CLASS_OPERATOR","PHP_DOUBLE_ARROW","PHP_LIST",
"PHP_ARRAY","VAR","EVAL","DONE_EVAL","PHP_LINE","PHP_FILE","STRING_CONSTANT",
"'{'","'}'","'('","')'","';'","'$'","'`'","'\\\"'","'\\''","']'","statement_list",
"statement","@1","@2","@3","@4","@5","@6","@7","@8","@9","@10","@11","@12","@13",
"@14","@15","@16","@17","@18","@19","@20","for_statement","switch_case_list",
"while_statement","while_iterations","@21","do_while_iterations","@22","@23",
"for_iterations","@24","@25","@26","@27","elseif_list","@28","@29","@30","new_elseif_list",
"@31","@32","@33","else_single","@34","new_else_single","@35","case_list","@36",
"@37","@38","@39","@40","@41","parameter_list","@42","non_empty_parameter_list",
"function_call_parameter_list","non_empty_function_call_parameter_list","global_var_list",
"static_var_list","unambiguous_static_assignment","class_statement_list","class_statement",
"@43","@44","class_variable_declaration","echo_expr_list","for_expr","expr_without_variable",
"@45","@46","@47","@48","@49","@50","@51","@52","@53","@54","@55","@56","@57",
"@58","scalar","signed_scalar","varname_scalar","expr","unambiguous_variable_name",
"unambiguous_array_name","unambiguous_class_name","assignment_list","assignment_variable_pointer",
"@59","var","multi_dimensional_array","@60","dimensions","@61","@62","array_pair_list",
"non_empty_array_pair_list","encaps_list","internal_functions_in_yacc","possible_function_call", NULL
};
#endif
static const short yyr1[] = { 0,
117, 117, 118, 119, 118, 120, 121, 118, 122, 123,
118, 124, 125, 126, 118, 127, 128, 129, 130, 131,
118, 132, 118, 118, 118, 118, 118, 133, 118, 134,
118, 135, 118, 118, 118, 118, 118, 136, 118, 137,
118, 118, 118, 118, 138, 118, 118, 118, 118, 118,
118, 118, 139, 139, 140, 140, 140, 140, 141, 141,
142, 143, 142, 144, 145, 146, 144, 147, 148, 149,
150, 151, 147, 152, 153, 154, 155, 152, 156, 157,
158, 159, 156, 160, 161, 160, 162, 163, 162, 164,
165, 166, 164, 167, 164, 168, 169, 164, 170, 164,
172, 171, 171, 173, 173, 173, 173, 173, 173, 173,
173, 174, 174, 175, 175, 175, 175, 175, 175, 176,
176, 177, 177, 177, 177, 178, 178, 179, 179, 180,
181, 180, 182, 180, 183, 183, 183, 183, 184, 184,
184, 185, 185, 185, 186, 186, 186, 186, 186, 186,
186, 186, 186, 186, 186, 186, 186, 186, 186, 186,
186, 187, 186, 188, 186, 189, 186, 190, 186, 186,
186, 186, 186, 186, 186, 186, 186, 186, 186, 186,
186, 186, 186, 186, 186, 186, 186, 186, 186, 186,
186, 186, 186, 191, 192, 186, 193, 194, 186, 186,
195, 196, 186, 186, 197, 198, 199, 186, 186, 186,
186, 186, 186, 186, 186, 186, 200, 186, 186, 186,
186, 186, 186, 201, 201, 201, 201, 201, 201, 201,
201, 202, 202, 202, 203, 204, 204, 205, 205, 206,
206, 207, 207, 207, 208, 208, 208, 208, 209, 209,
209, 210, 209, 211, 211, 211, 213, 212, 214, 214,
215, 214, 216, 214, 217, 217, 218, 218, 218, 218,
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
219, 219, 219, 219, 219, 219, 219, 219, 219, 219,
219, 219, 220, 220, 220, 221, 221, 221
};
static const short yyr2[] = { 0,
2, 0, 3, 0, 8, 0, 0, 12, 0, 0,
8, 0, 0, 0, 11, 0, 0, 0, 0, 0,
15, 0, 6, 2, 3, 2, 3, 0, 8, 0,
9, 0, 9, 2, 3, 2, 2, 0, 6, 0,
8, 3, 1, 2, 0, 4, 3, 5, 7, 5,
3, 1, 1, 4, 3, 4, 4, 5, 1, 4,
0, 0, 7, 0, 0, 0, 10, 0, 0, 0,
0, 0, 14, 0, 0, 0, 0, 9, 0, 0,
0, 0, 10, 0, 0, 3, 0, 0, 4, 0,
0, 0, 7, 0, 4, 0, 0, 7, 0, 4,
0, 2, 0, 2, 3, 3, 4, 4, 5, 5,
6, 1, 0, 1, 1, 2, 3, 3, 4, 4,
2, 4, 6, 2, 4, 1, 3, 2, 0, 3,
0, 8, 0, 9, 4, 6, 2, 4, 0, 3,
1, 0, 3, 1, 6, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 2, 2, 2,
2, 0, 4, 0, 4, 0, 4, 0, 4, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 2, 2, 2, 2, 3, 3, 3, 3, 3,
3, 3, 3, 0, 0, 7, 0, 0, 7, 1,
0, 0, 10, 2, 0, 0, 0, 9, 2, 2,
2, 2, 2, 1, 3, 4, 0, 3, 2, 1,
4, 3, 2, 1, 1, 3, 3, 1, 1, 1,
1, 1, 2, 2, 1, 1, 1, 1, 3, 1,
3, 3, 1, 1, 3, 1, 2, 0, 2, 2,
4, 0, 7, 2, 1, 2, 0, 4, 4, 3,
0, 2, 0, 3, 0, 1, 5, 3, 3, 1,
3, 6, 6, 7, 5, 5, 8, 8, 9, 7,
6, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 0, 4, 4, 4, 0, 7, 8
};
static const short yydefact[] = { 2,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 214, 0, 224, 225, 229,
43, 139, 12, 0, 16, 0, 0, 0, 0, 0,
0, 0, 0, 45, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 230, 231, 228, 2, 0,
52, 0, 292, 292, 292, 1, 237, 220, 255, 0,
236, 197, 200, 223, 182, 183, 184, 185, 0, 159,
161, 209, 210, 211, 212, 213, 219, 0, 235, 0,
204, 0, 0, 0, 141, 0, 0, 0, 0, 24,
0, 26, 0, 28, 0, 32, 34, 0, 0, 0,
0, 0, 0, 36, 0, 37, 0, 0, 0, 38,
248, 265, 0, 0, 0, 0, 255, 249, 0, 0,
238, 250, 0, 0, 0, 166, 0, 168, 194, 162,
164, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 44, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 158, 160, 0, 249, 0, 250, 218, 255, 254,
256, 0, 215, 0, 0, 0, 42, 0, 0, 142,
0, 25, 27, 101, 30, 0, 35, 51, 0, 47,
0, 121, 0, 124, 0, 0, 0, 0, 0, 0,
0, 246, 270, 0, 266, 0, 3, 193, 192, 0,
257, 0, 287, 282, 283, 285, 286, 284, 291, 289,
290, 0, 222, 288, 226, 227, 0, 170, 0, 0,
0, 0, 171, 172, 173, 186, 187, 188, 189, 190,
191, 180, 181, 175, 176, 174, 177, 178, 179, 146,
147, 148, 149, 150, 151, 152, 153, 154, 155, 156,
157, 113, 0, 206, 216, 4, 140, 13, 9, 17,
144, 22, 0, 0, 101, 101, 46, 0, 0, 0,
0, 0, 293, 294, 295, 40, 129, 247, 0, 0,
221, 0, 0, 239, 263, 255, 251, 0, 238, 271,
0, 167, 169, 0, 163, 165, 0, 0, 112, 237,
0, 236, 113, 6, 0, 0, 0, 0, 0, 0,
2, 0, 0, 0, 102, 0, 0, 0, 48, 120,
0, 0, 229, 0, 125, 232, 126, 122, 0, 0,
245, 0, 269, 268, 50, 258, 0, 0, 252, 0,
0, 0, 0, 0, 195, 116, 198, 0, 0, 2,
74, 0, 2, 59, 10, 143, 142, 90, 90, 23,
0, 0, 0, 104, 0, 0, 0, 0, 233, 234,
0, 0, 129, 0, 0, 0, 39, 128, 145, 0,
0, 262, 0, 263, 113, 0, 0, 0, 275, 0,
0, 276, 0, 0, 296, 0, 237, 236, 207, 79,
84, 0, 0, 61, 18, 0, 0, 90, 0, 90,
0, 0, 105, 106, 0, 0, 0, 0, 2, 2,
49, 127, 123, 0, 131, 0, 0, 0, 267, 260,
0, 264, 253, 0, 272, 273, 0, 0, 0, 0,
0, 281, 196, 0, 0, 199, 119, 296, 87, 0,
85, 5, 0, 0, 11, 0, 0, 94, 99, 0,
0, 0, 55, 29, 107, 0, 0, 108, 0, 0,
41, 101, 133, 137, 0, 130, 259, 202, 274, 0,
0, 0, 280, 101, 0, 208, 0, 0, 7, 75,
0, 14, 60, 0, 142, 91, 96, 2, 2, 0,
57, 56, 109, 110, 0, 31, 33, 0, 101, 0,
0, 296, 277, 278, 0, 0, 101, 80, 88, 0,
0, 86, 64, 0, 19, 2, 2, 95, 100, 58,
111, 2, 0, 138, 135, 203, 279, 2, 0, 0,
2, 0, 76, 15, 0, 0, 92, 97, 0, 0,
0, 0, 0, 81, 89, 8, 0, 65, 62, 0,
90, 90, 0, 2, 136, 0, 2, 0, 77, 0,
0, 2, 53, 20, 93, 98, 132, 0, 297, 0,
0, 0, 0, 63, 0, 68, 134, 298, 82, 78,
66, 0, 21, 2, 0, 54, 69, 83, 0, 0,
0, 142, 0, 70, 67, 0, 142, 71, 0, 142,
72, 0, 0, 73, 0, 0
};
static const short yydefgoto[] = { 1,
56, 315, 360, 530, 317, 414, 86, 316, 533, 88,
319, 466, 556, 596, 320, 184, 275, 186, 200, 339,
100, 584, 370, 365, 465, 581, 554, 580, 605, 603,
610, 616, 619, 622, 411, 531, 567, 592, 459, 550,
578, 604, 462, 501, 499, 551, 419, 536, 571, 508,
537, 572, 509, 273, 274, 325, 308, 309, 104, 106,
335, 340, 388, 482, 519, 438, 84, 270, 57, 231,
232, 227, 229, 230, 404, 164, 405, 350, 522, 172,
313, 458, 78, 58, 337, 59, 60, 297, 119, 120,
201, 61, 394, 62, 122, 295, 346, 347, 348, 204,
205, 123, 63, 456
};
static const short yypact[] = {-32768,
578, 2278, 2278, 2278, 2278, 2278, -66, -66, 2278, 2278,
2278, 2278, 2278, 377, -11, -59, -57,-32768,-32768, -55,
-32768, 2278,-32768, -52,-32768, -32, 1942, 1968, 6, 22,
24, 2051, 2278,-32768, 2278, -12, 68, 91, 0, 8,
17, 110, 109, 111, 124,-32768,-32768,-32768,-32768, 2278,
-32768, -24,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 2418,
749,-32768,-32768, 3436, 200, 200,-32768,-32768, -24,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768, 2278,-32768, -24,
137, 2077, 2278, 36, 3344, 1853, 2278, 139, 2278,-32768,
2465,-32768, 2508,-32768, 142,-32768,-32768, 2555, 2598, 2278,
2645, 2278, -11, 247, -11, 251, -66, -66, -66, 162,
-66, 2278, 2278, 778, 564, 2278, 5, 150, 204, 164,
-32768, -42, 242, 2455, 2545,-32768, 2278,-32768,-32768,-32768,
-32768, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278,
2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278,-32768, 2278,
2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278,
2278,-32768,-32768, 153,-32768, 166, 168,-32768, 220,-32768,
-32768, 170,-32768, 2735, 2778, 2278,-32768, 212, 2824, 2278,
2867,-32768,-32768, 175,-32768, 176,-32768,-32768, 2688,-32768,
2329,-32768, 182, 281, 183, 186, 187, 188, 240, 194,
58,-32768, 3223, 198, 301, 2913,-32768,-32768,-32768, 3180,
-32768, -24,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768, -13,-32768,-32768,-32768,-32768, 2278, 3415, 2278, 2278,
2278, 2278, 744, 3505, 3519, 3533, 3533, 1490, 1490, 1490,
1490, 171, 171, 200, 200, 200,-32768,-32768,-32768, 3436,
3436, 3436, 3436, 3436, 3436, 3436, 3436, 3436, 3436, 3436,
3436, 2167, -24,-32768,-32768, 288, 3344,-32768,-32768, 307,
3344,-32768, 206, 15, 209, 209,-32768, 2278, 210, -11,
177, -11,-32768,-32768,-32768,-32768,-32768, -66, 317, 2278,
-32768, 2278, 215, 276, 213, 7,-32768, 277, 221, 9,
-9, 3380, 3436, 3304, 3473, 3490, -66, 223, 328, 59,
3344, 435, 2167,-32768, 1853, 225, 867, 2278, 226, 14,
-32768, 229, 230, 278, 340, 234, 235, 2956,-32768,-32768,
208, 208,-32768, 2278,-32768,-32768,-32768, 339, 241, 133,
-32768, 2278, 3344, 3267,-32768, 300, 236, 2278,-32768, 244,
-23, 297, -22, 299,-32768,-32768,-32768, 2197, 252,-32768,
-32768, 2278,-32768,-32768,-32768, 3344, 2278, -6, -3,-32768,
956, 278, 278, 353, 140, 256, 257, 255,-32768,-32768,
3002, 177,-32768, 308, 310, 259,-32768,-32768, 3436, 2278,
696,-32768, 159, 213, 2167, 258, 260, 312,-32768, -16,
313,-32768, 267, 2278, 31, -66, 61, 2417,-32768, 1853,
73, 3045, 1045,-32768, 307, 2278, -4, 98, 294, 98,
269, 268,-32768,-32768, 208, 270, 271, 278,-32768,-32768,
-32768,-32768,-32768, 141,-32768, 272, 278, 50, 3344,-32768,
690,-32768, 300, 275,-32768,-32768, 264, 274, 279, 332,
286,-32768, 3455, 336, 337,-32768,-32768, 31, 121, 289,
-32768,-32768, 290, 292, 321, 293, 2375,-32768,-32768, 334,
298, 302,-32768,-32768,-32768, 278, 278, 397, 1134, 1223,
-32768, 175,-32768, 400, 303,-32768,-32768,-32768,-32768, 320,
324, 295,-32768, 175, 325,-32768, 333, 395,-32768,-32768,
1853,-32768,-32768, 346, 2278,-32768,-32768,-32768,-32768, 322,
-32768,-32768,-32768,-32768, 208,-32768,-32768, 347, 209, 2278,
278, 31,-32768,-32768, 349, 350, 209,-32768,-32768, 384,
2278,-32768,-32768, 2278, 307,-32768,-32768, 1853, 1853,-32768,
-32768,-32768, 348, 3344, 452,-32768,-32768,-32768, 351, 2278,
-32768, 352, 3344, 383, 3091, 354, 1853, 1853, 1312, 360,
2278, 1401, 361, 3344, 1853,-32768, 362,-32768,-32768, 1497,
98, 98, 363,-32768, 3344, 364,-32768, 370,-32768, 1853,
867,-32768,-32768,-32768,-32768,-32768,-32768, 1586,-32768, 1675,
464, 1853, 405,-32768, 1764,-32768,-32768,-32768,-32768,-32768,
-32768, 376, 408,-32768, 386,-32768,-32768, 1853, 2278, 387,
3134, 2278, 390, 307,-32768, 391, 2278, 307, 393, 2278,
307, 388, 1497,-32768, 497,-32768
};
static const short yypgoto[] = { -43,
-70,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768, -117,-32768, -74,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,-32768,-32768, -355,-32768,-32768,-32768,
-32768,-32768,-32768, -263,-32768,-32768, -279,-32768,-32768,-32768,
127, 129,-32768,-32768,-32768,-32768,-32768, -343, -235,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768, -258, -310, -37, -2, 152, -172, 444,
-32768, 11,-32768, -10, 10,-32768, 120,-32768,-32768,-32768,
-32768, 146,-32768, -430
};
#define YYLAST 3573
static const short yytable[] = { 64,
65, 66, 67, 68, 81, 114, 72, 73, 74, 75,
76, 326, 327, 421, 117, 178, 468, 70, 71, 85,
379, 380, 336, 415, 91, 93, 310, 496, 400, 98,
99, 117, 101, 359, 368, 79, 396, 397, 176, 298,
322, 121, 169, 448, 449, 69, 300, 115, 79, 82,
353, 83, 485, -235, -243, -240, 87, -240, 121, 351,
288, -114, 470, -117, 472, 94, -256, 416, 417, 121,
416, 417, 336, 336, 401, 168, 89, 310, 167, 174,
175, 95, 116, 96, 179, 402, 181, 80, 398, 171,
298, 546, 192, 301, 194, 450, 102, 189, 323, 191,
80, -244, 354, -242, 418, 352, 469, 420, 107, 203,
206, 454, 455, 210, 475, 444, 108, 196, 197, 198,
369, 202, 407, 336, 228, 109, 324, 460, 461, 233,
234, 235, 236, 237, 238, 239, 240, 241, 242, 243,
244, 245, 246, 247, 248, 249, 177, 250, 251, 252,
253, 254, 255, 256, 257, 258, 259, 260, 261, 310,
486, 535, 126, 127, 128, 426, 336, 289, -114, 110,
-117, 416, 417, 267, 296, 497, 498, 271, 129, 103,
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
140, 141, 142, 143, 144, 145, 146, 147, 148, 124,
125, 299, 105, 118, 541, 143, 144, 145, 146, 147,
148, 331, 332, 384, 385, 585, 586, 111, 518, 112,
165, 384, 385, 427, 302, 296, 303, 304, 305, 306,
526, 170, 113, 386, 18, 19, 333, 146, 147, 148,
387, 386, 331, 332, 361, -205, 364, 180, 481, 193,
185, 428, 121, 195, 211, 543, 336, 199, -254, 311,
212, 262, 263, 549, -243, 18, 19, 333, 614, 330,
-240, 338, 312, 618, 442, 328, 621, 371, 264, 268,
46, 47, 48, -103, 276, 334, 374, 343, 281, 344,
54, 55, 213, 280, 282, 283, 284, 285, 341, 286,
287, 214, 215, 292, 216, 217, 218, 291, 314, 318,
311, 46, 47, 48, 321, 366, 410, 356, -103, 413,
329, 54, 55, 312, 342, 345, -241, 349, -261, -201,
358, 381, 357, 362, 423, 424, 367, 79, 219, 389,
372, 373, 375, 376, 377, 393, 382, 383, 220, 221,
391, 392, 395, 222, 223, 311, 399, 224, 403, 412,
425, 409, 429, 430, 271, 431, 471, 435, 408, 436,
437, 447, 451, 445, 452, 446, 473, 77, 474, 489,
483, 476, 477, -217, 488, 479, 480, 439, 441, 490,
478, 492, 311, 493, 491, 494, 495, 500, 504, 484,
502, 453, 503, 505, 515, 312, 510, 520, 511, 512,
525, -217, -217, 467, 521, 529, 457, -217, -217, -217,
-217, -217, -217, -217, -217, -217, -217, 523, -217, -217,
532, 524, 540, 527, -217, -217, -217, -115, 513, 514,
552, 528, 150, 151, 152, 153, 154, 155, 156, 157,
158, 159, 160, 161, 534, 542, 547, 560, 548, 561,
563, 568, 566, 570, 538, 539, 574, 577, -217, -217,
-217, 579, 601, 587, 589, -217, -217, 162, 163, 591,
-217, -217, -217, 545, 599, -217, 606, 607, -217, -217,
-217, -217, 557, 558, 609, 612, 626, 623, 559, 583,
615, 617, 271, 620, 562, 624, 594, 565, 433, 593,
364, 434, 166, 443, 0, 0, 0, 544, 0, 0,
0, 600, 0, 0, 0, 0, 0, 0, 553, 0,
588, 555, 0, 590, 0, 0, 0, 0, 595, 0,
0, 0, 0, 0, -115, 0, 0, 564, 0, 0,
0, 0, 583, 0, 0, 0, 0, 0, 575, 0,
608, 0, 0, 0, 208, 0, 0, 126, 127, 128,
0, 0, 0, 0, 0, 0, 0, 625, 0, 0,
0, 0, 0, 129, 2, 130, 131, 132, 133, 134,
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
145, 146, 147, 148, 0, 0, 611, 0, 0, 271,
0, 0, 3, 4, 271, 0, 0, 271, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 0, 15,
16, 17, 0, 0, 0, 18, 19, 20, 0, 21,
0, 0, 0, 22, 23, 24, 0, 25, 0, 26,
0, 0, 0, 27, 28, 0, 0, 0, 29, 30,
31, 0, 32, 33, 34, 35, 36, 37, 38, 39,
40, 41, 42, 209, 0, 0, 43, 44, 0, 45,
0, 46, 47, 48, 49, 0, 50, 0, 51, 52,
53, 54, 55, 126, 127, 128, 0, 0, 0, 0,
0, 0, 2, 0, 0, 0, 0, 0, 0, 129,
0, 130, 131, 132, 133, 134, 135, 136, 137, 138,
139, 140, 141, 142, 143, 144, 145, 146, 147, 148,
3, 4, 0, 0, 0, 0, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 0, 15, 16, 0,
0, 0, 0, 18, 19, 20, 150, 151, 152, 153,
154, 155, 156, 157, 158, 159, 160, 161, 133, 134,
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
145, 146, 147, 148, 2, 0, 0, 39, 40, 41,
0, 162, 163, 0, 43, 44, 0, 0, 0, 46,
47, 48, 0, 0, 50, 487, 0, 52, 53, 54,
55, 440, 3, 4, 0, 0, 0, 0, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 0, 15,
16, 17, 0, 0, 0, 18, 19, 20, 0, 21,
0, 0, 0, 22, 23, 24, 0, 25, 0, 26,
0, 0, 0, 27, 28, 0, 0, 0, 29, 30,
31, 0, 32, 33, 34, 35, 36, 37, 38, 39,
40, 41, 42, 2, 0, 0, 43, 44, 0, 45,
0, 46, 47, 48, 49, 207, 50, 363, 51, 52,
53, 54, 55, 0, 0, 0, 0, 0, 0, 0,
0, 3, 4, 0, 0, 0, 0, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 0, 15, 16,
17, 0, 0, 0, 18, 19, 20, 0, 21, 0,
0, 0, 22, 23, 24, 0, 25, 0, 26, 0,
0, 0, 27, 28, 0, 0, 0, 29, 30, 31,
0, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 2, 0, 0, 43, 44, 0, 45, 0,
46, 47, 48, 49, 0, 50, 0, 51, 52, 53,
54, 55, 0, 0, 0, 0, 0, 0, 0, 0,
3, 4, 0, 0, 0, 0, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 0, 15, 16, 17,
0, 0, 0, 18, 19, 20, 0, 21, 0, 0,
0, 22, 23, 24, 0, 25, 0, 26, 0, 0,
0, 27, 28, 0, 0, 0, 29, 30, 31, 0,
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
42, 2, 0, 0, 43, 44, 0, 45, 0, 46,
47, 48, 49, 0, 50, 422, 51, 52, 53, 54,
55, 0, 0, 0, 0, 0, 0, 0, 0, 3,
4, 0, 0, 0, 0, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 0, 15, 16, 17, 0,
0, 0, 18, 19, 20, 0, 21, 0, 0, 0,
22, 23, 24, 464, 25, 0, 26, 0, 0, 0,
27, 28, 0, 0, 0, 29, 30, 31, 0, 32,
33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
2, 0, 0, 43, 44, 0, 45, 0, 46, 47,
48, 49, 0, 50, 0, 51, 52, 53, 54, 55,
0, 0, 0, 0, 0, 0, 0, 0, 3, 4,
0, 0, 0, 0, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 0, 15, 16, 17, 0, 0,
0, 18, 19, 20, 0, 21, 0, 0, 0, 22,
23, 24, 0, 25, 0, 26, 0, 0, 0, 27,
28, 0, 0, 0, 29, 30, 31, 0, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 2,
0, 0, 43, 44, 0, 45, 0, 46, 47, 48,
49, 516, 50, 0, 51, 52, 53, 54, 55, 0,
0, 0, 0, 0, 0, 0, 0, 3, 4, 0,
0, 0, 0, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 0, 15, 16, 17, 0, 0, 0,
18, 19, 20, 0, 21, 0, 0, 0, 22, 23,
24, 0, 25, 0, 26, 0, 0, 0, 27, 28,
0, 0, 0, 29, 30, 31, 0, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 2, 0,
0, 43, 44, 0, 45, 0, 46, 47, 48, 49,
517, 50, 0, 51, 52, 53, 54, 55, 0, 0,
0, 0, 0, 0, 0, 0, 3, 4, 0, 0,
0, 0, 5, 6, 7, 8, 9, 10, 11, 12,
13, 14, 0, 15, 16, 17, 0, 0, 0, 18,
19, 20, 0, 21, 0, 0, 0, 22, 23, 24,
0, 25, 0, 26, 0, 0, 0, 27, 28, 0,
0, 0, 29, 30, 31, 0, 32, 33, 34, 35,
36, 37, 38, 39, 40, 41, 42, 2, 0, 0,
43, 44, 0, 45, 0, 46, 47, 48, 49, 0,
50, 573, 51, 52, 53, 54, 55, 0, 0, 0,
0, 0, 0, 0, 0, 3, 4, 0, 0, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 0, 15, 16, 17, 0, 0, 0, 18, 19,
20, 0, 21, 0, 0, 0, 22, 23, 24, 0,
25, 0, 26, 0, 0, 0, 27, 28, 0, 0,
0, 29, 30, 31, 0, 32, 33, 34, 35, 36,
37, 38, 39, 40, 41, 42, 0, 0, 0, 43,
44, 0, 45, 2, 46, 47, 48, 49, 0, 50,
576, 51, 52, 53, 54, 55, 0, 582,-32768,-32768,
-32768,-32768, 141, 142, 143, 144, 145, 146, 147, 148,
0, 3, 4, 0, 0, 0, 0, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 0, 15, 16,
17, 0, 0, 0, 18, 19, 20, 0, 21, 0,
0, 0, 22, 23, 24, 0, 25, 0, 26, 0,
0, 0, 27, 28, 0, 0, 0, 29, 30, 31,
0, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 2, 0, 0, 43, 44, 0, 45, 0,
46, 47, 48, 49, 0, 50, 0, 51, 52, 53,
54, 55, 0, 0, 0, 0, 0, 0, 0, 0,
3, 4, 0, 0, 0, 0, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 0, 15, 16, 17,
0, 0, 0, 18, 19, 20, 0, 21, 0, 0,
0, 22, 23, 24, 0, 25, 0, 26, 0, 0,
0, 27, 28, 0, 0, 0, 29, 30, 31, 0,
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
42, 2, 0, 0, 43, 44, 0, 45, 0, 46,
47, 48, 49, 597, 50, 0, 51, 52, 53, 54,
55, 0, 0, 0, 0, 0, 0, 0, 0, 3,
4, 0, 0, 0, 0, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 0, 15, 16, 17, 0,
0, 0, 18, 19, 20, 0, 21, 0, 0, 0,
22, 23, 24, 0, 25, 0, 26, 0, 0, 0,
27, 28, 0, 0, 0, 29, 30, 31, 0, 32,
33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
2, 0, 0, 43, 44, 0, 45, 0, 46, 47,
48, 49, 598, 50, 0, 51, 52, 53, 54, 55,
0, 0, 0, 0, 0, 0, 0, 0, 3, 4,
0, 0, 0, 0, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 0, 15, 16, 17, 0, 0,
0, 18, 19, 20, 0, 21, 0, 0, 0, 22,
23, 24, 0, 25, 602, 26, 0, 0, 0, 27,
28, 0, 0, 0, 29, 30, 31, 0, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 2,
0, 0, 43, 44, 0, 45, 0, 46, 47, 48,
49, 0, 50, 0, 51, 52, 53, 54, 55, 0,
0, 0, 0, 0, 0, 0, 0, 3, 4, 0,
0, 0, 0, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 0, 15, 16, 17, 0, 0, 0,
18, 19, 20, 0, 21, 0, 0, 0, 22, 23,
24, 0, 25, 0, 26, 0, 0, 0, 27, 28,
0, 0, 0, 29, 30, 31, 0, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 2, 0,
0, 43, 44, 0, 45, 0, 46, 47, 48, 49,
0, 50, 0, 51, 52, 53, 54, 55, 0, 0,
0, 0, 0, 0, 2, 0, 3, 4, 0, 0,
0, 0, 5, 6, 7, 8, 9, 10, 11, 12,
13, 14, 0, 15, 16, 0, 0, 0, 0, 18,
19, 20, 3, 4, 0, 0, 0, 0, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 0, 15,
16, 0, 0, 0, 0, 18, 19, 20, 0, 0,
0, 0, 0, 39, 40, 41, 0, 0, 0, 0,
43, 44, 0, 0, 0, 46, 47, 48, 0, 0,
50, 0, 90, 52, 53, 54, 55, 2, 0, 39,
40, 41, 0, 0, 0, 0, 43, 44, 0, 0,
0, 46, 47, 48, 0, 0, 50, 0, 92, 52,
53, 54, 55, 2, 0, 3, 4, 0, 0, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 13,