PageRenderTime 49ms CodeModel.GetById 5ms RepoModel.GetById 0ms app.codeStats 1ms

/modules/asset-merger/vendor/coffeescript/classes/parser.php

https://github.com/data-quest/histat-web
PHP | 3289 lines | 2621 code | 44 blank | 624 comment | 121 complexity | 7a01da4696e4da0fa4926d5693e78198 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-3.0, LGPL-2.1
  1. <?php
  2. namespace CoffeeScript;
  3. use \ArrayAccess as ArrayAccess;
  4. /* Driver template for the PHP_ParserGenerator parser generator. (PHP port of LEMON)
  5. */
  6. /**
  7. * This can be used to store both the string representation of
  8. * a token, and any useful meta-data associated with the token.
  9. *
  10. * meta-data should be stored as an array
  11. */
  12. class yyToken implements ArrayAccess
  13. {
  14. public $string = '';
  15. public $metadata = array();
  16. function __construct($s, $m = array())
  17. {
  18. if ($s instanceof yyToken) {
  19. $this->string = $s->string;
  20. $this->metadata = $s->metadata;
  21. } else {
  22. $this->string = (string) $s;
  23. if ($m instanceof yyToken) {
  24. $this->metadata = $m->metadata;
  25. } elseif (is_array($m)) {
  26. $this->metadata = $m;
  27. }
  28. }
  29. }
  30. function __toString()
  31. {
  32. return $this->string;
  33. }
  34. function offsetExists($offset)
  35. {
  36. return isset($this->metadata[$offset]);
  37. }
  38. function offsetGet($offset)
  39. {
  40. return $this->metadata[$offset];
  41. }
  42. function offsetSet($offset, $value)
  43. {
  44. if ($offset === null) {
  45. if (isset($value[0])) {
  46. $x = ($value instanceof yyToken) ?
  47. $value->metadata : $value;
  48. $this->metadata = array_merge($this->metadata, $x);
  49. return;
  50. }
  51. $offset = count($this->metadata);
  52. }
  53. if ($value === null) {
  54. return;
  55. }
  56. if ($value instanceof yyToken) {
  57. if ($value->metadata) {
  58. $this->metadata[$offset] = $value->metadata;
  59. }
  60. } elseif ($value) {
  61. $this->metadata[$offset] = $value;
  62. }
  63. }
  64. function offsetUnset($offset)
  65. {
  66. unset($this->metadata[$offset]);
  67. }
  68. }
  69. /** The following structure represents a single element of the
  70. * parser's stack. Information stored includes:
  71. *
  72. * + The state number for the parser at this level of the stack.
  73. *
  74. * + The value of the token stored at this level of the stack.
  75. * (In other words, the "major" token.)
  76. *
  77. * + The semantic value stored at this level of the stack. This is
  78. * the information used by the action routines in the grammar.
  79. * It is sometimes called the "minor" token.
  80. */
  81. class yyStackEntry
  82. {
  83. public $stateno; /* The state-number */
  84. public $major; /* The major token value. This is the code
  85. ** number for the token at this stack level */
  86. public $minor; /* The user-supplied minor token value. This
  87. ** is the value of the token */
  88. };
  89. // code external to the class is included here
  90. // declare_class is output here
  91. #line 2 "/var/www/coffeescript-php/grammar.y"
  92. class Parser #line 102 "/var/www/coffeescript-php/grammar.php"
  93. {
  94. static $LINE = 0;
  95. static $FILE = 'unknown';
  96. /* First off, code is included which follows the "include_class" declaration
  97. ** in the input file. */
  98. /* Next is all token values, as class constants
  99. */
  100. /*
  101. ** These constants (all generated automatically by the parser generator)
  102. ** specify the various kinds of tokens (terminals) that the parser
  103. ** understands.
  104. **
  105. ** Each symbol here is a terminal symbol in the grammar.
  106. */
  107. const YY_POST_IF = 1;
  108. const YY_IF = 2;
  109. const YY_ELSE = 3;
  110. const YY_FOR = 4;
  111. const YY_DO = 5;
  112. const YY_WHILE = 6;
  113. const YY_UNTIL = 7;
  114. const YY_LOOP = 8;
  115. const YY_SUPER = 9;
  116. const YY_CLASS = 10;
  117. const YY_FORIN = 11;
  118. const YY_FOROF = 12;
  119. const YY_BY = 13;
  120. const YY_WHEN = 14;
  121. const YY_EQUALS = 15;
  122. const YY_COLON = 16;
  123. const YY_COMPOUND_ASSIGN = 17;
  124. const YY_RETURN = 18;
  125. const YY_THROW = 19;
  126. const YY_EXTENDS = 20;
  127. const YY_INDENT = 21;
  128. const YY_OUTDENT = 22;
  129. const YY_LOGIC = 23;
  130. const YY_COMPARE = 24;
  131. const YY_RELATION = 25;
  132. const YY_SHIFT = 26;
  133. const YY_PLUS = 27;
  134. const YY_MINUS = 28;
  135. const YY_UNARY = 29;
  136. const YY_EXISTENTIAL = 30;
  137. const YY_INCREMENT = 31;
  138. const YY_DECREMENT = 32;
  139. const YY_CALL_START = 33;
  140. const YY_CALL_END = 34;
  141. const YY_ACCESSOR = 35;
  142. const YY_EXISTENTIAL_ACCESSOR = 36;
  143. const YY_PROTOTYPE = 37;
  144. const YY_TERMINATOR = 38;
  145. const YY_STATEMENT = 39;
  146. const YY_IDENTIFIER = 40;
  147. const YY_NUMBER = 41;
  148. const YY_STRING = 42;
  149. const YY_JS = 43;
  150. const YY_REGEX = 44;
  151. const YY_BOOL = 45;
  152. const YY_HERECOMMENT = 46;
  153. const YY_PARAM_START = 47;
  154. const YY_PARAM_END = 48;
  155. const YY_FUNC = 49;
  156. const YY_BOUND_FUNC = 50;
  157. const YY_COMMA = 51;
  158. const YY_RANGE_EXCLUSIVE = 52;
  159. const YY_INDEX_START = 53;
  160. const YY_INDEX_END = 54;
  161. const YY_INDEX_SOAK = 55;
  162. const YY_INDEX_PROTO = 56;
  163. const YY_OBJECT_START = 57;
  164. const YY_OBJECT_END = 58;
  165. const YY_FUNC_EXIST = 59;
  166. const YY_THIS = 60;
  167. const YY_AT_SIGN = 61;
  168. const YY_ARRAY_START = 62;
  169. const YY_ARRAY_END = 63;
  170. const YY_RANGE_INCLUSIVE = 64;
  171. const YY_TRY = 65;
  172. const YY_FINALLY = 66;
  173. const YY_CATCH = 67;
  174. const YY_PAREN_START = 68;
  175. const YY_PAREN_END = 69;
  176. const YY_OWN = 70;
  177. const YY_SWITCH = 71;
  178. const YY_LEADING_WHEN = 72;
  179. const YY_MATH = 73;
  180. const YY_NO_ACTION = 510;
  181. const YY_ACCEPT_ACTION = 509;
  182. const YY_ERROR_ACTION = 508;
  183. /* Next are that tables used to determine what action to take based on the
  184. ** current state and lookahead token. These tables are used to implement
  185. ** functions that take a state number and lookahead value and return an
  186. ** action integer.
  187. **
  188. ** Suppose the action integer is N. Then the action is determined as
  189. ** follows
  190. **
  191. ** 0 <= N < self::YYNSTATE Shift N. That is,
  192. ** push the lookahead
  193. ** token onto the stack
  194. ** and goto state N.
  195. **
  196. ** self::YYNSTATE <= N < self::YYNSTATE+self::YYNRULE Reduce by rule N-YYNSTATE.
  197. **
  198. ** N == self::YYNSTATE+self::YYNRULE A syntax error has occurred.
  199. **
  200. ** N == self::YYNSTATE+self::YYNRULE+1 The parser accepts its
  201. ** input. (and concludes parsing)
  202. **
  203. ** N == self::YYNSTATE+self::YYNRULE+2 No such action. Denotes unused
  204. ** slots in the yy_action[] table.
  205. **
  206. ** The action table is constructed as a single large static array $yy_action.
  207. ** Given state S and lookahead X, the action is computed as
  208. **
  209. ** self::$yy_action[self::$yy_shift_ofst[S] + X ]
  210. **
  211. ** If the index value self::$yy_shift_ofst[S]+X is out of range or if the value
  212. ** self::$yy_lookahead[self::$yy_shift_ofst[S]+X] is not equal to X or if
  213. ** self::$yy_shift_ofst[S] is equal to self::YY_SHIFT_USE_DFLT, it means that
  214. ** the action is not in the table and that self::$yy_default[S] should be used instead.
  215. **
  216. ** The formula above is for computing the action when the lookahead is
  217. ** a terminal symbol. If the lookahead is a non-terminal (as occurs after
  218. ** a reduce action) then the static $yy_reduce_ofst array is used in place of
  219. ** the static $yy_shift_ofst array and self::YY_REDUCE_USE_DFLT is used in place of
  220. ** self::YY_SHIFT_USE_DFLT.
  221. **
  222. ** The following are the tables generated in this section:
  223. **
  224. ** self::$yy_action A single table containing all actions.
  225. ** self::$yy_lookahead A table containing the lookahead for each entry in
  226. ** yy_action. Used to detect hash collisions.
  227. ** self::$yy_shift_ofst For each state, the offset into self::$yy_action for
  228. ** shifting terminals.
  229. ** self::$yy_reduce_ofst For each state, the offset into self::$yy_action for
  230. ** shifting non-terminals after a reduce.
  231. ** self::$yy_default Default action for each state.
  232. */
  233. const YY_SZ_ACTTAB = 4493;
  234. static public $yy_action = array(
  235. /* 0 */ 509, 183, 178, 233, 89, 117, 286, 281, 223, 103,
  236. /* 10 */ 105, 251, 247, 248, 249, 250, 257, 258, 265, 266,
  237. /* 20 */ 234, 263, 236, 175, 49, 13, 235, 65, 158, 40,
  238. /* 30 */ 34, 244, 241, 240, 25, 162, 7, 237, 238, 239,
  239. /* 40 */ 31, 153, 154, 23, 35, 22, 36, 32, 51, 232,
  240. /* 50 */ 311, 155, 305, 139, 132, 246, 309, 245, 132, 7,
  241. /* 60 */ 185, 79, 115, 286, 281, 223, 103, 105, 251, 247,
  242. /* 70 */ 248, 249, 250, 257, 258, 265, 266, 234, 263, 236,
  243. /* 80 */ 175, 28, 21, 235, 1, 158, 126, 128, 63, 241,
  244. /* 90 */ 240, 290, 162, 46, 237, 238, 239, 22, 36, 32,
  245. /* 100 */ 51, 17, 311, 138, 44, 283, 24, 304, 155, 305,
  246. /* 110 */ 139, 132, 278, 129, 270, 243, 242, 185, 68, 115,
  247. /* 120 */ 286, 281, 223, 103, 105, 251, 247, 248, 249, 250,
  248. /* 130 */ 257, 258, 265, 266, 234, 263, 236, 175, 130, 302,
  249. /* 140 */ 235, 66, 158, 222, 214, 46, 241, 240, 290, 162,
  250. /* 150 */ 212, 237, 238, 239, 187, 174, 216, 221, 311, 209,
  251. /* 160 */ 145, 246, 283, 245, 132, 155, 305, 139, 132, 226,
  252. /* 170 */ 227, 210, 218, 151, 185, 79, 115, 286, 281, 223,
  253. /* 180 */ 103, 105, 251, 247, 248, 249, 250, 257, 258, 265,
  254. /* 190 */ 266, 234, 263, 236, 175, 201, 184, 235, 152, 158,
  255. /* 200 */ 7, 46, 310, 241, 240, 290, 162, 303, 237, 238,
  256. /* 210 */ 239, 36, 32, 51, 47, 311, 209, 136, 246, 283,
  257. /* 220 */ 245, 132, 155, 305, 139, 132, 279, 225, 210, 218,
  258. /* 230 */ 33, 185, 79, 115, 286, 281, 223, 103, 105, 251,
  259. /* 240 */ 247, 248, 249, 250, 257, 258, 265, 266, 234, 263,
  260. /* 250 */ 236, 175, 291, 217, 235, 308, 158, 179, 46, 15,
  261. /* 260 */ 241, 240, 290, 162, 192, 237, 238, 239, 32, 51,
  262. /* 270 */ 5, 311, 274, 13, 148, 246, 283, 245, 132, 155,
  263. /* 280 */ 305, 139, 132, 215, 127, 270, 272, 10, 185, 79,
  264. /* 290 */ 115, 286, 281, 223, 103, 105, 251, 247, 248, 249,
  265. /* 300 */ 250, 257, 258, 265, 266, 234, 263, 236, 175, 13,
  266. /* 310 */ 16, 235, 252, 158, 46, 193, 133, 241, 240, 290,
  267. /* 320 */ 162, 141, 237, 238, 239, 61, 197, 74, 52, 3,
  268. /* 330 */ 230, 145, 246, 283, 245, 132, 155, 305, 139, 132,
  269. /* 340 */ 292, 228, 64, 224, 132, 185, 69, 115, 286, 281,
  270. /* 350 */ 223, 103, 105, 251, 247, 248, 249, 250, 257, 258,
  271. /* 360 */ 265, 266, 234, 263, 236, 175, 142, 169, 235, 244,
  272. /* 370 */ 158, 5, 284, 168, 241, 240, 229, 162, 11, 237,
  273. /* 380 */ 238, 239, 276, 186, 189, 271, 60, 176, 10, 50,
  274. /* 390 */ 14, 4, 13, 155, 305, 139, 132, 134, 307, 67,
  275. /* 400 */ 14, 294, 185, 79, 115, 286, 281, 223, 103, 105,
  276. /* 410 */ 251, 247, 248, 249, 250, 257, 258, 265, 266, 234,
  277. /* 420 */ 263, 236, 175, 299, 180, 235, 166, 158, 297, 5,
  278. /* 430 */ 285, 241, 240, 290, 162, 14, 237, 238, 239, 35,
  279. /* 440 */ 22, 36, 32, 51, 275, 311, 10, 289, 253, 256,
  280. /* 450 */ 155, 305, 139, 132, 191, 165, 268, 255, 170, 185,
  281. /* 460 */ 233, 89, 117, 286, 281, 223, 103, 105, 251, 247,
  282. /* 470 */ 248, 249, 250, 257, 258, 265, 266, 234, 263, 236,
  283. /* 480 */ 175, 181, 164, 235, 167, 158, 182, 262, 46, 241,
  284. /* 490 */ 240, 37, 162, 146, 237, 238, 239, 5, 332, 332,
  285. /* 500 */ 23, 35, 22, 36, 32, 51, 332, 311, 155, 305,
  286. /* 510 */ 139, 132, 332, 332, 10, 332, 332, 185, 79, 115,
  287. /* 520 */ 286, 281, 223, 103, 105, 251, 247, 248, 249, 250,
  288. /* 530 */ 257, 258, 265, 266, 234, 263, 236, 175, 332, 287,
  289. /* 540 */ 235, 332, 158, 332, 332, 332, 241, 240, 290, 162,
  290. /* 550 */ 46, 237, 238, 239, 332, 332, 23, 35, 22, 36,
  291. /* 560 */ 32, 51, 282, 311, 332, 155, 305, 139, 132, 332,
  292. /* 570 */ 332, 332, 332, 171, 185, 233, 89, 117, 286, 281,
  293. /* 580 */ 223, 103, 105, 251, 247, 248, 249, 250, 257, 258,
  294. /* 590 */ 265, 266, 234, 263, 236, 175, 61, 332, 235, 332,
  295. /* 600 */ 158, 57, 7, 332, 241, 240, 46, 162, 332, 237,
  296. /* 610 */ 238, 239, 332, 64, 379, 332, 379, 379, 379, 332,
  297. /* 620 */ 332, 332, 332, 155, 305, 139, 132, 332, 332, 332,
  298. /* 630 */ 332, 332, 185, 203, 379, 332, 379, 379, 332, 173,
  299. /* 640 */ 379, 233, 89, 117, 286, 281, 223, 103, 105, 251,
  300. /* 650 */ 247, 248, 249, 250, 257, 258, 265, 266, 234, 263,
  301. /* 660 */ 236, 175, 332, 332, 235, 332, 158, 332, 300, 332,
  302. /* 670 */ 241, 240, 332, 162, 332, 237, 238, 239, 53, 332,
  303. /* 680 */ 65, 332, 40, 34, 12, 135, 55, 332, 332, 155,
  304. /* 690 */ 305, 139, 132, 332, 54, 48, 332, 332, 185, 332,
  305. /* 700 */ 332, 188, 312, 19, 20, 26, 277, 56, 59, 332,
  306. /* 710 */ 147, 332, 244, 332, 332, 306, 244, 267, 264, 259,
  307. /* 720 */ 260, 261, 231, 62, 332, 226, 227, 332, 194, 60,
  308. /* 730 */ 332, 332, 332, 60, 2, 312, 293, 137, 4, 277,
  309. /* 740 */ 295, 150, 332, 147, 8, 332, 332, 18, 273, 332,
  310. /* 750 */ 95, 115, 286, 281, 223, 103, 105, 251, 247, 248,
  311. /* 760 */ 249, 250, 257, 258, 265, 266, 234, 263, 236, 175,
  312. /* 770 */ 332, 332, 235, 332, 158, 332, 332, 332, 241, 240,
  313. /* 780 */ 214, 162, 332, 237, 238, 239, 212, 172, 332, 332,
  314. /* 790 */ 196, 174, 216, 221, 332, 332, 332, 155, 305, 139,
  315. /* 800 */ 132, 332, 332, 332, 332, 332, 185, 220, 89, 117,
  316. /* 810 */ 286, 281, 223, 103, 105, 251, 247, 248, 249, 250,
  317. /* 820 */ 257, 258, 265, 266, 234, 263, 236, 175, 332, 332,
  318. /* 830 */ 235, 332, 158, 332, 332, 43, 241, 240, 332, 162,
  319. /* 840 */ 332, 237, 238, 239, 332, 23, 35, 22, 36, 32,
  320. /* 850 */ 51, 332, 311, 332, 332, 155, 305, 139, 132, 332,
  321. /* 860 */ 332, 332, 332, 332, 185, 88, 115, 286, 281, 223,
  322. /* 870 */ 103, 105, 251, 247, 248, 249, 250, 257, 258, 265,
  323. /* 880 */ 266, 234, 263, 236, 175, 332, 332, 235, 332, 158,
  324. /* 890 */ 332, 332, 332, 241, 240, 46, 162, 332, 237, 238,
  325. /* 900 */ 239, 53, 332, 65, 332, 40, 34, 12, 135, 55,
  326. /* 910 */ 131, 332, 155, 305, 139, 132, 332, 54, 48, 332,
  327. /* 920 */ 6, 185, 332, 332, 332, 332, 19, 20, 26, 332,
  328. /* 930 */ 56, 59, 332, 213, 332, 332, 332, 332, 306, 244,
  329. /* 940 */ 267, 264, 259, 260, 261, 231, 62, 332, 226, 227,
  330. /* 950 */ 332, 244, 267, 264, 312, 332, 60, 231, 277, 293,
  331. /* 960 */ 137, 4, 147, 332, 150, 332, 332, 8, 332, 332,
  332. /* 970 */ 18, 332, 144, 53, 244, 65, 332, 40, 34, 12,
  333. /* 980 */ 135, 55, 332, 332, 332, 332, 332, 332, 332, 54,
  334. /* 990 */ 48, 60, 6, 254, 332, 144, 2, 277, 19, 20,
  335. /* 1000 */ 26, 159, 56, 59, 332, 332, 332, 332, 332, 332,
  336. /* 1010 */ 306, 244, 267, 264, 259, 260, 261, 231, 62, 332,
  337. /* 1020 */ 226, 227, 332, 332, 332, 332, 332, 332, 60, 332,
  338. /* 1030 */ 332, 293, 137, 4, 280, 332, 150, 332, 332, 8,
  339. /* 1040 */ 332, 332, 18, 332, 91, 115, 286, 281, 223, 103,
  340. /* 1050 */ 105, 251, 247, 248, 249, 250, 257, 258, 265, 266,
  341. /* 1060 */ 234, 263, 236, 175, 332, 332, 235, 332, 158, 332,
  342. /* 1070 */ 332, 332, 241, 240, 332, 162, 332, 237, 238, 239,
  343. /* 1080 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  344. /* 1090 */ 332, 155, 305, 139, 132, 332, 332, 332, 332, 332,
  345. /* 1100 */ 185, 102, 115, 286, 281, 223, 103, 105, 251, 247,
  346. /* 1110 */ 248, 249, 250, 257, 258, 265, 266, 234, 263, 236,
  347. /* 1120 */ 175, 332, 332, 235, 332, 158, 204, 332, 332, 241,
  348. /* 1130 */ 240, 332, 162, 332, 237, 238, 239, 332, 205, 219,
  349. /* 1140 */ 332, 332, 208, 177, 207, 332, 332, 332, 155, 305,
  350. /* 1150 */ 139, 132, 332, 332, 332, 332, 332, 185, 82, 115,
  351. /* 1160 */ 286, 281, 223, 103, 105, 251, 247, 248, 249, 250,
  352. /* 1170 */ 257, 258, 265, 266, 234, 263, 236, 175, 332, 332,
  353. /* 1180 */ 235, 332, 158, 332, 204, 332, 241, 240, 332, 162,
  354. /* 1190 */ 332, 237, 238, 239, 332, 332, 205, 219, 332, 332,
  355. /* 1200 */ 202, 177, 207, 332, 332, 155, 305, 139, 132, 332,
  356. /* 1210 */ 332, 332, 332, 332, 185, 85, 115, 286, 281, 223,
  357. /* 1220 */ 103, 105, 251, 247, 248, 249, 250, 257, 258, 265,
  358. /* 1230 */ 266, 234, 263, 236, 175, 332, 332, 235, 332, 158,
  359. /* 1240 */ 332, 332, 332, 241, 240, 332, 162, 332, 237, 238,
  360. /* 1250 */ 239, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  361. /* 1260 */ 332, 332, 155, 305, 139, 132, 332, 332, 332, 332,
  362. /* 1270 */ 332, 185, 71, 115, 286, 281, 223, 103, 105, 251,
  363. /* 1280 */ 247, 248, 249, 250, 257, 258, 265, 266, 234, 263,
  364. /* 1290 */ 236, 175, 332, 332, 235, 332, 158, 332, 332, 332,
  365. /* 1300 */ 241, 240, 332, 162, 332, 237, 238, 239, 332, 332,
  366. /* 1310 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 155,
  367. /* 1320 */ 305, 139, 132, 332, 332, 332, 332, 332, 185, 94,
  368. /* 1330 */ 115, 286, 281, 223, 103, 105, 251, 247, 248, 249,
  369. /* 1340 */ 250, 257, 258, 265, 266, 234, 263, 236, 175, 332,
  370. /* 1350 */ 332, 235, 332, 158, 332, 332, 332, 241, 240, 332,
  371. /* 1360 */ 162, 332, 237, 238, 239, 332, 332, 332, 332, 332,
  372. /* 1370 */ 332, 332, 332, 332, 332, 332, 155, 305, 139, 132,
  373. /* 1380 */ 332, 332, 332, 332, 332, 185, 96, 115, 286, 281,
  374. /* 1390 */ 223, 103, 105, 251, 247, 248, 249, 250, 257, 258,
  375. /* 1400 */ 265, 266, 234, 263, 236, 175, 332, 332, 235, 332,
  376. /* 1410 */ 158, 332, 332, 332, 241, 240, 332, 162, 332, 237,
  377. /* 1420 */ 238, 239, 332, 332, 332, 332, 332, 332, 332, 332,
  378. /* 1430 */ 332, 332, 332, 155, 305, 139, 132, 332, 332, 332,
  379. /* 1440 */ 332, 332, 185, 84, 115, 286, 281, 223, 103, 105,
  380. /* 1450 */ 251, 247, 248, 249, 250, 257, 258, 265, 266, 234,
  381. /* 1460 */ 263, 236, 175, 332, 332, 235, 332, 158, 332, 332,
  382. /* 1470 */ 332, 241, 240, 332, 162, 332, 237, 238, 239, 332,
  383. /* 1480 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  384. /* 1490 */ 155, 305, 139, 132, 332, 332, 332, 332, 332, 185,
  385. /* 1500 */ 80, 115, 286, 281, 223, 103, 105, 251, 247, 248,
  386. /* 1510 */ 249, 250, 257, 258, 265, 266, 234, 263, 236, 175,
  387. /* 1520 */ 332, 332, 235, 332, 158, 332, 332, 332, 241, 240,
  388. /* 1530 */ 332, 162, 332, 237, 238, 239, 332, 332, 332, 332,
  389. /* 1540 */ 332, 332, 332, 332, 332, 332, 332, 155, 305, 139,
  390. /* 1550 */ 132, 332, 332, 332, 332, 332, 185, 86, 115, 286,
  391. /* 1560 */ 281, 223, 103, 105, 251, 247, 248, 249, 250, 257,
  392. /* 1570 */ 258, 265, 266, 234, 263, 236, 175, 332, 332, 235,
  393. /* 1580 */ 332, 158, 332, 332, 332, 241, 240, 332, 162, 332,
  394. /* 1590 */ 237, 238, 239, 332, 332, 332, 332, 332, 332, 332,
  395. /* 1600 */ 332, 332, 332, 332, 155, 305, 139, 132, 332, 332,
  396. /* 1610 */ 332, 332, 332, 185, 104, 115, 286, 281, 223, 103,
  397. /* 1620 */ 105, 251, 247, 248, 249, 250, 257, 258, 265, 266,
  398. /* 1630 */ 234, 263, 236, 175, 332, 332, 235, 332, 158, 332,
  399. /* 1640 */ 332, 332, 241, 240, 332, 162, 332, 237, 238, 239,
  400. /* 1650 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  401. /* 1660 */ 332, 155, 305, 139, 132, 332, 332, 332, 332, 332,
  402. /* 1670 */ 185, 120, 115, 286, 281, 223, 103, 105, 251, 247,
  403. /* 1680 */ 248, 249, 250, 257, 258, 265, 266, 234, 263, 236,
  404. /* 1690 */ 175, 332, 332, 235, 332, 158, 332, 332, 332, 241,
  405. /* 1700 */ 240, 332, 162, 332, 237, 238, 239, 332, 332, 332,
  406. /* 1710 */ 332, 332, 332, 332, 332, 332, 332, 332, 155, 305,
  407. /* 1720 */ 139, 132, 332, 332, 332, 332, 332, 185, 75, 115,
  408. /* 1730 */ 286, 281, 223, 103, 105, 251, 247, 248, 249, 250,
  409. /* 1740 */ 257, 258, 265, 266, 234, 263, 236, 175, 332, 332,
  410. /* 1750 */ 235, 332, 158, 332, 332, 332, 241, 240, 332, 162,
  411. /* 1760 */ 332, 237, 238, 239, 332, 332, 332, 332, 332, 332,
  412. /* 1770 */ 332, 332, 332, 332, 332, 155, 305, 139, 132, 332,
  413. /* 1780 */ 332, 332, 332, 332, 185, 116, 115, 286, 281, 223,
  414. /* 1790 */ 103, 105, 251, 247, 248, 249, 250, 257, 258, 265,
  415. /* 1800 */ 266, 234, 263, 236, 175, 332, 332, 235, 332, 158,
  416. /* 1810 */ 332, 332, 332, 241, 240, 332, 162, 332, 237, 238,
  417. /* 1820 */ 239, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  418. /* 1830 */ 332, 332, 155, 305, 139, 132, 332, 332, 332, 332,
  419. /* 1840 */ 332, 185, 97, 115, 286, 281, 223, 103, 105, 251,
  420. /* 1850 */ 247, 248, 249, 250, 257, 258, 265, 266, 234, 263,
  421. /* 1860 */ 236, 175, 332, 332, 235, 332, 158, 332, 332, 332,
  422. /* 1870 */ 241, 240, 332, 162, 332, 237, 238, 239, 332, 332,
  423. /* 1880 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 155,
  424. /* 1890 */ 305, 139, 132, 332, 332, 332, 332, 332, 185, 98,
  425. /* 1900 */ 115, 286, 281, 223, 103, 105, 251, 247, 248, 249,
  426. /* 1910 */ 250, 257, 258, 265, 266, 234, 263, 236, 175, 332,
  427. /* 1920 */ 332, 235, 332, 158, 332, 332, 332, 241, 240, 332,
  428. /* 1930 */ 162, 332, 237, 238, 239, 332, 332, 332, 332, 332,
  429. /* 1940 */ 332, 332, 332, 332, 332, 332, 155, 305, 139, 132,
  430. /* 1950 */ 332, 332, 332, 332, 332, 185, 93, 115, 286, 281,
  431. /* 1960 */ 223, 103, 105, 251, 247, 248, 249, 250, 257, 258,
  432. /* 1970 */ 265, 266, 234, 263, 236, 175, 332, 332, 235, 332,
  433. /* 1980 */ 158, 332, 332, 332, 241, 240, 332, 162, 332, 237,
  434. /* 1990 */ 238, 239, 332, 332, 332, 332, 332, 332, 332, 332,
  435. /* 2000 */ 332, 332, 332, 155, 305, 139, 132, 332, 332, 332,
  436. /* 2010 */ 332, 332, 185, 76, 115, 286, 281, 223, 103, 105,
  437. /* 2020 */ 251, 247, 248, 249, 250, 257, 258, 265, 266, 234,
  438. /* 2030 */ 263, 236, 175, 332, 332, 235, 332, 158, 332, 332,
  439. /* 2040 */ 332, 241, 240, 332, 162, 332, 237, 238, 239, 332,
  440. /* 2050 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  441. /* 2060 */ 155, 305, 139, 132, 332, 332, 332, 332, 332, 185,
  442. /* 2070 */ 92, 115, 286, 281, 223, 103, 105, 251, 247, 248,
  443. /* 2080 */ 249, 250, 257, 258, 265, 266, 234, 263, 236, 175,
  444. /* 2090 */ 332, 332, 235, 332, 158, 332, 332, 332, 241, 240,
  445. /* 2100 */ 332, 162, 332, 237, 238, 239, 332, 332, 332, 332,
  446. /* 2110 */ 332, 332, 332, 332, 332, 332, 332, 155, 305, 139,
  447. /* 2120 */ 132, 332, 332, 332, 332, 332, 185, 106, 115, 286,
  448. /* 2130 */ 281, 223, 103, 105, 251, 247, 248, 249, 250, 257,
  449. /* 2140 */ 258, 265, 266, 234, 263, 236, 175, 332, 332, 235,
  450. /* 2150 */ 332, 158, 332, 332, 332, 241, 240, 332, 162, 332,
  451. /* 2160 */ 237, 238, 239, 332, 332, 332, 332, 332, 332, 332,
  452. /* 2170 */ 332, 332, 332, 332, 155, 305, 139, 132, 332, 332,
  453. /* 2180 */ 332, 332, 332, 185, 111, 115, 286, 281, 223, 103,
  454. /* 2190 */ 105, 251, 247, 248, 249, 250, 257, 258, 265, 266,
  455. /* 2200 */ 234, 263, 236, 175, 332, 332, 235, 332, 158, 332,
  456. /* 2210 */ 332, 332, 241, 240, 332, 162, 332, 237, 238, 239,
  457. /* 2220 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  458. /* 2230 */ 332, 155, 305, 139, 132, 332, 332, 332, 332, 332,
  459. /* 2240 */ 185, 109, 115, 286, 281, 223, 103, 105, 251, 247,
  460. /* 2250 */ 248, 249, 250, 257, 258, 265, 266, 234, 263, 236,
  461. /* 2260 */ 175, 332, 332, 235, 332, 158, 332, 332, 332, 241,
  462. /* 2270 */ 240, 332, 162, 332, 237, 238, 239, 332, 332, 332,
  463. /* 2280 */ 332, 332, 332, 332, 332, 332, 332, 332, 155, 305,
  464. /* 2290 */ 139, 132, 332, 332, 332, 332, 332, 185, 81, 115,
  465. /* 2300 */ 286, 281, 223, 103, 105, 251, 247, 248, 249, 250,
  466. /* 2310 */ 257, 258, 265, 266, 234, 263, 236, 175, 332, 332,
  467. /* 2320 */ 235, 332, 158, 332, 332, 332, 241, 240, 332, 162,
  468. /* 2330 */ 332, 237, 238, 239, 332, 332, 332, 332, 332, 332,
  469. /* 2340 */ 332, 332, 332, 332, 332, 155, 305, 139, 132, 332,
  470. /* 2350 */ 332, 332, 332, 332, 185, 87, 115, 286, 281, 223,
  471. /* 2360 */ 103, 105, 251, 247, 248, 249, 250, 257, 258, 265,
  472. /* 2370 */ 266, 234, 263, 236, 175, 332, 332, 235, 332, 158,
  473. /* 2380 */ 332, 332, 332, 241, 240, 332, 162, 332, 237, 238,
  474. /* 2390 */ 239, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  475. /* 2400 */ 332, 332, 155, 305, 139, 132, 332, 332, 332, 332,
  476. /* 2410 */ 332, 185, 113, 115, 286, 281, 223, 103, 105, 251,
  477. /* 2420 */ 247, 248, 249, 250, 257, 258, 265, 266, 234, 263,
  478. /* 2430 */ 236, 175, 332, 332, 235, 332, 158, 332, 332, 332,
  479. /* 2440 */ 241, 240, 332, 162, 332, 237, 238, 239, 332, 332,
  480. /* 2450 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 155,
  481. /* 2460 */ 305, 139, 132, 332, 332, 332, 332, 332, 185, 100,
  482. /* 2470 */ 115, 286, 281, 223, 103, 105, 251, 247, 248, 249,
  483. /* 2480 */ 250, 257, 258, 265, 266, 234, 263, 236, 175, 332,
  484. /* 2490 */ 332, 235, 332, 158, 332, 332, 332, 241, 240, 332,
  485. /* 2500 */ 162, 332, 237, 238, 239, 332, 332, 332, 332, 332,
  486. /* 2510 */ 332, 332, 332, 332, 332, 332, 155, 305, 139, 132,
  487. /* 2520 */ 332, 332, 332, 332, 332, 185, 122, 115, 286, 281,
  488. /* 2530 */ 223, 103, 105, 251, 247, 248, 249, 250, 257, 258,
  489. /* 2540 */ 265, 266, 234, 263, 236, 175, 332, 332, 235, 332,
  490. /* 2550 */ 158, 332, 332, 332, 241, 240, 332, 162, 332, 237,
  491. /* 2560 */ 238, 239, 332, 332, 332, 332, 332, 332, 332, 332,
  492. /* 2570 */ 332, 332, 332, 155, 305, 139, 132, 332, 332, 332,
  493. /* 2580 */ 332, 332, 185, 121, 115, 286, 281, 223, 103, 105,
  494. /* 2590 */ 251, 247, 248, 249, 250, 257, 258, 265, 266, 234,
  495. /* 2600 */ 263, 236, 175, 332, 332, 235, 332, 158, 332, 332,
  496. /* 2610 */ 332, 241, 240, 332, 162, 332, 237, 238, 239, 332,
  497. /* 2620 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  498. /* 2630 */ 155, 305, 139, 132, 332, 332, 332, 332, 332, 185,
  499. /* 2640 */ 78, 115, 286, 281, 223, 103, 105, 251, 247, 248,
  500. /* 2650 */ 249, 250, 257, 258, 265, 266, 234, 263, 236, 175,
  501. /* 2660 */ 332, 332, 235, 332, 158, 332, 332, 332, 241, 240,
  502. /* 2670 */ 332, 162, 332, 237, 238, 239, 53, 332, 65, 332,
  503. /* 2680 */ 40, 34, 12, 135, 55, 332, 332, 155, 305, 139,
  504. /* 2690 */ 132, 332, 54, 48, 332, 7, 185, 332, 332, 332,
  505. /* 2700 */ 332, 19, 20, 26, 332, 56, 59, 332, 332, 332,
  506. /* 2710 */ 332, 332, 332, 306, 244, 267, 264, 259, 260, 261,
  507. /* 2720 */ 231, 62, 332, 226, 227, 332, 332, 374, 332, 332,
  508. /* 2730 */ 332, 60, 332, 332, 293, 137, 4, 332, 332, 150,
  509. /* 2740 */ 332, 332, 8, 332, 374, 18, 332, 332, 53, 332,
  510. /* 2750 */ 65, 332, 40, 34, 12, 135, 55, 374, 332, 332,
  511. /* 2760 */ 332, 332, 332, 332, 54, 48, 332, 27, 332, 374,
  512. /* 2770 */ 332, 332, 332, 19, 20, 26, 332, 56, 59, 332,
  513. /* 2780 */ 332, 332, 332, 332, 332, 306, 244, 267, 264, 259,
  514. /* 2790 */ 260, 261, 231, 62, 332, 226, 227, 332, 332, 332,
  515. /* 2800 */ 332, 332, 332, 60, 332, 332, 293, 137, 4, 332,
  516. /* 2810 */ 332, 150, 332, 332, 8, 332, 332, 18, 332, 107,
  517. /* 2820 */ 115, 286, 281, 223, 103, 105, 251, 247, 248, 249,
  518. /* 2830 */ 250, 257, 258, 265, 266, 234, 263, 236, 175, 332,
  519. /* 2840 */ 332, 235, 332, 158, 332, 332, 332, 241, 240, 332,
  520. /* 2850 */ 162, 332, 237, 238, 239, 53, 332, 65, 332, 40,
  521. /* 2860 */ 34, 12, 135, 55, 332, 332, 155, 305, 139, 132,
  522. /* 2870 */ 332, 54, 48, 332, 41, 185, 332, 332, 332, 332,
  523. /* 2880 */ 19, 20, 26, 332, 56, 59, 332, 332, 332, 332,
  524. /* 2890 */ 332, 332, 306, 244, 267, 264, 259, 260, 261, 231,
  525. /* 2900 */ 62, 332, 226, 227, 209, 332, 332, 332, 332, 332,
  526. /* 2910 */ 60, 332, 332, 293, 137, 4, 210, 218, 150, 332,
  527. /* 2920 */ 332, 8, 199, 332, 18, 332, 332, 53, 332, 65,
  528. /* 2930 */ 332, 40, 34, 12, 135, 55, 332, 332, 332, 332,
  529. /* 2940 */ 200, 184, 332, 54, 48, 332, 45, 332, 332, 332,
  530. /* 2950 */ 332, 332, 19, 20, 26, 332, 56, 59, 332, 332,
  531. /* 2960 */ 332, 332, 332, 332, 306, 244, 267, 264, 259, 260,
  532. /* 2970 */ 261, 231, 62, 332, 226, 227, 332, 332, 332, 332,
  533. /* 2980 */ 332, 332, 60, 332, 332, 293, 137, 4, 332, 332,
  534. /* 2990 */ 150, 332, 332, 8, 332, 332, 18, 332, 70, 115,
  535. /* 3000 */ 286, 281, 223, 103, 105, 251, 247, 248, 249, 250,
  536. /* 3010 */ 257, 258, 265, 266, 234, 263, 236, 175, 332, 332,
  537. /* 3020 */ 235, 332, 158, 332, 332, 332, 241, 240, 332, 162,
  538. /* 3030 */ 332, 237, 238, 239, 332, 332, 332, 332, 332, 332,
  539. /* 3040 */ 332, 332, 332, 332, 332, 155, 305, 139, 132, 332,
  540. /* 3050 */ 332, 332, 332, 332, 185, 108, 115, 286, 281, 223,
  541. /* 3060 */ 103, 105, 251, 247, 248, 249, 250, 257, 258, 265,
  542. /* 3070 */ 266, 234, 263, 236, 175, 332, 332, 235, 332, 158,
  543. /* 3080 */ 332, 332, 332, 241, 240, 332, 162, 332, 237, 238,
  544. /* 3090 */ 239, 53, 332, 65, 332, 40, 34, 12, 135, 55,
  545. /* 3100 */ 332, 332, 155, 305, 139, 132, 332, 54, 48, 332,
  546. /* 3110 */ 6, 185, 332, 332, 332, 332, 19, 20, 26, 332,
  547. /* 3120 */ 56, 59, 332, 332, 332, 332, 332, 332, 306, 244,
  548. /* 3130 */ 267, 264, 259, 260, 261, 231, 62, 332, 226, 227,
  549. /* 3140 */ 332, 332, 332, 332, 332, 332, 60, 332, 332, 293,
  550. /* 3150 */ 137, 4, 332, 332, 150, 332, 332, 8, 332, 332,
  551. /* 3160 */ 18, 332, 332, 53, 332, 65, 332, 40, 34, 12,
  552. /* 3170 */ 135, 55, 332, 332, 332, 332, 332, 332, 332, 54,
  553. /* 3180 */ 48, 332, 332, 190, 332, 332, 332, 332, 19, 20,
  554. /* 3190 */ 26, 332, 56, 59, 332, 332, 332, 332, 332, 332,
  555. /* 3200 */ 306, 244, 267, 264, 259, 260, 261, 231, 62, 332,
  556. /* 3210 */ 226, 227, 332, 332, 332, 332, 332, 332, 60, 332,
  557. /* 3220 */ 332, 293, 137, 4, 332, 332, 150, 332, 332, 8,
  558. /* 3230 */ 332, 332, 18, 332, 332, 53, 332, 65, 332, 40,
  559. /* 3240 */ 34, 12, 135, 55, 332, 332, 332, 332, 332, 332,
  560. /* 3250 */ 332, 54, 48, 332, 9, 332, 332, 332, 332, 332,
  561. /* 3260 */ 19, 20, 26, 332, 56, 59, 332, 332, 332, 332,
  562. /* 3270 */ 332, 332, 306, 244, 267, 264, 259, 260, 261, 231,
  563. /* 3280 */ 62, 332, 226, 227, 332, 332, 332, 332, 332, 332,
  564. /* 3290 */ 60, 332, 332, 293, 137, 4, 332, 332, 150, 332,
  565. /* 3300 */ 332, 8, 332, 332, 18, 332, 101, 115, 286, 281,
  566. /* 3310 */ 223, 103, 105, 251, 247, 248, 249, 250, 257, 258,
  567. /* 3320 */ 265, 266, 234, 263, 236, 175, 332, 332, 235, 332,
  568. /* 3330 */ 158, 332, 332, 332, 241, 240, 332, 162, 332, 237,
  569. /* 3340 */ 238, 239, 332, 332, 332, 332, 332, 332, 332, 332,
  570. /* 3350 */ 332, 332, 332, 155, 305, 139, 132, 332, 332, 332,
  571. /* 3360 */ 332, 332, 185, 83, 115, 286, 281, 223, 103, 105,
  572. /* 3370 */ 251, 247, 248, 249, 250, 257, 258, 265, 266, 234,
  573. /* 3380 */ 263, 236, 175, 332, 332, 235, 332, 158, 332, 332,
  574. /* 3390 */ 332, 241, 240, 332, 162, 332, 237, 238, 239, 332,
  575. /* 3400 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  576. /* 3410 */ 155, 305, 139, 132, 332, 332, 332, 332, 332, 185,
  577. /* 3420 */ 119, 115, 286, 281, 223, 103, 105, 251, 247, 248,
  578. /* 3430 */ 249, 250, 257, 258, 265, 266, 234, 263, 236, 175,
  579. /* 3440 */ 332, 332, 235, 332, 158, 332, 332, 332, 241, 240,
  580. /* 3450 */ 332, 162, 332, 237, 238, 239, 332, 332, 332, 332,
  581. /* 3460 */ 332, 332, 332, 332, 332, 332, 332, 155, 305, 139,
  582. /* 3470 */ 132, 332, 332, 332, 332, 332, 185, 118, 115, 286,
  583. /* 3480 */ 281, 223, 103, 105, 251, 247, 248, 249, 250, 257,
  584. /* 3490 */ 258, 265, 266, 234, 263, 236, 175, 332, 332, 235,
  585. /* 3500 */ 332, 158, 332, 332, 332, 241, 240, 332, 162, 332,
  586. /* 3510 */ 237, 238, 239, 332, 332, 332, 332, 332, 332, 332,
  587. /* 3520 */ 332, 332, 332, 332, 155, 305, 139, 132, 332, 332,
  588. /* 3530 */ 332, 332, 332, 185, 90, 115, 286, 281, 223, 103,
  589. /* 3540 */ 105, 251, 247, 248, 249, 250, 257, 258, 265, 266,
  590. /* 3550 */ 234, 263, 236, 175, 332, 332, 235, 332, 158, 332,
  591. /* 3560 */ 332, 332, 241, 240, 332, 162, 332, 237, 238, 239,
  592. /* 3570 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  593. /* 3580 */ 332, 155, 305, 139, 132, 332, 332, 332, 332, 332,
  594. /* 3590 */ 185, 77, 115, 286, 281, 223, 103, 105, 251, 247,
  595. /* 3600 */ 248, 249, 250, 257, 258, 265, 266, 234, 263, 236,
  596. /* 3610 */ 175, 332, 332, 235, 332, 158, 332, 332, 332, 241,
  597. /* 3620 */ 240, 332, 162, 332, 237, 238, 239, 53, 332, 65,
  598. /* 3630 */ 332, 40, 34, 12, 135, 55, 332, 332, 155, 305,
  599. /* 3640 */ 139, 132, 332, 54, 48, 332, 123, 185, 332, 332,
  600. /* 3650 */ 332, 332, 19, 20, 26, 332, 56, 59, 332, 332,
  601. /* 3660 */ 332, 332, 332, 332, 306, 244, 267, 264, 259, 260,
  602. /* 3670 */ 261, 231, 62, 332, 226, 227, 332, 332, 332, 332,
  603. /* 3680 */ 332, 332, 60, 332, 332, 293, 137, 4, 332, 332,
  604. /* 3690 */ 150, 332, 332, 8, 332, 332, 18, 332, 332, 114,
  605. /* 3700 */ 115, 286, 281, 223, 103, 105, 251, 247, 248, 249,
  606. /* 3710 */ 250, 257, 258, 265, 266, 234, 263, 236, 175, 332,
  607. /* 3720 */ 332, 235, 332, 158, 332, 42, 38, 241, 240, 332,
  608. /* 3730 */ 162, 332, 237, 238, 239, 23, 35, 22, 36, 32,
  609. /* 3740 */ 51, 332, 311, 332, 332, 332, 155, 305, 139, 132,
  610. /* 3750 */ 332, 332, 332, 332, 332, 185, 332, 332, 332, 332,
  611. /* 3760 */ 332, 332, 99, 115, 286, 281, 223, 103, 105, 251,
  612. /* 3770 */ 247, 248, 249, 250, 257, 258, 265, 266, 234, 263,
  613. /* 3780 */ 236, 175, 332, 332, 235, 46, 158, 332, 332, 332,
  614. /* 3790 */ 241, 240, 332, 162, 332, 237, 238, 239, 53, 332,
  615. /* 3800 */ 65, 332, 40, 34, 12, 135, 55, 332, 332, 155,
  616. /* 3810 */ 305, 139, 132, 332, 54, 48, 332, 332, 185, 332,
  617. /* 3820 */ 332, 332, 332, 19, 20, 26, 332, 56, 59, 332,
  618. /* 3830 */ 332, 332, 332, 332, 332, 306, 244, 267, 264, 259,
  619. /* 3840 */ 260, 261, 231, 62, 332, 226, 227, 332, 157, 143,
  620. /* 3850 */ 140, 332, 332, 60, 332, 332, 293, 137, 4, 332,
  621. /* 3860 */ 332, 150, 332, 332, 8, 332, 1, 18, 126, 128,
  622. /* 3870 */ 53, 332, 269, 332, 332, 332, 12, 135, 55, 332,
  623. /* 3880 */ 332, 332, 332, 332, 332, 332, 54, 48, 332, 332,
  624. /* 3890 */ 332, 332, 332, 332, 332, 19, 20, 26, 332, 56,
  625. /* 3900 */ 59, 332, 332, 332, 332, 332, 332, 306, 244, 267,
  626. /* 3910 */ 264, 259, 260, 261, 231, 62, 332, 226, 227, 332,
  627. /* 3920 */ 135, 332, 332, 332, 332, 60, 332, 332, 293, 137,
  628. /* 3930 */ 4, 58, 7, 150, 332, 30, 8, 332, 65, 18,
  629. /* 3940 */ 40, 34, 332, 415, 332, 157, 143, 140, 332, 332,
  630. /* 3950 */ 332, 244, 267, 264, 259, 260, 261, 23, 35, 22,
  631. /* 3960 */ 36, 32, 51, 1, 311, 126, 128, 332, 60, 269,
  632. /* 3970 */ 332, 293, 137, 4, 332, 332, 332, 332, 332, 8,
  633. /* 3980 */ 332, 332, 332, 332, 332, 332, 163, 332, 30, 332,
  634. /* 3990 */ 332, 65, 332, 40, 34, 332, 30, 332, 295, 65,
  635. /* 4000 */ 332, 40, 34, 332, 332, 332, 332, 46, 332, 332,
  636. /* 4010 */ 23, 35, 22, 36, 32, 51, 7, 311, 23, 35,
  637. /* 4020 */ 22, 36, 32, 51, 65, 311, 40, 34, 332, 332,
  638. /* 4030 */ 332, 332, 332, 332, 313, 332, 332, 332, 332, 194,
  639. /* 4040 */ 332, 110, 112, 23, 35, 22, 36, 32, 51, 332,
  640. /* 4050 */ 311, 295, 234, 263, 236, 298, 30, 332, 235, 65,
  641. /* 4060 */ 46, 40, 34, 332, 241, 240, 332, 125, 46, 237,
  642. /* 4070 */ 238, 239, 332, 332, 332, 332, 332, 195, 23, 35,
  643. /* 4080 */ 22, 36, 32, 51, 30, 311, 332, 65, 332, 40,
  644. /* 4090 */ 34, 332, 332, 46, 332, 332, 332, 332, 332, 379,
  645. /* 4100 */ 332, 379, 379, 379, 332, 332, 23, 35, 22, 36,
  646. /* 4110 */ 32, 51, 30, 311, 332, 65, 332, 40, 34, 379,
  647. /* 4120 */ 332, 379, 379, 332, 332, 379, 332, 332, 46, 332,
  648. /* 4130 */ 332, 332, 332, 211, 23, 35, 22, 36, 32, 51,
  649. /* 4140 */ 332, 311, 332, 332, 332, 204, 296, 332, 30, 332,
  650. /* 4150 */ 332, 65, 332, 40, 34, 332, 46, 205, 219, 332,
  651. /* 4160 */ 332, 198, 177, 207, 332, 332, 332, 332, 332, 332,
  652. /* 4170 */ 23, 35, 22, 36, 32, 51, 332, 311, 332, 332,
  653. /* 4180 */ 156, 332, 332, 332, 46, 332, 30, 332, 332, 65,
  654. /* 4190 */ 332, 40, 34, 332, 332, 332, 332, 332, 332, 288,
  655. /* 4200 */ 332, 332, 332, 332, 332, 332, 124, 332, 23, 35,
  656. /* 4210 */ 22, 36, 32, 51, 332, 311, 332, 204, 332, 332,
  657. /* 4220 */ 46, 332, 30, 332, 332, 65, 332, 40, 34, 205,
  658. /* 4230 */ 219, 332, 332, 198, 177, 207, 332, 332, 332, 332,
  659. /* 4240 */ 332, 332, 332, 206, 23, 35, 22, 36, 32, 51,
  660. /* 4250 */ 332, 311, 149, 332, 332, 110, 112, 332, 46, 332,
  661. /* 4260 */ 332, 332, 332, 332, 332, 332, 234, 263, 236, 298,
  662. /* 4270 */ 332, 332, 235, 332, 332, 332, 110, 112, 241, 240,
  663. /* 4280 */ 332, 160, 332, 237, 238, 239, 332, 234, 263, 236,
  664. /* 4290 */ 298, 332, 332, 235, 46, 332, 72, 112, 332, 241,
  665. /* 4300 */ 240, 332, 161, 332, 237, 238, 239, 234, 263, 236,
  666. /* 4310 */ 298, 332, 332, 235, 332, 332, 332, 332, 332, 241,
  667. /* 4320 */ 240, 332, 301, 332, 237, 238, 239, 332, 73, 112,
  668. /* 4330 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 234,
  669. /* 4340 */ 263, 236, 298, 30, 332, 235, 65, 332, 40, 34,
  670. /* 4350 */ 135, 241, 240, 332, 301, 332, 237, 238, 239, 332,
  671. /* 4360 */ 332, 7, 332, 332, 332, 23, 35, 22, 36, 32,
  672. /* 4370 */ 51, 332, 311, 415, 332, 157, 143, 140, 332, 332,
  673. /* 4380 */ 332, 244, 267, 264, 259, 260, 261, 332, 332, 332,
  674. /* 4390 */ 332, 332, 332, 1, 332, 126, 128, 332, 60, 269,
  675. /* 4400 */ 332, 293, 137, 4, 332, 332, 332, 332, 65, 8,
  676. /* 4410 */ 40, 34, 332, 332, 332, 46, 332, 332, 39, 332,
  677. /* 4420 */ 332, 332, 332, 65, 332, 40, 34, 23, 35, 22,
  678. /* 4430 */ 36, 32, 51, 29, 311, 332, 332, 332, 332, 332,
  679. /* 4440 */ 332, 332, 23, 35, 22, 36, 32, 51, 332, 311,
  680. /* 4450 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  681. /* 4460 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  682. /* 4470 */ 332, 332, 332, 332, 332, 332, 332, 46, 332, 332,
  683. /* 4480 */ 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
  684. /* 4490 */ 332, 332, 46,
  685. );
  686. static public $yy_lookahead = array(
  687. /* 0 */ 75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
  688. /* 10 */ 85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
  689. /* 20 */ 95, 96, 97, 98, 1, 38, 101, 4, 103, 6,
  690. /* 30 */ 7, 40, 107, 108, 14, 110, 21, 112, 113, 114,
  691. /* 40 */ 2, 66, 67, 23, 24, 25, 26, 27, 28, 95,
  692. /* 50 */ 30, 126, 127, 128, 129, 126, 69, 128, 129, 21,
  693. /* 60 */ 135, 79, 80, 81, 82, 83, 84, 85, 86, 87,
  694. /* 70 */ 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
  695. /* 80 */ 98, 11, 12, 101, 53, 103, 55, 56, 51, 107,
  696. /* 90 */ 108, 109, 110, 73, 112, 113, 114, 25, 26, 27,
  697. /* 100 */ 28, 17, 30, 121, 20, 123, 15, 77, 126, 127,
  698. /* 110 */ 128, 129, 77, 133, 134, 31, 32, 135, 79, 80,
  699. /* 120 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
  700. /* 130 */ 91, 92, 93, 94, 95, 96, 97, 98, 48, 77,
  701. /* 140 */ 101, 51, 103, 52, 95, 73, 107, 108, 109, 110,
  702. /* 150 */ 101, 112, 113, 114, 105, 106, 107, 108, 30, 95,
  703. /* 160 */ 121, 126, 123, 128, 129, 126, 127, 128, 129, 49,
  704. /* 170 */ 50, 107, 108, 95, 135, 79, 80, 81, 82, 83,
  705. /* 180 */ 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
  706. /* 190 */ 94, 95, 96, 97, 98, 131, 132, 101, 66, 103,
  707. /* 200 */ 21, 73, 77, 107, 108, 109, 110, 77, 112, 113,
  708. /* 210 */ 114, 26, 27, 28, 122, 30, 95, 121, 126, 123,
  709. /* 220 */ 128, 129, 126, 127, 128, 129, 77, 77, 107, 108,
  710. /* 230 */ 51, 135, 79, 80, 81, 82, 83, 84, 85, 86,
  711. /* 240 */ 87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
  712. /* 250 */ 97, 98, 22, 132, 101, 69, 103, 22, 73, 15,
  713. /* 260 */ 107, 108, 109, 110, 38, 112, 113, 114, 27, 28,
  714. /* 270 */ 21, 30, 38, 38, 121, 126, 123, 128, 129, 126,
  715. /* 280 */ 127, 128, 129, 34, 133, 134, 22, 38, 135, 79,
  716. /* 290 */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
  717. /* 300 */ 90, 91, 92, 93, 94, 95, 96, 97, 98, 38,
  718. /* 310 */ 16, 101, 120, 103, 73, 54, 3, 107, 108, 109,
  719. /* 320 */ 110, 3, 112, 113, 114, 21, 22, 51, 122, 33,
  720. /* 330 */ 130, 121, 126, 123, 128, 129, 126, 127, 128, 129,
  721. /* 340 */ 22, 126, 38, 128, 129, 135, 79, 80, 81, 82,
  722. /* 350 */ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
  723. /* 360 */ 93, 94, 95, 96, 97, 98, 3, 104, 101, 40,
  724. /* 370 */ 103, 21, 22, 104, 107, 108, 22, 110, 51, 112,
  725. /* 380 */ 113, 114, 134, 116, 117, 22, 57, 77, 38, 122,
  726. /* 390 */ 72, 62, 38, 126, 127, 128, 129, 77, 77, 70,
  727. /* 400 */ 72, 95, 135, 79, 80, 81, 82, 83, 84, 85,
  728. /* 410 */ 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
  729. /* 420 */ 96, 97, 98, 77, 125, 101, 104, 103, 120, 21,
  730. /* 430 */ 22, 107, 108, 109, 110, 72, 112, 113, 114, 24,
  731. /* 440 */ 25, 26, 27, 28, 77, 30, 38, 123, 95, 115,
  732. /* 450 */ 126, 127, 128, 129, 77, 104, 120, 115, 76, 135,
  733. /* 460 */ 78, 79, 80, 81, 82, 83, 84, 85, 86, 87,
  734. /* 470 */ 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
  735. /* 480 */ 98, 77, 104, 101, 104, 103, 77, 95, 73, 107,
  736. /* 490 */ 108, 14, 110, 103, 112, 113, 114, 21, 136, 136,
  737. /* 500 */ 23, 24, 25, 26, 27, 28, 136, 30, 126, 127,
  738. /* 510 */ 128, 129, 136, 136, 38, 136, 136, 135, 79, 80,
  739. /* 520 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
  740. /* 530 */ 91, 92, 93, 94, 95, 96, 97, 98, 136, 63,
  741. /* 540 */ 101, 136, 103, 136, 136, 136, 107, 108, 109, 110,
  742. /* 550 */ 73, 112, 113, 114, 136, 136, 23, 24, 25, 26,
  743. /* 560 */ 27, 28, 123, 30, 136, 126, 127, 128, 129, 136,
  744. /* 570 */ 136, 136, 136, 76, 135, 78, 79, 80, 81, 82,
  745. /* 580 */ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
  746. /* 590 */ 93, 94, 95, 96, 97, 98, 21, 136, 101, 136,
  747. /* 600 */ 103, 20, 21, 136, 107, 108, 73, 110, 136, 112,
  748. /* 610 */ 113, 114, 136, 38, 33, 136, 35, 36, 37, 136,
  749. /* 620 */ 136, 136, 136, 126, 127, 128, 129, 136, 136, 136,
  750. /* 630 */ 136, 136, 135, 58, 53, 136, 55, 56, 136, 76,
  751. /* 640 */ 59, 78, 79, 80, 81, 82, 83, 84, 85, 86,
  752. /* 650 */ 87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
  753. /* 660 */ 97, 98, 136, 136, 101, 136, 103, 136, 77, 136,
  754. /* 670 */ 107, 108, 136, 110, 136, 112, 113, 114, 2, 136,
  755. /* 680 */ 4, 136, 6, 7, 8, 9, 10, 136, 136, 126,
  756. /* 690 */ 127, 128, 129, 136, 18, 19, 136, 136, 135, 136,
  757. /* 700 */ 136, 77, 111, 27, 28, 29, 115, 31, 32, 136,
  758. /* 710 */ 119, 136, 40, 136, 136, 39, 40, 41, 42, 43,
  759. /* 720 */ 44, 45, 46, 47, 136, 49, 50, 136, 52, 57,
  760. /* 730 */ 136, 136, 136, 57, 62, 111, 60, 61, 62, 115,
  761. /* 740 */ 64, 65, 136, 119, 68, 136, 136, 71, 77, 136,
  762. /* 750 */ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
  763. /* 760 */ 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
  764. /* 770 */ 136, 136, 101, 136, 103, 136, 136, 136, 107, 108,
  765. /* 780 */ 95, 110, 136, 112, 113, 114, 101, 102, 136, 136,
  766. /* 790 */ 105, 106, 107, 108, 136, 136, 136, 126, 127, 128,
  767. /* 800 */ 129, 136, 136, 136, 136, 136, 135, 78, 79, 80,
  768. /* 810 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
  769. /* 820 */ 91, 92, 93, 94, 95, 96, 97, 98, 136, 136,
  770. /* 830 */ 101, 136, 103, 136, 136, 13, 107, 108, 136, 110,
  771. /* 840 */ 136, 112, 113, 114, 136, 23, 24, 25, 26, 27,
  772. /* 850 */ 28, 136, 30, 136, 136, 126, 127, 128, 129, 136,
  773. /* 860 */ 136, 136, 136, 136, 135, 79, 80, 81, 82, 83,
  774. /* 870 */ 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
  775. /* 880 */ 94, 95, 96, 97, 98, 136, 136, 101, 136, 103,
  776. /* 890 */ 136, 136, 136, 107, 108, 73, 110, 136, 112, 113,
  777. /* 900 */ 114, 2, 136, 4, 136, 6, 7, 8, 9, 10,
  778. /* 910 */ 124, 136, 126, 127, 128, 129, 136, 18, 19, 136,
  779. /* 920 */ 21, 135, 136, 136, 136, 136, 27, 28, 29, 136,
  780. /* 930 */ 31, 32, 136, 34, 136, 136, 136, 136, 39, 40,
  781. /* 940 */ 41, 42, 43, 44, 45, 46, 47, 136, 49, 50,
  782. /* 950 */ 136, 40, 41, 42, 111, 136, 57, 46, 115, 60,
  783. /* 960 */ 61, 62, 119, 136, 65, 136, 136, 68, 136, 136,
  784. /* 970 */ 71, 136, 61, 2, 40, 4, 136, 6, 7, 8,
  785. /* 980 */ 9, 10, 136, 136, 136, 136, 136, 136, 136, 18,
  786. /* 990 */ 19, 57, 21, 111, 136, 61, 62, 115, 27, 28,
  787. /* 1000 */ 29, 119, 31, 32, 136, 136, 136, 136, 136, 136,
  788. /* 1010 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 136,
  789. /* 1020 */ 49, 50, 136, 136, 136, 136, 136, 136, 57, 136,
  790. /* 1030 */ 136, 60, 61, 62, 63, 136, 65, 136, 136, 68,
  791. /* 1040 */ 136, 136, 71, 136, 79, 80, 81, 82, 83, 84,
  792. /* 1050 */ 85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
  793. /* 1060 */ 95, 96, 97, 98, 136, 136, 101, 136, 103, 136,
  794. /* 1070 */ 136, 136, 107, 108, 136, 110, 136, 112, 113, 114,
  795. /* 1080 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  796. /* 1090 */ 136, 126, 127, 128, 129, 136, 136, 136, 136, 136,
  797. /* 1100 */ 135, 79, 80, 81, 82, 83, 84, 85, 86, 87,
  798. /* 1110 */ 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
  799. /* 1120 */ 98, 136, 136, 101, 136, 103, 83, 136, 136, 107,
  800. /* 1130 */ 108, 136, 110, 136, 112, 113, 114, 136, 95, 96,
  801. /* 1140 */ 136, 136, 99, 100, 101, 136, 136, 136, 126, 127,
  802. /* 1150 */ 128, 129, 136, 136, 136, 136, 136, 135, 79, 80,
  803. /* 1160 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
  804. /* 1170 */ 91, 92, 93, 94, 95, 96, 97, 98, 136, 136,
  805. /* 1180 */ 101, 136, 103, 136, 83, 136, 107, 108, 136, 110,
  806. /* 1190 */ 136, 112, 113, 114, 136, 136, 95, 96, 136, 136,
  807. /* 1200 */ 99, 100, 101, 136, 136, 126, 127, 128, 129, 136,
  808. /* 1210 */ 136, 136, 136, 136, 135, 79, 80, 81, 82, 83,
  809. /* 1220 */ 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
  810. /* 1230 */ 94, 95, 96, 97, 98, 136, 136, 101, 136, 103,
  811. /* 1240 */ 136, 136, 136, 107, 108, 136, 110, 136, 112, 113,
  812. /* 1250 */ 114, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  813. /* 1260 */ 136, 136, 126, 127, 128, 129, 136, 136, 136, 136,
  814. /* 1270 */ 136, 135, 79, 80, 81, 82, 83, 84, 85, 86,
  815. /* 1280 */ 87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
  816. /* 1290 */ 97, 98, 136, 136, 101, 136, 103, 136, 136, 136,
  817. /* 1300 */ 107, 108, 136, 110, 136, 112, 113, 114, 136, 136,
  818. /* 1310 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 126,
  819. /* 1320 */ 127, 128, 129, 136, 136, 136, 136, 136, 135, 79,
  820. /* 1330 */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
  821. /* 1340 */ 90, 91, 92, 93, 94, 95, 96, 97, 98, 136,
  822. /* 1350 */ 136, 101, 136, 103, 136, 136, 136, 107, 108, 136,
  823. /* 1360 */ 110, 136, 112, 113, 114, 136, 136, 136, 136, 136,
  824. /* 1370 */ 136, 136, 136, 136, 136, 136, 126, 127, 128, 129,
  825. /* 1380 */ 136, 136, 136, 136, 136, 135, 79, 80, 81, 82,
  826. /* 1390 */ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
  827. /* 1400 */ 93, 94, 95, 96, 97, 98, 136, 136, 101, 136,
  828. /* 1410 */ 103, 136, 136, 136, 107, 108, 136, 110, 136, 112,
  829. /* 1420 */ 113, 114, 136, 136, 136, 136, 136, 136, 136, 136,
  830. /* 1430 */ 136, 136, 136, 126, 127, 128, 129, 136, 136, 136,
  831. /* 1440 */ 136, 136, 135, 79, 80, 81, 82, 83, 84, 85,
  832. /* 1450 */ 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
  833. /* 1460 */ 96, 97, 98, 136, 136, 101, 136, 103, 136, 136,
  834. /* 1470 */ 136, 107, 108, 136, 110, 136, 112, 113, 114, 136,
  835. /* 1480 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  836. /* 1490 */ 126, 127, 128, 129, 136, 136, 136, 136, 136, 135,
  837. /* 1500 */ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
  838. /* 1510 */ 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
  839. /* 1520 */ 136, 136, 101, 136, 103, 136, 136, 136, 107, 108,
  840. /* 1530 */ 136, 110, 136, 112, 113, 114, 136, 136, 136, 136,
  841. /* 1540 */ 136, 136, 136, 136, 136, 136, 136, 126, 127, 128,
  842. /* 1550 */ 129, 136, 136, 136, 136, 136, 135, 79, 80, 81,
  843. /* 1560 */ 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
  844. /* 1570 */ 92, 93, 94, 95, 96, 97, 98, 136, 136, 101,
  845. /* 1580 */ 136, 103, 136, 136, 136, 107, 108, 136, 110, 136,
  846. /* 1590 */ 112, 113, 114, 136, 136, 136, 136, 136, 136, 136,
  847. /* 1600 */ 136, 136, 136, 136, 126, 127, 128, 129, 136, 136,
  848. /* 1610 */ 136, 136, 136, 135, 79, 80, 81, 82, 83, 84,
  849. /* 1620 */ 85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
  850. /* 1630 */ 95, 96, 97, 98, 136, 136, 101, 136, 103, 136,
  851. /* 1640 */ 136, 136, 107, 108, 136, 110, 136, 112, 113, 114,
  852. /* 1650 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  853. /* 1660 */ 136, 126, 127, 128, 129, 136, 136, 136, 136, 136,
  854. /* 1670 */ 135, 79, 80, 81, 82, 83, 84, 85, 86, 87,
  855. /* 1680 */ 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
  856. /* 1690 */ 98, 136, 136, 101, 136, 103, 136, 136, 136, 107,
  857. /* 1700 */ 108, 136, 110, 136, 112, 113, 114, 136, 136, 136,
  858. /* 1710 */ 136, 136, 136, 136, 136, 136, 136, 136, 126, 127,
  859. /* 1720 */ 128, 129, 136, 136, 136, 136, 136, 135, 79, 80,
  860. /* 1730 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
  861. /* 1740 */ 91, 92, 93, 94, 95, 96, 97, 98, 136, 136,
  862. /* 1750 */ 101, 136, 103, 136, 136, 136, 107, 108, 136, 110,
  863. /* 1760 */ 136, 112, 113, 114, 136, 136, 136, 136, 136, 136,
  864. /* 1770 */ 136, 136, 136, 136, 136, 126, 127, 128, 129, 136,
  865. /* 1780 */ 136, 136, 136, 136, 135, 79, 80, 81, 82, 83,
  866. /* 1790 */ 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
  867. /* 1800 */ 94, 95, 96, 97, 98, 136, 136, 101, 136, 103,
  868. /* 1810 */ 136, 136, 136, 107, 108, 136, 110, 136, 112, 113,
  869. /* 1820 */ 114, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  870. /* 1830 */ 136, 136, 126, 127, 128, 129, 136, 136, 136, 136,
  871. /* 1840 */ 136, 135, 79, 80, 81, 82, 83, 84, 85, 86,
  872. /* 1850 */ 87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
  873. /* 1860 */ 97, 98, 136, 136, 101, 136, 103, 136, 136, 136,
  874. /* 1870 */ 107, 108, 136, 110, 136, 112, 113, 114, 136, 136,
  875. /* 1880 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 126,
  876. /* 1890 */ 127, 128, 129, 136, 136, 136, 136, 136, 135, 79,
  877. /* 1900 */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
  878. /* 1910 */ 90, 91, 92, 93, 94, 95, 96, 97, 98, 136,
  879. /* 1920 */ 136, 101, 136, 103, 136, 136, 136, 107, 108, 136,
  880. /* 1930 */ 110, 136, 112, 113, 114, 136, 136, 136, 136, 136,
  881. /* 1940 */ 136, 136, 136, 136, 136, 136, 126, 127, 128, 129,
  882. /* 1950 */ 136, 136, 136, 136, 136, 135, 79, 80, 81, 82,
  883. /* 1960 */ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
  884. /* 1970 */ 93, 94, 95, 96, 97, 98, 136, 136, 101, 136,
  885. /* 1980 */ 103, 136, 136, 136, 107, 108, 136, 110, 136, 112,
  886. /* 1990 */ 113, 114, 136, 136, 136, 136, 136, 136, 136, 136,
  887. /* 2000 */ 136, 136, 136, 126, 127, 128, 129, 136, 136, 136,
  888. /* 2010 */ 136, 136, 135, 79, 80, 81, 82, 83, 84, 85,
  889. /* 2020 */ 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
  890. /* 2030 */ 96, 97, 98, 136, 136, 101, 136, 103, 136, 136,
  891. /* 2040 */ 136, 107, 108, 136, 110, 136, 112, 113, 114, 136,
  892. /* 2050 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  893. /* 2060 */ 126, 127, 128, 129, 136, 136, 136, 136, 136, 135,
  894. /* 2070 */ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
  895. /* 2080 */ 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
  896. /* 2090 */ 136, 136, 101, 136, 103, 136, 136, 136, 107, 108,
  897. /* 2100 */ 136, 110, 136, 112, 113, 114, 136, 136, 136, 136,
  898. /* 2110 */ 136, 136, 136, 136, 136, 136, 136, 126, 127, 128,
  899. /* 2120 */ 129, 136, 136, 136, 136, 136, 135, 79, 80, 81,
  900. /* 2130 */ 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
  901. /* 2140 */ 92, 93, 94, 95, 96, 97, 98, 136, 136, 101,
  902. /* 2150 */ 136, 103, 136, 136, 136, 107, 108, 136, 110, 136,
  903. /* 2160 */ 112, 113, 114, 136, 136, 136, 136, 136, 136, 136,
  904. /* 2170 */ 136, 136, 136, 136, 126, 127, 128, 129, 136, 136,
  905. /* 2180 */ 136, 136, 136, 135, 79, 80, 81, 82, 83, 84,
  906. /* 2190 */ 85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
  907. /* 2200 */ 95, 96, 97, 98, 136, 136, 101, 136, 103, 136,
  908. /* 2210 */ 136, 136, 107, 108, 136, 110, 136, 112, 113, 114,
  909. /* 2220 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  910. /* 2230 */ 136, 126, 127, 128, 129, 136, 136, 136, 136, 136,
  911. /* 2240 */ 135, 79, 80, 81, 82, 83, 84, 85, 86, 87,
  912. /* 2250 */ 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
  913. /* 2260 */ 98, 136, 136, 101, 136, 103, 136, 136, 136, 107,
  914. /* 2270 */ 108, 136, 110, 136, 112, 113, 114, 136, 136, 136,
  915. /* 2280 */ 136, 136, 136, 136, 136, 136, 136, 136, 126, 127,
  916. /* 2290 */ 128, 129, 136, 136, 136, 136, 136, 135, 79, 80,
  917. /* 2300 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
  918. /* 2310 */ 91, 92, 93, 94, 95, 96, 97, 98, 136, 136,
  919. /* 2320 */ 101, 136, 103, 136, 136, 136, 107, 108, 136, 110,
  920. /* 2330 */ 136, 112, 113, 114, 136, 136, 136, 136, 136, 136,
  921. /* 2340 */ 136, 136, 136, 136, 136, 126, 127, 128, 129, 136,
  922. /* 2350 */ 136, 136, 136, 136, 135, 79, 80, 81, 82, 83,
  923. /* 2360 */ 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
  924. /* 2370 */ 94, 95, 96, 97, 98, 136, 136, 101, 136, 103,
  925. /* 2380 */ 136, 136, 136, 107, 108, 136, 110, 136, 112, 113,
  926. /* 2390 */ 114, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  927. /* 2400 */ 136, 136, 126, 127, 128, 129, 136, 136, 136, 136,
  928. /* 2410 */ 136, 135, 79, 80, 81, 82, 83, 84, 85, 86,
  929. /* 2420 */ 87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
  930. /* 2430 */ 97, 98, 136, 136, 101, 136, 103, 136, 136, 136,
  931. /* 2440 */ 107, 108, 136, 110, 136, 112, 113, 114, 136, 136,
  932. /* 2450 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 126,
  933. /* 2460 */ 127, 128, 129, 136, 136, 136, 136, 136, 135, 79,
  934. /* 2470 */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
  935. /* 2480 */ 90, 91, 92, 93, 94, 95, 96, 97, 98, 136,
  936. /* 2490 */ 136, 101, 136, 103, 136, 136, 136, 107, 108, 136,
  937. /* 2500 */ 110, 136, 112, 113, 114, 136, 136, 136, 136, 136,
  938. /* 2510 */ 136, 136, 136, 136, 136, 136, 126, 127, 128, 129,
  939. /* 2520 */ 136, 136, 136, 136, 136, 135, 79, 80, 81, 82,
  940. /* 2530 */ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
  941. /* 2540 */ 93, 94, 95, 96, 97, 98, 136, 136, 101, 136,
  942. /* 2550 */ 103, 136, 136, 136, 107, 108, 136, 110, 136, 112,
  943. /* 2560 */ 113, 114, 136, 136, 136, 136, 136, 136, 136, 136,
  944. /* 2570 */ 136, 136, 136, 126, 127, 128, 129, 136, 136, 136,
  945. /* 2580 */ 136, 136, 135, 79, 80, 81, 82, 83, 84, 85,
  946. /* 2590 */ 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
  947. /* 2600 */ 96, 97, 98, 136, 136, 101, 136, 103, 136, 136,
  948. /* 2610 */ 136, 107, 108, 136, 110, 136, 112, 113, 114, 136,
  949. /* 2620 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  950. /* 2630 */ 126, 127, 128, 129, 136, 136, 136, 136, 136, 135,
  951. /* 2640 */ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
  952. /* 2650 */ 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
  953. /* 2660 */ 136, 136, 101, 136, 103, 136, 136, 136, 107, 108,
  954. /* 2670 */ 136, 110, 136, 112, 113, 114, 2, 136, 4, 136,
  955. /* 2680 */ 6, 7, 8, 9, 10, 136, 136, 126, 127, 128,
  956. /* 2690 */ 129, 136, 18, 19, 136, 21, 135, 136, 136, 136,
  957. /* 2700 */ 136, 27, 28, 29, 136, 31, 32, 136, 136, 136,
  958. /* 2710 */ 136, 136, 136, 39, 40, 41, 42, 43, 44, 45,
  959. /* 2720 */ 46, 47, 136, 49, 50, 136, 136, 21, 136, 136,
  960. /* 2730 */ 136, 57, 136, 136, 60, 61, 62, 136, 136, 65,
  961. /* 2740 */ 136, 136, 68, 136, 38, 71, 136, 136, 2, 136,
  962. /* 2750 */ 4, 136, 6, 7, 8, 9, 10, 51, 136, 136,
  963. /* 2760 */ 136, 136, 136, 136, 18, 19, 136, 21, 136, 63,
  964. /* 2770 */ 136, 136, 136, 27, 28, 29, 136, 31, 32, 136,
  965. /* 2780 */ 136, 136, 136, 136, 136, 39, 40, 41, 42, 43,
  966. /* 2790 */ 44, 45, 46, 47, 136, 49, 50, 136, 136, 136,
  967. /* 2800 */ 136, 136, 136, 57, 136, 136, 60, 61, 62, 136,
  968. /* 2810 */ 136, 65, 136, 136, 68, 136, 136, 71, 136, 79,
  969. /* 2820 */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
  970. /* 2830 */ 90, 91, 92, 93, 94, 95, 96, 97, 98, 136,
  971. /* 2840 */ 136, 101, 136, 103, 136, 136, 136, 107, 108, 136,
  972. /* 2850 */ 110, 136, 112, 113, 114, 2, 136, 4, 136, 6,
  973. /* 2860 */ 7, 8, 9, 10, 136, 136, 126, 127, 128, 129,
  974. /* 2870 */ 136, 18, 19, 136, 21, 135, 136, 136, 136, 136,
  975. /* 2880 */ 27, 28, 29, 136, 31, 32, 136, 136, 136, 136,
  976. /* 2890 */ 136, 136, 39, 40, 41, 42, 43, 44, 45, 46,
  977. /* 2900 */ 47, 136, 49, 50, 95, 136, 136, 136, 136, 136,
  978. /* 2910 */ 57, 136, 136, 60, 61, 62, 107, 108, 65, 136,
  979. /* 2920 */ 136, 68, 113, 136, 71, 136, 136, 2, 136, 4,
  980. /* 2930 */ 136, 6, 7, 8, 9, 10, 136, 136, 136, 136,
  981. /* 2940 */ 131, 132, 136, 18, 19, 136, 21, 136, 136, 136,
  982. /* 2950 */ 136, 136, 27, 28, 29, 136, 31, 32, 136, 136,
  983. /* 2960 */ 136, 136, 136, 136, 39, 40, 41, 42, 43, 44,
  984. /* 2970 */ 45, 46, 47, 136, 49, 50, 136, 136, 136, 136,
  985. /* 2980 */ 136, 136, 57, 136, 136, 60, 61, 62, 136, 136,
  986. /* 2990 */ 65, 136, 136, 68, 136, 136, 71, 136, 79, 80,
  987. /* 3000 */ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
  988. /* 3010 */ 91, 92, 93, 94, 95, 96, 97, 98, 136, 136,
  989. /* 3020 */ 101, 136, 103, 136, 136, 136, 107, 108, 136, 110,
  990. /* 3030 */ 136, 112, 113, 114, 136, 136, 136, 136, 136, 136,
  991. /* 3040 */ 136, 136, 136, 136, 136, 126, 127, 128, 129, 136,
  992. /* 3050 */ 136, 136, 136, 136, 135, 79, 80, 81, 82, 83,
  993. /* 3060 */ 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,
  994. /* 3070 */ 94, 95, 96, 97, 98, 136, 136, 101, 136, 103,
  995. /* 3080 */ 136, 136, 136, 107, 108, 136, 110, 136, 112, 113,
  996. /* 3090 */ 114, 2, 136, 4, 136, 6, 7, 8, 9, 10,
  997. /* 3100 */ 136, 136, 126, 127, 128, 129, 136, 18, 19, 136,
  998. /* 3110 */ 21, 135, 136, 136, 136, 136, 27, 28, 29, 136,
  999. /* 3120 */ 31, 32, 136, 136, 136, 136, 136, 136, 39, 40,
  1000. /* 3130 */ 41, 42, 43, 44, 45, 46, 47, 136, 49, 50,
  1001. /* 3140 */ 136, 136, 136, 136, 136, 136, 57, 136, 136, 60,
  1002. /* 3150 */ 61, 62, 136, 136, 65, 136, 136, 68, 136, 136,
  1003. /* 3160 */ 71, 136, 136, 2, 136, 4, 136, 6, 7, 8,
  1004. /* 3170 */ 9, 10, 136, 136, 136, 136, 136, 136, 136, 18,
  1005. /* 3180 */ 19, 136, 136, 22, 136, 136, 136, 136, 27, 28,
  1006. /* 3190 */ 29, 136, 31, 32, 136, 136, 136, 136, 136, 136,
  1007. /* 3200 */ 39, 40, 41, 42, 43, 44, 45, 46, 47, 136,
  1008. /* 3210 */ 49, 50, 136, 136, 136, 136, 136, 136, 57, 136,
  1009. /* 3220 */ 136, 60, 61, 62, 136, 136, 65, 136, 136, 68,
  1010. /* 3230 */ 136, 136, 71, 136, 136, 2, 136, 4, 136, 6,
  1011. /* 3240 */ 7, 8, 9, 10, 136, 136, 136, 136, 136, 136,
  1012. /* 3250 */ 136, 18, 19, 136, 21, 136, 136, 136, 136, 136,
  1013. /* 3260 */ 27, 28, 29, 136, 31, 32, 136, 136, 136, 136,
  1014. /* 3270 */ 136, 136, 39, 40, 41, 42, 43, 44, 45, 46,
  1015. /* 3280 */ 47, 136, 49, 50, 136, 136, 136, 136, 136, 136,
  1016. /* 3290 */ 57, 136, 136, 60, 61, 62, 136, 136, 65, 136,
  1017. /* 3300 */ 136, 68, 136, 136, 71, 136, 79, 80, 81, 82,
  1018. /* 3310 */ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
  1019. /* 3320 */ 93, 94, 95, 96, 97, 98, 136, 136, 101, 136,
  1020. /* 3330 */ 103, 136, 136, 136, 107, 108, 136, 110, 136, 112,
  1021. /* 3340 */ 113, 114, 136, 136, 136, 136, 136, 136, 136, 136,
  1022. /* 3350 */ 136, 136, 136, 126, 127, 128, 129, 136, 136, 136,
  1023. /* 3360 */ 136, 136, 135, 79, 80, 81, 82, 83, 84, 85,
  1024. /* 3370 */ 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
  1025. /* 3380 */ 96, 97, 98, 136, 136, 101, 136, 103, 136, 136,
  1026. /* 3390 */ 136, 107, 108, 136, 110, 136, 112, 113, 114, 136,
  1027. /* 3400 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  1028. /* 3410 */ 126, 127, 128, 129, 136, 136, 136, 136, 136, 135,
  1029. /* 3420 */ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88,
  1030. /* 3430 */ 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
  1031. /* 3440 */ 136, 136, 101, 136, 103, 136, 136, 136, 107, 108,
  1032. /* 3450 */ 136, 110, 136, 112, 113, 114, 136, 136, 136, 136,
  1033. /* 3460 */ 136, 136, 136, 136, 136, 136, 136, 126, 127, 128,
  1034. /* 3470 */ 129, 136, 136, 136, 136, 136, 135, 79, 80, 81,
  1035. /* 3480 */ 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
  1036. /* 3490 */ 92, 93, 94, 95, 96, 97, 98, 136, 136, 101,
  1037. /* 3500 */ 136, 103, 136, 136, 136, 107, 108, 136, 110, 136,
  1038. /* 3510 */ 112, 113, 114, 136, 136, 136, 136, 136, 136, 136,
  1039. /* 3520 */ 136, 136, 136, 136, 126, 127, 128, 129, 136, 136,
  1040. /* 3530 */ 136, 136, 136, 135, 79, 80, 81, 82, 83, 84,
  1041. /* 3540 */ 85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
  1042. /* 3550 */ 95, 96, 97, 98, 136, 136, 101, 136, 103, 136,
  1043. /* 3560 */ 136, 136, 107, 108, 136, 110, 136, 112, 113, 114,
  1044. /* 3570 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  1045. /* 3580 */ 136, 126, 127, 128, 129, 136, 136, 136, 136, 136,
  1046. /* 3590 */ 135, 79, 80, 81, 82, 83, 84, 85, 86, 87,
  1047. /* 3600 */ 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
  1048. /* 3610 */ 98, 136, 136, 101, 136, 103, 136, 136, 136, 107,
  1049. /* 3620 */ 108, 136, 110, 136, 112, 113, 114, 2, 136, 4,
  1050. /* 3630 */ 136, 6, 7, 8, 9, 10, 136, 136, 126, 127,
  1051. /* 3640 */ 128, 129, 136, 18, 19, 136, 21, 135, 136, 136,
  1052. /* 3650 */ 136, 136, 27, 28, 29, 136, 31, 32, 136, 136,
  1053. /* 3660 */ 136, 136, 136, 136, 39, 40, 41, 42, 43, 44,
  1054. /* 3670 */ 45, 46, 47, 136, 49, 50, 136, 136, 136, 136,
  1055. /* 3680 */ 136, 136, 57, 136, 136, 60, 61, 62, 136, 136,
  1056. /* 3690 */ 65, 136, 136, 68, 136, 136, 71, 136, 136, 79,
  1057. /* 3700 */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
  1058. /* 3710 */ 90, 91, 92, 93, 94, 95, 96, 97, 98, 136,
  1059. /* 3720 */ 136, 101, 136, 103, 136, 13, 14, 107, 108, 136,
  1060. /* 3730 */ 110, 136, 112, 113, 114, 23, 24, 25, 26, 27,
  1061. /* 3740 */ 28, 136, 30, 136, 136, 136, 126, 127, 128, 129,
  1062. /* 3750 */ 136, 136, 136, 136, 136, 135, 136, 136, 136, 136,
  1063. /* 3760 */ 136, 136, 79, 80, 81, 82, 83, 84, 85, 86,
  1064. /* 3770 */ 87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
  1065. /* 3780 */ 97, 98, 136, 136, 101, 73, 103, 136, 136, 136,
  1066. /* 3790 */ 107, 108, 136, 110, 136, 112, 113, 114, 2, 136,
  1067. /* 3800 */ 4, 136, 6, 7, 8, 9, 10, 136, 136, 126,
  1068. /* 3810 */ 127, 128, 129, 136, 18, 19, 136, 136, 135, 136,
  1069. /* 3820 */ 136, 136, 136, 27, 28, 29, 136, 31, 32, 136,
  1070. /* 3830 */ 136, 136, 136, 136, 136, 39, 40, 41, 42, 43,
  1071. /* 3840 */ 44, 45, 46, 47, 136, 49, 50, 136, 35, 36,
  1072. /* 3850 */ 37, 136, 136, 57, 136, 136, 60, 61, 62, 136,
  1073. /* 3860 */ 136, 65, 136, 136, 68, 136, 53, 71, 55, 56,
  1074. /* 3870 */ 2, 136, 59, 136, 136, 136, 8, 9, 10, 136,
  1075. /* 3880 */ 136, 136, 136, 136, 136, 136, 18, 19, 136, 136,
  1076. /* 3890 */ 136, 136, 136, 136, 136, 27, 28, 29, 136, 31,
  1077. /* 3900 */ 32, 136, 136, 136, 136, 136, 136, 39, 40, 41,
  1078. /* 3910 */ 42, 43, 44, 45, 46, 47, 136, 49, 50, 136,
  1079. /* 3920 */ 9, 136, 136, 136, 136, 57, 136, 136, 60, 61,
  1080. /* 3930 */ 62, 20, 21, 65, 136, 1, 68, 136, 4, 71,
  1081. /* 3940 */ 6, 7, 136, 33, 136, 35, 36, 37, 136, 136,
  1082. /* 3950 */ 136, 40, 41, 42, 43, 44, 45, 23, 24, 25,
  1083. /* 3960 */ 26, 27, 28, 53, 30, 55, 56, 136, 57, 59,
  1084. /* 3970 */ 136, 60, 61, 62, 136, 136, 136, 136, 136, 68,
  1085. /* 3980 */ 136, 136, 136, 136, 136, 136, 52, 136, 1, 136,
  1086. /* 3990 */ 136, 4, 136, 6, 7, 136, 1, 136, 64, 4,
  1087. /* 4000 */ 136, 6, 7, 136, 136, 136, 136, 73, 136, 136,
  1088. /* 4010 */ 23, 24, 25, 26, 27, 28, 21, 30, 23, 24,
  1089. /* 4020 */ 25, 26, 27, 28, 4, 30, 6, 7, 136, 136,
  1090. /* 4030 */ 136, 136, 136, 136, 77, 136, 136, 136, 136, 52,
  1091. /* 4040 */ 136, 84, 85, 23, 24, 25, 26, 27, 28, 136,
  1092. /* 4050 */ 30, 64, 95, 96, 97, 98, 1, 136, 101, 4,
  1093. /* 4060 */ 73, 6, 7, 136, 107, 108, 136, 110, 73, 112,
  1094. /* 4070 */ 113, 114, 136, 136, 136, 136, 136, 22, 23, 24,
  1095. /* 4080 */ 25, 26, 27, 28, 1, 30, 136, 4, 136, 6,
  1096. /* 4090 */ 7, 136, 136, 73, 136, 136, 136, 136, 136, 33,
  1097. /* 4100 */ 136, 35, 36, 37, 136, 136, 23, 24, 25, 26,
  1098. /* 4110 */ 27, 28, 1, 30, 136, 4, 136, 6, 7, 53,
  1099. /* 4120 */ 136, 55, 56, 136, 136, 59, 136, 136, 73, 136,
  1100. /* 4130 */ 136, 136, 136, 22, 23, 24, 25, 26, 27, 28,
  1101. /* 4140 */ 136, 30, 136, 136, 136, 83, 63, 136, 1, 136,
  1102. /* 4150 */ 136, 4, 136, 6, 7, 136, 73, 95, 96, 136,
  1103. /* 4160 */ 136, 99, 100, 101, 136, 136, 136, 136, 136, 136,
  1104. /* 4170 */ 23, 24, 25, 26, 27, 28, 136, 30, 136, 136,
  1105. /* 4180 */ 118, 136, 136, 136, 73, 136, 1, 136, 136, 4,
  1106. /* 4190 */ 136, 6, 7, 136, 136, 136, 136, 136, 136, 52,
  1107. /* 4200 */ 136, 136, 136, 136, 136, 136, 21, 136, 23, 24,
  1108. /* 4210 */ 25, 26, 27, 28, 136, 30, 136, 83, 136, 136,
  1109. /* 4220 */ 73, 136, 1, 136, 136, 4, 136, 6, 7, 95,
  1110. /* 4230 */ 96, 136, 136, 99, 100, 101, 136, 136, 136, 136,
  1111. /* 4240 */ 136, 136, 136, 22, 23, 24, 25, 26, 27, 28,
  1112. /* 4250 */ 136, 30, 118, 136, 136, 84, 85, 136, 73, 136,
  1113. /* 4260 */ 136, 136, 136, 136, 136, 136, 95, 96, 97, 98,
  1114. /* 4270 */ 136, 136, 101, 136, 136, 136, 84, 85, 107, 108,
  1115. /* 4280 */ 136, 110, 136, 112, 113, 114, 136, 95, 96, 97,
  1116. /* 4290 */ 98, 136, 136, 101, 73, 136, 84, 85, 136, 107,
  1117. /* 4300 */ 108, 136, 110, 136, 112, 113, 114, 95, 96, 97,
  1118. /* 4310 */ 98, 136, 136, 101, 136, 136, 136, 136, 136, 107,
  1119. /* 4320 */ 108, 136, 110, 136, 112, 113, 114, 136, 84, 85,
  1120. /* 4330 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 95,
  1121. /* 4340 */ 96, 97, 98, 1, 136, 101, 4, 136, 6, 7,
  1122. /* 4350 */ 9, 107, 108, 136, 110, 136, 112, 113, 114, 136,
  1123. /* 4360 */ 136, 21, 136, 136, 136, 23, 24, 25, 26, 27,
  1124. /* 4370 */ 28, 136, 30, 33, 136, 35, 36, 37, 136, 136,
  1125. /* 4380 */ 136, 40, 41, 42, 43, 44, 45, 136, 136, 136,
  1126. /* 4390 */ 136, 136, 136, 53, 136, 55, 56, 136, 57, 59,
  1127. /* 4400 */ 136, 60, 61, 62, 136, 136, 136, 136, 4, 68,
  1128. /* 4410 */ 6, 7, 136, 136, 136, 73, 136, 136, 14, 136,
  1129. /* 4420 */ 136, 136, 136, 4, 136, 6, 7, 23, 24, 25,
  1130. /* 4430 */ 26, 27, 28, 14, 30, 136, 136, 136, 136, 136,
  1131. /* 4440 */ 136, 136, 23, 24, 25, 26, 27, 28, 136, 30,
  1132. /* 4450 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  1133. /* 4460 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  1134. /* 4470 */ 136, 136, 136, 136, 136, 136, 136, 73, 136, 136,
  1135. /* 4480 */ 136, 136, 136, 136, 136, 136, 136, 136, 136, 136,
  1136. /* 4490 */ 136, 136, 73,
  1137. );
  1138. const YY_SHIFT_USE_DFLT = -26;
  1139. const YY_SHIFT_MAX = 186;
  1140. static public $yy_shift_ofst = array(
  1141. /* 0 */ 2674, 676, 971, 899, 971, 3089, 3089, 3161, 3233, 3796,
  1142. /* 10 */ 3796, 3796, 2674, 3796, 3796, 2746, 2925, 2853, 3625, 3796,
  1143. /* 20 */ 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796,
  1144. /* 30 */ 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796,
  1145. /* 40 */ 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796,
  1146. /* 50 */ 3796, 3796, 3796, 3796, 3868, 3911, 4341, 4341, 4341, 4341,
  1147. /* 60 */ 911, 911, 934, 911, 911, 329, 934, 672, 3934, 3987,
  1148. /* 70 */ 3995, 3995, 4340, 4340, 672, 4221, 4055, 4185, 4083, 4147,
  1149. /* 80 */ 4111, 4342, 4342, 4342, 4342, 4342, 4342, 4419, 4342, 4342,
  1150. /* 90 */ 4342, 4342, 4404, 4020, 4020, 4020, 3712, 822, 477, 20,
  1151. /* 100 */ 533, 533, 533, 3910, 533, 3910, 533, 533, 533, 533,
  1152. /* 110 */ 3813, 415, 3813, 72, 185, 23, 241, 23, 128, 128,
  1153. /* 120 */ 128, 128, 128, 328, 328, 581, 31, 363, 31, 318,
  1154. /* 130 */ 120, 179, 70, 38, -25, 296, 327, -9, 327, 15,
  1155. /* 140 */ -9, 15, 15, -9, -9, 327, 15, 296, 327, 37,
  1156. /* 150 */ 15, 15, 15, 15, -9, 15, 37, -9, 15, 296,
  1157. /* 160 */ 4066, 4066, 84, 2706, 575, 476, 408, 350, 249, 304,
  1158. /* 170 */ -13, 235, 90, 354, 91, 244, 234, 294, 226, 186,
  1159. /* 180 */ 132, 230, 264, 271, 276, 313, 261,
  1160. );
  1161. const YY_REDUCE_USE_DFLT = -76;
  1162. const YY_REDUCE_MAX = 159;
  1163. static public $yy_reduce_ofst = array(
  1164. /* 0 */ -75, 267, 210, -18, 39, 153, 96, 563, 382, 497,
  1165. /* 10 */ 439, 324, 671, 729, 786, 2740, 3284, 3227, 3512, 3398,
  1166. /* 20 */ 3341, 3683, 3620, 2105, 1364, 1022, 1592, 1421, 1307, 1250,
  1167. /* 30 */ 1136, 1193, 2447, 2219, 2276, 2333, 1706, 2048, 1763, 1877,
  1168. /* 40 */ 1991, 1934, 1820, 2390, 2162, 1649, 965, 1478, 1535, 1079,
  1169. /* 50 */ 3455, 2504, 2561, 2919, 2976, 3957, 4192, 4212, 4244, 4171,
  1170. /* 60 */ 4134, 4062, 685, 1043, 1101, 2809, 49, 64, 206, 92,
  1171. /* 70 */ 35, 149, 591, 624, 121, -71, -71, -71, -71, -71,
  1172. /* 80 */ -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  1173. /* 90 */ -71, -71, -71, -71, -71, -71, -71, -71, -71, -71,
  1174. /* 100 */ -71, -71, -71, 843, -71, 882, -71, -71, -71, -71,
  1175. /* 110 */ 843, -71, 882, -71, -71, 215, -71, 215, -71, -71,
  1176. /* 120 */ -71, -71, -71, 151, -20, 346, 342, 248, 334, 248,
  1177. /* 130 */ 390, 310, 200, 367, 299, 308, 322, 306, 269, 321,
  1178. /* 140 */ 353, 404, 409, 392, 306, 351, 377, 336, 380, 378,
  1179. /* 150 */ 320, 125, 62, 130, 78, 30, 263, -46, 150, 192,
  1180. );
  1181. static public $yyExpectedTokens = array(
  1182. /* 0 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1183. /* 1 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 52, 57, 60, 61, 62, 64, 65, 68, 71, ),
  1184. /* 2 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 63, 65, 68, 71, ),
  1185. /* 3 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 34, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1186. /* 4 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 63, 65, 68, 71, ),
  1187. /* 5 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1188. /* 6 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1189. /* 7 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 22, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1190. /* 8 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1191. /* 9 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1192. /* 10 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1193. /* 11 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1194. /* 12 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1195. /* 13 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1196. /* 14 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1197. /* 15 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1198. /* 16 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1199. /* 17 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1200. /* 18 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 21, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1201. /* 19 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1202. /* 20 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1203. /* 21 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1204. /* 22 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1205. /* 23 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1206. /* 24 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1207. /* 25 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1208. /* 26 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1209. /* 27 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1210. /* 28 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1211. /* 29 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1212. /* 30 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1213. /* 31 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1214. /* 32 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1215. /* 33 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1216. /* 34 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1217. /* 35 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1218. /* 36 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1219. /* 37 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1220. /* 38 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1221. /* 39 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1222. /* 40 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1223. /* 41 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1224. /* 42 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1225. /* 43 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1226. /* 44 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1227. /* 45 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1228. /* 46 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1229. /* 47 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1230. /* 48 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1231. /* 49 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1232. /* 50 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1233. /* 51 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1234. /* 52 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1235. /* 53 */ array(2, 4, 6, 7, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1236. /* 54 */ array(2, 8, 9, 10, 18, 19, 27, 28, 29, 31, 32, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 57, 60, 61, 62, 65, 68, 71, ),
  1237. /* 55 */ array(9, 20, 21, 40, 41, 42, 43, 44, 45, 57, 60, 61, 62, 68, ),
  1238. /* 56 */ array(9, 40, 41, 42, 43, 44, 45, 57, 60, 61, 62, 68, ),
  1239. /* 57 */ array(9, 40, 41, 42, 43, 44, 45, 57, 60, 61, 62, 68, ),
  1240. /* 58 */ array(9, 40, 41, 42, 43, 44, 45, 57, 60, 61, 62, 68, ),
  1241. /* 59 */ array(9, 40, 41, 42, 43, 44, 45, 57, 60, 61, 62, 68, ),
  1242. /* 60 */ array(40, 41, 42, 46, 61, ),
  1243. /* 61 */ array(40, 41, 42, 46, 61, ),
  1244. /* 62 */ array(40, 57, 61, 62, ),
  1245. /* 63 */ array(40, 41, 42, 46, 61, ),
  1246. /* 64 */ array(40, 41, 42, 46, 61, ),
  1247. /* 65 */ array(40, 57, 62, 70, ),
  1248. /* 66 */ array(40, 57, 61, 62, ),
  1249. /* 67 */ array(40, 57, 62, ),
  1250. /* 68 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 52, 64, 73, ),
  1251. /* 69 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 52, 64, 73, ),
  1252. /* 70 */ array(1, 4, 6, 7, 21, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1253. /* 71 */ array(1, 4, 6, 7, 21, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1254. /* 72 */ array(21, 33, 35, 36, 37, 53, 55, 56, 59, ),
  1255. /* 73 */ array(21, 33, 35, 36, 37, 53, 55, 56, 59, ),
  1256. /* 74 */ array(40, 57, 62, ),
  1257. /* 75 */ array(1, 4, 6, 7, 22, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1258. /* 76 */ array(1, 4, 6, 7, 22, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1259. /* 77 */ array(1, 4, 6, 7, 21, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1260. /* 78 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 63, 73, ),
  1261. /* 79 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 52, 73, ),
  1262. /* 80 */ array(1, 4, 6, 7, 22, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1263. /* 81 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1264. /* 82 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1265. /* 83 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1266. /* 84 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1267. /* 85 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1268. /* 86 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1269. /* 87 */ array(4, 6, 7, 14, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1270. /* 88 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1271. /* 89 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1272. /* 90 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1273. /* 91 */ array(1, 4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1274. /* 92 */ array(4, 6, 7, 14, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1275. /* 93 */ array(4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1276. /* 94 */ array(4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1277. /* 95 */ array(4, 6, 7, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1278. /* 96 */ array(13, 14, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1279. /* 97 */ array(13, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1280. /* 98 */ array(14, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1281. /* 99 */ array(14, 23, 24, 25, 26, 27, 28, 30, 73, ),
  1282. /* 100 */ array(23, 24, 25, 26, 27, 28, 30, 73, ),
  1283. /* 101 */ array(23, 24, 25, 26, 27, 28, 30, 73, ),
  1284. /* 102 */ array(23, 24, 25, 26, 27, 28, 30, 73, ),
  1285. /* 103 */ array(33, 35, 36, 37, 53, 55, 56, 59, ),
  1286. /* 104 */ array(23, 24, 25, 26, 27, 28, 30, 73, ),
  1287. /* 105 */ array(33, 35, 36, 37, 53, 55, 56, 59, ),
  1288. /* 106 */ array(23, 24, 25, 26, 27, 28, 30, 73, ),
  1289. /* 107 */ array(23, 24, 25, 26, 27, 28, 30, 73, ),
  1290. /* 108 */ array(23, 24, 25, 26, 27, 28, 30, 73, ),
  1291. /* 109 */ array(23, 24, 25, 26, 27, 28, 30, 73, ),
  1292. /* 110 */ array(35, 36, 37, 53, 55, 56, 59, ),
  1293. /* 111 */ array(24, 25, 26, 27, 28, 30, 73, ),
  1294. /* 112 */ array(35, 36, 37, 53, 55, 56, 59, ),
  1295. /* 113 */ array(25, 26, 27, 28, 30, 73, ),
  1296. /* 114 */ array(26, 27, 28, 30, 73, ),
  1297. /* 115 */ array(1, 4, 6, 7, ),
  1298. /* 116 */ array(27, 28, 30, 73, ),
  1299. /* 117 */ array(1, 4, 6, 7, ),
  1300. /* 118 */ array(30, 73, ),
  1301. /* 119 */ array(30, 73, ),
  1302. /* 120 */ array(30, 73, ),
  1303. /* 121 */ array(30, 73, ),
  1304. /* 122 */ array(30, 73, ),
  1305. /* 123 */ array(72, ),
  1306. /* 124 */ array(72, ),
  1307. /* 125 */ array(20, 21, 33, 35, 36, 37, 53, 55, 56, 59, ),
  1308. /* 126 */ array(53, 55, 56, ),
  1309. /* 127 */ array(3, 22, 72, ),
  1310. /* 128 */ array(53, 55, 56, ),
  1311. /* 129 */ array(3, 22, 72, ),
  1312. /* 130 */ array(49, 50, ),
  1313. /* 131 */ array(21, 51, ),
  1314. /* 132 */ array(11, 12, ),
  1315. /* 133 */ array(2, 21, ),
  1316. /* 134 */ array(66, 67, ),
  1317. /* 135 */ array(33, ),
  1318. /* 136 */ array(51, ),
  1319. /* 137 */ array(40, ),
  1320. /* 138 */ array(51, ),
  1321. /* 139 */ array(21, ),
  1322. /* 140 */ array(40, ),
  1323. /* 141 */ array(21, ),
  1324. /* 142 */ array(21, ),
  1325. /* 143 */ array(40, ),
  1326. /* 144 */ array(40, ),
  1327. /* 145 */ array(51, ),
  1328. /* 146 */ array(21, ),
  1329. /* 147 */ array(33, ),
  1330. /* 148 */ array(51, ),
  1331. /* 149 */ array(51, ),
  1332. /* 150 */ array(21, ),
  1333. /* 151 */ array(21, ),
  1334. /* 152 */ array(21, ),
  1335. /* 153 */ array(21, ),
  1336. /* 154 */ array(40, ),
  1337. /* 155 */ array(21, ),
  1338. /* 156 */ array(51, ),
  1339. /* 157 */ array(40, ),
  1340. /* 158 */ array(21, ),
  1341. /* 159 */ array(33, ),
  1342. /* 160 */ array(33, 35, 36, 37, 53, 55, 56, 59, ),
  1343. /* 161 */ array(33, 35, 36, 37, 53, 55, 56, 59, ),
  1344. /* 162 */ array(17, 20, 31, 32, ),
  1345. /* 163 */ array(21, 38, 51, 63, ),
  1346. /* 164 */ array(21, 38, 58, ),
  1347. /* 165 */ array(21, 38, 63, ),
  1348. /* 166 */ array(21, 22, 38, ),
  1349. /* 167 */ array(21, 22, 38, ),
  1350. /* 168 */ array(21, 34, 38, ),
  1351. /* 169 */ array(21, 22, 38, ),
  1352. /* 170 */ array(38, 69, ),
  1353. /* 171 */ array(22, 38, ),
  1354. /* 172 */ array(48, 51, ),
  1355. /* 173 */ array(22, 38, ),
  1356. /* 174 */ array(15, 52, ),
  1357. /* 175 */ array(15, ),
  1358. /* 176 */ array(38, ),
  1359. /* 177 */ array(16, ),
  1360. /* 178 */ array(38, ),
  1361. /* 179 */ array(69, ),
  1362. /* 180 */ array(66, ),
  1363. /* 181 */ array(22, ),
  1364. /* 182 */ array(22, ),
  1365. /* 183 */ array(38, ),
  1366. /* 184 */ array(51, ),
  1367. /* 185 */ array(3, ),
  1368. /* 186 */ array(54, ),
  1369. /* 187 */ array(),
  1370. /* 188 */ array(),
  1371. /* 189 */ array(),
  1372. /* 190 */ array(),
  1373. /* 191 */ array(),
  1374. /* 192 */ array(),
  1375. /* 193 */ array(),
  1376. /* 194 */ array(),
  1377. /* 195 */ array(),
  1378. /* 196 */ array(),
  1379. /* 197 */ array(),
  1380. /* 198 */ array(),
  1381. /* 199 */ array(),
  1382. /* 200 */ array(),
  1383. /* 201 */ array(),
  1384. /* 202 */ array(),
  1385. /* 203 */ array(),
  1386. /* 204 */ array(),
  1387. /* 205 */ array(),
  1388. /* 206 */ array(),
  1389. /* 207 */ array(),
  1390. /* 208 */ array(),
  1391. /* 209 */ array(),
  1392. /* 210 */ array(),
  1393. /* 211 */ array(),
  1394. /* 212 */ array(),
  1395. /* 213 */ array(),
  1396. /* 214 */ array(),
  1397. /* 215 */ array(),
  1398. /* 216 */ array(),
  1399. /* 217 */ array(),
  1400. /* 218 */ array(),
  1401. /* 219 */ array(),
  1402. /* 220 */ array(),
  1403. /* 221 */ array(),
  1404. /* 222 */ array(),
  1405. /* 223 */ array(),
  1406. /* 224 */ array(),
  1407. /* 225 */ array(),
  1408. /* 226 */ array(),
  1409. /* 227 */ array(),
  1410. /* 228 */ array(),
  1411. /* 229 */ array(),
  1412. /* 230 */ array(),
  1413. /* 231 */ array(),
  1414. /* 232 */ array(),
  1415. /* 233 */ array(),
  1416. /* 234 */ array(),
  1417. /* 235 */ array(),
  1418. /* 236 */ array(),
  1419. /* 237 */ array(),
  1420. /* 238 */ array(),
  1421. /* 239 */ array(),
  1422. /* 240 */ array(),
  1423. /* 241 */ array(),
  1424. /* 242 */ array(),
  1425. /* 243 */ array(),
  1426. /* 244 */ array(),
  1427. /* 245 */ array(),
  1428. /* 246 */ array(),
  1429. /* 247 */ array(),
  1430. /* 248 */ array(),
  1431. /* 249 */ array(),
  1432. /* 250 */ array(),
  1433. /* 251 */ array(),
  1434. /* 252 */ array(),
  1435. /* 253 */ array(),
  1436. /* 254 */ array(),
  1437. /* 255 */ array(),
  1438. /* 256 */ array(),
  1439. /* 257 */ array(),
  1440. /* 258 */ array(),
  1441. /* 259 */ array(),
  1442. /* 260 */ array(),
  1443. /* 261 */ array(),
  1444. /* 262 */ array(),
  1445. /* 263 */ array(),
  1446. /* 264 */ array(),
  1447. /* 265 */ array(),
  1448. /* 266 */ array(),
  1449. /* 267 */ array(),
  1450. /* 268 */ array(),
  1451. /* 269 */ array(),
  1452. /* 270 */ array(),
  1453. /* 271 */ array(),
  1454. /* 272 */ array(),
  1455. /* 273 */ array(),
  1456. /* 274 */ array(),
  1457. /* 275 */ array(),
  1458. /* 276 */ array(),
  1459. /* 277 */ array(),
  1460. /* 278 */ array(),
  1461. /* 279 */ array(),
  1462. /* 280 */ array(),
  1463. /* 281 */ array(),
  1464. /* 282 */ array(),
  1465. /* 283 */ array(),
  1466. /* 284 */ array(),
  1467. /* 285 */ array(),
  1468. /* 286 */ array(),
  1469. /* 287 */ array(),
  1470. /* 288 */ array(),
  1471. /* 289 */ array(),
  1472. /* 290 */ array(),
  1473. /* 291 */ array(),
  1474. /* 292 */ array(),
  1475. /* 293 */ array(),
  1476. /* 294 */ array(),
  1477. /* 295 */ array(),
  1478. /* 296 */ array(),
  1479. /* 297 */ array(),
  1480. /* 298 */ array(),
  1481. /* 299 */ array(),
  1482. /* 300 */ array(),
  1483. /* 301 */ array(),
  1484. /* 302 */ array(),
  1485. /* 303 */ array(),
  1486. /* 304 */ array(),
  1487. /* 305 */ array(),
  1488. /* 306 */ array(),
  1489. /* 307 */ array(),
  1490. /* 308 */ array(),
  1491. /* 309 */ array(),
  1492. /* 310 */ array(),
  1493. /* 311 */ array(),
  1494. /* 312 */ array(),
  1495. /* 313 */ array(),
  1496. );
  1497. static public $yy_default = array(
  1498. /* 0 */ 314, 508, 508, 508, 508, 508, 508, 508, 508, 508,
  1499. /* 10 */ 508, 363, 508, 319, 508, 508, 508, 508, 508, 508,
  1500. /* 20 */ 508, 508, 508, 508, 508, 508, 508, 508, 508, 508,
  1501. /* 30 */ 508, 508, 508, 508, 508, 508, 508, 508, 508, 508,
  1502. /* 40 */ 508, 508, 508, 508, 508, 508, 508, 428, 508, 508,
  1503. /* 50 */ 508, 508, 508, 508, 356, 403, 508, 508, 508, 508,
  1504. /* 60 */ 398, 398, 364, 363, 508, 508, 508, 508, 435, 395,
  1505. /* 70 */ 508, 508, 409, 405, 508, 508, 508, 508, 508, 435,
  1506. /* 80 */ 508, 438, 488, 349, 369, 489, 427, 449, 437, 320,
  1507. /* 90 */ 429, 500, 447, 448, 450, 456, 469, 471, 473, 470,
  1508. /* 100 */ 474, 505, 472, 326, 444, 327, 475, 346, 355, 507,
  1509. /* 110 */ 415, 503, 415, 502, 504, 508, 501, 321, 492, 491,
  1510. /* 120 */ 490, 499, 498, 508, 508, 407, 508, 508, 508, 508,
  1511. /* 130 */ 508, 508, 508, 508, 439, 413, 362, 420, 362, 508,
  1512. /* 140 */ 390, 508, 508, 508, 508, 362, 508, 508, 362, 362,
  1513. /* 150 */ 508, 508, 508, 508, 508, 508, 362, 508, 508, 508,
  1514. /* 160 */ 493, 494, 379, 425, 508, 508, 508, 508, 508, 508,
  1515. /* 170 */ 508, 508, 508, 508, 367, 382, 482, 348, 508, 508,
  1516. /* 180 */ 440, 508, 508, 315, 467, 486, 508, 366, 406, 396,
  1517. /* 190 */ 337, 358, 316, 392, 425, 506, 365, 402, 399, 460,
  1518. /* 200 */ 462, 463, 401, 397, 351, 352, 350, 354, 400, 464,
  1519. /* 210 */ 465, 347, 371, 417, 370, 418, 372, 468, 466, 353,
  1520. /* 220 */ 318, 373, 368, 324, 457, 359, 360, 361, 452, 338,
  1521. /* 230 */ 461, 357, 387, 317, 375, 378, 383, 384, 385, 386,
  1522. /* 240 */ 381, 380, 495, 496, 339, 458, 453, 329, 330, 331,
  1523. /* 250 */ 332, 328, 412, 389, 377, 393, 394, 333, 334, 343,
  1524. /* 260 */ 344, 345, 388, 342, 341, 335, 336, 340, 411, 416,
  1525. /* 270 */ 480, 478, 479, 455, 483, 487, 481, 391, 484, 485,
  1526. /* 280 */ 422, 323, 432, 430, 434, 433, 322, 423, 374, 431,
  1527. /* 290 */ 436, 477, 476, 419, 421, 424, 426, 414, 382, 408,
  1528. /* 300 */ 410, 379, 442, 441, 451, 454, 325, 459, 446, 445,
  1529. /* 310 */ 443, 497, 376, 404,
  1530. );
  1531. /* The next thing included is series of defines which control
  1532. ** various aspects of the generated parser.
  1533. ** self::YYNOCODE is a number which corresponds
  1534. ** to no legal terminal or nonterminal number. This
  1535. ** number is used to fill in empty slots of the hash
  1536. ** table.
  1537. ** self::YYFALLBACK If defined, this indicates that one or more tokens
  1538. ** have fall-back values which should be used if the
  1539. ** original value of the token will not parse.
  1540. ** self::YYSTACKDEPTH is the maximum depth of the parser's stack.
  1541. ** self::YYNSTATE the combined number of states.
  1542. ** self::YYNRULE the number of rules in the grammar
  1543. ** self::YYERRORSYMBOL is the code number of the error symbol. If not
  1544. ** defined, then do no error processing.
  1545. */
  1546. const YYNOCODE = 137;
  1547. const YYSTACKDEPTH = 100;
  1548. const YYNSTATE = 314;
  1549. const YYNRULE = 194;
  1550. const YYERRORSYMBOL = 74;
  1551. const YYERRSYMDT = 'yy0';
  1552. const YYFALLBACK = 0;
  1553. /** The next table maps tokens into fallback tokens. If a construct
  1554. * like the following:
  1555. *
  1556. * %fallback ID X Y Z.
  1557. *
  1558. * appears in the grammer, then ID becomes a fallback token for X, Y,
  1559. * and Z. Whenever one of the tokens X, Y, or Z is input to the parser
  1560. * but it does not parse, the type of the token is changed to ID and
  1561. * the parse is retried before an error is thrown.
  1562. */
  1563. static public $yyFallback = array(
  1564. );
  1565. /**
  1566. * Turn parser tracing on by giving a stream to which to write the trace
  1567. * and a prompt to preface each trace message. Tracing is turned off
  1568. * by making either argument NULL
  1569. *
  1570. * Inputs:
  1571. *
  1572. * - A stream resource to which trace output should be written.
  1573. * If NULL, then tracing is turned off.
  1574. * - A prefix string written at the beginning of every
  1575. * line of trace output. If NULL, then tracing is
  1576. * turned off.
  1577. *
  1578. * Outputs:
  1579. *
  1580. * - None.
  1581. * @param resource
  1582. * @param string
  1583. */
  1584. static function Trace($TraceFILE, $zTracePrompt)
  1585. {
  1586. if (!$TraceFILE) {
  1587. $zTracePrompt = 0;
  1588. } elseif (!$zTracePrompt) {
  1589. $TraceFILE = 0;
  1590. }
  1591. self::$yyTraceFILE = $TraceFILE;
  1592. self::$yyTracePrompt = $zTracePrompt;
  1593. }
  1594. /**
  1595. * Output debug information to output (php://output stream)
  1596. */
  1597. static function PrintTrace()
  1598. {
  1599. self::$yyTraceFILE = fopen('php://output', 'w');
  1600. self::$yyTracePrompt = '';
  1601. }
  1602. /**
  1603. * @var resource|0
  1604. */
  1605. static public $yyTraceFILE;
  1606. /**
  1607. * String to prepend to debug output
  1608. * @var string|0
  1609. */
  1610. static public $yyTracePrompt;
  1611. /**
  1612. * @var int
  1613. */
  1614. public $yyidx = -1; /* Index of top element in stack */
  1615. /**
  1616. * @var int
  1617. */
  1618. public $yyerrcnt; /* Shifts left before out of the error */
  1619. /**
  1620. * @var array
  1621. */
  1622. public $yystack = array(); /* The parser's stack */
  1623. /**
  1624. * For tracing shifts, the names of all terminals and nonterminals
  1625. * are required. The following table supplies these names
  1626. * @var array
  1627. */
  1628. static public $yyTokenName = array(
  1629. '$', 'YY_POST_IF', 'YY_IF', 'YY_ELSE',
  1630. 'YY_FOR', 'YY_DO', 'YY_WHILE', 'YY_UNTIL',
  1631. 'YY_LOOP', 'YY_SUPER', 'YY_CLASS', 'YY_FORIN',
  1632. 'YY_FOROF', 'YY_BY', 'YY_WHEN', 'YY_EQUALS',
  1633. 'YY_COLON', 'YY_COMPOUND_ASSIGN', 'YY_RETURN', 'YY_THROW',
  1634. 'YY_EXTENDS', 'YY_INDENT', 'YY_OUTDENT', 'YY_LOGIC',
  1635. 'YY_COMPARE', 'YY_RELATION', 'YY_SHIFT', 'YY_PLUS',
  1636. 'YY_MINUS', 'YY_UNARY', 'YY_EXISTENTIAL', 'YY_INCREMENT',
  1637. 'YY_DECREMENT', 'YY_CALL_START', 'YY_CALL_END', 'YY_ACCESSOR',
  1638. 'YY_EXISTENTIAL_ACCESSOR', 'YY_PROTOTYPE', 'YY_TERMINATOR', 'YY_STATEMENT',
  1639. 'YY_IDENTIFIER', 'YY_NUMBER', 'YY_STRING', 'YY_JS',
  1640. 'YY_REGEX', 'YY_BOOL', 'YY_HERECOMMENT', 'YY_PARAM_START',
  1641. 'YY_PARAM_END', 'YY_FUNC', 'YY_BOUND_FUNC', 'YY_COMMA',
  1642. 'YY_RANGE_EXCLUSIVE', 'YY_INDEX_START', 'YY_INDEX_END', 'YY_INDEX_SOAK',
  1643. 'YY_INDEX_PROTO', 'YY_OBJECT_START', 'YY_OBJECT_END', 'YY_FUNC_EXIST',
  1644. 'YY_THIS', 'YY_AT_SIGN', 'YY_ARRAY_START', 'YY_ARRAY_END',
  1645. 'YY_RANGE_INCLUSIVE', 'YY_TRY', 'YY_FINALLY', 'YY_CATCH',
  1646. 'YY_PAREN_START', 'YY_PAREN_END', 'YY_OWN', 'YY_SWITCH',
  1647. 'YY_LEADING_WHEN', 'YY_MATH', 'error', 'root',
  1648. 'body', 'block', 'line', 'expression',
  1649. 'statement', 'return', 'throw', 'comment',
  1650. 'value', 'invocation', 'code', 'operation',
  1651. 'assign', 'if', 'try', 'while',
  1652. 'for', 'switch', 'class', 'identifier',
  1653. 'alphanumeric', 'literal', 'assignable', 'assignObj',
  1654. 'objAssignable', 'thisProperty', 'paramList', 'funcGlyph',
  1655. 'optComma', 'param', 'paramVar', 'array',
  1656. 'object', 'splat', 'simpleAssignable', 'accessor',
  1657. 'parenthetical', 'range', 'this', 'index',
  1658. 'indexValue', 'slice', 'assignList', 'optFuncExist',
  1659. 'arguments', 'argList', 'rangeDots', 'arg',
  1660. 'simpleArgs', 'catch', 'whileSource', 'loop',
  1661. 'forBody', 'forStart', 'forSource', 'forVariables',
  1662. 'forValue', 'whens', 'when', 'ifBlock',
  1663. );
  1664. /**
  1665. * For tracing reduce actions, the names of all rules are required.
  1666. * @var array
  1667. */
  1668. static public $yyRuleName = array(
  1669. /* 0 */ "root ::=",
  1670. /* 1 */ "root ::= body",
  1671. /* 2 */ "root ::= block YY_TERMINATOR",
  1672. /* 3 */ "body ::= line",
  1673. /* 4 */ "body ::= body YY_TERMINATOR line",
  1674. /* 5 */ "body ::= body YY_TERMINATOR",
  1675. /* 6 */ "line ::= expression",
  1676. /* 7 */ "line ::= statement",
  1677. /* 8 */ "statement ::= return",
  1678. /* 9 */ "statement ::= throw",
  1679. /* 10 */ "statement ::= comment",
  1680. /* 11 */ "statement ::= YY_STATEMENT",
  1681. /* 12 */ "expression ::= value",
  1682. /* 13 */ "expression ::= invocation",
  1683. /* 14 */ "expression ::= code",
  1684. /* 15 */ "expression ::= operation",
  1685. /* 16 */ "expression ::= assign",
  1686. /* 17 */ "expression ::= if",
  1687. /* 18 */ "expression ::= try",
  1688. /* 19 */ "expression ::= while",
  1689. /* 20 */ "expression ::= for",
  1690. /* 21 */ "expression ::= switch",
  1691. /* 22 */ "expression ::= class",
  1692. /* 23 */ "block ::= YY_INDENT YY_OUTDENT",
  1693. /* 24 */ "block ::= YY_INDENT body YY_OUTDENT",
  1694. /* 25 */ "identifier ::= YY_IDENTIFIER",
  1695. /* 26 */ "alphanumeric ::= YY_NUMBER",
  1696. /* 27 */ "alphanumeric ::= YY_STRING",
  1697. /* 28 */ "literal ::= alphanumeric",
  1698. /* 29 */ "literal ::= YY_JS",
  1699. /* 30 */ "literal ::= YY_REGEX",
  1700. /* 31 */ "literal ::= YY_BOOL",
  1701. /* 32 */ "assign ::= assignable YY_EQUALS expression",
  1702. /* 33 */ "assign ::= assignable YY_EQUALS YY_INDENT expression YY_OUTDENT",
  1703. /* 34 */ "assignObj ::= objAssignable",
  1704. /* 35 */ "assignObj ::= objAssignable YY_COLON expression",
  1705. /* 36 */ "assignObj ::= objAssignable YY_COLON YY_INDENT expression YY_OUTDENT",
  1706. /* 37 */ "assignObj ::= comment",
  1707. /* 38 */ "objAssignable ::= identifier",
  1708. /* 39 */ "objAssignable ::= alphanumeric",
  1709. /* 40 */ "objAssignable ::= thisProperty",
  1710. /* 41 */ "return ::= YY_RETURN expression",
  1711. /* 42 */ "return ::= YY_RETURN",
  1712. /* 43 */ "comment ::= YY_HERECOMMENT",
  1713. /* 44 */ "code ::= YY_PARAM_START paramList YY_PARAM_END funcGlyph block",
  1714. /* 45 */ "code ::= funcGlyph block",
  1715. /* 46 */ "funcGlyph ::= YY_FUNC",
  1716. /* 47 */ "funcGlyph ::= YY_BOUND_FUNC",
  1717. /* 48 */ "optComma ::=",
  1718. /* 49 */ "optComma ::= YY_COMMA",
  1719. /* 50 */ "paramList ::=",
  1720. /* 51 */ "paramList ::= param",
  1721. /* 52 */ "paramList ::= paramList YY_COMMA param",
  1722. /* 53 */ "param ::= paramVar",
  1723. /* 54 */ "param ::= paramVar YY_RANGE_EXCLUSIVE",
  1724. /* 55 */ "param ::= paramVar YY_EQUALS expression",
  1725. /* 56 */ "paramVar ::= identifier",
  1726. /* 57 */ "paramVar ::= thisProperty",
  1727. /* 58 */ "paramVar ::= array",
  1728. /* 59 */ "paramVar ::= object",
  1729. /* 60 */ "splat ::= expression YY_RANGE_EXCLUSIVE",
  1730. /* 61 */ "simpleAssignable ::= identifier",
  1731. /* 62 */ "simpleAssignable ::= value accessor",
  1732. /* 63 */ "simpleAssignable ::= invocation accessor",
  1733. /* 64 */ "simpleAssignable ::= thisProperty",
  1734. /* 65 */ "assignable ::= simpleAssignable",
  1735. /* 66 */ "assignable ::= array",
  1736. /* 67 */ "assignable ::= object",
  1737. /* 68 */ "value ::= assignable",
  1738. /* 69 */ "value ::= literal",
  1739. /* 70 */ "value ::= parenthetical",
  1740. /* 71 */ "value ::= range",
  1741. /* 72 */ "value ::= this",
  1742. /* 73 */ "accessor ::= YY_ACCESSOR identifier",
  1743. /* 74 */ "accessor ::= YY_EXISTENTIAL_ACCESSOR identifier",
  1744. /* 75 */ "accessor ::= YY_PROTOTYPE identifier",
  1745. /* 76 */ "accessor ::= YY_PROTOTYPE",
  1746. /* 77 */ "accessor ::= index",
  1747. /* 78 */ "index ::= YY_INDEX_START indexValue YY_INDEX_END",
  1748. /* 79 */ "index ::= YY_INDEX_SOAK index",
  1749. /* 80 */ "index ::= YY_INDEX_PROTO index",
  1750. /* 81 */ "indexValue ::= expression",
  1751. /* 82 */ "indexValue ::= slice",
  1752. /* 83 */ "object ::= YY_OBJECT_START assignList optComma YY_OBJECT_END",
  1753. /* 84 */ "assignList ::=",
  1754. /* 85 */ "assignList ::= assignObj",
  1755. /* 86 */ "assignList ::= assignList YY_COMMA assignObj",
  1756. /* 87 */ "assignList ::= assignList optComma YY_TERMINATOR assignObj",
  1757. /* 88 */ "assignList ::= assignList optComma YY_INDENT assignList optComma YY_OUTDENT",
  1758. /* 89 */ "class ::= YY_CLASS",
  1759. /* 90 */ "class ::= YY_CLASS block",
  1760. /* 91 */ "class ::= YY_CLASS YY_EXTENDS value",
  1761. /* 92 */ "class ::= YY_CLASS YY_EXTENDS value block",
  1762. /* 93 */ "class ::= YY_CLASS simpleAssignable",
  1763. /* 94 */ "class ::= YY_CLASS simpleAssignable block",
  1764. /* 95 */ "class ::= YY_CLASS simpleAssignable YY_EXTENDS value",
  1765. /* 96 */ "class ::= YY_CLASS simpleAssignable YY_EXTENDS value block",
  1766. /* 97 */ "invocation ::= value optFuncExist arguments",
  1767. /* 98 */ "invocation ::= invocation optFuncExist arguments",
  1768. /* 99 */ "invocation ::= YY_SUPER",
  1769. /* 100 */ "invocation ::= YY_SUPER arguments",
  1770. /* 101 */ "optFuncExist ::=",
  1771. /* 102 */ "optFuncExist ::= YY_FUNC_EXIST",
  1772. /* 103 */ "arguments ::= YY_CALL_START YY_CALL_END",
  1773. /* 104 */ "arguments ::= YY_CALL_START argList optComma YY_CALL_END",
  1774. /* 105 */ "this ::= YY_THIS",
  1775. /* 106 */ "this ::= YY_AT_SIGN",
  1776. /* 107 */ "thisProperty ::= YY_AT_SIGN identifier",
  1777. /* 108 */ "array ::= YY_ARRAY_START YY_ARRAY_END",
  1778. /* 109 */ "array ::= YY_ARRAY_START argList optComma YY_ARRAY_END",
  1779. /* 110 */ "rangeDots ::= YY_RANGE_INCLUSIVE",
  1780. /* 111 */ "rangeDots ::= YY_RANGE_EXCLUSIVE",
  1781. /* 112 */ "range ::= YY_ARRAY_START expression rangeDots expression YY_ARRAY_END",
  1782. /* 113 */ "slice ::= expression rangeDots expression",
  1783. /* 114 */ "slice ::= expression rangeDots",
  1784. /* 115 */ "slice ::= rangeDots expression",
  1785. /* 116 */ "argList ::= arg",
  1786. /* 117 */ "argList ::= argList YY_COMMA arg",
  1787. /* 118 */ "argList ::= argList optComma YY_TERMINATOR arg",
  1788. /* 119 */ "argList ::= YY_INDENT argList optComma YY_OUTDENT",
  1789. /* 120 */ "argList ::= argList optComma YY_INDENT argList optComma YY_OUTDENT",
  1790. /* 121 */ "arg ::= expression",
  1791. /* 122 */ "arg ::= splat",
  1792. /* 123 */ "simpleArgs ::= expression",
  1793. /* 124 */ "simpleArgs ::= simpleArgs YY_COMMA expression",
  1794. /* 125 */ "try ::= YY_TRY block",
  1795. /* 126 */ "try ::= YY_TRY block catch",
  1796. /* 127 */ "try ::= YY_TRY block YY_FINALLY block",
  1797. /* 128 */ "try ::= YY_TRY block catch YY_FINALLY block",
  1798. /* 129 */ "catch ::= YY_CATCH identifier block",
  1799. /* 130 */ "throw ::= YY_THROW expression",
  1800. /* 131 */ "parenthetical ::= YY_PAREN_START body YY_PAREN_END",
  1801. /* 132 */ "parenthetical ::= YY_PAREN_START YY_INDENT body YY_OUTDENT YY_PAREN_END",
  1802. /* 133 */ "whileSource ::= YY_WHILE expression",
  1803. /* 134 */ "whileSource ::= YY_WHILE expression YY_WHEN expression",
  1804. /* 135 */ "whileSource ::= YY_UNTIL expression",
  1805. /* 136 */ "whileSource ::= YY_UNTIL expression YY_WHEN expression",
  1806. /* 137 */ "while ::= whileSource block",
  1807. /* 138 */ "while ::= statement whileSource",
  1808. /* 139 */ "while ::= expression whileSource",
  1809. /* 140 */ "while ::= loop",
  1810. /* 141 */ "loop ::= YY_LOOP block",
  1811. /* 142 */ "loop ::= YY_LOOP expression",
  1812. /* 143 */ "for ::= statement forBody",
  1813. /* 144 */ "for ::= expression forBody",
  1814. /* 145 */ "for ::= forBody block",
  1815. /* 146 */ "forBody ::= YY_FOR range",
  1816. /* 147 */ "forBody ::= forStart forSource",
  1817. /* 148 */ "forStart ::= YY_FOR forVariables",
  1818. /* 149 */ "forStart ::= YY_FOR YY_OWN forVariables",
  1819. /* 150 */ "forValue ::= identifier",
  1820. /* 151 */ "forValue ::= array",
  1821. /* 152 */ "forValue ::= object",
  1822. /* 153 */ "forVariables ::= forValue",
  1823. /* 154 */ "forVariables ::= forValue YY_COMMA forValue",
  1824. /* 155 */ "forSource ::= YY_FORIN expression",
  1825. /* 156 */ "forSource ::= YY_FOROF expression",
  1826. /* 157 */ "forSource ::= YY_FORIN expression YY_WHEN expression",
  1827. /* 158 */ "forSource ::= YY_FOROF expression YY_WHEN expression",
  1828. /* 159 */ "forSource ::= YY_FORIN expression YY_BY expression",
  1829. /* 160 */ "forSource ::= YY_FORIN expression YY_WHEN expression YY_BY expression",
  1830. /* 161 */ "forSource ::= YY_FORIN expression YY_BY expression YY_WHEN expression",
  1831. /* 162 */ "switch ::= YY_SWITCH expression YY_INDENT whens YY_OUTDENT",
  1832. /* 163 */ "switch ::= YY_SWITCH expression YY_INDENT whens YY_ELSE block YY_OUTDENT",
  1833. /* 164 */ "switch ::= YY_SWITCH YY_INDENT whens YY_OUTDENT",
  1834. /* 165 */ "switch ::= YY_SWITCH YY_INDENT whens YY_ELSE block YY_OUTDENT",
  1835. /* 166 */ "whens ::= when",
  1836. /* 167 */ "whens ::= whens when",
  1837. /* 168 */ "when ::= YY_LEADING_WHEN simpleArgs block",
  1838. /* 169 */ "when ::= YY_LEADING_WHEN simpleArgs block YY_TERMINATOR",
  1839. /* 170 */ "ifBlock ::= YY_IF expression block",
  1840. /* 171 */ "ifBlock ::= ifBlock YY_ELSE YY_IF expression block",
  1841. /* 172 */ "if ::= ifBlock",
  1842. /* 173 */ "if ::= ifBlock YY_ELSE block",
  1843. /* 174 */ "if ::= statement YY_POST_IF expression",
  1844. /* 175 */ "if ::= expression YY_POST_IF expression",
  1845. /* 176 */ "operation ::= YY_UNARY expression",
  1846. /* 177 */ "operation ::= YY_MINUS expression",
  1847. /* 178 */ "operation ::= YY_PLUS expression",
  1848. /* 179 */ "operation ::= YY_DECREMENT simpleAssignable",
  1849. /* 180 */ "operation ::= YY_INCREMENT simpleAssignable",
  1850. /* 181 */ "operation ::= simpleAssignable YY_DECREMENT",
  1851. /* 182 */ "operation ::= simpleAssignable YY_INCREMENT",
  1852. /* 183 */ "operation ::= expression YY_EXISTENTIAL",
  1853. /* 184 */ "operation ::= expression YY_PLUS expression",
  1854. /* 185 */ "operation ::= expression YY_MINUS expression",
  1855. /* 186 */ "operation ::= expression YY_MATH expression",
  1856. /* 187 */ "operation ::= expression YY_SHIFT expression",
  1857. /* 188 */ "operation ::= expression YY_COMPARE expression",
  1858. /* 189 */ "operation ::= expression YY_LOGIC expression",
  1859. /* 190 */ "operation ::= expression YY_RELATION expression",
  1860. /* 191 */ "operation ::= simpleAssignable YY_COMPOUND_ASSIGN expression",
  1861. /* 192 */ "operation ::= simpleAssignable YY_COMPOUND_ASSIGN YY_INDENT expression YY_OUTDENT",
  1862. /* 193 */ "operation ::= simpleAssignable YY_EXTENDS expression",
  1863. );
  1864. /**
  1865. * This function returns the symbolic name associated with a token
  1866. * value.
  1867. * @param int
  1868. * @return string
  1869. */
  1870. static function tokenName($tokenType)
  1871. {
  1872. if ($tokenType === 0) {
  1873. return 'End of Input';
  1874. }
  1875. if ($tokenType > 0 && $tokenType < count(self::$yyTokenName)) {
  1876. return self::$yyTokenName[$tokenType];
  1877. } else {
  1878. return "Unknown";
  1879. }
  1880. }
  1881. /**
  1882. * The following function deletes the value associated with a
  1883. * symbol. The symbol can be either a terminal or nonterminal.
  1884. * @param int the symbol code
  1885. * @param mixed the symbol's value
  1886. */
  1887. static function yy_destructor($yymajor, $yypminor)
  1888. {
  1889. switch ($yymajor) {
  1890. /* Here is inserted the actions which take place when a
  1891. ** terminal or non-terminal is destroyed. This can happen
  1892. ** when the symbol is popped from the stack during a
  1893. ** reduce or during error processing or when a parser is
  1894. ** being destroyed before it is finished parsing.
  1895. **
  1896. ** Note: during a reduce, the only symbols destroyed are those
  1897. ** which appear on the RHS of the rule, but which are not used
  1898. ** inside the C code.
  1899. */
  1900. default: break; /* If no destructor action specified: do nothing */
  1901. }
  1902. }
  1903. /**
  1904. * Pop the parser's stack once.
  1905. *
  1906. * If there is a destructor routine associated with the token which
  1907. * is popped from the stack, then call it.
  1908. *
  1909. * Return the major token number for the symbol popped.
  1910. * @param yyParser
  1911. * @return int
  1912. */
  1913. function yy_pop_parser_stack()
  1914. {
  1915. if (!count($this->yystack)) {
  1916. return;
  1917. }
  1918. $yytos = array_pop($this->yystack);
  1919. if (self::$yyTraceFILE && $this->yyidx >= 0) {
  1920. fwrite(self::$yyTraceFILE,
  1921. self::$yyTracePrompt . 'Popping ' . self::tokenName($yytos->major) .
  1922. "\n");
  1923. }
  1924. $yymajor = $yytos->major;
  1925. self::yy_destructor($yymajor, $yytos->minor);
  1926. $this->yyidx--;
  1927. return $yymajor;
  1928. }
  1929. /**
  1930. * Deallocate and destroy a parser. Destructors are all called for
  1931. * all stack elements before shutting the parser down.
  1932. */
  1933. function __destruct()
  1934. {
  1935. while ($this->yyidx >= 0) {
  1936. $this->yy_pop_parser_stack();
  1937. }
  1938. if (is_resource(self::$yyTraceFILE)) {
  1939. fclose(self::$yyTraceFILE);
  1940. }
  1941. }
  1942. /**
  1943. * Based on the current state and parser stack, get a list of all
  1944. * possible lookahead tokens
  1945. * @param int
  1946. * @return array
  1947. */
  1948. function yy_get_expected_tokens($token)
  1949. {
  1950. $state = $this->yystack[$this->yyidx]->stateno;
  1951. $expected = self::$yyExpectedTokens[$state];
  1952. if (in_array($token, self::$yyExpectedTokens[$state], true)) {
  1953. return $expected;
  1954. }
  1955. $stack = $this->yystack;
  1956. $yyidx = $this->yyidx;
  1957. do {
  1958. $yyact = $this->yy_find_shift_action($token);
  1959. if ($yyact >= self::YYNSTATE && $yyact < self::YYNSTATE + self::YYNRULE) {
  1960. // reduce action
  1961. $done = 0;
  1962. do {
  1963. if ($done++ == 100) {
  1964. $this->yyidx = $yyidx;
  1965. $this->yystack = $stack;
  1966. // too much recursion prevents proper detection
  1967. // so give up
  1968. return array_unique($expected);
  1969. }
  1970. $yyruleno = $yyact - self::YYNSTATE;
  1971. $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs'];
  1972. $nextstate = $this->yy_find_reduce_action(
  1973. $this->yystack[$this->yyidx]->stateno,
  1974. self::$yyRuleInfo[$yyruleno]['lhs']);
  1975. if (isset(self::$yyExpectedTokens[$nextstate])) {
  1976. $expected += self::$yyExpectedTokens[$nextstate];
  1977. if (in_array($token,
  1978. self::$yyExpectedTokens[$nextstate], true)) {
  1979. $this->yyidx = $yyidx;
  1980. $this->yystack = $stack;
  1981. return array_unique($expected);
  1982. }
  1983. }
  1984. if ($nextstate < self::YYNSTATE) {
  1985. // we need to shift a non-terminal
  1986. $this->yyidx++;
  1987. $x = new yyStackEntry;
  1988. $x->stateno = $nextstate;
  1989. $x->major = self::$yyRuleInfo[$yyruleno]['lhs'];
  1990. $this->yystack[$this->yyidx] = $x;
  1991. continue 2;
  1992. } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) {
  1993. $this->yyidx = $yyidx;
  1994. $this->yystack = $stack;
  1995. // the last token was just ignored, we can't accept
  1996. // by ignoring input, this is in essence ignoring a
  1997. // syntax error!
  1998. return array_unique($expected);
  1999. } elseif ($nextstate === self::YY_NO_ACTION) {
  2000. $this->yyidx = $yyidx;
  2001. $this->yystack = $stack;
  2002. // input accepted, but not shifted (I guess)
  2003. return $expected;
  2004. } else {
  2005. $yyact = $nextstate;
  2006. }
  2007. } while (true);
  2008. }
  2009. break;
  2010. } while (true);
  2011. return array_unique($expected);
  2012. }
  2013. /**
  2014. * Based on the parser state and current parser stack, determine whether
  2015. * the lookahead token is possible.
  2016. *
  2017. * The parser will convert the token value to an error token if not. This
  2018. * catches some unusual edge cases where the parser would fail.
  2019. * @param int
  2020. * @return bool
  2021. */
  2022. function yy_is_expected_token($token)
  2023. {
  2024. if ($token === 0) {
  2025. return true; // 0 is not part of this
  2026. }
  2027. $state = $this->yystack[$this->yyidx]->stateno;
  2028. if (in_array($token, self::$yyExpectedTokens[$state], true)) {
  2029. return true;
  2030. }
  2031. $stack = $this->yystack;
  2032. $yyidx = $this->yyidx;
  2033. do {
  2034. $yyact = $this->yy_find_shift_action($token);
  2035. if ($yyact >= self::YYNSTATE && $yyact < self::YYNSTATE + self::YYNRULE) {
  2036. // reduce action
  2037. $done = 0;
  2038. do {
  2039. if ($done++ == 100) {
  2040. $this->yyidx = $yyidx;
  2041. $this->yystack = $stack;
  2042. // too much recursion prevents proper detection
  2043. // so give up
  2044. return true;
  2045. }
  2046. $yyruleno = $yyact - self::YYNSTATE;
  2047. $this->yyidx -= self::$yyRuleInfo[$yyruleno]['rhs'];
  2048. $nextstate = $this->yy_find_reduce_action(
  2049. $this->yystack[$this->yyidx]->stateno,
  2050. self::$yyRuleInfo[$yyruleno]['lhs']);
  2051. if (isset(self::$yyExpectedTokens[$nextstate]) &&
  2052. in_array($token, self::$yyExpectedTokens[$nextstate], true)) {
  2053. $this->yyidx = $yyidx;
  2054. $this->yystack = $stack;
  2055. return true;
  2056. }
  2057. if ($nextstate < self::YYNSTATE) {
  2058. // we need to shift a non-terminal
  2059. $this->yyidx++;
  2060. $x = new yyStackEntry;
  2061. $x->stateno = $nextstate;
  2062. $x->major = self::$yyRuleInfo[$yyruleno]['lhs'];
  2063. $this->yystack[$this->yyidx] = $x;
  2064. continue 2;
  2065. } elseif ($nextstate == self::YYNSTATE + self::YYNRULE + 1) {
  2066. $this->yyidx = $yyidx;
  2067. $this->yystack = $stack;
  2068. if (!$token) {
  2069. // end of input: this is valid
  2070. return true;
  2071. }
  2072. // the last token was just ignored, we can't accept
  2073. // by ignoring input, this is in essence ignoring a
  2074. // syntax error!
  2075. return false;
  2076. } elseif ($nextstate === self::YY_NO_ACTION) {
  2077. $this->yyidx = $yyidx;
  2078. $this->yystack = $stack;
  2079. // input accepted, but not shifted (I guess)
  2080. return true;
  2081. } else {
  2082. $yyact = $nextstate;
  2083. }
  2084. } while (true);
  2085. }
  2086. break;
  2087. } while (true);
  2088. $this->yyidx = $yyidx;
  2089. $this->yystack = $stack;
  2090. return true;
  2091. }
  2092. /**
  2093. * Find the appropriate action for a parser given the terminal
  2094. * look-ahead token iLookAhead.
  2095. *
  2096. * If the look-ahead token is YYNOCODE, then check to see if the action is
  2097. * independent of the look-ahead. If it is, return the action, otherwise
  2098. * return YY_NO_ACTION.
  2099. * @param int The look-ahead token
  2100. */
  2101. function yy_find_shift_action($iLookAhead)
  2102. {
  2103. $stateno = $this->yystack[$this->yyidx]->stateno;
  2104. /* if ($this->yyidx < 0) return self::YY_NO_ACTION; */
  2105. if (!isset(self::$yy_shift_ofst[$stateno])) {
  2106. // no shift actions
  2107. return self::$yy_default[$stateno];
  2108. }
  2109. $i = self::$yy_shift_ofst[$stateno];
  2110. if ($i === self::YY_SHIFT_USE_DFLT) {
  2111. return self::$yy_default[$stateno];
  2112. }
  2113. if ($iLookAhead == self::YYNOCODE) {
  2114. return self::YY_NO_ACTION;
  2115. }
  2116. $i += $iLookAhead;
  2117. if ($i < 0 || $i >= self::YY_SZ_ACTTAB ||
  2118. self::$yy_lookahead[$i] != $iLookAhead) {
  2119. if (count(self::$yyFallback) && $iLookAhead < count(self::$yyFallback)
  2120. && ($iFallback = self::$yyFallback[$iLookAhead]) != 0) {
  2121. if (self::$yyTraceFILE) {
  2122. fwrite(self::$yyTraceFILE, self::$yyTracePrompt . "FALLBACK " .
  2123. self::tokenName($iLookAhead) . " => " .
  2124. self::tokenName($iFallback) . "\n");
  2125. }
  2126. return $this->yy_find_shift_action($iFallback);
  2127. }
  2128. return self::$yy_default[$stateno];
  2129. } else {
  2130. return self::$yy_action[$i];
  2131. }
  2132. }
  2133. /**
  2134. * Find the appropriate action for a parser given the non-terminal
  2135. * look-ahead token $iLookAhead.
  2136. *
  2137. * If the look-ahead token is self::YYNOCODE, then check to see if the action is
  2138. * independent of the look-ahead. If it is, return the action, otherwise
  2139. * return self::YY_NO_ACTION.
  2140. * @param int Current state number
  2141. * @param int The look-ahead token
  2142. */
  2143. function yy_find_reduce_action($stateno, $iLookAhead)
  2144. {
  2145. /* $stateno = $this->yystack[$this->yyidx]->stateno; */
  2146. if (!isset(self::$yy_reduce_ofst[$stateno])) {
  2147. return self::$yy_default[$stateno];
  2148. }
  2149. $i = self::$yy_reduce_ofst[$stateno];
  2150. if ($i == self::YY_REDUCE_USE_DFLT) {
  2151. return self::$yy_default[$stateno];
  2152. }
  2153. if ($iLookAhead == self::YYNOCODE) {
  2154. return self::YY_NO_ACTION;
  2155. }
  2156. $i += $iLookAhead;
  2157. if ($i < 0 || $i >= self::YY_SZ_ACTTAB ||
  2158. self::$yy_lookahead[$i] != $iLookAhead) {
  2159. return self::$yy_default[$stateno];
  2160. } else {
  2161. return self::$yy_action[$i];
  2162. }
  2163. }
  2164. /**
  2165. * Perform a shift action.
  2166. * @param int The new state to shift in
  2167. * @param int The major token to shift in
  2168. * @param mixed the minor token to shift in
  2169. */
  2170. function yy_shift($yyNewState, $yyMajor, $yypMinor)
  2171. {
  2172. $this->yyidx++;
  2173. if ($this->yyidx >= self::YYSTACKDEPTH) {
  2174. $this->yyidx--;
  2175. if (self::$yyTraceFILE) {
  2176. fprintf(self::$yyTraceFILE, "%sStack Overflow!\n", self::$yyTracePrompt);
  2177. }
  2178. while ($this->yyidx >= 0) {
  2179. $this->yy_pop_parser_stack();
  2180. }
  2181. /* Here code is inserted which will execute if the parser
  2182. ** stack ever overflows */
  2183. return;
  2184. }
  2185. $yytos = new yyStackEntry;
  2186. $yytos->stateno = $yyNewState;
  2187. $yytos->major = $yyMajor;
  2188. $yytos->minor = $yypMinor;
  2189. array_push($this->yystack, $yytos);
  2190. if (self::$yyTraceFILE && $this->yyidx > 0) {
  2191. fprintf(self::$yyTraceFILE, "%sShift %d\n", self::$yyTracePrompt,
  2192. $yyNewState);
  2193. fprintf(self::$yyTraceFILE, "%sStack:", self::$yyTracePrompt);
  2194. for ($i = 1; $i <= $this->yyidx; $i++) {
  2195. fprintf(self::$yyTraceFILE, " %s",
  2196. self::tokenName($this->yystack[$i]->major));
  2197. }
  2198. fwrite(self::$yyTraceFILE,"\n");
  2199. }
  2200. }
  2201. /**
  2202. * The following table contains information about every rule that
  2203. * is used during the reduce.
  2204. *
  2205. * <pre>
  2206. * array(
  2207. * array(
  2208. * int $lhs; Symbol on the left-hand side of the rule
  2209. * int $nrhs; Number of right-hand side symbols in the rule
  2210. * ),...
  2211. * );
  2212. * </pre>
  2213. */
  2214. static public $yyRuleInfo = array(
  2215. array( 'lhs' => 75, 'rhs' => 0 ),
  2216. array( 'lhs' => 75, 'rhs' => 1 ),
  2217. array( 'lhs' => 75, 'rhs' => 2 ),
  2218. array( 'lhs' => 76, 'rhs' => 1 ),
  2219. array( 'lhs' => 76, 'rhs' => 3 ),
  2220. array( 'lhs' => 76, 'rhs' => 2 ),
  2221. array( 'lhs' => 78, 'rhs' => 1 ),
  2222. array( 'lhs' => 78, 'rhs' => 1 ),
  2223. array( 'lhs' => 80, 'rhs' => 1 ),
  2224. array( 'lhs' => 80, 'rhs' => 1 ),
  2225. array( 'lhs' => 80, 'rhs' => 1 ),
  2226. array( 'lhs' => 80, 'rhs' => 1 ),
  2227. array( 'lhs' => 79, 'rhs' => 1 ),
  2228. array( 'lhs' => 79, 'rhs' => 1 ),
  2229. array( 'lhs' => 79, 'rhs' => 1 ),
  2230. array( 'lhs' => 79, 'rhs' => 1 ),
  2231. array( 'lhs' => 79, 'rhs' => 1 ),
  2232. array( 'lhs' => 79, 'rhs' => 1 ),
  2233. array( 'lhs' => 79, 'rhs' => 1 ),
  2234. array( 'lhs' => 79, 'rhs' => 1 ),
  2235. array( 'lhs' => 79, 'rhs' => 1 ),
  2236. array( 'lhs' => 79, 'rhs' => 1 ),
  2237. array( 'lhs' => 79, 'rhs' => 1 ),
  2238. array( 'lhs' => 77, 'rhs' => 2 ),
  2239. array( 'lhs' => 77, 'rhs' => 3 ),
  2240. array( 'lhs' => 95, 'rhs' => 1 ),
  2241. array( 'lhs' => 96, 'rhs' => 1 ),
  2242. array( 'lhs' => 96, 'rhs' => 1 ),
  2243. array( 'lhs' => 97, 'rhs' => 1 ),
  2244. array( 'lhs' => 97, 'rhs' => 1 ),
  2245. array( 'lhs' => 97, 'rhs' => 1 ),
  2246. array( 'lhs' => 97, 'rhs' => 1 ),
  2247. array( 'lhs' => 88, 'rhs' => 3 ),
  2248. array( 'lhs' => 88, 'rhs' => 5 ),
  2249. array( 'lhs' => 99, 'rhs' => 1 ),
  2250. array( 'lhs' => 99, 'rhs' => 3 ),
  2251. array( 'lhs' => 99, 'rhs' => 5 ),
  2252. array( 'lhs' => 99, 'rhs' => 1 ),
  2253. array( 'lhs' => 100, 'rhs' => 1 ),
  2254. array( 'lhs' => 100, 'rhs' => 1 ),
  2255. array( 'lhs' => 100, 'rhs' => 1 ),
  2256. array( 'lhs' => 81, 'rhs' => 2 ),
  2257. array( 'lhs' => 81, 'rhs' => 1 ),
  2258. array( 'lhs' => 83, 'rhs' => 1 ),
  2259. array( 'lhs' => 86, 'rhs' => 5 ),
  2260. array( 'lhs' => 86, 'rhs' => 2 ),
  2261. array( 'lhs' => 103, 'rhs' => 1 ),
  2262. array( 'lhs' => 103, 'rhs' => 1 ),
  2263. array( 'lhs' => 104, 'rhs' => 0 ),
  2264. array( 'lhs' => 104, 'rhs' => 1 ),
  2265. array( 'lhs' => 102, 'rhs' => 0 ),
  2266. array( 'lhs' => 102, 'rhs' => 1 ),
  2267. array( 'lhs' => 102, 'rhs' => 3 ),
  2268. array( 'lhs' => 105, 'rhs' => 1 ),
  2269. array( 'lhs' => 105, 'rhs' => 2 ),
  2270. array( 'lhs' => 105, 'rhs' => 3 ),
  2271. array( 'lhs' => 106, 'rhs' => 1 ),
  2272. array( 'lhs' => 106, 'rhs' => 1 ),
  2273. array( 'lhs' => 106, 'rhs' => 1 ),
  2274. array( 'lhs' => 106, 'rhs' => 1 ),
  2275. array( 'lhs' => 109, 'rhs' => 2 ),
  2276. array( 'lhs' => 110, 'rhs' => 1 ),
  2277. array( 'lhs' => 110, 'rhs' => 2 ),
  2278. array( 'lhs' => 110, 'rhs' => 2 ),
  2279. array( 'lhs' => 110, 'rhs' => 1 ),
  2280. array( 'lhs' => 98, 'rhs' => 1 ),
  2281. array( 'lhs' => 98, 'rhs' => 1 ),
  2282. array( 'lhs' => 98, 'rhs' => 1 ),
  2283. array( 'lhs' => 84, 'rhs' => 1 ),
  2284. array( 'lhs' => 84, 'rhs' => 1 ),
  2285. array( 'lhs' => 84, 'rhs' => 1 ),
  2286. array( 'lhs' => 84, 'rhs' => 1 ),
  2287. array( 'lhs' => 84, 'rhs' => 1 ),
  2288. array( 'lhs' => 111, 'rhs' => 2 ),
  2289. array( 'lhs' => 111, 'rhs' => 2 ),
  2290. array( 'lhs' => 111, 'rhs' => 2 ),
  2291. array( 'lhs' => 111, 'rhs' => 1 ),
  2292. array( 'lhs' => 111, 'rhs' => 1 ),
  2293. array( 'lhs' => 115, 'rhs' => 3 ),
  2294. array( 'lhs' => 115, 'rhs' => 2 ),
  2295. array( 'lhs' => 115, 'rhs' => 2 ),
  2296. array( 'lhs' => 116, 'rhs' => 1 ),
  2297. array( 'lhs' => 116, 'rhs' => 1 ),
  2298. array( 'lhs' => 108, 'rhs' => 4 ),
  2299. array( 'lhs' => 118, 'rhs' => 0 ),
  2300. array( 'lhs' => 118, 'rhs' => 1 ),
  2301. array( 'lhs' => 118, 'rhs' => 3 ),
  2302. array( 'lhs' => 118, 'rhs' => 4 ),
  2303. array( 'lhs' => 118, 'rhs' => 6 ),
  2304. array( 'lhs' => 94, 'rhs' => 1 ),
  2305. array( 'lhs' => 94, 'rhs' => 2 ),
  2306. array( 'lhs' => 94, 'rhs' => 3 ),
  2307. array( 'lhs' => 94, 'rhs' => 4 ),
  2308. array( 'lhs' => 94, 'rhs' => 2 ),
  2309. array( 'lhs' => 94, 'rhs' => 3 ),
  2310. array( 'lhs' => 94, 'rhs' => 4 ),
  2311. array( 'lhs' => 94, 'rhs' => 5 ),
  2312. array( 'lhs' => 85, 'rhs' => 3 ),
  2313. array( 'lhs' => 85, 'rhs' => 3 ),
  2314. array( 'lhs' => 85, 'rhs' => 1 ),
  2315. array( 'lhs' => 85, 'rhs' => 2 ),
  2316. array( 'lhs' => 119, 'rhs' => 0 ),
  2317. array( 'lhs' => 119, 'rhs' => 1 ),
  2318. array( 'lhs' => 120, 'rhs' => 2 ),
  2319. array( 'lhs' => 120, 'rhs' => 4 ),
  2320. array( 'lhs' => 114, 'rhs' => 1 ),
  2321. array( 'lhs' => 114, 'rhs' => 1 ),
  2322. array( 'lhs' => 101, 'rhs' => 2 ),
  2323. array( 'lhs' => 107, 'rhs' => 2 ),
  2324. array( 'lhs' => 107, 'rhs' => 4 ),
  2325. array( 'lhs' => 122, 'rhs' => 1 ),
  2326. array( 'lhs' => 122, 'rhs' => 1 ),
  2327. array( 'lhs' => 113, 'rhs' => 5 ),
  2328. array( 'lhs' => 117, 'rhs' => 3 ),
  2329. array( 'lhs' => 117, 'rhs' => 2 ),
  2330. array( 'lhs' => 117, 'rhs' => 2 ),
  2331. array( 'lhs' => 121, 'rhs' => 1 ),
  2332. array( 'lhs' => 121, 'rhs' => 3 ),
  2333. array( 'lhs' => 121, 'rhs' => 4 ),
  2334. array( 'lhs' => 121, 'rhs' => 4 ),
  2335. array( 'lhs' => 121, 'rhs' => 6 ),
  2336. array( 'lhs' => 123, 'rhs' => 1 ),
  2337. array( 'lhs' => 123, 'rhs' => 1 ),
  2338. array( 'lhs' => 124, 'rhs' => 1 ),
  2339. array( 'lhs' => 124, 'rhs' => 3 ),
  2340. array( 'lhs' => 90, 'rhs' => 2 ),
  2341. array( 'lhs' => 90, 'rhs' => 3 ),
  2342. array( 'lhs' => 90, 'rhs' => 4 ),
  2343. array( 'lhs' => 90, 'rhs' => 5 ),
  2344. array( 'lhs' => 125, 'rhs' => 3 ),
  2345. array( 'lhs' => 82, 'rhs' => 2 ),
  2346. array( 'lhs' => 112, 'rhs' => 3 ),
  2347. array( 'lhs' => 112, 'rhs' => 5 ),
  2348. array( 'lhs' => 126, 'rhs' => 2 ),
  2349. array( 'lhs' => 126, 'rhs' => 4 ),
  2350. array( 'lhs' => 126, 'rhs' => 2 ),
  2351. array( 'lhs' => 126, 'rhs' => 4 ),
  2352. array( 'lhs' => 91, 'rhs' => 2 ),
  2353. array( 'lhs' => 91, 'rhs' => 2 ),
  2354. array( 'lhs' => 91, 'rhs' => 2 ),
  2355. array( 'lhs' => 91, 'rhs' => 1 ),
  2356. array( 'lhs' => 127, 'rhs' => 2 ),
  2357. array( 'lhs' => 127, 'rhs' => 2 ),
  2358. array( 'lhs' => 92, 'rhs' => 2 ),
  2359. array( 'lhs' => 92, 'rhs' => 2 ),
  2360. array( 'lhs' => 92, 'rhs' => 2 ),
  2361. array( 'lhs' => 128, 'rhs' => 2 ),
  2362. array( 'lhs' => 128, 'rhs' => 2 ),
  2363. array( 'lhs' => 129, 'rhs' => 2 ),
  2364. array( 'lhs' => 129, 'rhs' => 3 ),
  2365. array( 'lhs' => 132, 'rhs' => 1 ),
  2366. array( 'lhs' => 132, 'rhs' => 1 ),
  2367. array( 'lhs' => 132, 'rhs' => 1 ),
  2368. array( 'lhs' => 131, 'rhs' => 1 ),
  2369. array( 'lhs' => 131, 'rhs' => 3 ),
  2370. array( 'lhs' => 130, 'rhs' => 2 ),
  2371. array( 'lhs' => 130, 'rhs' => 2 ),
  2372. array( 'lhs' => 130, 'rhs' => 4 ),
  2373. array( 'lhs' => 130, 'rhs' => 4 ),
  2374. array( 'lhs' => 130, 'rhs' => 4 ),
  2375. array( 'lhs' => 130, 'rhs' => 6 ),
  2376. array( 'lhs' => 130, 'rhs' => 6 ),
  2377. array( 'lhs' => 93, 'rhs' => 5 ),
  2378. array( 'lhs' => 93, 'rhs' => 7 ),
  2379. array( 'lhs' => 93, 'rhs' => 4 ),
  2380. array( 'lhs' => 93, 'rhs' => 6 ),
  2381. array( 'lhs' => 133, 'rhs' => 1 ),
  2382. array( 'lhs' => 133, 'rhs' => 2 ),
  2383. array( 'lhs' => 134, 'rhs' => 3 ),
  2384. array( 'lhs' => 134, 'rhs' => 4 ),
  2385. array( 'lhs' => 135, 'rhs' => 3 ),
  2386. array( 'lhs' => 135, 'rhs' => 5 ),
  2387. array( 'lhs' => 89, 'rhs' => 1 ),
  2388. array( 'lhs' => 89, 'rhs' => 3 ),
  2389. array( 'lhs' => 89, 'rhs' => 3 ),
  2390. array( 'lhs' => 89, 'rhs' => 3 ),
  2391. array( 'lhs' => 87, 'rhs' => 2 ),
  2392. array( 'lhs' => 87, 'rhs' => 2 ),
  2393. array( 'lhs' => 87, 'rhs' => 2 ),
  2394. array( 'lhs' => 87, 'rhs' => 2 ),
  2395. array( 'lhs' => 87, 'rhs' => 2 ),
  2396. array( 'lhs' => 87, 'rhs' => 2 ),
  2397. array( 'lhs' => 87, 'rhs' => 2 ),
  2398. array( 'lhs' => 87, 'rhs' => 2 ),
  2399. array( 'lhs' => 87, 'rhs' => 3 ),
  2400. array( 'lhs' => 87, 'rhs' => 3 ),
  2401. array( 'lhs' => 87, 'rhs' => 3 ),
  2402. array( 'lhs' => 87, 'rhs' => 3 ),
  2403. array( 'lhs' => 87, 'rhs' => 3 ),
  2404. array( 'lhs' => 87, 'rhs' => 3 ),
  2405. array( 'lhs' => 87, 'rhs' => 3 ),
  2406. array( 'lhs' => 87, 'rhs' => 3 ),
  2407. array( 'lhs' => 87, 'rhs' => 5 ),
  2408. array( 'lhs' => 87, 'rhs' => 3 ),
  2409. );
  2410. /**
  2411. * The following table contains a mapping of reduce action to method name
  2412. * that handles the reduction.
  2413. *
  2414. * If a rule is not set, it has no handler.
  2415. */
  2416. static public $yyReduceMap = array(
  2417. 0 => 0,
  2418. 23 => 0,
  2419. 1 => 1,
  2420. 6 => 1,
  2421. 7 => 1,
  2422. 8 => 1,
  2423. 9 => 1,
  2424. 10 => 1,
  2425. 12 => 1,
  2426. 13 => 1,
  2427. 14 => 1,
  2428. 15 => 1,
  2429. 16 => 1,
  2430. 17 => 1,
  2431. 18 => 1,
  2432. 19 => 1,
  2433. 20 => 1,
  2434. 21 => 1,
  2435. 22 => 1,
  2436. 28 => 1,
  2437. 37 => 1,
  2438. 38 => 1,
  2439. 39 => 1,
  2440. 40 => 1,
  2441. 49 => 1,
  2442. 56 => 1,
  2443. 57 => 1,
  2444. 58 => 1,
  2445. 59 => 1,
  2446. 64 => 1,
  2447. 65 => 1,
  2448. 68 => 1,
  2449. 72 => 1,
  2450. 77 => 1,
  2451. 121 => 1,
  2452. 122 => 1,
  2453. 123 => 1,
  2454. 140 => 1,
  2455. 148 => 1,
  2456. 150 => 1,
  2457. 166 => 1,
  2458. 172 => 1,
  2459. 2 => 2,
  2460. 5 => 2,
  2461. 24 => 2,
  2462. 78 => 2,
  2463. 3 => 3,
  2464. 4 => 4,
  2465. 11 => 11,
  2466. 25 => 11,
  2467. 26 => 11,
  2468. 27 => 11,
  2469. 29 => 11,
  2470. 30 => 11,
  2471. 31 => 31,
  2472. 32 => 32,
  2473. 33 => 33,
  2474. 34 => 34,
  2475. 61 => 34,
  2476. 66 => 34,
  2477. 67 => 34,
  2478. 69 => 34,
  2479. 70 => 34,
  2480. 71 => 34,
  2481. 151 => 34,
  2482. 152 => 34,
  2483. 35 => 35,
  2484. 36 => 36,
  2485. 41 => 41,
  2486. 42 => 42,
  2487. 43 => 43,
  2488. 44 => 44,
  2489. 45 => 45,
  2490. 46 => 46,
  2491. 47 => 47,
  2492. 48 => 48,
  2493. 50 => 50,
  2494. 84 => 50,
  2495. 103 => 50,
  2496. 51 => 51,
  2497. 85 => 51,
  2498. 116 => 51,
  2499. 153 => 51,
  2500. 52 => 52,
  2501. 117 => 52,
  2502. 53 => 53,
  2503. 54 => 54,
  2504. 55 => 55,
  2505. 60 => 60,
  2506. 62 => 62,
  2507. 63 => 63,
  2508. 73 => 73,
  2509. 74 => 74,
  2510. 75 => 75,
  2511. 76 => 76,
  2512. 79 => 79,
  2513. 80 => 80,
  2514. 81 => 81,
  2515. 82 => 82,
  2516. 83 => 83,
  2517. 86 => 86,
  2518. 87 => 87,
  2519. 88 => 88,
  2520. 120 => 88,
  2521. 89 => 89,
  2522. 90 => 90,
  2523. 91 => 91,
  2524. 92 => 92,
  2525. 93 => 93,
  2526. 94 => 94,
  2527. 95 => 95,
  2528. 96 => 96,
  2529. 97 => 97,
  2530. 98 => 97,
  2531. 99 => 99,
  2532. 100 => 100,
  2533. 101 => 101,
  2534. 102 => 102,
  2535. 104 => 104,
  2536. 119 => 104,
  2537. 105 => 105,
  2538. 106 => 105,
  2539. 107 => 107,
  2540. 108 => 108,
  2541. 109 => 109,
  2542. 110 => 110,
  2543. 111 => 111,
  2544. 112 => 112,
  2545. 113 => 113,
  2546. 114 => 114,
  2547. 115 => 115,
  2548. 118 => 118,
  2549. 124 => 124,
  2550. 154 => 124,
  2551. 125 => 125,
  2552. 126 => 126,
  2553. 127 => 127,
  2554. 128 => 128,
  2555. 129 => 129,
  2556. 130 => 130,
  2557. 131 => 131,
  2558. 132 => 132,
  2559. 133 => 133,
  2560. 134 => 134,
  2561. 135 => 135,
  2562. 136 => 136,
  2563. 137 => 137,
  2564. 138 => 138,
  2565. 139 => 138,
  2566. 141 => 141,
  2567. 142 => 142,
  2568. 143 => 143,
  2569. 144 => 143,
  2570. 145 => 145,
  2571. 146 => 146,
  2572. 147 => 147,
  2573. 149 => 149,
  2574. 155 => 155,
  2575. 156 => 156,
  2576. 157 => 157,
  2577. 158 => 158,
  2578. 159 => 159,
  2579. 160 => 160,
  2580. 161 => 161,
  2581. 162 => 162,
  2582. 163 => 163,
  2583. 164 => 164,
  2584. 165 => 165,
  2585. 167 => 167,
  2586. 168 => 168,
  2587. 169 => 169,
  2588. 170 => 170,
  2589. 171 => 171,
  2590. 173 => 173,
  2591. 174 => 174,
  2592. 175 => 174,
  2593. 176 => 176,
  2594. 179 => 176,
  2595. 180 => 176,
  2596. 177 => 177,
  2597. 178 => 177,
  2598. 181 => 181,
  2599. 182 => 181,
  2600. 183 => 183,
  2601. 184 => 184,
  2602. 185 => 184,
  2603. 186 => 184,
  2604. 187 => 184,
  2605. 188 => 184,
  2606. 189 => 184,
  2607. 190 => 190,
  2608. 191 => 191,
  2609. 192 => 192,
  2610. 193 => 193,
  2611. );
  2612. /* Beginning here are the reduction cases. A typical example
  2613. ** follows:
  2614. ** #line <lineno> <grammarfile>
  2615. ** function yy_r0($yymsp){ ... } // User supplied code
  2616. ** #line <lineno> <thisfile>
  2617. */
  2618. #line 27 "/var/www/coffeescript-php/grammar.y"
  2619. function yy_r0(){ $this->_retvalue = yy('Block'); }
  2620. #line 2652 "/var/www/coffeescript-php/grammar.php"
  2621. #line 28 "/var/www/coffeescript-php/grammar.y"
  2622. function yy_r1(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
  2623. #line 2655 "/var/www/coffeescript-php/grammar.php"
  2624. #line 29 "/var/www/coffeescript-php/grammar.y"
  2625. function yy_r2(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; }
  2626. #line 2658 "/var/www/coffeescript-php/grammar.php"
  2627. #line 31 "/var/www/coffeescript-php/grammar.y"
  2628. function yy_r3(){ $this->_retvalue = yy_Block::wrap($this->yystack[$this->yyidx + 0]->minor); }
  2629. #line 2661 "/var/www/coffeescript-php/grammar.php"
  2630. #line 32 "/var/www/coffeescript-php/grammar.y"
  2631. function yy_r4(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor->push($this->yystack[$this->yyidx + 0]->minor); }
  2632. #line 2664 "/var/www/coffeescript-php/grammar.php"
  2633. #line 41 "/var/www/coffeescript-php/grammar.y"
  2634. function yy_r11(){ $this->_retvalue = yy('Literal', $this->yystack[$this->yyidx + 0]->minor); }
  2635. #line 2667 "/var/www/coffeescript-php/grammar.php"
  2636. #line 66 "/var/www/coffeescript-php/grammar.y"
  2637. function yy_r31(){ $val = yy('Literal', $this->yystack[$this->yyidx + 0]->minor);
  2638. $val->is_undefined($this->yystack[$this->yyidx + 0]->minor === 'undefined');
  2639. $this->_retvalue = $val; }
  2640. #line 2672 "/var/www/coffeescript-php/grammar.php"
  2641. #line 70 "/var/www/coffeescript-php/grammar.y"
  2642. function yy_r32(){ $this->_retvalue = yy('Assign', $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2643. #line 2675 "/var/www/coffeescript-php/grammar.php"
  2644. #line 71 "/var/www/coffeescript-php/grammar.y"
  2645. function yy_r33(){ $this->_retvalue = yy('Assign', $this->yystack[$this->yyidx + -4]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2646. #line 2678 "/var/www/coffeescript-php/grammar.php"
  2647. #line 73 "/var/www/coffeescript-php/grammar.y"
  2648. function yy_r34(){ $this->_retvalue = yy('Value', $this->yystack[$this->yyidx + 0]->minor); }
  2649. #line 2681 "/var/www/coffeescript-php/grammar.php"
  2650. #line 74 "/var/www/coffeescript-php/grammar.y"
  2651. function yy_r35(){ $this->_retvalue = yy('Assign', yy('Value', $this->yystack[$this->yyidx + -2]->minor), $this->yystack[$this->yyidx + 0]->minor, 'object'); }
  2652. #line 2684 "/var/www/coffeescript-php/grammar.php"
  2653. #line 75 "/var/www/coffeescript-php/grammar.y"
  2654. function yy_r36(){ $this->_retvalue = yy('Assign', yy('Value', $this->yystack[$this->yyidx + -4]->minor), $this->yystack[$this->yyidx + -1]->minor, 'object'); }
  2655. #line 2687 "/var/www/coffeescript-php/grammar.php"
  2656. #line 82 "/var/www/coffeescript-php/grammar.y"
  2657. function yy_r41(){ $this->_retvalue = yy('Return', $this->yystack[$this->yyidx + 0]->minor); }
  2658. #line 2690 "/var/www/coffeescript-php/grammar.php"
  2659. #line 83 "/var/www/coffeescript-php/grammar.y"
  2660. function yy_r42(){ $this->_retvalue = yy('Return'); }
  2661. #line 2693 "/var/www/coffeescript-php/grammar.php"
  2662. #line 85 "/var/www/coffeescript-php/grammar.y"
  2663. function yy_r43(){ $this->_retvalue = yy('Comment', $this->yystack[$this->yyidx + 0]->minor); }
  2664. #line 2696 "/var/www/coffeescript-php/grammar.php"
  2665. #line 87 "/var/www/coffeescript-php/grammar.y"
  2666. function yy_r44(){ $this->_retvalue = yy('Code', $this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2667. #line 2699 "/var/www/coffeescript-php/grammar.php"
  2668. #line 88 "/var/www/coffeescript-php/grammar.y"
  2669. function yy_r45(){ $this->_retvalue = yy('Code', array(), $this->yystack[$this->yyidx + 0]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2670. #line 2702 "/var/www/coffeescript-php/grammar.php"
  2671. #line 90 "/var/www/coffeescript-php/grammar.y"
  2672. function yy_r46(){ $this->_retvalue = 'func'; }
  2673. #line 2705 "/var/www/coffeescript-php/grammar.php"
  2674. #line 91 "/var/www/coffeescript-php/grammar.y"
  2675. function yy_r47(){ $this->_retvalue = 'boundfunc'; }
  2676. #line 2708 "/var/www/coffeescript-php/grammar.php"
  2677. #line 93 "/var/www/coffeescript-php/grammar.y"
  2678. function yy_r48(){ $this->_retvalue = ''; }
  2679. #line 2711 "/var/www/coffeescript-php/grammar.php"
  2680. #line 96 "/var/www/coffeescript-php/grammar.y"
  2681. function yy_r50(){ $this->_retvalue = array(); }
  2682. #line 2714 "/var/www/coffeescript-php/grammar.php"
  2683. #line 97 "/var/www/coffeescript-php/grammar.y"
  2684. function yy_r51(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); }
  2685. #line 2717 "/var/www/coffeescript-php/grammar.php"
  2686. #line 98 "/var/www/coffeescript-php/grammar.y"
  2687. function yy_r52(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -2]->minor, array($this->yystack[$this->yyidx + 0]->minor)); }
  2688. #line 2720 "/var/www/coffeescript-php/grammar.php"
  2689. #line 100 "/var/www/coffeescript-php/grammar.y"
  2690. function yy_r53(){ $this->_retvalue = yy('Param', $this->yystack[$this->yyidx + 0]->minor); }
  2691. #line 2723 "/var/www/coffeescript-php/grammar.php"
  2692. #line 101 "/var/www/coffeescript-php/grammar.y"
  2693. function yy_r54(){ $this->_retvalue = yy('Param', $this->yystack[$this->yyidx + -1]->minor, NULL, TRUE); }
  2694. #line 2726 "/var/www/coffeescript-php/grammar.php"
  2695. #line 102 "/var/www/coffeescript-php/grammar.y"
  2696. function yy_r55(){ $this->_retvalue = yy('Param', $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2697. #line 2729 "/var/www/coffeescript-php/grammar.php"
  2698. #line 109 "/var/www/coffeescript-php/grammar.y"
  2699. function yy_r60(){ $this->_retvalue = yy('Splat', $this->yystack[$this->yyidx + -1]->minor); }
  2700. #line 2732 "/var/www/coffeescript-php/grammar.php"
  2701. #line 112 "/var/www/coffeescript-php/grammar.y"
  2702. function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->push($this->yystack[$this->yyidx + 0]->minor); }
  2703. #line 2735 "/var/www/coffeescript-php/grammar.php"
  2704. #line 113 "/var/www/coffeescript-php/grammar.y"
  2705. function yy_r63(){ $this->_retvalue = yy('Value', $this->yystack[$this->yyidx + -1]->minor, array($this->yystack[$this->yyidx + 0]->minor)); }
  2706. #line 2738 "/var/www/coffeescript-php/grammar.php"
  2707. #line 126 "/var/www/coffeescript-php/grammar.y"
  2708. function yy_r73(){ $this->_retvalue = yy('Access', $this->yystack[$this->yyidx + 0]->minor); }
  2709. #line 2741 "/var/www/coffeescript-php/grammar.php"
  2710. #line 127 "/var/www/coffeescript-php/grammar.y"
  2711. function yy_r74(){ $this->_retvalue = yy('Access', $this->yystack[$this->yyidx + 0]->minor, 'soak'); }
  2712. #line 2744 "/var/www/coffeescript-php/grammar.php"
  2713. #line 128 "/var/www/coffeescript-php/grammar.y"
  2714. function yy_r75(){ $this->_retvalue = yy('Access', $this->yystack[$this->yyidx + 0]->minor, 'proto'); }
  2715. #line 2747 "/var/www/coffeescript-php/grammar.php"
  2716. #line 129 "/var/www/coffeescript-php/grammar.y"
  2717. function yy_r76(){ $this->_retvalue = yy('Access', yy('Literal', 'prototype')); }
  2718. #line 2750 "/var/www/coffeescript-php/grammar.php"
  2719. #line 133 "/var/www/coffeescript-php/grammar.y"
  2720. function yy_r79(){ $this->_retvalue = extend($this->yystack[$this->yyidx + 0]->minor, array('soak' => TRUE)); }
  2721. #line 2753 "/var/www/coffeescript-php/grammar.php"
  2722. #line 134 "/var/www/coffeescript-php/grammar.y"
  2723. function yy_r80(){ $this->_retvalue = extend($this->yystack[$this->yyidx + 0]->minor, array('proto' => TRUE)); }
  2724. #line 2756 "/var/www/coffeescript-php/grammar.php"
  2725. #line 136 "/var/www/coffeescript-php/grammar.y"
  2726. function yy_r81(){ $this->_retvalue = yy('Index', $this->yystack[$this->yyidx + 0]->minor); }
  2727. #line 2759 "/var/www/coffeescript-php/grammar.php"
  2728. #line 137 "/var/www/coffeescript-php/grammar.y"
  2729. function yy_r82(){ $this->_retvalue = yy('Slice', $this->yystack[$this->yyidx + 0]->minor); }
  2730. #line 2762 "/var/www/coffeescript-php/grammar.php"
  2731. #line 139 "/var/www/coffeescript-php/grammar.y"
  2732. function yy_r83(){ $this->_retvalue = yy('Obj', $this->yystack[$this->yyidx + -2]->minor, $this->__generated_value__); }
  2733. #line 2765 "/var/www/coffeescript-php/grammar.php"
  2734. #line 143 "/var/www/coffeescript-php/grammar.y"
  2735. function yy_r86(){ $this->yystack[$this->yyidx + -2]->minor[] = $this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }
  2736. #line 2768 "/var/www/coffeescript-php/grammar.php"
  2737. #line 144 "/var/www/coffeescript-php/grammar.y"
  2738. function yy_r87(){ $this->yystack[$this->yyidx + -3]->minor[] = $this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor; }
  2739. #line 2771 "/var/www/coffeescript-php/grammar.php"
  2740. #line 145 "/var/www/coffeescript-php/grammar.y"
  2741. function yy_r88(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -5]->minor, $this->yystack[$this->yyidx + -2]->minor); }
  2742. #line 2774 "/var/www/coffeescript-php/grammar.php"
  2743. #line 147 "/var/www/coffeescript-php/grammar.y"
  2744. function yy_r89(){ $this->_retvalue = yy('Class'); }
  2745. #line 2777 "/var/www/coffeescript-php/grammar.php"
  2746. #line 148 "/var/www/coffeescript-php/grammar.y"
  2747. function yy_r90(){ $this->_retvalue = yy('Class', NULL, NULL, $this->yystack[$this->yyidx + 0]->minor); }
  2748. #line 2780 "/var/www/coffeescript-php/grammar.php"
  2749. #line 149 "/var/www/coffeescript-php/grammar.y"
  2750. function yy_r91(){ $this->_retvalue = yy('Class', NULL, $this->yystack[$this->yyidx + 0]->minor); }
  2751. #line 2783 "/var/www/coffeescript-php/grammar.php"
  2752. #line 150 "/var/www/coffeescript-php/grammar.y"
  2753. function yy_r92(){ $this->_retvalue = yy('Class', NULL, $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2754. #line 2786 "/var/www/coffeescript-php/grammar.php"
  2755. #line 151 "/var/www/coffeescript-php/grammar.y"
  2756. function yy_r93(){ $this->_retvalue = yy('Class', $this->yystack[$this->yyidx + 0]->minor); }
  2757. #line 2789 "/var/www/coffeescript-php/grammar.php"
  2758. #line 152 "/var/www/coffeescript-php/grammar.y"
  2759. function yy_r94(){ $this->_retvalue = yy('Class', $this->yystack[$this->yyidx + -1]->minor, NULL, $this->yystack[$this->yyidx + 0]->minor); }
  2760. #line 2792 "/var/www/coffeescript-php/grammar.php"
  2761. #line 153 "/var/www/coffeescript-php/grammar.y"
  2762. function yy_r95(){ $this->_retvalue = yy('Class', $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2763. #line 2795 "/var/www/coffeescript-php/grammar.php"
  2764. #line 154 "/var/www/coffeescript-php/grammar.y"
  2765. function yy_r96(){ $this->_retvalue = yy('Class', $this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2766. #line 2798 "/var/www/coffeescript-php/grammar.php"
  2767. #line 156 "/var/www/coffeescript-php/grammar.y"
  2768. function yy_r97(){ $this->_retvalue = yy('Call', $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2769. #line 2801 "/var/www/coffeescript-php/grammar.php"
  2770. #line 158 "/var/www/coffeescript-php/grammar.y"
  2771. function yy_r99(){ $this->_retvalue = yy('Call', 'super', array(yy('Splat', yy('Literal', 'arguments')))); }
  2772. #line 2804 "/var/www/coffeescript-php/grammar.php"
  2773. #line 159 "/var/www/coffeescript-php/grammar.y"
  2774. function yy_r100(){ $this->_retvalue = yy('Call', 'super', $this->yystack[$this->yyidx + 0]->minor); }
  2775. #line 2807 "/var/www/coffeescript-php/grammar.php"
  2776. #line 161 "/var/www/coffeescript-php/grammar.y"
  2777. function yy_r101(){ $this->_retvalue = FALSE; }
  2778. #line 2810 "/var/www/coffeescript-php/grammar.php"
  2779. #line 162 "/var/www/coffeescript-php/grammar.y"
  2780. function yy_r102(){ $this->_retvalue = TRUE; }
  2781. #line 2813 "/var/www/coffeescript-php/grammar.php"
  2782. #line 165 "/var/www/coffeescript-php/grammar.y"
  2783. function yy_r104(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; }
  2784. #line 2816 "/var/www/coffeescript-php/grammar.php"
  2785. #line 167 "/var/www/coffeescript-php/grammar.y"
  2786. function yy_r105(){ $this->_retvalue = yy('Value', yy('Literal', 'this')); }
  2787. #line 2819 "/var/www/coffeescript-php/grammar.php"
  2788. #line 170 "/var/www/coffeescript-php/grammar.y"
  2789. function yy_r107(){ $this->_retvalue = yy('Value', yy('Literal', 'this'), array(yy('Access', $this->yystack[$this->yyidx + 0]->minor)), 'this'); }
  2790. #line 2822 "/var/www/coffeescript-php/grammar.php"
  2791. #line 172 "/var/www/coffeescript-php/grammar.y"
  2792. function yy_r108(){ $this->_retvalue = yy('Arr', array()); }
  2793. #line 2825 "/var/www/coffeescript-php/grammar.php"
  2794. #line 173 "/var/www/coffeescript-php/grammar.y"
  2795. function yy_r109(){ $this->_retvalue = yy('Arr', $this->yystack[$this->yyidx + -2]->minor); }
  2796. #line 2828 "/var/www/coffeescript-php/grammar.php"
  2797. #line 175 "/var/www/coffeescript-php/grammar.y"
  2798. function yy_r110(){ $this->_retvalue = 'inclusive'; }
  2799. #line 2831 "/var/www/coffeescript-php/grammar.php"
  2800. #line 176 "/var/www/coffeescript-php/grammar.y"
  2801. function yy_r111(){ $this->_retvalue = 'exclusive'; }
  2802. #line 2834 "/var/www/coffeescript-php/grammar.php"
  2803. #line 178 "/var/www/coffeescript-php/grammar.y"
  2804. function yy_r112(){ $this->_retvalue = yy('Range', $this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + -2]->minor); }
  2805. #line 2837 "/var/www/coffeescript-php/grammar.php"
  2806. #line 180 "/var/www/coffeescript-php/grammar.y"
  2807. function yy_r113(){ $this->_retvalue = yy('Range', $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2808. #line 2840 "/var/www/coffeescript-php/grammar.php"
  2809. #line 181 "/var/www/coffeescript-php/grammar.y"
  2810. function yy_r114(){ $this->_retvalue = yy('Range', $this->yystack[$this->yyidx + -1]->minor, NULL, $this->yystack[$this->yyidx + 0]->minor); }
  2811. #line 2843 "/var/www/coffeescript-php/grammar.php"
  2812. #line 182 "/var/www/coffeescript-php/grammar.y"
  2813. function yy_r115(){ $this->_retvalue = yy('Range', NULL, $this->yystack[$this->yyidx + 0]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2814. #line 2846 "/var/www/coffeescript-php/grammar.php"
  2815. #line 186 "/var/www/coffeescript-php/grammar.y"
  2816. function yy_r118(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -3]->minor, array($this->yystack[$this->yyidx + 0]->minor)); }
  2817. #line 2849 "/var/www/coffeescript-php/grammar.php"
  2818. #line 194 "/var/www/coffeescript-php/grammar.y"
  2819. function yy_r124(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2820. #line 2852 "/var/www/coffeescript-php/grammar.php"
  2821. #line 196 "/var/www/coffeescript-php/grammar.y"
  2822. function yy_r125(){ $this->_retvalue = yy('Try', $this->yystack[$this->yyidx + 0]->minor); }
  2823. #line 2855 "/var/www/coffeescript-php/grammar.php"
  2824. #line 197 "/var/www/coffeescript-php/grammar.y"
  2825. function yy_r126(){ $this->_retvalue = yy('Try', $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor[0], $this->yystack[$this->yyidx + 0]->minor[1]); }
  2826. #line 2858 "/var/www/coffeescript-php/grammar.php"
  2827. #line 198 "/var/www/coffeescript-php/grammar.y"
  2828. function yy_r127(){ $this->_retvalue = yy('Try', $this->yystack[$this->yyidx + -2]->minor, NULL, NULL, $this->yystack[$this->yyidx + 0]->minor); }
  2829. #line 2861 "/var/www/coffeescript-php/grammar.php"
  2830. #line 199 "/var/www/coffeescript-php/grammar.y"
  2831. function yy_r128(){ $this->_retvalue = yy('Try', $this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + -2]->minor[0], $this->yystack[$this->yyidx + -2]->minor[1], $this->yystack[$this->yyidx + 0]->minor); }
  2832. #line 2864 "/var/www/coffeescript-php/grammar.php"
  2833. #line 201 "/var/www/coffeescript-php/grammar.y"
  2834. function yy_r129(){ $this->_retvalue = array($this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2835. #line 2867 "/var/www/coffeescript-php/grammar.php"
  2836. #line 203 "/var/www/coffeescript-php/grammar.y"
  2837. function yy_r130(){ $this->_retvalue = yy('Throw', $this->yystack[$this->yyidx + 0]->minor); }
  2838. #line 2870 "/var/www/coffeescript-php/grammar.php"
  2839. #line 205 "/var/www/coffeescript-php/grammar.y"
  2840. function yy_r131(){ $this->_retvalue = yy('Parens', $this->yystack[$this->yyidx + -1]->minor); }
  2841. #line 2873 "/var/www/coffeescript-php/grammar.php"
  2842. #line 206 "/var/www/coffeescript-php/grammar.y"
  2843. function yy_r132(){ $this->_retvalue = yy('Parens', $this->yystack[$this->yyidx + -2]->minor); }
  2844. #line 2876 "/var/www/coffeescript-php/grammar.php"
  2845. #line 208 "/var/www/coffeescript-php/grammar.y"
  2846. function yy_r133(){ $this->_retvalue = yy('While', $this->yystack[$this->yyidx + 0]->minor); }
  2847. #line 2879 "/var/www/coffeescript-php/grammar.php"
  2848. #line 209 "/var/www/coffeescript-php/grammar.y"
  2849. function yy_r134(){ $this->_retvalue = yy('While', $this->yystack[$this->yyidx + -2]->minor, array('guard' => $this->yystack[$this->yyidx + 0]->minor)); }
  2850. #line 2882 "/var/www/coffeescript-php/grammar.php"
  2851. #line 210 "/var/www/coffeescript-php/grammar.y"
  2852. function yy_r135(){ $this->_retvalue = yy('While', $this->yystack[$this->yyidx + 0]->minor, array('invert' => TRUE)); }
  2853. #line 2885 "/var/www/coffeescript-php/grammar.php"
  2854. #line 211 "/var/www/coffeescript-php/grammar.y"
  2855. function yy_r136(){ $this->_retvalue = yy('While', $this->yystack[$this->yyidx + -2]->minor, array('invert' => TRUE, 'guard' => $this->yystack[$this->yyidx + 0]->minor)); }
  2856. #line 2888 "/var/www/coffeescript-php/grammar.php"
  2857. #line 213 "/var/www/coffeescript-php/grammar.y"
  2858. function yy_r137(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->add_body($this->yystack[$this->yyidx + 0]->minor); }
  2859. #line 2891 "/var/www/coffeescript-php/grammar.php"
  2860. #line 214 "/var/www/coffeescript-php/grammar.y"
  2861. function yy_r138(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor->add_body(yy_Block::wrap(array($this->yystack[$this->yyidx + -1]->minor))); }
  2862. #line 2894 "/var/www/coffeescript-php/grammar.php"
  2863. #line 218 "/var/www/coffeescript-php/grammar.y"
  2864. function yy_r141(){ $this->_retvalue = yy('While', yy('Literal', 'true')); $this->_retvalue->add_body($this->yystack[$this->yyidx + 0]->minor); }
  2865. #line 2897 "/var/www/coffeescript-php/grammar.php"
  2866. #line 219 "/var/www/coffeescript-php/grammar.y"
  2867. function yy_r142(){ $this->_retvalue = yy('While', yy('Literal', 'true')); $this->_retvalue->add_body(yy_Block::wrap($this->yystack[$this->yyidx + 0]->minor)); }
  2868. #line 2900 "/var/www/coffeescript-php/grammar.php"
  2869. #line 221 "/var/www/coffeescript-php/grammar.y"
  2870. function yy_r143(){ $this->_retvalue = yy('For', $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2871. #line 2903 "/var/www/coffeescript-php/grammar.php"
  2872. #line 223 "/var/www/coffeescript-php/grammar.y"
  2873. function yy_r145(){ $this->_retvalue = yy('For', $this->yystack[$this->yyidx + 0]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2874. #line 2906 "/var/www/coffeescript-php/grammar.php"
  2875. #line 225 "/var/www/coffeescript-php/grammar.y"
  2876. function yy_r146(){ $this->_retvalue = array('source' => yy('Value', $this->yystack[$this->yyidx + 0]->minor)); }
  2877. #line 2909 "/var/www/coffeescript-php/grammar.php"
  2878. #line 226 "/var/www/coffeescript-php/grammar.y"
  2879. function yy_r147(){ $this->yystack[$this->yyidx + 0]->minor['own'] = isset($this->yystack[$this->yyidx + -1]->minor['own']) ? $this->yystack[$this->yyidx + -1]->minor['own'] : NULL; $this->yystack[$this->yyidx + 0]->minor['name'] = $this->yystack[$this->yyidx + -1]->minor[0]; $this->yystack[$this->yyidx + 0]->minor['index'] = isset($this->yystack[$this->yyidx + -1]->minor[1]) ? $this->yystack[$this->yyidx + -1]->minor[1] : NULL; $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
  2880. #line 2912 "/var/www/coffeescript-php/grammar.php"
  2881. #line 229 "/var/www/coffeescript-php/grammar.y"
  2882. function yy_r149(){ $this->yystack[$this->yyidx + 0]->minor['own'] = TRUE; $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; }
  2883. #line 2915 "/var/www/coffeescript-php/grammar.php"
  2884. #line 238 "/var/www/coffeescript-php/grammar.y"
  2885. function yy_r155(){ $this->_retvalue = array('source' => $this->yystack[$this->yyidx + 0]->minor); }
  2886. #line 2918 "/var/www/coffeescript-php/grammar.php"
  2887. #line 239 "/var/www/coffeescript-php/grammar.y"
  2888. function yy_r156(){ $this->_retvalue = array('source' => $this->yystack[$this->yyidx + 0]->minor, 'object' => TRUE); }
  2889. #line 2921 "/var/www/coffeescript-php/grammar.php"
  2890. #line 240 "/var/www/coffeescript-php/grammar.y"
  2891. function yy_r157(){ $this->_retvalue = array('source' => $this->yystack[$this->yyidx + -2]->minor, 'guard' => $this->yystack[$this->yyidx + 0]->minor); }
  2892. #line 2924 "/var/www/coffeescript-php/grammar.php"
  2893. #line 241 "/var/www/coffeescript-php/grammar.y"
  2894. function yy_r158(){ $this->_retvalue = array('source' => $this->yystack[$this->yyidx + -2]->minor, 'guard' => $this->yystack[$this->yyidx + 0]->minor, 'object' => TRUE); }
  2895. #line 2927 "/var/www/coffeescript-php/grammar.php"
  2896. #line 242 "/var/www/coffeescript-php/grammar.y"
  2897. function yy_r159(){ $this->_retvalue = array('source' => $this->yystack[$this->yyidx + -2]->minor, 'step' => $this->yystack[$this->yyidx + 0]->minor); }
  2898. #line 2930 "/var/www/coffeescript-php/grammar.php"
  2899. #line 243 "/var/www/coffeescript-php/grammar.y"
  2900. function yy_r160(){ $this->_retvalue = array('source' => $this->yystack[$this->yyidx + -4]->minor, 'guard' => $this->yystack[$this->yyidx + -2]->minor, 'step' => $this->yystack[$this->yyidx + 0]->minor); }
  2901. #line 2933 "/var/www/coffeescript-php/grammar.php"
  2902. #line 244 "/var/www/coffeescript-php/grammar.y"
  2903. function yy_r161(){ $this->_retvalue = array('source' => $this->yystack[$this->yyidx + -4]->minor, 'step' => $this->yystack[$this->yyidx + -2]->minor, 'guard' => $this->yystack[$this->yyidx + 0]->minor); }
  2904. #line 2936 "/var/www/coffeescript-php/grammar.php"
  2905. #line 246 "/var/www/coffeescript-php/grammar.y"
  2906. function yy_r162(){ $this->_retvalue = yy('Switch', $this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2907. #line 2939 "/var/www/coffeescript-php/grammar.php"
  2908. #line 247 "/var/www/coffeescript-php/grammar.y"
  2909. function yy_r163(){ $this->_retvalue = yy('Switch', $this->yystack[$this->yyidx + -5]->minor, $this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2910. #line 2942 "/var/www/coffeescript-php/grammar.php"
  2911. #line 248 "/var/www/coffeescript-php/grammar.y"
  2912. function yy_r164(){ $this->_retvalue = yy('Switch', NULL, $this->yystack[$this->yyidx + -1]->minor); }
  2913. #line 2945 "/var/www/coffeescript-php/grammar.php"
  2914. #line 249 "/var/www/coffeescript-php/grammar.y"
  2915. function yy_r165(){ $this->_retvalue = yy('Switch', NULL, $this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2916. #line 2948 "/var/www/coffeescript-php/grammar.php"
  2917. #line 252 "/var/www/coffeescript-php/grammar.y"
  2918. function yy_r167(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2919. #line 2951 "/var/www/coffeescript-php/grammar.php"
  2920. #line 254 "/var/www/coffeescript-php/grammar.y"
  2921. function yy_r168(){ $this->_retvalue = array(array($this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor)); }
  2922. #line 2954 "/var/www/coffeescript-php/grammar.php"
  2923. #line 255 "/var/www/coffeescript-php/grammar.y"
  2924. function yy_r169(){ $this->_retvalue = array(array($this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + -1]->minor)); }
  2925. #line 2957 "/var/www/coffeescript-php/grammar.php"
  2926. #line 257 "/var/www/coffeescript-php/grammar.y"
  2927. function yy_r170(){ $this->_retvalue = yy('If', $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor, array('type' => $this->yystack[$this->yyidx + -2]->minor)); }
  2928. #line 2960 "/var/www/coffeescript-php/grammar.php"
  2929. #line 258 "/var/www/coffeescript-php/grammar.y"
  2930. function yy_r171(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor->add_else(yy('If', $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor, array('type' => $this->yystack[$this->yyidx + -2]->minor))); }
  2931. #line 2963 "/var/www/coffeescript-php/grammar.php"
  2932. #line 261 "/var/www/coffeescript-php/grammar.y"
  2933. function yy_r173(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor->add_else($this->yystack[$this->yyidx + 0]->minor); }
  2934. #line 2966 "/var/www/coffeescript-php/grammar.php"
  2935. #line 262 "/var/www/coffeescript-php/grammar.y"
  2936. function yy_r174(){ $this->_retvalue = yy('If', $this->yystack[$this->yyidx + 0]->minor, yy_Block::wrap(array($this->yystack[$this->yyidx + -2]->minor)), array('type' => $this->yystack[$this->yyidx + -1]->minor, 'statement' => TRUE)); }
  2937. #line 2969 "/var/www/coffeescript-php/grammar.php"
  2938. #line 265 "/var/www/coffeescript-php/grammar.y"
  2939. function yy_r176(){ $this->_retvalue = yy('Op', $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2940. #line 2972 "/var/www/coffeescript-php/grammar.php"
  2941. #line 266 "/var/www/coffeescript-php/grammar.y"
  2942. function yy_r177(){ $this->_retvalue = yy('Op', $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + 0]->minor); /* prec: 'UNARY'; */ }
  2943. #line 2975 "/var/www/coffeescript-php/grammar.php"
  2944. #line 270 "/var/www/coffeescript-php/grammar.y"
  2945. function yy_r181(){ $this->_retvalue = yy('Op', $this->yystack[$this->yyidx + 0]->minor, $this->yystack[$this->yyidx + -1]->minor, NULL, TRUE); }
  2946. #line 2978 "/var/www/coffeescript-php/grammar.php"
  2947. #line 272 "/var/www/coffeescript-php/grammar.y"
  2948. function yy_r183(){ $this->_retvalue = yy('Existence', $this->yystack[$this->yyidx + -1]->minor); }
  2949. #line 2981 "/var/www/coffeescript-php/grammar.php"
  2950. #line 273 "/var/www/coffeescript-php/grammar.y"
  2951. function yy_r184(){ $this->_retvalue = yy('Op', $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2952. #line 2984 "/var/www/coffeescript-php/grammar.php"
  2953. #line 279 "/var/www/coffeescript-php/grammar.y"
  2954. function yy_r190(){ if ($this->yystack[$this->yyidx + -1]->minor{0} === '!') { $this->_retvalue = yy('Op', substr($this->yystack[$this->yyidx + -1]->minor, 1), $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor); $this->_retvalue->invert(); } else { $this->_retvalue = yy('Op', $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor); } }
  2955. #line 2987 "/var/www/coffeescript-php/grammar.php"
  2956. #line 280 "/var/www/coffeescript-php/grammar.y"
  2957. function yy_r191(){ $this->_retvalue = yy('Assign', $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor, $this->yystack[$this->yyidx + -1]->minor); }
  2958. #line 2990 "/var/www/coffeescript-php/grammar.php"
  2959. #line 281 "/var/www/coffeescript-php/grammar.y"
  2960. function yy_r192(){ $this->_retvalue = yy('Assign', $this->yystack[$this->yyidx + -4]->minor, $this->yystack[$this->yyidx + -1]->minor, $this->yystack[$this->yyidx + -3]->minor); }
  2961. #line 2993 "/var/www/coffeescript-php/grammar.php"
  2962. #line 282 "/var/www/coffeescript-php/grammar.y"
  2963. function yy_r193(){ $this->_retvalue = yy('Extends', $this->yystack[$this->yyidx + -2]->minor, $this->yystack[$this->yyidx + 0]->minor); }
  2964. #line 2996 "/var/www/coffeescript-php/grammar.php"
  2965. /**
  2966. * placeholder for the left hand side in a reduce operation.
  2967. *
  2968. * For a parser with a rule like this:
  2969. * <pre>
  2970. * rule(A) ::= B. { A = 1; }
  2971. * </pre>
  2972. *
  2973. * The parser will translate to something like:
  2974. *
  2975. * <code>
  2976. * function yy_r0(){$this->_retvalue = 1;}
  2977. * </code>
  2978. */
  2979. private $_retvalue;
  2980. /**
  2981. * Perform a reduce action and the shift that must immediately
  2982. * follow the reduce.
  2983. *
  2984. * For a rule such as:
  2985. *
  2986. * <pre>
  2987. * A ::= B blah C. { dosomething(); }
  2988. * </pre>
  2989. *
  2990. * This function will first call the action, if any, ("dosomething();" in our
  2991. * example), and then it will pop three states from the stack,
  2992. * one for each entry on the right-hand side of the expression
  2993. * (B, blah, and C in our example rule), and then push the result of the action
  2994. * back on to the stack with the resulting state reduced to (as described in the .out
  2995. * file)
  2996. * @param int Number of the rule by which to reduce
  2997. */
  2998. function yy_reduce($yyruleno)
  2999. {
  3000. //int $yygoto; /* The next state */
  3001. //int $yyact; /* The next action */
  3002. //mixed $yygotominor; /* The LHS of the rule reduced */
  3003. //yyStackEntry $yymsp; /* The top of the parser's stack */
  3004. //int $yysize; /* Amount to pop the stack */
  3005. $yymsp = $this->yystack[$this->yyidx];
  3006. if (self::$yyTraceFILE && $yyruleno >= 0
  3007. && $yyruleno < count(self::$yyRuleName)) {
  3008. fprintf(self::$yyTraceFILE, "%sReduce (%d) [%s].\n",
  3009. self::$yyTracePrompt, $yyruleno,
  3010. self::$yyRuleName[$yyruleno]);
  3011. }
  3012. $this->_retvalue = $yy_lefthand_side = null;
  3013. if (array_key_exists($yyruleno, self::$yyReduceMap)) {
  3014. // call the action
  3015. $this->_retvalue = null;
  3016. $this->{'yy_r' . self::$yyReduceMap[$yyruleno]}();
  3017. $yy_lefthand_side = $this->_retvalue;
  3018. }
  3019. $yygoto = self::$yyRuleInfo[$yyruleno]['lhs'];
  3020. $yysize = self::$yyRuleInfo[$yyruleno]['rhs'];
  3021. $this->yyidx -= $yysize;
  3022. for ($i = $yysize; $i; $i--) {
  3023. // pop all of the right-hand side parameters
  3024. array_pop($this->yystack);
  3025. }
  3026. $yyact = $this->yy_find_reduce_action($this->yystack[$this->yyidx]->stateno, $yygoto);
  3027. if ($yyact < self::YYNSTATE) {
  3028. /* If we are not debugging and the reduce action popped at least
  3029. ** one element off the stack, then we can push the new element back
  3030. ** onto the stack here, and skip the stack overflow test in yy_shift().
  3031. ** That gives a significant speed improvement. */
  3032. if (!self::$yyTraceFILE && $yysize) {
  3033. $this->yyidx++;
  3034. $x = new yyStackEntry;
  3035. $x->stateno = $yyact;
  3036. $x->major = $yygoto;
  3037. $x->minor = $yy_lefthand_side;
  3038. $this->yystack[$this->yyidx] = $x;
  3039. } else {
  3040. $this->yy_shift($yyact, $yygoto, $yy_lefthand_side);
  3041. }
  3042. } elseif ($yyact == self::YYNSTATE + self::YYNRULE + 1) {
  3043. $this->yy_accept();
  3044. }
  3045. }
  3046. /**
  3047. * The following code executes when the parse fails
  3048. *
  3049. * Code from %parse_fail is inserted here
  3050. */
  3051. function yy_parse_failed()
  3052. {
  3053. if (self::$yyTraceFILE) {
  3054. fprintf(self::$yyTraceFILE, "%sFail!\n", self::$yyTracePrompt);
  3055. }
  3056. while ($this->yyidx >= 0) {
  3057. $this->yy_pop_parser_stack();
  3058. }
  3059. /* Here code is inserted which will be executed whenever the
  3060. ** parser fails */
  3061. }
  3062. /**
  3063. * The following code executes when a syntax error first occurs.
  3064. *
  3065. * %syntax_error code is inserted here
  3066. * @param int The major type of the error token
  3067. * @param mixed The minor type of the error token
  3068. */
  3069. function yy_syntax_error($yymajor, $TOKEN)
  3070. {
  3071. #line 4 "/var/www/coffeescript-php/grammar.y"
  3072. throw new SyntaxError(
  3073. 'unexpected '.$this->tokenName($yymajor).' in '.self::$FILE.':'
  3074. . (self::$LINE + 1).'.'
  3075. );
  3076. #line 3115 "/var/www/coffeescript-php/grammar.php"
  3077. }
  3078. /**
  3079. * The following is executed when the parser accepts
  3080. *
  3081. * %parse_accept code is inserted here
  3082. */
  3083. function yy_accept()
  3084. {
  3085. if (self::$yyTraceFILE) {
  3086. fprintf(self::$yyTraceFILE, "%sAccept!\n", self::$yyTracePrompt);
  3087. }
  3088. while ($this->yyidx >= 0) {
  3089. $stack = $this->yy_pop_parser_stack();
  3090. }
  3091. /* Here code is inserted which will be executed whenever the
  3092. ** parser accepts */
  3093. }
  3094. /**
  3095. * The main parser program.
  3096. *
  3097. * The first argument is the major token number. The second is
  3098. * the token value string as scanned from the input.
  3099. *
  3100. * @param int $yymajor the token number
  3101. * @param mixed $yytokenvalue the token value
  3102. * @param mixed ... any extra arguments that should be passed to handlers
  3103. *
  3104. * @return void
  3105. */
  3106. function parse($token)
  3107. {
  3108. list($yymajor, $yytokenvalue, ) = $token ? $token : array(0, 0);
  3109. self::$LINE = isset($token[2]) ? $token[2] : -1;
  3110. // See rewriter.php\add_implicit_braces() and grammar.y.
  3111. $this->__generated_value__ = isset($token['generatedValue']) ? $token['generatedValue'] : FALSE;
  3112. // $yyact; /* The parser action. */
  3113. // $yyendofinput; /* True if we are at the end of input */
  3114. $yyerrorhit = 0; /* True if yymajor has invoked an error */
  3115. /* (re)initialize the parser, if necessary */
  3116. if ($this->yyidx === null || $this->yyidx < 0) {
  3117. /* if ($yymajor == 0) return; // not sure why this was here... */
  3118. $this->yyidx = 0;
  3119. $this->yyerrcnt = -1;
  3120. $x = new yyStackEntry;
  3121. $x->stateno = 0;
  3122. $x->major = 0;
  3123. $this->yystack = array();
  3124. array_push($this->yystack, $x);
  3125. }
  3126. $yyendofinput = ($yymajor==0);
  3127. if (self::$yyTraceFILE) {
  3128. fprintf(
  3129. self::$yyTraceFILE,
  3130. "%sInput %s\n",
  3131. self::$yyTracePrompt,
  3132. self::tokenName($yymajor)
  3133. );
  3134. }
  3135. do {
  3136. $yyact = $this->yy_find_shift_action($yymajor);
  3137. if ($yymajor < self::YYERRORSYMBOL
  3138. && !$this->yy_is_expected_token($yymajor)
  3139. ) {
  3140. // force a syntax error
  3141. $yyact = self::YY_ERROR_ACTION;
  3142. }
  3143. if ($yyact < self::YYNSTATE) {
  3144. $this->yy_shift($yyact, $yymajor, $yytokenvalue);
  3145. $this->yyerrcnt--;
  3146. if ($yyendofinput && $this->yyidx >= 0) {
  3147. $yymajor = 0;
  3148. } else {
  3149. $yymajor = self::YYNOCODE;
  3150. }
  3151. } elseif ($yyact < self::YYNSTATE + self::YYNRULE) {
  3152. $this->yy_reduce($yyact - self::YYNSTATE);
  3153. } elseif ($yyact == self::YY_ERROR_ACTION) {
  3154. if (self::$yyTraceFILE) {
  3155. fprintf(
  3156. self::$yyTraceFILE,
  3157. "%sSyntax Error!\n",
  3158. self::$yyTracePrompt
  3159. );
  3160. }
  3161. if (self::YYERRORSYMBOL) {
  3162. /* A syntax error has occurred.
  3163. ** The response to an error depends upon whether or not the
  3164. ** grammar defines an error token "ERROR".
  3165. **
  3166. ** This is what we do if the grammar does define ERROR:
  3167. **
  3168. ** * Call the %syntax_error function.
  3169. **
  3170. ** * Begin popping the stack until we enter a state where
  3171. ** it is legal to shift the error symbol, then shift
  3172. ** the error symbol.
  3173. **
  3174. ** * Set the error count to three.
  3175. **
  3176. ** * Begin accepting and shifting new tokens. No new error
  3177. ** processing will occur until three tokens have been
  3178. ** shifted successfully.
  3179. **
  3180. */
  3181. if ($this->yyerrcnt < 0) {
  3182. $this->yy_syntax_error($yymajor, $yytokenvalue);
  3183. }
  3184. $yymx = $this->yystack[$this->yyidx]->major;
  3185. if ($yymx == self::YYERRORSYMBOL || $yyerrorhit ) {
  3186. if (self::$yyTraceFILE) {
  3187. fprintf(
  3188. self::$yyTraceFILE,
  3189. "%sDiscard input token %s\n",
  3190. self::$yyTracePrompt,
  3191. self::tokenName($yymajor)
  3192. );
  3193. }
  3194. $this->yy_destructor($yymajor, $yytokenvalue);
  3195. $yymajor = self::YYNOCODE;
  3196. } else {
  3197. while ($this->yyidx >= 0
  3198. && $yymx != self::YYERRORSYMBOL
  3199. && ($yyact = $this->yy_find_shift_action(self::YYERRORSYMBOL)) >= self::YYNSTATE
  3200. ) {
  3201. $this->yy_pop_parser_stack();
  3202. }
  3203. if ($this->yyidx < 0 || $yymajor==0) {
  3204. $this->yy_destructor($yymajor, $yytokenvalue);
  3205. $this->yy_parse_failed();
  3206. $yymajor = self::YYNOCODE;
  3207. } elseif ($yymx != self::YYERRORSYMBOL) {
  3208. $u2 = 0;
  3209. $this->yy_shift($yyact, self::YYERRORSYMBOL, $u2);
  3210. }
  3211. }
  3212. $this->yyerrcnt = 3;
  3213. $yyerrorhit = 1;
  3214. } else {
  3215. /* YYERRORSYMBOL is not defined */
  3216. /* This is what we do if the grammar does not define ERROR:
  3217. **
  3218. ** * Report an error message, and throw away the input token.
  3219. **
  3220. ** * If the input token is $, then fail the parse.
  3221. **
  3222. ** As before, subsequent error messages are suppressed until
  3223. ** three input tokens have been successfully shifted.
  3224. */
  3225. if ($this->yyerrcnt <= 0) {
  3226. $this->yy_syntax_error($yymajor, $yytokenvalue);
  3227. }
  3228. $this->yyerrcnt = 3;
  3229. $this->yy_destructor($yymajor, $yytokenvalue);
  3230. if ($yyendofinput) {
  3231. $this->yy_parse_failed();
  3232. }
  3233. $yymajor = self::YYNOCODE;
  3234. }
  3235. } else {
  3236. $this->yy_accept();
  3237. $yymajor = self::YYNOCODE;
  3238. }
  3239. } while ($yymajor != self::YYNOCODE && $this->yyidx >= 0);
  3240. if ($token === NULL)
  3241. {
  3242. return $this->_retvalue;
  3243. }
  3244. }
  3245. }