home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / g77-0.5.15-src.tgz / tar.out / fsf / g77 / cp / parse.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  334KB  |  7,674 lines

  1.  
  2. /*  A Bison parser, made from parse.y with Bison version GNU Bison version 1.24
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    IF    268
  18. #define    ELSE    269
  19. #define    WHILE    270
  20. #define    DO    271
  21. #define    FOR    272
  22. #define    SWITCH    273
  23. #define    CASE    274
  24. #define    DEFAULT    275
  25. #define    BREAK    276
  26. #define    CONTINUE    277
  27. #define    RETURN    278
  28. #define    GOTO    279
  29. #define    ASM_KEYWORD    280
  30. #define    GCC_ASM_KEYWORD    281
  31. #define    TYPEOF    282
  32. #define    ALIGNOF    283
  33. #define    HEADOF    284
  34. #define    CLASSOF    285
  35. #define    SIGOF    286
  36. #define    ATTRIBUTE    287
  37. #define    EXTENSION    288
  38. #define    LABEL    289
  39. #define    AGGR    290
  40. #define    VISSPEC    291
  41. #define    DELETE    292
  42. #define    NEW    293
  43. #define    OVERLOAD    294
  44. #define    THIS    295
  45. #define    OPERATOR    296
  46. #define    CXX_TRUE    297
  47. #define    CXX_FALSE    298
  48. #define    LEFT_RIGHT    299
  49. #define    TEMPLATE    300
  50. #define    TYPEID    301
  51. #define    DYNAMIC_CAST    302
  52. #define    STATIC_CAST    303
  53. #define    REINTERPRET_CAST    304
  54. #define    CONST_CAST    305
  55. #define    SCOPE    306
  56. #define    EMPTY    307
  57. #define    PTYPENAME    308
  58. #define    ASSIGN    309
  59. #define    OROR    310
  60. #define    ANDAND    311
  61. #define    MIN_MAX    312
  62. #define    EQCOMPARE    313
  63. #define    ARITHCOMPARE    314
  64. #define    LSHIFT    315
  65. #define    RSHIFT    316
  66. #define    POINTSAT_STAR    317
  67. #define    DOT_STAR    318
  68. #define    UNARY    319
  69. #define    PLUSPLUS    320
  70. #define    MINUSMINUS    321
  71. #define    HYPERUNARY    322
  72. #define    PAREN_STAR_PAREN    323
  73. #define    POINTSAT    324
  74. #define    TRY    325
  75. #define    CATCH    326
  76. #define    THROW    327
  77. #define    TYPENAME_ELLIPSIS    328
  78. #define    PRE_PARSED_FUNCTION_DECL    329
  79. #define    EXTERN_LANG_STRING    330
  80. #define    ALL    331
  81. #define    PRE_PARSED_CLASS_DECL    332
  82. #define    TYPENAME_DEFN    333
  83. #define    IDENTIFIER_DEFN    334
  84. #define    PTYPENAME_DEFN    335
  85. #define    END_OF_SAVED_INPUT    336
  86.  
  87. #line 42 "parse.y"
  88.  
  89. /* Cause the `yydebug' variable to be defined.  */
  90. #define YYDEBUG 1
  91.  
  92. #include "config.h"
  93.  
  94. #include <stdio.h>
  95. #include <errno.h>
  96.  
  97. #include "tree.h"
  98. #include "input.h"
  99. #include "flags.h"
  100. #include "lex.h"
  101. #include "cp-tree.h"
  102.  
  103. /* Since parsers are distinct for each language, put the language string
  104.    definition here.  (fnf) */
  105. char *language_string = "GNU C++";
  106.  
  107. extern tree void_list_node;
  108. extern struct obstack permanent_obstack;
  109.  
  110. #ifndef errno
  111. extern int errno;
  112. #endif
  113.  
  114. extern int end_of_file;
  115. extern int current_class_depth;
  116.  
  117. void yyerror ();
  118.  
  119. /* Like YYERROR but do call yyerror.  */
  120. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  121.  
  122. #define OP0(NODE) (TREE_OPERAND (NODE, 0))
  123. #define OP1(NODE) (TREE_OPERAND (NODE, 1))
  124.  
  125. /* Contains the statement keyword (if/while/do) to include in an
  126.    error message if the user supplies an empty conditional expression.  */
  127. static char *cond_stmt_keyword;
  128.  
  129. /* Nonzero if we have an `extern "C"' acting as an extern specifier.  */
  130. int have_extern_spec;
  131. int used_extern_spec;
  132.  
  133. void yyhook ();
  134.  
  135. /* Cons up an empty parameter list.  */
  136. #ifdef __GNUC__
  137. __inline
  138. #endif
  139. static tree
  140. empty_parms ()
  141. {
  142.   tree parms;
  143.  
  144.   if (strict_prototype)
  145.     parms = void_list_node;
  146.   else
  147.     parms = NULL_TREE;
  148.   return parms;
  149. }
  150.  
  151. #line 108 "parse.y"
  152. typedef union {long itype; tree ttype; char *strtype; enum tree_code code; } YYSTYPE;
  153. #line 277 "parse.y"
  154.  
  155. /* List of types and structure classes of the current declaration.  */
  156. static tree current_declspecs;
  157.  
  158. /* When defining an aggregate, this is the most recent one being defined.  */
  159. static tree current_aggr;
  160.  
  161. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  162.  
  163. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  164. extern void yyprint ();
  165. extern tree combine_strings        PROTO((tree));
  166.  
  167. #ifndef YYLTYPE
  168. typedef
  169.   struct yyltype
  170.     {
  171.       int timestamp;
  172.       int first_line;
  173.       int first_column;
  174.       int last_line;
  175.       int last_column;
  176.       char *text;
  177.    }
  178.   yyltype;
  179.  
  180. #define YYLTYPE yyltype
  181. #endif
  182.  
  183. #include <stdio.h>
  184.  
  185. #ifndef __cplusplus
  186. #ifndef __STDC__
  187. #ifndef const
  188. #define const
  189. #endif
  190. #endif
  191. #endif
  192.  
  193.  
  194.  
  195. #define    YYFINAL        1350
  196. #define    YYFLAG        -32768
  197. #define    YYNTBASE    106
  198.  
  199. #define YYTRANSLATE(x) ((unsigned)(x) <= 336 ? yytranslate[x] : 338)
  200.  
  201. static const char yytranslate[] = {     0,
  202.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  203.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  204.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  205.      2,     2,   104,     2,     2,     2,    77,    65,     2,    88,
  206.    102,    75,    73,    55,    74,    87,    76,     2,     2,     2,
  207.      2,     2,     2,     2,     2,     2,     2,    60,    56,    69,
  208.     58,    70,    59,     2,     2,     2,     2,     2,     2,     2,
  209.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  210.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  211.     89,     2,   105,    64,     2,     2,     2,     2,     2,     2,
  212.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  213.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  214.      2,     2,    54,    63,   103,    83,     2,     2,     2,     2,
  215.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  216.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  217.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  218.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  219.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  220.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  221.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  222.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  223.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  224.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  225.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  226.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  227.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  228.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  229.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  230.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  231.     36,    37,    38,    39,    40,    41,    42,    43,    44,    45,
  232.     46,    47,    48,    49,    50,    51,    52,    53,    57,    61,
  233.     62,    66,    67,    68,    71,    72,    78,    79,    80,    81,
  234.     82,    84,    85,    86,    90,    91,    92,    93,    94,    95,
  235.     96,    97,    98,    99,   100,   101
  236. };
  237.  
  238. #if YYDEBUG != 0
  239. static const short yyprhs[] = {     0,
  240.      0,     1,     3,     4,     7,    10,    11,    12,    14,    16,
  241.     17,    20,    22,    24,    26,    28,    34,    39,    43,    48,
  242.     53,    55,    56,    62,    64,    68,    70,    73,    75,    79,
  243.     81,    85,    87,    91,    92,    98,    99,   105,   106,   112,
  244.    113,   119,   123,   127,   134,   142,   147,   151,   155,   157,
  245.    159,   161,   163,   165,   168,   172,   176,   180,   184,   187,
  246.    190,   193,   196,   199,   201,   205,   210,   214,   220,   225,
  247.    229,   233,   236,   240,   244,   247,   249,   256,   261,   265,
  248.    269,   272,   275,   277,   281,   286,   289,   293,   294,   295,
  249.    297,   301,   304,   308,   310,   315,   318,   323,   326,   331,
  250.    334,   336,   338,   340,   342,   344,   346,   348,   350,   354,
  251.    358,   363,   368,   372,   377,   381,   386,   387,   389,   393,
  252.    395,   397,   398,   405,   406,   408,   409,   412,   414,   416,
  253.    418,   420,   422,   424,   426,   428,   432,   434,   438,   439,
  254.    441,   443,   444,   453,   455,   458,   463,   468,   470,   474,
  255.    478,   482,   486,   488,   490,   492,   493,   497,   500,   503,
  256.    506,   509,   512,   515,   520,   523,   528,   531,   535,   539,
  257.    544,   549,   555,   561,   568,   571,   576,   582,   586,   590,
  258.    594,   596,   600,   603,   607,   612,   614,   617,   623,   625,
  259.    630,   635,   640,   642,   646,   650,   654,   658,   662,   666,
  260.    670,   674,   678,   682,   686,   690,   694,   698,   702,   706,
  261.    710,   714,   718,   724,   728,   732,   734,   737,   741,   743,
  262.    745,   747,   749,   751,   753,   755,   758,   761,   763,   765,
  263.    767,   769,   771,   773,   775,   779,   783,   784,   789,   790,
  264.    797,   800,   805,   808,   811,   813,   818,   820,   828,   836,
  265.    844,   852,   857,   862,   865,   868,   870,   875,   878,   881,
  266.    884,   890,   894,   900,   904,   909,   916,   918,   921,   923,
  267.    926,   928,   930,   932,   935,   936,   939,   942,   946,   950,
  268.    954,   958,   962,   965,   968,   970,   972,   974,   977,   980,
  269.    983,   986,   988,   990,   992,   994,   997,  1000,  1004,  1008,
  270.   1013,  1015,  1018,  1021,  1023,  1025,  1028,  1031,  1033,  1036,
  271.   1039,  1043,  1045,  1048,  1050,  1052,  1054,  1059,  1064,  1069,
  272.   1074,  1076,  1078,  1080,  1082,  1086,  1088,  1092,  1094,  1098,
  273.   1099,  1104,  1105,  1113,  1118,  1119,  1127,  1132,  1133,  1141,
  274.   1146,  1147,  1155,  1160,  1161,  1163,  1165,  1168,  1175,  1177,
  275.   1181,  1182,  1184,  1189,  1196,  1201,  1203,  1205,  1207,  1209,
  276.   1211,  1215,  1217,  1220,  1224,  1229,  1231,  1233,  1237,  1242,
  277.   1249,  1253,  1259,  1260,  1268,  1273,  1274,  1281,  1285,  1288,
  278.   1291,  1296,  1298,  1299,  1301,  1302,  1304,  1306,  1309,  1312,
  279.   1315,  1318,  1322,  1325,  1328,  1331,  1335,  1339,  1341,  1344,
  280.   1345,  1346,  1350,  1354,  1357,  1359,  1361,  1362,  1364,  1367,
  281.   1369,  1373,  1375,  1378,  1380,  1385,  1390,  1392,  1394,  1397,
  282.   1400,  1402,  1403,  1405,  1410,  1414,  1416,  1419,  1422,  1425,
  283.   1428,  1431,  1434,  1437,  1440,  1445,  1448,  1450,  1456,  1460,
  284.   1461,  1463,  1467,  1468,  1470,  1474,  1476,  1478,  1480,  1482,
  285.   1487,  1494,  1499,  1504,  1511,  1516,  1520,  1525,  1532,  1537,
  286.   1542,  1549,  1554,  1558,  1560,  1564,  1566,  1570,  1573,  1575,
  287.   1582,  1583,  1586,  1588,  1591,  1592,  1595,  1599,  1603,  1606,
  288.   1609,  1613,  1615,  1617,  1619,  1622,  1628,  1634,  1638,  1644,
  289.   1649,  1653,  1657,  1660,  1662,  1666,  1670,  1673,  1676,  1680,
  290.   1682,  1686,  1690,  1693,  1696,  1700,  1702,  1708,  1714,  1718,
  291.   1724,  1728,  1732,  1737,  1741,  1744,  1747,  1749,  1752,  1757,
  292.   1762,  1765,  1767,  1769,  1771,  1774,  1777,  1780,  1782,  1785,
  293.   1787,  1790,  1793,  1797,  1799,  1803,  1806,  1810,  1813,  1816,
  294.   1820,  1822,  1826,  1831,  1835,  1838,  1841,  1843,  1847,  1850,
  295.   1853,  1855,  1858,  1862,  1864,  1868,  1870,  1876,  1880,  1885,
  296.   1889,  1894,  1897,  1900,  1904,  1907,  1909,  1911,  1914,  1917,
  297.   1920,  1921,  1922,  1924,  1926,  1929,  1933,  1935,  1938,  1942,
  298.   1948,  1955,  1961,  1962,  1963,  1970,  1972,  1975,  1977,  1979,
  299.   1981,  1984,  1985,  1990,  1992,  1993,  1994,  2001,  2002,  2003,
  300.   2011,  2012,  2013,  2014,  2025,  2026,  2027,  2028,  2039,  2040,
  301.   2048,  2049,  2055,  2056,  2064,  2065,  2070,  2073,  2076,  2079,
  302.   2083,  2090,  2099,  2110,  2123,  2128,  2132,  2135,  2138,  2140,
  303.   2142,  2143,  2144,  2152,  2154,  2157,  2160,  2161,  2162,  2168,
  304.   2170,  2172,  2176,  2180,  2183,  2186,  2189,  2193,  2198,  2203,
  305.   2207,  2212,  2219,  2226,  2227,  2229,  2230,  2232,  2234,  2235,
  306.   2237,  2239,  2243,  2248,  2250,  2254,  2255,  2257,  2259,  2261,
  307.   2264,  2267,  2270,  2272,  2274,  2277,  2280,  2283,  2286,  2288,
  308.   2292,  2295,  2298,  2303,  2306,  2309,  2312,  2315,  2318,  2321,
  309.   2323,  2326,  2328,  2332,  2334,  2336,  2337,  2338,  2340,  2341,
  310.   2346,  2348,  2350,  2354,  2355,  2359,  2363,  2367,  2369,  2372,
  311.   2375,  2378,  2381,  2384,  2387,  2390,  2393,  2396,  2399,  2402,
  312.   2405,  2408,  2411,  2414,  2417,  2420,  2423,  2426,  2429,  2432,
  313.   2435,  2438,  2442,  2445,  2448,  2451,  2454,  2458,  2461,  2464,
  314.   2469,  2474,  2478
  315. };
  316.  
  317. static const short yyrhs[] = {    -1,
  318.    107,     0,     0,   108,   112,     0,   107,   112,     0,     0,
  319.      0,    25,     0,    26,     0,     0,   113,   114,     0,   130,
  320.      0,   129,     0,   123,     0,   121,     0,   111,    88,   180,
  321.    102,    56,     0,   115,    54,   107,   103,     0,   115,    54,
  322.    103,     0,   115,   109,   130,   110,     0,   115,   109,   129,
  323.    110,     0,    95,     0,     0,    45,    69,   117,   118,    70,
  324.      0,   120,     0,   118,    55,   120,     0,   221,     0,   221,
  325.    139,     0,   119,     0,   119,    58,   193,     0,   328,     0,
  326.     39,   122,    56,     0,     3,     0,   122,    55,     3,     0,
  327.      0,   116,   223,    54,   124,    56,     0,     0,   116,   224,
  328.     54,   125,    56,     0,     0,   116,   223,    60,   126,    56,
  329.      0,     0,   116,   224,    60,   127,    56,     0,   116,   223,
  330.     56,     0,   116,   224,    56,     0,   116,   259,   332,   198,
  331.    207,   128,     0,   116,   187,   184,   332,   198,   207,   128,
  332.      0,   116,   190,   259,   128,     0,   116,     1,   103,     0,
  333.    116,     1,    56,     0,    54,     0,    60,     0,    56,     0,
  334.     58,     0,    23,     0,   197,    56,     0,   190,   196,    56,
  335.      0,   190,   259,    56,     0,   187,   195,    56,     0,   187,
  336.    184,    56,     0,   190,    56,     0,   142,    56,     0,   187,
  337.     56,     0,     1,    56,     0,     1,   103,     0,    56,     0,
  338.    131,   135,   283,     0,   131,   134,   135,   283,     0,   131,
  339.    181,   283,     0,   131,   134,    56,   181,   283,     0,   131,
  340.    134,   181,   283,     0,   187,   184,     1,     0,   190,   259,
  341.      1,     0,   259,     1,     0,   187,   184,   332,     0,   190,
  342.    259,   332,     0,   259,   332,     0,    94,     0,   187,    88,
  343.    323,   102,   251,   332,     0,   187,    44,   251,   332,     0,
  344.    187,   184,   332,     0,   190,   259,   332,     0,   259,   332,
  345.      0,    23,     3,     0,   133,     0,   133,    58,   214,     0,
  346.    133,    88,   161,   102,     0,   133,    44,     0,    60,   136,
  347.    137,     0,     0,     0,   138,     0,   137,    55,   138,     0,
  348.    137,     1,     0,    88,   161,   102,     0,    44,     0,   140,
  349.     88,   161,   102,     0,   140,    44,     0,   269,    88,   161,
  350.    102,     0,   269,    44,     0,   263,    88,   161,   102,     0,
  351.    263,    44,     0,     3,     0,     4,     0,    53,     0,     3,
  352.      0,    53,     0,    99,     0,    98,     0,   100,     0,    45,
  353.    222,   150,     0,    45,   187,   184,     0,     5,    45,   222,
  354.    150,     0,     5,    45,   187,   184,     0,   144,   145,   150,
  355.      0,    53,    69,   146,    70,     0,    53,    69,    70,     0,
  356.      4,    69,   146,    70,     0,     0,   147,     0,   146,    55,
  357.    147,     0,   186,     0,   169,     0,     0,    97,   230,   149,
  358.    235,   236,   103,     0,     0,   148,     0,     0,   148,   151,
  359.      0,    74,     0,    73,     0,    81,     0,    82,     0,   104,
  360.      0,   160,     0,   169,     0,    44,     0,    88,   153,   102,
  361.      0,    44,     0,    88,   157,   102,     0,     0,   157,     0,
  362.      1,     0,     0,   312,   184,   332,   198,   207,    58,   158,
  363.    214,     0,   153,     0,    54,   103,     0,    54,   280,   277,
  364.    103,     0,    54,   280,     1,   103,     0,   290,     0,   169,
  365.     55,   169,     0,   169,    55,     1,     0,   160,    55,   169,
  366.      0,   160,    55,     1,     0,   169,     0,   160,     0,   174,
  367.      0,     0,    33,   163,   167,     0,    75,   167,     0,    65,
  368.    167,     0,    83,   167,     0,   152,   167,     0,    62,   139,
  369.      0,    11,   162,     0,    11,    88,   186,   102,     0,    28,
  370.    162,     0,    28,    88,   186,   102,     0,   177,   250,     0,
  371.    177,   250,   165,     0,   177,   164,   250,     0,   177,   164,
  372.    250,   165,     0,   177,    88,   186,   102,     0,   177,    88,
  373.    186,   102,   165,     0,   177,   164,    88,   186,   102,     0,
  374.    177,   164,    88,   186,   102,   165,     0,   178,   167,     0,
  375.    178,    89,   105,   167,     0,   178,    89,   153,   105,   167,
  376.      0,    88,   161,   102,     0,    54,   161,   103,     0,    88,
  377.    161,   102,     0,    44,     0,    88,   193,   102,     0,    58,
  378.    214,     0,    88,   186,   102,     0,   166,    88,   186,   102,
  379.      0,   168,     0,   166,   168,     0,   166,    54,   215,   219,
  380.    103,     0,   162,     0,    29,    88,   153,   102,     0,    30,
  381.     88,   153,   102,     0,    30,    88,     4,   102,     0,   167,
  382.      0,   169,    78,   169,     0,   169,    79,   169,     0,   169,
  383.     73,   169,     0,   169,    74,   169,     0,   169,    75,   169,
  384.      0,   169,    76,   169,     0,   169,    77,   169,     0,   169,
  385.     71,   169,     0,   169,    72,   169,     0,   169,    68,   169,
  386.      0,   169,    69,   169,     0,   169,    70,   169,     0,   169,
  387.     67,   169,     0,   169,    66,   169,     0,   169,    65,   169,
  388.      0,   169,    63,   169,     0,   169,    64,   169,     0,   169,
  389.     62,   169,     0,   169,    61,   169,     0,   169,    59,   318,
  390.     60,   169,     0,   169,    58,   169,     0,   169,    57,   169,
  391.      0,    92,     0,    92,   169,     0,    83,   330,   139,     0,
  392.    337,     0,     3,     0,    53,     0,   170,     0,     4,     0,
  393.    170,     0,   263,     0,    75,   172,     0,    65,   172,     0,
  394.    261,     0,   170,     0,   263,     0,   170,     0,     8,     0,
  395.    179,     0,   180,     0,    88,   153,   102,     0,    88,     1,
  396.    102,     0,     0,    88,   175,   284,   102,     0,     0,   174,
  397.     88,   161,   102,   176,   151,     0,   174,    44,     0,   174,
  398.     89,   153,   105,     0,   174,    81,     0,   174,    82,     0,
  399.     40,     0,     7,    88,   161,   102,     0,   265,     0,    47,
  400.     69,   186,    70,    88,   153,   102,     0,    48,    69,   186,
  401.     70,    88,   153,   102,     0,    49,    69,   186,    70,    88,
  402.    153,   102,     0,    50,    69,   186,    70,    88,   153,   102,
  403.      0,    46,    88,   153,   102,     0,    46,    88,   186,   102,
  404.      0,   272,     3,     0,   272,   337,     0,   264,     0,   264,
  405.     88,   161,   102,     0,   264,    44,     0,   182,   171,     0,
  406.    182,   262,     0,   182,   171,    88,   161,   102,     0,   182,
  407.    171,    44,     0,   182,   262,    88,   161,   102,     0,   182,
  408.    262,    44,     0,   182,    83,     6,    44,     0,   182,     6,
  409.     51,    83,     6,    44,     0,    38,     0,   272,    38,     0,
  410.     37,     0,   272,   178,     0,    42,     0,    43,     0,     9,
  411.      0,   180,     9,     0,     0,   174,    87,     0,   174,    86,
  412.      0,   193,   184,    56,     0,   187,   184,    56,     0,   193,
  413.    195,    56,     0,   187,   195,    56,     0,   190,   196,    56,
  414.      0,   187,    56,     0,   190,    56,     0,   255,     0,   259,
  415.      0,    44,     0,   185,    44,     0,   191,   275,     0,   252,
  416.    275,     0,   193,   275,     0,   191,     0,   252,     0,   191,
  417.      0,   188,     0,   190,   193,     0,   193,   189,     0,   190,
  418.    193,   189,     0,   190,   193,   192,     0,   190,   193,   192,
  419.    189,     0,     5,     0,   189,   194,     0,   189,     5,     0,
  420.    252,     0,     5,     0,   190,     7,     0,   190,     5,     0,
  421.    193,     0,   252,   193,     0,   193,   192,     0,   252,   193,
  422.    192,     0,   194,     0,   192,   194,     0,   216,     0,     6,
  423.      0,   269,     0,    27,    88,   153,   102,     0,    27,    88,
  424.    186,   102,     0,    31,    88,   153,   102,     0,    31,    88,
  425.    186,   102,     0,     6,     0,     7,     0,   216,     0,   199,
  426.      0,   195,    55,   201,     0,   203,     0,   196,    55,   201,
  427.      0,   205,     0,   197,    55,   201,     0,     0,   111,    88,
  428.    180,   102,     0,     0,   184,   332,   198,   207,    58,   200,
  429.    214,     0,   184,   332,   198,   207,     0,     0,   184,   332,
  430.    198,   207,    58,   202,   214,     0,   184,   332,   198,   207,
  431.      0,     0,   259,   332,   198,   207,    58,   204,   214,     0,
  432.    259,   332,   198,   207,     0,     0,   259,   332,   198,   207,
  433.     58,   206,   214,     0,   259,   332,   198,   207,     0,     0,
  434.    208,     0,   209,     0,   208,   209,     0,    32,    88,    88,
  435.    210,   102,   102,     0,   211,     0,   210,    55,   211,     0,
  436.      0,   212,     0,   212,    88,     3,   102,     0,   212,    88,
  437.      3,    55,   161,   102,     0,   212,    88,   161,   102,     0,
  438.    139,     0,     5,     0,     6,     0,     7,     0,   139,     0,
  439.    213,    55,   139,     0,   169,     0,    54,   103,     0,    54,
  440.    215,   103,     0,    54,   215,    55,   103,     0,     1,     0,
  441.    214,     0,   215,    55,   214,     0,    89,   169,   105,   214,
  442.      0,   215,    55,    19,   169,    60,   214,     0,   139,    60,
  443.    214,     0,   215,    55,   139,    60,   214,     0,     0,    12,
  444.    139,    54,   217,   248,   220,   103,     0,    12,   139,    54,
  445.    103,     0,     0,    12,    54,   218,   248,   220,   103,     0,
  446.     12,    54,   103,     0,    12,   139,     0,    12,   270,     0,
  447.    229,   235,   236,   103,     0,   229,     0,     0,    55,     0,
  448.      0,    55,     0,    35,     0,   221,     5,     0,   221,     6,
  449.      0,   221,     7,     0,   221,    35,     0,   221,   144,    56,
  450.      0,   221,   139,     0,   221,   270,     0,   221,   143,     0,
  451.    221,   144,    54,     0,   221,   144,    60,     0,   222,     0,
  452.    221,   141,     0,     0,     0,   223,   225,   230,     0,   224,
  453.    226,   230,     0,   221,    54,     0,   228,     0,   227,     0,
  454.      0,    60,     0,    60,   231,     0,   232,     0,   231,    55,
  455.    232,     0,   233,     0,   234,   233,     0,   269,     0,    31,
  456.     88,   153,   102,     0,    31,    88,   186,   102,     0,    36,
  457.      0,     5,     0,   234,    36,     0,   234,     5,     0,    54,
  458.      0,     0,   237,     0,   236,    36,    60,   237,     0,   236,
  459.     36,    60,     0,   238,     0,   237,   238,     0,   237,    56,
  460.      0,   239,    56,     0,   239,   103,     0,   132,    60,     0,
  461.    132,    54,     0,   187,   240,     0,   190,   241,     0,   259,
  462.    332,   198,   207,     0,    60,   169,     0,     1,     0,   187,
  463.     88,   323,   102,   251,     0,   187,    44,   251,     0,     0,
  464.    242,     0,   240,    55,   243,     0,     0,   245,     0,   241,
  465.     55,   247,     0,   244,     0,   245,     0,   246,     0,   247,
  466.      0,   255,   332,   198,   207,     0,   255,   332,   198,   207,
  467.     58,   214,     0,     4,    60,   169,   207,     0,   259,   332,
  468.    198,   207,     0,   259,   332,   198,   207,    58,   214,     0,
  469.      3,    60,   169,   207,     0,    60,   169,   207,     0,   255,
  470.    332,   198,   207,     0,   255,   332,   198,   207,    58,   214,
  471.      0,     4,    60,   169,   207,     0,   259,   332,   198,   207,
  472.      0,   259,   332,   198,   207,    58,   214,     0,     3,    60,
  473.    169,   207,     0,    60,   169,   207,     0,   249,     0,   248,
  474.     55,   249,     0,   139,     0,   139,    58,   169,     0,   312,
  475.    273,     0,   312,     0,    88,   186,   102,    89,   153,   105,
  476.      0,     0,   251,     7,     0,     7,     0,   252,     7,     0,
  477.      0,   254,   153,     0,    75,   252,   255,     0,    65,   252,
  478.    255,     0,    75,   255,     0,    65,   255,     0,   271,   251,
  479.    255,     0,   258,     0,   266,     0,   257,     0,   267,   266,
  480.      0,   258,    88,   161,   102,   251,     0,   258,    88,   323,
  481.    102,   251,     0,   258,    44,   251,     0,   258,    88,     1,
  482.    102,   251,     0,   258,    89,   253,   105,     0,   258,    89,
  483.    105,     0,    88,   255,   102,     0,   267,   266,     0,   266,
  484.      0,    75,   252,   259,     0,    65,   252,   259,     0,    75,
  485.    259,     0,    65,   259,     0,   271,   251,   259,     0,   173,
  486.      0,    75,   252,   259,     0,    65,   252,   259,     0,    75,
  487.    260,     0,    65,   260,     0,   271,   251,   259,     0,   261,
  488.      0,   173,    88,   161,   102,   251,     0,   173,    88,   323,
  489.    102,   251,     0,   173,    44,   251,     0,   173,    88,     1,
  490.    102,   251,     0,    88,   172,   102,     0,    88,   260,   102,
  491.      0,   173,    89,   253,   105,     0,   173,    89,   105,     0,
  492.    267,   171,     0,   267,   170,     0,   263,     0,   272,   263,
  493.      0,   193,    88,   161,   102,     0,   193,    88,   172,   102,
  494.      0,   193,   185,     0,     4,     0,   143,     0,   268,     0,
  495.    267,   268,     0,     4,    51,     0,   143,    51,     0,   256,
  496.      0,   272,   256,     0,   257,     0,   272,   256,     0,   267,
  497.     75,     0,   272,   267,    75,     0,    51,     0,    75,   251,
  498.    273,     0,    75,   251,     0,    65,   251,   273,     0,    65,
  499.    251,     0,   271,   251,     0,   271,   251,   273,     0,   274,
  500.      0,    89,   153,   105,     0,   274,    89,   253,   105,     0,
  501.     75,   252,   275,     0,    75,   275,     0,    75,   252,     0,
  502.     75,     0,    65,   252,   275,     0,    65,   275,     0,    65,
  503.    252,     0,    65,     0,   271,   251,     0,   271,   251,   275,
  504.      0,   276,     0,    88,   275,   102,     0,    85,     0,   276,
  505.     88,   323,   102,   251,     0,   276,    44,   251,     0,   276,
  506.     89,   253,   105,     0,   276,    89,   105,     0,    88,   324,
  507.    102,   251,     0,   166,   251,     0,   185,   251,     0,    89,
  508.    253,   105,     0,    89,   105,     0,   289,     0,   278,     0,
  509.    277,   289,     0,   277,   278,     0,     1,    56,     0,     0,
  510.      0,   281,     0,   282,     0,   281,   282,     0,    34,   213,
  511.     56,     0,   284,     0,     1,   284,     0,    54,   279,   103,
  512.      0,    54,   279,   280,   277,   103,     0,    54,   279,   280,
  513.    277,     1,   103,     0,    54,   279,   280,     1,   103,     0,
  514.      0,     0,    13,   286,   279,   155,   287,   288,     0,   284,
  515.      0,   279,   290,     0,   284,     0,   290,     0,   183,     0,
  516.    153,    56,     0,     0,   285,    14,   291,   288,     0,   285,
  517.      0,     0,     0,    15,   292,   279,   155,   293,   159,     0,
  518.      0,     0,    16,   294,   288,    15,   295,   154,    56,     0,
  519.      0,     0,     0,   315,   296,   279,   156,    56,   297,   318,
  520.    102,   298,   159,     0,     0,     0,     0,   316,   299,   279,
  521.    156,    56,   300,   318,   102,   301,   159,     0,     0,    18,
  522.    279,    88,   157,   102,   302,   288,     0,     0,    19,   169,
  523.     60,   303,   289,     0,     0,    19,   169,    10,   169,    60,
  524.    304,   289,     0,     0,    20,    60,   305,   289,     0,    21,
  525.     56,     0,    22,    56,     0,    23,    56,     0,    23,   153,
  526.     56,     0,   111,   317,    88,   180,   102,    56,     0,   111,
  527.    317,    88,   180,    60,   319,   102,    56,     0,   111,   317,
  528.     88,   180,    60,   319,    60,   319,   102,    56,     0,   111,
  529.    317,    88,   180,    60,   319,    60,   319,    60,   322,   102,
  530.     56,     0,    24,    75,   153,    56,     0,    24,   139,    56,
  531.      0,   314,   289,     0,   314,   103,     0,    56,     0,   306,
  532.      0,     0,     0,    90,    54,   279,   307,   309,   308,   310,
  533.      0,   103,     0,   277,   103,     0,     1,   103,     0,     0,
  534.      0,   310,    91,   311,   313,   284,     0,   191,     0,   252,
  535.      0,    88,    10,   102,     0,    88,   329,   102,     0,     3,
  536.     60,     0,    53,    60,     0,     4,    60,     0,    17,    88,
  537.     56,     0,    17,    88,   153,    56,     0,    17,    88,    54,
  538.    103,     0,    17,    88,   183,     0,    17,    88,     1,    56,
  539.      0,    17,    88,    54,   279,   277,   103,     0,    17,    88,
  540.     54,   279,     1,   103,     0,     0,     7,     0,     0,   153,
  541.      0,     1,     0,     0,   320,     0,   321,     0,   320,    55,
  542.    321,     0,     9,    88,   153,   102,     0,     9,     0,   322,
  543.     55,     9,     0,     0,   324,     0,   186,     0,   325,     0,
  544.    326,    10,     0,   325,    10,     0,   186,    10,     0,    10,
  545.      0,    93,     0,   325,    93,     0,   186,    93,     0,   325,
  546.     60,     0,   186,    60,     0,   327,     0,   329,    58,   214,
  547.      0,   326,   328,     0,   326,   331,     0,   326,   331,    58,
  548.    214,     0,   325,    55,     0,   186,    55,     0,   188,   184,
  549.      0,   191,   184,     0,   193,   184,     0,   188,   275,     0,
  550.    188,     0,   190,   259,     0,   329,     0,   329,    58,   214,
  551.      0,   327,     0,   186,     0,     0,     0,   259,     0,     0,
  552.     92,    88,   334,   102,     0,   186,     0,   333,     0,   334,
  553.     55,   333,     0,     0,    75,   251,   335,     0,    65,   251,
  554.    335,     0,   271,   251,   335,     0,    41,     0,   336,    75,
  555.      0,   336,    76,     0,   336,    77,     0,   336,    73,     0,
  556.    336,    74,     0,   336,    65,     0,   336,    63,     0,   336,
  557.     64,     0,   336,    83,     0,   336,    55,     0,   336,    68,
  558.      0,   336,    69,     0,   336,    70,     0,   336,    67,     0,
  559.    336,    57,     0,   336,    58,     0,   336,    71,     0,   336,
  560.     72,     0,   336,    81,     0,   336,    82,     0,   336,    62,
  561.      0,   336,    61,     0,   336,   104,     0,   336,    59,    60,
  562.      0,   336,    66,     0,   336,    86,     0,   336,    78,     0,
  563.    336,    44,     0,   336,    89,   105,     0,   336,    38,     0,
  564.    336,    37,     0,   336,    38,    89,   105,     0,   336,    37,
  565.     89,   105,     0,   336,   312,   335,     0,   336,     1,     0
  566. };
  567.  
  568. #endif
  569.  
  570. #if YYDEBUG != 0
  571. static const short yyrline[] = { 0,
  572.    292,   293,   307,   309,   310,   314,   319,   323,   325,   328,
  573.    331,   335,   338,   340,   342,   343,   346,   348,   350,   353,
  574.    358,   363,   366,   370,   373,   377,   387,   391,   401,   403,
  575.    406,   411,   413,   417,   423,   423,   426,   426,   429,   429,
  576.    444,   444,   449,   454,   471,   494,   504,   505,   508,   509,
  577.    510,   511,   512,   515,   518,   521,   526,   531,   537,   539,
  578.    540,   559,   560,   561,   564,   578,   591,   594,   597,   600,
  579.    602,   604,   608,   614,   619,   624,   631,   642,   649,   651,
  580.    653,   657,   665,   667,   669,   671,   675,   688,   711,   714,
  581.    716,   717,   720,   726,   732,   734,   736,   738,   741,   745,
  582.    751,   753,   754,   757,   759,   762,   764,   765,   768,   771,
  583.    773,   775,   779,   784,   787,   789,   793,   798,   801,   805,
  584.    808,   811,   845,   861,   864,   868,   871,   875,   877,   879,
  585.    881,   883,   887,   889,   892,   897,   902,   907,   912,   915,
  586.    918,   922,   941,   948,   951,   954,   956,   958,   962,   966,
  587.    969,   971,   975,   978,   981,   990,   993,   996,   998,  1000,
  588.   1002,  1009,  1020,  1040,  1042,  1044,  1049,  1051,  1053,  1055,
  589.   1057,  1060,  1062,  1064,  1067,  1069,  1073,  1079,  1082,  1089,
  590.   1092,  1094,  1102,  1111,  1117,  1123,  1125,  1127,  1140,  1142,
  591.   1144,  1146,  1163,  1166,  1168,  1170,  1172,  1174,  1176,  1178,
  592.   1180,  1182,  1184,  1186,  1188,  1190,  1192,  1194,  1196,  1198,
  593.   1200,  1202,  1204,  1206,  1208,  1215,  1217,  1234,  1237,  1238,
  594.   1239,  1242,  1244,  1247,  1249,  1250,  1252,  1256,  1258,  1259,
  595.   1264,  1284,  1285,  1286,  1288,  1290,  1292,  1300,  1321,  1326,
  596.   1333,  1340,  1342,  1351,  1356,  1379,  1423,  1424,  1427,  1430,
  597.   1433,  1436,  1438,  1441,  1480,  1487,  1489,  1491,  1493,  1495,
  598.   1497,  1512,  1527,  1538,  1550,  1557,  1606,  1608,  1612,  1614,
  599.   1618,  1621,  1626,  1628,  1632,  1645,  1646,  1652,  1663,  1671,
  600.   1677,  1682,  1684,  1689,  1696,  1698,  1702,  1706,  1712,  1715,
  601.   1717,  1719,  1721,  1729,  1731,  1733,  1736,  1738,  1740,  1742,
  602.   1747,  1753,  1755,  1766,  1769,  1771,  1774,  1789,  1792,  1794,
  603.   1796,  1800,  1803,  1811,  1812,  1813,  1814,  1818,  1822,  1836,
  604.   1854,  1855,  1856,  1859,  1861,  1864,  1866,  1869,  1871,  1874,
  605.   1877,  1881,  1898,  1900,  1918,  1924,  1925,  1931,  1939,  1941,
  606.   1950,  1958,  1960,  1971,  1974,  1978,  1981,  1985,  1990,  1993,
  607.   1997,  2000,  2002,  2004,  2006,  2013,  2015,  2016,  2017,  2021,
  608.   2024,  2028,  2030,  2033,  2036,  2039,  2045,  2048,  2051,  2053,
  609.   2055,  2057,  2061,  2065,  2069,  2072,  2075,  2079,  2082,  2084,
  610.   2088,  2139,  2154,  2156,  2159,  2161,  2165,  2166,  2168,  2170,
  611.   2172,  2176,  2185,  2188,  2190,  2192,  2198,  2200,  2203,  2208,
  612.   2211,  2214,  2223,  2234,  2239,  2239,  2241,  2244,  2246,  2250,
  613.   2252,  2256,  2284,  2315,  2317,  2339,  2363,  2365,  2369,  2395,
  614.   2404,  2466,  2469,  2476,  2487,  2496,  2500,  2513,  2516,  2518,
  615.   2523,  2525,  2529,  2537,  2541,  2544,  2546,  2557,  2562,  2570,
  616.   2573,  2574,  2585,  2588,  2589,  2600,  2602,  2605,  2607,  2610,
  617.   2615,  2619,  2625,  2630,  2634,  2638,  2644,  2648,  2651,  2656,
  618.   2660,  2663,  2666,  2675,  2677,  2681,  2684,  2689,  2692,  2696,
  619.   2705,  2708,  2712,  2715,  2723,  2725,  2730,  2733,  2735,  2737,
  620.   2739,  2743,  2746,  2760,  2763,  2768,  2771,  2773,  2775,  2777,
  621.   2779,  2781,  2783,  2787,  2793,  2796,  2798,  2800,  2802,  2806,
  622.   2809,  2812,  2814,  2816,  2818,  2822,  2825,  2828,  2830,  2832,
  623.   2834,  2836,  2838,  2840,  2844,  2850,  2856,  2858,  2862,  2865,
  624.   2867,  2871,  2873,  2876,  2878,  2884,  2887,  2901,  2903,  2907,
  625.   2909,  2913,  2916,  2922,  2928,  2931,  2933,  2935,  2937,  2941,
  626.   2945,  2949,  2952,  2957,  2960,  2962,  2964,  2966,  2968,  2970,
  627.   2972,  2974,  2978,  2982,  2986,  2990,  2991,  2993,  2995,  2997,
  628.   2999,  3001,  3003,  3005,  3007,  3015,  3017,  3018,  3019,  3022,
  629.   3029,  3039,  3041,  3046,  3048,  3051,  3065,  3068,  3071,  3075,
  630.   3079,  3083,  3089,  3092,  3096,  3098,  3101,  3107,  3110,  3113,
  631.   3116,  3129,  3132,  3137,  3143,  3148,  3151,  3156,  3160,  3163,
  632.   3169,  3174,  3177,  3182,  3191,  3195,  3198,  3204,  3214,  3221,
  633.   3227,  3252,  3252,  3284,  3284,  3300,  3300,  3304,  3308,  3311,
  634.   3316,  3323,  3332,  3341,  3350,  3353,  3359,  3361,  3365,  3367,
  635.   3370,  3374,  3377,  3380,  3388,  3392,  3398,  3400,  3402,  3406,
  636.   3408,  3411,  3424,  3429,  3437,  3439,  3443,  3446,  3448,  3452,
  637.   3455,  3457,  3459,  3465,  3469,  3473,  3476,  3477,  3483,  3485,
  638.   3488,  3490,  3494,  3499,  3502,  3512,  3519,  3520,  3527,  3533,
  639.   3538,  3542,  3547,  3554,  3558,  3562,  3567,  3578,  3592,  3595,
  640.   3597,  3599,  3601,  3605,  3607,  3615,  3632,  3634,  3636,  3638,
  641.   3640,  3644,  3647,  3651,  3653,  3656,  3678,  3684,  3691,  3694,
  642.   3698,  3703,  3705,  3712,  3715,  3717,  3719,  3725,  3729,  3732,
  643.   3734,  3736,  3738,  3740,  3742,  3744,  3746,  3748,  3750,  3752,
  644.   3754,  3756,  3758,  3760,  3762,  3764,  3766,  3768,  3770,  3772,
  645.   3774,  3776,  3778,  3780,  3782,  3784,  3786,  3788,  3790,  3792,
  646.   3794,  3797,  3799
  647. };
  648.  
  649. static const char * const yytname[] = {   "$","error","$undefined.","IDENTIFIER",
  650. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  651. "ENUM","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT","BREAK","CONTINUE",
  652. "RETURN","GOTO","ASM_KEYWORD","GCC_ASM_KEYWORD","TYPEOF","ALIGNOF","HEADOF",
  653. "CLASSOF","SIGOF","ATTRIBUTE","EXTENSION","LABEL","AGGR","VISSPEC","DELETE",
  654. "NEW","OVERLOAD","THIS","OPERATOR","CXX_TRUE","CXX_FALSE","LEFT_RIGHT","TEMPLATE",
  655. "TYPEID","DYNAMIC_CAST","STATIC_CAST","REINTERPRET_CAST","CONST_CAST","SCOPE",
  656. "EMPTY","PTYPENAME","'{'","','","';'","ASSIGN","'='","'?'","':'","OROR","ANDAND",
  657. "'|'","'^'","'&'","MIN_MAX","EQCOMPARE","ARITHCOMPARE","'<'","'>'","LSHIFT",
  658. "RSHIFT","'+'","'-'","'*'","'/'","'%'","POINTSAT_STAR","DOT_STAR","UNARY","PLUSPLUS",
  659. "MINUSMINUS","'~'","HYPERUNARY","PAREN_STAR_PAREN","POINTSAT","'.'","'('","'['",
  660. "TRY","CATCH","THROW","TYPENAME_ELLIPSIS","PRE_PARSED_FUNCTION_DECL","EXTERN_LANG_STRING",
  661. "ALL","PRE_PARSED_CLASS_DECL","TYPENAME_DEFN","IDENTIFIER_DEFN","PTYPENAME_DEFN",
  662. "END_OF_SAVED_INPUT","')'","'}'","'!'","']'","program","extdefs","@1",".hush_warning",
  663. ".warning_ok","asm_keyword","lang_extdef","@2","extdef","extern_lang_string",
  664. "template_header","@3","template_parm_list","template_type_parm","template_parm",
  665. "overloaddef","ov_identifiers","template_def","@4","@5","@6","@7","fn_tmpl_end",
  666. "datadef","fndef","fn.def1","fn.def2","return_id","return_init","base_init",
  667. ".set_base_init","member_init_list","member_init","identifier","notype_identifier",
  668. "identifier_defn","explicit_instantiation","template_type","template_type_name",
  669. "tmpl.2","template_arg_list","template_arg","template_instantiate_once","@8",
  670. "template_instantiation","template_instantiate_some","unop","expr","paren_expr_or_null",
  671. "paren_cond_or_null","xcond","condition","@9","already_scoped_stmt","nontrivial_exprlist",
  672. "nonnull_exprlist","unary_expr","@10","new_placement","new_initializer","regcast_or_absdcl",
  673. "cast_expr","sub_cast_expr","expr_no_commas","notype_unqualified_id","unqualified_id",
  674. "expr_or_declarator","direct_notype_declarator","primary","@11","@12","new",
  675. "delete","boolean.literal","string","nodecls","object","decl","declarator","fcast_or_absdcl",
  676. "type_id","typed_declspecs","typed_declspecs1","reserved_declspecs","declmods",
  677. "typed_typespecs","reserved_typespecquals","typespec","typespecqual_reserved",
  678. "initdecls","notype_initdecls","nomods_initdecls","maybeasm","initdcl0","@13",
  679. "initdcl","@14","notype_initdcl0","@15","nomods_initdcl0","@16","maybe_attribute",
  680. "attributes","attribute","attribute_list","attrib","any_word","identifiers_or_typenames",
  681. "init","initlist","structsp","@17","@18","maybecomma","maybecomma_warn","aggr",
  682. "specialization","named_class_head_sans_basetype","named_class_head_sans_basetype_defn",
  683. "do_xref","do_xref_defn","named_class_head","unnamed_class_head","class_head",
  684. "maybe_base_class_list","base_class_list","base_class","base_class.1","base_class_access_list",
  685. "left_curly","opt.component_decl_list","component_decl_list","component_decl",
  686. "component_decl_1","components","notype_components","component_declarator0",
  687. "component_declarator","after_type_component_declarator0","notype_component_declarator0",
  688. "after_type_component_declarator","notype_component_declarator","enumlist","enumerator",
  689. "new_type_id","type_quals","nonempty_type_quals","nonmomentary_expr","@19","after_type_declarator",
  690. "qualified_type_name","nested_type","direct_after_type_declarator","notype_declarator",
  691. "complex_notype_declarator","complex_direct_notype_declarator","qualified_id",
  692. "notype_qualified_id","overqualified_id","functional_cast","type_name","nested_name_specifier",
  693. "nested_name_specifier_1","complete_type_name","complex_type_name","ptr_to_mem",
  694. "global_scope","new_declarator","direct_new_declarator","absdcl","direct_abstract_declarator",
  695. "stmts","errstmt",".pushlevel","maybe_label_decls","label_decls","label_decl",
  696. "compstmt_or_error","compstmt","simple_if","@20","@21","implicitly_scoped_stmt",
  697. "stmt","simple_stmt","@22","@23","@24","@25","@26","@27","@28","@29","@30","@31",
  698. "@32","@33","@34","@35","@36","try_block","@37","@38","ansi_try_stmts","handler_seq",
  699. "@39","type_specifier_seq","handler_args","label_colon","forhead.1","forhead.2",
  700. "maybe_type_qual","xexpr","asm_operands","nonnull_asm_operands","asm_operand",
  701. "asm_clobbers","parmlist","complex_parmlist","parms","parms_comma","named_parm",
  702. "full_parm","parm","see_typename","bad_parm","maybe_raises","ansi_raise_identifier",
  703. "ansi_raise_identifiers","conversion_declarator","operator","operator_name",
  704. ""
  705. };
  706. #endif
  707.  
  708. static const short yyr1[] = {     0,
  709.    106,   106,   108,   107,   107,   109,   110,   111,   111,   113,
  710.    112,   114,   114,   114,   114,   114,   114,   114,   114,   114,
  711.    115,   117,   116,   118,   118,   119,   119,   120,   120,   120,
  712.    121,   122,   122,   124,   123,   125,   123,   126,   123,   127,
  713.    123,   123,   123,   123,   123,   123,   123,   123,   128,   128,
  714.    128,   128,   128,   129,   129,   129,   129,   129,   129,   129,
  715.    129,   129,   129,   129,   130,   130,   130,   130,   130,   130,
  716.    130,   130,   131,   131,   131,   131,   132,   132,   132,   132,
  717.    132,   133,   134,   134,   134,   134,   135,   136,   137,   137,
  718.    137,   137,   138,   138,   138,   138,   138,   138,   138,   138,
  719.    139,   139,   139,   140,   140,   141,   141,   141,   142,   142,
  720.    142,   142,   143,   144,   144,   144,   145,   146,   146,   147,
  721.    147,   149,   148,   150,   150,   151,   151,   152,   152,   152,
  722.    152,   152,   153,   153,   154,   154,   155,   155,   156,   156,
  723.    156,   158,   157,   157,   159,   159,   159,   159,   160,   160,
  724.    160,   160,   161,   161,   162,   163,   162,   162,   162,   162,
  725.    162,   162,   162,   162,   162,   162,   162,   162,   162,   162,
  726.    162,   162,   162,   162,   162,   162,   162,   164,   164,   165,
  727.    165,   165,   165,   166,   166,   167,   167,   167,   168,   168,
  728.    168,   168,   169,   169,   169,   169,   169,   169,   169,   169,
  729.    169,   169,   169,   169,   169,   169,   169,   169,   169,   169,
  730.    169,   169,   169,   169,   169,   169,   169,   170,   170,   170,
  731.    170,   171,   171,   172,   172,   172,   172,   173,   173,   173,
  732.    174,   174,   174,   174,   174,   174,   175,   174,   176,   174,
  733.    174,   174,   174,   174,   174,   174,   174,   174,   174,   174,
  734.    174,   174,   174,   174,   174,   174,   174,   174,   174,   174,
  735.    174,   174,   174,   174,   174,   174,   177,   177,   178,   178,
  736.    179,   179,   180,   180,   181,   182,   182,   183,   183,   183,
  737.    183,   183,   183,   183,   184,   184,   185,   185,   186,   186,
  738.    186,   186,   186,   187,   187,   188,   188,   188,   188,   188,
  739.    189,   189,   189,   190,   190,   190,   190,   191,   191,   191,
  740.    191,   192,   192,   193,   193,   193,   193,   193,   193,   193,
  741.    194,   194,   194,   195,   195,   196,   196,   197,   197,   198,
  742.    198,   200,   199,   199,   202,   201,   201,   204,   203,   203,
  743.    206,   205,   205,   207,   207,   208,   208,   209,   210,   210,
  744.    211,   211,   211,   211,   211,   212,   212,   212,   212,   213,
  745.    213,   214,   214,   214,   214,   214,   215,   215,   215,   215,
  746.    215,   215,   217,   216,   216,   218,   216,   216,   216,   216,
  747.    216,   216,   219,   219,   220,   220,   221,   221,   221,   221,
  748.    221,   222,   223,   223,   223,   223,   223,   223,   224,   225,
  749.    226,   227,   227,   228,   229,   229,   230,   230,   230,   231,
  750.    231,   232,   232,   233,   233,   233,   234,   234,   234,   234,
  751.    235,   236,   236,   236,   236,   237,   237,   237,   238,   238,
  752.    238,   238,   239,   239,   239,   239,   239,   239,   239,   240,
  753.    240,   240,   241,   241,   241,   242,   242,   243,   243,   244,
  754.    244,   244,   245,   245,   245,   245,   246,   246,   246,   247,
  755.    247,   247,   247,   248,   248,   249,   249,   250,   250,   250,
  756.    251,   251,   252,   252,   254,   253,   255,   255,   255,   255,
  757.    255,   255,   256,   256,   257,   258,   258,   258,   258,   258,
  758.    258,   258,   258,   258,   259,   259,   259,   259,   259,   259,
  759.    260,   260,   260,   260,   260,   260,   261,   261,   261,   261,
  760.    261,   261,   261,   261,   262,   263,   264,   264,   265,   265,
  761.    265,   266,   266,   267,   267,   268,   268,   269,   269,   270,
  762.    270,   271,   271,   272,   273,   273,   273,   273,   273,   273,
  763.    273,   274,   274,   275,   275,   275,   275,   275,   275,   275,
  764.    275,   275,   275,   275,   276,   276,   276,   276,   276,   276,
  765.    276,   276,   276,   276,   276,   277,   277,   277,   277,   278,
  766.    279,   280,   280,   281,   281,   282,   283,   283,   284,   284,
  767.    284,   284,   286,   287,   285,   288,   288,   289,   289,   290,
  768.    290,   291,   290,   290,   292,   293,   290,   294,   295,   290,
  769.    296,   297,   298,   290,   299,   300,   301,   290,   302,   290,
  770.    303,   290,   304,   290,   305,   290,   290,   290,   290,   290,
  771.    290,   290,   290,   290,   290,   290,   290,   290,   290,   290,
  772.    307,   308,   306,   309,   309,   309,   310,   311,   310,   312,
  773.    312,   313,   313,   314,   314,   314,   315,   315,   315,   316,
  774.    316,   316,   316,   317,   317,   318,   318,   318,   319,   319,
  775.    320,   320,   321,   322,   322,   323,   323,   323,   324,   324,
  776.    324,   324,   324,   324,   324,   324,   324,   324,   325,   325,
  777.    325,   325,   325,   326,   326,   327,   327,   327,   327,   327,
  778.    327,   328,   328,   329,   329,   330,   331,   331,   332,   332,
  779.    333,   334,   334,   335,   335,   335,   335,   336,   337,   337,
  780.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  781.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  782.    337,   337,   337,   337,   337,   337,   337,   337,   337,   337,
  783.    337,   337,   337
  784. };
  785.  
  786. static const short yyr2[] = {     0,
  787.      0,     1,     0,     2,     2,     0,     0,     1,     1,     0,
  788.      2,     1,     1,     1,     1,     5,     4,     3,     4,     4,
  789.      1,     0,     5,     1,     3,     1,     2,     1,     3,     1,
  790.      3,     1,     3,     0,     5,     0,     5,     0,     5,     0,
  791.      5,     3,     3,     6,     7,     4,     3,     3,     1,     1,
  792.      1,     1,     1,     2,     3,     3,     3,     3,     2,     2,
  793.      2,     2,     2,     1,     3,     4,     3,     5,     4,     3,
  794.      3,     2,     3,     3,     2,     1,     6,     4,     3,     3,
  795.      2,     2,     1,     3,     4,     2,     3,     0,     0,     1,
  796.      3,     2,     3,     1,     4,     2,     4,     2,     4,     2,
  797.      1,     1,     1,     1,     1,     1,     1,     1,     3,     3,
  798.      4,     4,     3,     4,     3,     4,     0,     1,     3,     1,
  799.      1,     0,     6,     0,     1,     0,     2,     1,     1,     1,
  800.      1,     1,     1,     1,     1,     3,     1,     3,     0,     1,
  801.      1,     0,     8,     1,     2,     4,     4,     1,     3,     3,
  802.      3,     3,     1,     1,     1,     0,     3,     2,     2,     2,
  803.      2,     2,     2,     4,     2,     4,     2,     3,     3,     4,
  804.      4,     5,     5,     6,     2,     4,     5,     3,     3,     3,
  805.      1,     3,     2,     3,     4,     1,     2,     5,     1,     4,
  806.      4,     4,     1,     3,     3,     3,     3,     3,     3,     3,
  807.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  808.      3,     3,     5,     3,     3,     1,     2,     3,     1,     1,
  809.      1,     1,     1,     1,     1,     2,     2,     1,     1,     1,
  810.      1,     1,     1,     1,     3,     3,     0,     4,     0,     6,
  811.      2,     4,     2,     2,     1,     4,     1,     7,     7,     7,
  812.      7,     4,     4,     2,     2,     1,     4,     2,     2,     2,
  813.      5,     3,     5,     3,     4,     6,     1,     2,     1,     2,
  814.      1,     1,     1,     2,     0,     2,     2,     3,     3,     3,
  815.      3,     3,     2,     2,     1,     1,     1,     2,     2,     2,
  816.      2,     1,     1,     1,     1,     2,     2,     3,     3,     4,
  817.      1,     2,     2,     1,     1,     2,     2,     1,     2,     2,
  818.      3,     1,     2,     1,     1,     1,     4,     4,     4,     4,
  819.      1,     1,     1,     1,     3,     1,     3,     1,     3,     0,
  820.      4,     0,     7,     4,     0,     7,     4,     0,     7,     4,
  821.      0,     7,     4,     0,     1,     1,     2,     6,     1,     3,
  822.      0,     1,     4,     6,     4,     1,     1,     1,     1,     1,
  823.      3,     1,     2,     3,     4,     1,     1,     3,     4,     6,
  824.      3,     5,     0,     7,     4,     0,     6,     3,     2,     2,
  825.      4,     1,     0,     1,     0,     1,     1,     2,     2,     2,
  826.      2,     3,     2,     2,     2,     3,     3,     1,     2,     0,
  827.      0,     3,     3,     2,     1,     1,     0,     1,     2,     1,
  828.      3,     1,     2,     1,     4,     4,     1,     1,     2,     2,
  829.      1,     0,     1,     4,     3,     1,     2,     2,     2,     2,
  830.      2,     2,     2,     2,     4,     2,     1,     5,     3,     0,
  831.      1,     3,     0,     1,     3,     1,     1,     1,     1,     4,
  832.      6,     4,     4,     6,     4,     3,     4,     6,     4,     4,
  833.      6,     4,     3,     1,     3,     1,     3,     2,     1,     6,
  834.      0,     2,     1,     2,     0,     2,     3,     3,     2,     2,
  835.      3,     1,     1,     1,     2,     5,     5,     3,     5,     4,
  836.      3,     3,     2,     1,     3,     3,     2,     2,     3,     1,
  837.      3,     3,     2,     2,     3,     1,     5,     5,     3,     5,
  838.      3,     3,     4,     3,     2,     2,     1,     2,     4,     4,
  839.      2,     1,     1,     1,     2,     2,     2,     1,     2,     1,
  840.      2,     2,     3,     1,     3,     2,     3,     2,     2,     3,
  841.      1,     3,     4,     3,     2,     2,     1,     3,     2,     2,
  842.      1,     2,     3,     1,     3,     1,     5,     3,     4,     3,
  843.      4,     2,     2,     3,     2,     1,     1,     2,     2,     2,
  844.      0,     0,     1,     1,     2,     3,     1,     2,     3,     5,
  845.      6,     5,     0,     0,     6,     1,     2,     1,     1,     1,
  846.      2,     0,     4,     1,     0,     0,     6,     0,     0,     7,
  847.      0,     0,     0,    10,     0,     0,     0,    10,     0,     7,
  848.      0,     5,     0,     7,     0,     4,     2,     2,     2,     3,
  849.      6,     8,    10,    12,     4,     3,     2,     2,     1,     1,
  850.      0,     0,     7,     1,     2,     2,     0,     0,     5,     1,
  851.      1,     3,     3,     2,     2,     2,     3,     4,     4,     3,
  852.      4,     6,     6,     0,     1,     0,     1,     1,     0,     1,
  853.      1,     3,     4,     1,     3,     0,     1,     1,     1,     2,
  854.      2,     2,     1,     1,     2,     2,     2,     2,     1,     3,
  855.      2,     2,     4,     2,     2,     2,     2,     2,     2,     1,
  856.      2,     1,     3,     1,     1,     0,     0,     1,     0,     4,
  857.      1,     1,     3,     0,     3,     3,     3,     1,     2,     2,
  858.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  859.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  860.      2,     3,     2,     2,     2,     2,     3,     2,     2,     4,
  861.      4,     3,     2
  862. };
  863.  
  864. static const short yydefact[] = {     3,
  865.     10,    10,     5,     0,     4,     0,   220,   522,   305,   315,
  866.    473,     0,     8,     9,     0,     0,   387,     0,   708,     0,
  867.    534,   221,    64,     0,     0,   696,     0,    76,    21,     0,
  868.     11,     6,     0,    15,    14,    13,    12,   275,     0,   523,
  869.    117,   229,   500,     0,   295,     0,   294,   308,     0,   328,
  870.    314,     0,   398,   400,   401,   406,   405,   382,   304,   528,
  871.    484,     0,   228,   230,   483,     0,   524,   316,   471,     0,
  872.      0,   219,    62,    63,   526,     0,     0,   101,   102,   103,
  873.    376,   379,     0,   530,     0,   380,     0,     0,     0,    32,
  874.      0,   305,     0,    22,     0,     0,   398,     0,     0,     0,
  875.      0,   498,     0,     0,     0,   497,     0,     0,     0,   229,
  876.      0,     0,     0,   228,   230,   471,     0,     3,     0,     0,
  877.      0,     0,   400,   401,   699,     0,    88,    83,   275,     0,
  878.      0,    60,   527,   124,   471,     0,   475,    61,     0,     0,
  879.      0,     0,     0,   324,   285,   482,   286,   494,     0,   471,
  880.    307,   306,    59,   296,     0,   326,     0,   301,   321,   322,
  881.    297,   310,   312,   323,     0,    54,   388,   389,   390,   391,
  882.    404,   107,   106,   108,   393,   399,   395,   117,   394,   407,
  883.    407,   421,     0,   474,   309,    72,     0,    75,   532,   516,
  884.    485,   525,     0,   529,     0,   743,   739,   738,   736,   718,
  885.    723,   724,     0,   730,   729,   715,   716,   714,   733,   722,
  886.    719,   720,   721,   725,   726,   712,   713,   709,   710,   711,
  887.    735,   727,   728,   717,   734,     0,   731,   640,   308,   641,
  888.    704,   473,   232,   273,     0,     0,     0,     0,   156,   269,
  889.    267,   245,   271,   272,     0,     0,     0,     0,     0,     0,
  890.      0,   129,   128,     0,   130,   131,     0,     0,   216,   132,
  891.      0,   118,     0,   189,     0,   193,   186,   121,   231,   155,
  892.      0,     0,   233,   234,     0,   120,   292,   308,   293,   517,
  893.    256,   247,     0,     0,     0,   398,   378,     0,   373,   531,
  894.      0,   133,   134,     0,     0,     0,     0,    31,     0,   110,
  895.    407,   125,   109,   115,     0,   496,     0,   495,   102,   103,
  896.    218,   227,     0,   504,   226,     0,   503,   511,   512,     0,
  897.      0,    18,    10,     0,     7,     7,    48,    47,   699,     0,
  898.     34,    42,    38,    36,    43,    40,   330,    82,    89,    86,
  899.      0,     0,   275,     0,     0,     0,   571,    65,   577,    67,
  900.    113,   509,     0,   673,   674,   154,     0,   153,   668,   690,
  901.      0,   292,   308,   293,     0,   667,   669,   697,   679,     0,
  902.    514,     0,     0,     0,   480,     0,   479,     0,     0,     0,
  903.    471,    70,    58,    73,     0,    57,   471,     0,   475,   493,
  904.      0,   298,   299,     0,    55,    71,    56,    74,   303,   302,
  905.    313,   699,   329,   396,   392,   397,   408,   402,   403,   437,
  906.      0,     0,   440,   443,     0,     0,   426,     0,   699,   311,
  907.      0,     0,   344,   472,   499,   533,     0,     0,   732,   737,
  908.    471,   471,     0,   471,   742,     0,     0,     0,   163,     0,
  909.      0,   165,     0,     0,     0,     0,     0,     0,     0,     0,
  910.    162,   159,   158,   160,     0,     0,     0,     0,   217,     0,
  911.    116,   161,     0,     0,   187,     0,     0,     0,     0,     0,
  912.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  913.      0,     0,     0,     0,     0,     0,     0,   241,   243,   244,
  914.    277,   276,     0,     0,     0,     0,     0,   167,   469,     0,
  915.    175,   274,   223,     0,   696,   222,   259,   260,     0,   287,
  916.    551,   547,   556,     0,   475,   471,   471,   471,   289,   554,
  917.      0,   521,   291,     0,   290,   258,     0,   254,   268,   270,
  918.    518,     0,   255,   112,   111,   466,   385,   464,   375,     0,
  919.    317,     0,     0,   318,   319,   320,    33,     0,    28,    24,
  920.    695,   308,    26,   694,    30,   692,   122,   114,   502,   501,
  921.    505,     0,    17,    20,    19,   330,    53,    49,    51,    52,
  922.     50,    46,     0,     0,     0,     0,   344,   104,    94,   105,
  923.      0,    87,    90,     0,     0,     0,   366,     0,   362,    84,
  924.      0,     0,    66,    69,   578,   572,   471,   471,   672,   685,
  925.    678,   676,   551,   547,     0,   686,   471,   689,   691,   687,
  926.      0,   688,   471,   671,   684,   677,   675,   670,   698,   681,
  927.    682,     0,   513,   476,   478,   477,     0,     0,   492,     0,
  928.    344,   325,   488,     0,     0,     0,   491,     0,   481,   300,
  929.    327,   344,   330,   418,     0,   417,   409,   410,   412,     0,
  930.    414,   436,   432,   431,   220,   522,   471,     0,   666,   699,
  931.    433,   441,   446,   447,   699,   699,   434,   444,   699,     0,
  932.    381,   428,   427,   429,   430,   330,   701,   308,   702,     0,
  933.      0,     0,   343,   345,   346,   741,   740,   704,   704,   704,
  934.      0,     0,     0,   521,     0,     0,   522,     0,   157,     0,
  935.      0,     0,     0,     0,     0,   236,   235,     0,   184,   119,
  936.    220,   522,   221,     0,     0,   367,   383,     0,   215,   214,
  937.    658,   657,     0,   212,   211,   209,   210,   208,   207,   206,
  938.    203,   204,   205,   201,   202,   196,   197,   198,   199,   200,
  939.    194,   195,     0,     0,     0,     0,     0,     0,   169,   181,
  940.      0,     0,   168,   471,   471,     0,   471,   468,   541,     0,
  941.      0,     0,     0,   262,     0,   264,     0,   515,   550,   549,
  942.    546,   545,   695,     0,     0,   565,     0,     0,   562,   288,
  943.    563,   552,   471,   666,   475,   551,   547,     0,     0,   471,
  944.    231,     0,   517,     0,     0,     0,   386,     0,   385,   152,
  945.    151,   150,   149,     0,    23,     0,   393,     0,     0,    16,
  946.    344,    35,    39,    37,    41,     0,     0,    92,     0,    96,
  947.      0,   100,     0,    98,     0,   363,     0,    85,    68,     0,
  948.    579,     0,   573,   574,   510,   507,   550,   546,   551,   547,
  949.    483,     0,   471,   552,   551,   547,     0,   231,     0,   517,
  950.    508,     0,   680,   334,   471,   471,   471,   490,   340,   344,
  951.      0,     0,   420,   419,   413,     0,     0,   439,   344,     0,
  952.     79,     0,   330,   330,     0,   330,     0,   344,     0,   700,
  953.      0,     0,   341,   347,   706,   705,   707,   246,   164,     0,
  954.      0,   166,   190,   192,   191,   252,   253,     0,     0,     0,
  955.      0,   238,     0,     0,     0,     0,   185,     0,   239,   242,
  956.    179,   178,   171,     0,   170,   183,     0,     0,   538,   536,
  957.      0,   539,   475,   176,     0,     0,   265,     0,     0,   548,
  958.    544,   555,   471,   564,   553,   558,     0,   560,     0,   551,
  959.    547,   519,   520,     0,   257,   467,   465,   377,     0,    25,
  960.     29,   693,     0,     0,    44,    93,    91,     0,     0,     0,
  961.      0,   364,   360,     0,     0,   220,   522,   583,   595,   598,
  962.      0,   571,     0,     0,     0,     0,     0,     0,   221,   629,
  963.      0,   654,     0,   590,     0,     0,   308,     0,   567,   588,
  964.    594,   566,   589,   630,     0,   601,   605,   575,   550,   546,
  965.    485,   552,   520,   683,   332,   489,   486,   487,   338,   337,
  966.      0,     0,   411,   344,   344,    78,   456,   471,   220,   522,
  967.      0,   442,   448,   449,   699,   699,   344,   344,   445,     0,
  968.    435,   703,   331,   351,     0,     0,     0,     0,     0,     0,
  969.    371,     0,     0,   368,   188,   213,   126,     0,   172,   173,
  970.    180,   182,   537,   535,   542,   540,     0,   177,     0,   261,
  971.    263,   561,   471,   559,   374,     0,    45,    95,    99,    97,
  972.    365,     0,   576,   570,   582,   644,   646,   571,   571,   571,
  973.      0,     0,     0,   615,   617,   618,   619,     0,     0,     0,
  974.    645,   571,   655,     0,   591,   283,   699,     0,   284,     0,
  975.    699,     0,   699,     0,     0,   580,   569,   568,   592,   628,
  976.    627,   571,   571,     0,     0,   335,   415,   416,   455,   452,
  977.    438,     0,     0,   344,   330,   330,   450,   453,   357,   358,
  978.    359,   356,     0,   349,   352,   342,     0,     0,     0,     0,
  979.    369,     0,     0,   126,   240,     0,   174,   543,   266,   557,
  980.    123,   361,     0,     0,     0,   586,     0,     0,   571,   647,
  981.      0,   650,     0,     0,   611,     0,   620,     0,   626,   631,
  982.      0,   279,   330,   281,   282,   330,     0,     0,     0,   278,
  983.    280,   581,   571,     0,     0,   333,   339,     0,    77,   344,
  984.    344,   463,   344,   344,     0,     0,   351,     0,     0,   248,
  985.    249,   250,   251,     0,   372,   127,   470,   137,     0,   584,
  986.    596,   587,   599,   651,   649,     0,   648,   144,     0,   308,
  987.      0,     0,     0,   616,   625,     0,     0,   593,   141,     0,
  988.    140,     0,   336,   462,   459,   457,   460,   451,   454,   350,
  989.    348,   220,     0,   370,     0,   571,     0,     0,     0,     0,
  990.    609,   699,   613,   612,     0,   634,     0,   632,   659,     0,
  991.    602,   606,     0,     0,     0,   353,   355,   138,   585,   572,
  992.    597,   148,   135,     0,     0,   653,     0,   652,   571,   330,
  993.      0,   636,   635,   637,     0,     0,   660,   661,   621,     0,
  994.      0,   458,   461,     0,   145,     0,     0,   600,   610,   344,
  995.    614,   633,     0,   659,     0,     0,     0,     0,   354,     0,
  996.      0,   136,     0,   638,     0,     0,   622,   662,   603,   607,
  997.    147,   146,   142,     0,   663,     0,     0,     0,     0,     0,
  998.      0,     0,   664,     0,   623,   604,   608,   143,     0,     0,
  999.    639,     0,     0,   642,   643,   665,   624,     0,     0,     0
  1000. };
  1001.  
  1002. static const short yydefgoto[] = {  1348,
  1003.      1,     2,   119,   564,   982,     3,     4,    31,    32,    33,
  1004.    299,   548,   549,   550,    34,    91,    35,   573,   575,   574,
  1005.    576,   572,    36,    37,    38,   412,   128,   129,   130,   339,
  1006.    582,   583,   536,   584,   176,    39,    40,    41,   134,   261,
  1007.    262,   302,   809,   303,  1145,   263,   983,  1275,  1210,  1230,
  1008.   1231,  1330,  1271,   292,   789,   264,   445,   497,   753,   265,
  1009.    266,   267,   293,   269,   507,   312,    43,   270,   457,  1047,
  1010.    271,   272,   273,   274,   131,   275,   984,   402,   517,   773,
  1011.    985,    45,   161,   986,    47,   162,   440,   163,   143,   155,
  1012.     49,   631,   144,  1114,   403,  1188,   156,  1115,    50,  1035,
  1013.    683,   684,   685,  1133,  1134,  1135,   964,   716,   717,    51,
  1014.    540,   288,   906,   798,    52,    53,    54,    55,   180,   181,
  1015.     56,    57,    58,   408,   647,   648,   649,   650,   183,   415,
  1016.    416,   417,   418,   661,   667,   662,  1022,   663,   664,  1023,
  1017.   1024,   537,   538,   498,   779,    59,   372,   373,   145,    60,
  1018.     61,   146,   147,   113,    63,   508,   280,   281,   282,    65,
  1019.    283,    67,    68,   179,    69,   284,   758,   759,   770,   520,
  1020.    988,   989,  1155,   832,   833,   834,   348,   990,   991,  1078,
  1021.   1246,  1157,   992,   993,  1183,  1079,  1247,  1080,  1248,  1112,
  1022.   1290,  1328,  1113,  1291,  1329,  1279,  1223,  1281,  1166,   994,
  1023.   1226,  1284,  1258,  1302,  1324,  1221,  1332,   995,   996,   997,
  1024.   1094,   723,  1286,  1287,  1288,  1334,   365,   775,   367,   368,
  1025.    369,   555,   370,   107,   621,  1173,   679,   680,   435,    71,
  1026.     72
  1027. };
  1028.  
  1029. static const short yypact[] = {   203,
  1030.    236,-32768,-32768,  1874,-32768,    85,-32768,    55,   300,-32768,
  1031. -32768,   590,-32768,-32768,   -23,   252,-32768,   365,-32768,  1493,
  1032. -32768,   355,-32768,   963,   963,-32768,  2214,-32768,-32768,   349,
  1033. -32768,   429,  3939,-32768,-32768,-32768,-32768,   279,   435,   443,
  1034. -32768,-32768,   396,  1052,-32768,  9215,-32768,   704,    30,-32768,
  1035. -32768,   698,-32768,-32768,-32768,-32768,-32768,   488,  1610,-32768,
  1036. -32768,   410,-32768,-32768,-32768,   397,-32768,-32768,-32768,    89,
  1037.   6309,-32768,-32768,-32768,-32768,  8124,  2133,-32768,    55,   355,
  1038.    461,   515,   443,-32768,    89,-32768,    89,  8124,  8124,-32768,
  1039.    363,-32768,   355,-32768,  3239,  4205,   230,    89,  7950,    55,
  1040.   2347,-32768,   484,   103,  2347,-32768,    92,  2356,  2356,   479,
  1041.    501,   396,   514,   519,   540,-32768,   629,   555,  2912,   144,
  1042.   3239,  9396,   593,   706,   572,   666,-32768,   149,   306,    57,
  1043.     57,-32768,-32768,   575,-32768,  4662,   589,-32768,  3833,  3833,
  1044.   3542,  1266,   393,-32768,-32768,   408,-32768,-32768,   397,-32768,
  1045. -32768,-32768,-32768,   704,   536,-32768,  1285,-32768,-32768,-32768,
  1046.    907,   654,-32768,-32768,  3239,-32768,-32768,-32768,-32768,-32768,
  1047. -32768,-32768,-32768,-32768,-32768,-32768,   443,   719,-32768,   617,
  1048.    617,-32768,  2447,-32768,   654,-32768,   608,   875,-32768,-32768,
  1049. -32768,-32768,  4014,-32768,    56,-32768,   609,   647,-32768,-32768,
  1050. -32768,-32768,   683,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1051. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1052. -32768,-32768,-32768,-32768,-32768,   601,-32768,-32768,   654,  1610,
  1053.    351,   657,-32768,-32768,  3117,  9065,   660,   662,-32768,-32768,
  1054. -32768,-32768,-32768,-32768,   665,   690,   692,   699,   703,    92,
  1055.   8816,-32768,-32768,  8816,-32768,-32768,  8816,  6393,  9148,-32768,
  1056.     29,-32768,  8816,-32768,  8211,-32768,-32768,  9444,-32768,  1334,
  1057.   2712,  8294,-32768,   767,   557,-32768,   160,  2819,  9439,-32768,
  1058.    266,-32768,   579,   809,  3239,   230,-32768,    92,   685,-32768,
  1059.    684,   738,  9497,   693,   697,   701,   808,-32768,  2133,-32768,
  1060.    617,-32768,-32768,-32768,   154,-32768,   139,-32768,-32768,-32768,
  1061. -32768,-32768,  2347,-32768,-32768,  2347,-32768,-32768,-32768,  4014,
  1062.     50,-32768,   711,  2133,-32768,-32768,-32768,-32768,   572,   766,
  1063. -32768,-32768,-32768,-32768,-32768,-32768,   656,-32768,   254,-32768,
  1064.   6483,  8381,-32768,    57,    57,   765,-32768,-32768,-32768,-32768,
  1065. -32768,   818,   730,-32768,-32768,   738,   735,  9497,   328,  1775,
  1066.   9396,  1775,  4904,  4548,   737,-32768,    72,  9289,   763,   787,
  1067. -32768,   746,  8381,  4250,-32768,  4250,-32768,  4314,  4314,   753,
  1068. -32768,-32768,-32768,   875,  3239,-32768,-32768,  5854,   752,-32768,
  1069.   4433,   907,   704,  3239,-32768,-32768,-32768,   875,-32768,-32768,
  1070. -32768,   572,-32768,-32768,-32768,-32768,  1191,-32768,-32768,-32768,
  1071.   8381,   156,  1389,  9306,    54,  2311,-32768,   167,   572,   654,
  1072.   2569,   771,   831,-32768,-32768,-32768,   773,   777,-32768,-32768,
  1073. -32768,-32768,   169,-32768,-32768,  8381,   657,  6393,-32768,   381,
  1074.   6393,-32768,  8381,  8468,  8816,  8124,  2569,  2569,  2569,  2569,
  1075. -32768,-32768,-32768,-32768,   782,   784,   765,   793,-32768,  8124,
  1076. -32768,-32768,  3487,  6393,-32768,  8381,  8381,  3006,  8381,  8381,
  1077.   8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,  8381,
  1078.   8381,  8381,  8381,  8381,  8381,  8381,  8381,-32768,-32768,-32768,
  1079. -32768,-32768,  8381,  8381,  8381,  8124,  3398,   497,   109,  7032,
  1080. -32768,-32768,    55,   848,   896,-32768,   387,   415,   592,-32768,
  1081.    388,   388,-32768,  3838,   798,   817,   864,-32768,-32768,   412,
  1082.   7507,  1099,-32768,   251,-32768,-32768,  8381,-32768,-32768,-32768,
  1083. -32768,   597,-32768,-32768,-32768,   851,   855,-32768,-32768,    92,
  1084. -32768,  6855,  6945,-32768,-32768,-32768,-32768,   419,   859,-32768,
  1085. -32768,  9200,   698,-32768,-32768,   862,-32768,-32768,-32768,-32768,
  1086. -32768,   865,-32768,-32768,-32768,   656,-32768,-32768,-32768,-32768,
  1087. -32768,-32768,   866,   868,   869,   870,   831,-32768,-32768,   355,
  1088.   8381,   877,-32768,   434,   438,   462,-32768,  5956,  9590,-32768,
  1089.    836,    57,-32768,-32768,-32768,    20,-32768,-32768,-32768,-32768,
  1090. -32768,-32768,  1506,  1506,  3333,-32768,-32768,-32768,-32768,-32768,
  1091.   7598,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1092.    887,  6483,-32768,-32768,-32768,-32768,  4250,  4250,-32768,  4433,
  1093.    831,-32768,   818,   849,   856,   861,-32768,   863,-32768,   907,
  1094. -32768,   831,   656,-32768,   881,-32768,   899,-32768,-32768,  1243,
  1095. -32768,  9590,-32768,-32768,   912,   146,-32768,  8381,  2808,   572,
  1096.    921,-32768,-32768,-32768,   368,   407,   922,-32768,   572,   920,
  1097. -32768,-32768,-32768,-32768,-32768,   551,-32768,  4154,-32768,   187,
  1098.    629,   897,   926,   831,-32768,-32768,-32768,   505,   505,   505,
  1099.    885,   886,  8555,   864,   895,   900,   248,   901,-32768,   906,
  1100.    909,   919,   942,   943,   945,-32768,-32768,   918,-32768,-32768,
  1101.    962,   553,   136,  8381,   969,-32768,   968,   928,  9590,  9590,
  1102. -32768,-32768,   973,  9629,  4583,  9645,  9660,  5903,  6801,  3406,
  1103.   1324,  1324,  1324,  1664,  1664,   814,   814,   640,   640,   640,
  1104. -32768,-32768,   932,   934,   940,   935,   946,  2569,   497,-32768,
  1105.   6483,  8381,-32768,-32768,-32768,  8381,-32768,-32768,   955,  8816,
  1106.    944,   964,  1008,-32768,  8381,-32768,  8381,-32768,   890,-32768,
  1107.    890,-32768,    65,   951,   952,-32768,   953,  2569,   818,-32768,
  1108.    818,  2046,-32768,  1065,   957,  7689,  7689,  4811,   966,  8211,
  1109.    479,   972,   540,   809,   974,  8381,    92,   961,   855,-32768,
  1110.   9590,-32768,  9590,  2133,-32768,   664,   520,  6483,   488,-32768,
  1111.    831,-32768,-32768,-32768,-32768,   766,   978,-32768,   254,-32768,
  1112.   8381,-32768,  8381,-32768,  8381,-32768,     9,-32768,-32768,    92,
  1113. -32768,  5584,  1032,-32768,   818,   818,  2757,  2757,  3282,  3282,
  1114. -32768,   397,-32768,  3954,  7776,  7776,  5016,   174,   979,   244,
  1115.    818,  6483,-32768,  1030,-32768,-32768,-32768,-32768,  1037,   831,
  1116.   8124,  1191,-32768,-32768,-32768,  8381,  8381,    74,  9521,   995,
  1117. -32768,  2416,   656,   656,  3185,   603,  3228,   831,  2569,-32768,
  1118.     52,  1011,-32768,-32768,-32768,-32768,-32768,-32768,-32768,  8899,
  1119.   8899,-32768,-32768,-32768,-32768,-32768,-32768,  1013,  1014,  1019,
  1120.   1022,-32768,  9472,  6483,  6046,  1009,-32768,  8381,-32768,-32768,
  1121. -32768,-32768,   143,  1012,-32768,-32768,  1017,    75,   278,   278,
  1122.   1006,   278,-32768,-32768,  8816,  1107,-32768,  1018,  1020,-32768,
  1123. -32768,-32768,-32768,-32768,-32768,   818,  1023,-32768,  1010,  7863,
  1124.   7863,-32768,-32768,   584,-32768,  9590,-32768,-32768,  1021,-32768,
  1125. -32768,-32768,  2447,   766,-32768,-32768,-32768,  1024,  1026,  1036,
  1126.   6136,-32768,-32768,   668,   231,  1061,   567,-32768,-32768,-32768,
  1127.   1046,-32768,  8381,  1079,  1085,  1088,  8037,    73,   476,-32768,
  1128.   1093,  1139,  1094,-32768,  1971,  9379,  2582,  3725,-32768,-32768,
  1129.   1135,-32768,-32768,-32768,  7135,-32768,-32768,-32768,  2757,  2757,
  1130. -32768,  3954,  1989,-32768,-32768,   818,   818,   818,-32768,  1095,
  1131.   1053,  1054,-32768,  9521,  9521,-32768,-32768,-32768,  1103,   661,
  1132.   8381,-32768,-32768,-32768,   572,   572,   831,   831,-32768,  2607,
  1133. -32768,-32768,-32768,   801,  6483,  8381,  8381,  8381,  8381,  6483,
  1134. -32768,  8381,  1104,-32768,-32768,  9611,   575,  8381,-32768,   143,
  1135. -32768,-32768,-32768,-32768,-32768,-32768,  1062,-32768,  1122,-32768,
  1136. -32768,   818,-32768,-32768,-32768,    66,-32768,-32768,-32768,-32768,
  1137. -32768,    92,-32768,-32768,-32768,-32768,-32768,-32768,-32768,   765,
  1138.   6226,  1082,  5075,-32768,-32768,-32768,-32768,  1115,  8381,  1121,
  1139. -32768,-32768,-32768,  1090,-32768,-32768,   238,   672,-32768,   772,
  1140.    572,  8642,   459,   774,   258,-32768,-32768,-32768,-32768,-32768,
  1141. -32768,-32768,-32768,  6483,  6483,-32768,-32768,-32768,-32768,-32768,
  1142.     74,  8381,  8381,  9521,   656,   656,  1124,  1126,-32768,-32768,
  1143. -32768,-32768,   269,-32768,  1091,-32768,  1084,  1087,  1097,  1098,
  1144. -32768,  9544,  6483,   575,-32768,  1089,-32768,-32768,-32768,   818,
  1145. -32768,-32768,   509,   509,  7417,-32768,  1175,  1137,  1100,-32768,
  1146.   1141,-32768,  8124,  8381,-32768,  7237,-32768,  1146,-32768,-32768,
  1147.    629,-32768,   656,-32768,-32768,   656,  8982,  8982,  6573,-32768,
  1148. -32768,-32768,   765,  6663,  6663,-32768,-32768,  6483,-32768,  9521,
  1149.   9521,-32768,   831,   831,  6483,  6483,   801,  1102,  8729,-32768,
  1150. -32768,-32768,-32768,  6483,-32768,-32768,-32768,-32768,  8124,-32768,
  1151. -32768,-32768,-32768,-32768,-32768,  5674,-32768,-32768,  1109,   234,
  1152.   3239,  9567,  7237,-32768,-32768,  5168,    48,-32768,-32768,  1149,
  1153. -32768,  1150,-32768,-32768,-32768,  1160,  1163,-32768,-32768,-32768,
  1154. -32768,   282,  1123,-32768,  1127,   765,  7327,   518,   295,  5272,
  1155. -32768,   572,-32768,-32768,   296,-32768,  5376,-32768,  1214,  1168,
  1156. -32768,-32768,  6483,  6483,  8381,-32768,-32768,-32768,-32768,    37,
  1157. -32768,-32768,-32768,  8381,  1176,-32768,  1177,-32768,   765,   656,
  1158.   7237,-32768,-32768,-32768,  1147,   201,  1181,-32768,-32768,  6753,
  1159.   6753,-32768,-32768,  1143,-32768,  5764,  1148,-32768,-32768,   831,
  1160. -32768,  1158,  8381,  1214,  1183,  1214,  1151,  1152,-32768,   317,
  1161.   5480,-32768,  1198,-32768,  1156,   246,-32768,-32768,-32768,-32768,
  1162. -32768,-32768,-32768,  1153,-32768,  1254,  1208,  7327,  7327,  6483,
  1163.   1355,   765,-32768,   353,-32768,-32768,-32768,-32768,  1167,  1170,
  1164. -32768,  1271,  1219,-32768,-32768,-32768,-32768,  1281,  1282,-32768
  1165. };
  1166.  
  1167. static const short yypgoto[] = {-32768,
  1168.   1165,-32768,-32768,   958,     7,  1283,-32768,-32768,-32768,-32768,
  1169. -32768,-32768,-32768,   486,-32768,-32768,-32768,-32768,-32768,-32768,
  1170. -32768,  -773,  1169,  1174,-32768,-32768,-32768,-32768,  1166,-32768,
  1171. -32768,   478,   126,-32768,-32768,-32768,  4325,   -30,-32768,  1204,
  1172.    844,  -998,-32768,   -96,   162,-32768,   171,-32768,   153,   124,
  1173.   -980,-32768,  -480,   242,   564,   630,-32768,-32768,  -722,  3685,
  1174.   1316,  -262,  2309,  2833,   804,   159,   431,-32768,-32768,-32768,
  1175. -32768,  -278,-32768,  -110,   -90,-32768,   233,    34,  -210,    83,
  1176.     11,   -91,  -121,    -3,  1446,   -82,  1348,  -127,  -674,   329,
  1177. -32768,  -186,-32768,-32768,   180,-32768,-32768,-32768,-32768,-32768,
  1178.   1092,-32768,   634,-32768,   122,-32768,-32768,   821,   742,    14,
  1179. -32768,-32768,-32768,   526,  -285,    12,  1299,  1300,-32768,-32768,
  1180. -32768,-32768,-32768,  -131,-32768,   473,   686,-32768,   533,   394,
  1181.    469,  -411,-32768,-32768,-32768,-32768,-32768,-32768,   939,-32768,
  1182.    482,   829,   573,   857,  1683,  1544,  -371,-32768,  1375,     0,
  1183.      1,-32768,  4129,   -99,   646,-32768,  3274,-32768,-32768,  3935,
  1184.     -4,   198,  -327,  1336,  3574,   852,  -188,-32768,  1912,-32768,
  1185.  -1147,  -942,  -321,   101,-32768,   539,  -106,   -94,-32768,-32768,
  1186. -32768, -1132,  -932, -1108,-32768,-32768,-32768,-32768,-32768,-32768,
  1187. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  1188. -32768,-32768,-32768,-32768,-32768,   -43,-32768,-32768,-32768,-32768,
  1189. -32768,  -421,    70,-32768,    69,-32768,  -369,  -132,-32768,-32768,
  1190.   -258,  1015,  -247,-32768,-32768,    60,   500,-32768,   127,-32768,
  1191.   -260
  1192. };
  1193.  
  1194.  
  1195. #define    YYLAST        9739
  1196.  
  1197.  
  1198. static const short yytable[] = {    66,
  1199.     46,   423,   465,   366,   673,   530,   321,    85,   314,   317,
  1200.     30,   586,    84,   553,    44,    85,    96,   638,   636,   103,
  1201.    103,   178,   103,   533,   350,   596,   915,   231,    66,   122,
  1202.     95,    97,   392,   400,   401,   349,   349,   351,   345,   149,
  1203.    554,    66,   955,   121,   360,  1107,  1212,    85,  1144,   409,
  1204.   1228,   556,    84,   830,    85,  1108,   502,   346,   502,     8,
  1205.    502,   164,  1111,   961,    88,   195,    85,   522,  1250,   194,
  1206.    830,   393,    85,    96,   599,    78,   309,   142,  1257,   651,
  1207.    424,   614,    85,   460,   165,   166,   290,   285,   286,   670,
  1208.    149,    85,     8,    85,    78,   309,   103,   194,   461,   307,
  1209.    103,   670,   420,   103,   103,    75,   100,  1259,    93,   554,
  1210.    347,   962,   100,  1269,    66,    46,   149,    66,   510,   600,
  1211.    556,   188,   831,    76,   601,   310,   615,  -699,   300,    44,
  1212.    426,   616,   361,  -699,   149,   149,   149,    82,  1272,  1295,
  1213.     73,    93,   100,   777,   310,  1144,  1299,  1089,  1311,  1260,
  1214.    577,   562,   522,  1033,   329,    93,   671,   602,   276,    21,
  1215.    149,    93,   693,   100,   617,   187,   709,   164,  1151,   557,
  1216.    294,   296,   100,   754,   164,   164,  1052,   175,    66,   414,
  1217.   1067,   276,  1219,   755,   337,   111,   750,    74,   103,   535,
  1218.   1049,    93,   340,   413,   422,  -103,    75,   756,   164,   327,
  1219.    751,   384,    -1,   510,    99,   867,   341,   360,   460,   653,
  1220.     21,   642,    93,   426,    76,   654,   398,  -229,   359,  1272,
  1221.   1272,    93,   674,   558,   511,    85,   433,   499,  1245,   694,
  1222.    752,  1048,   311,  1224,   512,    -2,   342,   593,   594,   159,
  1223.    160,   879,   164,   189,   513,    12,   328,   514,   515,   349,
  1224.    349,   595,   592,   530,     8,   366,   578,     8,   291,   295,
  1225.   1304,  -229,  -229,   192,   400,   401,    85,   315,    17,   675,
  1226.    509,   640,   433,   433,   524,  -224,   360,   510,   314,   317,
  1227.    149,   100,   192,   194,   424,  -124,  1074,  -230,   880,   870,
  1228.   1254,   164,   401,  1172,    85,   361,   360,   579,    75,   111,
  1229.    192,   126,  1305,    93,    21,  1326,   580,  1107,   103,   526,
  1230.   1098,   103,  1104,  1074,  1107,   103,    76,  1108,   534,    85,
  1231.     96,   693,   651,  1197,  1108,   189,   301,  1147,    21,   187,
  1232.     93,  -230,  -230,  1075,    95,    97,  1265,   599,   127,    89,
  1233.    458,   581,   754,   422,    77,  -225,   192,  1327,  1301,   894,
  1234.   1074,  1074,   755,   527,   100,   149,    66,   149,   149,   524,
  1235.   1182,   343,   708,    66,   361,   127,   756,    90,  1107,   149,
  1236.   1198,   149,  1074,   149,   149,   451,   164,   356,  1108,   811,
  1237.    149,   551,   600,  1266,   361,  -695,   149,   601,   566,   149,
  1238.    422,   100,   192,   606,    11,   610,   612,  1276,  1282,     7,
  1239.      8,    21,    85,    93,   422,   164,   164,  1342,   149,    66,
  1240.    186,    66,   414,   939,   937,   431,    85,   297,   298,  1321,
  1241.    602,  -285,   360,    99,   510,   432,   413,  -285,   456,   360,
  1242.    764,   510,  -699,   164,  -699,  -699,   117,    19,    21,   135,
  1243.     93,  -699,    85,    85,    85,    85,   660,   385,   386,    22,
  1244.    551,   387,   511,   499,  1343,   783,   860,   112,   766,   187,
  1245.   -286,   643,   512,  -699,  -699,  -699,  -286,  -699,   693,  -699,
  1246.    359,   189,   513,   804,   765,   514,   515,   820,   676,    26,
  1247.    192,   822,   118,   136,   137,   829,     7,   100,   805,   878,
  1248.    132,   586,    85,   133,   433,   388,   389,   349,   187,   784,
  1249.    785,   187,   767,   677,   192,   824,   433,   433,   100,   524,
  1250.    361,   424,   400,   360,  1180,   530,    66,   361,   553,   360,
  1251.    692,   821,   178,   695,    19,   823,   366,   465,   701,   702,
  1252.    703,   704,   705,   533,   651,  1091,    22,   315,   112,   112,
  1253.    750,   182,   276,   624,    99,   554,   718,   149,    85,   825,
  1254.    187,  1057,  1208,    84,   751,    21,   556,    93,   189,     7,
  1255.    503,  1273,   504,   287,   632,   164,    26,   360,   289,   431,
  1256.    881,   112,   422,   641,   -27,    13,    14,   -27,   747,   432,
  1257.   -224,     7,     8,   356,   752,   612,     7,     8,   715,   -27,
  1258.    394,   395,    78,    79,     7,   503,  1209,    19,   149,   149,
  1259.    842,   361,   318,    75,   -81,  1274,   842,   361,   456,    22,
  1260.    -81,   456,  -102,   696,   698,   319,   700,    75,   673,    19,
  1261.   -506,    76,   149,   149,    19,   149,  1077,    13,    14,   356,
  1262.    192,    22,    19,   240,   456,    76,    22,   234,   722,   505,
  1263.     21,  -225,    80,    81,    22,    85,   331,    21,   332,   422,
  1264.   1082,   366,   333,   164,   842,   361,   -80,   322,   426,   159,
  1265.    160,    26,   -80,   187,   744,    12,    26,     8,   338,    10,
  1266.    761,   301,   114,   433,    26,    12,   407,   356,   807,   792,
  1267.     13,    14,   422,   433,   433,   433,  1027,  1028,    17,  1028,
  1268.     15,   164,   360,   371,    16,   421,   360,   427,    17,   357,
  1269.     78,    79,   167,   168,   169,   430,   192,   694,   158,   159,
  1270.    160,    75,   360,   715,    21,    12,    93,   486,   487,   871,
  1271.   1123,   192,  1072,  1073,   873,   874,   385,  1174,   876,    76,
  1272.   1053,  1054,   170,  1056,   356,   428,   356,   356,    17,   314,
  1273.    317,   359,   429,    85,   436,   314,   317,   443,    21,   444,
  1274.     80,   171,   446,   114,   114,   360,  1153,  1154,   447,   334,
  1275.    448,   335,   356,   111,   433,   336,   433,   449,   356,   849,
  1276.   1170,   450,   404,    85,   405,   502,   694,   433,   406,    85,
  1277.    361,    66,    66,    66,   361,   541,   114,   539,   567,   944,
  1278.   1184,  1185,   542,   194,   544,   172,   173,   174,   545,    85,
  1279.    361,    85,   546,    78,   309,  1129,  1130,  1131,   112,   112,
  1280.    547,   528,     8,   563,   885,   886,   887,   111,   347,   568,
  1281.   -694,   569,   356,   570,   424,   571,   394,  1175,   385,  1181,
  1282.    914,   597,   149,   149,   149,   149,   598,  1216,   613,   149,
  1283.    842,   842,   842,   361,   622,   240,   529,  1336,  1337,    19,
  1284.    623,   792,   356,   310,   629,    70,   637,    85,   681,    21,
  1285.    718,    93,   682,    87,   439,   442,   359,   149,  1307,  1308,
  1286.    103,    98,    66,   414,    85,   104,   104,   686,   104,   422,
  1287.    422,   687,   422,   706,    70,   707,   551,   413,   483,   484,
  1288.    485,   486,   487,   100,   709,   104,   184,    70,   762,    13,
  1289.     14,   763,   776,    87,   778,   591,  -330,   780,   796,   797,
  1290.     98,   399,   159,   160,   433,   433,   806,   433,    12,   808,
  1291.    810,   812,    98,   813,   814,   815,   921,  1016,    98,  -330,
  1292.   -330,   819,  -330,   510,   356,    66,    66,   828,  1193,  1194,
  1293.     21,    17,    93,  1012,   852,   315,   104,    98,    66,   414,
  1294.    855,   635,   104,   862,   511,   963,   104,   856,   456,   104,
  1295.    104,   677,   857,   413,   512,     7,   100,   858,   861,    11,
  1296.     70,   866,   104,    70,   513,   872,   875,   514,   515,   877,
  1297.    149,    66,   149,   883,   882,  1156,   888,   889,   898,   642,
  1298.    104,   104,   104,   356,   149,   149,   892,   149,   315,   691,
  1299.    164,   893,   895,    19,   315,   111,   356,   896,   356,   694,
  1300.    897,   899,   900,    21,   901,    22,   104,   456,  1097,   902,
  1301.   1103,  -101,   905,   114,   114,    66,   414,    24,   904,   907,
  1302.   1043,  1011,   908,   909,    70,   112,   912,    25,   910,   192,
  1303.    413,   112,   911,   923,   104,    26,   926,   913,   925,   315,
  1304.     27,   927,   932,   933,     7,     8,   743,   934,   745,   746,
  1305.   1227,   938,   356,   948,   356,   830,   356,   942,     8,    92,
  1306.     10,    11,   554,   943,   354,   945,    12,   314,   317,   956,
  1307.   1003,    98,   104,  1340,  1125,  1126,  1043,  1005,  1156,   112,
  1308.    795,    15,    19,  1300,  1009,    16,  1018,   842,  1034,    17,
  1309.   1036,  1037,    21,  1090,    22,  -471,  1038,   138,  -471,  1039,
  1310.   1055,  1045,  1059,  1050,  1064,    21,   139,    93,  1051,  1060,
  1311.   1076,  1061,    98,  1065,  1063,  1068,   140,  1069,   104,   104,
  1312.     70,   422,   422,  1081,    26,   532,   104,  1070,  1084,   141,
  1313.   1085,   192,   780,  1086,   817,  1093,  1092,  1088,  1109,  1095,
  1314.     98,  1156,  1116,  -471,  1117,  1118,  -471,   355,  -471,  1132,
  1315.   1176,   590,  1122,  1143,   104,  1149,  1148,   104,  -471,  1163,
  1316.   1167,   104,   842,   842,   842,    98,  1169,  1171,  1199,   422,
  1317.   1189,  1195,   422,  1196,  1156,  1200,  -471,  -471,  1201,  1213,
  1318.     98,  -471,  1214,  1207,     8,   644,  1217,  1152,  1202,  1203,
  1319.   -471,  1225,  1215,  1241,  1261,  1262,  1137,  1138,  1139,  1140,
  1320.   1251,   104,    70,   104,   104,    70,   149,  1263,  1146,    70,
  1321.   1264,   645,  1285,  1289,  1267,   104,   646,   104,  1268,   104,
  1322.    104,  1298,  1074,   164,  1303,  1306,   104,  1341,  1317,   360,
  1323.   1331,    21,   104,    93,  1309,   104,     8,   863,  1314,  1312,
  1324.    114,  1161,  1319,  1320,  1252,  1323,   114,  1325,    98,  1168,
  1325.    849,   458,  1333,  1335,   104,    70,   382,    70,  1344,   112,
  1326.    112,  1345,    98,   645,  1347,   112,   112,   112,   864,  1346,
  1327.   1349,  1350,   323,   565,     5,   396,   422,   325,  -699,   950,
  1328.   -699,  -699,   326,    21,   344,    93,   957,  -699,    98,    98,
  1329.     98,    98,   305,   710,   114,  1206,  1211,  -699,  1232,  -699,
  1330.   -699,  1280,   768,  1162,  1100,   917,  -699,   884,  1240,  -699,
  1331.   -699,   383,  1132,  -699,   949,  -699,    85,   361,   928,   827,
  1332.    929,   123,   124,  1218,  1013,   865,   315,   111,  -699,  -699,
  1333.    397,   953,  -699,   356,  -699,  1030,  1066,    86,    98,   456,
  1334.    104,    48,   668,   749,  1218,  1218,  1029,   187,     8,    92,
  1335.     10,    11,   104,   104,  1339,    70,    12,    48,   799,   947,
  1336.   1296,   998,   794,  1316,  1318,     0,   187,   488,  1032,  1218,
  1337.     48,    15,   620,   532,   958,    16,   959,     0,   960,    17,
  1338.      0,   655,   656,   154,   479,   480,   481,   482,   483,   484,
  1339.    485,   486,   487,   104,    87,    21,   185,    93,     0,     0,
  1340.      0,     0,     0,   551,   489,   490,     0,     0,   229,   491,
  1341.    492,   493,   494,   278,    48,     0,     0,     0,     0,    19,
  1342.      0,     0,   657,     0,     0,   278,   278,     0,     0,    21,
  1343.    356,    22,   853,   154,  1297,     0,   278,     0,   658,     0,
  1344.      0,     0,     0,   139,   104,   104,    70,     0,     0,     0,
  1345.    722,   722,   794,   140,     0,     0,    48,     0,     0,   154,
  1346.      0,    26,     0,  1315,     0,     0,   659,     0,   104,   104,
  1347.      0,   104,     0,   363,   114,   114,     0,     0,     0,     0,
  1348.    114,   114,   114,     0,     0,     0,     8,    92,    10,    11,
  1349.      0,    98,     0,     0,    12,     0,   356,     0,     7,     8,
  1350.     70,     0,    11,   375,   377,   380,   228,     0,     0,    15,
  1351.      0,   277,     0,    16,     0,     0,     0,    17,     0,   104,
  1352.     48,     0,   112,   277,   277,     0,     0,     0,     0,   104,
  1353.    104,   104,     0,    21,   277,    93,    19,     0,     0,   510,
  1354.      0,     0,     0,     0,     0,     0,    21,     0,    22,     0,
  1355.      0,    94,     0,     0,     0,     0,   452,   101,   105,   453,
  1356.    603,   916,   454,     0,     0,     0,     0,   185,   462,     0,
  1357.    604,   362,     0,     0,     0,     0,     0,   501,    26,     0,
  1358.    513,     0,     0,   605,   515,     0,     0,     0,     0,    98,
  1359.      0,     0,     0,     0,     0,   278,     0,   112,   112,   112,
  1360.      0,     0,     0,     8,   230,    10,   184,     0,   229,   279,
  1361.    104,    12,   104,     0,     0,     0,   185,     0,   952,    98,
  1362.      0,   279,   279,   104,     0,    98,    15,   794,   794,   794,
  1363.     16,     0,   279,     0,    17,   532,   552,     0,     0,     0,
  1364.      0,   313,   316,     0,     0,    98,     0,    98,     0,     0,
  1365.     21,     0,    93,     0,     0,     0,     0,     0,   816,     0,
  1366.     98,    48,  1004,     0,     0,     0,     0,     0,     0,   364,
  1367.      0,     0,   374,   376,     0,     0,     0,     0,   104,   104,
  1368.    104,   104,     0,     0,     0,   104,   794,   794,   794,     0,
  1369.      0,     0,     0,   277,     0,     0,     0,     0,   154,     0,
  1370.      0,   185,     0,    98,     0,   552,   228,     0,     0,     0,
  1371.      0,     0,   854,   104,  1041,  1044,   104,     0,    70,     0,
  1372.     98,     0,     0,   859,     0,   363,   481,   482,   483,   484,
  1373.    485,   486,   487,     0,   362,     0,     0,   114,   625,     0,
  1374.    626,   193,   375,   377,     0,     0,     0,     0,     0,     0,
  1375.    699,   154,  1243,    48,     0,   639,     0,     0,   678,     0,
  1376.    104,   104,     0,   104,     0,     0,     0,     7,     8,     0,
  1377.      0,  1044,     0,     0,     0,   278,     0,   665,   278,     0,
  1378.      0,   794,   794,   278,   678,   678,   678,   678,   320,     0,
  1379.      0,   279,     0,     0,    70,     0,     0,   278,     0,     0,
  1380.      0,   278,     0,   362,   230,    19,     0,   352,   510,     0,
  1381.      0,     0,   114,   114,   114,    21,     0,    22,  1294,     0,
  1382.      0,     0,   391,   362,     0,     0,   104,    70,   104,   603,
  1383.      0,     0,   364,   278,   229,     0,     0,     0,     0,   604,
  1384.    104,   104,     0,   104,     0,  1136,     0,    26,     0,   513,
  1385.   1141,   552,   605,   515,     0,     0,   277,     0,   363,     0,
  1386.      0,     0,     0,     0,     6,     0,     7,     8,     9,    10,
  1387.     11,    70,     0,   277,     0,    12,   277,     0,     0,     0,
  1388.      0,   277,   277,   277,   277,   277,     0,     0,    13,    14,
  1389.     15,     0,   954,     0,    16,   277,     0,     0,    17,   277,
  1390.      0,   364,    18,     0,    19,     0,     0,     0,    20,     0,
  1391.      0,   627,   628,     0,    21,     0,    22,     0,     0,    23,
  1392.      0,   364,     0,     0,  1186,  1187,     0,     0,    24,     0,
  1393.      0,   277,   228,     0,     0,     0,     0,     0,    25,     0,
  1394.      0,  1010,   552,   794,     0,     0,    26,     0,   363,   362,
  1395.   1017,    27,     0,  1205,   279,     0,   362,    28,    29,  1031,
  1396.      0,     0,     0,     7,     8,     0,     0,   375,   377,   380,
  1397.      0,   279,     0,     0,   279,   380,     0,     0,     0,   279,
  1398.    279,   279,   279,   279,     0,     0,     0,     0,  -511,     0,
  1399.      0,   625,   626,   279,   639,     0,   552,   279,  1233,     0,
  1400.      0,    19,     0,  -511,  -511,  1238,  1239,     0,     0,     0,
  1401.   -511,    21,     0,    22,  1244,     0,  1096,     0,   794,   794,
  1402.    794,     0,  -511,   380,     0,   139,     0,     0,     0,   279,
  1403.    230,     0,     0,  -511,  -511,   140,  -511,     0,  -511,   100,
  1404.    362,     0,   424,    26,   769,   771,   362,   364,   141,     0,
  1405.      0,     0,     0,   630,   364,     0,     0,     0,     0,   633,
  1406.      0,     0,   104,     0,     0,   924,  -511,  -511,     0,     0,
  1407.   -511,  -511,     0,  1292,  1293,     0,     0,     0,     0,   510,
  1408.   -511,     0,     0,     0,     0,   678,    21,     0,    93,   918,
  1409.      0,   452,   453,     0,   362,  1119,  1120,     0,     0,     0,
  1410.    511,     0,     0,   688,   689,     0,   690,     0,  1127,  1128,
  1411.    512,     0,     0,     0,     0,   678,     0,     0,     0,     0,
  1412.    513,   552,     0,   514,   515,   363,     8,    92,    10,    11,
  1413.      0,     0,     0,     0,    12,     0,   837,   838,   364,     0,
  1414.   1338,   552,     0,   951,   364,     0,     0,     0,     0,    15,
  1415.    452,   453,     0,    16,     0,     0,     0,    17,     0,     0,
  1416.      0,     0,     0,     0,     0,     0,     0,     0,     0,   987,
  1417.      0,     0,    98,    21,     0,    93,     0,     0,   519,   523,
  1418.    525,     0,     0,   277,   363,     0,     0,     0,     0,   781,
  1419.    782,     0,   364,     0,   781,   452,   453,     0,   278,     0,
  1420.      0,   625,   626,   375,   377,  1192,     7,   100,   639,   375,
  1421.    377,   380,     0,   277,    48,     0,   678,     0,     0,   362,
  1422.      0,     0,     0,   362,     0,     0,     0,     0,     0,     0,
  1423.   1058,     0,     0,     0,     0,     0,  1025,     0,     0,   362,
  1424.      0,     0,     0,     0,    19,   452,   453,     0,     0,     0,
  1425.      0,     0,     0,     0,    21,     0,    22,     0,     0,     0,
  1426.      0,   608,     0,   519,   523,   525,     0,     0,   108,   835,
  1427.    836,  1234,  1235,     0,  1236,  1237,     0,     0,   109,   844,
  1428.      0,   279,   362,     0,     0,   851,    26,     0,     0,     0,
  1429.     48,    27,     0,     0,     0,     0,   277,     0,     0,     0,
  1430.      0,   410,     0,     7,     8,    92,    10,    11,     0,     0,
  1431.      0,   279,    12,     0,   277,     0,     0,   364,     0,   769,
  1432.    771,   364,     0,   154,     0,   987,     0,    15,     0,   868,
  1433.      0,    16,   987,     0,     0,    17,  -423,   364,     0,     7,
  1434.    100,    19,     0,   184,     0,     0,     0,     0,     7,   100,
  1435.      0,    21,    11,    22,     0,     0,   672,     0,     0,     0,
  1436.    411,     0,     0,   625,   626,    24,   639,    48,     0,     0,
  1437.      0,     0,   999,  1000,   268,    25,     0,    19,   999,  1000,
  1438.    364,  1313,     0,    26,     0,     0,    19,    21,    27,    22,
  1439.      0,     0,     0,     0,   279,     0,    21,   268,    22,     0,
  1440.      0,    24,     0,  -423,     0,     0,     0,     0,  1019,  1020,
  1441.    108,    25,   279,   772,     0,   774,     0,     0,   987,    26,
  1442.    109,     0,   774,     0,    27,     0,   919,   920,    26,   922,
  1443.      0,     0,     0,    27,   358,     0,     0,   410,     0,     7,
  1444.      8,    92,    10,    11,     0,     0,    19,     0,    12,     0,
  1445.      0,     0,     0,   523,     0,   936,    21,     0,    22,     0,
  1446.      0,     0,     0,    15,     0,  1021,   380,    16,     0,     0,
  1447.    139,    17,  -422,   769,   771,     0,     0,    19,     0,     0,
  1448.    140,     0,   452,   453,     0,     0,     0,    21,    26,    22,
  1449.      0,     0,   987,   141,     0,     0,   411,     0,     0,     0,
  1450.   1220,    24,     0,   987,     0,   772,   774,     0,     0,     0,
  1451.      0,    25,   774,     0,     0,  1002,   278,     0,     0,    26,
  1452.      0,  1220,  1220,     0,    27,     0,     0,  1006,  1007,  1008,
  1453.      0,     0,     0,     0,     0,     0,     0,     0,     0,  -422,
  1454.      0,   375,   377,   380,     0,     0,  1220,     0,     0,     0,
  1455.      0,     0,     0,   987,     0,     0,     0,   459,     0,     0,
  1456.    987,     0,     8,   987,    10,    11,     0,     0,     0,     0,
  1457.     12,     0,     0,     0,     7,     8,   158,   159,   160,   523,
  1458.      0,     0,     0,    12,   987,    15,     0,   987,     0,    16,
  1459.      0,     0,     0,    17,   987,     0,     0,   410,   228,     7,
  1460.      8,    92,    10,    11,     0,  1062,    17,     0,    12,    21,
  1461.      0,    93,    19,     0,   277,   510,     0,     0,   987,   228,
  1462.    228,     0,    21,    15,    22,     0,     0,    16,     0,     0,
  1463.      0,    17,  -424,   987,     0,     0,   139,    19,     0,   589,
  1464.    358,     0,     0,     0,   228,     0,   140,    21,   987,    22,
  1465.      0,     0,   672,     0,    26,     0,   411,     0,     0,  1102,
  1466.      0,    24,     0,     0,     0,   987,   987,     0,   552,     0,
  1467.    930,    25,   931,     0,     0,     0,     0,     0,     0,    26,
  1468.      0,     0,     0,   935,    27,     0,   358,     0,   772,   774,
  1469.   1121,     0,     0,     0,     0,     0,   230,     0,     0,  -424,
  1470.      0,     0,     0,     0,     0,     8,     0,    10,    11,   652,
  1471.    627,   628,   279,    12,     0,     0,     0,   230,   230,     0,
  1472.      0,     0,     0,     0,     0,     0,     0,     0,    15,     0,
  1473.      0,     0,    16,     0,   358,  1150,    17,     0,   930,   931,
  1474.      0,   772,   230,     0,     0,   935,     0,   772,   774,     7,
  1475.      8,     0,    21,   184,    93,   495,     0,     0,   268,     0,
  1476.      0,   589,     0,     0,   719,   720,   362,   724,   725,   726,
  1477.    727,   728,   729,   730,   731,   732,   733,   734,   735,   736,
  1478.    737,   738,   739,   740,   741,   742,     0,    19,     0,   496,
  1479.    510,   358,     0,   358,   358,     0,     0,    21,     0,    22,
  1480.      7,     8,    92,    10,    11,     0,     0,   354,     0,    12,
  1481.      0,   603,   100,     0,   159,   160,     0,     0,     0,   358,
  1482.     12,   604,     0,     0,    15,   358,    42,     0,    16,    26,
  1483.      0,   513,    17,     0,   605,   515,     0,     0,    19,     0,
  1484.    801,   803,   772,    17,     0,     0,    42,    42,    21,   110,
  1485.     22,     0,   510,     0,     0,    42,     0,     0,     0,    21,
  1486.      0,    93,   378,     0,   364,     0,    42,     0,    42,     0,
  1487.      0,     0,   379,   511,     0,     0,     0,     0,     0,   358,
  1488.     26,     0,     0,   512,     0,   141,   589,     0,   190,     0,
  1489.    355,     0,     0,   513,     0,     0,   521,   515,     0,     0,
  1490.    930,   931,     6,   935,     7,     8,     9,    10,    11,   358,
  1491.      0,     0,     0,    12,     0,     0,     0,    42,     0,     0,
  1492.    589,     0,     0,    42,     0,   190,     0,    42,    15,     0,
  1493.    110,   110,    16,     0,     0,     0,    17,     0,     0,     0,
  1494.      0,    42,    19,    42,    42,     0,   324,     0,     0,     0,
  1495.      0,     0,    21,     0,    22,     0,   869,    23,     0,     0,
  1496.      0,    42,    42,   110,     0,     0,    24,     0,     0,     0,
  1497.      0,   190,     0,     0,     0,     0,    25,     0,     0,     0,
  1498.      0,     0,     0,     0,    26,     0,     0,    42,     0,    27,
  1499.      0,   358,     0,     0,     0,    28,   721,     0,     7,     8,
  1500.      0,    10,   437,   233,   234,    42,   235,    12,     0,     0,
  1501.      0,     0,   903,     0,     0,    42,     0,     0,     0,     0,
  1502.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1503.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1504.      0,   245,   246,   247,   248,   249,    21,     0,    22,   589,
  1505.    358,     0,     0,     0,     0,  -656,     0,   250,     0,     0,
  1506.    251,     0,     0,   358,     0,   358,     0,     0,   252,   253,
  1507.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1508.      0,     0,     0,   258,     0,     0,     0,   259,     0,     0,
  1509.      0,     0,     0,     0,   946,     0,     0,   506,     0,   260,
  1510.      0,     0,     0,     0,     0,   190,   589,    42,     0,     7,
  1511.      8,     0,    10,   437,   233,   234,     0,   235,    12,   358,
  1512.      0,   358,     0,   358,     0,     0,     0,     0,     0,     0,
  1513.      0,     0,     0,    15,   236,    42,     0,    16,    42,   239,
  1514.      0,    17,    42,   240,   241,     0,   242,    19,   243,   244,
  1515.    589,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  1516.      0,     0,     0,     0,  1014,  1015,     0,     0,   250,     0,
  1517.      0,   251,     0,     0,     0,     0,     0,  1019,   100,   252,
  1518.    253,   254,    42,    42,    42,    42,     0,   255,   256,   257,
  1519.     42,     0,     0,     0,   438,     0,    42,     0,    42,     0,
  1520.    110,   110,   589,   589,     0,     0,  1046,    42,     0,     0,
  1521.    260,     0,     0,    42,     0,    19,    42,     0,   410,     0,
  1522.      7,     8,    92,    10,    11,    21,     0,    22,     0,    12,
  1523.      0,     7,     8,     0,  1021,    42,    42,     0,    42,    24,
  1524.      0,     0,     0,     0,    15,     0,     0,     0,    16,    25,
  1525.      0,     0,    17,  -425,     0,     0,     0,    26,    19,   589,
  1526.      0,     0,    27,     0,     0,     0,     0,    64,    21,    19,
  1527.     22,  1083,     0,     0,     7,     8,     0,   411,    11,    21,
  1528.      0,    22,    24,     0,     0,     0,     0,    64,    64,     0,
  1529.    115,     0,    25,   139,     0,     0,    64,     0,     0,     0,
  1530.     26,     0,     0,   140,     0,    27,     0,    64,     0,    64,
  1531.      0,    26,    19,     0,     0,   510,   141,     0,     0,  1124,
  1532.   -425,     0,    21,     0,    22,     7,     8,    92,    10,    11,
  1533.      0,   506,   354,   589,    12,     0,   839,     0,   589,     0,
  1534.   1142,     0,     0,   791,     0,     0,   840,     0,     0,    15,
  1535.      0,     0,     0,    16,    26,     0,   513,    17,    64,   605,
  1536.    515,     0,     0,    19,    64,     0,   510,     0,    64,     0,
  1537.      0,   115,   115,    21,    42,    22,     0,     0,     0,     0,
  1538.      0,     0,    64,     0,    64,    64,     0,   839,     0,     0,
  1539.      0,     8,     0,    10,    11,     0,     0,   840,     0,    12,
  1540.    358,     0,    64,    64,   115,    26,     0,   513,     0,     0,
  1541.    605,   515,   589,   589,    15,   355,     0,     0,    16,     0,
  1542.   1190,  1191,    17,     0,     0,    42,    42,   110,    64,     0,
  1543.      0,     0,     0,   848,     0,     0,     0,     0,    21,     0,
  1544.     93,   589,     0,     0,     0,     0,    64,     0,     0,    42,
  1545.     42,     0,    42,     0,     0,     0,    64,     0,     0,     0,
  1546.      0,     0,  1222,   476,   477,   478,   479,   480,   481,   482,
  1547.    483,   484,   485,   486,   487,   748,     0,   587,     0,   711,
  1548.    712,   110,    10,   437,   233,   234,   589,   235,    12,     0,
  1549.      0,     0,     0,   589,   589,     0,     0,   358,     0,     0,
  1550.      0,     0,   589,    15,   236,   237,   238,    16,     0,   239,
  1551.      0,    17,     0,   240,   241,   791,   242,    19,   243,   244,
  1552.      0,     0,   245,   246,   247,   248,   249,    21,     0,   713,
  1553.    588,     0,     0,     0,     7,     8,     0,     0,   250,     0,
  1554.      0,   251,     0,     0,     0,     0,     0,   531,    64,   252,
  1555.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1556.      0,   589,   589,   358,   258,   714,     0,     0,   259,     0,
  1557.      0,     0,    19,     0,     0,     0,    64,     0,     0,    64,
  1558.    260,     0,    21,    64,    22,     0,     0,     0,     0,     0,
  1559.    116,     0,     0,     0,     0,     0,   378,     0,     0,     0,
  1560.      0,     0,   585,     0,     0,     0,   379,   150,   791,   791,
  1561.      0,     0,     0,     0,    26,     0,     0,     0,     0,   141,
  1562.      0,     0,     0,    64,    64,    64,    64,     0,   589,     0,
  1563.      0,    64,     0,     0,     0,     0,     0,    64,     0,    64,
  1564.      0,   115,   115,     0,     0,     0,     0,     0,    64,     0,
  1565.      0,     0,     0,     0,    64,     0,     0,    64,   150,    42,
  1566.     42,   110,   110,     0,   190,     0,    42,   848,   848,   848,
  1567.      0,   116,   116,     0,     0,     0,    64,    64,     0,    64,
  1568.      0,     0,     0,     0,   150,     0,     0,     0,     0,     0,
  1569.      0,     0,     0,     0,    42,     0,     0,    42,     0,    42,
  1570.      0,     0,   150,   150,   381,     0,     0,     0,     0,     0,
  1571.      0,     0,   791,   791,     0,  1105,     0,   966,   967,    92,
  1572.     10,   232,   233,   234,     0,   235,    12,   968,   150,   969,
  1573.    970,   971,   972,   973,   974,   975,   976,   977,   978,    13,
  1574.     14,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1575.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1576.    245,   246,   247,   248,   249,    21,   190,   979,   347,     0,
  1577.    980,     0,     0,     0,     0,    42,   250,     0,     0,   251,
  1578.      0,     0,     0,     0,   793,     0,     0,   252,   253,   254,
  1579.      0,     0,     0,     0,   434,   255,   256,   257,     0,     0,
  1580.      0,     0,   258,     0,   981,     0,   259,    42,    42,    42,
  1581.      0,     0,     0,     0,     0,    64,     0,  1106,   260,     0,
  1582.      0,    42,    42,     0,    42,     7,     8,     0,     0,    11,
  1583.      0,     8,    92,    10,    11,     0,     0,   354,     0,    12,
  1584.    518,   518,   518,     0,     0,     0,     0,     0,   150,     0,
  1585.      0,     0,    42,     0,    15,     0,     0,     0,    16,     0,
  1586.      0,     0,    17,    19,     0,     0,    64,    64,   115,     0,
  1587.      0,   510,     0,    21,   850,    22,     0,     0,    21,     0,
  1588.     93,     0,     0,     0,     0,     0,     0,   139,     0,     0,
  1589.     64,    64,   511,    64,     0,     0,     0,   140,     0,     0,
  1590.      0,     0,   512,     0,     0,    26,     0,     0,     0,     0,
  1591.    141,     0,   513,     0,     0,   514,   515,     0,     0,     0,
  1592.    355,     0,   115,   607,   848,   607,   607,   518,     0,   120,
  1593.      0,     7,     8,    92,    10,    11,     0,   150,     0,   150,
  1594.     12,   381,   381,     0,     0,     0,     7,     8,   150,     0,
  1595.    424,   516,   516,   516,   150,    15,   793,   150,     0,    16,
  1596.      0,     0,     0,    17,     0,     0,     0,     0,   148,    19,
  1597.      0,     0,     0,     0,     0,     0,   150,     0,     0,    21,
  1598.      0,    22,     0,     0,    19,     0,     0,   510,     0,     0,
  1599.    191,     0,     0,    24,    21,     0,    22,     0,     0,   848,
  1600.    848,   848,     0,    25,     0,     0,     7,   100,   603,   191,
  1601.    424,    26,     0,     0,     0,     0,    27,     0,   604,   148,
  1602.      0,     0,     0,     0,     0,     0,    26,     0,   513,     0,
  1603.      0,   605,   515,     0,   516,     0,   516,   516,   516,     0,
  1604.      0,     0,     0,    42,    19,   148,     0,     0,     0,   793,
  1605.    793,     0,     0,     0,    21,     0,    22,   531,     0,     0,
  1606.      0,     0,   757,   148,   148,   148,     0,     0,    24,     0,
  1607.      0,     0,     0,   390,   518,   518,     0,   518,    25,     0,
  1608.      0,     0,   585,     0,   518,     0,    26,     0,     0,   148,
  1609.      0,    27,     0,     0,     0,     0,     0,     0,     0,     0,
  1610.     64,    64,   115,   115,     0,     0,     0,    64,   850,   850,
  1611.    850,     0,     0,     0,     0,   607,     0,     0,     0,   191,
  1612.      0,     0,    62,     0,     0,     0,     0,     0,     0,     0,
  1613.      0,     0,     0,     0,     0,    64,     0,     0,    64,     0,
  1614.     64,     0,   102,   106,     0,     0,     0,   100,     0,   159,
  1615.    160,   125,     0,   793,   793,    12,     0,     0,     0,     0,
  1616.      0,     0,     0,     0,   157,     0,   607,   607,   843,     0,
  1617.      0,     0,     0,     0,   843,     0,     0,     0,    17,     0,
  1618.      0,     0,     0,     0,     0,   516,   516,   510,   516,     0,
  1619.    150,   150,     0,   150,    21,   790,    93,     0,     8,   151,
  1620.     10,   152,     0,     0,     0,     0,    12,   191,   511,   148,
  1621.      0,     0,     0,     0,     0,     0,    64,     0,   512,   306,
  1622.      0,    15,   381,   308,     0,    16,   516,     0,   513,    17,
  1623.      0,   514,   515,     0,     0,     0,     0,    62,     0,     0,
  1624.    330,   518,     7,     8,     0,    21,   184,    93,    64,    64,
  1625.     64,   434,   434,   434,     0,     0,     0,   102,   106,     0,
  1626.      0,     0,    64,    64,     0,    64,     0,     0,     0,     0,
  1627.      0,     0,     0,     0,     0,     0,     0,   516,   516,   516,
  1628.     19,     0,     0,     0,   148,   790,   148,   148,     0,     0,
  1629.     21,     0,    22,    64,     0,     0,     0,     0,   148,     0,
  1630.    148,   419,   148,   148,   139,     0,     7,     8,     0,   148,
  1631.     11,   425,     0,     0,   140,   148,     0,     0,   148,     0,
  1632.      0,     0,    26,     0,     0,     0,    83,   141,     0,     0,
  1633.      0,     0,   518,     0,   518,     0,     0,   148,    83,    83,
  1634.      0,    83,     0,     0,    19,   518,     0,     0,     0,   518,
  1635.    518,   518,   516,     0,    21,     0,    22,     0,     0,     0,
  1636.      0,     0,     0,     0,     0,   850,   177,     0,   378,     0,
  1637.      0,     0,     0,     0,     0,     0,     0,     0,   379,     0,
  1638.      0,     0,     0,     0,     0,     0,    26,     0,     0,     0,
  1639.      0,   141,     0,     0,     0,     0,     0,     0,     0,     0,
  1640.    607,   607,   843,   843,     0,     0,     0,   607,   843,   843,
  1641.    843,     0,     0,     0,     0,    83,     0,    83,    83,    83,
  1642.      0,     0,    83,    83,     0,     7,     8,     0,     0,   424,
  1643.      0,   559,     0,     0,   560,   150,     0,     0,   561,     0,
  1644.    850,   850,   850,   516,     0,   516,     0,     0,   191,     0,
  1645.      0,     0,     0,     0,     0,     0,   516,     0,     0,     0,
  1646.    790,   790,   790,    19,     0,     0,     0,     0,     0,     0,
  1647.      0,     0,     0,    21,     0,    22,   148,     0,     0,   609,
  1648.      0,     0,   757,   757,    64,   757,   619,   139,     0,     0,
  1649.      0,     0,   306,     0,   308,     0,     0,   140,     0,     0,
  1650.      0,     0,     0,   518,   518,    26,     0,    83,     0,   425,
  1651.    141,   516,   516,   516,   516,     0,     0,     0,   516,   790,
  1652.    790,   790,     0,     0,     0,     0,     0,   148,   148,   841,
  1653.      0,   666,   669,     0,   419,   841,     0,     0,     0,     0,
  1654.   -304,     8,  -304,    10,   184,    83,     0,     0,   150,    12,
  1655.    150,   148,   148,     0,   148,     0,     0,     0,     0,     0,
  1656.      0,     0,   607,   607,    15,   607,     0,     0,    16,     0,
  1657.      0,     0,    17,     0,     0,     0,     0,     0,  -304,     0,
  1658.      0,   510,     0,   841,     0,     0,     0,     0,    21,    83,
  1659.     93,    83,    83,     0,     0,     0,     0,     0,     0,     0,
  1660.      0,     0,   511,     0,     0,     0,     0,     0,     0,     0,
  1661.      0,     0,   512,     0,   790,   790,     0,     0,     0,     0,
  1662.   -304,    83,   513,     0,     0,   514,   515,    83,     0,     0,
  1663.     83,     0,     0,     0,    83,   471,   472,   473,   474,   475,
  1664.    476,   477,   478,   479,   480,   481,   482,   483,   484,   485,
  1665.    486,   487,   353,     0,     7,     8,    92,    10,   232,   233,
  1666.    234,   354,   235,    12,     0,   381,     0,     0,     0,     0,
  1667.      0,     0,     0,   516,   516,     0,   516,     0,    15,   236,
  1668.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1669.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1670.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  1671.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1672.      0,   102,   106,     0,   252,   253,   254,     0,     0,     0,
  1673.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1674.    381,   381,   381,   259,   355,   559,   560,    83,   561,     0,
  1675.      0,     0,     0,  -666,     0,   260,     0,     0,     0,     0,
  1676.      0,   148,   148,   148,   148,     0,  1001,     0,   148,   841,
  1677.    841,   841,     0,     0,     0,     0,     0,     0,     0,     0,
  1678.      0,     0,     0,     0,   150,     0,     0,     0,     0,     0,
  1679.      0,     0,     0,     0,     0,     0,   148,     0,     0,     0,
  1680.      0,   455,     0,     7,     8,    92,    10,   232,   233,   234,
  1681.    354,   235,    12,    83,     0,     0,     0,     0,     0,     0,
  1682.      0,     0,     0,    83,     0,    83,    83,    15,   236,   237,
  1683.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  1684.    242,    19,   243,   244,   510,     0,   245,   246,   247,   248,
  1685.    249,    21,     0,    22,  -237,     0,     0,     0,     0,     0,
  1686.      0,     0,   250,     0,     0,   940,     0,   177,   191,     0,
  1687.      0,     0,     0,   252,   253,   941,     0,     0,     0,     0,
  1688.      0,   255,   256,   257,     0,   513,     0,     0,   788,   515,
  1689.      0,     0,   259,   355,     0,     0,     7,     8,   158,   159,
  1690.    160,     0,     0,     0,   260,    12,     0,     0,     0,   148,
  1691.      0,   148,     0,     0,     0,     0,     0,     0,     0,     0,
  1692.      0,     0,     0,   148,   148,     0,   148,     0,    17,     0,
  1693.      0,     0,     0,     0,    19,     0,     0,   510,     0,     0,
  1694.      0,     0,     0,     0,    21,     0,    22,     0,     0,     0,
  1695.      0,     0,     0,     0,     0,   306,   308,     0,   603,     0,
  1696.      0,     0,   425,     0,     0,     0,     0,     0,   604,     0,
  1697.      0,     0,     0,     0,     0,     0,    26,     0,   513,     0,
  1698.      0,   611,   515,     0,     0,     0,     0,     0,     0,     0,
  1699.   1026,     0,    83,  1026,     0,   419,     0,     0,     0,     0,
  1700.      0,     0,    83,    83,    83,     0,   455,     0,     7,     8,
  1701.     92,    10,   232,   233,   234,   354,   235,    12,     0,     0,
  1702.      0,     0,     0,     0,     0,     0,   841,     0,     0,     0,
  1703.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1704.     17,     0,   240,   241,     0,   242,    19,   243,   244,   510,
  1705.      0,   245,   246,   247,   248,   249,    21,     0,    22,  -237,
  1706.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1707.    845,   419,     0,     0,  1164,     0,     0,     0,   252,   253,
  1708.    846,     0,     0,    83,     0,    83,   255,   256,   257,     0,
  1709.    513,     0,     0,   847,   515,     0,    83,   259,   355,     0,
  1710.      0,   841,   841,   841,  1101,     0,     0,     0,     0,   260,
  1711.      0,     0,     0,     0,     0,     0,     0,   559,   560,     0,
  1712.    561,   466,   467,   468,  1165,   469,   470,   471,   472,   473,
  1713.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  1714.    484,   485,   486,   487,     0,   148,     0,     0,   419,     0,
  1715.      0,     0,     0,     0,     0,     0,     0,     0,  1255,     0,
  1716.    966,   967,    92,    10,   232,   233,   234,     0,   235,    12,
  1717.    968,     0,   969,   970,   971,   972,   973,   974,   975,   976,
  1718.    977,   978,    13,    14,    15,   236,   237,   238,    16,    83,
  1719.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  1720.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  1721.    979,   347,     0,   980,     0,     0,     0,     0,     0,   250,
  1722.      0,     0,   251,     0,     0,     0,     0,     0,     0,     0,
  1723.    252,   253,   254,    83,    83,     0,    83,     0,   255,   256,
  1724.    257,     0,     0,     0,     0,   258,     0,   981,     0,   259,
  1725.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1726.   1256,   260,  1277,     0,   966,   967,    92,    10,   232,   233,
  1727.    234,     0,   235,    12,   968,     0,   969,   970,   971,   972,
  1728.    973,   974,   975,   976,   977,   978,    13,    14,    15,   236,
  1729.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1730.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1731.    248,   249,    21,     0,   979,   347,     0,   980,     0,     0,
  1732.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1733.      0,     0,     0,     0,   252,   253,   254,     0,     0,     0,
  1734.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1735.      0,   981,     0,   259,     0,     0,     0,     0,     0,     0,
  1736.      0,     0,     0,     0,  1278,   260,  1277,     0,   966,   967,
  1737.     92,    10,   232,   233,   234,     0,   235,    12,   968,     0,
  1738.    969,   970,   971,   972,   973,   974,   975,   976,   977,   978,
  1739.     13,    14,    15,   236,   237,   238,    16,     0,   239,     0,
  1740.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1741.      0,   245,   246,   247,   248,   249,    21,     0,   979,   347,
  1742.      0,   980,     0,     0,     0,     0,     0,   250,     0,     0,
  1743.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1744.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1745.      0,     0,     0,   258,     0,   981,     0,   259,     0,     0,
  1746.      0,     0,     0,     0,     0,     0,     0,     0,  1283,   260,
  1747.   1277,     0,   966,   967,    92,    10,   232,   233,   234,     0,
  1748.    235,    12,   968,     0,   969,   970,   971,   972,   973,   974,
  1749.    975,   976,   977,   978,    13,    14,    15,   236,   237,   238,
  1750.     16,     0,   239,     0,    17,     0,   240,   241,     0,   242,
  1751.     19,   243,   244,     0,     0,   245,   246,   247,   248,   249,
  1752.     21,     0,   979,   347,     0,   980,     0,     0,     0,     0,
  1753.      0,   250,     0,     0,   251,     0,     0,     0,     0,     0,
  1754.      0,     0,   252,   253,   254,     0,     0,     0,     0,     0,
  1755.    255,   256,   257,     0,     0,     0,     0,   258,     0,   981,
  1756.      0,   259,     0,     0,     0,     0,     0,     0,     0,     0,
  1757.      0,     0,  1322,   260,   965,     0,   966,   967,    92,    10,
  1758.    232,   233,   234,     0,   235,    12,   968,     0,   969,   970,
  1759.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1760.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1761.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1762.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1763.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1764.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1765.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1766.      0,   258,     0,   981,  1249,   259,   966,   967,    92,    10,
  1767.    232,   233,   234,     0,   235,    12,   968,   260,   969,   970,
  1768.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1769.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1770.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1771.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1772.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1773.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1774.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1775.      0,   258,     0,   981,  1310,   259,   966,   967,    92,    10,
  1776.    232,   233,   234,     0,   235,    12,   968,   260,   969,   970,
  1777.    971,   972,   973,   974,   975,   976,   977,   978,    13,    14,
  1778.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1779.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1780.    246,   247,   248,   249,    21,     0,   979,   347,     0,   980,
  1781.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1782.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1783.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1784.      0,   258,     0,   981,   634,   259,     7,     8,    92,    10,
  1785.    232,   233,   234,   354,   235,    12,     0,   260,     0,     0,
  1786.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1787.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  1788.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  1789.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  1790.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  1791.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  1792.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  1793.      0,   258,     0,     0,     0,   259,   355,     0,     0,     0,
  1794.      0,     0,     0,     0,     0,  -666,   587,   260,   711,   712,
  1795.      0,    10,   437,   233,   234,     0,   235,    12,   474,   475,
  1796.    476,   477,   478,   479,   480,   481,   482,   483,   484,   485,
  1797.    486,   487,    15,   236,   237,   238,    16,     0,   239,     0,
  1798.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1799.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1800.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1801.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1802.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1803.      0,     0,     0,   258,   714,     0,   587,   259,   711,   712,
  1804.      0,    10,   437,   233,   234,     0,   235,    12,   826,   260,
  1805.      0,     0,     0,     0,  1042,     0,     0,     0,     0,     0,
  1806.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1807.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1808.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1809.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1810.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1811.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1812.      0,     0,     0,   258,     0,     0,   587,   259,   711,   712,
  1813.      0,    10,   437,   233,   234,     0,   235,    12,  -384,   260,
  1814.      0,     0,     0,     0,  1042,     0,     0,     0,     0,     0,
  1815.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1816.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1817.      0,   245,   246,   247,   248,   249,    21,     0,   713,   588,
  1818.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1819.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1820.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1821.      0,     0,     0,   258,     0,     0,  1158,   259,     7,     8,
  1822.     92,    10,   232,   233,   234,     0,   235,    12,  1071,   260,
  1823.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1824.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1825.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  1826.      0,   245,   246,   247,   248,   249,    21,     0,    22,  1159,
  1827.      0,  1160,     0,     0,     0,     0,     0,   250,     0,     0,
  1828.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1829.    254,     0,     0,     0,     0,     0,   255,   256,   257,   196,
  1830.      0,     0,     8,   258,    10,    11,     0,   259,     0,     0,
  1831.     12,     0,     0,     0,     0,     0,     0,     0,     0,   260,
  1832.      0,     0,     0,     0,     0,    15,     0,     0,     0,    16,
  1833.      0,     0,     0,    17,     0,   197,   198,     0,     0,     0,
  1834.      0,     0,   199,     0,     0,     0,     0,     0,     0,    21,
  1835.      0,    93,     0,   200,     0,   201,   202,   203,     0,   204,
  1836.    205,   206,   207,   208,   209,   210,   211,   212,   213,   214,
  1837.    215,   216,   217,   218,   219,   220,   221,     0,     0,   222,
  1838.    223,   224,     0,   455,   225,     7,     8,   226,    10,   232,
  1839.    233,   234,     0,   235,    12,     0,     0,     0,     0,     0,
  1840.      0,     0,   227,     0,     0,     0,     0,     0,     0,    15,
  1841.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1842.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1843.    247,   248,   249,    21,     0,    22,  -237,     0,     0,     0,
  1844.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1845.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1846.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1847.    258,     0,     0,   587,   259,     7,     8,     0,    10,   437,
  1848.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1849.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1850.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1851.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1852.    247,   248,   249,    21,     0,    22,   588,     0,     0,     0,
  1853.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1854.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1855.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1856.    258,     0,     0,   455,   259,     7,     8,     0,    10,   232,
  1857.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1858.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1859.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1860.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1861.    247,   248,   249,    21,     0,    22,  -237,     0,     0,     0,
  1862.      0,     0,     0,     0,   250,     0,     0,  1177,     0,     0,
  1863.      0,     0,     0,     0,     0,   252,   253,  1178,     0,     0,
  1864.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1865.   1179,     0,     0,  1229,   259,     7,     8,     0,    10,   232,
  1866.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1867.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1868.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1869.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1870.    247,   248,   249,    21,     0,    22,     0,     0,  -139,     0,
  1871.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1872.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1873.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1874.    258,     0,     0,   721,   259,     7,     8,     0,    10,   437,
  1875.    233,   234,     0,   235,    12,     0,   260,     0,     0,     0,
  1876.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1877.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1878.    241,     0,   242,    19,   243,   244,     0,     0,   245,   246,
  1879.    247,   248,   249,    21,     0,    22,     0,     0,     0,     0,
  1880.      0,     0,     0,     0,   250,     0,     0,   251,     0,     0,
  1881.      0,     0,     0,     0,     0,   252,   253,   254,     0,     0,
  1882.      0,     0,     0,   255,   256,   257,     0,     0,     0,     0,
  1883.    258,     0,     0,     0,   259,     0,     0,     0,     0,     0,
  1884.      0,     0,     0,     0,  -656,   800,   260,     7,     8,     0,
  1885.     10,   437,   233,   234,     0,   235,    12,   475,   476,   477,
  1886.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  1887.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1888.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1889.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  1890.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1891.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1892.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1893.      0,     0,   258,     0,     0,   802,   259,     7,     8,     0,
  1894.     10,   437,   233,   234,     0,   235,    12,     0,   260,     0,
  1895.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1896.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1897.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1898.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  1899.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1900.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1901.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1902.      0,     0,   258,     0,     7,     8,   259,    10,   437,   233,
  1903.    234,     0,   235,    12,     0,     0,     0,     0,   260,     0,
  1904.      0,     0,     0,     0,     0,     0,     0,     0,    15,   236,
  1905.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  1906.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  1907.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  1908.      0,     0,     0,   250,     0,     0,   251,     0,     0,     0,
  1909.      0,     0,     0,     0,   252,   253,   254,     0,     0,     0,
  1910.      0,     0,   255,   256,   257,     0,     0,     0,     0,   258,
  1911.      0,     0,     0,   259,     0,     0,     0,     0,     0,     0,
  1912.      0,     0,     0,     0,     0,   260,   760,   966,   967,    92,
  1913.     10,   232,   233,   234,     0,   235,    12,   968,     0,   969,
  1914.    970,   971,   972,   973,   974,   975,   976,   977,   978,    13,
  1915.     14,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  1916.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  1917.    245,   246,   247,   248,   249,    21,     0,   979,   347,     0,
  1918.    980,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  1919.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  1920.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  1921.      0,     0,   258,     0,   981,     0,   259,     0,     0,     0,
  1922.      0,     0,     0,     0,     0,     0,     0,  1110,   260,   966,
  1923.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1924.      0,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1925.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1926.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1927.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1928.    347,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1929.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1930.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1931.      0,     0,     0,     0,   258,     0,   981,     0,   259,   966,
  1932.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1933.    260,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1934.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1935.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1936.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1937.   1270,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1938.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1939.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1940.      0,     0,     0,     0,   258,     0,   981,     0,   259,   966,
  1941.    967,    92,    10,   232,   233,   234,     0,   235,    12,   968,
  1942.    260,   969,   970,   971,   972,   973,   974,   975,   976,   977,
  1943.    978,    13,    14,    15,   236,   237,   238,    16,     0,   239,
  1944.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1945.      0,     0,   245,   246,   247,   248,   249,    21,     0,   979,
  1946.      0,     0,   980,     0,     0,     0,     0,     0,   250,     0,
  1947.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  1948.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  1949.      0,     0,     0,     0,   258,     0,   981,     0,   259,     7,
  1950.      8,    92,    10,   232,   233,   234,   354,   235,    12,     0,
  1951.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1952.      0,     0,     0,    15,   236,   237,   238,    16,     0,   239,
  1953.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  1954.    510,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  1955.      0,     0,     0,     0,     0,     0,     0,     0,   250,     0,
  1956.      0,   786,     0,     0,     0,     0,     0,     0,     0,   252,
  1957.    253,   787,     0,     0,     0,     0,     0,   255,   256,   257,
  1958.      0,   513,     0,     0,   788,   515,     0,     0,   259,   355,
  1959.      7,     8,    92,    10,   232,   233,   234,   354,   235,    12,
  1960.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  1961.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  1962.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  1963.    244,   510,     0,   245,   246,   247,   248,   249,    21,     0,
  1964.     22,     0,     0,     0,     0,     0,     0,     0,     0,   250,
  1965.      0,     0,   845,     0,     0,     0,     0,     0,     0,     0,
  1966.    252,   253,   846,     0,     0,     0,     0,     0,   255,   256,
  1967.    257,     0,   513,     0,     0,   847,   515,     0,     0,   259,
  1968.    355,     7,     8,     0,    10,   232,   233,   234,     0,   235,
  1969.     12,   260,     0,     0,     0,     0,     0,     0,     0,     0,
  1970.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  1971.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  1972.    243,   244,   510,     0,   245,   246,   247,   248,   249,    21,
  1973.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  1974.    250,     0,     0,   786,     0,     0,     0,     0,     0,     0,
  1975.      0,   252,   253,   787,     0,     0,     0,     0,     0,   255,
  1976.    256,   257,     0,   513,     0,     0,   788,   515,     7,     8,
  1977.      0,    10,   232,   233,   234,     0,   235,    12,     0,     0,
  1978.      0,     0,   260,     0,     0,     0,     0,     0,     0,     0,
  1979.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  1980.     17,     0,   240,   241,     0,   242,    19,   243,   244,   510,
  1981.      0,   245,   246,   247,   248,   249,    21,     0,    22,     0,
  1982.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  1983.    845,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  1984.    846,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  1985.    513,     0,     0,   847,   515,     7,     8,     0,    10,   232,
  1986.    233,   234,     0,   235,    12,     0,     0,     0,     0,   260,
  1987.      0,     0,     0,     0,     0,     0,     0,     0,     0,    15,
  1988.    236,   237,   238,    16,     0,   239,     0,    17,     0,   240,
  1989.    241,     0,   242,    19,   243,   244,   510,     0,   245,   246,
  1990.    247,   248,   249,    21,     0,    22,     0,     0,     0,     0,
  1991.      0,     0,     0,     0,   250,     0,     0,   940,     0,     0,
  1992.      0,     0,     0,     0,     0,   252,   253,   941,     0,     0,
  1993.      0,     0,     0,   255,   256,   257,     0,   513,     0,     0,
  1994.    788,   515,     7,     8,     0,    10,   232,   233,   234,     0,
  1995.    235,    12,     0,     0,     0,     0,   260,     0,     0,     0,
  1996.      0,     0,     0,     0,     0,     0,    15,   236,   237,   238,
  1997.     16,     0,   239,     0,    17,     0,   240,   241,     0,   242,
  1998.     19,   243,   244,     0,     0,   245,   246,   247,   248,   249,
  1999.     21,     0,    22,     0,     0,     0,     0,     0,     0,     0,
  2000.      0,   250,     0,     0,   251,     0,     0,     0,     0,   304,
  2001.      0,     0,   252,   253,   254,     0,     0,     0,     0,     0,
  2002.    255,   256,   257,     0,     0,     0,     0,   258,     0,     7,
  2003.      8,   259,    10,   437,   233,   234,     0,   235,    12,     0,
  2004.      0,     0,     0,   260,     0,     0,     0,     0,     0,     0,
  2005.      0,     0,     0,    15,   236,   237,   238,    16,     0,   239,
  2006.      0,    17,     0,   240,   241,     0,   242,    19,   243,   244,
  2007.      0,     0,   245,   246,   247,   248,   249,    21,     0,    22,
  2008.      0,     0,  1087,     0,     0,     0,     0,     0,   250,     0,
  2009.      0,   251,     0,     0,     0,     0,     0,     0,     0,   252,
  2010.    253,   254,     0,     0,     0,     0,     0,   255,   256,   257,
  2011.      0,     0,     0,     0,   258,     0,     7,     8,   259,    10,
  2012.    232,   233,   234,     0,   235,    12,     0,     0,     0,     0,
  2013.    260,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  2014.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  2015.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  2016.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  2017.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  2018.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  2019.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  2020.      0,   258,     0,     7,     8,   259,    10,   437,   233,   234,
  2021.      0,   235,    12,     0,     0,     0,     0,   260,     0,     0,
  2022.      0,     0,     0,     0,     0,     0,     0,    15,   236,   237,
  2023.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  2024.    242,    19,   243,   244,     0,     0,   245,   246,   247,   248,
  2025.    249,    21,     0,    22,   463,     0,     0,     0,     0,     0,
  2026.      0,     0,   250,     0,     0,   251,     0,     0,     0,     0,
  2027.      0,     0,     0,   252,   253,   254,     0,     0,     0,     0,
  2028.      0,   255,   256,   257,     0,     0,     7,     8,   464,    10,
  2029.    437,   233,   234,     0,   235,    12,     0,     0,     0,     0,
  2030.      0,     0,     0,     0,   260,     0,     0,     0,     0,     0,
  2031.     15,   236,   237,   238,    16,     0,   239,     0,    17,     0,
  2032.    240,   241,     0,   242,    19,   243,   244,     0,     0,   245,
  2033.    246,   247,   248,   249,    21,     0,    22,     0,     0,     0,
  2034.      0,     0,     0,     0,     0,   250,     0,     0,   251,     0,
  2035.      0,     0,     0,     0,     0,     0,   252,   253,   254,     0,
  2036.      0,     0,     0,     0,   255,   256,   257,     0,     0,     0,
  2037.      0,   258,   500,     7,     8,     0,    10,   437,   233,   234,
  2038.      0,   235,    12,     0,     0,     0,     0,   260,     0,     0,
  2039.      0,     0,     0,     0,     0,     0,     0,    15,   236,   237,
  2040.    238,    16,     0,   239,     0,    17,     0,   240,   241,     0,
  2041.    242,    19,   243,   244,     0,     0,   245,   246,   247,   248,
  2042.    249,    21,     0,    22,     0,     0,     0,     0,     0,     0,
  2043.      0,     0,   250,     0,     0,   251,     0,     0,     0,     0,
  2044.      0,     0,     0,   252,   253,   254,     0,     0,     0,     0,
  2045.      0,   255,   256,   257,     0,     0,     0,     0,   258,     0,
  2046.      7,   697,   259,    10,   437,   233,   234,     0,   235,    12,
  2047.      0,     0,     0,     0,   260,     0,     0,     0,     0,     0,
  2048.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  2049.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  2050.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  2051.     22,     0,     0,     0,     0,     0,     0,     0,     0,   250,
  2052.      0,     0,   251,     0,     0,     0,     0,     0,     0,     0,
  2053.    252,   253,   254,     0,     0,     0,     0,     0,   255,   256,
  2054.    257,     0,     0,     0,     0,   258,     0,     7,     8,   259,
  2055.     10,   437,   233,   234,     0,   235,    12,     0,     0,     0,
  2056.      0,   260,     0,     0,     0,     0,     0,     0,     0,     0,
  2057.      0,    15,   236,   237,   238,    16,     0,   239,     0,    17,
  2058.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  2059.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  2060.      0,     0,     0,     0,     0,     0,   250,     0,     0,   890,
  2061.      0,     0,     0,     0,     0,     0,     0,   252,   253,   891,
  2062.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  2063.      0,     0,   258,     0,     7,     8,   259,    10,   437,   233,
  2064.    234,     0,   235,    12,     0,     0,     0,     0,   260,     0,
  2065.      0,     0,     0,     0,     0,     0,     0,     0,    15,   236,
  2066.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  2067.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  2068.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  2069.      0,     0,     0,   250,     0,     0,  1177,     0,     0,     0,
  2070.      0,     0,     0,     0,   252,   253,  1178,     0,     0,     0,
  2071.      0,     0,   255,   256,   257,     0,     0,     0,     0,  1179,
  2072.      0,  1242,     8,   259,    10,   437,   233,   234,     0,   235,
  2073.     12,     0,     0,     0,     0,   260,     0,     0,     0,     0,
  2074.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  2075.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  2076.    243,   244,     0,     0,   245,   246,   247,   248,   249,    21,
  2077.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  2078.    250,     0,     0,   251,     0,     0,     0,     0,     0,     0,
  2079.      0,   252,   253,   254,     0,     0,     0,     0,     0,   255,
  2080.    256,   257,     0,     0,     0,     0,   258,     0,     7,     8,
  2081.    259,    10,   437,   233,   234,     0,   235,    12,     0,     0,
  2082.      0,     0,   260,     0,     0,     0,     0,     0,     0,     0,
  2083.      0,     0,    15,   236,   237,   238,    16,     0,   239,     0,
  2084.     17,     0,   240,   241,     0,   242,    19,   243,   244,     0,
  2085.      0,   245,   246,   247,   248,   249,    21,     0,    22,     0,
  2086.      0,     0,     0,     0,     0,     0,     0,   250,     0,     0,
  2087.    251,     0,     0,     0,     0,     0,     0,     0,   252,   253,
  2088.    254,     0,     0,     0,     0,     0,   255,   256,   257,     0,
  2089.      0,     7,     8,   258,    10,   437,   233,   234,     0,   235,
  2090.     12,     0,     0,     0,     0,     0,     0,     0,     0,   260,
  2091.      0,     0,     0,     0,     0,    15,   236,   237,   238,    16,
  2092.      0,   239,     0,    17,     0,   240,   241,     0,   242,    19,
  2093.    243,   244,     0,     0,   245,   246,   247,   248,   249,    21,
  2094.      0,    22,     0,     0,     0,     0,     0,     0,     0,     0,
  2095.    250,     0,     0,   890,     0,     0,     0,     0,     0,     0,
  2096.      0,   252,   253,   891,     0,     0,     0,     0,     0,   255,
  2097.    256,   257,     0,     0,     7,     8,   258,    10,   232,   233,
  2098.    234,     0,   235,    12,     0,     0,     0,     0,     0,     0,
  2099.      0,     0,   260,     0,     0,     0,     0,     0,    15,   236,
  2100.    237,   238,    16,     0,   239,     0,    17,     0,   240,   241,
  2101.      0,   242,    19,   243,   244,     0,     0,   245,   246,   247,
  2102.    248,   249,    21,     0,    22,     0,     0,     0,     0,     0,
  2103.      0,     0,     0,   250,     0,     0,  1177,     0,     0,     0,
  2104.      0,     0,     0,     0,   252,   253,  1178,     0,     0,     0,
  2105.      0,     0,   255,   256,   257,     0,     0,     7,     8,  1179,
  2106.     10,   437,   233,   234,     0,   235,    12,     0,     0,     0,
  2107.      0,     0,     0,     0,     0,   260,     0,     0,     0,     0,
  2108.      0,    15,   236,     0,     0,    16,     0,   239,     0,    17,
  2109.      0,   240,   241,     0,   242,    19,   243,   244,     0,     0,
  2110.    245,   246,   247,   248,   249,    21,     0,    22,     0,     0,
  2111.      0,     0,     0,     0,     0,     0,   250,     0,     0,   251,
  2112.      0,     0,     0,     0,     0,     0,     0,   252,   253,   254,
  2113.      0,     0,     0,     0,     0,   255,   256,   257,     0,     0,
  2114.      7,     8,   441,    10,   437,   233,   234,     0,   235,    12,
  2115.      0,     0,     0,     0,     0,     0,     0,     0,   260,     0,
  2116.      0,     0,     0,     0,    15,   236,   237,   238,    16,     0,
  2117.    239,     0,    17,     0,   240,   241,     0,   242,    19,   243,
  2118.    244,     0,     0,   245,   246,   247,   248,   249,    21,     0,
  2119.     22,     0,     7,     8,   158,   159,   160,     0,     0,     0,
  2120.      0,    12,     0,     0,     0,     0,     0,     7,     8,   151,
  2121.     10,   152,     0,     0,     0,     0,    12,     0,   255,   256,
  2122.    257,     0,     0,     0,    17,   258,     0,     0,     0,   259,
  2123.     19,    15,     0,   510,     0,    16,     0,     0,     0,    17,
  2124.     21,   260,    22,     0,     0,    19,     0,     0,     0,     0,
  2125.      0,     0,     0,     0,   603,    21,     0,    22,     0,     0,
  2126.    153,     0,     0,     0,   604,     0,     0,     0,     0,    24,
  2127.      0,     0,    26,     0,   513,     0,     0,   605,   515,    25,
  2128.      0,     7,     8,    92,    10,    11,     0,    26,   618,     0,
  2129.     12,     0,    27,     0,     0,     0,     0,     0,   655,     8,
  2130.    151,    10,   152,     0,     0,    15,     0,    12,     0,    16,
  2131.      0,     0,     0,    17,     0,     0,     0,     0,     0,    19,
  2132.      0,     0,    15,     0,     0,     0,    16,     0,     0,    21,
  2133.     17,    22,     0,     0,     0,     0,    19,     0,     0,     0,
  2134.      0,     0,     0,    24,     0,     0,    21,     0,    22,     0,
  2135.      0,     0,     0,    25,     0,   658,     0,     0,     0,     0,
  2136.     24,    26,     0,     0,     0,     0,    27,     0,     0,     0,
  2137.     25,     7,     8,   151,    10,   152,     0,     0,    26,     0,
  2138.     12,     0,     0,    27,     0,     0,     0,     0,     7,     8,
  2139.    151,    10,   152,     0,     0,    15,     0,    12,     0,    16,
  2140.      0,     0,     0,    17,     0,     0,     0,     0,     0,    19,
  2141.      0,     0,    15,     0,     0,     0,    16,     0,     0,    21,
  2142.     17,    22,     0,     0,  1099,     0,    19,     0,     0,     0,
  2143.      0,     0,     8,    24,    10,   184,    21,     0,    22,     0,
  2144.     12,     0,     0,    25,     0,     0,     0,     0,     0,     0,
  2145.     24,    26,     0,     0,     0,    15,    27,     0,     0,    16,
  2146.     25,     0,     0,    17,     0,     0,     0,     0,    26,     0,
  2147.      0,     0,   510,    27,     0,     0,     0,     0,     0,    21,
  2148.      0,    93,     0,     0,     0,     0,     0,     0,     0,     0,
  2149.    466,   467,   468,   511,   469,   470,   471,   472,   473,   474,
  2150.    475,   476,   477,   512,   479,   480,   481,   482,   483,   484,
  2151.    485,   486,   487,   513,     0,     0,   514,   515,   466,   467,
  2152.    468,     0,   469,   470,   471,   472,   473,   474,   475,   476,
  2153.    477,   478,   479,   480,   481,   482,   483,   484,   485,   486,
  2154.    487,   543,   682,   466,   467,   468,     0,   469,   470,   471,
  2155.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2156.    482,   483,   484,   485,   486,   487,  1040,   466,   467,   468,
  2157.      0,   469,   470,   471,   472,   473,   474,   475,   476,   477,
  2158.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  2159.    466,   467,   468,  1204,   469,   470,   471,   472,   473,   474,
  2160.    475,   476,   477,   478,   479,   480,   481,   482,   483,   484,
  2161.    485,   486,   487,   466,   467,   468,  1253,   469,   470,   471,
  2162.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2163.    482,   483,   484,   485,   486,   487,   466,   467,   468,     0,
  2164.    469,   470,   471,   472,   473,   474,   475,   476,   477,   478,
  2165.    479,   480,   481,   482,   483,   484,   485,   486,   487,   468,
  2166.      0,   469,   470,   471,   472,   473,   474,   475,   476,   477,
  2167.    478,   479,   480,   481,   482,   483,   484,   485,   486,   487,
  2168.    470,   471,   472,   473,   474,   475,   476,   477,   478,   479,
  2169.    480,   481,   482,   483,   484,   485,   486,   487,   472,   473,
  2170.    474,   475,   476,   477,   478,   479,   480,   481,   482,   483,
  2171.    484,   485,   486,   487,   473,   474,   475,   476,   477,   478,
  2172.    479,   480,   481,   482,   483,   484,   485,   486,   487
  2173. };
  2174.  
  2175. static const short yycheck[] = {     4,
  2176.      4,   188,   265,   136,   416,   284,   117,    12,   108,   109,
  2177.      4,   339,    12,   299,     4,    20,    20,   389,   388,    24,
  2178.     25,    52,    27,   284,   131,   347,   749,    71,    33,    33,
  2179.     20,    20,   154,   161,   162,   130,   131,   134,   129,    44,
  2180.    299,    46,   816,    33,   136,   988,  1155,    52,  1047,   181,
  2181.   1183,   299,    52,    34,    59,   988,     9,     1,     9,     4,
  2182.      9,    48,   995,    55,    88,    70,    71,   278,  1216,    70,
  2183.     34,   154,    77,    77,    10,     3,     4,    44,  1226,   407,
  2184.      7,    10,    87,    55,    55,    56,    87,    77,    77,    36,
  2185.     95,    96,     4,    98,     3,     4,   101,    98,    70,   104,
  2186.    105,    36,   185,   108,   109,    51,     4,    60,    53,   368,
  2187.     54,   103,     4,  1246,   119,   119,   121,   122,    44,    55,
  2188.    368,    62,   103,    69,    60,    53,    55,    54,    95,   119,
  2189.     75,    60,   136,    60,   139,   140,   141,    12,  1247,   103,
  2190.     56,    53,     4,   515,    53,  1144,  1279,    75,  1296,   102,
  2191.    337,   102,   363,   102,   121,    53,   103,    93,    76,    51,
  2192.    165,    53,    88,     4,    93,    92,   102,   154,   103,   301,
  2193.     88,    89,     4,    65,   161,   162,   102,    52,   183,   183,
  2194.    954,    99,  1163,    75,   125,    27,    44,   103,   193,   286,
  2195.    913,    53,    44,   183,   188,    60,    51,    89,   185,    56,
  2196.     58,   142,     0,    44,    69,    60,    58,   299,    55,    54,
  2197.     51,   398,    53,    75,    69,    60,   157,    44,   136,  1328,
  2198.   1329,    53,    56,    70,    65,   230,   231,   271,  1209,   440,
  2199.     88,    89,   107,  1166,    75,     0,    88,   344,   345,     6,
  2200.      7,    55,   229,    75,    85,    12,   103,    88,    89,   344,
  2201.    345,   346,   343,   532,     4,   388,     3,     4,    88,    89,
  2202.     60,    88,    89,    66,   392,   393,   271,   109,    35,   103,
  2203.    275,   393,   277,   278,   279,   102,   368,    44,   378,   379,
  2204.    285,     4,    85,   284,     7,    56,    56,    44,   102,   659,
  2205.   1223,   278,   420,    56,   299,   299,   388,    44,    51,   141,
  2206.    103,    23,   102,    53,    51,    60,    53,  1250,   313,    44,
  2207.    985,   316,   987,    56,  1257,   320,    69,  1250,   285,   324,
  2208.    324,    88,   650,    55,  1257,    75,    97,  1050,    51,    92,
  2209.     53,    88,    89,   103,   324,   324,    55,    10,    60,    88,
  2210.    258,    88,    65,   337,    45,   102,   149,   102,  1281,   102,
  2211.     56,    56,    75,    88,     4,   360,   361,   362,   363,   364,
  2212.    103,    56,   457,   368,   368,    60,    89,     3,  1311,   374,
  2213.    102,   376,    56,   378,   379,   250,   363,   136,  1311,   566,
  2214.    385,   299,    55,   102,   388,    58,   391,    60,   329,   394,
  2215.    384,     4,   195,   360,     7,   362,   363,   103,   103,     3,
  2216.      4,    51,   407,    53,   398,   392,   393,    55,   413,   414,
  2217.      1,   416,   416,   785,   784,    65,   421,    55,    56,   103,
  2218.     93,    54,   514,    69,    44,    75,   416,    60,   258,   521,
  2219.     44,    44,    23,   420,    25,    26,    88,    41,    51,    44,
  2220.     53,    32,   447,   448,   449,   450,   413,    55,    56,    53,
  2221.    368,    44,    65,   497,   102,    44,   643,    27,    44,    92,
  2222.     54,   402,    75,    54,    55,    56,    60,    58,    88,    60,
  2223.    388,    75,    85,    55,    88,    88,    89,    44,   419,    83,
  2224.    283,    44,    54,    88,    89,   592,     3,     4,    70,   676,
  2225.     56,   819,   497,    51,   499,    88,    89,   592,    92,    88,
  2226.     89,    92,    88,   421,   307,    44,   511,   512,     4,   514,
  2227.    514,     7,   640,   605,    56,   794,   521,   521,   804,   611,
  2228.    438,    88,   553,   441,    41,    88,   659,   790,   446,   447,
  2229.    448,   449,   450,   794,   862,    60,    53,   379,   108,   109,
  2230.     44,    54,   460,   373,    69,   804,   464,   552,   553,    88,
  2231.     92,   923,    44,   553,    58,    51,   804,    53,    75,     3,
  2232.      4,    44,     6,   103,   385,   552,    83,   659,    54,    65,
  2233.    681,   141,   566,   394,    55,    25,    26,    58,   496,    75,
  2234.    102,     3,     4,   342,    88,   552,     3,     4,   463,    70,
  2235.     55,    56,     3,     4,     3,     4,    88,    41,   603,   604,
  2236.    605,   605,   102,    51,    54,    88,   611,   611,   438,    53,
  2237.     60,   441,    60,   443,   444,   102,   446,    51,  1030,    41,
  2238.    102,    69,   627,   628,    41,   630,    60,    25,    26,   388,
  2239.    433,    53,    41,    37,   464,    69,    53,     9,   468,    83,
  2240.     51,   102,    53,    54,    53,   650,    54,    51,    56,   643,
  2241.    972,   784,    60,   640,   659,   659,    54,   103,    75,     6,
  2242.      7,    83,    60,    92,   494,    12,    83,     4,     3,     6,
  2243.    500,    97,    27,   678,    83,    12,    60,   436,   553,   521,
  2244.     25,    26,   676,   688,   689,   690,   873,   874,    35,   876,
  2245.     27,   678,   784,   105,    31,    88,   788,    89,    35,   136,
  2246.      3,     4,     5,     6,     7,   105,   509,   918,     5,     6,
  2247.      7,    51,   804,   588,    51,    12,    53,    78,    79,   660,
  2248.     60,   524,    55,    56,   665,   666,    55,    56,   669,    69,
  2249.    919,   920,    35,   922,   493,    89,   495,   496,    35,   839,
  2250.    840,   659,    60,   748,    88,   845,   846,    88,    51,    88,
  2251.     53,    54,    88,   108,   109,   847,  1078,  1079,    69,    54,
  2252.     69,    56,   521,   605,   769,    60,   771,    69,   527,   611,
  2253.   1092,    69,    54,   778,    56,     9,   987,   782,    60,   784,
  2254.    784,   786,   787,   788,   788,   102,   141,   103,    23,   794,
  2255.   1112,  1113,    55,   794,   102,    98,    99,   100,   102,   804,
  2256.    804,   806,   102,     3,     4,     5,     6,     7,   378,   379,
  2257.      3,     3,     4,   103,   688,   689,   690,   659,    54,    54,
  2258.     58,    56,   581,    58,     7,    60,    55,    56,    55,    56,
  2259.    748,   102,   837,   838,   839,   840,   102,  1159,   102,   844,
  2260.    845,   846,   847,   847,    58,    37,    38,  1328,  1329,    41,
  2261.    105,   693,   611,    53,   102,     4,   105,   862,    88,    51,
  2262.    778,    53,    32,    12,   235,   236,   784,   872,  1290,  1291,
  2263.    875,    20,   877,   877,   879,    24,    25,   105,    27,   873,
  2264.    874,   105,   876,   102,    33,   102,   804,   877,    75,    76,
  2265.     77,    78,    79,     4,   102,    44,     7,    46,    51,    25,
  2266.     26,     6,   105,    52,    88,   342,    32,    44,    58,    55,
  2267.     59,     5,     6,     7,   919,   920,    58,   922,    12,    58,
  2268.     56,    56,    71,    56,    56,    56,   756,   868,    77,    55,
  2269.     56,    55,    58,    44,   693,   940,   941,   102,  1125,  1126,
  2270.     51,    35,    53,   861,    58,   787,    95,    96,   953,   953,
  2271.    102,   388,   101,    55,    65,   830,   105,   102,   788,   108,
  2272.    109,   879,   102,   953,    75,     3,     4,   105,    88,     7,
  2273.    119,    60,   121,   122,    85,    55,    55,    88,    89,    60,
  2274.    985,   986,   987,    58,    88,  1080,   102,   102,    70,  1176,
  2275.    139,   140,   141,   752,   999,  1000,   102,  1002,   840,   436,
  2276.    987,   102,   102,    41,   846,   847,   765,   102,   767,  1220,
  2277.    102,    70,    70,    51,    70,    53,   165,   847,   985,   102,
  2278.    987,    60,    55,   378,   379,  1030,  1030,    65,    60,   102,
  2279.    905,   861,    60,   102,   183,   605,   102,    75,   105,   842,
  2280.   1030,   611,   103,    89,   193,    83,    83,   102,   105,   891,
  2281.     88,    44,   102,   102,     3,     4,   493,   105,   495,   496,
  2282.   1171,   105,   821,   103,   823,    34,   825,   102,     4,     5,
  2283.      6,     7,  1331,   102,    10,   102,    12,  1177,  1178,   102,
  2284.    102,   230,   231,  1331,  1025,  1026,   961,    58,  1183,   659,
  2285.    527,    27,    41,  1280,    58,    31,   102,  1102,    88,    35,
  2286.     88,    88,    51,   978,    53,     7,    88,    56,    10,    88,
  2287.    105,   103,     6,   102,   105,    51,    65,    53,   102,   102,
  2288.     60,   102,   271,   103,   102,   102,    75,   102,   277,   278,
  2289.    279,  1125,  1126,    88,    83,   284,   285,   102,    60,    88,
  2290.     56,   944,    44,    56,   581,     7,    54,   977,    14,    56,
  2291.    299,  1246,    58,    55,   102,   102,    58,    93,    60,  1034,
  2292.   1101,   341,    60,    60,   313,    44,   105,   316,    70,    88,
  2293.     56,   320,  1177,  1178,  1179,   324,    56,    88,    88,  1173,
  2294.   1121,    58,  1176,    58,  1279,   102,    88,    89,   102,    15,
  2295.    339,    93,    56,   105,     4,     5,    56,  1072,   102,   102,
  2296.    102,    56,   103,   102,    56,    56,  1036,  1037,  1038,  1039,
  2297.    102,   360,   361,   362,   363,   364,  1221,    58,  1048,   368,
  2298.     58,    31,     9,    56,   102,   374,    36,   376,   102,   378,
  2299.    379,    56,    56,  1220,    88,    55,   385,  1332,    56,  1331,
  2300.     88,    51,   391,    53,   102,   394,     4,     5,    91,   102,
  2301.    605,  1081,   102,   102,  1221,    58,   611,   102,   407,  1089,
  2302.   1102,  1179,     9,    56,   413,   414,     1,   416,   102,   839,
  2303.    840,   102,   421,    31,    56,   845,   846,   847,    36,     9,
  2304.      0,     0,   118,   326,     2,     1,  1280,   119,    23,   804,
  2305.     25,    26,   119,    51,   129,    53,   819,    32,   447,   448,
  2306.    449,   450,    99,   460,   659,  1144,  1154,    23,  1185,    25,
  2307.     26,  1252,   509,  1081,   986,   752,    32,   684,  1197,    54,
  2308.     55,    56,  1197,    58,   799,    60,  1331,  1331,   765,   588,
  2309.    767,    33,    33,  1163,   862,   650,  1178,  1179,    54,    55,
  2310.     56,   809,    58,  1102,    60,   877,   953,    12,   497,  1179,
  2311.    499,     4,   414,   497,  1184,  1185,   875,    92,     4,     5,
  2312.      6,     7,   511,   512,    10,   514,    12,    20,   540,   797,
  2313.   1270,   833,   521,  1304,  1306,    -1,    92,    44,   879,  1209,
  2314.     33,    27,   368,   532,   821,    31,   823,    -1,   825,    35,
  2315.     -1,     3,     4,    46,    71,    72,    73,    74,    75,    76,
  2316.     77,    78,    79,   552,   553,    51,    59,    53,    -1,    -1,
  2317.     -1,    -1,    -1,  1331,    81,    82,    -1,    -1,    71,    86,
  2318.     87,    88,    89,    76,    77,    -1,    -1,    -1,    -1,    41,
  2319.     -1,    -1,    44,    -1,    -1,    88,    89,    -1,    -1,    51,
  2320.   1199,    53,   622,    96,  1274,    -1,    99,    -1,    60,    -1,
  2321.     -1,    -1,    -1,    65,   603,   604,   605,    -1,    -1,    -1,
  2322.   1290,  1291,   611,    75,    -1,    -1,   119,    -1,    -1,   122,
  2323.     -1,    83,    -1,  1303,    -1,    -1,    88,    -1,   627,   628,
  2324.     -1,   630,    -1,   136,   839,   840,    -1,    -1,    -1,    -1,
  2325.    845,   846,   847,    -1,    -1,    -1,     4,     5,     6,     7,
  2326.     -1,   650,    -1,    -1,    12,    -1,  1265,    -1,     3,     4,
  2327.    659,    -1,     7,   139,   140,   141,    71,    -1,    -1,    27,
  2328.     -1,    76,    -1,    31,    -1,    -1,    -1,    35,    -1,   678,
  2329.    183,    -1,  1102,    88,    89,    -1,    -1,    -1,    -1,   688,
  2330.    689,   690,    -1,    51,    99,    53,    41,    -1,    -1,    44,
  2331.     -1,    -1,    -1,    -1,    -1,    -1,    51,    -1,    53,    -1,
  2332.     -1,    69,    -1,    -1,    -1,    -1,   251,    24,    25,   254,
  2333.     65,   751,   257,    -1,    -1,    -1,    -1,   230,   263,    -1,
  2334.     75,   136,    -1,    -1,    -1,    -1,    -1,   272,    83,    -1,
  2335.     85,    -1,    -1,    88,    89,    -1,    -1,    -1,    -1,   748,
  2336.     -1,    -1,    -1,    -1,    -1,   258,    -1,  1177,  1178,  1179,
  2337.     -1,    -1,    -1,     4,    71,     6,     7,    -1,   271,    76,
  2338.    769,    12,   771,    -1,    -1,    -1,   279,    -1,   808,   778,
  2339.     -1,    88,    89,   782,    -1,   784,    27,   786,   787,   788,
  2340.     31,    -1,    99,    -1,    35,   794,   299,    -1,    -1,    -1,
  2341.     -1,   108,   109,    -1,    -1,   804,    -1,   806,    -1,    -1,
  2342.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,   577,    -1,
  2343.    819,   324,   852,    -1,    -1,    -1,    -1,    -1,    -1,   136,
  2344.     -1,    -1,   139,   140,    -1,    -1,    -1,    -1,   837,   838,
  2345.    839,   840,    -1,    -1,    -1,   844,   845,   846,   847,    -1,
  2346.     -1,    -1,    -1,   258,    -1,    -1,    -1,    -1,   361,    -1,
  2347.     -1,   364,    -1,   862,    -1,   368,   271,    -1,    -1,    -1,
  2348.     -1,    -1,   631,   872,   904,   905,   875,    -1,   877,    -1,
  2349.    879,    -1,    -1,   642,    -1,   388,    73,    74,    75,    76,
  2350.     77,    78,    79,    -1,   299,    -1,    -1,  1102,   374,    -1,
  2351.    376,    69,   378,   379,    -1,    -1,    -1,    -1,    -1,    -1,
  2352.    445,   414,  1199,   416,    -1,   391,    -1,    -1,   421,    -1,
  2353.    919,   920,    -1,   922,    -1,    -1,    -1,     3,     4,    -1,
  2354.     -1,   961,    -1,    -1,    -1,   438,    -1,   413,   441,    -1,
  2355.     -1,   940,   941,   446,   447,   448,   449,   450,   116,    -1,
  2356.     -1,   258,    -1,    -1,   953,    -1,    -1,   460,    -1,    -1,
  2357.     -1,   464,    -1,   368,   271,    41,    -1,   135,    44,    -1,
  2358.     -1,    -1,  1177,  1178,  1179,    51,    -1,    53,  1265,    -1,
  2359.     -1,    -1,   150,   388,    -1,    -1,   985,   986,   987,    65,
  2360.     -1,    -1,   299,   496,   497,    -1,    -1,    -1,    -1,    75,
  2361.    999,  1000,    -1,  1002,    -1,  1035,    -1,    83,    -1,    85,
  2362.   1040,   514,    88,    89,    -1,    -1,   421,    -1,   521,    -1,
  2363.     -1,    -1,    -1,    -1,     1,    -1,     3,     4,     5,     6,
  2364.      7,  1030,    -1,   438,    -1,    12,   441,    -1,    -1,    -1,
  2365.     -1,   446,   447,   448,   449,   450,    -1,    -1,    25,    26,
  2366.     27,    -1,   811,    -1,    31,   460,    -1,    -1,    35,   464,
  2367.     -1,   368,    39,    -1,    41,    -1,    -1,    -1,    45,    -1,
  2368.     -1,   378,   379,    -1,    51,    -1,    53,    -1,    -1,    56,
  2369.     -1,   388,    -1,    -1,  1114,  1115,    -1,    -1,    65,    -1,
  2370.     -1,   496,   497,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2371.     -1,   860,   605,  1102,    -1,    -1,    83,    -1,   611,   514,
  2372.    869,    88,    -1,  1143,   421,    -1,   521,    94,    95,   878,
  2373.     -1,    -1,    -1,     3,     4,    -1,    -1,   603,   604,   605,
  2374.     -1,   438,    -1,    -1,   441,   611,    -1,    -1,    -1,   446,
  2375.    447,   448,   449,   450,    -1,    -1,    -1,    -1,    10,    -1,
  2376.     -1,   627,   628,   460,   630,    -1,   659,   464,  1188,    -1,
  2377.     -1,    41,    -1,    25,    26,  1195,  1196,    -1,    -1,    -1,
  2378.     32,    51,    -1,    53,  1204,    -1,    56,    -1,  1177,  1178,
  2379.   1179,    -1,    44,   659,    -1,    65,    -1,    -1,    -1,   496,
  2380.    497,    -1,    -1,    55,    56,    75,    58,    -1,    60,     4,
  2381.    605,    -1,     7,    83,   511,   512,   611,   514,    88,    -1,
  2382.     -1,    -1,    -1,   381,   521,    -1,    -1,    -1,    -1,   387,
  2383.     -1,    -1,  1221,    -1,    -1,   760,    88,    89,    -1,    -1,
  2384.     92,    93,    -1,  1263,  1264,    -1,    -1,    -1,    -1,    44,
  2385.    102,    -1,    -1,    -1,    -1,   748,    51,    -1,    53,   752,
  2386.     -1,   786,   787,    -1,   659,  1014,  1015,    -1,    -1,    -1,
  2387.     65,    -1,    -1,   431,   432,    -1,   434,    -1,  1027,  1028,
  2388.     75,    -1,    -1,    -1,    -1,   778,    -1,    -1,    -1,    -1,
  2389.     85,   784,    -1,    88,    89,   788,     4,     5,     6,     7,
  2390.     -1,    -1,    -1,    -1,    12,    -1,   603,   604,   605,    -1,
  2391.   1330,   804,    -1,   806,   611,    -1,    -1,    -1,    -1,    27,
  2392.    845,   846,    -1,    31,    -1,    -1,    -1,    35,    -1,    -1,
  2393.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   832,
  2394.     -1,    -1,  1331,    51,    -1,    53,    -1,    -1,   277,   278,
  2395.    279,    -1,    -1,   748,   847,    -1,    -1,    -1,    -1,   517,
  2396.    518,    -1,   659,    -1,   522,   890,   891,    -1,   861,    -1,
  2397.     -1,   837,   838,   839,   840,  1124,     3,     4,   844,   845,
  2398.    846,   847,    -1,   778,   877,    -1,   879,    -1,    -1,   784,
  2399.     -1,    -1,    -1,   788,    -1,    -1,    -1,    -1,    -1,    -1,
  2400.    925,    -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,   804,
  2401.     -1,    -1,    -1,    -1,    41,   940,   941,    -1,    -1,    -1,
  2402.     -1,    -1,    -1,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2403.     -1,   360,    -1,   362,   363,   364,    -1,    -1,    65,   597,
  2404.    598,  1190,  1191,    -1,  1193,  1194,    -1,    -1,    75,   607,
  2405.     -1,   748,   847,    -1,    -1,   613,    83,    -1,    -1,    -1,
  2406.    953,    88,    -1,    -1,    -1,    -1,   861,    -1,    -1,    -1,
  2407.     -1,     1,    -1,     3,     4,     5,     6,     7,    -1,    -1,
  2408.     -1,   778,    12,    -1,   879,    -1,    -1,   784,    -1,   786,
  2409.    787,   788,    -1,   986,    -1,   988,    -1,    27,    -1,   657,
  2410.     -1,    31,   995,    -1,    -1,    35,    36,   804,    -1,     3,
  2411.      4,    41,    -1,     7,    -1,    -1,    -1,    -1,     3,     4,
  2412.     -1,    51,     7,    53,    -1,    -1,    56,    -1,    -1,    -1,
  2413.     60,    -1,    -1,   999,  1000,    65,  1002,  1030,    -1,    -1,
  2414.     -1,    -1,   839,   840,    76,    75,    -1,    41,   845,   846,
  2415.    847,  1300,    -1,    83,    -1,    -1,    41,    51,    88,    53,
  2416.     -1,    -1,    -1,    -1,   861,    -1,    51,    99,    53,    -1,
  2417.     -1,    65,    -1,   103,    -1,    -1,    -1,    -1,     3,     4,
  2418.     65,    75,   879,   512,    -1,   514,    -1,    -1,  1081,    83,
  2419.     75,    -1,   521,    -1,    88,    -1,   754,   755,    83,   757,
  2420.     -1,    -1,    -1,    88,   136,    -1,    -1,     1,    -1,     3,
  2421.      4,     5,     6,     7,    -1,    -1,    41,    -1,    12,    -1,
  2422.     -1,    -1,    -1,   552,    -1,   783,    51,    -1,    53,    -1,
  2423.     -1,    -1,    -1,    27,    -1,    60,  1102,    31,    -1,    -1,
  2424.     65,    35,    36,   940,   941,    -1,    -1,    41,    -1,    -1,
  2425.     75,    -1,  1177,  1178,    -1,    -1,    -1,    51,    83,    53,
  2426.     -1,    -1,  1155,    88,    -1,    -1,    60,    -1,    -1,    -1,
  2427.   1163,    65,    -1,  1166,    -1,   604,   605,    -1,    -1,    -1,
  2428.     -1,    75,   611,    -1,    -1,   843,  1179,    -1,    -1,    83,
  2429.     -1,  1184,  1185,    -1,    88,    -1,    -1,   855,   856,   857,
  2430.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,
  2431.     -1,  1177,  1178,  1179,    -1,    -1,  1209,    -1,    -1,    -1,
  2432.     -1,    -1,    -1,  1216,    -1,    -1,    -1,   259,    -1,    -1,
  2433.   1223,    -1,     4,  1226,     6,     7,    -1,    -1,    -1,    -1,
  2434.     12,    -1,    -1,    -1,     3,     4,     5,     6,     7,   678,
  2435.     -1,    -1,    -1,    12,  1247,    27,    -1,  1250,    -1,    31,
  2436.     -1,    -1,    -1,    35,  1257,    -1,    -1,     1,  1163,     3,
  2437.      4,     5,     6,     7,    -1,   933,    35,    -1,    12,    51,
  2438.     -1,    53,    41,    -1,  1179,    44,    -1,    -1,  1281,  1184,
  2439.   1185,    -1,    51,    27,    53,    -1,    -1,    31,    -1,    -1,
  2440.     -1,    35,    36,  1296,    -1,    -1,    65,    41,    -1,   341,
  2441.    342,    -1,    -1,    -1,  1209,    -1,    75,    51,  1311,    53,
  2442.     -1,    -1,    56,    -1,    83,    -1,    60,    -1,    -1,    88,
  2443.     -1,    65,    -1,    -1,    -1,  1328,  1329,    -1,  1331,    -1,
  2444.    769,    75,   771,    -1,    -1,    -1,    -1,    -1,    -1,    83,
  2445.     -1,    -1,    -1,   782,    88,    -1,   388,    -1,   787,   788,
  2446.   1018,    -1,    -1,    -1,    -1,    -1,  1163,    -1,    -1,   103,
  2447.     -1,    -1,    -1,    -1,    -1,     4,    -1,     6,     7,   411,
  2448.   1177,  1178,  1179,    12,    -1,    -1,    -1,  1184,  1185,    -1,
  2449.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    -1,
  2450.     -1,    -1,    31,    -1,   436,  1063,    35,    -1,   837,   838,
  2451.     -1,   840,  1209,    -1,    -1,   844,    -1,   846,   847,     3,
  2452.      4,    -1,    51,     7,    53,    54,    -1,    -1,   460,    -1,
  2453.     -1,   463,    -1,    -1,   466,   467,  1331,   469,   470,   471,
  2454.    472,   473,   474,   475,   476,   477,   478,   479,   480,   481,
  2455.    482,   483,   484,   485,   486,   487,    -1,    41,    -1,    88,
  2456.     44,   493,    -1,   495,   496,    -1,    -1,    51,    -1,    53,
  2457.      3,     4,     5,     6,     7,    -1,    -1,    10,    -1,    12,
  2458.     -1,    65,     4,    -1,     6,     7,    -1,    -1,    -1,   521,
  2459.     12,    75,    -1,    -1,    27,   527,     4,    -1,    31,    83,
  2460.     -1,    85,    35,    -1,    88,    89,    -1,    -1,    41,    -1,
  2461.    542,   543,   941,    35,    -1,    -1,    24,    25,    51,    27,
  2462.     53,    -1,    44,    -1,    -1,    33,    -1,    -1,    -1,    51,
  2463.     -1,    53,    65,    -1,  1331,    -1,    44,    -1,    46,    -1,
  2464.     -1,    -1,    75,    65,    -1,    -1,    -1,    -1,    -1,   581,
  2465.     83,    -1,    -1,    75,    -1,    88,   588,    -1,    66,    -1,
  2466.     93,    -1,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,
  2467.    999,  1000,     1,  1002,     3,     4,     5,     6,     7,   611,
  2468.     -1,    -1,    -1,    12,    -1,    -1,    -1,    95,    -1,    -1,
  2469.    622,    -1,    -1,   101,    -1,   103,    -1,   105,    27,    -1,
  2470.    108,   109,    31,    -1,    -1,    -1,    35,    -1,    -1,    -1,
  2471.     -1,   119,    41,   121,   122,    -1,    45,    -1,    -1,    -1,
  2472.     -1,    -1,    51,    -1,    53,    -1,   658,    56,    -1,    -1,
  2473.     -1,   139,   140,   141,    -1,    -1,    65,    -1,    -1,    -1,
  2474.     -1,   149,    -1,    -1,    -1,    -1,    75,    -1,    -1,    -1,
  2475.     -1,    -1,    -1,    -1,    83,    -1,    -1,   165,    -1,    88,
  2476.     -1,   693,    -1,    -1,    -1,    94,     1,    -1,     3,     4,
  2477.     -1,     6,     7,     8,     9,   183,    11,    12,    -1,    -1,
  2478.     -1,    -1,   714,    -1,    -1,   193,    -1,    -1,    -1,    -1,
  2479.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2480.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2481.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,   751,
  2482.    752,    -1,    -1,    -1,    -1,    60,    -1,    62,    -1,    -1,
  2483.     65,    -1,    -1,   765,    -1,   767,    -1,    -1,    73,    74,
  2484.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2485.     -1,    -1,    -1,    88,    -1,    -1,    -1,    92,    -1,    -1,
  2486.     -1,    -1,    -1,    -1,   796,    -1,    -1,   275,    -1,   104,
  2487.     -1,    -1,    -1,    -1,    -1,   283,   808,   285,    -1,     3,
  2488.      4,    -1,     6,     7,     8,     9,    -1,    11,    12,   821,
  2489.     -1,   823,    -1,   825,    -1,    -1,    -1,    -1,    -1,    -1,
  2490.     -1,    -1,    -1,    27,    28,   313,    -1,    31,   316,    33,
  2491.     -1,    35,   320,    37,    38,    -1,    40,    41,    42,    43,
  2492.    852,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2493.     -1,    -1,    -1,    -1,   866,   867,    -1,    -1,    62,    -1,
  2494.     -1,    65,    -1,    -1,    -1,    -1,    -1,     3,     4,    73,
  2495.     74,    75,   360,   361,   362,   363,    -1,    81,    82,    83,
  2496.    368,    -1,    -1,    -1,    88,    -1,   374,    -1,   376,    -1,
  2497.    378,   379,   904,   905,    -1,    -1,   908,   385,    -1,    -1,
  2498.    104,    -1,    -1,   391,    -1,    41,   394,    -1,     1,    -1,
  2499.      3,     4,     5,     6,     7,    51,    -1,    53,    -1,    12,
  2500.     -1,     3,     4,    -1,    60,   413,   414,    -1,   416,    65,
  2501.     -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,    31,    75,
  2502.     -1,    -1,    35,    36,    -1,    -1,    -1,    83,    41,   961,
  2503.     -1,    -1,    88,    -1,    -1,    -1,    -1,     4,    51,    41,
  2504.     53,   973,    -1,    -1,     3,     4,    -1,    60,     7,    51,
  2505.     -1,    53,    65,    -1,    -1,    -1,    -1,    24,    25,    -1,
  2506.     27,    -1,    75,    65,    -1,    -1,    33,    -1,    -1,    -1,
  2507.     83,    -1,    -1,    75,    -1,    88,    -1,    44,    -1,    46,
  2508.     -1,    83,    41,    -1,    -1,    44,    88,    -1,    -1,  1021,
  2509.    103,    -1,    51,    -1,    53,     3,     4,     5,     6,     7,
  2510.     -1,   509,    10,  1035,    12,    -1,    65,    -1,  1040,    -1,
  2511.   1042,    -1,    -1,   521,    -1,    -1,    75,    -1,    -1,    27,
  2512.     -1,    -1,    -1,    31,    83,    -1,    85,    35,    95,    88,
  2513.     89,    -1,    -1,    41,   101,    -1,    44,    -1,   105,    -1,
  2514.     -1,   108,   109,    51,   552,    53,    -1,    -1,    -1,    -1,
  2515.     -1,    -1,   119,    -1,   121,   122,    -1,    65,    -1,    -1,
  2516.     -1,     4,    -1,     6,     7,    -1,    -1,    75,    -1,    12,
  2517.   1102,    -1,   139,   140,   141,    83,    -1,    85,    -1,    -1,
  2518.     88,    89,  1114,  1115,    27,    93,    -1,    -1,    31,    -1,
  2519.   1122,  1123,    35,    -1,    -1,   603,   604,   605,   165,    -1,
  2520.     -1,    -1,    -1,   611,    -1,    -1,    -1,    -1,    51,    -1,
  2521.     53,  1143,    -1,    -1,    -1,    -1,   183,    -1,    -1,   627,
  2522.    628,    -1,   630,    -1,    -1,    -1,   193,    -1,    -1,    -1,
  2523.     -1,    -1,  1164,    68,    69,    70,    71,    72,    73,    74,
  2524.     75,    76,    77,    78,    79,    88,    -1,     1,    -1,     3,
  2525.      4,   659,     6,     7,     8,     9,  1188,    11,    12,    -1,
  2526.     -1,    -1,    -1,  1195,  1196,    -1,    -1,  1199,    -1,    -1,
  2527.     -1,    -1,  1204,    27,    28,    29,    30,    31,    -1,    33,
  2528.     -1,    35,    -1,    37,    38,   693,    40,    41,    42,    43,
  2529.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2530.     54,    -1,    -1,    -1,     3,     4,    -1,    -1,    62,    -1,
  2531.     -1,    65,    -1,    -1,    -1,    -1,    -1,   284,   285,    73,
  2532.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2533.     -1,  1263,  1264,  1265,    88,    89,    -1,    -1,    92,    -1,
  2534.     -1,    -1,    41,    -1,    -1,    -1,   313,    -1,    -1,   316,
  2535.    104,    -1,    51,   320,    53,    -1,    -1,    -1,    -1,    -1,
  2536.     27,    -1,    -1,    -1,    -1,    -1,    65,    -1,    -1,    -1,
  2537.     -1,    -1,   339,    -1,    -1,    -1,    75,    44,   786,   787,
  2538.     -1,    -1,    -1,    -1,    83,    -1,    -1,    -1,    -1,    88,
  2539.     -1,    -1,    -1,   360,   361,   362,   363,    -1,  1330,    -1,
  2540.     -1,   368,    -1,    -1,    -1,    -1,    -1,   374,    -1,   376,
  2541.     -1,   378,   379,    -1,    -1,    -1,    -1,    -1,   385,    -1,
  2542.     -1,    -1,    -1,    -1,   391,    -1,    -1,   394,    95,   837,
  2543.    838,   839,   840,    -1,   842,    -1,   844,   845,   846,   847,
  2544.     -1,   108,   109,    -1,    -1,    -1,   413,   414,    -1,   416,
  2545.     -1,    -1,    -1,    -1,   121,    -1,    -1,    -1,    -1,    -1,
  2546.     -1,    -1,    -1,    -1,   872,    -1,    -1,   875,    -1,   877,
  2547.     -1,    -1,   139,   140,   141,    -1,    -1,    -1,    -1,    -1,
  2548.     -1,    -1,   890,   891,    -1,     1,    -1,     3,     4,     5,
  2549.      6,     7,     8,     9,    -1,    11,    12,    13,   165,    15,
  2550.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2551.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2552.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2553.     46,    47,    48,    49,    50,    51,   944,    53,    54,    -1,
  2554.     56,    -1,    -1,    -1,    -1,   953,    62,    -1,    -1,    65,
  2555.     -1,    -1,    -1,    -1,   521,    -1,    -1,    73,    74,    75,
  2556.     -1,    -1,    -1,    -1,   231,    81,    82,    83,    -1,    -1,
  2557.     -1,    -1,    88,    -1,    90,    -1,    92,   985,   986,   987,
  2558.     -1,    -1,    -1,    -1,    -1,   552,    -1,   103,   104,    -1,
  2559.     -1,   999,  1000,    -1,  1002,     3,     4,    -1,    -1,     7,
  2560.     -1,     4,     5,     6,     7,    -1,    -1,    10,    -1,    12,
  2561.    277,   278,   279,    -1,    -1,    -1,    -1,    -1,   285,    -1,
  2562.     -1,    -1,  1030,    -1,    27,    -1,    -1,    -1,    31,    -1,
  2563.     -1,    -1,    35,    41,    -1,    -1,   603,   604,   605,    -1,
  2564.     -1,    44,    -1,    51,   611,    53,    -1,    -1,    51,    -1,
  2565.     53,    -1,    -1,    -1,    -1,    -1,    -1,    65,    -1,    -1,
  2566.    627,   628,    65,   630,    -1,    -1,    -1,    75,    -1,    -1,
  2567.     -1,    -1,    75,    -1,    -1,    83,    -1,    -1,    -1,    -1,
  2568.     88,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,    -1,
  2569.     93,    -1,   659,   360,  1102,   362,   363,   364,    -1,     1,
  2570.     -1,     3,     4,     5,     6,     7,    -1,   374,    -1,   376,
  2571.     12,   378,   379,    -1,    -1,    -1,     3,     4,   385,    -1,
  2572.      7,   277,   278,   279,   391,    27,   693,   394,    -1,    31,
  2573.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    44,    41,
  2574.     -1,    -1,    -1,    -1,    -1,    -1,   413,    -1,    -1,    51,
  2575.     -1,    53,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,
  2576.     66,    -1,    -1,    65,    51,    -1,    53,    -1,    -1,  1177,
  2577.   1178,  1179,    -1,    75,    -1,    -1,     3,     4,    65,    85,
  2578.      7,    83,    -1,    -1,    -1,    -1,    88,    -1,    75,    95,
  2579.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    85,    -1,
  2580.     -1,    88,    89,    -1,   360,    -1,   362,   363,   364,    -1,
  2581.     -1,    -1,    -1,  1221,    41,   121,    -1,    -1,    -1,   786,
  2582.    787,    -1,    -1,    -1,    51,    -1,    53,   794,    -1,    -1,
  2583.     -1,    -1,   499,   139,   140,   141,    -1,    -1,    65,    -1,
  2584.     -1,    -1,    -1,   149,   511,   512,    -1,   514,    75,    -1,
  2585.     -1,    -1,   819,    -1,   521,    -1,    83,    -1,    -1,   165,
  2586.     -1,    88,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2587.    837,   838,   839,   840,    -1,    -1,    -1,   844,   845,   846,
  2588.    847,    -1,    -1,    -1,    -1,   552,    -1,    -1,    -1,   195,
  2589.     -1,    -1,     4,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2590.     -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,   875,    -1,
  2591.    877,    -1,    24,    25,    -1,    -1,    -1,     4,    -1,     6,
  2592.      7,    33,    -1,   890,   891,    12,    -1,    -1,    -1,    -1,
  2593.     -1,    -1,    -1,    -1,    46,    -1,   603,   604,   605,    -1,
  2594.     -1,    -1,    -1,    -1,   611,    -1,    -1,    -1,    35,    -1,
  2595.     -1,    -1,    -1,    -1,    -1,   511,   512,    44,   514,    -1,
  2596.    627,   628,    -1,   630,    51,   521,    53,    -1,     4,     5,
  2597.      6,     7,    -1,    -1,    -1,    -1,    12,   283,    65,   285,
  2598.     -1,    -1,    -1,    -1,    -1,    -1,   953,    -1,    75,   101,
  2599.     -1,    27,   659,   105,    -1,    31,   552,    -1,    85,    35,
  2600.     -1,    88,    89,    -1,    -1,    -1,    -1,   119,    -1,    -1,
  2601.    122,   678,     3,     4,    -1,    51,     7,    53,   985,   986,
  2602.    987,   688,   689,   690,    -1,    -1,    -1,   139,   140,    -1,
  2603.     -1,    -1,   999,  1000,    -1,  1002,    -1,    -1,    -1,    -1,
  2604.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   603,   604,   605,
  2605.     41,    -1,    -1,    -1,   360,   611,   362,   363,    -1,    -1,
  2606.     51,    -1,    53,  1030,    -1,    -1,    -1,    -1,   374,    -1,
  2607.    376,   183,   378,   379,    65,    -1,     3,     4,    -1,   385,
  2608.      7,   193,    -1,    -1,    75,   391,    -1,    -1,   394,    -1,
  2609.     -1,    -1,    83,    -1,    -1,    -1,    12,    88,    -1,    -1,
  2610.     -1,    -1,   769,    -1,   771,    -1,    -1,   413,    24,    25,
  2611.     -1,    27,    -1,    -1,    41,   782,    -1,    -1,    -1,   786,
  2612.    787,   788,   678,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2613.     -1,    -1,    -1,    -1,    -1,  1102,    52,    -1,    65,    -1,
  2614.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2615.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    -1,    -1,
  2616.     -1,    88,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2617.    837,   838,   839,   840,    -1,    -1,    -1,   844,   845,   846,
  2618.    847,    -1,    -1,    -1,    -1,   101,    -1,   103,   104,   105,
  2619.     -1,    -1,   108,   109,    -1,     3,     4,    -1,    -1,     7,
  2620.     -1,   313,    -1,    -1,   316,   872,    -1,    -1,   320,    -1,
  2621.   1177,  1178,  1179,   769,    -1,   771,    -1,    -1,   524,    -1,
  2622.     -1,    -1,    -1,    -1,    -1,    -1,   782,    -1,    -1,    -1,
  2623.    786,   787,   788,    41,    -1,    -1,    -1,    -1,    -1,    -1,
  2624.     -1,    -1,    -1,    51,    -1,    53,   552,    -1,    -1,   361,
  2625.     -1,    -1,   919,   920,  1221,   922,   368,    65,    -1,    -1,
  2626.     -1,    -1,   374,    -1,   376,    -1,    -1,    75,    -1,    -1,
  2627.     -1,    -1,    -1,   940,   941,    83,    -1,   193,    -1,   391,
  2628.     88,   837,   838,   839,   840,    -1,    -1,    -1,   844,   845,
  2629.    846,   847,    -1,    -1,    -1,    -1,    -1,   603,   604,   605,
  2630.     -1,   413,   414,    -1,   416,   611,    -1,    -1,    -1,    -1,
  2631.      3,     4,     5,     6,     7,   231,    -1,    -1,   985,    12,
  2632.    987,   627,   628,    -1,   630,    -1,    -1,    -1,    -1,    -1,
  2633.     -1,    -1,   999,  1000,    27,  1002,    -1,    -1,    31,    -1,
  2634.     -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,
  2635.     -1,    44,    -1,   659,    -1,    -1,    -1,    -1,    51,   275,
  2636.     53,   277,   278,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2637.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2638.     -1,    -1,    75,    -1,   940,   941,    -1,    -1,    -1,    -1,
  2639.     83,   307,    85,    -1,    -1,    88,    89,   313,    -1,    -1,
  2640.    316,    -1,    -1,    -1,   320,    63,    64,    65,    66,    67,
  2641.     68,    69,    70,    71,    72,    73,    74,    75,    76,    77,
  2642.     78,    79,     1,    -1,     3,     4,     5,     6,     7,     8,
  2643.      9,    10,    11,    12,    -1,  1102,    -1,    -1,    -1,    -1,
  2644.     -1,    -1,    -1,   999,  1000,    -1,  1002,    -1,    27,    28,
  2645.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2646.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2647.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  2648.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2649.     -1,   603,   604,    -1,    73,    74,    75,    -1,    -1,    -1,
  2650.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2651.   1177,  1178,  1179,    92,    93,   627,   628,   433,   630,    -1,
  2652.     -1,    -1,    -1,   102,    -1,   104,    -1,    -1,    -1,    -1,
  2653.     -1,   837,   838,   839,   840,    -1,   842,    -1,   844,   845,
  2654.    846,   847,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2655.     -1,    -1,    -1,    -1,  1221,    -1,    -1,    -1,    -1,    -1,
  2656.     -1,    -1,    -1,    -1,    -1,    -1,   872,    -1,    -1,    -1,
  2657.     -1,     1,    -1,     3,     4,     5,     6,     7,     8,     9,
  2658.     10,    11,    12,   499,    -1,    -1,    -1,    -1,    -1,    -1,
  2659.     -1,    -1,    -1,   509,    -1,   511,   512,    27,    28,    29,
  2660.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  2661.     40,    41,    42,    43,    44,    -1,    46,    47,    48,    49,
  2662.     50,    51,    -1,    53,    54,    -1,    -1,    -1,    -1,    -1,
  2663.     -1,    -1,    62,    -1,    -1,    65,    -1,   553,   944,    -1,
  2664.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  2665.     -1,    81,    82,    83,    -1,    85,    -1,    -1,    88,    89,
  2666.     -1,    -1,    92,    93,    -1,    -1,     3,     4,     5,     6,
  2667.      7,    -1,    -1,    -1,   104,    12,    -1,    -1,    -1,   985,
  2668.     -1,   987,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2669.     -1,    -1,    -1,   999,  1000,    -1,  1002,    -1,    35,    -1,
  2670.     -1,    -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,
  2671.     -1,    -1,    -1,    -1,    51,    -1,    53,    -1,    -1,    -1,
  2672.     -1,    -1,    -1,    -1,    -1,   837,   838,    -1,    65,    -1,
  2673.     -1,    -1,   844,    -1,    -1,    -1,    -1,    -1,    75,    -1,
  2674.     -1,    -1,    -1,    -1,    -1,    -1,    83,    -1,    85,    -1,
  2675.     -1,    88,    89,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2676.    872,    -1,   678,   875,    -1,   877,    -1,    -1,    -1,    -1,
  2677.     -1,    -1,   688,   689,   690,    -1,     1,    -1,     3,     4,
  2678.      5,     6,     7,     8,     9,    10,    11,    12,    -1,    -1,
  2679.     -1,    -1,    -1,    -1,    -1,    -1,  1102,    -1,    -1,    -1,
  2680.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2681.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    44,
  2682.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2683.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2684.     65,   953,    -1,    -1,    10,    -1,    -1,    -1,    73,    74,
  2685.     75,    -1,    -1,   769,    -1,   771,    81,    82,    83,    -1,
  2686.     85,    -1,    -1,    88,    89,    -1,   782,    92,    93,    -1,
  2687.     -1,  1177,  1178,  1179,   986,    -1,    -1,    -1,    -1,   104,
  2688.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   999,  1000,    -1,
  2689.   1002,    57,    58,    59,    60,    61,    62,    63,    64,    65,
  2690.     66,    67,    68,    69,    70,    71,    72,    73,    74,    75,
  2691.     76,    77,    78,    79,    -1,  1221,    -1,    -1,  1030,    -1,
  2692.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,     1,    -1,
  2693.      3,     4,     5,     6,     7,     8,     9,    -1,    11,    12,
  2694.     13,    -1,    15,    16,    17,    18,    19,    20,    21,    22,
  2695.     23,    24,    25,    26,    27,    28,    29,    30,    31,   875,
  2696.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2697.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2698.     53,    54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,
  2699.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2700.     73,    74,    75,   919,   920,    -1,   922,    -1,    81,    82,
  2701.     83,    -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,
  2702.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2703.    103,   104,     1,    -1,     3,     4,     5,     6,     7,     8,
  2704.      9,    -1,    11,    12,    13,    -1,    15,    16,    17,    18,
  2705.     19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
  2706.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2707.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2708.     49,    50,    51,    -1,    53,    54,    -1,    56,    -1,    -1,
  2709.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2710.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  2711.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2712.     -1,    90,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,
  2713.     -1,    -1,    -1,    -1,   103,   104,     1,    -1,     3,     4,
  2714.      5,     6,     7,     8,     9,    -1,    11,    12,    13,    -1,
  2715.     15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  2716.     25,    26,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2717.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2718.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2719.     -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2720.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2721.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2722.     -1,    -1,    -1,    88,    -1,    90,    -1,    92,    -1,    -1,
  2723.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,   104,
  2724.      1,    -1,     3,     4,     5,     6,     7,     8,     9,    -1,
  2725.     11,    12,    13,    -1,    15,    16,    17,    18,    19,    20,
  2726.     21,    22,    23,    24,    25,    26,    27,    28,    29,    30,
  2727.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2728.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2729.     51,    -1,    53,    54,    -1,    56,    -1,    -1,    -1,    -1,
  2730.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,
  2731.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  2732.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,    90,
  2733.     -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2734.     -1,    -1,   103,   104,     1,    -1,     3,     4,     5,     6,
  2735.      7,     8,     9,    -1,    11,    12,    13,    -1,    15,    16,
  2736.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2737.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2738.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2739.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2740.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2741.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2742.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2743.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2744.      7,     8,     9,    -1,    11,    12,    13,   104,    15,    16,
  2745.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2746.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2747.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2748.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2749.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2750.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2751.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2752.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2753.      7,     8,     9,    -1,    11,    12,    13,   104,    15,    16,
  2754.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  2755.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2756.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2757.     47,    48,    49,    50,    51,    -1,    53,    54,    -1,    56,
  2758.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2759.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2760.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2761.     -1,    88,    -1,    90,     1,    92,     3,     4,     5,     6,
  2762.      7,     8,     9,    10,    11,    12,    -1,   104,    -1,    -1,
  2763.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2764.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2765.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2766.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  2767.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2768.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2769.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2770.     -1,    88,    -1,    -1,    -1,    92,    93,    -1,    -1,    -1,
  2771.     -1,    -1,    -1,    -1,    -1,   102,     1,   104,     3,     4,
  2772.     -1,     6,     7,     8,     9,    -1,    11,    12,    66,    67,
  2773.     68,    69,    70,    71,    72,    73,    74,    75,    76,    77,
  2774.     78,    79,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2775.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2776.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2777.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2778.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2779.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2780.     -1,    -1,    -1,    88,    89,    -1,     1,    92,     3,     4,
  2781.     -1,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2782.     -1,    -1,    -1,    -1,    19,    -1,    -1,    -1,    -1,    -1,
  2783.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2784.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2785.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2786.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2787.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2788.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2789.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2790.     -1,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2791.     -1,    -1,    -1,    -1,    19,    -1,    -1,    -1,    -1,    -1,
  2792.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2793.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2794.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2795.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2796.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2797.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2798.     -1,    -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,
  2799.      5,     6,     7,     8,     9,    -1,    11,    12,   103,   104,
  2800.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2801.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2802.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  2803.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    54,
  2804.     -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2805.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2806.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,     1,
  2807.     -1,    -1,     4,    88,     6,     7,    -1,    92,    -1,    -1,
  2808.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,
  2809.     -1,    -1,    -1,    -1,    -1,    27,    -1,    -1,    -1,    31,
  2810.     -1,    -1,    -1,    35,    -1,    37,    38,    -1,    -1,    -1,
  2811.     -1,    -1,    44,    -1,    -1,    -1,    -1,    -1,    -1,    51,
  2812.     -1,    53,    -1,    55,    -1,    57,    58,    59,    -1,    61,
  2813.     62,    63,    64,    65,    66,    67,    68,    69,    70,    71,
  2814.     72,    73,    74,    75,    76,    77,    78,    -1,    -1,    81,
  2815.     82,    83,    -1,     1,    86,     3,     4,    89,     6,     7,
  2816.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,
  2817.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2818.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2819.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2820.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2821.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2822.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2823.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2824.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2825.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2826.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2827.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2828.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2829.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2830.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2831.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2832.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2833.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2834.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2835.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2836.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2837.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2838.     48,    49,    50,    51,    -1,    53,    54,    -1,    -1,    -1,
  2839.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2840.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2841.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2842.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2843.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2844.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2845.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2846.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2847.     48,    49,    50,    51,    -1,    53,    -1,    -1,    56,    -1,
  2848.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2849.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2850.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2851.     88,    -1,    -1,     1,    92,     3,     4,    -1,     6,     7,
  2852.      8,     9,    -1,    11,    12,    -1,   104,    -1,    -1,    -1,
  2853.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2854.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2855.     38,    -1,    40,    41,    42,    43,    -1,    -1,    46,    47,
  2856.     48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,
  2857.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2858.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2859.     -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,
  2860.     88,    -1,    -1,    -1,    92,    -1,    -1,    -1,    -1,    -1,
  2861.     -1,    -1,    -1,    -1,   102,     1,   104,     3,     4,    -1,
  2862.      6,     7,     8,     9,    -1,    11,    12,    67,    68,    69,
  2863.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  2864.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2865.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2866.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  2867.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2868.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2869.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2870.     -1,    -1,    88,    -1,    -1,     1,    92,     3,     4,    -1,
  2871.      6,     7,     8,     9,    -1,    11,    12,    -1,   104,    -1,
  2872.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2873.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2874.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2875.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  2876.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2877.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2878.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2879.     -1,    -1,    88,    -1,     3,     4,    92,     6,     7,     8,
  2880.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,
  2881.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  2882.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  2883.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  2884.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  2885.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  2886.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  2887.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  2888.     -1,    -1,    -1,    92,    -1,    -1,    -1,    -1,    -1,    -1,
  2889.     -1,    -1,    -1,    -1,    -1,   104,   105,     3,     4,     5,
  2890.      6,     7,     8,     9,    -1,    11,    12,    13,    -1,    15,
  2891.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  2892.     26,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  2893.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  2894.     46,    47,    48,    49,    50,    51,    -1,    53,    54,    -1,
  2895.     56,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  2896.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  2897.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  2898.     -1,    -1,    88,    -1,    90,    -1,    92,    -1,    -1,    -1,
  2899.     -1,    -1,    -1,    -1,    -1,    -1,    -1,   103,   104,     3,
  2900.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2901.     -1,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2902.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2903.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2904.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2905.     54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2906.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2907.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2908.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2909.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2910.    104,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2911.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2912.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2913.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2914.     54,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2915.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2916.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2917.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2918.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  2919.    104,    15,    16,    17,    18,    19,    20,    21,    22,    23,
  2920.     24,    25,    26,    27,    28,    29,    30,    31,    -1,    33,
  2921.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2922.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2923.     -1,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2924.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2925.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2926.     -1,    -1,    -1,    -1,    88,    -1,    90,    -1,    92,     3,
  2927.      4,     5,     6,     7,     8,     9,    10,    11,    12,    -1,
  2928.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2929.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2930.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2931.     44,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2932.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2933.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2934.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2935.     -1,    85,    -1,    -1,    88,    89,    -1,    -1,    92,    93,
  2936.      3,     4,     5,     6,     7,     8,     9,    10,    11,    12,
  2937.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2938.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  2939.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  2940.     43,    44,    -1,    46,    47,    48,    49,    50,    51,    -1,
  2941.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  2942.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2943.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  2944.     83,    -1,    85,    -1,    -1,    88,    89,    -1,    -1,    92,
  2945.     93,     3,     4,    -1,     6,     7,     8,     9,    -1,    11,
  2946.     12,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2947.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  2948.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  2949.     42,    43,    44,    -1,    46,    47,    48,    49,    50,    51,
  2950.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2951.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  2952.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  2953.     82,    83,    -1,    85,    -1,    -1,    88,    89,     3,     4,
  2954.     -1,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  2955.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2956.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  2957.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    44,
  2958.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  2959.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  2960.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  2961.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  2962.     85,    -1,    -1,    88,    89,     3,     4,    -1,     6,     7,
  2963.      8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,
  2964.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,
  2965.     28,    29,    30,    31,    -1,    33,    -1,    35,    -1,    37,
  2966.     38,    -1,    40,    41,    42,    43,    44,    -1,    46,    47,
  2967.     48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,
  2968.     -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,
  2969.     -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,
  2970.     -1,    -1,    -1,    81,    82,    83,    -1,    85,    -1,    -1,
  2971.     88,    89,     3,     4,    -1,     6,     7,     8,     9,    -1,
  2972.     11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,
  2973.     -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,
  2974.     31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,
  2975.     41,    42,    43,    -1,    -1,    46,    47,    48,    49,    50,
  2976.     51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2977.     -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    70,
  2978.     -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,
  2979.     81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,     3,
  2980.      4,    92,     6,     7,     8,     9,    -1,    11,    12,    -1,
  2981.     -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,
  2982.     -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,    33,
  2983.     -1,    35,    -1,    37,    38,    -1,    40,    41,    42,    43,
  2984.     -1,    -1,    46,    47,    48,    49,    50,    51,    -1,    53,
  2985.     -1,    -1,    56,    -1,    -1,    -1,    -1,    -1,    62,    -1,
  2986.     -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,
  2987.     74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,
  2988.     -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,     6,
  2989.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  2990.    104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  2991.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  2992.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  2993.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  2994.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  2995.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  2996.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  2997.     -1,    88,    -1,     3,     4,    92,     6,     7,     8,     9,
  2998.     -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,
  2999.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  3000.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  3001.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  3002.     50,    51,    -1,    53,    54,    -1,    -1,    -1,    -1,    -1,
  3003.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3004.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3005.     -1,    81,    82,    83,    -1,    -1,     3,     4,    88,     6,
  3006.      7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,    -1,
  3007.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  3008.     27,    28,    29,    30,    31,    -1,    33,    -1,    35,    -1,
  3009.     37,    38,    -1,    40,    41,    42,    43,    -1,    -1,    46,
  3010.     47,    48,    49,    50,    51,    -1,    53,    -1,    -1,    -1,
  3011.     -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,    -1,
  3012.     -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,    -1,
  3013.     -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,    -1,
  3014.     -1,    88,    89,     3,     4,    -1,     6,     7,     8,     9,
  3015.     -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,    -1,
  3016.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,    29,
  3017.     30,    31,    -1,    33,    -1,    35,    -1,    37,    38,    -1,
  3018.     40,    41,    42,    43,    -1,    -1,    46,    47,    48,    49,
  3019.     50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,
  3020.     -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,    -1,
  3021.     -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,    -1,
  3022.     -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,    -1,
  3023.      3,     4,    92,     6,     7,     8,     9,    -1,    11,    12,
  3024.     -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,
  3025.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3026.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3027.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  3028.     53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,
  3029.     -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3030.     73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,    82,
  3031.     83,    -1,    -1,    -1,    -1,    88,    -1,     3,     4,    92,
  3032.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  3033.     -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3034.     -1,    27,    28,    29,    30,    31,    -1,    33,    -1,    35,
  3035.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  3036.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  3037.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  3038.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  3039.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  3040.     -1,    -1,    88,    -1,     3,     4,    92,     6,     7,     8,
  3041.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,   104,    -1,
  3042.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3043.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3044.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  3045.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  3046.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  3047.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  3048.     -1,    -1,    81,    82,    83,    -1,    -1,    -1,    -1,    88,
  3049.     -1,     3,     4,    92,     6,     7,     8,     9,    -1,    11,
  3050.     12,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  3051.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  3052.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  3053.     42,    43,    -1,    -1,    46,    47,    48,    49,    50,    51,
  3054.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3055.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  3056.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  3057.     82,    83,    -1,    -1,    -1,    -1,    88,    -1,     3,     4,
  3058.     92,     6,     7,     8,     9,    -1,    11,    12,    -1,    -1,
  3059.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3060.     -1,    -1,    27,    28,    29,    30,    31,    -1,    33,    -1,
  3061.     35,    -1,    37,    38,    -1,    40,    41,    42,    43,    -1,
  3062.     -1,    46,    47,    48,    49,    50,    51,    -1,    53,    -1,
  3063.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,
  3064.     65,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,
  3065.     75,    -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,
  3066.     -1,     3,     4,    88,     6,     7,     8,     9,    -1,    11,
  3067.     12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,
  3068.     -1,    -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,
  3069.     -1,    33,    -1,    35,    -1,    37,    38,    -1,    40,    41,
  3070.     42,    43,    -1,    -1,    46,    47,    48,    49,    50,    51,
  3071.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3072.     62,    -1,    -1,    65,    -1,    -1,    -1,    -1,    -1,    -1,
  3073.     -1,    73,    74,    75,    -1,    -1,    -1,    -1,    -1,    81,
  3074.     82,    83,    -1,    -1,     3,     4,    88,     6,     7,     8,
  3075.      9,    -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,
  3076.     -1,    -1,   104,    -1,    -1,    -1,    -1,    -1,    27,    28,
  3077.     29,    30,    31,    -1,    33,    -1,    35,    -1,    37,    38,
  3078.     -1,    40,    41,    42,    43,    -1,    -1,    46,    47,    48,
  3079.     49,    50,    51,    -1,    53,    -1,    -1,    -1,    -1,    -1,
  3080.     -1,    -1,    -1,    62,    -1,    -1,    65,    -1,    -1,    -1,
  3081.     -1,    -1,    -1,    -1,    73,    74,    75,    -1,    -1,    -1,
  3082.     -1,    -1,    81,    82,    83,    -1,    -1,     3,     4,    88,
  3083.      6,     7,     8,     9,    -1,    11,    12,    -1,    -1,    -1,
  3084.     -1,    -1,    -1,    -1,    -1,   104,    -1,    -1,    -1,    -1,
  3085.     -1,    27,    28,    -1,    -1,    31,    -1,    33,    -1,    35,
  3086.     -1,    37,    38,    -1,    40,    41,    42,    43,    -1,    -1,
  3087.     46,    47,    48,    49,    50,    51,    -1,    53,    -1,    -1,
  3088.     -1,    -1,    -1,    -1,    -1,    -1,    62,    -1,    -1,    65,
  3089.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    73,    74,    75,
  3090.     -1,    -1,    -1,    -1,    -1,    81,    82,    83,    -1,    -1,
  3091.      3,     4,    88,     6,     7,     8,     9,    -1,    11,    12,
  3092.     -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   104,    -1,
  3093.     -1,    -1,    -1,    -1,    27,    28,    29,    30,    31,    -1,
  3094.     33,    -1,    35,    -1,    37,    38,    -1,    40,    41,    42,
  3095.     43,    -1,    -1,    46,    47,    48,    49,    50,    51,    -1,
  3096.     53,    -1,     3,     4,     5,     6,     7,    -1,    -1,    -1,
  3097.     -1,    12,    -1,    -1,    -1,    -1,    -1,     3,     4,     5,
  3098.      6,     7,    -1,    -1,    -1,    -1,    12,    -1,    81,    82,
  3099.     83,    -1,    -1,    -1,    35,    88,    -1,    -1,    -1,    92,
  3100.     41,    27,    -1,    44,    -1,    31,    -1,    -1,    -1,    35,
  3101.     51,   104,    53,    -1,    -1,    41,    -1,    -1,    -1,    -1,
  3102.     -1,    -1,    -1,    -1,    65,    51,    -1,    53,    -1,    -1,
  3103.     56,    -1,    -1,    -1,    75,    -1,    -1,    -1,    -1,    65,
  3104.     -1,    -1,    83,    -1,    85,    -1,    -1,    88,    89,    75,
  3105.     -1,     3,     4,     5,     6,     7,    -1,    83,    10,    -1,
  3106.     12,    -1,    88,    -1,    -1,    -1,    -1,    -1,     3,     4,
  3107.      5,     6,     7,    -1,    -1,    27,    -1,    12,    -1,    31,
  3108.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,
  3109.     -1,    -1,    27,    -1,    -1,    -1,    31,    -1,    -1,    51,
  3110.     35,    53,    -1,    -1,    -1,    -1,    41,    -1,    -1,    -1,
  3111.     -1,    -1,    -1,    65,    -1,    -1,    51,    -1,    53,    -1,
  3112.     -1,    -1,    -1,    75,    -1,    60,    -1,    -1,    -1,    -1,
  3113.     65,    83,    -1,    -1,    -1,    -1,    88,    -1,    -1,    -1,
  3114.     75,     3,     4,     5,     6,     7,    -1,    -1,    83,    -1,
  3115.     12,    -1,    -1,    88,    -1,    -1,    -1,    -1,     3,     4,
  3116.      5,     6,     7,    -1,    -1,    27,    -1,    12,    -1,    31,
  3117.     -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    41,
  3118.     -1,    -1,    27,    -1,    -1,    -1,    31,    -1,    -1,    51,
  3119.     35,    53,    -1,    -1,    56,    -1,    41,    -1,    -1,    -1,
  3120.     -1,    -1,     4,    65,     6,     7,    51,    -1,    53,    -1,
  3121.     12,    -1,    -1,    75,    -1,    -1,    -1,    -1,    -1,    -1,
  3122.     65,    83,    -1,    -1,    -1,    27,    88,    -1,    -1,    31,
  3123.     75,    -1,    -1,    35,    -1,    -1,    -1,    -1,    83,    -1,
  3124.     -1,    -1,    44,    88,    -1,    -1,    -1,    -1,    -1,    51,
  3125.     -1,    53,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  3126.     57,    58,    59,    65,    61,    62,    63,    64,    65,    66,
  3127.     67,    68,    69,    75,    71,    72,    73,    74,    75,    76,
  3128.     77,    78,    79,    85,    -1,    -1,    88,    89,    57,    58,
  3129.     59,    -1,    61,    62,    63,    64,    65,    66,    67,    68,
  3130.     69,    70,    71,    72,    73,    74,    75,    76,    77,    78,
  3131.     79,    55,    32,    57,    58,    59,    -1,    61,    62,    63,
  3132.     64,    65,    66,    67,    68,    69,    70,    71,    72,    73,
  3133.     74,    75,    76,    77,    78,    79,   105,    57,    58,    59,
  3134.     -1,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  3135.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3136.     57,    58,    59,    60,    61,    62,    63,    64,    65,    66,
  3137.     67,    68,    69,    70,    71,    72,    73,    74,    75,    76,
  3138.     77,    78,    79,    57,    58,    59,    60,    61,    62,    63,
  3139.     64,    65,    66,    67,    68,    69,    70,    71,    72,    73,
  3140.     74,    75,    76,    77,    78,    79,    57,    58,    59,    -1,
  3141.     61,    62,    63,    64,    65,    66,    67,    68,    69,    70,
  3142.     71,    72,    73,    74,    75,    76,    77,    78,    79,    59,
  3143.     -1,    61,    62,    63,    64,    65,    66,    67,    68,    69,
  3144.     70,    71,    72,    73,    74,    75,    76,    77,    78,    79,
  3145.     62,    63,    64,    65,    66,    67,    68,    69,    70,    71,
  3146.     72,    73,    74,    75,    76,    77,    78,    79,    64,    65,
  3147.     66,    67,    68,    69,    70,    71,    72,    73,    74,    75,
  3148.     76,    77,    78,    79,    65,    66,    67,    68,    69,    70,
  3149.     71,    72,    73,    74,    75,    76,    77,    78,    79
  3150. };
  3151. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  3152. #line 3 "/ade/lib/bison.simple"
  3153.  
  3154. /* Skeleton output parser for bison,
  3155.    Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
  3156.  
  3157.    This program is free software; you can redistribute it and/or modify
  3158.    it under the terms of the GNU General Public License as published by
  3159.    the Free Software Foundation; either version 2, or (at your option)
  3160.    any later version.
  3161.  
  3162.    This program is distributed in the hope that it will be useful,
  3163.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  3164.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  3165.    GNU General Public License for more details.
  3166.  
  3167.    You should have received a copy of the GNU General Public License
  3168.    along with this program; if not, write to the Free Software
  3169.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  3170.  
  3171. /* As a special exception, when this file is copied by Bison into a
  3172.    Bison output file, you may use that output file without restriction.
  3173.    This special exception was added by the Free Software Foundation
  3174.    in version 1.24 of Bison.  */
  3175.  
  3176. #ifndef alloca
  3177. #ifdef __GNUC__
  3178. #define alloca __builtin_alloca
  3179. #else /* not GNU C.  */
  3180. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  3181. #include <alloca.h>
  3182. #else /* not sparc */
  3183. #if defined (MSDOS) && !defined (__TURBOC__)
  3184. #include <malloc.h>
  3185. #else /* not MSDOS, or __TURBOC__ */
  3186. #if defined(_AIX)
  3187. #include <malloc.h>
  3188.  #pragma alloca
  3189. #else /* not MSDOS, __TURBOC__, or _AIX */
  3190. #ifdef __hpux
  3191. #ifdef __cplusplus
  3192. extern "C" {
  3193. void *alloca (unsigned int);
  3194. };
  3195. #else /* not __cplusplus */
  3196. void *alloca ();
  3197. #endif /* not __cplusplus */
  3198. #endif /* __hpux */
  3199. #endif /* not _AIX */
  3200. #endif /* not MSDOS, or __TURBOC__ */
  3201. #endif /* not sparc.  */
  3202. #endif /* not GNU C.  */
  3203. #endif /* alloca not defined.  */
  3204.  
  3205. /* This is the parser code that is written into each bison parser
  3206.   when the %semantic_parser declaration is not specified in the grammar.
  3207.   It was written by Richard Stallman by simplifying the hairy parser
  3208.   used when %semantic_parser is specified.  */
  3209.  
  3210. /* Note: there must be only one dollar sign in this file.
  3211.    It is replaced by the list of actions, each action
  3212.    as one case of the switch.  */
  3213.  
  3214. #define yyerrok        (yyerrstatus = 0)
  3215. #define yyclearin    (yychar = YYEMPTY)
  3216. #define YYEMPTY        -2
  3217. #define YYEOF        0
  3218. #define YYACCEPT    return(0)
  3219. #define YYABORT     return(1)
  3220. #define YYERROR        goto yyerrlab1
  3221. /* Like YYERROR except do call yyerror.
  3222.    This remains here temporarily to ease the
  3223.    transition to the new meaning of YYERROR, for GCC.
  3224.    Once GCC version 2 has supplanted version 1, this can go.  */
  3225. #define YYFAIL        goto yyerrlab
  3226. #define YYRECOVERING()  (!!yyerrstatus)
  3227. #define YYBACKUP(token, value) \
  3228. do                                \
  3229.   if (yychar == YYEMPTY && yylen == 1)                \
  3230.     { yychar = (token), yylval = (value);            \
  3231.       yychar1 = YYTRANSLATE (yychar);                \
  3232.       YYPOPSTACK;                        \
  3233.       goto yybackup;                        \
  3234.     }                                \
  3235.   else                                \
  3236.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  3237. while (0)
  3238.  
  3239. #define YYTERROR    1
  3240. #define YYERRCODE    256
  3241.  
  3242. #ifndef YYPURE
  3243. #define YYLEX        yylex()
  3244. #endif
  3245.  
  3246. #ifdef YYPURE
  3247. #ifdef YYLSP_NEEDED
  3248. #ifdef YYLEX_PARAM
  3249. #define YYLEX        yylex(&yylval, &yylloc, YYLEX_PARAM)
  3250. #else
  3251. #define YYLEX        yylex(&yylval, &yylloc)
  3252. #endif
  3253. #else /* not YYLSP_NEEDED */
  3254. #ifdef YYLEX_PARAM
  3255. #define YYLEX        yylex(&yylval, YYLEX_PARAM)
  3256. #else
  3257. #define YYLEX        yylex(&yylval)
  3258. #endif
  3259. #endif /* not YYLSP_NEEDED */
  3260. #endif
  3261.  
  3262. /* If nonreentrant, generate the variables here */
  3263.  
  3264. #ifndef YYPURE
  3265.  
  3266. int    yychar;            /*  the lookahead symbol        */
  3267. YYSTYPE    yylval;            /*  the semantic value of the        */
  3268.                 /*  lookahead symbol            */
  3269.  
  3270. #ifdef YYLSP_NEEDED
  3271. YYLTYPE yylloc;            /*  location data for the lookahead    */
  3272.                 /*  symbol                */
  3273. #endif
  3274.  
  3275. int yynerrs;            /*  number of parse errors so far       */
  3276. #endif  /* not YYPURE */
  3277.  
  3278. #if YYDEBUG != 0
  3279. int yydebug;            /*  nonzero means print parse trace    */
  3280. /* Since this is uninitialized, it does not stop multiple parsers
  3281.    from coexisting.  */
  3282. #endif
  3283.  
  3284. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  3285.  
  3286. #ifndef    YYINITDEPTH
  3287. #define YYINITDEPTH 200
  3288. #endif
  3289.  
  3290. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  3291.     (effective only if the built-in stack extension method is used).  */
  3292.  
  3293. #if YYMAXDEPTH == 0
  3294. #undef YYMAXDEPTH
  3295. #endif
  3296.  
  3297. #ifndef YYMAXDEPTH
  3298. #define YYMAXDEPTH 10000
  3299. #endif
  3300.  
  3301. /* Prevent warning if -Wstrict-prototypes.  */
  3302. #ifdef __GNUC__
  3303. int yyparse (void);
  3304. #endif
  3305.  
  3306. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  3307. #define __yy_memcpy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  3308. #else                /* not GNU C or C++ */
  3309. #ifndef __cplusplus
  3310.  
  3311. /* This is the most reliable way to avoid incompatibilities
  3312.    in available built-in functions on various systems.  */
  3313. static void
  3314. __yy_memcpy (from, to, count)
  3315.      char *from;
  3316.      char *to;
  3317.      int count;
  3318. {
  3319.   register char *f = from;
  3320.   register char *t = to;
  3321.   register int i = count;
  3322.  
  3323.   while (i-- > 0)
  3324.     *t++ = *f++;
  3325. }
  3326.  
  3327. #else /* __cplusplus */
  3328.  
  3329. /* This is the most reliable way to avoid incompatibilities
  3330.    in available built-in functions on various systems.  */
  3331. static void
  3332. __yy_memcpy (char *from, char *to, int count)
  3333. {
  3334.   register char *f = from;
  3335.   register char *t = to;
  3336.   register int i = count;
  3337.  
  3338.   while (i-- > 0)
  3339.     *t++ = *f++;
  3340. }
  3341.  
  3342. #endif
  3343. #endif
  3344.  
  3345. #line 192 "/ade/lib/bison.simple"
  3346.  
  3347. /* The user can define YYPARSE_PARAM as the name of an argument to be passed
  3348.    into yyparse.  The argument should have type void *.
  3349.    It should actually point to an object.
  3350.    Grammar actions can access the variable by casting it
  3351.    to the proper pointer type.  */
  3352.  
  3353. #ifdef YYPARSE_PARAM
  3354. #define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
  3355. #else
  3356. #define YYPARSE_PARAM
  3357. #define YYPARSE_PARAM_DECL
  3358. #endif
  3359.  
  3360. int
  3361. yyparse(YYPARSE_PARAM)
  3362.      YYPARSE_PARAM_DECL
  3363. {
  3364.   register int yystate;
  3365.   register int yyn;
  3366.   register short *yyssp;
  3367.   register YYSTYPE *yyvsp;
  3368.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  3369.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  3370.  
  3371.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  3372.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  3373.  
  3374.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  3375.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  3376.  
  3377. #ifdef YYLSP_NEEDED
  3378.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  3379.   YYLTYPE *yyls = yylsa;
  3380.   YYLTYPE *yylsp;
  3381.  
  3382. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  3383. #else
  3384. #define YYPOPSTACK   (yyvsp--, yyssp--)
  3385. #endif
  3386.  
  3387.   int yystacksize = YYINITDEPTH;
  3388.  
  3389. #ifdef YYPURE
  3390.   int yychar;
  3391.   YYSTYPE yylval;
  3392.   int yynerrs;
  3393. #ifdef YYLSP_NEEDED
  3394.   YYLTYPE yylloc;
  3395. #endif
  3396. #endif
  3397.  
  3398.   YYSTYPE yyval;        /*  the variable used to return        */
  3399.                 /*  semantic values from the action    */
  3400.                 /*  routines                */
  3401.  
  3402.   int yylen;
  3403.  
  3404. #if YYDEBUG != 0
  3405.   if (yydebug)
  3406.     fprintf(stderr, "Starting parse\n");
  3407. #endif
  3408.  
  3409.   yystate = 0;
  3410.   yyerrstatus = 0;
  3411.   yynerrs = 0;
  3412.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  3413.  
  3414.   /* Initialize stack pointers.
  3415.      Waste one element of value and location stack
  3416.      so that they stay on the same level as the state stack.
  3417.      The wasted elements are never initialized.  */
  3418.  
  3419.   yyssp = yyss - 1;
  3420.   yyvsp = yyvs;
  3421. #ifdef YYLSP_NEEDED
  3422.   yylsp = yyls;
  3423. #endif
  3424.  
  3425. /* Push a new state, which is found in  yystate  .  */
  3426. /* In all cases, when you get here, the value and location stacks
  3427.    have just been pushed. so pushing a state here evens the stacks.  */
  3428. yynewstate:
  3429.  
  3430.   *++yyssp = yystate;
  3431.  
  3432.   if (yyssp >= yyss + yystacksize - 1)
  3433.     {
  3434.       /* Give user a chance to reallocate the stack */
  3435.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  3436.       YYSTYPE *yyvs1 = yyvs;
  3437.       short *yyss1 = yyss;
  3438. #ifdef YYLSP_NEEDED
  3439.       YYLTYPE *yyls1 = yyls;
  3440. #endif
  3441.  
  3442.       /* Get the current used size of the three stacks, in elements.  */
  3443.       int size = yyssp - yyss + 1;
  3444.  
  3445. #ifdef yyoverflow
  3446.       /* Each stack pointer address is followed by the size of
  3447.      the data in use in that stack, in bytes.  */
  3448. #ifdef YYLSP_NEEDED
  3449.       /* This used to be a conditional around just the two extra args,
  3450.      but that might be undefined if yyoverflow is a macro.  */
  3451.       yyoverflow("parser stack overflow",
  3452.          &yyss1, size * sizeof (*yyssp),
  3453.          &yyvs1, size * sizeof (*yyvsp),
  3454.          &yyls1, size * sizeof (*yylsp),
  3455.          &yystacksize);
  3456. #else
  3457.       yyoverflow("parser stack overflow",
  3458.          &yyss1, size * sizeof (*yyssp),
  3459.          &yyvs1, size * sizeof (*yyvsp),
  3460.          &yystacksize);
  3461. #endif
  3462.  
  3463.       yyss = yyss1; yyvs = yyvs1;
  3464. #ifdef YYLSP_NEEDED
  3465.       yyls = yyls1;
  3466. #endif
  3467. #else /* no yyoverflow */
  3468.       /* Extend the stack our own way.  */
  3469.       if (yystacksize >= YYMAXDEPTH)
  3470.     {
  3471.       yyerror("parser stack overflow");
  3472.       return 2;
  3473.     }
  3474.       yystacksize *= 2;
  3475.       if (yystacksize > YYMAXDEPTH)
  3476.     yystacksize = YYMAXDEPTH;
  3477.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  3478.       __yy_memcpy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  3479.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  3480.       __yy_memcpy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  3481. #ifdef YYLSP_NEEDED
  3482.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  3483.       __yy_memcpy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  3484. #endif
  3485. #endif /* no yyoverflow */
  3486.  
  3487.       yyssp = yyss + size - 1;
  3488.       yyvsp = yyvs + size - 1;
  3489. #ifdef YYLSP_NEEDED
  3490.       yylsp = yyls + size - 1;
  3491. #endif
  3492.  
  3493. #if YYDEBUG != 0
  3494.       if (yydebug)
  3495.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  3496. #endif
  3497.  
  3498.       if (yyssp >= yyss + yystacksize - 1)
  3499.     YYABORT;
  3500.     }
  3501.  
  3502. #if YYDEBUG != 0
  3503.   if (yydebug)
  3504.     fprintf(stderr, "Entering state %d\n", yystate);
  3505. #endif
  3506.  
  3507.   goto yybackup;
  3508.  yybackup:
  3509.  
  3510. /* Do appropriate processing given the current state.  */
  3511. /* Read a lookahead token if we need one and don't already have one.  */
  3512. /* yyresume: */
  3513.  
  3514.   /* First try to decide what to do without reference to lookahead token.  */
  3515.  
  3516.   yyn = yypact[yystate];
  3517.   if (yyn == YYFLAG)
  3518.     goto yydefault;
  3519.  
  3520.   /* Not known => get a lookahead token if don't already have one.  */
  3521.  
  3522.   /* yychar is either YYEMPTY or YYEOF
  3523.      or a valid token in external form.  */
  3524.  
  3525.   if (yychar == YYEMPTY)
  3526.     {
  3527. #if YYDEBUG != 0
  3528.       if (yydebug)
  3529.     fprintf(stderr, "Reading a token: ");
  3530. #endif
  3531.       yychar = YYLEX;
  3532.     }
  3533.  
  3534.   /* Convert token to internal form (in yychar1) for indexing tables with */
  3535.  
  3536.   if (yychar <= 0)        /* This means end of input. */
  3537.     {
  3538.       yychar1 = 0;
  3539.       yychar = YYEOF;        /* Don't call YYLEX any more */
  3540.  
  3541. #if YYDEBUG != 0
  3542.       if (yydebug)
  3543.     fprintf(stderr, "Now at end of input.\n");
  3544. #endif
  3545.     }
  3546.   else
  3547.     {
  3548.       yychar1 = YYTRANSLATE(yychar);
  3549.  
  3550. #if YYDEBUG != 0
  3551.       if (yydebug)
  3552.     {
  3553.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  3554.       /* Give the individual parser a way to print the precise meaning
  3555.          of a token, for further debugging info.  */
  3556. #ifdef YYPRINT
  3557.       YYPRINT (stderr, yychar, yylval);
  3558. #endif
  3559.       fprintf (stderr, ")\n");
  3560.     }
  3561. #endif
  3562.     }
  3563.  
  3564.   yyn += yychar1;
  3565.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  3566.     goto yydefault;
  3567.  
  3568.   yyn = yytable[yyn];
  3569.  
  3570.   /* yyn is what to do for this token type in this state.
  3571.      Negative => reduce, -yyn is rule number.
  3572.      Positive => shift, yyn is new state.
  3573.        New state is final state => don't bother to shift,
  3574.        just return success.
  3575.      0, or most negative number => error.  */
  3576.  
  3577.   if (yyn < 0)
  3578.     {
  3579.       if (yyn == YYFLAG)
  3580.     goto yyerrlab;
  3581.       yyn = -yyn;
  3582.       goto yyreduce;
  3583.     }
  3584.   else if (yyn == 0)
  3585.     goto yyerrlab;
  3586.  
  3587.   if (yyn == YYFINAL)
  3588.     YYACCEPT;
  3589.  
  3590.   /* Shift the lookahead token.  */
  3591.  
  3592. #if YYDEBUG != 0
  3593.   if (yydebug)
  3594.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  3595. #endif
  3596.  
  3597.   /* Discard the token being shifted unless it is eof.  */
  3598.   if (yychar != YYEOF)
  3599.     yychar = YYEMPTY;
  3600.  
  3601.   *++yyvsp = yylval;
  3602. #ifdef YYLSP_NEEDED
  3603.   *++yylsp = yylloc;
  3604. #endif
  3605.  
  3606.   /* count tokens shifted since error; after three, turn off error status.  */
  3607.   if (yyerrstatus) yyerrstatus--;
  3608.  
  3609.   yystate = yyn;
  3610.   goto yynewstate;
  3611.  
  3612. /* Do the default action for the current state.  */
  3613. yydefault:
  3614.  
  3615.   yyn = yydefact[yystate];
  3616.   if (yyn == 0)
  3617.     goto yyerrlab;
  3618.  
  3619. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  3620. yyreduce:
  3621.   yylen = yyr2[yyn];
  3622.   if (yylen > 0)
  3623.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  3624.  
  3625. #if YYDEBUG != 0
  3626.   if (yydebug)
  3627.     {
  3628.       int i;
  3629.  
  3630.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  3631.            yyn, yyrline[yyn]);
  3632.  
  3633.       /* Print the symbols being reduced, and their result.  */
  3634.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  3635.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  3636.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  3637.     }
  3638. #endif
  3639.  
  3640.  
  3641.   switch (yyn) {
  3642.  
  3643. case 2:
  3644. #line 294 "parse.y"
  3645. {
  3646.           /* In case there were missing closebraces,
  3647.              get us back to the global binding level.  */
  3648.           while (! global_bindings_p ())
  3649.             poplevel (0, 0, 0);
  3650.           finish_file ();
  3651.         ;
  3652.     break;}
  3653. case 3:
  3654. #line 308 "parse.y"
  3655. { yyval.ttype = NULL_TREE; ;
  3656.     break;}
  3657. case 4:
  3658. #line 309 "parse.y"
  3659. { yyval.ttype = NULL_TREE; ;
  3660.     break;}
  3661. case 5:
  3662. #line 311 "parse.y"
  3663. { yyval.ttype = NULL_TREE; ;
  3664.     break;}
  3665. case 6:
  3666. #line 315 "parse.y"
  3667. { have_extern_spec = 1;
  3668.           used_extern_spec = 0;
  3669.           yyval.ttype = NULL_TREE; ;
  3670.     break;}
  3671. case 7:
  3672. #line 320 "parse.y"
  3673. { have_extern_spec = 0; ;
  3674.     break;}
  3675. case 10:
  3676. #line 329 "parse.y"
  3677. { if (pending_lang_change) do_pending_lang_change(); ;
  3678.     break;}
  3679. case 11:
  3680. #line 331 "parse.y"
  3681. { if (! global_bindings_p () && ! pseudo_global_level_p())
  3682.           pop_everything (); ;
  3683.     break;}
  3684. case 12:
  3685. #line 337 "parse.y"
  3686. { if (pending_inlines) do_pending_inlines (); ;
  3687.     break;}
  3688. case 13:
  3689. #line 339 "parse.y"
  3690. { if (pending_inlines) do_pending_inlines (); ;
  3691.     break;}
  3692. case 14:
  3693. #line 341 "parse.y"
  3694. { if (pending_inlines) do_pending_inlines (); ;
  3695.     break;}
  3696. case 16:
  3697. #line 344 "parse.y"
  3698. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  3699.           assemble_asm (yyvsp[-2].ttype); ;
  3700.     break;}
  3701. case 17:
  3702. #line 347 "parse.y"
  3703. { pop_lang_context (); ;
  3704.     break;}
  3705. case 18:
  3706. #line 349 "parse.y"
  3707. { pop_lang_context (); ;
  3708.     break;}
  3709. case 19:
  3710. #line 351 "parse.y"
  3711. { if (pending_inlines) do_pending_inlines ();
  3712.           pop_lang_context (); ;
  3713.     break;}
  3714. case 20:
  3715. #line 354 "parse.y"
  3716. { if (pending_inlines) do_pending_inlines ();
  3717.           pop_lang_context (); ;
  3718.     break;}
  3719. case 21:
  3720. #line 360 "parse.y"
  3721. { push_lang_context (yyvsp[0].ttype); ;
  3722.     break;}
  3723. case 22:
  3724. #line 365 "parse.y"
  3725. { begin_template_parm_list (); ;
  3726.     break;}
  3727. case 23:
  3728. #line 367 "parse.y"
  3729. { yyval.ttype = end_template_parm_list (yyvsp[-1].ttype); ;
  3730.     break;}
  3731. case 24:
  3732. #line 372 "parse.y"
  3733. { yyval.ttype = process_template_parm (NULL_TREE, yyvsp[0].ttype); ;
  3734.     break;}
  3735. case 25:
  3736. #line 374 "parse.y"
  3737. { yyval.ttype = process_template_parm (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3738.     break;}
  3739. case 26:
  3740. #line 379 "parse.y"
  3741.           yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE);
  3742.          ttpa:
  3743.           if (TREE_PURPOSE (yyval.ttype) == signature_type_node)
  3744.             sorry ("signature as template type parameter");
  3745.           else if (TREE_PURPOSE (yyval.ttype) != class_type_node)
  3746.             pedwarn ("template type parameters must use the keyword `class'");
  3747.         ;
  3748.     break;}
  3749. case 27:
  3750. #line 388 "parse.y"
  3751. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); goto ttpa; ;
  3752.     break;}
  3753. case 28:
  3754. #line 400 "parse.y"
  3755. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  3756.     break;}
  3757. case 29:
  3758. #line 402 "parse.y"
  3759. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  3760.     break;}
  3761. case 31:
  3762. #line 408 "parse.y"
  3763. { warning ("use of `overload' is an anachronism"); ;
  3764.     break;}
  3765. case 32:
  3766. #line 412 "parse.y"
  3767. { declare_overloaded (yyvsp[0].ttype); ;
  3768.     break;}
  3769. case 33:
  3770. #line 414 "parse.y"
  3771. { declare_overloaded (yyvsp[0].ttype); ;
  3772.     break;}
  3773. case 34:
  3774. #line 421 "parse.y"
  3775. { yychar = '{'; goto template1; ;
  3776.     break;}
  3777. case 36:
  3778. #line 424 "parse.y"
  3779. { yychar = '{'; goto template1; ;
  3780.     break;}
  3781. case 38:
  3782. #line 427 "parse.y"
  3783. { yychar = ':'; goto template1; ;
  3784.     break;}
  3785. case 40:
  3786. #line 430 "parse.y"
  3787. {
  3788.           yychar = ':';
  3789.         template1:
  3790.           if (current_aggr == exception_type_node)
  3791.             error ("template type must define an aggregate or union");
  3792.           else if (current_aggr == signature_type_node)
  3793.             sorry ("template type defining a signature");
  3794.           /* Maybe pedantic warning for union?
  3795.              How about an enum? :-)  */
  3796.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 1);
  3797.           reinit_parse_for_template (yychar, yyvsp[-2].ttype, yyvsp[-1].ttype);
  3798.           yychar = YYEMPTY;
  3799.         ;
  3800.     break;}
  3801. case 42:
  3802. #line 445 "parse.y"
  3803. {
  3804.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3805.           /* declare $2 as template name with $1 parm list */
  3806.         ;
  3807.     break;}
  3808. case 43:
  3809. #line 450 "parse.y"
  3810. {
  3811.           end_template_decl (yyvsp[-2].ttype, yyvsp[-1].ttype, current_aggr, 0);
  3812.           /* declare $2 as template name with $1 parm list */
  3813.         ;
  3814.     break;}
  3815. case 44:
  3816. #line 457 "parse.y"
  3817. {
  3818.           tree d;
  3819.           int momentary;
  3820.           int def = (yyvsp[0].itype != ';');
  3821.           momentary = suspend_momentary ();
  3822.           d = start_decl (yyvsp[-4].ttype, /*current_declspecs*/NULL_TREE, 0,
  3823.                   yyvsp[-3].ttype);
  3824.           cplus_decl_attributes (d, yyvsp[-1].ttype);
  3825.           finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
  3826.           end_template_decl (yyvsp[-5].ttype, d, 0, def);
  3827.           if (def)
  3828.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-5].ttype, d);
  3829.           resume_momentary (momentary);
  3830.         ;
  3831.     break;}
  3832. case 45:
  3833. #line 474 "parse.y"
  3834. {
  3835.           tree d;
  3836.           int momentary;
  3837.           int def = (yyvsp[0].itype != ';');
  3838.  
  3839.           current_declspecs = yyvsp[-5].ttype;
  3840.           momentary = suspend_momentary ();
  3841.           d = start_decl (yyvsp[-4].ttype, current_declspecs,
  3842.                   0, yyvsp[-3].ttype);
  3843.           cplus_decl_attributes (d, yyvsp[-1].ttype);
  3844.           finish_decl (d, NULL_TREE, yyvsp[-2].ttype, 0);
  3845.           end_template_decl (yyvsp[-6].ttype, d, 0, def);
  3846.           if (def)
  3847.             {
  3848.               reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-6].ttype, d);
  3849.               yychar = YYEMPTY;
  3850.             }
  3851.           note_list_got_semicolon (yyvsp[-5].ttype);
  3852.           resume_momentary (momentary);
  3853.         ;
  3854.     break;}
  3855. case 46:
  3856. #line 495 "parse.y"
  3857. {
  3858.           int def = (yyvsp[0].itype != ';');
  3859.           tree d = start_decl (yyvsp[-1].ttype, yyvsp[-2].ttype, 0, NULL_TREE);
  3860.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3861.           end_template_decl (yyvsp[-3].ttype, d, 0, def);
  3862.           if (def)
  3863.             reinit_parse_for_template ((int) yyvsp[0].itype, yyvsp[-3].ttype, d);
  3864.         ;
  3865.     break;}
  3866. case 47:
  3867. #line 504 "parse.y"
  3868. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3869.     break;}
  3870. case 48:
  3871. #line 505 "parse.y"
  3872. { end_template_decl (yyvsp[-2].ttype, 0, 0, 0); ;
  3873.     break;}
  3874. case 49:
  3875. #line 508 "parse.y"
  3876. { yyval.itype = '{'; ;
  3877.     break;}
  3878. case 50:
  3879. #line 509 "parse.y"
  3880. { yyval.itype = ':'; ;
  3881.     break;}
  3882. case 51:
  3883. #line 510 "parse.y"
  3884. { yyval.itype = ';'; ;
  3885.     break;}
  3886. case 52:
  3887. #line 511 "parse.y"
  3888. { yyval.itype = '='; ;
  3889.     break;}
  3890. case 53:
  3891. #line 512 "parse.y"
  3892. { yyval.itype = RETURN; ;
  3893.     break;}
  3894. case 54:
  3895. #line 517 "parse.y"
  3896. {;
  3897.     break;}
  3898. case 55:
  3899. #line 519 "parse.y"
  3900. {;
  3901.     break;}
  3902. case 56:
  3903. #line 522 "parse.y"
  3904. { tree d;
  3905.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3906.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3907.         ;
  3908.     break;}
  3909. case 57:
  3910. #line 527 "parse.y"
  3911. {
  3912.           note_list_got_semicolon (yyval.ttype);
  3913.         ;
  3914.     break;}
  3915. case 58:
  3916. #line 532 "parse.y"
  3917. { tree d;
  3918.           d = start_decl (yyvsp[-1].ttype, yyval.ttype, 0, NULL_TREE);
  3919.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  3920.           note_list_got_semicolon (yyval.ttype);
  3921.         ;
  3922.     break;}
  3923. case 59:
  3924. #line 538 "parse.y"
  3925. { pedwarn ("empty declaration"); ;
  3926.     break;}
  3927. case 61:
  3928. #line 541 "parse.y"
  3929. {
  3930.         tree t = yyval.ttype;
  3931.         shadow_tag (t);
  3932.         if (TREE_CODE (t) == TREE_LIST
  3933.         && TREE_PURPOSE (t) == NULL_TREE)
  3934.           {
  3935.         t = TREE_VALUE (t);
  3936.         if (IS_AGGR_TYPE (t)
  3937.             && IDENTIFIER_TEMPLATE (TYPE_IDENTIFIER (t)))
  3938.           {
  3939.             if (CLASSTYPE_USE_TEMPLATE (t) == 0)
  3940.               SET_CLASSTYPE_TEMPLATE_SPECIALIZATION (t);
  3941.             else if (CLASSTYPE_TEMPLATE_INSTANTIATION (t))
  3942.               error ("override declaration for already-expanded template");
  3943.           }
  3944.           }
  3945.         note_list_got_semicolon (yyval.ttype);
  3946.       ;
  3947.     break;}
  3948. case 65:
  3949. #line 566 "parse.y"
  3950. {
  3951.           finish_function (lineno, 1);
  3952.           /* finish_function performs these three statements:
  3953.  
  3954.              expand_end_bindings (getdecls (), 1, 0);
  3955.              poplevel (1, 1, 0);
  3956.  
  3957.              expand_end_bindings (0, 0, 0);
  3958.              poplevel (0, 0, 1);
  3959.              */
  3960.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3961.         ;
  3962.     break;}
  3963. case 66:
  3964. #line 579 "parse.y"
  3965. {
  3966.           finish_function (lineno, 1);
  3967.           /* finish_function performs these three statements:
  3968.  
  3969.              expand_end_bindings (getdecls (), 1, 0);
  3970.              poplevel (1, 1, 0);
  3971.  
  3972.              expand_end_bindings (0, 0, 0);
  3973.              poplevel (0, 0, 1);
  3974.              */
  3975.           if (yyval.ttype) process_next_inline (yyval.ttype);
  3976.         ;
  3977.     break;}
  3978. case 67:
  3979. #line 592 "parse.y"
  3980. { finish_function (lineno, 0);
  3981.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3982.     break;}
  3983. case 68:
  3984. #line 595 "parse.y"
  3985. { finish_function (lineno, 0);
  3986.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3987.     break;}
  3988. case 69:
  3989. #line 598 "parse.y"
  3990. { finish_function (lineno, 0);
  3991.           if (yyval.ttype) process_next_inline (yyval.ttype); ;
  3992.     break;}
  3993. case 70:
  3994. #line 601 "parse.y"
  3995. {;
  3996.     break;}
  3997. case 71:
  3998. #line 603 "parse.y"
  3999. {;
  4000.     break;}
  4001. case 72:
  4002. #line 605 "parse.y"
  4003. {;
  4004.     break;}
  4005. case 73:
  4006. #line 610 "parse.y"
  4007. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  4008.             YYERROR1;
  4009.           reinit_parse_for_function ();
  4010.           yyval.ttype = NULL_TREE; ;
  4011.     break;}
  4012. case 74:
  4013. #line 615 "parse.y"
  4014. { if (! start_function (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype, 0))
  4015.             YYERROR1;
  4016.           reinit_parse_for_function ();
  4017.           yyval.ttype = NULL_TREE; ;
  4018.     break;}
  4019. case 75:
  4020. #line 620 "parse.y"
  4021. { if (! start_function (NULL_TREE, yyval.ttype, yyvsp[0].ttype, 0))
  4022.             YYERROR1;
  4023.           reinit_parse_for_function ();
  4024.           yyval.ttype = NULL_TREE; ;
  4025.     break;}
  4026. case 76:
  4027. #line 625 "parse.y"
  4028. { start_function (NULL_TREE, TREE_VALUE (yyval.ttype), NULL_TREE, 1);
  4029.           reinit_parse_for_function (); ;
  4030.     break;}
  4031. case 77:
  4032. #line 633 "parse.y"
  4033. {
  4034.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-5].ttype), yyvsp[-3].ttype, yyvsp[-1].ttype);
  4035.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-5].ttype), yyval.ttype, yyvsp[0].ttype);
  4036.          rest_of_mdef:
  4037.           if (! yyval.ttype)
  4038.             YYERROR1;
  4039.           if (yychar == YYEMPTY)
  4040.             yychar = YYLEX;
  4041.           reinit_parse_for_method (yychar, yyval.ttype); ;
  4042.     break;}
  4043. case 78:
  4044. #line 643 "parse.y"
  4045. {
  4046.           yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-3].ttype),
  4047.                      empty_parms (), yyvsp[-1].ttype);
  4048.           yyval.ttype = start_method (TREE_CHAIN (yyvsp[-3].ttype), yyval.ttype, yyvsp[0].ttype);
  4049.           goto rest_of_mdef;
  4050.         ;
  4051.     break;}
  4052. case 79:
  4053. #line 650 "parse.y"
  4054. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4055.     break;}
  4056. case 80:
  4057. #line 652 "parse.y"
  4058. { yyval.ttype = start_method (yyval.ttype, yyvsp[-1].ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4059.     break;}
  4060. case 81:
  4061. #line 654 "parse.y"
  4062. { yyval.ttype = start_method (NULL_TREE, yyval.ttype, yyvsp[0].ttype); goto rest_of_mdef; ;
  4063.     break;}
  4064. case 82:
  4065. #line 658 "parse.y"
  4066. {
  4067.           if (! current_function_parms_stored)
  4068.             store_parm_decls ();
  4069.           yyval.ttype = yyvsp[0].ttype;
  4070.         ;
  4071.     break;}
  4072. case 83:
  4073. #line 666 "parse.y"
  4074. { store_return_init (yyval.ttype, NULL_TREE); ;
  4075.     break;}
  4076. case 84:
  4077. #line 668 "parse.y"
  4078. { store_return_init (yyval.ttype, yyvsp[0].ttype); ;
  4079.     break;}
  4080. case 85:
  4081. #line 670 "parse.y"
  4082. { store_return_init (yyval.ttype, yyvsp[-1].ttype); ;
  4083.     break;}
  4084. case 86:
  4085. #line 672 "parse.y"
  4086. { store_return_init (yyval.ttype, NULL_TREE); ;
  4087.     break;}
  4088. case 87:
  4089. #line 677 "parse.y"
  4090. {
  4091.           if (yyvsp[0].itype == 0)
  4092.             error ("no base initializers given following ':'");
  4093.           setup_vtbl_ptr ();
  4094.           /* Always keep the BLOCK node associated with the outermost
  4095.              pair of curley braces of a function.  These are needed
  4096.              for correct operation of dwarfout.c.  */
  4097.           keep_next_level ();
  4098.         ;
  4099.     break;}
  4100. case 88:
  4101. #line 690 "parse.y"
  4102. {
  4103.           if (! current_function_parms_stored)
  4104.             store_parm_decls ();
  4105.  
  4106.           /* Flag that we are processing base and member initializers.  */
  4107.           current_vtable_decl = error_mark_node;
  4108.  
  4109.           if (DECL_CONSTRUCTOR_P (current_function_decl))
  4110.             {
  4111.               /* Make a contour for the initializer list.  */
  4112.               pushlevel (0);
  4113.               clear_last_expr ();
  4114.               expand_start_bindings (0);
  4115.             }
  4116.           else if (current_class_type == NULL_TREE)
  4117.             error ("base initializers not allowed for non-member functions");
  4118.           else if (! DECL_CONSTRUCTOR_P (current_function_decl))
  4119.             error ("only constructors take base initializers");
  4120.         ;
  4121.     break;}
  4122. case 89:
  4123. #line 713 "parse.y"
  4124. { yyval.itype = 0; ;
  4125.     break;}
  4126. case 90:
  4127. #line 715 "parse.y"
  4128. { yyval.itype = 1; ;
  4129.     break;}
  4130. case 93:
  4131. #line 721 "parse.y"
  4132. {
  4133.           if (current_class_name && !flag_traditional)
  4134.             pedwarn ("anachronistic old style base class initializer");
  4135.           expand_member_init (C_C_D, NULL_TREE, yyvsp[-1].ttype);
  4136.         ;
  4137.     break;}
  4138. case 94:
  4139. #line 727 "parse.y"
  4140. {
  4141.           if (current_class_name && !flag_traditional)
  4142.             pedwarn ("anachronistic old style base class initializer");
  4143.           expand_member_init (C_C_D, NULL_TREE, void_type_node);
  4144.         ;
  4145.     break;}
  4146. case 95:
  4147. #line 733 "parse.y"
  4148. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4149.     break;}
  4150. case 96:
  4151. #line 735 "parse.y"
  4152. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4153.     break;}
  4154. case 97:
  4155. #line 737 "parse.y"
  4156. { expand_member_init (C_C_D, yyval.ttype, yyvsp[-1].ttype); ;
  4157.     break;}
  4158. case 98:
  4159. #line 739 "parse.y"
  4160. { expand_member_init (C_C_D, yyval.ttype, void_type_node); ;
  4161.     break;}
  4162. case 99:
  4163. #line 742 "parse.y"
  4164. {
  4165.           do_member_init (OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  4166.         ;
  4167.     break;}
  4168. case 100:
  4169. #line 746 "parse.y"
  4170. {
  4171.           do_member_init (OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), void_type_node);
  4172.         ;
  4173.     break;}
  4174. case 109:
  4175. #line 770 "parse.y"
  4176. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, NULL_TREE); ;
  4177.     break;}
  4178. case 110:
  4179. #line 772 "parse.y"
  4180. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE); ;
  4181.     break;}
  4182. case 111:
  4183. #line 774 "parse.y"
  4184. { do_type_instantiation (yyvsp[0].ttype ? yyvsp[0].ttype : yyvsp[-1].ttype, yyvsp[-3].ttype); ;
  4185.     break;}
  4186. case 112:
  4187. #line 776 "parse.y"
  4188. { do_function_instantiation (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype); ;
  4189.     break;}
  4190. case 113:
  4191. #line 781 "parse.y"
  4192. { if (yyvsp[0].ttype) yyval.ttype = yyvsp[0].ttype; ;
  4193.     break;}
  4194. case 114:
  4195. #line 786 "parse.y"
  4196. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4197.     break;}
  4198. case 115:
  4199. #line 788 "parse.y"
  4200. { yyval.ttype = lookup_template_class (yyval.ttype, NULL_TREE, NULL_TREE); ;
  4201.     break;}
  4202. case 116:
  4203. #line 790 "parse.y"
  4204. { yyval.ttype = lookup_template_class (yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4205.     break;}
  4206. case 117:
  4207. #line 795 "parse.y"
  4208. { yyval.ttype = instantiate_class_template (yyvsp[0].ttype, 1); ;
  4209.     break;}
  4210. case 118:
  4211. #line 800 "parse.y"
  4212. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4213.     break;}
  4214. case 119:
  4215. #line 802 "parse.y"
  4216. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4217.     break;}
  4218. case 120:
  4219. #line 807 "parse.y"
  4220. { yyval.ttype = groktypename (yyval.ttype); ;
  4221.     break;}
  4222. case 122:
  4223. #line 813 "parse.y"
  4224. {
  4225.           tree t, decl, tmpl;
  4226.  
  4227.           tmpl = TREE_PURPOSE (IDENTIFIER_TEMPLATE (yyvsp[-1].ttype));
  4228.           t = xref_tag (DECL_TEMPLATE_INFO (tmpl)->aggr, yyvsp[-1].ttype, yyvsp[0].ttype, 0);
  4229.           set_current_level_tags_transparency (1);
  4230.           my_friendly_assert (TREE_CODE (t) == RECORD_TYPE
  4231.                       || TREE_CODE (t) == UNION_TYPE, 257);
  4232.           yyval.ttype = t;
  4233.  
  4234.           /* Now, put a copy of the decl in global scope, to avoid
  4235.              recursive expansion.  */
  4236.           decl = IDENTIFIER_LOCAL_VALUE (yyvsp[-1].ttype);
  4237.           if (!decl)
  4238.             decl = IDENTIFIER_CLASS_VALUE (yyvsp[-1].ttype);
  4239.           /* Now, put a copy of the decl in global scope, to avoid
  4240.              recursive expansion.  */
  4241.                   if (decl)
  4242.                     {
  4243.               /* Need to copy it to clear the chain pointer,
  4244.              and need to get it into permanent storage.  */
  4245.                       my_friendly_assert (TREE_CODE (decl) == TYPE_DECL, 258);
  4246.               push_obstacks (&permanent_obstack, &permanent_obstack);
  4247.                       decl = copy_node (decl);
  4248.               if (DECL_LANG_SPECIFIC (decl))
  4249.             copy_lang_decl (decl);
  4250.               pop_obstacks ();
  4251.               pushdecl_top_level (decl);
  4252.             }
  4253.           /* Kludge; see instantiate_class_template.  */
  4254.           TYPE_BEING_DEFINED (t) = 0;
  4255.         ;
  4256.     break;}
  4257. case 123:
  4258. #line 846 "parse.y"
  4259. {
  4260.           tree t = finish_struct (yyvsp[-3].ttype, yyvsp[-1].ttype, 0);
  4261.  
  4262.           pop_obstacks ();
  4263.           end_template_instantiation (yyvsp[-5].ttype);
  4264.  
  4265.                   /* Now go after the methods & class data.  */
  4266.                   instantiate_member_templates (yyvsp[-5].ttype);
  4267.  
  4268.           pop_tinst_level();
  4269.  
  4270.           CLASSTYPE_GOT_SEMICOLON (t) = 1;
  4271.         ;
  4272.     break;}
  4273. case 124:
  4274. #line 863 "parse.y"
  4275. { yyval.ttype = NULL_TREE; ;
  4276.     break;}
  4277. case 125:
  4278. #line 865 "parse.y"
  4279. { yyval.ttype = yyvsp[0].ttype; ;
  4280.     break;}
  4281. case 126:
  4282. #line 870 "parse.y"
  4283. { yyval.ttype = NULL_TREE; /* never used from here... */;
  4284.     break;}
  4285. case 127:
  4286. #line 872 "parse.y"
  4287. { yyval.ttype = yyvsp[-1].ttype; /*???*/ ;
  4288.     break;}
  4289. case 128:
  4290. #line 876 "parse.y"
  4291. { yyval.code = NEGATE_EXPR; ;
  4292.     break;}
  4293. case 129:
  4294. #line 878 "parse.y"
  4295. { yyval.code = CONVERT_EXPR; ;
  4296.     break;}
  4297. case 130:
  4298. #line 880 "parse.y"
  4299. { yyval.code = PREINCREMENT_EXPR; ;
  4300.     break;}
  4301. case 131:
  4302. #line 882 "parse.y"
  4303. { yyval.code = PREDECREMENT_EXPR; ;
  4304.     break;}
  4305. case 132:
  4306. #line 884 "parse.y"
  4307. { yyval.code = TRUTH_NOT_EXPR; ;
  4308.     break;}
  4309. case 133:
  4310. #line 888 "parse.y"
  4311. { yyval.ttype = build_x_compound_expr (yyval.ttype); ;
  4312.     break;}
  4313. case 135:
  4314. #line 894 "parse.y"
  4315. { error ("ANSI C++ forbids an empty condition for `%s'",
  4316.              cond_stmt_keyword);
  4317.           yyval.ttype = integer_zero_node; ;
  4318.     break;}
  4319. case 136:
  4320. #line 898 "parse.y"
  4321. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4322.                    bool_truthvalue_conversion (yyvsp[-1].ttype)); ;
  4323.     break;}
  4324. case 137:
  4325. #line 904 "parse.y"
  4326. { error ("ANSI C++ forbids an empty condition for `%s'",
  4327.              cond_stmt_keyword);
  4328.           yyval.ttype = integer_zero_node; ;
  4329.     break;}
  4330. case 138:
  4331. #line 908 "parse.y"
  4332. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4333.                    bool_truthvalue_conversion (yyvsp[-1].ttype)); ;
  4334.     break;}
  4335. case 139:
  4336. #line 914 "parse.y"
  4337. { yyval.ttype = NULL_TREE; ;
  4338.     break;}
  4339. case 140:
  4340. #line 916 "parse.y"
  4341. { yyval.ttype = build1 (CLEANUP_POINT_EXPR, bool_type_node, 
  4342.                    bool_truthvalue_conversion (yyval.ttype)); ;
  4343.     break;}
  4344. case 141:
  4345. #line 919 "parse.y"
  4346. { yyval.ttype = NULL_TREE; ;
  4347.     break;}
  4348. case 142:
  4349. #line 924 "parse.y"
  4350. { {
  4351.           tree d;
  4352.           for (d = getdecls (); d; d = TREE_CHAIN (d))
  4353.             if (TREE_CODE (d) == TYPE_DECL) {
  4354.               tree s = TREE_TYPE (d);
  4355.               if (TREE_CODE (s) == RECORD_TYPE)
  4356.             cp_error ("definition of class `%T' in condition", s);
  4357.               else if (TREE_CODE (s) == ENUMERAL_TYPE)
  4358.             cp_error ("definition of enum `%T' in condition", s);
  4359.             }
  4360.           }
  4361.           current_declspecs = yyvsp[-5].ttype;
  4362.           yyvsp[0].itype = suspend_momentary ();
  4363.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  4364.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  4365.         ;
  4366.     break;}
  4367. case 143:
  4368. #line 941 "parse.y"
  4369.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].ttype, 0);
  4370.           resume_momentary (yyvsp[-2].itype);
  4371.           yyval.ttype = yyvsp[-1].ttype; 
  4372.           if (TREE_CODE (TREE_TYPE (yyval.ttype)) == ARRAY_TYPE)
  4373.             cp_error ("definition of array `%#D' in condition", yyval.ttype); 
  4374.         ;
  4375.     break;}
  4376. case 145:
  4377. #line 953 "parse.y"
  4378. { finish_stmt (); ;
  4379.     break;}
  4380. case 146:
  4381. #line 955 "parse.y"
  4382. { finish_stmt (); ;
  4383.     break;}
  4384. case 147:
  4385. #line 957 "parse.y"
  4386. { finish_stmt (); ;
  4387.     break;}
  4388. case 149:
  4389. #line 964 "parse.y"
  4390. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4391.                           build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4392.     break;}
  4393. case 150:
  4394. #line 967 "parse.y"
  4395. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, 
  4396.                           build_tree_list (NULL_TREE, error_mark_node)); ;
  4397.     break;}
  4398. case 151:
  4399. #line 970 "parse.y"
  4400. { chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  4401.     break;}
  4402. case 152:
  4403. #line 972 "parse.y"
  4404. { chainon (yyval.ttype, build_tree_list (NULL_TREE, error_mark_node)); ;
  4405.     break;}
  4406. case 153:
  4407. #line 977 "parse.y"
  4408. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  4409.     break;}
  4410. case 155:
  4411. #line 983 "parse.y"
  4412. {
  4413. #if 0
  4414.           if (TREE_CODE (yyval.ttype) == TYPE_EXPR)
  4415.             yyval.ttype = build_component_type_expr (C_C_D, yyval.ttype, NULL_TREE, 1);
  4416. #endif
  4417.         ;
  4418.     break;}
  4419. case 156:
  4420. #line 991 "parse.y"
  4421. { yyvsp[0].itype = pedantic;
  4422.           pedantic = 0; ;
  4423.     break;}
  4424. case 157:
  4425. #line 994 "parse.y"
  4426. { yyval.ttype = yyvsp[0].ttype;
  4427.           pedantic = yyvsp[-2].itype; ;
  4428.     break;}
  4429. case 158:
  4430. #line 997 "parse.y"
  4431. { yyval.ttype = build_x_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  4432.     break;}
  4433. case 159:
  4434. #line 999 "parse.y"
  4435. { yyval.ttype = build_x_unary_op (ADDR_EXPR, yyvsp[0].ttype); ;
  4436.     break;}
  4437. case 160:
  4438. #line 1001 "parse.y"
  4439. { yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4440.     break;}
  4441. case 161:
  4442. #line 1003 "parse.y"
  4443. { yyval.ttype = build_x_unary_op (yyvsp[-1].code, yyvsp[0].ttype);
  4444.           if (yyvsp[-1].code == NEGATE_EXPR && TREE_CODE (yyvsp[0].ttype) == INTEGER_CST)
  4445.             TREE_NEGATED_INT (yyval.ttype) = 1;
  4446.           overflow_warning (yyval.ttype);
  4447.         ;
  4448.     break;}
  4449. case 162:
  4450. #line 1010 "parse.y"
  4451. { tree label = lookup_label (yyvsp[0].ttype);
  4452.           if (label == NULL_TREE)
  4453.             yyval.ttype = null_pointer_node;
  4454.           else
  4455.             {
  4456.               TREE_USED (label) = 1;
  4457.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  4458.               TREE_CONSTANT (yyval.ttype) = 1;
  4459.             }
  4460.         ;
  4461.     break;}
  4462. case 163:
  4463. #line 1021 "parse.y"
  4464. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  4465.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  4466.             error ("sizeof applied to a bit-field");
  4467.           /* ANSI says arrays and functions are converted inside comma.
  4468.              But we can't really convert them in build_compound_expr
  4469.              because that would break commas in lvalues.
  4470.              So do the conversion here if operand was a comma.  */
  4471.           if (TREE_CODE (yyvsp[0].ttype) == COMPOUND_EXPR
  4472.               && (TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == ARRAY_TYPE
  4473.               || TREE_CODE (TREE_TYPE (yyvsp[0].ttype)) == FUNCTION_TYPE))
  4474.             yyvsp[0].ttype = default_conversion (yyvsp[0].ttype);
  4475.           else if (TREE_CODE (yyvsp[0].ttype) == TREE_LIST)
  4476.                 {
  4477.               tree t = TREE_VALUE (yyvsp[0].ttype);
  4478.               if (t != NULL_TREE
  4479.               && TREE_CODE (TREE_TYPE (t)) == FUNCTION_TYPE)
  4480.             pedwarn ("ANSI C++ forbids using sizeof() on a function");
  4481.             }
  4482.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  4483.     break;}
  4484. case 164:
  4485. #line 1041 "parse.y"
  4486. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  4487.     break;}
  4488. case 165:
  4489. #line 1043 "parse.y"
  4490. { yyval.ttype = grok_alignof (yyvsp[0].ttype); ;
  4491.     break;}
  4492. case 166:
  4493. #line 1045 "parse.y"
  4494. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  4495.     break;}
  4496. case 167:
  4497. #line 1050 "parse.y"
  4498. { yyval.ttype = build_new (NULL_TREE, yyvsp[0].ttype, NULL_TREE, yyvsp[-1].itype); ;
  4499.     break;}
  4500. case 168:
  4501. #line 1052 "parse.y"
  4502. { yyval.ttype = build_new (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-2].itype); ;
  4503.     break;}
  4504. case 169:
  4505. #line 1054 "parse.y"
  4506. { yyval.ttype = build_new (yyvsp[-1].ttype, yyvsp[0].ttype, NULL_TREE, yyvsp[-2].itype); ;
  4507.     break;}
  4508. case 170:
  4509. #line 1056 "parse.y"
  4510. { yyval.ttype = build_new (yyvsp[-2].ttype, yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-3].itype); ;
  4511.     break;}
  4512. case 171:
  4513. #line 1058 "parse.y"
  4514. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-1].ttype),
  4515.                   NULL_TREE, yyvsp[-3].itype); ;
  4516.     break;}
  4517. case 172:
  4518. #line 1061 "parse.y"
  4519. { yyval.ttype = build_new (NULL_TREE, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-4].itype); ;
  4520.     break;}
  4521. case 173:
  4522. #line 1063 "parse.y"
  4523. { yyval.ttype = build_new (yyvsp[-3].ttype, groktypename(yyvsp[-1].ttype), NULL_TREE, yyvsp[-4].itype); ;
  4524.     break;}
  4525. case 174:
  4526. #line 1065 "parse.y"
  4527. { yyval.ttype = build_new (yyvsp[-4].ttype, groktypename(yyvsp[-2].ttype), yyvsp[0].ttype, yyvsp[-5].itype); ;
  4528.     break;}
  4529. case 175:
  4530. #line 1068 "parse.y"
  4531. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 0, yyvsp[-1].itype); ;
  4532.     break;}
  4533. case 176:
  4534. #line 1070 "parse.y"
  4535. { yyval.ttype = delete_sanity (yyvsp[0].ttype, NULL_TREE, 1, yyvsp[-3].itype);
  4536.           if (yychar == YYEMPTY)
  4537.             yychar = YYLEX; ;
  4538.     break;}
  4539. case 177:
  4540. #line 1074 "parse.y"
  4541. { yyval.ttype = delete_sanity (yyvsp[0].ttype, yyvsp[-2].ttype, 2, yyvsp[-4].itype);
  4542.           if (yychar == YYEMPTY)
  4543.             yychar = YYLEX; ;
  4544.     break;}
  4545. case 178:
  4546. #line 1081 "parse.y"
  4547. { yyval.ttype = yyvsp[-1].ttype; ;
  4548.     break;}
  4549. case 179:
  4550. #line 1083 "parse.y"
  4551. {
  4552.           yyval.ttype = yyvsp[-1].ttype; 
  4553.           pedwarn ("old style placement syntax, use () instead");
  4554.         ;
  4555.     break;}
  4556. case 180:
  4557. #line 1091 "parse.y"
  4558. { yyval.ttype = yyvsp[-1].ttype; ;
  4559.     break;}
  4560. case 181:
  4561. #line 1093 "parse.y"
  4562. { yyval.ttype = NULL_TREE; ;
  4563.     break;}
  4564. case 182:
  4565. #line 1095 "parse.y"
  4566. {
  4567.           cp_error ("`%T' is not a valid expression", yyvsp[-1].ttype);
  4568.           yyval.ttype = error_mark_node;
  4569.         ;
  4570.     break;}
  4571. case 183:
  4572. #line 1103 "parse.y"
  4573. {
  4574.           if (flag_ansi)
  4575.             pedwarn ("ANSI C++ forbids initialization of new expression with `='");
  4576.           yyval.ttype = yyvsp[0].ttype;
  4577.         ;
  4578.     break;}
  4579. case 184:
  4580. #line 1113 "parse.y"
  4581. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4582.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4583.           yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-1].ttype, 
  4584.                      NULL_TREE); ;
  4585.     break;}
  4586. case 185:
  4587. #line 1118 "parse.y"
  4588. { yyvsp[-1].ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, void_list_node);
  4589.           TREE_PARMLIST (yyvsp[-1].ttype) = 1;
  4590.           yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-1].ttype, NULL_TREE); ;
  4591.     break;}
  4592. case 187:
  4593. #line 1126 "parse.y"
  4594. { yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, yyvsp[0].ttype); ;
  4595.     break;}
  4596. case 188:
  4597. #line 1128 "parse.y"
  4598.           tree init = build_nt (CONSTRUCTOR, NULL_TREE,
  4599.                     nreverse (yyvsp[-2].ttype)); 
  4600.           if (flag_ansi)
  4601.             pedwarn ("ANSI C++ forbids constructor-expressions");
  4602.           /* Indicate that this was a GNU C constructor expression.  */
  4603.           TREE_HAS_CONSTRUCTOR (init) = 1;
  4604.  
  4605.           yyval.ttype = reparse_absdcl_as_casts (yyval.ttype, init);
  4606.         ;
  4607.     break;}
  4608. case 190:
  4609. #line 1143 "parse.y"
  4610. { yyval.ttype = build_headof (yyvsp[-1].ttype); ;
  4611.     break;}
  4612. case 191:
  4613. #line 1145 "parse.y"
  4614. { yyval.ttype = build_classof (yyvsp[-1].ttype); ;
  4615.     break;}
  4616. case 192:
  4617. #line 1147 "parse.y"
  4618. { if (is_aggr_typedef (yyvsp[-1].ttype, 1))
  4619.             {
  4620.               tree type = IDENTIFIER_TYPE_VALUE (yyvsp[-1].ttype);
  4621.               if (! IS_SIGNATURE(type))
  4622.             yyval.ttype = CLASSTYPE_DOSSIER (type);
  4623.               else
  4624.             {
  4625.               sorry ("signature name as argument of `classof'");
  4626.               yyval.ttype = error_mark_node;
  4627.             }
  4628.             }
  4629.           else
  4630.             yyval.ttype = error_mark_node;
  4631.         ;
  4632.     break;}
  4633. case 194:
  4634. #line 1167 "parse.y"
  4635. { yyval.ttype = build_x_binary_op (MEMBER_REF, yyval.ttype, yyvsp[0].ttype); ;
  4636.     break;}
  4637. case 195:
  4638. #line 1169 "parse.y"
  4639. { yyval.ttype = build_m_component_ref (yyval.ttype, yyvsp[0].ttype); ;
  4640.     break;}
  4641. case 196:
  4642. #line 1171 "parse.y"
  4643. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4644.     break;}
  4645. case 197:
  4646. #line 1173 "parse.y"
  4647. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4648.     break;}
  4649. case 198:
  4650. #line 1175 "parse.y"
  4651. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4652.     break;}
  4653. case 199:
  4654. #line 1177 "parse.y"
  4655. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4656.     break;}
  4657. case 200:
  4658. #line 1179 "parse.y"
  4659. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4660.     break;}
  4661. case 201:
  4662. #line 1181 "parse.y"
  4663. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4664.     break;}
  4665. case 202:
  4666. #line 1183 "parse.y"
  4667. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4668.     break;}
  4669. case 203:
  4670. #line 1185 "parse.y"
  4671. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4672.     break;}
  4673. case 204:
  4674. #line 1187 "parse.y"
  4675. { yyval.ttype = build_x_binary_op (LT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4676.     break;}
  4677. case 205:
  4678. #line 1189 "parse.y"
  4679. { yyval.ttype = build_x_binary_op (GT_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4680.     break;}
  4681. case 206:
  4682. #line 1191 "parse.y"
  4683. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4684.     break;}
  4685. case 207:
  4686. #line 1193 "parse.y"
  4687. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4688.     break;}
  4689. case 208:
  4690. #line 1195 "parse.y"
  4691. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4692.     break;}
  4693. case 209:
  4694. #line 1197 "parse.y"
  4695. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4696.     break;}
  4697. case 210:
  4698. #line 1199 "parse.y"
  4699. { yyval.ttype = build_x_binary_op (yyvsp[-1].code, yyval.ttype, yyvsp[0].ttype); ;
  4700.     break;}
  4701. case 211:
  4702. #line 1201 "parse.y"
  4703. { yyval.ttype = build_x_binary_op (TRUTH_ANDIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4704.     break;}
  4705. case 212:
  4706. #line 1203 "parse.y"
  4707. { yyval.ttype = build_x_binary_op (TRUTH_ORIF_EXPR, yyval.ttype, yyvsp[0].ttype); ;
  4708.     break;}
  4709. case 213:
  4710. #line 1205 "parse.y"
  4711. { yyval.ttype = build_x_conditional_expr (yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  4712.     break;}
  4713. case 214:
  4714. #line 1207 "parse.y"
  4715. { yyval.ttype = build_modify_expr (yyval.ttype, NOP_EXPR, yyvsp[0].ttype); ;
  4716.     break;}
  4717. case 215:
  4718. #line 1209 "parse.y"
  4719. { register tree rval;
  4720.           if ((rval = build_opfncall (MODIFY_EXPR, LOOKUP_NORMAL, yyval.ttype, yyvsp[0].ttype,
  4721.                          make_node (yyvsp[-1].code))))
  4722.             yyval.ttype = rval;
  4723.           else
  4724.             yyval.ttype = build_modify_expr (yyval.ttype, yyvsp[-1].code, yyvsp[0].ttype); ;
  4725.     break;}
  4726. case 216:
  4727. #line 1216 "parse.y"
  4728. { yyval.ttype = build_throw (NULL_TREE); ;
  4729.     break;}
  4730. case 217:
  4731. #line 1218 "parse.y"
  4732. { yyval.ttype = build_throw (yyvsp[0].ttype); ;
  4733.     break;}
  4734. case 218:
  4735. #line 1236 "parse.y"
  4736. { yyval.ttype = build_parse_node (BIT_NOT_EXPR, yyvsp[0].ttype); ;
  4737.     break;}
  4738. case 226:
  4739. #line 1251 "parse.y"
  4740. { yyval.ttype = build_parse_node (INDIRECT_REF, yyvsp[0].ttype); ;
  4741.     break;}
  4742. case 227:
  4743. #line 1253 "parse.y"
  4744. { yyval.ttype = build_parse_node (ADDR_EXPR, yyvsp[0].ttype); ;
  4745.     break;}
  4746. case 230:
  4747. #line 1260 "parse.y"
  4748. { push_nested_class (TREE_TYPE (OP0 (yyval.ttype)), 3);
  4749.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  4750.     break;}
  4751. case 231:
  4752. #line 1266 "parse.y"
  4753. {
  4754.           if (TREE_CODE (yyval.ttype) == BIT_NOT_EXPR)
  4755.             yyval.ttype = build_x_unary_op (BIT_NOT_EXPR, TREE_OPERAND (yyval.ttype, 0));
  4756.           else if (IDENTIFIER_OPNAME_P (yyval.ttype))
  4757.             {
  4758.               tree op = yyval.ttype;
  4759.               yyval.ttype = lookup_name (op, 0);
  4760.               if (yyval.ttype == NULL_TREE)
  4761.             {
  4762.               if (op != ansi_opname[ERROR_MARK])
  4763.                 error ("operator %s not defined",
  4764.                    operator_name_string (op));
  4765.               yyval.ttype = error_mark_node;
  4766.             }
  4767.             }
  4768.           else
  4769.             yyval.ttype = do_identifier (yyval.ttype);
  4770.         ;
  4771.     break;}
  4772. case 234:
  4773. #line 1287 "parse.y"
  4774. { yyval.ttype = combine_strings (yyval.ttype); ;
  4775.     break;}
  4776. case 235:
  4777. #line 1289 "parse.y"
  4778. { yyval.ttype = yyvsp[-1].ttype; ;
  4779.     break;}
  4780. case 236:
  4781. #line 1291 "parse.y"
  4782. { yyval.ttype = error_mark_node; ;
  4783.     break;}
  4784. case 237:
  4785. #line 1293 "parse.y"
  4786. { if (current_function_decl == 0)
  4787.             {
  4788.               error ("braced-group within expression allowed only inside a function");
  4789.               YYERROR;
  4790.             }
  4791.           keep_next_level ();
  4792.           yyval.ttype = expand_start_stmt_expr (); ;
  4793.     break;}
  4794. case 238:
  4795. #line 1301 "parse.y"
  4796. { tree rtl_exp;
  4797.           if (flag_ansi)
  4798.             pedwarn ("ANSI C++ forbids braced-groups within expressions");
  4799.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  4800.           /* The statements have side effects, so the group does.  */
  4801.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  4802.  
  4803.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  4804.             {
  4805.               /* Make a BIND_EXPR for the BLOCK already made.  */
  4806.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  4807.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  4808.               /* Remove the block from the tree at this point.
  4809.              It gets put back at the proper place
  4810.              when the BIND_EXPR is expanded.  */
  4811.               delete_block (yyvsp[-1].ttype);
  4812.             }
  4813.           else
  4814.             yyval.ttype = yyvsp[-1].ttype;
  4815.         ;
  4816.     break;}
  4817. case 239:
  4818. #line 1322 "parse.y"
  4819. { /* [eichin:19911016.1902EST] */
  4820.                   yyval.ttype = build_x_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype, current_class_decl); 
  4821.                   /* here we instantiate_class_template as needed... */
  4822.                   do_pending_templates ();
  4823.                 ;
  4824.     break;}
  4825. case 240:
  4826. #line 1326 "parse.y"
  4827. {
  4828.                   if (TREE_CODE (yyvsp[-1].ttype) == CALL_EXPR
  4829.                       && TREE_TYPE (yyvsp[-1].ttype) != void_type_node)
  4830.                 yyval.ttype = require_complete_type (yyvsp[-1].ttype);
  4831.                   else
  4832.                     yyval.ttype = yyvsp[-1].ttype;
  4833.                 ;
  4834.     break;}
  4835. case 241:
  4836. #line 1334 "parse.y"
  4837. {
  4838.           yyval.ttype = build_x_function_call (yyval.ttype, NULL_TREE, current_class_decl);
  4839.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  4840.               && TREE_TYPE (yyval.ttype) != void_type_node)
  4841.             yyval.ttype = require_complete_type (yyval.ttype);
  4842.                 ;
  4843.     break;}
  4844. case 242:
  4845. #line 1341 "parse.y"
  4846. { yyval.ttype = grok_array_decl (yyval.ttype, yyvsp[-1].ttype); ;
  4847.     break;}
  4848. case 243:
  4849. #line 1343 "parse.y"
  4850. { /* If we get an OFFSET_REF, turn it into what it really
  4851.              means (e.g., a COMPONENT_REF).  This way if we've got,
  4852.              say, a reference to a static member that's being operated
  4853.              on, we don't end up trying to find a member operator for
  4854.              the class it's in.  */
  4855.           if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4856.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4857.           yyval.ttype = build_x_unary_op (POSTINCREMENT_EXPR, yyval.ttype); ;
  4858.     break;}
  4859. case 244:
  4860. #line 1352 "parse.y"
  4861. { if (TREE_CODE (yyval.ttype) == OFFSET_REF)
  4862.             yyval.ttype = resolve_offset_ref (yyval.ttype);
  4863.           yyval.ttype = build_x_unary_op (POSTDECREMENT_EXPR, yyval.ttype); ;
  4864.     break;}
  4865. case 245:
  4866. #line 1357 "parse.y"
  4867. { if (current_class_decl)
  4868.             {
  4869. #ifdef WARNING_ABOUT_CCD
  4870.               TREE_USED (current_class_decl) = 1;
  4871. #endif
  4872.               yyval.ttype = current_class_decl;
  4873.             }
  4874.           else if (current_function_decl
  4875.                && DECL_STATIC_FUNCTION_P (current_function_decl))
  4876.             {
  4877.               error ("`this' is unavailable for static member functions");
  4878.               yyval.ttype = error_mark_node;
  4879.             }
  4880.           else
  4881.             {
  4882.               if (current_function_decl)
  4883.             error ("invalid use of `this' in non-member function");
  4884.               else
  4885.             error ("invalid use of `this' at top level");
  4886.               yyval.ttype = error_mark_node;
  4887.             }
  4888.         ;
  4889.     break;}
  4890. case 246:
  4891. #line 1380 "parse.y"
  4892. {
  4893.           tree type;
  4894.           tree id = yyval.ttype;
  4895.  
  4896.           /* This is a C cast in C++'s `functional' notation.  */
  4897.           if (yyvsp[-1].ttype == error_mark_node)
  4898.             {
  4899.               yyval.ttype = error_mark_node;
  4900.               break;
  4901.             }
  4902. #if 0
  4903.           if (yyvsp[-1].ttype == NULL_TREE)
  4904.             {
  4905.               error ("cannot cast null list to type `%s'",
  4906.                      IDENTIFIER_POINTER (TYPE_NAME (id)));
  4907.               yyval.ttype = error_mark_node;
  4908.               break;
  4909.             }
  4910. #endif
  4911. #if 0
  4912.           /* type is not set! (mrs) */
  4913.           if (type == error_mark_node)
  4914.             yyval.ttype = error_mark_node;
  4915.           else
  4916. #endif
  4917.             {
  4918.               if (id == ridpointers[(int) RID_CONST])
  4919.                 type = build_type_variant (integer_type_node, 1, 0);
  4920.               else if (id == ridpointers[(int) RID_VOLATILE])
  4921.                 type = build_type_variant (integer_type_node, 0, 1);
  4922. #if 0
  4923.               /* should not be able to get here (mrs) */
  4924.               else if (id == ridpointers[(int) RID_FRIEND])
  4925.                 {
  4926.                   error ("cannot cast expression to `friend' type");
  4927.                   yyval.ttype = error_mark_node;
  4928.                   break;
  4929.                 }
  4930. #endif
  4931.               else my_friendly_abort (79);
  4932.               yyval.ttype = build_c_cast (type, build_compound_expr (yyvsp[-1].ttype));
  4933.             }
  4934.         ;
  4935.     break;}
  4936. case 248:
  4937. #line 1425 "parse.y"
  4938. { tree type = groktypename (yyvsp[-4].ttype);
  4939.           yyval.ttype = build_dynamic_cast (type, yyvsp[-1].ttype); ;
  4940.     break;}
  4941. case 249:
  4942. #line 1428 "parse.y"
  4943. { tree type = groktypename (yyvsp[-4].ttype);
  4944.           yyval.ttype = build_static_cast (type, yyvsp[-1].ttype); ;
  4945.     break;}
  4946. case 250:
  4947. #line 1431 "parse.y"
  4948. { tree type = groktypename (yyvsp[-4].ttype);
  4949.           yyval.ttype = build_reinterpret_cast (type, yyvsp[-1].ttype); ;
  4950.     break;}
  4951. case 251:
  4952. #line 1434 "parse.y"
  4953. { tree type = groktypename (yyvsp[-4].ttype);
  4954.           yyval.ttype = build_const_cast (type, yyvsp[-1].ttype); ;
  4955.     break;}
  4956. case 252:
  4957. #line 1437 "parse.y"
  4958. { yyval.ttype = build_typeid (yyvsp[-1].ttype); ;
  4959.     break;}
  4960. case 253:
  4961. #line 1439 "parse.y"
  4962. { tree type = groktypename (yyvsp[-1].ttype);
  4963.           yyval.ttype = get_typeid (type); ;
  4964.     break;}
  4965. case 254:
  4966. #line 1442 "parse.y"
  4967. {
  4968.         do_scoped_id:
  4969.           yyval.ttype = IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype);
  4970.           if (yychar == YYEMPTY)
  4971.             yychar = YYLEX;
  4972.           if (! yyval.ttype)
  4973.             {
  4974.               if (yychar == '(' || yychar == LEFT_RIGHT)
  4975.             yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  4976.               else
  4977.             {
  4978.               if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node)
  4979.                 error ("undeclared variable `%s' (first use here)",
  4980.                    IDENTIFIER_POINTER (yyvsp[0].ttype));
  4981.               yyval.ttype = error_mark_node;
  4982.               /* Prevent repeated error messages.  */
  4983.               IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  4984.             }
  4985.             }
  4986.           else
  4987.             {
  4988.               if (TREE_CODE (yyval.ttype) == ADDR_EXPR)
  4989.             assemble_external (TREE_OPERAND (yyval.ttype, 0));
  4990.               else
  4991.             assemble_external (yyval.ttype);
  4992.               TREE_USED (yyval.ttype) = 1;
  4993.             }
  4994.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  4995.             {
  4996.               /* XXX CHS - should we set TREE_USED of the constant? */
  4997.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  4998.               /* This is to prevent an enum whose value is 0
  4999.              from being considered a null pointer constant.  */
  5000.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  5001.               TREE_CONSTANT (yyval.ttype) = 1;
  5002.             }
  5003.  
  5004.         ;
  5005.     break;}
  5006. case 255:
  5007. #line 1481 "parse.y"
  5008. {
  5009.           got_scope = NULL_TREE;
  5010.           if (TREE_CODE (yyvsp[0].ttype) == IDENTIFIER_NODE)
  5011.             goto do_scoped_id;
  5012.           yyval.ttype = yyvsp[0].ttype;
  5013.         ;
  5014.     break;}
  5015. case 256:
  5016. #line 1488 "parse.y"
  5017. { yyval.ttype = build_offset_ref (OP0 (yyval.ttype), OP1 (yyval.ttype)); ;
  5018.     break;}
  5019. case 257:
  5020. #line 1490 "parse.y"
  5021. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), yyvsp[-1].ttype); ;
  5022.     break;}
  5023. case 258:
  5024. #line 1492 "parse.y"
  5025. { yyval.ttype = build_member_call (OP0 (yyval.ttype), OP1 (yyval.ttype), NULL_TREE); ;
  5026.     break;}
  5027. case 259:
  5028. #line 1494 "parse.y"
  5029. { yyval.ttype = build_component_ref (yyval.ttype, yyvsp[0].ttype, NULL_TREE, 1); ;
  5030.     break;}
  5031. case 260:
  5032. #line 1496 "parse.y"
  5033. { yyval.ttype = build_object_ref (yyval.ttype, OP0 (yyvsp[0].ttype), OP1 (yyvsp[0].ttype)); ;
  5034.     break;}
  5035. case 261:
  5036. #line 1498 "parse.y"
  5037. {
  5038. #if 0
  5039.           /* This is a future direction of this code, but because
  5040.              build_x_function_call cannot always undo what is done
  5041.              in build_component_ref entirely yet, we cannot do this. */
  5042.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-3].ttype, NULL_TREE, 1), yyvsp[-1].ttype, yyval.ttype);
  5043.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5044.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5045.             yyval.ttype = require_complete_type (yyval.ttype);
  5046. #else
  5047.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE,
  5048.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5049. #endif
  5050.         ;
  5051.     break;}
  5052. case 262:
  5053. #line 1513 "parse.y"
  5054. {
  5055. #if 0
  5056.           /* This is a future direction of this code, but because
  5057.              build_x_function_call cannot always undo what is done
  5058.              in build_component_ref entirely yet, we cannot do this. */
  5059.           yyval.ttype = build_x_function_call (build_component_ref (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, 1), NULL_TREE, yyval.ttype);
  5060.           if (TREE_CODE (yyval.ttype) == CALL_EXPR
  5061.               && TREE_TYPE (yyval.ttype) != void_type_node)
  5062.             yyval.ttype = require_complete_type (yyval.ttype);
  5063. #else
  5064.           yyval.ttype = build_method_call (yyval.ttype, yyvsp[-1].ttype, NULL_TREE, NULL_TREE,
  5065.                       (LOOKUP_NORMAL|LOOKUP_AGGR));
  5066. #endif
  5067.         ;
  5068.     break;}
  5069. case 263:
  5070. #line 1528 "parse.y"
  5071. {
  5072.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-3].ttype))))
  5073.             {
  5074.               warning ("signature name in scope resolution ignored");
  5075.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype, NULL_TREE,
  5076.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5077.             }
  5078.           else
  5079.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-3].ttype), OP1 (yyvsp[-3].ttype), yyvsp[-1].ttype);
  5080.         ;
  5081.     break;}
  5082. case 264:
  5083. #line 1539 "parse.y"
  5084. {
  5085.           if (IS_SIGNATURE (IDENTIFIER_TYPE_VALUE (OP0 (yyvsp[-1].ttype))))
  5086.             {
  5087.               warning ("signature name in scope resolution ignored");
  5088.               yyval.ttype = build_method_call (yyval.ttype, OP1 (yyvsp[-1].ttype), NULL_TREE, NULL_TREE,
  5089.                           (LOOKUP_NORMAL|LOOKUP_AGGR));
  5090.             }
  5091.           else
  5092.             yyval.ttype = build_scoped_method_call (yyval.ttype, OP0 (yyvsp[-1].ttype), OP1 (yyvsp[-1].ttype), NULL_TREE);
  5093.         ;
  5094.     break;}
  5095. case 265:
  5096. #line 1551 "parse.y"
  5097.           if (TREE_CODE (TREE_TYPE (yyvsp[-3].ttype)) 
  5098.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-1].ttype))))
  5099.             cp_error ("`%E' is not of type `%T'", yyvsp[-3].ttype, yyvsp[-1].ttype);
  5100.           yyval.ttype = convert (void_type_node, yyvsp[-3].ttype);
  5101.         ;
  5102.     break;}
  5103. case 266:
  5104. #line 1558 "parse.y"
  5105.           if (yyvsp[-4].ttype != yyvsp[-1].ttype)
  5106.             cp_error ("destructor specifier `%T::~%T()' must have matching names", yyvsp[-4].ttype, yyvsp[-1].ttype);
  5107.           if (TREE_CODE (TREE_TYPE (yyvsp[-5].ttype))
  5108.               != TREE_CODE (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (yyvsp[-4].ttype))))
  5109.             cp_error ("`%E' is not of type `%T'", yyvsp[-5].ttype, yyvsp[-4].ttype);
  5110.           yyval.ttype = convert (void_type_node, yyvsp[-5].ttype);
  5111.         ;
  5112.     break;}
  5113. case 267:
  5114. #line 1607 "parse.y"
  5115. { yyval.itype = 0; ;
  5116.     break;}
  5117. case 268:
  5118. #line 1609 "parse.y"
  5119. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5120.     break;}
  5121. case 269:
  5122. #line 1613 "parse.y"
  5123. { yyval.itype = 0; ;
  5124.     break;}
  5125. case 270:
  5126. #line 1615 "parse.y"
  5127. { got_scope = NULL_TREE; yyval.itype = 1; ;
  5128.     break;}
  5129. case 271:
  5130. #line 1620 "parse.y"
  5131. { yyval.ttype = true_node; ;
  5132.     break;}
  5133. case 272:
  5134. #line 1622 "parse.y"
  5135. { yyval.ttype = false_node; ;
  5136.     break;}
  5137. case 274:
  5138. #line 1629 "parse.y"
  5139. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5140.     break;}
  5141. case 275:
  5142. #line 1634 "parse.y"
  5143. {
  5144.           if (! current_function_parms_stored)
  5145.             store_parm_decls ();
  5146.           setup_vtbl_ptr ();
  5147.           /* Always keep the BLOCK node associated with the outermost
  5148.              pair of curley braces of a function.  These are needed
  5149.              for correct operation of dwarfout.c.  */
  5150.           keep_next_level ();
  5151.         ;
  5152.     break;}
  5153. case 277:
  5154. #line 1647 "parse.y"
  5155. {
  5156.           yyval.ttype = build_x_arrow (yyval.ttype);
  5157.         ;
  5158.     break;}
  5159. case 278:
  5160. #line 1655 "parse.y"
  5161. { tree d = get_decl_list (yyvsp[-2].ttype);
  5162.           int yes = suspend_momentary ();
  5163.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5164.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  5165.           resume_momentary (yes);
  5166.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5167.             note_got_semicolon (yyvsp[-2].ttype);
  5168.         ;
  5169.     break;}
  5170. case 279:
  5171. #line 1664 "parse.y"
  5172. { tree d = yyvsp[-2].ttype;
  5173.           int yes = suspend_momentary ();
  5174.           d = start_decl (yyvsp[-1].ttype, d, 0, NULL_TREE);
  5175.           finish_decl (d, NULL_TREE, NULL_TREE, 0);
  5176.           resume_momentary (yes);
  5177.           note_list_got_semicolon (yyvsp[-2].ttype);
  5178.         ;
  5179.     break;}
  5180. case 280:
  5181. #line 1672 "parse.y"
  5182. {
  5183.           resume_momentary (yyvsp[-1].itype);
  5184.           if (IS_AGGR_TYPE_CODE (TREE_CODE (yyvsp[-2].ttype)))
  5185.             note_got_semicolon (yyvsp[-2].ttype);
  5186.         ;
  5187.     break;}
  5188. case 281:
  5189. #line 1678 "parse.y"
  5190. {
  5191.           resume_momentary (yyvsp[-1].itype);
  5192.           note_list_got_semicolon (yyvsp[-2].ttype);
  5193.         ;
  5194.     break;}
  5195. case 282:
  5196. #line 1683 "parse.y"
  5197. { resume_momentary (yyvsp[-1].itype); ;
  5198.     break;}
  5199. case 283:
  5200. #line 1685 "parse.y"
  5201. {
  5202.           shadow_tag (yyvsp[-1].ttype);
  5203.           note_list_got_semicolon (yyvsp[-1].ttype);
  5204.         ;
  5205.     break;}
  5206. case 284:
  5207. #line 1690 "parse.y"
  5208. { warning ("empty declaration"); ;
  5209.     break;}
  5210. case 287:
  5211. #line 1704 "parse.y"
  5212. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, empty_parms (),
  5213.                      NULL_TREE); ;
  5214.     break;}
  5215. case 288:
  5216. #line 1707 "parse.y"
  5217. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), 
  5218.                      NULL_TREE); ;
  5219.     break;}
  5220. case 289:
  5221. #line 1714 "parse.y"
  5222. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5223.     break;}
  5224. case 290:
  5225. #line 1716 "parse.y"
  5226. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  5227.     break;}
  5228. case 291:
  5229. #line 1718 "parse.y"
  5230. { yyval.ttype = build_decl_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  5231.     break;}
  5232. case 292:
  5233. #line 1720 "parse.y"
  5234. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5235.     break;}
  5236. case 293:
  5237. #line 1722 "parse.y"
  5238. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  5239.     break;}
  5240. case 296:
  5241. #line 1735 "parse.y"
  5242. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5243.     break;}
  5244. case 297:
  5245. #line 1737 "parse.y"
  5246. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5247.     break;}
  5248. case 298:
  5249. #line 1739 "parse.y"
  5250. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5251.     break;}
  5252. case 299:
  5253. #line 1741 "parse.y"
  5254. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5255.     break;}
  5256. case 300:
  5257. #line 1743 "parse.y"
  5258. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-2].ttype, 
  5259.                        chainon (yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype))); ;
  5260.     break;}
  5261. case 301:
  5262. #line 1749 "parse.y"
  5263. { if (extra_warnings)
  5264.             warning ("`%s' is not at beginning of declaration",
  5265.                  IDENTIFIER_POINTER (yyval.ttype));
  5266.           yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5267.     break;}
  5268. case 302:
  5269. #line 1754 "parse.y"
  5270. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5271.     break;}
  5272. case 303:
  5273. #line 1756 "parse.y"
  5274. { if (extra_warnings)
  5275.             warning ("`%s' is not at beginning of declaration",
  5276.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5277.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5278.     break;}
  5279. case 304:
  5280. #line 1768 "parse.y"
  5281. { TREE_STATIC (yyval.ttype) = 1; ;
  5282.     break;}
  5283. case 305:
  5284. #line 1770 "parse.y"
  5285. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  5286.     break;}
  5287. case 306:
  5288. #line 1772 "parse.y"
  5289. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5290.           TREE_STATIC (yyval.ttype) = 1; ;
  5291.     break;}
  5292. case 307:
  5293. #line 1775 "parse.y"
  5294. { if (extra_warnings && TREE_STATIC (yyval.ttype))
  5295.             warning ("`%s' is not at beginning of declaration",
  5296.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  5297.           yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype);
  5298.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  5299.     break;}
  5300. case 308:
  5301. #line 1791 "parse.y"
  5302. { yyval.ttype = get_decl_list (yyval.ttype); ;
  5303.     break;}
  5304. case 309:
  5305. #line 1793 "parse.y"
  5306. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5307.     break;}
  5308. case 310:
  5309. #line 1795 "parse.y"
  5310. { yyval.ttype = decl_tree_cons (NULL_TREE, yyval.ttype, yyvsp[0].ttype); ;
  5311.     break;}
  5312. case 311:
  5313. #line 1797 "parse.y"
  5314. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[-1].ttype, chainon (yyvsp[0].ttype, yyval.ttype)); ;
  5315.     break;}
  5316. case 312:
  5317. #line 1802 "parse.y"
  5318. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  5319.     break;}
  5320. case 313:
  5321. #line 1804 "parse.y"
  5322. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5323.     break;}
  5324. case 317:
  5325. #line 1815 "parse.y"
  5326. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype);
  5327.           if (flag_ansi)
  5328.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5329.     break;}
  5330. case 318:
  5331. #line 1819 "parse.y"
  5332. { yyval.ttype = groktypename (yyvsp[-1].ttype);
  5333.           if (flag_ansi)
  5334.             pedwarn ("ANSI C++ forbids `typeof'"); ;
  5335.     break;}
  5336. case 319:
  5337. #line 1823 "parse.y"
  5338. { tree type = TREE_TYPE (yyvsp[-1].ttype);
  5339.  
  5340.           if (IS_AGGR_TYPE (type))
  5341.             {
  5342.               sorry ("sigof type specifier");
  5343.               yyval.ttype = type;
  5344.             }
  5345.           else
  5346.             {
  5347.               error ("`sigof' applied to non-aggregate expression");
  5348.               yyval.ttype = error_mark_node;
  5349.             }
  5350.         ;
  5351.     break;}
  5352. case 320:
  5353. #line 1837 "parse.y"
  5354. { tree type = groktypename (yyvsp[-1].ttype);
  5355.  
  5356.           if (IS_AGGR_TYPE (type))
  5357.             {
  5358.               sorry ("sigof type specifier");
  5359.               yyval.ttype = type;
  5360.             }
  5361.           else
  5362.             {
  5363.               error("`sigof' applied to non-aggregate type");
  5364.               yyval.ttype = error_mark_node;
  5365.             }
  5366.         ;
  5367.     break;}
  5368. case 330:
  5369. #line 1876 "parse.y"
  5370. { yyval.ttype = NULL_TREE; ;
  5371.     break;}
  5372. case 331:
  5373. #line 1878 "parse.y"
  5374. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype); yyval.ttype = yyvsp[-1].ttype; ;
  5375.     break;}
  5376. case 332:
  5377. #line 1883 "parse.y"
  5378. { current_declspecs = yyvsp[-5].ttype;
  5379.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5380.             current_declspecs = get_decl_list (current_declspecs);
  5381.           if (have_extern_spec && !used_extern_spec)
  5382.             {
  5383.               current_declspecs = decl_tree_cons
  5384.             (NULL_TREE, get_identifier ("extern"), 
  5385.              current_declspecs);
  5386.               used_extern_spec = 1;
  5387.             }
  5388.           yyvsp[0].itype = suspend_momentary ();
  5389.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5390.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5391.     break;}
  5392. case 333:
  5393. #line 1898 "parse.y"
  5394. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5395.           yyval.itype = yyvsp[-2].itype; ;
  5396.     break;}
  5397. case 334:
  5398. #line 1901 "parse.y"
  5399. { tree d;
  5400.           current_declspecs = yyvsp[-4].ttype;
  5401.           if (TREE_CODE (current_declspecs) != TREE_LIST)
  5402.             current_declspecs = get_decl_list (current_declspecs);
  5403.           if (have_extern_spec && !used_extern_spec)
  5404.             {
  5405.               current_declspecs = decl_tree_cons
  5406.             (NULL_TREE, get_identifier ("extern"), 
  5407.              current_declspecs);
  5408.               used_extern_spec = 1;
  5409.             }
  5410.           yyval.itype = suspend_momentary ();
  5411.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5412.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5413.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5414.     break;}
  5415. case 335:
  5416. #line 1920 "parse.y"
  5417. { yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5418.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5419.     break;}
  5420. case 336:
  5421. #line 1924 "parse.y"
  5422. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0); ;
  5423.     break;}
  5424. case 337:
  5425. #line 1926 "parse.y"
  5426. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5427.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype);
  5428.           finish_decl (yyval.ttype, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5429.     break;}
  5430. case 338:
  5431. #line 1933 "parse.y"
  5432. { current_declspecs = yyvsp[-5].ttype;
  5433.           yyvsp[0].itype = suspend_momentary ();
  5434.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5435.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5436.     break;}
  5437. case 339:
  5438. #line 1939 "parse.y"
  5439. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5440.           yyval.itype = yyvsp[-2].itype; ;
  5441.     break;}
  5442. case 340:
  5443. #line 1942 "parse.y"
  5444. { tree d;
  5445.           current_declspecs = yyvsp[-4].ttype;
  5446.           yyval.itype = suspend_momentary ();
  5447.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5448.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5449.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5450.     break;}
  5451. case 341:
  5452. #line 1952 "parse.y"
  5453. { current_declspecs = NULL_TREE;
  5454.           yyvsp[0].itype = suspend_momentary ();
  5455.           yyval.ttype = start_decl (yyvsp[-4].ttype, current_declspecs, 1, yyvsp[-3].ttype);
  5456.           cplus_decl_attributes (yyval.ttype, yyvsp[-1].ttype); ;
  5457.     break;}
  5458. case 342:
  5459. #line 1958 "parse.y"
  5460. { finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype, 0);
  5461.           yyval.itype = yyvsp[-2].itype; ;
  5462.     break;}
  5463. case 343:
  5464. #line 1961 "parse.y"
  5465. { tree d;
  5466.           current_declspecs = NULL_TREE;
  5467.           yyval.itype = suspend_momentary ();
  5468.           d = start_decl (yyvsp[-3].ttype, current_declspecs, 0, yyvsp[-2].ttype);
  5469.           cplus_decl_attributes (d, yyvsp[0].ttype);
  5470.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype, 0); ;
  5471.     break;}
  5472. case 344:
  5473. #line 1973 "parse.y"
  5474. { yyval.ttype = NULL_TREE; ;
  5475.     break;}
  5476. case 345:
  5477. #line 1975 "parse.y"
  5478. { yyval.ttype = yyvsp[0].ttype; ;
  5479.     break;}
  5480. case 346:
  5481. #line 1980 "parse.y"
  5482. { yyval.ttype = yyvsp[0].ttype; ;
  5483.     break;}
  5484. case 347:
  5485. #line 1982 "parse.y"
  5486. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  5487.     break;}
  5488. case 348:
  5489. #line 1987 "parse.y"
  5490. { yyval.ttype = yyvsp[-2].ttype; ;
  5491.     break;}
  5492. case 349:
  5493. #line 1992 "parse.y"
  5494. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5495.     break;}
  5496. case 350:
  5497. #line 1994 "parse.y"
  5498. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5499.     break;}
  5500. case 351:
  5501. #line 1999 "parse.y"
  5502. { yyval.ttype = NULL_TREE; ;
  5503.     break;}
  5504. case 352:
  5505. #line 2001 "parse.y"
  5506. { yyval.ttype = yyvsp[0].ttype; ;
  5507.     break;}
  5508. case 353:
  5509. #line 2003 "parse.y"
  5510. { yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
  5511.     break;}
  5512. case 354:
  5513. #line 2005 "parse.y"
  5514. { yyval.ttype = tree_cons (yyvsp[-5].ttype, NULL_TREE, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
  5515.     break;}
  5516. case 355:
  5517. #line 2007 "parse.y"
  5518. { yyval.ttype = tree_cons (yyvsp[-3].ttype, NULL_TREE, yyvsp[-1].ttype); ;
  5519.     break;}
  5520. case 360:
  5521. #line 2023 "parse.y"
  5522. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  5523.     break;}
  5524. case 361:
  5525. #line 2025 "parse.y"
  5526. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  5527.     break;}
  5528. case 363:
  5529. #line 2031 "parse.y"
  5530. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, NULL_TREE);
  5531.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5532.     break;}
  5533. case 364:
  5534. #line 2034 "parse.y"
  5535. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-1].ttype));
  5536.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5537.     break;}
  5538. case 365:
  5539. #line 2037 "parse.y"
  5540. { yyval.ttype = build_nt (CONSTRUCTOR, NULL_TREE, nreverse (yyvsp[-2].ttype));
  5541.           TREE_HAS_CONSTRUCTOR (yyval.ttype) = 1; ;
  5542.     break;}
  5543. case 366:
  5544. #line 2040 "parse.y"
  5545. { yyval.ttype = NULL_TREE; ;
  5546.     break;}
  5547. case 367:
  5548. #line 2047 "parse.y"
  5549. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  5550.     break;}
  5551. case 368:
  5552. #line 2049 "parse.y"
  5553. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  5554.     break;}
  5555. case 369:
  5556. #line 2052 "parse.y"
  5557. { yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  5558.     break;}
  5559. case 370:
  5560. #line 2054 "parse.y"
  5561. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5562.     break;}
  5563. case 371:
  5564. #line 2056 "parse.y"
  5565. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  5566.     break;}
  5567. case 372:
  5568. #line 2058 "parse.y"
  5569. { yyval.ttype = tree_cons (yyvsp[-2].ttype, yyvsp[0].ttype, yyval.ttype); ;
  5570.     break;}
  5571. case 373:
  5572. #line 2063 "parse.y"
  5573. { yyvsp[0].itype = suspend_momentary ();
  5574.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  5575.     break;}
  5576. case 374:
  5577. #line 2066 "parse.y"
  5578. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5579.           resume_momentary ((int) yyvsp[-4].itype);
  5580.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5581.     break;}
  5582. case 375:
  5583. #line 2070 "parse.y"
  5584. { yyval.ttype = finish_enum (start_enum (yyvsp[-2].ttype), NULL_TREE);
  5585.           check_for_missing_semicolon (yyval.ttype); ;
  5586.     break;}
  5587. case 376:
  5588. #line 2073 "parse.y"
  5589. { yyvsp[0].itype = suspend_momentary ();
  5590.           yyval.ttype = start_enum (make_anon_name ()); ;
  5591.     break;}
  5592. case 377:
  5593. #line 2076 "parse.y"
  5594. { yyval.ttype = finish_enum (yyvsp[-3].ttype, yyvsp[-2].ttype);
  5595.           resume_momentary ((int) yyvsp[-5].itype);
  5596.           check_for_missing_semicolon (yyvsp[-3].ttype); ;
  5597.     break;}
  5598. case 378:
  5599. #line 2080 "parse.y"
  5600. { yyval.ttype = finish_enum (start_enum (make_anon_name()), NULL_TREE);
  5601.           check_for_missing_semicolon (yyval.ttype); ;
  5602.     break;}
  5603. case 379:
  5604. #line 2083 "parse.y"
  5605. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
  5606.     break;}
  5607. case 380:
  5608. #line 2085 "parse.y"
  5609. { yyval.ttype = xref_tag (enum_type_node, yyvsp[0].ttype, NULL_TREE, 0); ;
  5610.     break;}
  5611. case 381:
  5612. #line 2089 "parse.y"
  5613. {
  5614.           int semi;
  5615.           tree id;
  5616.  
  5617. #if 0
  5618.           /* Need to rework class nesting in the
  5619.              presence of nested classes, etc.  */
  5620.           shadow_tag (CLASSTYPE_AS_LIST (yyval.ttype)); */
  5621. #endif
  5622.           if (yychar == YYEMPTY)
  5623.             yychar = YYLEX;
  5624.           semi = yychar == ';';
  5625.           /* finish_struct nukes this anyway; if
  5626.              finish_exception does too, then it can go. */
  5627.           if (semi)
  5628.             note_got_semicolon (yyval.ttype);
  5629.  
  5630.           if (TREE_CODE (yyval.ttype) == ENUMERAL_TYPE)
  5631.             /* $$ = $1 from default rule.  */;
  5632.           else if (CLASSTYPE_DECLARED_EXCEPTION (yyval.ttype))
  5633.             {
  5634.             }
  5635.           else
  5636.             {
  5637.               yyval.ttype = finish_struct (yyval.ttype, yyvsp[-1].ttype, semi);
  5638.               if (semi) note_got_semicolon (yyval.ttype);
  5639.             }
  5640.  
  5641.           pop_obstacks ();
  5642.  
  5643.           id = TYPE_IDENTIFIER (yyval.ttype);
  5644.           if (id && IDENTIFIER_TEMPLATE (id))
  5645.             {
  5646.               tree decl;
  5647.  
  5648.               /* I don't know if the copying of this TYPE_DECL is
  5649.                * really needed.  However, it's such a small per-
  5650.                * formance penalty that the extra safety is a bargain.
  5651.                * - niklas@appli.se
  5652.                */
  5653.               push_obstacks (&permanent_obstack, &permanent_obstack);
  5654.               decl = copy_node (lookup_name (id, 0));
  5655.               if (DECL_LANG_SPECIFIC (decl))
  5656.             copy_lang_decl (decl);
  5657.               pop_obstacks ();
  5658.               undo_template_name_overload (id, 0);
  5659.               pushdecl_top_level (decl);
  5660.             }
  5661.           if (! semi)
  5662.             check_for_missing_semicolon (yyval.ttype); ;
  5663.     break;}
  5664. case 382:
  5665. #line 2140 "parse.y"
  5666. {
  5667. #if 0
  5668.   /* It's no longer clear what the following error is supposed to
  5669.      accomplish.  If it turns out to be needed, add a comment why.  */
  5670.           if (TYPE_BINFO_BASETYPES (yyval.ttype) && !TYPE_SIZE (yyval.ttype))
  5671.             {
  5672.               error ("incomplete definition of type `%s'",
  5673.                  TYPE_NAME_STRING (yyval.ttype));
  5674.               yyval.ttype = error_mark_node;
  5675.             }
  5676. #endif
  5677.         ;
  5678.     break;}
  5679. case 386:
  5680. #line 2162 "parse.y"
  5681. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  5682.     break;}
  5683. case 388:
  5684. #line 2167 "parse.y"
  5685. { error ("storage class specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5686.     break;}
  5687. case 389:
  5688. #line 2169 "parse.y"
  5689. { error ("type specifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5690.     break;}
  5691. case 390:
  5692. #line 2171 "parse.y"
  5693. { error ("type qualifier `%s' not allowed after struct or class", IDENTIFIER_POINTER (yyvsp[0].ttype)); ;
  5694.     break;}
  5695. case 391:
  5696. #line 2173 "parse.y"
  5697. { error ("no body nor ';' separates two class, struct or union declarations"); ;
  5698.     break;}
  5699. case 392:
  5700. #line 2178 "parse.y"
  5701.           yyungetc (';', 1); current_aggr = yyval.ttype; yyval.ttype = yyvsp[-1].ttype; 
  5702.           if (yyvsp[-3].ttype == ridpointers[(int) RID_TEMPLATE])
  5703.             instantiate_class_template (yyval.ttype, 2);
  5704.         ;
  5705.     break;}
  5706. case 393:
  5707. #line 2187 "parse.y"
  5708. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5709.     break;}
  5710. case 394:
  5711. #line 2189 "parse.y"
  5712. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5713.     break;}
  5714. case 395:
  5715. #line 2191 "parse.y"
  5716. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5717.     break;}
  5718. case 396:
  5719. #line 2193 "parse.y"
  5720. { yyungetc ('{', 1);
  5721.         aggr2:
  5722.           current_aggr = yyval.ttype;
  5723.           yyval.ttype = yyvsp[-1].ttype;
  5724.           overload_template_name (yyval.ttype, 0); ;
  5725.     break;}
  5726. case 397:
  5727. #line 2199 "parse.y"
  5728. { yyungetc (':', 1); goto aggr2; ;
  5729.     break;}
  5730. case 399:
  5731. #line 2205 "parse.y"
  5732. { current_aggr = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  5733.     break;}
  5734. case 400:
  5735. #line 2209 "parse.y"
  5736. { yyval.ttype = xref_tag (current_aggr, yyvsp[0].ttype, NULL_TREE, 1); ;
  5737.     break;}
  5738. case 401:
  5739. #line 2212 "parse.y"
  5740. { yyval.ttype = xref_defn_tag (current_aggr, yyvsp[0].ttype, NULL_TREE); ;
  5741.     break;}
  5742. case 402:
  5743. #line 2217 "parse.y"
  5744. {
  5745.           if (yyvsp[0].ttype)
  5746.             yyval.ttype = xref_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype, 1);
  5747.           else
  5748.             yyval.ttype = yyvsp[-1].ttype;
  5749.         ;
  5750.     break;}
  5751. case 403:
  5752. #line 2226 "parse.y"
  5753. {
  5754.           if (yyvsp[0].ttype)
  5755.             yyval.ttype = xref_defn_tag (current_aggr, yyvsp[-2].ttype, yyvsp[0].ttype);
  5756.           else
  5757.             yyval.ttype = yyvsp[-1].ttype;
  5758.         ;
  5759.     break;}
  5760. case 404:
  5761. #line 2235 "parse.y"
  5762. { yyval.ttype = xref_tag (yyval.ttype, make_anon_name (), NULL_TREE, 0);
  5763.           yyungetc ('{', 1); ;
  5764.     break;}
  5765. case 407:
  5766. #line 2243 "parse.y"
  5767. { yyval.ttype = NULL_TREE; ;
  5768.     break;}
  5769. case 408:
  5770. #line 2245 "parse.y"
  5771. { yyungetc(':', 1); yyval.ttype = NULL_TREE; ;
  5772.     break;}
  5773. case 409:
  5774. #line 2247 "parse.y"
  5775. { yyval.ttype = yyvsp[0].ttype; ;
  5776.     break;}
  5777. case 411:
  5778. #line 2253 "parse.y"
  5779. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  5780.     break;}
  5781. case 412:
  5782. #line 2258 "parse.y"
  5783. {
  5784.           tree type;
  5785.          do_base_class1:
  5786.           type = IDENTIFIER_TYPE_VALUE (yyval.ttype);
  5787.           if (! is_aggr_typedef (yyval.ttype, 1))
  5788.             yyval.ttype = NULL_TREE;
  5789.           else if (current_aggr == signature_type_node
  5790.                && (! type) && (! IS_SIGNATURE (type)))
  5791.             {
  5792.               error ("class name not allowed as base signature");
  5793.               yyval.ttype = NULL_TREE;
  5794.             }
  5795.           else if (current_aggr == signature_type_node)
  5796.             {
  5797.               sorry ("signature inheritance, base type `%s' ignored",
  5798.                  IDENTIFIER_POINTER (yyval.ttype));
  5799.               yyval.ttype = build_tree_list ((tree)access_public, yyval.ttype);
  5800.             }
  5801.           else if (type && IS_SIGNATURE (type))
  5802.             {
  5803.               error ("signature name not allowed as base class");
  5804.               yyval.ttype = NULL_TREE;
  5805.             }
  5806.           else
  5807.             yyval.ttype = build_tree_list ((tree)access_default, yyval.ttype);
  5808.         ;
  5809.     break;}
  5810. case 413:
  5811. #line 2285 "parse.y"
  5812. {
  5813.           tree type;
  5814.          do_base_class2:
  5815.           type = IDENTIFIER_TYPE_VALUE (yyvsp[0].ttype);
  5816.           if (current_aggr == signature_type_node)
  5817.             error ("access and source specifiers not allowed in signature");
  5818.           if (! is_aggr_typedef (yyvsp[0].ttype, 1))
  5819.             yyval.ttype = NULL_TREE;
  5820.           else if (current_aggr == signature_type_node
  5821.                && (! type) && (! IS_SIGNATURE (type)))
  5822.             {
  5823.               error ("class name not allowed as base signature");
  5824.               yyval.ttype = NULL_TREE;
  5825.             }
  5826.           else if (current_aggr == signature_type_node)
  5827.             {
  5828.               sorry ("signature inheritance, base type `%s' ignored",
  5829.                  IDENTIFIER_POINTER (yyval.ttype));
  5830.               yyval.ttype = build_tree_list ((tree)access_public, yyvsp[0].ttype);
  5831.             }
  5832.           else if (type && IS_SIGNATURE (type))
  5833.             {
  5834.               error ("signature name not allowed as base class");
  5835.               yyval.ttype = NULL_TREE;
  5836.             }
  5837.           else
  5838.             yyval.ttype = build_tree_list ((tree) yyval.ttype, yyvsp[0].ttype);
  5839.         ;
  5840.     break;}
  5841. case 415:
  5842. #line 2318 "parse.y"
  5843. {
  5844.           if (current_aggr == signature_type_node)
  5845.             {
  5846.               if (IS_AGGR_TYPE (TREE_TYPE (yyvsp[-1].ttype)))
  5847.             {
  5848.               sorry ("`sigof' as base signature specifier");
  5849.               /* need to return some dummy signature identifier */
  5850.               yyval.ttype = yyvsp[-1].ttype;
  5851.             }
  5852.               else
  5853.             {
  5854.               error ("`sigof' applied to non-aggregate expression");
  5855.               yyval.ttype = error_mark_node;
  5856.             }
  5857.             }
  5858.           else
  5859.             {
  5860.               error ("`sigof' in struct or class declaration");
  5861.               yyval.ttype = error_mark_node;
  5862.             }
  5863.         ;
  5864.     break;}
  5865. case 416:
  5866. #line 2340 "parse.y"
  5867. {
  5868.           if (current_aggr == signature_type_node)
  5869.             {
  5870.               if (IS_AGGR_TYPE (groktypename (yyvsp[-1].ttype)))
  5871.             {
  5872.               sorry ("`sigof' as base signature specifier");
  5873.               /* need to return some dummy signature identifier */
  5874.               yyval.ttype = yyvsp[-1].ttype;
  5875.             }
  5876.               else
  5877.             {
  5878.               error ("`sigof' applied to non-aggregate expression");
  5879.               yyval.ttype = error_mark_node;
  5880.             }
  5881.             }
  5882.           else
  5883.             {
  5884.               error ("`sigof' in struct or class declaration");
  5885.               yyval.ttype = error_mark_node;
  5886.             }
  5887.         ;
  5888.     break;}
  5889. case 418:
  5890. #line 2366 "parse.y"
  5891. { if (yyval.ttype != ridpointers[(int)RID_VIRTUAL])
  5892.             sorry ("non-virtual access");
  5893.           yyval.itype = access_default_virtual; ;
  5894.     break;}
  5895. case 419:
  5896. #line 2370 "parse.y"
  5897. { int err = 0;
  5898.           if (yyvsp[0].itype == access_protected)
  5899.             {
  5900.               warning ("`protected' access not implemented");
  5901.               yyvsp[0].itype = access_public;
  5902.               err++;
  5903.             }
  5904.           else if (yyvsp[0].itype == access_public)
  5905.             {
  5906.               if (yyvsp[-1].itype == access_private)
  5907.             {
  5908.             mixed:
  5909.               error ("base class cannot be public and private");
  5910.             }
  5911.               else if (yyvsp[-1].itype == access_default_virtual)
  5912.             yyval.itype = access_public_virtual;
  5913.             }
  5914.           else /* $2 == access_private */
  5915.             {
  5916.               if (yyvsp[-1].itype == access_public)
  5917.             goto mixed;
  5918.               else if (yyvsp[-1].itype == access_default_virtual)
  5919.             yyval.itype = access_private_virtual;
  5920.             }
  5921.         ;
  5922.     break;}
  5923. case 420:
  5924. #line 2396 "parse.y"
  5925. { if (yyvsp[0].ttype != ridpointers[(int)RID_VIRTUAL])
  5926.             sorry ("non-virtual access");
  5927.           if (yyval.itype == access_public)
  5928.             yyval.itype = access_public_virtual;
  5929.           else if (yyval.itype == access_private)
  5930.             yyval.itype = access_private_virtual; ;
  5931.     break;}
  5932. case 421:
  5933. #line 2405 "parse.y"
  5934. { tree t = yyvsp[-1].ttype;
  5935.           push_obstacks_nochange ();
  5936.           end_temporary_allocation ();
  5937.  
  5938.           if (! IS_AGGR_TYPE (t))
  5939.             {
  5940.               t = yyvsp[-1].ttype = make_lang_type (RECORD_TYPE);
  5941.               TYPE_NAME (t) = get_identifier ("erroneous type");
  5942.             }
  5943.           if (TYPE_SIZE (t))
  5944.             duplicate_tag_error (t);
  5945.                   if (TYPE_SIZE (t) || TYPE_BEING_DEFINED (t))
  5946.                     {
  5947.                       t = make_lang_type (TREE_CODE (t));
  5948.                       pushtag (TYPE_IDENTIFIER (yyvsp[-1].ttype), t, 0);
  5949.                       yyvsp[-1].ttype = t;
  5950.                     }
  5951.           pushclass (t, 0);
  5952.           TYPE_BEING_DEFINED (t) = 1;
  5953.           /* Reset the interface data, at the earliest possible
  5954.              moment, as it might have been set via a class foo;
  5955.              before.  */
  5956.           /* Don't change signatures.  */
  5957.           if (! IS_SIGNATURE (t))
  5958.             {
  5959.               extern tree pending_vtables;
  5960.               int needs_writing;
  5961.               tree name = TYPE_IDENTIFIER (t);
  5962.  
  5963.               CLASSTYPE_INTERFACE_ONLY (t) = interface_only;
  5964.               SET_CLASSTYPE_INTERFACE_UNKNOWN_X (t, interface_unknown);
  5965.  
  5966.               /* Record how to set the access of this class's
  5967.              virtual functions.  If write_virtuals == 2 or 3, then
  5968.              inline virtuals are ``extern inline''.  */
  5969.               switch (write_virtuals)
  5970.             {
  5971.             case 0:
  5972.             case 1:
  5973.               needs_writing = 1;
  5974.               break;
  5975.             case 2:
  5976.               needs_writing = !! value_member (name, pending_vtables);
  5977.               break;
  5978.             case 3:
  5979.               needs_writing = ! CLASSTYPE_INTERFACE_ONLY (t)
  5980.                 && CLASSTYPE_INTERFACE_KNOWN (t);
  5981.               break;
  5982.             default:
  5983.               needs_writing = 0;
  5984.             }
  5985.               CLASSTYPE_VTABLE_NEEDS_WRITING (t) = needs_writing;
  5986.             }
  5987. #if 0
  5988.           t = TYPE_IDENTIFIER (yyvsp[-1].ttype);
  5989.           if (t && IDENTIFIER_TEMPLATE (t))
  5990.             overload_template_name (t, 1);
  5991. #endif
  5992.         ;
  5993.     break;}
  5994. case 422:
  5995. #line 2468 "parse.y"
  5996. { yyval.ttype = NULL_TREE; ;
  5997.     break;}
  5998. case 423:
  5999. #line 2470 "parse.y"
  6000. {
  6001.           if (current_aggr == signature_type_node)
  6002.             yyval.ttype = build_tree_list ((tree) access_public, yyval.ttype);
  6003.           else
  6004.             yyval.ttype = build_tree_list ((tree) access_default, yyval.ttype);
  6005.         ;
  6006.     break;}
  6007. case 424:
  6008. #line 2477 "parse.y"
  6009. {
  6010.           tree visspec = (tree) yyvsp[-2].itype;
  6011.  
  6012.           if (current_aggr == signature_type_node)
  6013.             {
  6014.               error ("access specifier not allowed in signature");
  6015.               visspec = (tree) access_public;
  6016.             }
  6017.           yyval.ttype = chainon (yyval.ttype, build_tree_list (visspec, yyvsp[0].ttype));
  6018.         ;
  6019.     break;}
  6020. case 425:
  6021. #line 2488 "parse.y"
  6022. {
  6023.           if (current_aggr == signature_type_node)
  6024.             error ("access specifier not allowed in signature");
  6025.         ;
  6026.     break;}
  6027. case 426:
  6028. #line 2498 "parse.y"
  6029. { if (yyval.ttype == void_type_node) yyval.ttype = NULL_TREE; 
  6030.         ;
  6031.     break;}
  6032. case 427:
  6033. #line 2501 "parse.y"
  6034. { /* In pushdecl, we created a reverse list of names
  6035.              in this binding level.  Make sure that the chain
  6036.              of what we're trying to add isn't the item itself
  6037.              (which can happen with what pushdecl's doing).  */
  6038.           if (yyvsp[0].ttype != NULL_TREE && yyvsp[0].ttype != void_type_node)
  6039.             {
  6040.               if (TREE_CHAIN (yyvsp[0].ttype) != yyval.ttype)
  6041.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6042.               else
  6043.             yyval.ttype = yyvsp[0].ttype;
  6044.             }
  6045.         ;
  6046.     break;}
  6047. case 430:
  6048. #line 2519 "parse.y"
  6049. { error ("missing ';' before right brace");
  6050.           yyungetc ('}', 0); ;
  6051.     break;}
  6052. case 431:
  6053. #line 2524 "parse.y"
  6054. { yyval.ttype = finish_method (yyval.ttype); ;
  6055.     break;}
  6056. case 432:
  6057. #line 2526 "parse.y"
  6058. { yyval.ttype = finish_method (yyval.ttype); ;
  6059.     break;}
  6060. case 433:
  6061. #line 2534 "parse.y"
  6062. {
  6063.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6064.         ;
  6065.     break;}
  6066. case 434:
  6067. #line 2538 "parse.y"
  6068.           yyval.ttype = grok_x_components (yyval.ttype, yyvsp[0].ttype);
  6069.         ;
  6070.     break;}
  6071. case 435:
  6072. #line 2542 "parse.y"
  6073. { yyval.ttype = grokfield (yyval.ttype, NULL_TREE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6074.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6075.     break;}
  6076. case 436:
  6077. #line 2545 "parse.y"
  6078. { yyval.ttype = grokbitfield (NULL_TREE, NULL_TREE, yyvsp[0].ttype); ;
  6079.     break;}
  6080. case 437:
  6081. #line 2547 "parse.y"
  6082. { yyval.ttype = NULL_TREE; ;
  6083.     break;}
  6084. case 438:
  6085. #line 2558 "parse.y"
  6086. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-4].ttype),
  6087.                      yyvsp[-2].ttype, yyvsp[0].ttype);
  6088.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-4].ttype), NULL_TREE, NULL_TREE,
  6089.                   NULL_TREE); ;
  6090.     break;}
  6091. case 439:
  6092. #line 2563 "parse.y"
  6093. { yyval.ttype = build_parse_node (CALL_EXPR, TREE_VALUE (yyvsp[-2].ttype),
  6094.                      empty_parms (), yyvsp[0].ttype);
  6095.           yyval.ttype = grokfield (yyval.ttype, TREE_CHAIN (yyvsp[-2].ttype), NULL_TREE, NULL_TREE,
  6096.                   NULL_TREE); ;
  6097.     break;}
  6098. case 440:
  6099. #line 2572 "parse.y"
  6100. { yyval.ttype = NULL_TREE; ;
  6101.     break;}
  6102. case 442:
  6103. #line 2575 "parse.y"
  6104. {
  6105.           /* In this context, void_type_node encodes
  6106.              friends.  They have been recorded elsewhere.  */
  6107.           if (yyval.ttype == void_type_node)
  6108.             yyval.ttype = yyvsp[0].ttype;
  6109.           else
  6110.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6111.         ;
  6112.     break;}
  6113. case 443:
  6114. #line 2587 "parse.y"
  6115. { yyval.ttype = NULL_TREE; ;
  6116.     break;}
  6117. case 445:
  6118. #line 2590 "parse.y"
  6119. {
  6120.           /* In this context, void_type_node encodes
  6121.              friends.  They have been recorded elsewhere.  */
  6122.           if (yyval.ttype == void_type_node)
  6123.             yyval.ttype = yyvsp[0].ttype;
  6124.           else
  6125.             yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype);
  6126.         ;
  6127.     break;}
  6128. case 450:
  6129. #line 2612 "parse.y"
  6130. { current_declspecs = yyvsp[-4].ttype;
  6131.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6132.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6133.     break;}
  6134. case 451:
  6135. #line 2616 "parse.y"
  6136. { current_declspecs = yyvsp[-6].ttype;
  6137.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6138.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6139.     break;}
  6140. case 452:
  6141. #line 2620 "parse.y"
  6142. { current_declspecs = yyvsp[-4].ttype;
  6143.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6144.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6145.     break;}
  6146. case 453:
  6147. #line 2627 "parse.y"
  6148. { current_declspecs = yyvsp[-4].ttype;
  6149.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6150.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6151.     break;}
  6152. case 454:
  6153. #line 2631 "parse.y"
  6154. { current_declspecs = yyvsp[-6].ttype;
  6155.           yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6156.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6157.     break;}
  6158. case 455:
  6159. #line 2635 "parse.y"
  6160. { current_declspecs = yyvsp[-4].ttype;
  6161.           yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6162.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6163.     break;}
  6164. case 456:
  6165. #line 2639 "parse.y"
  6166. { current_declspecs = yyvsp[-3].ttype;
  6167.           yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6168.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6169.     break;}
  6170. case 457:
  6171. #line 2646 "parse.y"
  6172. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6173.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6174.     break;}
  6175. case 458:
  6176. #line 2649 "parse.y"
  6177. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6178.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6179.     break;}
  6180. case 459:
  6181. #line 2652 "parse.y"
  6182. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6183.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6184.     break;}
  6185. case 460:
  6186. #line 2658 "parse.y"
  6187. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
  6188.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6189.     break;}
  6190. case 461:
  6191. #line 2661 "parse.y"
  6192. { yyval.ttype = grokfield (yyval.ttype, current_declspecs, yyvsp[-4].ttype, yyvsp[0].ttype, yyvsp[-3].ttype);
  6193.           cplus_decl_attributes (yyval.ttype, yyvsp[-2].ttype); ;
  6194.     break;}
  6195. case 462:
  6196. #line 2664 "parse.y"
  6197. { yyval.ttype = grokbitfield (yyval.ttype, current_declspecs, yyvsp[-1].ttype);
  6198.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6199.     break;}
  6200. case 463:
  6201. #line 2667 "parse.y"
  6202. { yyval.ttype = grokbitfield (NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  6203.           cplus_decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  6204.     break;}
  6205. case 465:
  6206. #line 2678 "parse.y"
  6207. { TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype; yyval.ttype = yyvsp[0].ttype; ;
  6208.     break;}
  6209. case 466:
  6210. #line 2683 "parse.y"
  6211. { yyval.ttype = build_enumerator (yyval.ttype, NULL_TREE); ;
  6212.     break;}
  6213. case 467:
  6214. #line 2685 "parse.y"
  6215. { yyval.ttype = build_enumerator (yyval.ttype, yyvsp[0].ttype); ;
  6216.     break;}
  6217. case 468:
  6218. #line 2691 "parse.y"
  6219. { yyval.ttype = build_decl_list (yyval.ttype, yyvsp[0].ttype); ;
  6220.     break;}
  6221. case 469:
  6222. #line 2693 "parse.y"
  6223. { yyval.ttype = build_decl_list (yyval.ttype, NULL_TREE); ;
  6224.     break;}
  6225. case 470:
  6226. #line 2697 "parse.y"
  6227. {
  6228.           if (flag_ansi)
  6229.             pedwarn ("ANSI C++ forbids array dimensions with parenthesized type in new");
  6230.           yyval.ttype = build_parse_node (ARRAY_REF, TREE_VALUE (yyvsp[-4].ttype), yyvsp[-1].ttype);
  6231.           yyval.ttype = build_decl_list (TREE_PURPOSE (yyvsp[-4].ttype), yyval.ttype);
  6232.         ;
  6233.     break;}
  6234. case 471:
  6235. #line 2707 "parse.y"
  6236. { yyval.ttype = NULL_TREE; ;
  6237.     break;}
  6238. case 472:
  6239. #line 2709 "parse.y"
  6240. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6241.     break;}
  6242. case 473:
  6243. #line 2714 "parse.y"
  6244. { yyval.ttype = IDENTIFIER_AS_LIST (yyval.ttype); ;
  6245.     break;}
  6246. case 474:
  6247. #line 2716 "parse.y"
  6248. { yyval.ttype = decl_tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  6249.     break;}
  6250. case 475:
  6251. #line 2724 "parse.y"
  6252. { yyval.itype = suspend_momentary (); ;
  6253.     break;}
  6254. case 476:
  6255. #line 2725 "parse.y"
  6256. { resume_momentary ((int) yyvsp[-1].itype); yyval.ttype = yyvsp[0].ttype; ;
  6257.     break;}
  6258. case 477:
  6259. #line 2732 "parse.y"
  6260. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6261.     break;}
  6262. case 478:
  6263. #line 2734 "parse.y"
  6264. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6265.     break;}
  6266. case 479:
  6267. #line 2736 "parse.y"
  6268. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6269.     break;}
  6270. case 480:
  6271. #line 2738 "parse.y"
  6272. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6273.     break;}
  6274. case 481:
  6275. #line 2740 "parse.y"
  6276. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6277.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6278.         ;
  6279.     break;}
  6280. case 483:
  6281. #line 2748 "parse.y"
  6282. {
  6283.           /* Remember that this name has been used in the class
  6284.              definition, as per [class.scope0] */
  6285.           if (current_class_type
  6286.               && TYPE_BEING_DEFINED (current_class_type)
  6287.               && ! IDENTIFIER_CLASS_VALUE (yyval.ttype))
  6288.             {
  6289.               tree t = lookup_name (yyval.ttype, -2);
  6290.               if (t)
  6291.             pushdecl_class_level (t);
  6292.             }
  6293.         ;
  6294.     break;}
  6295. case 485:
  6296. #line 2765 "parse.y"
  6297. { yyval.ttype = yyvsp[0].ttype; ;
  6298.     break;}
  6299. case 486:
  6300. #line 2770 "parse.y"
  6301. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6302.     break;}
  6303. case 487:
  6304. #line 2772 "parse.y"
  6305. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6306.     break;}
  6307. case 488:
  6308. #line 2774 "parse.y"
  6309. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6310.     break;}
  6311. case 489:
  6312. #line 2776 "parse.y"
  6313. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
  6314.     break;}
  6315. case 490:
  6316. #line 2778 "parse.y"
  6317. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6318.     break;}
  6319. case 491:
  6320. #line 2780 "parse.y"
  6321. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6322.     break;}
  6323. case 492:
  6324. #line 2782 "parse.y"
  6325. { yyval.ttype = yyvsp[-1].ttype; ;
  6326.     break;}
  6327. case 493:
  6328. #line 2784 "parse.y"
  6329. { push_nested_class (TREE_TYPE (yyval.ttype), 3);
  6330.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype);
  6331.           TREE_COMPLEXITY (yyval.ttype) = current_class_depth; ;
  6332.     break;}
  6333. case 495:
  6334. #line 2795 "parse.y"
  6335. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6336.     break;}
  6337. case 496:
  6338. #line 2797 "parse.y"
  6339. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6340.     break;}
  6341. case 497:
  6342. #line 2799 "parse.y"
  6343. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6344.     break;}
  6345. case 498:
  6346. #line 2801 "parse.y"
  6347. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6348.     break;}
  6349. case 499:
  6350. #line 2803 "parse.y"
  6351. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6352.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6353.         ;
  6354.     break;}
  6355. case 501:
  6356. #line 2811 "parse.y"
  6357. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6358.     break;}
  6359. case 502:
  6360. #line 2813 "parse.y"
  6361. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6362.     break;}
  6363. case 503:
  6364. #line 2815 "parse.y"
  6365. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6366.     break;}
  6367. case 504:
  6368. #line 2817 "parse.y"
  6369. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6370.     break;}
  6371. case 505:
  6372. #line 2819 "parse.y"
  6373. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6374.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6375.         ;
  6376.     break;}
  6377. case 507:
  6378. #line 2827 "parse.y"
  6379. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6380.     break;}
  6381. case 508:
  6382. #line 2829 "parse.y"
  6383. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6384.     break;}
  6385. case 509:
  6386. #line 2831 "parse.y"
  6387. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6388.     break;}
  6389. case 510:
  6390. #line 2833 "parse.y"
  6391. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, NULL_TREE, NULL_TREE); ;
  6392.     break;}
  6393. case 511:
  6394. #line 2835 "parse.y"
  6395. { yyval.ttype = finish_decl_parsing (yyvsp[-1].ttype); ;
  6396.     break;}
  6397. case 512:
  6398. #line 2837 "parse.y"
  6399. { yyval.ttype = yyvsp[-1].ttype; ;
  6400.     break;}
  6401. case 513:
  6402. #line 2839 "parse.y"
  6403. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6404.     break;}
  6405. case 514:
  6406. #line 2841 "parse.y"
  6407. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6408.     break;}
  6409. case 515:
  6410. #line 2846 "parse.y"
  6411. { got_scope = NULL_TREE;
  6412.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6413.     break;}
  6414. case 516:
  6415. #line 2852 "parse.y"
  6416. { got_scope = NULL_TREE;
  6417.           yyval.ttype = build_parse_node (SCOPE_REF, yyval.ttype, yyvsp[0].ttype); ;
  6418.     break;}
  6419. case 518:
  6420. #line 2859 "parse.y"
  6421. { yyval.ttype = yyvsp[0].ttype; ;
  6422.     break;}
  6423. case 519:
  6424. #line 2864 "parse.y"
  6425. { yyval.ttype = build_functional_cast (yyval.ttype, yyvsp[-1].ttype); ;
  6426.     break;}
  6427. case 520:
  6428. #line 2866 "parse.y"
  6429. { yyval.ttype = reparse_decl_as_expr (yyval.ttype, yyvsp[-1].ttype); ;
  6430.     break;}
  6431. case 521:
  6432. #line 2868 "parse.y"
  6433. { yyval.ttype = reparse_absdcl_as_expr (yyval.ttype, yyvsp[0].ttype); ;
  6434.     break;}
  6435. case 525:
  6436. #line 2879 "parse.y"
  6437. { yyval.ttype = yyvsp[0].ttype; ;
  6438.     break;}
  6439. case 526:
  6440. #line 2886 "parse.y"
  6441. { got_scope = TREE_TYPE (yyval.ttype); ;
  6442.     break;}
  6443. case 527:
  6444. #line 2888 "parse.y"
  6445. { got_scope = TREE_TYPE (yyval.ttype); ;
  6446.     break;}
  6447. case 529:
  6448. #line 2904 "parse.y"
  6449. { yyval.ttype = yyvsp[0].ttype; ;
  6450.     break;}
  6451. case 531:
  6452. #line 2910 "parse.y"
  6453. { yyval.ttype = yyvsp[0].ttype; ;
  6454.     break;}
  6455. case 532:
  6456. #line 2915 "parse.y"
  6457. { got_scope = NULL_TREE; ;
  6458.     break;}
  6459. case 533:
  6460. #line 2917 "parse.y"
  6461. { yyval.ttype = yyvsp[-1].ttype; got_scope = NULL_TREE; ;
  6462.     break;}
  6463. case 534:
  6464. #line 2924 "parse.y"
  6465. { got_scope = void_type_node; ;
  6466.     break;}
  6467. case 535:
  6468. #line 2930 "parse.y"
  6469. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6470.     break;}
  6471. case 536:
  6472. #line 2932 "parse.y"
  6473. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6474.     break;}
  6475. case 537:
  6476. #line 2934 "parse.y"
  6477. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6478.     break;}
  6479. case 538:
  6480. #line 2936 "parse.y"
  6481. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6482.     break;}
  6483. case 539:
  6484. #line 2938 "parse.y"
  6485. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6486.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6487.         ;
  6488.     break;}
  6489. case 540:
  6490. #line 2942 "parse.y"
  6491. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6492.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6493.         ;
  6494.     break;}
  6495. case 542:
  6496. #line 2951 "parse.y"
  6497. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6498.     break;}
  6499. case 543:
  6500. #line 2953 "parse.y"
  6501. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6502.     break;}
  6503. case 544:
  6504. #line 2959 "parse.y"
  6505. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6506.     break;}
  6507. case 545:
  6508. #line 2961 "parse.y"
  6509. { yyval.ttype = make_pointer_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6510.     break;}
  6511. case 546:
  6512. #line 2963 "parse.y"
  6513. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6514.     break;}
  6515. case 547:
  6516. #line 2965 "parse.y"
  6517. { yyval.ttype = make_pointer_declarator (NULL_TREE, NULL_TREE); ;
  6518.     break;}
  6519. case 548:
  6520. #line 2967 "parse.y"
  6521. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  6522.     break;}
  6523. case 549:
  6524. #line 2969 "parse.y"
  6525. { yyval.ttype = make_reference_declarator (NULL_TREE, yyvsp[0].ttype); ;
  6526.     break;}
  6527. case 550:
  6528. #line 2971 "parse.y"
  6529. { yyval.ttype = make_reference_declarator (yyvsp[0].ttype, NULL_TREE); ;
  6530.     break;}
  6531. case 551:
  6532. #line 2973 "parse.y"
  6533. { yyval.ttype = make_reference_declarator (NULL_TREE, NULL_TREE); ;
  6534.     break;}
  6535. case 552:
  6536. #line 2975 "parse.y"
  6537. { tree arg = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE);
  6538.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-1].ttype, arg);
  6539.         ;
  6540.     break;}
  6541. case 553:
  6542. #line 2979 "parse.y"
  6543. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  6544.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  6545.         ;
  6546.     break;}
  6547. case 555:
  6548. #line 2988 "parse.y"
  6549. { yyval.ttype = yyvsp[-1].ttype; ;
  6550.     break;}
  6551. case 557:
  6552. #line 2992 "parse.y"
  6553. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6554.     break;}
  6555. case 558:
  6556. #line 2994 "parse.y"
  6557. { yyval.ttype = build_parse_node (CALL_EXPR, yyval.ttype, empty_parms (), yyvsp[0].ttype); ;
  6558.     break;}
  6559. case 559:
  6560. #line 2996 "parse.y"
  6561. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, yyvsp[-1].ttype); ;
  6562.     break;}
  6563. case 560:
  6564. #line 2998 "parse.y"
  6565. { yyval.ttype = build_parse_node (ARRAY_REF, yyval.ttype, NULL_TREE); ;
  6566.     break;}
  6567. case 561:
  6568. #line 3000 "parse.y"
  6569. { yyval.ttype = build_parse_node (CALL_EXPR, NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  6570.     break;}
  6571. case 562:
  6572. #line 3002 "parse.y"
  6573. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6574.     break;}
  6575. case 563:
  6576. #line 3004 "parse.y"
  6577. { TREE_OPERAND (yyval.ttype, 2) = yyvsp[0].ttype; ;
  6578.     break;}
  6579. case 564:
  6580. #line 3006 "parse.y"
  6581. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  6582.     break;}
  6583. case 565:
  6584. #line 3008 "parse.y"
  6585. { yyval.ttype = build_parse_node (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  6586.     break;}
  6587. case 571:
  6588. #line 3030 "parse.y"
  6589. { emit_line_note (input_filename, lineno);
  6590.           pushlevel (0);
  6591.           clear_last_expr ();
  6592.           push_momentary ();
  6593.           expand_start_bindings (0); ;
  6594.     break;}
  6595. case 573:
  6596. #line 3042 "parse.y"
  6597. { if (flag_ansi)
  6598.             pedwarn ("ANSI C++ forbids label declarations"); ;
  6599.     break;}
  6600. case 576:
  6601. #line 3053 "parse.y"
  6602. { tree link;
  6603.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  6604.             {
  6605.               tree label = shadow_label (TREE_VALUE (link));
  6606.               C_DECLARED_LABEL_FLAG (label) = 1;
  6607.               declare_nonlocal_label (label);
  6608.             }
  6609.         ;
  6610.     break;}
  6611. case 577:
  6612. #line 3067 "parse.y"
  6613. {;
  6614.     break;}
  6615. case 579:
  6616. #line 3072 "parse.y"
  6617. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6618.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6619.           pop_momentary (); ;
  6620.     break;}
  6621. case 580:
  6622. #line 3076 "parse.y"
  6623. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6624.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6625.           pop_momentary (); ;
  6626.     break;}
  6627. case 581:
  6628. #line 3080 "parse.y"
  6629. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6630.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  6631.           pop_momentary (); ;
  6632.     break;}
  6633. case 582:
  6634. #line 3084 "parse.y"
  6635. { expand_end_bindings (getdecls (), kept_level_p(), 1);
  6636.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  6637.           pop_momentary (); ;
  6638.     break;}
  6639. case 583:
  6640. #line 3091 "parse.y"
  6641. { cond_stmt_keyword = "if"; ;
  6642.     break;}
  6643. case 584:
  6644. #line 3093 "parse.y"
  6645. { emit_line_note (input_filename, lineno);
  6646.           expand_start_cond (yyvsp[0].ttype, 0); ;
  6647.     break;}
  6648. case 586:
  6649. #line 3100 "parse.y"
  6650. { finish_stmt (); ;
  6651.     break;}
  6652. case 587:
  6653. #line 3102 "parse.y"
  6654. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6655.           yyval.ttype = poplevel (kept_level_p (), 1, 0);
  6656.           pop_momentary (); ;
  6657.     break;}
  6658. case 588:
  6659. #line 3109 "parse.y"
  6660. { finish_stmt (); ;
  6661.     break;}
  6662. case 590:
  6663. #line 3115 "parse.y"
  6664. { finish_stmt (); ;
  6665.     break;}
  6666. case 591:
  6667. #line 3117 "parse.y"
  6668. {
  6669.           tree expr = yyvsp[-1].ttype;
  6670.           emit_line_note (input_filename, lineno);
  6671.           /* Do default conversion if safe and possibly important,
  6672.              in case within ({...}).  */
  6673.           if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
  6674.                && lvalue_p (expr))
  6675.               || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
  6676.             expr = default_conversion (expr);
  6677.           cplus_expand_expr_stmt (expr);
  6678.           clear_momentary ();
  6679.           finish_stmt (); ;
  6680.     break;}
  6681. case 592:
  6682. #line 3130 "parse.y"
  6683. { expand_start_else (); ;
  6684.     break;}
  6685. case 593:
  6686. #line 3132 "parse.y"
  6687. { expand_end_cond ();
  6688.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6689.           poplevel (kept_level_p (), 1, 0);
  6690.           pop_momentary ();
  6691.           finish_stmt (); ;
  6692.     break;}
  6693. case 594:
  6694. #line 3138 "parse.y"
  6695. { expand_end_cond ();
  6696.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6697.           poplevel (kept_level_p (), 1, 0);
  6698.           pop_momentary ();
  6699.           finish_stmt (); ;
  6700.     break;}
  6701. case 595:
  6702. #line 3144 "parse.y"
  6703. { emit_nop ();
  6704.           emit_line_note (input_filename, lineno);
  6705.           expand_start_loop (1);
  6706.           cond_stmt_keyword = "while"; ;
  6707.     break;}
  6708. case 596:
  6709. #line 3149 "parse.y"
  6710. { expand_exit_loop_if_false (0, yyvsp[0].ttype); ;
  6711.     break;}
  6712. case 597:
  6713. #line 3151 "parse.y"
  6714. { expand_end_bindings (getdecls (), kept_level_p (), 1);
  6715.           poplevel (kept_level_p (), 1, 0);
  6716.           pop_momentary ();
  6717.           expand_end_loop ();
  6718.           finish_stmt (); ;
  6719.     break;}
  6720. case 598:
  6721. #line 3157 "parse.y"
  6722. { emit_nop ();
  6723.           emit_line_note (input_filename, lineno);
  6724.           expand_start_loop_continue_elsewhere (1); ;
  6725.     break;}
  6726. case 599:
  6727. #line 3161 "parse.y"
  6728. { expand_loop_continue_here ();
  6729.           cond_stmt_keyword = "do"; ;
  6730.     break;}
  6731. case 600:
  6732. #line 3164 "parse.y"
  6733. { emit_line_note (input_filename, lineno);
  6734.           expand_exit_loop_if_false (0, yyvsp[-1].ttype);
  6735.           expand_end_loop ();
  6736.           clear_momentary ();
  6737.           finish_stmt (); ;
  6738.     break;}
  6739. case 601:
  6740. #line 3170 "parse.y"
  6741. { emit_nop ();
  6742.           emit_line_note (input_filename, lineno);
  6743.           if (yyvsp[0].ttype) cplus_expand_expr_stmt (yyvsp[0].ttype);
  6744.           expand_start_loop_continue_elsewhere (1); ;
  6745.     break;}
  6746. case 602:
  6747. #line 3175 "parse.y"
  6748. { emit_line_note (input_filename, lineno);
  6749.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6750.     break;}
  6751. case 603:
  6752. #line 3180 "parse.y"
  6753. { push_momentary (); ;
  6754.     break;}
  6755. case 604:
  6756. #line 3182 "parse.y"
  6757. { emit_line_note (input_filename, lineno);
  6758.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6759.           poplevel (kept_level_p (), 1, 0);
  6760.           pop_momentary ();
  6761.           expand_loop_continue_here ();
  6762.           if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
  6763.           pop_momentary ();
  6764.           expand_end_loop ();
  6765.           finish_stmt (); ;
  6766.     break;}
  6767. case 605:
  6768. #line 3192 "parse.y"
  6769. { emit_nop ();
  6770.           emit_line_note (input_filename, lineno);
  6771.           expand_start_loop_continue_elsewhere (1); ;
  6772.     break;}
  6773. case 606:
  6774. #line 3196 "parse.y"
  6775. { emit_line_note (input_filename, lineno);
  6776.           if (yyvsp[-1].ttype) expand_exit_loop_if_false (0, yyvsp[-1].ttype); ;
  6777.     break;}
  6778. case 607:
  6779. #line 3201 "parse.y"
  6780. { push_momentary ();
  6781.           yyvsp[0].itype = lineno; ;
  6782.     break;}
  6783. case 608:
  6784. #line 3204 "parse.y"
  6785. { emit_line_note (input_filename, (int) yyvsp[-2].itype);
  6786.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6787.           poplevel (kept_level_p (), 1, 0);
  6788.           pop_momentary ();
  6789.           expand_loop_continue_here ();
  6790.           if (yyvsp[-3].ttype) cplus_expand_expr_stmt (yyvsp[-3].ttype);
  6791.           pop_momentary ();
  6792.           expand_end_loop ();
  6793.           finish_stmt ();
  6794.         ;
  6795.     break;}
  6796. case 609:
  6797. #line 3215 "parse.y"
  6798. { emit_line_note (input_filename, lineno);
  6799.           c_expand_start_case (yyvsp[-1].ttype);
  6800.           /* Don't let the tree nodes for $4 be discarded by
  6801.              clear_momentary during the parsing of the next stmt.  */
  6802.           push_momentary (); ;
  6803.     break;}
  6804. case 610:
  6805. #line 3221 "parse.y"
  6806. { expand_end_case (yyvsp[-3].ttype);
  6807.           pop_momentary ();
  6808.           expand_end_bindings (getdecls (), kept_level_p (), 1);
  6809.           poplevel (kept_level_p (), 1, 0);
  6810.           pop_momentary ();
  6811.           finish_stmt (); ;
  6812.     break;}
  6813. case 611:
  6814. #line 3228 "parse.y"
  6815. { register tree value = check_cp_case_value (yyvsp[-1].ttype);
  6816.           register tree label
  6817.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6818.  
  6819.           if (value != error_mark_node)
  6820.             {
  6821.               tree duplicate;
  6822.               int success = pushcase (value, convert_and_check,
  6823.                           label, &duplicate);
  6824.               if (success == 1)
  6825.             cp_error ("case label `%E' not within a switch statement", yyvsp[-1].ttype);
  6826.               else if (success == 2)
  6827.             {
  6828.               cp_error ("duplicate case value `%E'", yyvsp[-1].ttype);
  6829.               cp_error_at ("`%E' previously used here", duplicate);
  6830.             }
  6831.               else if (success == 3)
  6832.             warning ("case value out of range");
  6833.               else if (success == 5)
  6834.             cp_error ("case label `%E' within scope of cleanup or variable array", yyvsp[-1].ttype);
  6835.             }
  6836.           define_case_label (label);
  6837.         ;
  6838.     break;}
  6839. case 613:
  6840. #line 3253 "parse.y"
  6841. { register tree value1 = check_cp_case_value (yyvsp[-3].ttype);
  6842.           register tree value2 = check_cp_case_value (yyvsp[-1].ttype);
  6843.           register tree label
  6844.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6845.  
  6846.           if (flag_ansi)
  6847.             pedwarn ("ANSI C++ forbids range expressions in switch statement");
  6848.           if (value1 != error_mark_node
  6849.               && value2 != error_mark_node)
  6850.             {
  6851.               tree duplicate;
  6852.               int success = pushcase_range (value1, value2,
  6853.                             convert_and_check, label,
  6854.                             &duplicate);
  6855.               if (success == 1)
  6856.             error ("case label not within a switch statement");
  6857.               else if (success == 2)
  6858.             {
  6859.               error ("duplicate (or overlapping) case value");
  6860.               error_with_decl (duplicate, "this is the first entry overlapping that value");
  6861.             }
  6862.               else if (success == 3)
  6863.             warning ("case value out of range");
  6864.               else if (success == 4)
  6865.             warning ("empty range specified");
  6866.               else if (success == 5)
  6867.             error ("case label within scope of cleanup or variable array");
  6868.             }
  6869.           define_case_label (label);
  6870.         ;
  6871.     break;}
  6872. case 615:
  6873. #line 3285 "parse.y"
  6874. {
  6875.           tree duplicate;
  6876.           register tree label
  6877.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  6878.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  6879.           if (success == 1)
  6880.             error ("default label not within a switch statement");
  6881.           else if (success == 2)
  6882.             {
  6883.               error ("multiple default labels in one switch");
  6884.               error_with_decl (duplicate, "this is the first default label");
  6885.             }
  6886.           define_case_label (NULL_TREE);
  6887.         ;
  6888.     break;}
  6889. case 617:
  6890. #line 3301 "parse.y"
  6891. { emit_line_note (input_filename, lineno);
  6892.           if ( ! expand_exit_something ())
  6893.             error ("break statement not within loop or switch"); ;
  6894.     break;}
  6895. case 618:
  6896. #line 3305 "parse.y"
  6897. { emit_line_note (input_filename, lineno);
  6898.           if (! expand_continue_loop (0))
  6899.             error ("continue statement not within a loop"); ;
  6900.     break;}
  6901. case 619:
  6902. #line 3309 "parse.y"
  6903. { emit_line_note (input_filename, lineno);
  6904.           c_expand_return (NULL_TREE); ;
  6905.     break;}
  6906. case 620:
  6907. #line 3312 "parse.y"
  6908. { emit_line_note (input_filename, lineno);
  6909.           c_expand_return (yyvsp[-1].ttype);
  6910.           finish_stmt ();
  6911.         ;
  6912.     break;}
  6913. case 621:
  6914. #line 3317 "parse.y"
  6915. { if (TREE_CHAIN (yyvsp[-2].ttype)) yyvsp[-2].ttype = combine_strings (yyvsp[-2].ttype);
  6916.           emit_line_note (input_filename, lineno);
  6917.           expand_asm (yyvsp[-2].ttype);
  6918.           finish_stmt ();
  6919.         ;
  6920.     break;}
  6921. case 622:
  6922. #line 3324 "parse.y"
  6923. { if (TREE_CHAIN (yyvsp[-4].ttype)) yyvsp[-4].ttype = combine_strings (yyvsp[-4].ttype);
  6924.           emit_line_note (input_filename, lineno);
  6925.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  6926.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  6927.                      input_filename, lineno);
  6928.           finish_stmt ();
  6929.         ;
  6930.     break;}
  6931. case 623:
  6932. #line 3333 "parse.y"
  6933. { if (TREE_CHAIN (yyvsp[-6].ttype)) yyvsp[-6].ttype = combine_strings (yyvsp[-6].ttype);
  6934.           emit_line_note (input_filename, lineno);
  6935.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  6936.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  6937.                      input_filename, lineno);
  6938.           finish_stmt ();
  6939.         ;
  6940.     break;}
  6941. case 624:
  6942. #line 3343 "parse.y"
  6943. { if (TREE_CHAIN (yyvsp[-8].ttype)) yyvsp[-8].ttype = combine_strings (yyvsp[-8].ttype);
  6944.           emit_line_note (input_filename, lineno);
  6945.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  6946.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  6947.                      input_filename, lineno);
  6948.           finish_stmt ();
  6949.         ;
  6950.     break;}
  6951. case 625:
  6952. #line 3351 "parse.y"
  6953. { emit_line_note (input_filename, lineno);
  6954.           expand_computed_goto (yyvsp[-1].ttype); ;
  6955.     break;}
  6956. case 626:
  6957. #line 3354 "parse.y"
  6958. { tree decl;
  6959.           emit_line_note (input_filename, lineno);
  6960.           decl = lookup_label (yyvsp[-1].ttype);
  6961.           TREE_USED (decl) = 1;
  6962.           expand_goto (decl); ;
  6963.     break;}
  6964. case 627:
  6965. #line 3360 "parse.y"
  6966. { finish_stmt (); ;
  6967.     break;}
  6968. case 628:
  6969. #line 3362 "parse.y"
  6970. { error ("label must be followed by statement");
  6971.           yyungetc ('}', 0);
  6972.           finish_stmt (); ;
  6973.     break;}
  6974. case 629:
  6975. #line 3366 "parse.y"
  6976. { finish_stmt (); ;
  6977.     break;}
  6978. case 631:
  6979. #line 3372 "parse.y"
  6980. { expand_start_try_stmts (); ;
  6981.     break;}
  6982. case 632:
  6983. #line 3374 "parse.y"
  6984. { expand_end_try_stmts ();
  6985.           expand_start_all_catch (); ;
  6986.     break;}
  6987. case 633:
  6988. #line 3377 "parse.y"
  6989. { expand_end_all_catch (); ;
  6990.     break;}
  6991. case 634:
  6992. #line 3385 "parse.y"
  6993. { expand_end_bindings (0,1,1);
  6994.           poplevel (2,0,0);
  6995.         ;
  6996.     break;}
  6997. case 635:
  6998. #line 3389 "parse.y"
  6999. { expand_end_bindings (0,1,1);
  7000.           poplevel (2,0,0);
  7001.         ;
  7002.     break;}
  7003. case 636:
  7004. #line 3393 "parse.y"
  7005. { expand_end_bindings (0,1,1);
  7006.           poplevel (2,0,0);
  7007.         ;
  7008.     break;}
  7009. case 638:
  7010. #line 3401 "parse.y"
  7011. { emit_line_note (input_filename, lineno); ;
  7012.     break;}
  7013. case 639:
  7014. #line 3403 "parse.y"
  7015. { expand_end_catch_block (); ;
  7016.     break;}
  7017. case 642:
  7018. #line 3413 "parse.y"
  7019. { expand_start_catch_block (NULL_TREE, NULL_TREE); ;
  7020.     break;}
  7021. case 643:
  7022. #line 3425 "parse.y"
  7023. { expand_start_catch_block (TREE_PURPOSE (yyvsp[-1].ttype),
  7024.                         TREE_VALUE (yyvsp[-1].ttype)); ;
  7025.     break;}
  7026. case 644:
  7027. #line 3431 "parse.y"
  7028. { tree label;
  7029.         do_label:
  7030.           label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  7031.           if (label)
  7032.             expand_label (label);
  7033.         ;
  7034.     break;}
  7035. case 645:
  7036. #line 3438 "parse.y"
  7037. { goto do_label; ;
  7038.     break;}
  7039. case 646:
  7040. #line 3440 "parse.y"
  7041. { goto do_label; ;
  7042.     break;}
  7043. case 647:
  7044. #line 3445 "parse.y"
  7045. { yyval.ttype = NULL_TREE; ;
  7046.     break;}
  7047. case 648:
  7048. #line 3447 "parse.y"
  7049. { yyval.ttype = yyvsp[-1].ttype; ;
  7050.     break;}
  7051. case 649:
  7052. #line 3449 "parse.y"
  7053. { yyval.ttype = NULL_TREE; ;
  7054.     break;}
  7055. case 650:
  7056. #line 3454 "parse.y"
  7057. { yyval.itype = 0; ;
  7058.     break;}
  7059. case 651:
  7060. #line 3456 "parse.y"
  7061. { yyval.itype = 0; ;
  7062.     break;}
  7063. case 652:
  7064. #line 3458 "parse.y"
  7065. { yyval.itype = 1; ;
  7066.     break;}
  7067. case 653:
  7068. #line 3460 "parse.y"
  7069. { yyval.itype = -1; ;
  7070.     break;}
  7071. case 654:
  7072. #line 3467 "parse.y"
  7073. { emit_line_note (input_filename, lineno);
  7074.           yyval.ttype = NULL_TREE; ;
  7075.     break;}
  7076. case 655:
  7077. #line 3470 "parse.y"
  7078. { emit_line_note (input_filename, lineno); ;
  7079.     break;}
  7080. case 656:
  7081. #line 3475 "parse.y"
  7082. { yyval.ttype = NULL_TREE; ;
  7083.     break;}
  7084. case 658:
  7085. #line 3478 "parse.y"
  7086. { yyval.ttype = NULL_TREE; ;
  7087.     break;}
  7088. case 659:
  7089. #line 3484 "parse.y"
  7090. { yyval.ttype = NULL_TREE; ;
  7091.     break;}
  7092. case 662:
  7093. #line 3491 "parse.y"
  7094. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7095.     break;}
  7096. case 663:
  7097. #line 3496 "parse.y"
  7098. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[-1].ttype); ;
  7099.     break;}
  7100. case 664:
  7101. #line 3501 "parse.y"
  7102. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, NULL_TREE); ;
  7103.     break;}
  7104. case 665:
  7105. #line 3503 "parse.y"
  7106. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyval.ttype); ;
  7107.     break;}
  7108. case 666:
  7109. #line 3513 "parse.y"
  7110. {
  7111.           if (strict_prototype)
  7112.             yyval.ttype = void_list_node;
  7113.           else
  7114.             yyval.ttype = NULL_TREE;
  7115.         ;
  7116.     break;}
  7117. case 668:
  7118. #line 3521 "parse.y"
  7119. { yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7120.           TREE_PARMLIST (yyval.ttype) = 1; ;
  7121.     break;}
  7122. case 669:
  7123. #line 3529 "parse.y"
  7124. {
  7125.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7126.           TREE_PARMLIST (yyval.ttype) = 1;
  7127.         ;
  7128.     break;}
  7129. case 670:
  7130. #line 3534 "parse.y"
  7131. {
  7132.           TREE_PARMLIST (yyval.ttype) = 1;
  7133.         ;
  7134.     break;}
  7135. case 671:
  7136. #line 3539 "parse.y"
  7137. {
  7138.           TREE_PARMLIST (yyval.ttype) = 1;
  7139.         ;
  7140.     break;}
  7141. case 672:
  7142. #line 3543 "parse.y"
  7143. {
  7144.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); 
  7145.           TREE_PARMLIST (yyval.ttype) = 1;
  7146.         ;
  7147.     break;}
  7148. case 673:
  7149. #line 3548 "parse.y"
  7150. {
  7151.           /* ARM $8.2.5 has this as a boxed-off comment.  */
  7152.           if (pedantic)
  7153.             warning ("use of `...' without a first argument is non-portable");
  7154.           yyval.ttype = NULL_TREE;
  7155.         ;
  7156.     break;}
  7157. case 674:
  7158. #line 3555 "parse.y"
  7159. {
  7160.           TREE_PARMLIST (yyval.ttype) = 1;
  7161.         ;
  7162.     break;}
  7163. case 675:
  7164. #line 3559 "parse.y"
  7165. {
  7166.           TREE_PARMLIST (yyval.ttype) = 1;
  7167.         ;
  7168.     break;}
  7169. case 676:
  7170. #line 3563 "parse.y"
  7171. {
  7172.           yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype);
  7173.           TREE_PARMLIST (yyval.ttype) = 1;
  7174.         ;
  7175.     break;}
  7176. case 677:
  7177. #line 3568 "parse.y"
  7178. {
  7179.           /* This helps us recover from really nasty
  7180.              parse errors, for example, a missing right
  7181.              parenthesis.  */
  7182.           yyerror ("possibly missing ')'");
  7183.           yyval.ttype = chainon (yyval.ttype, void_list_node);
  7184.           TREE_PARMLIST (yyval.ttype) = 1;
  7185.           yyungetc (':', 0);
  7186.           yychar = ')';
  7187.         ;
  7188.     break;}
  7189. case 678:
  7190. #line 3579 "parse.y"
  7191. {
  7192.           /* This helps us recover from really nasty
  7193.              parse errors, for example, a missing right
  7194.              parenthesis.  */
  7195.           yyerror ("possibly missing ')'");
  7196.           yyval.ttype = tree_cons (NULL_TREE, yyval.ttype, void_list_node);
  7197.           TREE_PARMLIST (yyval.ttype) = 1;
  7198.           yyungetc (':', 0);
  7199.           yychar = ')';
  7200.         ;
  7201.     break;}
  7202. case 679:
  7203. #line 3594 "parse.y"
  7204. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7205.     break;}
  7206. case 680:
  7207. #line 3596 "parse.y"
  7208. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7209.     break;}
  7210. case 681:
  7211. #line 3598 "parse.y"
  7212. { yyval.ttype = chainon (yyval.ttype, yyvsp[0].ttype); ;
  7213.     break;}
  7214. case 682:
  7215. #line 3600 "parse.y"
  7216. { yyval.ttype = chainon (yyval.ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  7217.     break;}
  7218. case 683:
  7219. #line 3602 "parse.y"
  7220. { yyval.ttype = chainon (yyval.ttype, build_tree_list (yyvsp[0].ttype, yyvsp[-2].ttype)); ;
  7221.     break;}
  7222. case 685:
  7223. #line 3608 "parse.y"
  7224. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7225.     break;}
  7226. case 686:
  7227. #line 3631 "parse.y"
  7228. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7229.     break;}
  7230. case 687:
  7231. #line 3633 "parse.y"
  7232. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7233.     break;}
  7234. case 688:
  7235. #line 3635 "parse.y"
  7236. { yyval.ttype = build_tree_list (get_decl_list (yyval.ttype), yyvsp[0].ttype); ;
  7237.     break;}
  7238. case 689:
  7239. #line 3637 "parse.y"
  7240. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7241.     break;}
  7242. case 690:
  7243. #line 3639 "parse.y"
  7244. { yyval.ttype = build_tree_list (yyval.ttype, NULL_TREE); ;
  7245.     break;}
  7246. case 691:
  7247. #line 3641 "parse.y"
  7248. { yyval.ttype = build_tree_list (yyval.ttype, yyvsp[0].ttype); ;
  7249.     break;}
  7250. case 692:
  7251. #line 3646 "parse.y"
  7252. { yyval.ttype = build_tree_list (NULL_TREE, yyval.ttype); ;
  7253.     break;}
  7254. case 693:
  7255. #line 3648 "parse.y"
  7256. { yyval.ttype = build_tree_list (yyvsp[0].ttype, yyval.ttype); ;
  7257.     break;}
  7258. case 696:
  7259. #line 3657 "parse.y"
  7260. { see_typename (); ;
  7261.     break;}
  7262. case 697:
  7263. #line 3680 "parse.y"
  7264. {
  7265.           warning ("type specifier omitted for parameter");
  7266.           yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-1].ttype)), NULL_TREE);
  7267.         ;
  7268.     break;}
  7269. case 698:
  7270. #line 3685 "parse.y"
  7271. {
  7272.           warning ("type specifier omitted for parameter");
  7273.           yyval.ttype = build_tree_list (TREE_PURPOSE (TREE_VALUE (yyvsp[-2].ttype)), yyval.ttype);
  7274.         ;
  7275.     break;}
  7276. case 699:
  7277. #line 3693 "parse.y"
  7278. { yyval.ttype = NULL_TREE; ;
  7279.     break;}
  7280. case 700:
  7281. #line 3695 "parse.y"
  7282. { yyval.ttype = yyvsp[-1].ttype; ;
  7283.     break;}
  7284. case 701:
  7285. #line 3700 "parse.y"
  7286. { yyval.ttype = build_decl_list (NULL_TREE, yyval.ttype); ;
  7287.     break;}
  7288. case 703:
  7289. #line 3706 "parse.y"
  7290. {
  7291.           TREE_CHAIN (yyvsp[0].ttype) = yyval.ttype;
  7292.           yyval.ttype = yyvsp[0].ttype;
  7293.         ;
  7294.     break;}
  7295. case 704:
  7296. #line 3714 "parse.y"
  7297. { yyval.ttype = NULL_TREE; ;
  7298.     break;}
  7299. case 705:
  7300. #line 3716 "parse.y"
  7301. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7302.     break;}
  7303. case 706:
  7304. #line 3718 "parse.y"
  7305. { yyval.ttype = make_reference_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7306.     break;}
  7307. case 707:
  7308. #line 3720 "parse.y"
  7309. { tree arg = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype);
  7310.           yyval.ttype = build_parse_node (SCOPE_REF, yyvsp[-2].ttype, arg);
  7311.         ;
  7312.     break;}
  7313. case 708:
  7314. #line 3726 "parse.y"
  7315. { got_scope = NULL_TREE; ;
  7316.     break;}
  7317. case 709:
  7318. #line 3731 "parse.y"
  7319. { yyval.ttype = ansi_opname[MULT_EXPR]; ;
  7320.     break;}
  7321. case 710:
  7322. #line 3733 "parse.y"
  7323. { yyval.ttype = ansi_opname[TRUNC_DIV_EXPR]; ;
  7324.     break;}
  7325. case 711:
  7326. #line 3735 "parse.y"
  7327. { yyval.ttype = ansi_opname[TRUNC_MOD_EXPR]; ;
  7328.     break;}
  7329. case 712:
  7330. #line 3737 "parse.y"
  7331. { yyval.ttype = ansi_opname[PLUS_EXPR]; ;
  7332.     break;}
  7333. case 713:
  7334. #line 3739 "parse.y"
  7335. { yyval.ttype = ansi_opname[MINUS_EXPR]; ;
  7336.     break;}
  7337. case 714:
  7338. #line 3741 "parse.y"
  7339. { yyval.ttype = ansi_opname[BIT_AND_EXPR]; ;
  7340.     break;}
  7341. case 715:
  7342. #line 3743 "parse.y"
  7343. { yyval.ttype = ansi_opname[BIT_IOR_EXPR]; ;
  7344.     break;}
  7345. case 716:
  7346. #line 3745 "parse.y"
  7347. { yyval.ttype = ansi_opname[BIT_XOR_EXPR]; ;
  7348.     break;}
  7349. case 717:
  7350. #line 3747 "parse.y"
  7351. { yyval.ttype = ansi_opname[BIT_NOT_EXPR]; ;
  7352.     break;}
  7353. case 718:
  7354. #line 3749 "parse.y"
  7355. { yyval.ttype = ansi_opname[COMPOUND_EXPR]; ;
  7356.     break;}
  7357. case 719:
  7358. #line 3751 "parse.y"
  7359. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7360.     break;}
  7361. case 720:
  7362. #line 3753 "parse.y"
  7363. { yyval.ttype = ansi_opname[LT_EXPR]; ;
  7364.     break;}
  7365. case 721:
  7366. #line 3755 "parse.y"
  7367. { yyval.ttype = ansi_opname[GT_EXPR]; ;
  7368.     break;}
  7369. case 722:
  7370. #line 3757 "parse.y"
  7371. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7372.     break;}
  7373. case 723:
  7374. #line 3759 "parse.y"
  7375. { yyval.ttype = ansi_assopname[yyvsp[0].code]; ;
  7376.     break;}
  7377. case 724:
  7378. #line 3761 "parse.y"
  7379. { yyval.ttype = ansi_opname [MODIFY_EXPR]; ;
  7380.     break;}
  7381. case 725:
  7382. #line 3763 "parse.y"
  7383. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7384.     break;}
  7385. case 726:
  7386. #line 3765 "parse.y"
  7387. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7388.     break;}
  7389. case 727:
  7390. #line 3767 "parse.y"
  7391. { yyval.ttype = ansi_opname[POSTINCREMENT_EXPR]; ;
  7392.     break;}
  7393. case 728:
  7394. #line 3769 "parse.y"
  7395. { yyval.ttype = ansi_opname[PREDECREMENT_EXPR]; ;
  7396.     break;}
  7397. case 729:
  7398. #line 3771 "parse.y"
  7399. { yyval.ttype = ansi_opname[TRUTH_ANDIF_EXPR]; ;
  7400.     break;}
  7401. case 730:
  7402. #line 3773 "parse.y"
  7403. { yyval.ttype = ansi_opname[TRUTH_ORIF_EXPR]; ;
  7404.     break;}
  7405. case 731:
  7406. #line 3775 "parse.y"
  7407. { yyval.ttype = ansi_opname[TRUTH_NOT_EXPR]; ;
  7408.     break;}
  7409. case 732:
  7410. #line 3777 "parse.y"
  7411. { yyval.ttype = ansi_opname[COND_EXPR]; ;
  7412.     break;}
  7413. case 733:
  7414. #line 3779 "parse.y"
  7415. { yyval.ttype = ansi_opname[yyvsp[0].code]; ;
  7416.     break;}
  7417. case 734:
  7418. #line 3781 "parse.y"
  7419. { yyval.ttype = ansi_opname[COMPONENT_REF]; ;
  7420.     break;}
  7421. case 735:
  7422. #line 3783 "parse.y"
  7423. { yyval.ttype = ansi_opname[MEMBER_REF]; ;
  7424.     break;}
  7425. case 736:
  7426. #line 3785 "parse.y"
  7427. { yyval.ttype = ansi_opname[CALL_EXPR]; ;
  7428.     break;}
  7429. case 737:
  7430. #line 3787 "parse.y"
  7431. { yyval.ttype = ansi_opname[ARRAY_REF]; ;
  7432.     break;}
  7433. case 738:
  7434. #line 3789 "parse.y"
  7435. { yyval.ttype = ansi_opname[NEW_EXPR]; ;
  7436.     break;}
  7437. case 739:
  7438. #line 3791 "parse.y"
  7439. { yyval.ttype = ansi_opname[DELETE_EXPR]; ;
  7440.     break;}
  7441. case 740:
  7442. #line 3793 "parse.y"
  7443. { yyval.ttype = ansi_opname[VEC_NEW_EXPR]; ;
  7444.     break;}
  7445. case 741:
  7446. #line 3795 "parse.y"
  7447. { yyval.ttype = ansi_opname[VEC_DELETE_EXPR]; ;
  7448.     break;}
  7449. case 742:
  7450. #line 3798 "parse.y"
  7451. { yyval.ttype = grokoptypename (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  7452.     break;}
  7453. case 743:
  7454. #line 3800 "parse.y"
  7455. { yyval.ttype = ansi_opname[ERROR_MARK]; ;
  7456.     break;}
  7457. }
  7458.    /* the action file gets copied in in place of this dollarsign */
  7459. #line 487 "/ade/lib/bison.simple"
  7460.  
  7461.   yyvsp -= yylen;
  7462.   yyssp -= yylen;
  7463. #ifdef YYLSP_NEEDED
  7464.   yylsp -= yylen;
  7465. #endif
  7466.  
  7467. #if YYDEBUG != 0
  7468.   if (yydebug)
  7469.     {
  7470.       short *ssp1 = yyss - 1;
  7471.       fprintf (stderr, "state stack now");
  7472.       while (ssp1 != yyssp)
  7473.     fprintf (stderr, " %d", *++ssp1);
  7474.       fprintf (stderr, "\n");
  7475.     }
  7476. #endif
  7477.  
  7478.   *++yyvsp = yyval;
  7479.  
  7480. #ifdef YYLSP_NEEDED
  7481.   yylsp++;
  7482.   if (yylen == 0)
  7483.     {
  7484.       yylsp->first_line = yylloc.first_line;
  7485.       yylsp->first_column = yylloc.first_column;
  7486.       yylsp->last_line = (yylsp-1)->last_line;
  7487.       yylsp->last_column = (yylsp-1)->last_column;
  7488.       yylsp->text = 0;
  7489.     }
  7490.   else
  7491.     {
  7492.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  7493.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  7494.     }
  7495. #endif
  7496.  
  7497.   /* Now "shift" the result of the reduction.
  7498.      Determine what state that goes to,
  7499.      based on the state we popped back to
  7500.      and the rule number reduced by.  */
  7501.  
  7502.   yyn = yyr1[yyn];
  7503.  
  7504.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  7505.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  7506.     yystate = yytable[yystate];
  7507.   else
  7508.     yystate = yydefgoto[yyn - YYNTBASE];
  7509.  
  7510.   goto yynewstate;
  7511.  
  7512. yyerrlab:   /* here on detecting error */
  7513.  
  7514.   if (! yyerrstatus)
  7515.     /* If not already recovering from an error, report this error.  */
  7516.     {
  7517.       ++yynerrs;
  7518.  
  7519. #ifdef YYERROR_VERBOSE
  7520.       yyn = yypact[yystate];
  7521.  
  7522.       if (yyn > YYFLAG && yyn < YYLAST)
  7523.     {
  7524.       int size = 0;
  7525.       char *msg;
  7526.       int x, count;
  7527.  
  7528.       count = 0;
  7529.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  7530.       for (x = (yyn < 0 ? -yyn : 0);
  7531.            x < (sizeof(yytname) / sizeof(char *)); x++)
  7532.         if (yycheck[x + yyn] == x)
  7533.           size += strlen(yytname[x]) + 15, count++;
  7534.       msg = (char *) malloc(size + 15);
  7535.       if (msg != 0)
  7536.         {
  7537.           strcpy(msg, "parse error");
  7538.  
  7539.           if (count < 5)
  7540.         {
  7541.           count = 0;
  7542.           for (x = (yyn < 0 ? -yyn : 0);
  7543.                x < (sizeof(yytname) / sizeof(char *)); x++)
  7544.             if (yycheck[x + yyn] == x)
  7545.               {
  7546.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  7547.             strcat(msg, yytname[x]);
  7548.             strcat(msg, "'");
  7549.             count++;
  7550.               }
  7551.         }
  7552.           yyerror(msg);
  7553.           free(msg);
  7554.         }
  7555.       else
  7556.         yyerror ("parse error; also virtual memory exceeded");
  7557.     }
  7558.       else
  7559. #endif /* YYERROR_VERBOSE */
  7560.     yyerror("parse error");
  7561.     }
  7562.  
  7563.   goto yyerrlab1;
  7564. yyerrlab1:   /* here on error raised explicitly by an action */
  7565.  
  7566.   if (yyerrstatus == 3)
  7567.     {
  7568.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  7569.  
  7570.       /* return failure if at end of input */
  7571.       if (yychar == YYEOF)
  7572.     YYABORT;
  7573.  
  7574. #if YYDEBUG != 0
  7575.       if (yydebug)
  7576.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  7577. #endif
  7578.  
  7579.       yychar = YYEMPTY;
  7580.     }
  7581.  
  7582.   /* Else will try to reuse lookahead token
  7583.      after shifting the error token.  */
  7584.  
  7585.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  7586.  
  7587.   goto yyerrhandle;
  7588.  
  7589. yyerrdefault:  /* current state does not do anything special for the error token. */
  7590.  
  7591. #if 0
  7592.   /* This is wrong; only states that explicitly want error tokens
  7593.      should shift them.  */
  7594.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  7595.   if (yyn) goto yydefault;
  7596. #endif
  7597.  
  7598. yyerrpop:   /* pop the current state because it cannot handle the error token */
  7599.  
  7600.   if (yyssp == yyss) YYABORT;
  7601.   yyvsp--;
  7602.   yystate = *--yyssp;
  7603. #ifdef YYLSP_NEEDED
  7604.   yylsp--;
  7605. #endif
  7606.  
  7607. #if YYDEBUG != 0
  7608.   if (yydebug)
  7609.     {
  7610.       short *ssp1 = yyss - 1;
  7611.       fprintf (stderr, "Error: state stack now");
  7612.       while (ssp1 != yyssp)
  7613.     fprintf (stderr, " %d", *++ssp1);
  7614.       fprintf (stderr, "\n");
  7615.     }
  7616. #endif
  7617.  
  7618. yyerrhandle:
  7619.  
  7620.   yyn = yypact[yystate];
  7621.   if (yyn == YYFLAG)
  7622.     goto yyerrdefault;
  7623.  
  7624.   yyn += YYTERROR;
  7625.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  7626.     goto yyerrdefault;
  7627.  
  7628.   yyn = yytable[yyn];
  7629.   if (yyn < 0)
  7630.     {
  7631.       if (yyn == YYFLAG)
  7632.     goto yyerrpop;
  7633.       yyn = -yyn;
  7634.       goto yyreduce;
  7635.     }
  7636.   else if (yyn == 0)
  7637.     goto yyerrpop;
  7638.  
  7639.   if (yyn == YYFINAL)
  7640.     YYACCEPT;
  7641.  
  7642. #if YYDEBUG != 0
  7643.   if (yydebug)
  7644.     fprintf(stderr, "Shifting error token, ");
  7645. #endif
  7646.  
  7647.   *++yyvsp = yylval;
  7648. #ifdef YYLSP_NEEDED
  7649.   *++yylsp = yylloc;
  7650. #endif
  7651.  
  7652.   yystate = yyn;
  7653.   goto yynewstate;
  7654. }
  7655. #line 3803 "parse.y"
  7656.  
  7657.  
  7658. #ifdef SPEW_DEBUG
  7659. const char *
  7660. debug_yytranslate (value)
  7661.     int value;
  7662. {
  7663.   return yytname[YYTRANSLATE (value)];
  7664. }
  7665.  
  7666. #endif
  7667.