aboutsummaryrefslogtreecommitdiff
path: root/libcpp/line-map.c
blob: e6dd48df7562f5506280a1861b3d2f01e39d0502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
/* Map logical line numbers to (source file, line number) pairs.
   Copyright (C) 2001, 2003, 2004
   Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

 In other words, you are welcome to use, share and improve this program.
 You are forbidden to forbid anyone else to use, share and improve
 what you give them.   Help stamp out software-hoarding!  */

#include "config.h"
#include "system.h"
#include "line-map.h"

static void trace_include (const struct line_maps *, const struct line_map *);

/* Initialize a line map set.  */

void
linemap_init (struct line_maps *set)
{
  set->maps = NULL;
  set->allocated = 0;
  set->used = 0;
  set->last_listed = -1;
  set->trace_includes = false;
  set->depth = 0;
  set->cache = 0;
  set->highest_location = 0;
  set->highest_line = 0;
  set->max_column_hint = 0;
}

/* Check for and warn about line_maps entered but not exited.  */

void
linemap_check_files_exited (struct line_maps *set)
{
  struct line_map *map;
  /* Depending upon whether we are handling preprocessed input or
     not, this can be a user error or an ICE.  */
  for (map = &set->maps[set->used - 1]; ! MAIN_FILE_P (map);
       map = INCLUDED_FROM (set, map))
    fprintf (stderr, "line-map.c: file \"%s\" entered but not left\n",
	     map->to_file);
}
 
/* Free a line map set.  */

void
linemap_free (struct line_maps *set)
{
  if (set->maps)
    {
      linemap_check_files_exited (set);

      free (set->maps);
    }
}

/* Add a mapping of logical source line to physical source file and
   line number.

   The text pointed to by TO_FILE must have a lifetime
   at least as long as the final call to lookup_line ().  An empty
   TO_FILE means standard input.  If reason is LC_LEAVE, and
   TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their
   natural values considering the file we are returning to.

   FROM_LINE should be monotonic increasing across calls to this
   function.  A call to this function can relocate the previous set of
   A call to this function can relocate the previous set of
   maps, so any stored line_map pointers should not be used.  */

const struct line_map *
linemap_add (struct line_maps *set, enum lc_reason reason,
	     unsigned int sysp, const char *to_file, unsigned int to_line)
{
  struct line_map *map;
  source_location start_location = set->highest_location + 1;

  if (set->used && start_location < set->maps[set->used - 1].start_location)
    abort ();

  if (set->used == set->allocated)
    {
      set->allocated = 2 * set->allocated + 256;
      set->maps = xrealloc (set->maps, set->allocated * sizeof (struct line_map));
    }

  map = &set->maps[set->used];

  if (to_file && *to_file == '\0')
    to_file = "<stdin>";

  /* If we don't keep our line maps consistent, we can easily
     segfault.  Don't rely on the client to do it for us.  */
  if (set->depth == 0)
    reason = LC_ENTER;
  else if (reason == LC_LEAVE)
    {
      struct line_map *from;
      bool error;

      if (MAIN_FILE_P (map - 1))
	{
	  if (to_file == NULL)
	    {
	      set->depth--;
	      return NULL;
	    }
	  error = true;
          reason = LC_RENAME;
          from = map - 1;
	}
      else
	{
	  from = INCLUDED_FROM (set, map - 1);
	  error = to_file && strcmp (from->to_file, to_file);
	}

      /* Depending upon whether we are handling preprocessed input or
	 not, this can be a user error or an ICE.  */
      if (error)
	fprintf (stderr, "line-map.c: file \"%s\" left but not entered\n",
		 to_file);

      /* A TO_FILE of NULL is special - we use the natural values.  */
      if (error || to_file == NULL)
	{
	  to_file = from->to_file;
	  to_line = SOURCE_LINE (from, from[1].start_location);
	  sysp = from->sysp;
	}
    }

  map->reason = reason;
  map->sysp = sysp;
  map->start_location = start_location;
  map->to_file = to_file;
  map->to_line = to_line;
  set->cache = set->used++;
  map->column_bits = 0;
  set->highest_location = start_location;
  set->highest_line = start_location;
  set->max_column_hint = 0;

  if (reason == LC_ENTER)
    {
      map->included_from = set->depth == 0 ? -1 : (int) (set->used - 2);
      set->depth++;
      if (set->trace_includes)
	trace_include (set, map);
    }
  else if (reason == LC_RENAME)
    map->included_from = map[-1].included_from;
  else if (reason == LC_LEAVE)
    {
      set->depth--;
      map->included_from = INCLUDED_FROM (set, map - 1)->included_from;
    }

  return map;
}

source_location
linemap_line_start (struct line_maps *set, unsigned int to_line,
		    unsigned int max_column_hint)
{
  struct line_map *map = &set->maps[set->used - 1];
  source_location highest = set->highest_location;
  source_location r;
  unsigned int last_line = SOURCE_LINE (map, set->highest_line);
  int line_delta = to_line - last_line;
  bool add_map = false;
  if (line_delta < 0
      || (line_delta > 10 && line_delta * map->column_bits > 1000)
      || (max_column_hint >= (1U << map->column_bits))
      || (max_column_hint <= 80 && map->column_bits >= 10))
    {
      add_map = true;
    }
  else
    max_column_hint = set->max_column_hint;
  if (add_map)
    {
      int column_bits;
      if (max_column_hint > 100000 || highest > 0xC0000000)
	{
	  max_column_hint = 0;
	  if (highest >0xF0000000)
	    return 0;
	  column_bits = 0;
	}
      else
	{
	  column_bits = 7;
	  while (max_column_hint >= (1U << column_bits))
	    column_bits++;
	  max_column_hint = 1U << column_bits;
	}
      if (line_delta < 0
	  || last_line != map->to_line
	  || SOURCE_COLUMN (map, highest) >= (1U << column_bits))
	map = (struct line_map*) linemap_add (set, LC_RENAME, map->sysp,
				      map->to_file, to_line);
      map->column_bits = column_bits;
      r = map->start_location;
    }
  else
    r = highest - SOURCE_COLUMN (map, highest)
      + (line_delta << map->column_bits);
  set->highest_line = r;
  if (r > set->highest_location)
    set->highest_location = r;
  set->max_column_hint = max_column_hint;
  return r;
}

source_location
linemap_position_for_column (struct line_maps *set, unsigned int to_column)
{
  source_location r = set->highest_line;
  if (to_column >= set->max_column_hint)
    {
      if (r >= 0xC000000 || to_column > 100000)
	{
	  /* Running low on source_locations - disable column numbers.  */
	  return r;
	}
      else
	{
	  struct line_map *map = &set->maps[set->used - 1];
	  r = linemap_line_start (set, SOURCE_LINE (map, r), to_column + 50);
	}
    }
  r = r + to_column;
  if (r >= set->highest_location)
    set->highest_location = r;
  return r;
}

/* Given a logical line, returns the map from which the corresponding
   (source file, line) pair can be deduced.  Since the set is built
   chronologically, the logical lines are monotonic increasing, and so
   the list is sorted and we can use a binary search.  */

const struct line_map *
linemap_lookup (struct line_maps *set, source_location line)
{
  unsigned int md, mn, mx;
  const struct line_map *cached;

  mn = set->cache;
  mx = set->used;
  
  cached = &set->maps[mn];
  /* We should get a segfault if no line_maps have been added yet.  */
  if (line >= cached->start_location)
    {
      if (mn + 1 == mx || line < cached[1].start_location)
	return cached;
    }
  else
    {
      mx = mn;
      mn = 0;
    }

  while (mx - mn > 1)
    {
      md = (mn + mx) / 2;
      if (set->maps[md].start_location > line)
	mx = md;
      else
	mn = md;
    }

  set->cache = mn;
  return &set->maps[mn];
}

/* Print the file names and line numbers of the #include commands
   which led to the map MAP, if any, to stderr.  Nothing is output if
   the most recently listed stack is the same as the current one.  */

void
linemap_print_containing_files (struct line_maps *set,
				const struct line_map *map)
{
  if (MAIN_FILE_P (map) || set->last_listed == map->included_from)
    return;

  set->last_listed = map->included_from;
  map = INCLUDED_FROM (set, map);

  fprintf (stderr,  _("In file included from %s:%u"),
	   map->to_file, LAST_SOURCE_LINE (map));

  while (! MAIN_FILE_P (map))
    {
      map = INCLUDED_FROM (set, map);
      /* Translators note: this message is used in conjunction
	 with "In file included from %s:%ld" and some other
	 tricks.  We want something like this:

	 | In file included from sys/select.h:123,
	 |                  from sys/types.h:234,
	 |                  from userfile.c:31:
	 | bits/select.h:45: <error message here>

	 with all the "from"s lined up.
	 The trailing comma is at the beginning of this message,
	 and the trailing colon is not translated.  */
      fprintf (stderr, _(",\n                 from %s:%u"),
	       map->to_file, LAST_SOURCE_LINE (map));
    }

  fputs (":\n", stderr);
}

/* Print an include trace, for e.g. the -H option of the preprocessor.  */

static void
trace_include (const struct line_maps *set, const struct line_map *map)
{
  unsigned int i = set->depth;

  while (--i)
    putc ('.', stderr);
  fprintf (stderr, " %s\n", map->to_file);
}
n1366'>1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448

/*  A Bison parser, made from ./parse-scan.y
 by  GNU Bison version 1.25
  */

#define YYBISON 1  /* Identify Bison output.  */

#define	PLUS_TK	258
#define	MINUS_TK	259
#define	MULT_TK	260
#define	DIV_TK	261
#define	REM_TK	262
#define	LS_TK	263
#define	SRS_TK	264
#define	ZRS_TK	265
#define	AND_TK	266
#define	XOR_TK	267
#define	OR_TK	268
#define	BOOL_AND_TK	269
#define	BOOL_OR_TK	270
#define	EQ_TK	271
#define	NEQ_TK	272
#define	GT_TK	273
#define	GTE_TK	274
#define	LT_TK	275
#define	LTE_TK	276
#define	PLUS_ASSIGN_TK	277
#define	MINUS_ASSIGN_TK	278
#define	MULT_ASSIGN_TK	279
#define	DIV_ASSIGN_TK	280
#define	REM_ASSIGN_TK	281
#define	LS_ASSIGN_TK	282
#define	SRS_ASSIGN_TK	283
#define	ZRS_ASSIGN_TK	284
#define	AND_ASSIGN_TK	285
#define	XOR_ASSIGN_TK	286
#define	OR_ASSIGN_TK	287
#define	PUBLIC_TK	288
#define	PRIVATE_TK	289
#define	PROTECTED_TK	290
#define	STATIC_TK	291
#define	FINAL_TK	292
#define	SYNCHRONIZED_TK	293
#define	VOLATILE_TK	294
#define	TRANSIENT_TK	295
#define	NATIVE_TK	296
#define	PAD_TK	297
#define	ABSTRACT_TK	298
#define	MODIFIER_TK	299
#define	DECR_TK	300
#define	INCR_TK	301
#define	DEFAULT_TK	302
#define	IF_TK	303
#define	THROW_TK	304
#define	BOOLEAN_TK	305
#define	DO_TK	306
#define	IMPLEMENTS_TK	307
#define	THROWS_TK	308
#define	BREAK_TK	309
#define	IMPORT_TK	310
#define	ELSE_TK	311
#define	INSTANCEOF_TK	312
#define	RETURN_TK	313
#define	VOID_TK	314
#define	CATCH_TK	315
#define	INTERFACE_TK	316
#define	CASE_TK	317
#define	EXTENDS_TK	318
#define	FINALLY_TK	319
#define	SUPER_TK	320
#define	WHILE_TK	321
#define	CLASS_TK	322
#define	SWITCH_TK	323
#define	CONST_TK	324
#define	TRY_TK	325
#define	FOR_TK	326
#define	NEW_TK	327
#define	CONTINUE_TK	328
#define	GOTO_TK	329
#define	PACKAGE_TK	330
#define	THIS_TK	331
#define	BYTE_TK	332
#define	SHORT_TK	333
#define	INT_TK	334
#define	LONG_TK	335
#define	CHAR_TK	336
#define	INTEGRAL_TK	337
#define	FLOAT_TK	338
#define	DOUBLE_TK	339
#define	FP_TK	340
#define	ID_TK	341
#define	REL_QM_TK	342
#define	REL_CL_TK	343
#define	NOT_TK	344
#define	NEG_TK	345
#define	ASSIGN_ANY_TK	346
#define	ASSIGN_TK	347
#define	OP_TK	348
#define	CP_TK	349
#define	OCB_TK	350
#define	CCB_TK	351
#define	OSB_TK	352
#define	CSB_TK	353
#define	SC_TK	354
#define	C_TK	355
#define	DOT_TK	356
#define	STRING_LIT_TK	357
#define	CHAR_LIT_TK	358
#define	INT_LIT_TK	359
#define	FP_LIT_TK	360
#define	TRUE_TK	361
#define	FALSE_TK	362
#define	BOOL_LIT_TK	363
#define	NULL_TK	364

#line 37 "./parse-scan.y"

#define JC1_LITE

#include "config.h"
#include "system.h"

#include "obstack.h"
#include "toplev.h"

extern char *input_filename;
extern FILE *finput, *out;

/* Obstack for the lexer.  */
struct obstack temporary_obstack;

/* The current parser context.  */
static struct parser_ctxt *ctxp;

/* Error and warning counts, current line number, because they're used
   elsewhere  */
int java_error_count;
int java_warning_count;
int lineno;

/* Tweak default rules when necessary.  */
static int absorber;
#define USE_ABSORBER absorber = 0

/* Keep track of the current class name and package name.  */
static char *current_class;
static char *package_name;

/* Keep track of whether things have be listed before.  */
static int previous_output;

/* Record modifier uses  */
static int modifier_value;

/* Keep track of number of bracket pairs after a variable declarator
   id.  */
static int bracket_count; 

/* Record a method declaration  */
struct method_declarator {
  char *method_name;
  char *args;
};
#define NEW_METHOD_DECLARATOR(D,N,A)					     \
{									     \
  (D) = 								     \
    (struct method_declarator *)xmalloc (sizeof (struct method_declarator)); \
  (D)->method_name = (N);						     \
  (D)->args = (A);							     \
}

/* Two actions for this grammar */
static void report_class_declaration PROTO ((char *));
static void report_main_declaration PROTO ((struct method_declarator *));

#include "lex.h"
#include "parse.h"

#line 100 "./parse-scan.y"
typedef union {
  char *node;
  struct method_declarator *declarator;
  int value;			/* For modifiers */
} YYSTYPE;
#ifndef YYDEBUG
#define YYDEBUG 1
#endif

#include <stdio.h>

#ifndef __cplusplus
#ifndef __STDC__
#define const
#endif
#endif



#define	YYFINAL		601
#define	YYFLAG		-32768
#define	YYNTBASE	110

#define YYTRANSLATE(x) ((unsigned)(x) <= 364 ? yytranslate[x] : 253)

static const char yytranslate[] = {     0,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
     2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
     6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
    16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
    26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
    36,    37,    38,    39,    40,    41,    42,    43,    44,    45,
    46,    47,    48,    49,    50,    51,    52,    53,    54,    55,
    56,    57,    58,    59,    60,    61,    62,    63,    64,    65,
    66,    67,    68,    69,    70,    71,    72,    73,    74,    75,
    76,    77,    78,    79,    80,    81,    82,    83,    84,    85,
    86,    87,    88,    89,    90,    91,    92,    93,    94,    95,
    96,    97,    98,    99,   100,   101,   102,   103,   104,   105,
   106,   107,   108,   109
};

#if YYDEBUG != 0
static const short yyprhs[] = {     0,
     0,     2,     4,     6,     8,    10,    12,    14,    16,    18,
    20,    22,    24,    26,    28,    30,    32,    34,    38,    42,
    46,    48,    50,    52,    56,    58,    59,    61,    63,    65,
    68,    71,    74,    78,    80,    83,    85,    88,    92,    94,
    96,   100,   106,   108,   110,   112,   114,   117,   118,   126,
   127,   134,   135,   138,   139,   142,   144,   148,   151,   155,
   157,   160,   162,   164,   166,   168,   170,   172,   174,   176,
   180,   185,   187,   191,   193,   197,   199,   203,   205,   207,
   210,   214,   218,   223,   228,   232,   237,   241,   243,   247,
   250,   254,   255,   258,   260,   264,   266,   269,   271,   274,
   278,   280,   284,   289,   294,   300,   304,   309,   312,   316,
   320,   325,   330,   336,   344,   351,   353,   355,   359,   364,
   369,   375,   378,   382,   385,   389,   391,   394,   396,   398,
   400,   402,   404,   407,   410,   414,   418,   423,   425,   429,
   432,   436,   438,   441,   443,   445,   447,   450,   453,   457,
   459,   461,   463,   465,   467,   469,   471,   473,   475,   477,
   479,   481,   483,   485,   487,   489,   491,   493,   495,   497,
   499,   501,   503,   506,   509,   512,   515,   517,   519,   521,
   523,   525,   527,   529,   535,   543,   551,   557,   560,   564,
   568,   573,   575,   578,   581,   583,   586,   590,   593,   598,
   601,   604,   606,   614,   622,   629,   637,   644,   647,   650,
   651,   653,   655,   656,   658,   660,   664,   667,   671,   674,
   678,   681,   685,   689,   695,   701,   703,   707,   711,   716,
   718,   721,   727,   730,   732,   734,   736,   738,   742,   744,
   746,   748,   750,   754,   758,   762,   766,   772,   777,   784,
   790,   795,   801,   807,   814,   818,   822,   824,   828,   832,
   836,   840,   845,   850,   855,   860,   862,   865,   869,   872,
   876,   880,   884,   888,   893,   899,   906,   912,   919,   924,
   929,   931,   933,   935,   937,   940,   943,   945,   947,   950,
   953,   955,   958,   961,   963,   966,   969,   971,   977,   982,
   987,   993,   995,   999,  1003,  1007,  1009,  1013,  1017,  1019,
  1023,  1027,  1031,  1033,  1037,  1041,  1045,  1049,  1053,  1055,
  1059,  1063,  1065,  1069,  1071,  1075,  1077,  1081,  1083,  1087,
  1089,  1093,  1095,  1101,  1103,  1105,  1109,  1111,  1113,  1115,
  1117,  1119,  1121
};

static const short yyrhs[] = {   123,
     0,   104,     0,   105,     0,   108,     0,   103,     0,   102,
     0,   109,     0,   113,     0,   114,     0,    82,     0,    85,
     0,    50,     0,   115,     0,   118,     0,   119,     0,   115,
     0,   115,     0,   113,    97,    98,     0,   119,    97,    98,
     0,   118,    97,    98,     0,   120,     0,   121,     0,   122,
     0,   119,   101,   122,     0,    86,     0,     0,   126,     0,
   124,     0,   125,     0,   126,   124,     0,   126,   125,     0,
   124,   125,     0,   126,   124,   125,     0,   127,     0,   124,
   127,     0,   130,     0,   125,   130,     0,    75,   119,    99,
     0,   128,     0,   129,     0,    55,   119,    99,     0,    55,
   119,   101,     5,    99,     0,   132,     0,   162,     0,    99,
     0,    44,     0,   131,    44,     0,     0,   131,    67,   122,
   135,   136,   133,   138,     0,     0,    67,   122,   135,   136,
   134,   138,     0,     0,    63,   116,     0,     0,    52,   137,
     0,   117,     0,   137,   100,   117,     0,    95,    96,     0,
    95,   139,    96,     0,   140,     0,   139,   140,     0,   141,
     0,   155,     0,   157,     0,   171,     0,   142,     0,   147,
     0,   132,     0,   162,     0,   112,   143,    99,     0,   131,
   112,   143,    99,     0,   144,     0,   143,   100,   144,     0,
   145,     0,   145,    92,   146,     0,   122,     0,   145,    97,
    98,     0,   251,     0,   169,     0,   148,   154,     0,   112,
   149,   152,     0,    59,   149,   152,     0,   131,   112,   149,
   152,     0,   131,    59,   149,   152,     0,   122,    93,    94,
     0,   122,    93,   150,    94,     0,   149,    97,    98,     0,
   151,     0,   150,   100,   151,     0,   112,   145,     0,   131,
   112,   145,     0,     0,    53,   153,     0,   116,     0,   153,
   100,   116,     0,   171,     0,   171,    99,     0,    99,     0,
   156,   171,     0,   156,   171,    99,     0,    44,     0,   158,
   152,   159,     0,   131,   158,   152,   159,     0,   158,   152,
   159,    99,     0,   131,   158,   152,   159,    99,     0,   120,
    93,    94,     0,   120,    93,   150,    94,     0,    95,    96,
     0,    95,   160,    96,     0,    95,   172,    96,     0,    95,
   160,   172,    96,     0,   161,    93,    94,    99,     0,   161,
    93,   220,    94,    99,     0,   119,   101,    65,    93,   220,
    94,    99,     0,   119,   101,    65,    93,    94,    99,     0,
    76,     0,    65,     0,    61,   122,   164,     0,   131,    61,
   122,   164,     0,    61,   122,   163,   164,     0,   131,    61,
   122,   163,   164,     0,    63,   117,     0,   163,   100,   117,
     0,    95,    96,     0,    95,   165,    96,     0,   166,     0,
   165,   166,     0,   167,     0,   168,     0,   132,     0,   162,
     0,   142,     0,   148,    99,     0,    95,    96,     0,    95,
   170,    96,     0,    95,   100,    96,     0,    95,   170,   100,
    96,     0,   146,     0,   170,   100,   146,     0,    95,    96,
     0,    95,   172,    96,     0,   173,     0,   172,   173,     0,
   174,     0,   176,     0,   132,     0,   175,    99,     0,   112,
   143,     0,   131,   112,   143,     0,   178,     0,   181,     0,
   185,     0,   186,     0,   195,     0,   199,     0,   178,     0,
   182,     0,   187,     0,   196,     0,   200,     0,   171,     0,
   179,     0,   183,     0,   188,     0,   198,     0,   206,     0,
   207,     0,   208,     0,   210,     0,   209,     0,   212,     0,
    99,     0,   122,    88,     0,   180,   176,     0,   180,   177,
     0,   184,    99,     0,   248,     0,   232,     0,   233,     0,
   229,     0,   230,     0,   226,     0,   218,     0,    48,    93,
   251,    94,   176,     0,    48,    93,   251,    94,   177,    56,
   176,     0,    48,    93,   251,    94,   177,    56,   177,     0,
    68,    93,   251,    94,   189,     0,    95,    96,     0,    95,
   192,    96,     0,    95,   190,    96,     0,    95,   190,   192,
    96,     0,   191,     0,   190,   191,     0,   192,   172,     0,
   193,     0,   192,   193,     0,    62,   252,    88,     0,    47,
    88,     0,    66,    93,   251,    94,     0,   194,   176,     0,
   194,   177,     0,    51,     0,   197,   176,    66,    93,   251,
    94,    99,     0,   202,    99,   251,    99,   204,    94,   176,
     0,   202,    99,    99,   204,    94,   176,     0,   202,    99,
   251,    99,   204,    94,   177,     0,   202,    99,    99,   204,
    94,   177,     0,    71,    93,     0,   201,   203,     0,     0,
   205,     0,   175,     0,     0,   205,     0,   184,     0,   205,
   100,   184,     0,    54,    99,     0,    54,   122,    99,     0,
    73,    99,     0,    73,   122,    99,     0,    58,    99,     0,
    58,   251,    99,     0,    49,   251,    99,     0,   211,    93,
   251,    94,   171,     0,   211,    93,   251,    94,     1,     0,
    44,     0,    70,   171,   213,     0,    70,   171,   215,     0,
    70,   171,   213,   215,     0,   214,     0,   213,   214,     0,
    60,    93,   151,    94,   171,     0,    64,   171,     0,   217,
     0,   221,     0,   111,     0,    76,     0,    93,   251,    94,
     0,   218,     0,   225,     0,   226,     0,   227,     0,   119,
   101,    67,     0,   113,   101,    67,     0,    59,   101,    67,
     0,   119,   101,    76,     0,    72,   116,    93,   220,    94,
     0,    72,   116,    93,    94,     0,    72,   116,    93,   220,
    94,   138,     0,    72,   116,    93,    94,   138,     0,   219,
   122,    93,    94,     0,   219,   122,    93,    94,   138,     0,
   219,   122,    93,   220,    94,     0,   219,   122,    93,   220,
    94,   138,     0,   119,   101,    72,     0,   216,   101,    72,
     0,   251,     0,   220,   100,   251,     0,   220,   100,     1,
     0,    72,   113,   222,     0,    72,   115,   222,     0,    72,
   113,   222,   224,     0,    72,   115,   222,   224,     0,    72,
   115,   224,   169,     0,    72,   113,   224,   169,     0,   223,
     0,   222,   223,     0,    97,   251,    98,     0,    97,    98,
     0,   224,    97,    98,     0,   216,   101,   122,     0,    65,
   101,   122,     0,   119,    93,    94,     0,   119,    93,   220,
    94,     0,   216,   101,   122,    93,    94,     0,   216,   101,
   122,    93,   220,    94,     0,    65,   101,   122,    93,    94,
     0,    65,   101,   122,    93,   220,    94,     0,   119,    97,
   251,    98,     0,   217,    97,   251,    98,     0,   216,     0,
   119,     0,   229,     0,   230,     0,   228,    46,     0,   228,
    45,     0,   232,     0,   233,     0,     3,   231,     0,     4,
   231,     0,   234,     0,    46,   231,     0,    45,   231,     0,
   228,     0,    89,   231,     0,    90,   231,     0,   235,     0,
    93,   113,   224,    94,   231,     0,    93,   113,    94,   231,
     0,    93,   251,    94,   234,     0,    93,   119,   224,    94,
   234,     0,   231,     0,   236,     5,   231,     0,   236,     6,
   231,     0,   236,     7,   231,     0,   236,     0,   237,     3,
   236,     0,   237,     4,   236,     0,   237,     0,   238,     8,
   237,     0,   238,     9,   237,     0,   238,    10,   237,     0,
   238,     0,   239,    20,   238,     0,   239,    18,   238,     0,
   239,    21,   238,     0,   239,    19,   238,     0,   239,    57,
   114,     0,   239,     0,   240,    16,   239,     0,   240,    17,
   239,     0,   240,     0,   241,    11,   240,     0,   241,     0,
   242,    12,   241,     0,   242,     0,   243,    13,   242,     0,
   243,     0,   244,    14,   243,     0,   244,     0,   245,    15,
   244,     0,   245,     0,   245,    87,   251,    88,   246,     0,
   246,     0,   248,     0,   249,   250,   247,     0,   119,     0,
   225,     0,   227,     0,    91,     0,    92,     0,   247,     0,
   251,     0
};

#endif

#if YYDEBUG != 0
static const short yyrline[] = { 0,
   171,   176,   178,   179,   180,   181,   182,   186,   188,   191,
   197,   202,   209,   211,   214,   218,   222,   226,   228,   235,
   245,   247,   250,   254,   263,   268,   269,   270,   271,   272,
   273,   274,   275,   278,   280,   283,   285,   288,   293,   295,
   298,   302,   306,   308,   309,   315,   324,   335,   342,   342,
   345,   347,   348,   351,   352,   355,   358,   362,   364,   367,
   369,   372,   374,   375,   376,   379,   381,   382,   383,   387,
   390,   394,   397,   400,   402,   405,   408,   412,   414,   418,
   422,   425,   426,   428,   435,   442,   448,   451,   453,   461,
   477,   493,   494,   497,   500,   504,   506,   507,   511,   513,
   516,   526,   528,   531,   533,   539,   542,   546,   548,   549,
   550,   554,   556,   559,   561,   565,   567,   572,   575,   577,
   579,   583,   585,   588,   590,   593,   595,   598,   600,   601,
   602,   605,   609,   614,   616,   617,   618,   621,   623,   627,
   629,   632,   634,   637,   639,   640,   643,   647,   650,   654,
   656,   657,   658,   659,   660,   663,   665,   666,   667,   668,
   671,   673,   674,   675,   676,   677,   678,   679,   680,   681,
   682,   685,   689,   694,   698,   704,   708,   710,   711,   712,
   713,   714,   715,   718,   722,   726,   730,   734,   736,   737,
   738,   741,   743,   746,   751,   753,   756,   758,   761,   765,
   769,   773,   777,   781,   783,   786,   788,   791,   795,   798,
   799,   800,   803,   804,   807,   809,   812,   814,   817,   819,
   822,   824,   827,   831,   833,   836,   841,   843,   844,   847,
   849,   852,   856,   861,   863,   866,   868,   869,   870,   871,
   872,   873,   877,   879,   881,   885,   889,   891,   895,   896,
   900,   901,   902,   903,   906,   909,   912,   914,   915,   918,
   920,   921,   922,   925,   926,   929,   931,   934,   938,   940,
   943,   945,   948,   951,   953,   954,   955,   956,   959,   962,
   965,   967,   969,   970,   973,   977,   981,   983,   984,   985,
   986,   989,   993,   997,   999,  1000,  1001,  1004,  1006,  1007,
  1008,  1011,  1013,  1014,  1015,  1018,  1020,  1021,  1024,  1026,
  1027,  1028,  1031,  1033,  1034,  1035,  1036,  1037,  1040,  1042,
  1043,  1046,  1048,  1051,  1053,  1056,  1058,  1061,  1063,  1066,
  1068,  1071,  1073,  1076,  1078,  1081,  1085,  1088,  1089,  1092,
  1094,  1097,  1101
};
#endif


#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)

static const char * const yytname[] = {   "$","error","$undefined.","PLUS_TK",
"MINUS_TK","MULT_TK","DIV_TK","REM_TK","LS_TK","SRS_TK","ZRS_TK","AND_TK","XOR_TK",
"OR_TK","BOOL_AND_TK","BOOL_OR_TK","EQ_TK","NEQ_TK","GT_TK","GTE_TK","LT_TK",
"LTE_TK","PLUS_ASSIGN_TK","MINUS_ASSIGN_TK","MULT_ASSIGN_TK","DIV_ASSIGN_TK",
"REM_ASSIGN_TK","LS_ASSIGN_TK","SRS_ASSIGN_TK","ZRS_ASSIGN_TK","AND_ASSIGN_TK",
"XOR_ASSIGN_TK","OR_ASSIGN_TK","PUBLIC_TK","PRIVATE_TK","PROTECTED_TK","STATIC_TK",
"FINAL_TK","SYNCHRONIZED_TK","VOLATILE_TK","TRANSIENT_TK","NATIVE_TK","PAD_TK",
"ABSTRACT_TK","MODIFIER_TK","DECR_TK","INCR_TK","DEFAULT_TK","IF_TK","THROW_TK",
"BOOLEAN_TK","DO_TK","IMPLEMENTS_TK","THROWS_TK","BREAK_TK","IMPORT_TK","ELSE_TK",
"INSTANCEOF_TK","RETURN_TK","VOID_TK","CATCH_TK","INTERFACE_TK","CASE_TK","EXTENDS_TK",
"FINALLY_TK","SUPER_TK","WHILE_TK","CLASS_TK","SWITCH_TK","CONST_TK","TRY_TK",
"FOR_TK","NEW_TK","CONTINUE_TK","GOTO_TK","PACKAGE_TK","THIS_TK","BYTE_TK","SHORT_TK",
"INT_TK","LONG_TK","CHAR_TK","INTEGRAL_TK","FLOAT_TK","DOUBLE_TK","FP_TK","ID_TK",
"REL_QM_TK","REL_CL_TK","NOT_TK","NEG_TK","ASSIGN_ANY_TK","ASSIGN_TK","OP_TK",
"CP_TK","OCB_TK","CCB_TK","OSB_TK","CSB_TK","SC_TK","C_TK","DOT_TK","STRING_LIT_TK",
"CHAR_LIT_TK","INT_LIT_TK","FP_LIT_TK","TRUE_TK","FALSE_TK","BOOL_LIT_TK","NULL_TK",
"goal","literal","type","primitive_type","reference_type","class_or_interface_type",
"class_type","interface_type","array_type","name","simple_name","qualified_name",
"identifier","compilation_unit","import_declarations","type_declarations","package_declaration",
"import_declaration","single_type_import_declaration","type_import_on_demand_declaration",
"type_declaration","modifiers","class_declaration","@1","@2","super","interfaces",
"interface_type_list","class_body","class_body_declarations","class_body_declaration",
"class_member_declaration","field_declaration","variable_declarators","variable_declarator",
"variable_declarator_id","variable_initializer","method_declaration","method_header",
"method_declarator","formal_parameter_list","formal_parameter","throws","class_type_list",
"method_body","static_initializer","static","constructor_declaration","constructor_declarator",
"constructor_body","explicit_constructor_invocation","this_or_super","interface_declaration",
"extends_interfaces","interface_body","interface_member_declarations","interface_member_declaration",
"constant_declaration","abstract_method_declaration","array_initializer","variable_initializers",
"block","block_statements","block_statement","local_variable_declaration_statement",
"local_variable_declaration","statement","statement_nsi","statement_without_trailing_substatement",
"empty_statement","label_decl","labeled_statement","labeled_statement_nsi","expression_statement",
"statement_expression","if_then_statement","if_then_else_statement","if_then_else_statement_nsi",
"switch_statement","switch_block","switch_block_statement_groups","switch_block_statement_group",
"switch_labels","switch_label","while_expression","while_statement","while_statement_nsi",
"do_statement_begin","do_statement","for_statement","for_statement_nsi","for_header",
"for_begin","for_init","for_update","statement_expression_list","break_statement",
"continue_statement","return_statement","throw_statement","synchronized_statement",
"synchronized","try_statement","catches","catch_clause","finally","primary",
"primary_no_new_array","class_instance_creation_expression","something_dot_new",
"argument_list","array_creation_expression","dim_exprs","dim_expr","dims","field_access",
"method_invocation","array_access","postfix_expression","post_increment_expression",
"post_decrement_expression","unary_expression","pre_increment_expression","pre_decrement_expression",
"unary_expression_not_plus_minus","cast_expression","multiplicative_expression",
"additive_expression","shift_expression","relational_expression","equality_expression",
"and_expression","exclusive_or_expression","inclusive_or_expression","conditional_and_expression",
"conditional_or_expression","conditional_expression","assignment_expression",
"assignment","left_hand_side","assignment_operator","expression","constant_expression", NULL
};
#endif

static const short yyr1[] = {     0,
   110,   111,   111,   111,   111,   111,   111,   112,   112,   113,
   113,   113,   114,   114,   115,   116,   117,   118,   118,   118,
   119,   119,   120,   121,   122,   123,   123,   123,   123,   123,
   123,   123,   123,   124,   124,   125,   125,   126,   127,   127,
   128,   129,   130,   130,   130,   131,   131,   133,   132,   134,
   132,   135,   135,   136,   136,   137,   137,   138,   138,   139,
   139,   140,   140,   140,   140,   141,   141,   141,   141,   142,
   142,   143,   143,   144,   144,   145,   145,   146,   146,   147,
   148,   148,   148,   148,   149,   149,   149,   150,   150,   151,
   151,   152,   152,   153,   153,   154,   154,   154,   155,   155,
   156,   157,   157,   157,   157,   158,   158,   159,   159,   159,
   159,   160,   160,   160,   160,   161,   161,   162,   162,   162,
   162,   163,   163,   164,   164,   165,   165,   166,   166,   166,
   166,   167,   168,   169,   169,   169,   169,   170,   170,   171,
   171,   172,   172,   173,   173,   173,   174,   175,   175,   176,
   176,   176,   176,   176,   176,   177,   177,   177,   177,   177,
   178,   178,   178,   178,   178,   178,   178,   178,   178,   178,
   178,   179,   180,   181,   182,   183,   184,   184,   184,   184,
   184,   184,   184,   185,   186,   187,   188,   189,   189,   189,
   189,   190,   190,   191,   192,   192,   193,   193,   194,   195,
   196,   197,   198,   199,   199,   200,   200,   201,   202,   203,
   203,   203,   204,   204,   205,   205,   206,   206,   207,   207,
   208,   208,   209,   210,   210,   211,   212,   212,   212,   213,
   213,   214,   215,   216,   216,   217,   217,   217,   217,   217,
   217,   217,   217,   217,   217,   217,   218,   218,   218,   218,
   218,   218,   218,   218,   219,   219,   220,   220,   220,   221,
   221,   221,   221,   221,   221,   222,   222,   223,   224,   224,
   225,   225,   226,   226,   226,   226,   226,   226,   227,   227,
   228,   228,   228,   228,   229,   230,   231,   231,   231,   231,
   231,   232,   233,   234,   234,   234,   234,   235,   235,   235,
   235,   236,   236,   236,   236,   237,   237,   237,   238,   238,
   238,   238,   239,   239,   239,   239,   239,   239,   240,   240,
   240,   241,   241,   242,   242,   243,   243,   244,   244,   245,
   245,   246,   246,   247,   247,   248,   249,   249,   249,   250,
   250,   251,   252
};

static const short yyr2[] = {     0,
     1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
     1,     1,     1,     1,     1,     1,     1,     3,     3,     3,
     1,     1,     1,     3,     1,     0,     1,     1,     1,     2,
     2,     2,     3,     1,     2,     1,     2,     3,     1,     1,
     3,     5,     1,     1,     1,     1,     2,     0,     7,     0,
     6,     0,     2,     0,     2,     1,     3,     2,     3,     1,
     2,     1,     1,     1,     1,     1,     1,     1,     1,     3,
     4,     1,     3,     1,     3,     1,     3,     1,     1,     2,
     3,     3,     4,     4,     3,     4,     3,     1,     3,     2,
     3,     0,     2,     1,     3,     1,     2,     1,     2,     3,
     1,     3,     4,     4,     5,     3,     4,     2,     3,     3,
     4,     4,     5,     7,     6,     1,     1,     3,     4,     4,
     5,     2,     3,     2,     3,     1,     2,     1,     1,     1,
     1,     1,     2,     2,     3,     3,     4,     1,     3,     2,
     3,     1,     2,     1,     1,     1,     2,     2,     3,     1,
     1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
     1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
     1,     1,     2,     2,     2,     2,     1,     1,     1,     1,
     1,     1,     1,     5,     7,     7,     5,     2,     3,     3,
     4,     1,     2,     2,     1,     2,     3,     2,     4,     2,
     2,     1,     7,     7,     6,     7,     6,     2,     2,     0,
     1,     1,     0,     1,     1,     3,     2,     3,     2,     3,
     2,     3,     3,     5,     5,     1,     3,     3,     4,     1,
     2,     5,     2,     1,     1,     1,     1,     3,     1,     1,
     1,     1,     3,     3,     3,     3,     5,     4,     6,     5,
     4,     5,     5,     6,     3,     3,     1,     3,     3,     3,
     3,     4,     4,     4,     4,     1,     2,     3,     2,     3,
     3,     3,     3,     4,     5,     6,     5,     6,     4,     4,
     1,     1,     1,     1,     2,     2,     1,     1,     2,     2,
     1,     2,     2,     1,     2,     2,     1,     5,     4,     4,
     5,     1,     3,     3,     3,     1,     3,     3,     1,     3,
     3,     3,     1,     3,     3,     3,     3,     3,     1,     3,
     3,     1,     3,     1,     3,     1,     3,     1,     3,     1,
     3,     1,     5,     1,     1,     3,     1,     1,     1,     1,
     1,     1,     1
};

static const short yydefact[] = {    26,
    46,     0,     0,     0,     0,    45,     1,    28,    29,    27,
    34,    39,    40,    36,     0,    43,    44,    25,     0,    21,
    22,    23,     0,    52,     0,    32,    35,    37,    30,    31,
    47,     0,     0,    41,     0,     0,     0,     0,   118,     0,
    54,    38,     0,    33,     0,    52,     0,    24,    17,   122,
    15,    12,     0,    10,    11,   124,     0,     8,     9,    13,
    14,    15,     0,   130,   132,     0,   131,     0,   126,   128,
   129,     0,   120,    16,    53,     0,    50,     0,   119,    54,
    42,     0,    92,    76,     0,    72,    74,    92,     0,     0,
     0,     0,     0,   133,   125,   127,   123,    56,    55,     0,
   121,    48,     0,     0,     0,    82,    70,     0,     0,     0,
    81,    18,    20,    19,    92,     0,    92,     0,     0,    51,
     0,    85,     0,     0,     0,    88,    94,    93,    87,    76,
    73,     0,     0,     0,     0,     0,     0,     0,   237,     0,
     0,     0,     0,     6,     5,     2,     3,     4,     7,   236,
     0,   282,    75,    79,   281,   234,   239,     0,   235,   240,
   241,   242,   294,   283,   284,   302,   287,   288,   291,   297,
   306,   309,   313,   319,   322,   324,   326,   328,   330,   332,
   334,   342,   335,     0,    78,    77,    84,    71,    83,    57,
    46,     0,    58,    21,     0,    68,     0,    60,    62,    66,
    67,     0,    63,     0,    64,    92,    69,    65,    49,    90,
     0,    86,     0,     0,   282,   240,   242,   289,   290,   293,
   292,     0,     0,     0,    16,     0,   295,   296,     0,   282,
     0,   134,     0,   138,     0,     0,     0,     0,     0,     0,
     0,     0,   286,   285,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,   340,   341,     0,    46,     0,
     0,   202,     0,     0,     0,     0,     0,     0,     0,     0,
   140,   172,     0,     8,   282,    23,     0,   146,   161,     0,
   142,   144,     0,   145,   150,   162,     0,   151,   163,     0,
   152,   153,   164,     0,   154,     0,   165,   155,   210,     0,
   166,   167,   168,   170,   169,     0,   171,   239,   241,     0,
   180,   181,   178,   179,   177,     0,    92,    59,    61,    98,
    80,    96,    99,     0,    91,    89,    95,   245,   272,     0,
   260,   266,     0,   261,     0,     0,     0,     0,     0,     0,
     0,   238,   136,   135,     0,   244,   273,     0,   257,     0,
   243,   255,   246,   256,   271,     0,     0,   303,   304,   305,
   307,   308,   310,   311,   312,   315,   317,   314,   316,     0,
   318,   320,   321,   323,   325,   327,   329,   331,     0,   336,
     0,     0,   217,     0,   221,     0,     0,     0,     0,   208,
   219,     0,     0,   148,     0,   173,     0,   141,   143,   147,
   226,   174,   176,   200,     0,     0,   212,   215,   209,   211,
     0,     0,   106,     0,     0,    97,   100,     0,   102,     0,
   269,     0,   267,   262,     0,   265,   263,   264,   248,     0,
   299,     0,     0,   300,   137,   139,   274,     0,   279,     0,
   280,   251,     0,     0,     0,   223,   218,   222,     0,     0,
     0,     0,   227,   230,   228,   220,   238,   149,     0,     0,
   213,     0,     0,   107,   103,   117,   237,   108,   282,     0,
     0,     0,   104,   277,     0,   268,   270,   250,   247,   298,
   301,   259,   258,   275,     0,   252,   253,   333,     0,   199,
     0,     0,   233,   231,   229,     0,   216,     0,   214,   213,
     0,   105,     0,   109,     0,     0,   110,   278,   249,   276,
   254,     0,   184,     0,   150,     0,   157,   158,     0,   159,
   160,     0,     0,   187,     0,     0,     0,     0,   225,   224,
     0,   111,     0,     0,     0,     0,   175,   201,     0,     0,
     0,   188,     0,   192,     0,   195,     0,     0,   205,     0,
     0,   112,     0,     0,   185,   213,     0,   198,   343,     0,
   190,   193,     0,   189,   194,   196,   232,   203,   204,     0,
     0,   113,     0,     0,   213,   197,   191,   115,     0,     0,
     0,     0,   114,     0,   207,     0,   186,   206,     0,     0,
     0
};

static const short yydefgoto[] = {   599,
   150,   283,   151,    59,    60,    75,    50,    61,   152,    20,
    21,    22,     7,     8,     9,    10,    11,    12,    13,    14,
   287,   288,   121,   100,    41,    77,    99,   120,   197,   198,
   199,    65,    85,    86,    87,   153,   201,    66,    83,   125,
   126,   106,   128,   331,   203,   204,   205,   206,   429,   480,
   481,    17,    38,    39,    68,    69,    70,    71,   154,   235,
   289,   575,   291,   292,   293,   294,   524,   295,   296,   297,
   298,   527,   299,   300,   301,   302,   528,   303,   534,   553,
   554,   555,   556,   304,   305,   530,   306,   307,   308,   531,
   309,   310,   419,   508,   509,   311,   312,   313,   314,   315,
   316,   317,   463,   464,   465,   155,   156,   157,   158,   358,
   159,   341,   342,   343,   160,   161,   162,   163,   164,   165,
   166,   167,   168,   169,   170,   171,   172,   173,   174,   175,
   176,   177,   178,   179,   180,   181,   182,   183,   184,   268,
   359,   570
};

static const short yypact[] = {    11,
-32768,   -52,   -52,   -52,   -52,-32768,-32768,    18,   154,    18,
-32768,-32768,-32768,-32768,   185,-32768,-32768,-32768,   187,-32768,
-32768,-32768,   -24,    -5,   332,   154,-32768,-32768,    18,   154,
-32768,   -52,   -52,-32768,     5,   -52,   745,   162,-32768,   -52,
    76,-32768,   -52,   154,   -24,    -5,    57,-32768,-32768,-32768,
    41,-32768,   -52,-32768,-32768,-32768,   -52,    71,-32768,-32768,
   170,   113,   518,-32768,-32768,   126,-32768,   758,-32768,-32768,
-32768,   -52,-32768,-32768,-32768,   -52,-32768,   162,-32768,    76,
-32768,   249,   -15,   249,   321,-32768,   205,   -15,   149,   255,
   265,   -52,   -52,-32768,-32768,-32768,-32768,-32768,   198,   294,
-32768,-32768,    58,   -52,   298,-32768,-32768,   -52,  1568,   309,
-32768,-32768,-32768,-32768,   -15,   359,   -15,   -52,   596,-32768,
   294,-32768,   -52,   199,   -13,-32768,-32768,   310,-32768,-32768,
-32768,  2315,  2315,  2315,  2315,   329,   352,    88,-32768,  2315,
  2315,  2315,  1438,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
   354,   393,-32768,-32768,   360,   369,-32768,   -52,-32768,   347,
-32768,   378,   437,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
   445,   495,   483,   380,   492,   461,   462,   467,   502,     1,
-32768,-32768,-32768,   412,-32768,-32768,-32768,-32768,-32768,-32768,
   423,  2513,-32768,   429,   518,-32768,   683,-32768,-32768,-32768,
-32768,   128,-32768,   432,-32768,   471,-32768,-32768,-32768,   435,
   -52,-32768,   337,   -52,    52,-32768,-32768,-32768,-32768,-32768,
-32768,   468,   -52,   440,   440,   449,-32768,-32768,   174,   414,
   454,-32768,   460,-32768,   235,   500,  1619,  2315,   261,   -21,
  2315,   476,-32768,-32768,  2315,  2315,  2315,  2315,  2315,  2315,
  2315,  2315,  2315,  2315,  2315,  2315,    88,  2315,  2315,  2315,
  2315,  2315,  2315,  2315,  2315,-32768,-32768,  2315,   480,   482,
  2315,-32768,    60,  1684,   490,   491,   432,   494,    89,  2315,
-32768,-32768,   -52,   137,   559,   488,   496,-32768,-32768,  2579,
-32768,-32768,   493,-32768,-32768,-32768,  2975,-32768,-32768,   498,
-32768,-32768,-32768,  2975,-32768,  2975,-32768,-32768,  1029,   499,
-32768,-32768,-32768,-32768,-32768,   497,-32768,    96,   196,   437,
   485,   505,-32768,-32768,-32768,   323,   471,-32768,-32768,-32768,
-32768,   506,   507,   504,   435,-32768,-32768,-32768,   508,  1735,
   440,-32768,   339,   440,   339,  1800,  2315,   509,   180,  1735,
   246,  1364,-32768,-32768,  1503,-32768,-32768,     3,-32768,   512,
-32768,-32768,-32768,-32768,   520,   513,  1851,-32768,-32768,-32768,
   445,   445,   495,   495,   495,   483,   483,   483,   483,    71,
-32768,   380,   380,   492,   461,   462,   467,   502,   501,-32768,
  2315,   522,-32768,   523,-32768,   526,  2315,  2315,   322,-32768,
-32768,   528,   534,   535,  1916,-32768,   -52,-32768,-32768,-32768,
-32768,-32768,-32768,-32768,   572,   199,-32768,-32768,-32768,   539,
  1967,  2315,-32768,   141,   504,-32768,-32768,  2645,   543,  2032,
-32768,   545,-32768,   547,   549,-32768,   547,-32768,   294,   244,
-32768,  2315,  1364,-32768,-32768,-32768,-32768,  1323,-32768,  2083,
-32768,   294,   251,  2315,   555,-32768,-32768,-32768,   564,   565,
   573,   432,   322,-32768,-32768,-32768,-32768,   535,   576,  1171,
  1171,   566,   582,-32768,   571,   352,   584,-32768,   849,  2711,
   587,  2777,-32768,-32768,   256,-32768,-32768,-32768,   294,-32768,
-32768,-32768,-32768,-32768,   260,-32768,   294,-32768,  3041,-32768,
   588,   337,-32768,-32768,-32768,  2315,-32768,   591,   539,  1171,
     6,-32768,   183,-32768,  2843,  2148,-32768,-32768,-32768,-32768,
-32768,   593,-32768,   631,   632,  3041,-32768,-32768,  3041,-32768,
-32768,   590,   -16,-32768,   600,   601,  2975,   602,-32768,-32768,
   604,-32768,   603,   272,  2315,  2975,-32768,-32768,  2199,   611,
  2315,-32768,    45,-32768,  2381,-32768,   432,   609,-32768,  2975,
  2264,-32768,   610,   616,-32768,  1171,   613,-32768,-32768,   615,
-32768,-32768,  2447,-32768,  2909,-32768,-32768,-32768,-32768,   619,
   280,-32768,  3041,   621,  1171,-32768,-32768,-32768,   623,   670,
  3041,   636,-32768,  3041,-32768,  3041,-32768,-32768,   725,   735,
-32768
};

static const short yypgoto[] = {-32768,
-32768,   139,   -26,   479,   253,   -85,    43,-32768,    59,   -72,
-32768,    -3,-32768,   729,   150,-32768,    20,-32768,-32768,   200,
    15,   586,-32768,-32768,   695,   665,-32768,  -113,-32768,   550,
-32768,   -83,   -80,   640,  -105,  -138,-32768,   -71,    93,   426,
  -211,   -82,-32768,-32768,-32768,-32768,-32768,   554,   328,-32768,
-32768,   -25,   709,   -18,-32768,   688,-32768,-32768,   103,-32768,
   -93,  -188,  -276,-32768,   450,  -167,  -372,  -378,-32768,  -151,
-32768,-32768,-32768,  -306,-32768,-32768,-32768,-32768,-32768,-32768,
   207,   208,  -499,  -134,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,   -58,-32768,  -453,   458,-32768,-32768,-32768,-32768,-32768,
-32768,-32768,-32768,   295,   300,-32768,-32768,   138,-32768,  -283,
-32768,   546,    14,  -208,  1037,   191,  1059,   327,   410,   434,
   -65,   487,   570,  -343,-32768,   305,   308,   159,   306,   510,
   511,   519,   517,   524,-32768,   319,   531,   669,-32768,-32768,
   123,-32768
};


#define	YYLAST		3150


static const short yytable[] = {    23,
    24,   336,   418,   290,   234,   111,   539,   209,   444,    47,
    58,    67,   116,   409,    15,   264,   345,   210,   127,    73,
   349,   351,    15,    15,    15,   208,    79,    27,    45,    46,
   550,    48,   187,    18,   189,   200,    58,   104,    36,    48,
    15,    58,    67,    15,    15,   551,   194,   202,    27,    82,
   364,    63,   226,    84,     1,   576,   538,    40,    15,   101,
    19,     1,   440,    25,    18,     2,   218,   219,   220,   221,
    37,     3,     2,   576,   227,   228,    58,     4,     3,   552,
   212,   105,    63,   453,     4,     5,   213,   265,    82,    84,
    18,   550,    58,   207,    51,    62,   447,    58,    51,   491,
   192,     1,   448,   208,   130,   335,   551,    52,   332,     6,
   333,   224,   584,   200,    97,   229,     6,   124,    98,   130,
   525,    62,   194,   334,   194,   202,    62,    76,   337,   412,
    51,   592,   434,   195,    51,   437,   414,    52,   415,    54,
   571,    43,    55,    18,   237,    18,   485,   525,   238,    88,
   525,   122,   239,   547,   242,    81,   548,    26,   393,    30,
   190,    62,    51,   507,   418,   284,   495,    89,    58,    54,
    58,   207,    55,    18,    18,    57,    51,    62,    44,   368,
   369,   370,    62,   399,   115,   117,    58,   401,   286,  -183,
   215,   215,   215,   215,  -183,  -183,    51,     1,   215,   215,
   230,    93,   404,   418,   525,   409,    57,   130,    28,    91,
   590,   195,   525,    43,     3,   525,   446,   525,   595,   339,
     4,   597,   192,   598,    94,    28,   330,   124,    31,    28,
   380,   185,   544,    89,   474,    48,   365,   236,   409,   482,
   213,   123,    31,    28,   425,    32,   112,   541,    52,   361,
   285,    33,     6,    62,   362,    62,    37,    57,   363,   418,
    58,    72,   211,   284,   231,   185,    90,   347,    18,   394,
   348,    62,    51,   442,   236,   402,   435,   581,   418,   130,
    54,   441,   284,    55,    18,    34,   286,    35,    49,  -182,
   535,   515,    74,   286,  -182,  -182,   109,   118,   409,    58,
   286,   110,   286,   215,   215,   215,   215,   215,   215,   215,
   215,   215,   215,   215,   215,    62,   215,   215,   215,   215,
   215,   215,   215,   416,    49,   488,   468,   361,    49,   318,
   354,   523,   362,    93,   355,    57,   363,   489,   496,   443,
   124,   103,   435,   448,   497,    62,    18,   526,   285,   518,
   448,   123,   113,   520,   433,   448,    74,   433,   412,   448,
   360,   414,   114,   366,   529,   563,     1,   285,   503,   559,
    49,   448,    52,   589,   526,   519,   490,   526,   565,   448,
     1,   461,   319,   521,    62,   462,    52,   389,   119,    58,
   225,   529,   579,   392,   529,   129,   396,   253,   254,   255,
   256,   284,   403,   130,    54,   215,   186,    55,    18,   214,
   215,   376,   377,   378,   379,   523,   423,   540,    54,   107,
   108,    55,    18,   559,   286,   407,   565,   318,   579,   222,
    42,   526,    43,   143,   318,   435,   257,  -338,  -338,   526,
   532,   318,   526,   318,   526,   436,   318,   438,   529,   245,
   246,   247,   223,   284,   236,   284,   529,   188,   108,   529,
   240,   529,   432,   577,   123,   241,    74,   532,  -339,  -339,
   532,   260,   360,   261,    62,    58,   286,   185,   286,   262,
   319,   243,   244,  -337,  -337,   237,   479,   319,   284,   238,
   250,   251,   252,   239,   319,   286,   319,   248,   249,   319,
   215,   215,   266,   267,  -337,  -337,   237,   258,   259,    48,
   350,   286,   215,   455,   239,   263,   124,  -101,   320,   459,
   460,   326,   286,   104,   532,   286,   192,   360,   284,  -283,
  -283,   110,   532,   286,   338,   532,   340,   532,   285,    31,
   285,   346,   286,   472,   473,    52,   284,   352,   284,  -284,
  -284,   286,   371,   372,   407,   353,   286,   373,   374,   375,
    62,    31,    33,   382,   383,   318,   356,    52,   367,   286,
   493,   286,  -226,   285,   391,   406,    92,    54,    32,   286,
    55,    18,   397,   398,    33,    16,   400,   286,   454,   422,
   286,   410,   286,    16,    16,    16,   413,   421,   428,    54,
   430,   321,    55,    18,   426,   427,   431,   318,   318,   449,
   451,    16,   450,   285,    16,    16,   320,   318,   319,   318,
   456,   457,    64,   320,   458,   322,   466,   467,   536,    16,
   320,   285,   320,   285,   108,   320,   318,   469,   470,   191,
   123,   483,   486,   435,   -15,    52,   487,   318,   499,  -337,
  -337,   237,   318,    64,    53,   405,     3,   500,   501,   239,
   319,   319,     4,   318,   510,   502,   318,   564,   506,   512,
   319,   567,   319,   569,   318,   511,  -116,    54,   323,   516,
    55,    18,   533,   318,   537,   545,   546,  -156,   549,   319,
   192,   193,   318,   557,   558,   560,   561,   318,   568,   321,
   319,   562,   586,   318,   196,   319,   321,   578,   582,   583,
   318,   585,   318,   321,   591,   321,   319,   588,   321,   319,
   318,   593,   318,   322,   600,   594,   191,   319,   318,   596,
   322,   318,    52,   318,   601,   381,   319,   322,    29,   322,
    80,    53,   322,     3,   102,   319,   329,   131,   327,     4,
   319,   424,   475,    78,   320,    96,   319,   504,   417,   572,
   573,   324,   505,   319,    54,   319,   420,    55,    18,   384,
   344,   385,   498,   319,     0,   319,   323,   192,   328,   387,
   386,   319,   196,   323,   319,     0,   319,   388,     1,     0,
   323,     0,   323,     0,    52,   323,   320,   320,   390,     0,
     0,     1,     0,    53,     0,     3,   320,    52,   320,     0,
     0,     4,     0,     0,     0,     0,    53,     0,     3,     0,
     0,     0,     0,     0,     4,   320,    54,     0,     0,    55,
    18,     0,     0,     0,     0,     0,   320,   321,     0,    54,
    56,   320,    55,    18,     0,     0,     0,     0,     0,     0,
     0,     0,   320,    95,     0,   320,     0,     0,     0,   324,
   325,   322,     0,   320,     0,     0,   324,     0,     0,     0,
     0,     0,   320,   324,     0,   324,     0,     0,   324,   321,
   321,   320,     0,     0,     0,     0,   320,     0,     0,   321,
     0,   321,   320,     0,     0,     0,     0,     0,     0,   320,
     0,   320,     0,   322,   322,     0,     0,     0,   321,   320,
     0,   320,     0,   322,   323,   322,     0,   320,     0,   321,
   320,     0,   320,     0,   321,     0,     0,     0,     0,     0,
     0,     0,   322,     0,   -15,   321,     0,     0,   321,  -337,
  -337,   237,     0,   322,     0,   405,   321,     0,   322,   513,
     0,     0,     0,     0,     0,   321,   323,   323,   325,   322,
     0,     0,   322,     0,   321,   325,   323,     0,   323,   321,
   322,     0,   325,     0,   325,   321,     0,   325,     0,   322,
     0,     0,   321,     0,   321,   323,     0,     0,   322,     0,
     0,     0,   321,   322,   321,     0,   323,   324,     0,   322,
   321,   323,     0,   321,     0,   321,   322,     0,   322,     0,
     0,     0,   323,     0,     0,   323,   322,     0,   322,     0,
     0,     0,     0,   323,   322,     0,     0,   322,     0,   322,
     0,     0,   323,     0,     0,     0,     0,     0,     0,   324,
   324,   323,     0,     0,     0,     0,   323,     0,     0,   324,
     0,   324,   323,     0,     0,     0,     0,     0,     0,   323,
     0,   323,     0,     0,     0,     0,     0,     0,   324,   323,
     0,   323,     1,   134,   135,     0,     0,   323,    52,   324,
   323,     0,   323,     0,   324,     0,     0,   136,     0,     0,
     0,     0,     0,   137,     0,   324,   325,     0,   324,     0,
   138,     0,     0,     0,   139,     0,   324,     0,     0,     0,
    54,     0,     0,    55,    18,   324,     0,     0,     0,     0,
     0,   280,     0,     0,   324,     0,     0,     0,     0,   324,
   144,   145,   146,   147,     0,   324,   148,   149,   325,   325,
     0,     0,   324,     0,   324,     0,     0,     0,   325,     0,
   325,     0,   324,     0,   324,     0,     0,     0,     0,     0,
   324,     0,     0,   324,     0,   324,     0,   325,   216,   216,
   216,   216,     0,     0,     0,     0,   216,   216,   325,     0,
     0,     0,     0,   325,     0,     0,     0,     0,     0,     0,
   217,   217,   217,   217,   325,     0,     0,   325,   217,   217,
     0,     0,     0,     0,     0,   325,     0,     0,     0,     0,
     0,     0,     0,     0,   325,   134,   135,     0,     0,     0,
    52,     0,     0,   325,     0,     0,     0,     0,   325,   136,
     0,     0,     0,     0,   325,   137,     0,     0,     0,     0,
     0,   325,   138,   325,     0,     0,   139,     0,     0,     0,
     0,   325,    54,   325,     0,    55,    18,     0,     0,   325,
     0,     0,   325,   280,   325,     0,     0,     0,     0,     0,
     0,     0,   144,   145,   146,   147,     0,     0,   148,   149,
     0,   216,   216,   216,   216,   216,   216,   216,   216,   216,
   216,   216,   216,     0,   216,   216,   216,   216,   216,   216,
   216,     0,     0,   217,   217,   217,   217,   217,   217,   217,
   217,   217,   217,   217,   217,     0,   217,   217,   217,   217,
   217,   217,   217,   492,     0,   132,   133,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,     0,   134,   135,     0,
     0,     0,    52,     0,     0,     0,     0,     0,     0,     0,
     0,   136,     0,   216,     0,     0,     0,   137,   216,     0,
     0,     0,     0,     0,   138,     0,     0,     0,   139,     0,
     0,     0,     0,     0,    54,   217,     0,    55,    18,     0,
   217,   140,   141,    52,     0,   142,     0,     0,     0,     0,
     0,     0,   136,     0,   144,   145,   146,   147,   137,     0,
   148,   149,     0,     0,     0,   138,     0,     0,     0,   139,
   132,   133,     0,     0,     0,    54,     0,     0,    55,    18,
     0,     0,   140,   141,     0,     0,   142,     0,     0,     0,
     0,     0,     0,     0,     0,   144,   145,   146,   147,     0,
     0,   148,   149,     0,     0,     0,     0,     0,   216,   216,
     0,     0,   134,   135,     0,     0,     0,    52,     0,     0,
   216,     0,     0,     0,     0,     0,   136,     0,     0,     0,
   217,   217,   137,     0,     0,   132,   133,     0,     0,   138,
     0,     0,   217,   139,     0,     0,     0,     0,     0,    54,
     0,     0,    55,    18,     0,     0,   140,   141,     0,     0,
   142,     0,   143,   232,     0,     0,     0,   233,     0,   144,
   145,   146,   147,     0,     0,   148,   149,   134,   135,     0,
     0,     0,    52,     0,     0,     0,     0,     0,     0,     0,
     0,   136,     0,     0,     0,     0,     0,   137,     0,     0,
   132,   133,     0,     0,   138,     0,     0,     0,   139,     0,
     0,     0,     0,     0,    54,     0,     0,    55,    18,     0,
     0,   140,   141,     0,     0,   142,     0,   143,   445,     0,
     0,     0,     0,     0,   144,   145,   146,   147,     0,     0,
   148,   149,   134,   135,     0,     0,     0,    52,     0,     0,
     0,   132,   133,     0,     0,     0,   136,     0,     0,     0,
     0,     0,   137,     0,     0,     0,     0,     0,     0,   138,
     0,     0,     0,   139,     0,     0,     0,     0,     0,    54,
     0,     0,    55,    18,     0,     0,   140,   141,     0,     0,
   142,     0,   143,   134,   135,     0,     0,     0,    52,   144,
   145,   146,   147,     0,     0,   148,   149,   136,     0,     0,
     0,     0,     0,   137,     0,     0,   132,   133,     0,     0,
   138,     0,     0,     0,   139,     0,     0,     0,     0,     0,
    54,     0,     0,    55,    18,     0,     0,   140,   141,     0,
     0,   142,   357,     0,     0,     0,     0,     0,     0,     0,
   144,   145,   146,   147,     0,     0,   148,   149,   134,   135,
     0,     0,     0,    52,     0,     0,     0,   132,   133,     0,
     0,     0,   136,     0,     0,     0,     0,     0,   137,     0,
     0,     0,     0,     0,     0,   138,     0,     0,     0,   139,
     0,     0,     0,     0,     0,    54,     0,     0,    55,    18,
     0,     0,   140,   141,     0,     0,   142,     0,     0,   134,
   135,     0,   395,     0,    52,   144,   145,   146,   147,     0,
     0,   148,   149,   136,     0,     0,     0,     0,     0,   137,
     0,     0,   132,   133,     0,     0,   138,     0,     0,     0,
   139,     0,     0,     0,     0,     0,    54,     0,     0,    55,
    18,     0,     0,   140,   141,     0,     0,   142,     0,     0,
     0,     0,   431,     0,     0,     0,   144,   145,   146,   147,
     0,     0,   148,   149,   134,   135,     0,     0,     0,    52,
     0,     0,     0,   132,   133,     0,     0,     0,   136,     0,
     0,     0,     0,     0,   137,     0,     0,     0,     0,     0,
     0,   138,     0,     0,     0,   139,     0,     0,     0,     0,
     0,    54,     0,     0,    55,    18,     0,     0,   140,   141,
     0,     0,   142,   439,     0,   134,   135,     0,     0,     0,
    52,   144,   145,   146,   147,     0,     0,   148,   149,   136,
     0,     0,     0,     0,     0,   137,     0,     0,   132,   133,
     0,     0,   138,     0,     0,     0,   139,     0,     0,     0,
     0,     0,    54,     0,     0,    55,    18,     0,     0,   140,
   141,     0,     0,   142,   452,     0,     0,     0,     0,     0,
     0,     0,   144,   145,   146,   147,     0,     0,   148,   149,
   134,   135,     0,     0,     0,    52,     0,     0,     0,   132,
   133,     0,     0,     0,   136,     0,     0,     0,     0,     0,
   137,     0,     0,     0,     0,     0,     0,   138,     0,     0,
     0,   139,     0,     0,     0,     0,     0,    54,     0,     0,
    55,    18,     0,     0,   140,   141,     0,     0,   142,     0,
     0,   134,   135,   114,     0,     0,    52,   144,   145,   146,
   147,     0,     0,   148,   149,   136,     0,     0,     0,     0,
     0,   137,     0,     0,   132,   133,     0,     0,   138,     0,
     0,     0,   139,     0,     0,     0,     0,     0,    54,     0,
     0,    55,    18,     0,     0,   140,   141,     0,     0,   142,
     0,     0,     0,     0,     0,   471,     0,     0,   144,   145,
   146,   147,     0,     0,   148,   149,   134,   135,     0,     0,
     0,    52,     0,     0,     0,   132,   133,     0,     0,     0,
   136,     0,     0,     0,     0,     0,   137,     0,     0,     0,
     0,     0,     0,   138,     0,     0,     0,   139,     0,     0,
     0,     0,     0,    54,     0,     0,    55,    18,     0,     0,
   140,   141,     0,     0,   142,   484,     0,   134,   135,     0,
     0,     0,    52,   144,   145,   146,   147,     0,     0,   148,
   149,   136,     0,     0,     0,     0,     0,   137,     0,     0,
   132,   133,     0,     0,   138,     0,     0,     0,   139,     0,
     0,     0,     0,     0,    54,     0,     0,    55,    18,     0,
     0,   140,   141,     0,     0,   142,   494,     0,     0,     0,
     0,     0,     0,     0,   144,   145,   146,   147,     0,     0,
   148,   149,   134,   135,     0,     0,     0,    52,     0,     0,
     0,   132,   133,     0,     0,     0,   136,     0,     0,     0,
     0,     0,   137,     0,     0,     0,     0,     0,     0,   138,
     0,     0,     0,   139,     0,     0,     0,     0,     0,    54,
     0,     0,    55,    18,     0,     0,   140,   141,     0,     0,
   142,   543,     0,   134,   135,     0,     0,     0,    52,   144,
   145,   146,   147,     0,     0,   148,   149,   136,     0,     0,
     0,     0,     0,   137,     0,     0,   132,   133,     0,     0,
   138,     0,     0,     0,   139,     0,     0,     0,     0,     0,
    54,     0,     0,    55,    18,     0,     0,   140,   141,     0,
     0,   142,     0,     0,     0,     0,     0,   566,     0,     0,
   144,   145,   146,   147,     0,     0,   148,   149,   134,   135,
     0,     0,     0,    52,     0,     0,     0,   132,   133,     0,
     0,     0,   136,     0,     0,     0,     0,     0,   137,     0,
     0,     0,     0,     0,     0,   138,     0,     0,     0,   139,
     0,     0,     0,     0,     0,    54,     0,     0,    55,    18,
     0,     0,   140,   141,     0,     0,   142,   580,     0,   134,
   135,     0,     0,     0,    52,   144,   145,   146,   147,     0,
     0,   148,   149,   136,     0,     0,     0,     0,     0,   137,
     0,     0,     0,     0,     0,     0,   138,     0,     0,     0,
   139,     0,     0,     0,     0,     0,    54,     0,     0,    55,
    18,     0,     0,   140,   141,     0,     0,   142,     0,     0,
     0,     0,     0,     0,     0,     0,   144,   145,   146,   147,
     0,     0,   148,   149,   269,   134,   135,   550,   270,   271,
    52,   272,     0,     0,   273,     0,     0,     0,   274,   136,
     0,     0,   551,     0,     0,   137,   275,     4,   276,     0,
   277,   278,   138,   279,     0,     0,   139,     0,     0,     0,
     0,     0,    54,     0,     0,    55,    18,     0,     0,     0,
     0,     0,     0,   280,     0,   192,   574,     0,     0,   282,
     0,     0,   144,   145,   146,   147,     0,     0,   148,   149,
   269,   134,   135,   550,   270,   271,    52,   272,     0,     0,
   273,     0,     0,     0,   274,   136,     0,     0,   551,     0,
     0,   137,   275,     4,   276,     0,   277,   278,   138,   279,
     0,     0,   139,     0,     0,     0,     0,     0,    54,     0,
     0,    55,    18,     0,     0,     0,     0,     0,     0,   280,
     0,   192,   587,     0,     0,   282,     0,     0,   144,   145,
   146,   147,     0,     0,   148,   149,   269,   134,   135,     0,
   270,   271,    52,   272,     0,     0,   273,     0,     0,     0,
   274,   136,     0,     0,     0,     0,     0,   137,   275,     4,
   276,     0,   277,   278,   138,   279,     0,     0,   139,     0,
     0,     0,     0,     0,    54,     0,     0,    55,    18,     0,
     0,     0,     0,     0,     0,   280,     0,   192,   281,     0,
     0,   282,     0,     0,   144,   145,   146,   147,     0,     0,
   148,   149,   269,   134,   135,     0,   270,   271,    52,   272,
     0,     0,   273,     0,     0,     0,   274,   136,     0,     0,
     0,     0,     0,   137,   275,     4,   276,     0,   277,   278,
   138,   279,     0,     0,   139,     0,     0,     0,     0,     0,
    54,     0,     0,    55,    18,     0,     0,     0,     0,     0,
     0,   280,     0,   192,   408,     0,     0,   282,     0,     0,
   144,   145,   146,   147,     0,     0,   148,   149,   269,   134,
   135,     0,   270,   271,    52,   272,     0,     0,   273,     0,
     0,     0,   274,   136,     0,     0,     0,     0,     0,   476,
   275,     4,   276,     0,   277,   278,   138,   279,     0,     0,
   477,     0,     0,     0,     0,     0,    54,     0,     0,    55,
    18,     0,     0,     0,     0,     0,     0,   280,     0,   192,
   478,     0,     0,   282,     0,     0,   144,   145,   146,   147,
     0,     0,   148,   149,   269,   134,   135,     0,   270,   271,
    52,   272,     0,     0,   273,     0,     0,     0,   274,   136,
     0,     0,     0,     0,     0,   137,   275,     4,   276,     0,
   277,   278,   138,   279,     0,     0,   139,     0,     0,     0,
     0,     0,    54,     0,     0,    55,    18,     0,     0,     0,
     0,     0,     0,   280,     0,   192,   514,     0,     0,   282,
     0,     0,   144,   145,   146,   147,     0,     0,   148,   149,
   269,   134,   135,     0,   270,   271,    52,   272,     0,     0,
   273,     0,     0,     0,   274,   136,     0,     0,     0,     0,
     0,   137,   275,     4,   276,     0,   277,   278,   138,   279,
     0,     0,   139,     0,     0,     0,     0,     0,    54,     0,
     0,    55,    18,     0,     0,     0,     0,     0,     0,   280,
     0,   192,   517,     0,     0,   282,     0,     0,   144,   145,
   146,   147,     0,     0,   148,   149,   269,   134,   135,     0,
   270,   271,    52,   272,     0,     0,   273,     0,     0,     0,
   274,   136,     0,     0,     0,     0,     0,   137,   275,     4,
   276,     0,   277,   278,   138,   279,     0,     0,   139,     0,
     0,     0,     0,     0,    54,     0,     0,    55,    18,     0,
     0,     0,     0,     0,     0,   280,     0,   192,   542,     0,
     0,   282,     0,     0,   144,   145,   146,   147,     0,     0,
   148,   149,   269,   134,   135,     0,   270,   271,    52,   272,
     0,     0,   273,     0,     0,     0,   274,   136,     0,     0,
     0,     0,     0,   137,   275,     4,   276,     0,   277,   278,
   138,   279,     0,     0,   139,     0,     0,     0,     0,     0,
    54,     0,     0,    55,    18,     0,     0,     0,     0,     0,
     0,   280,     0,   192,     0,     0,     0,   282,     0,     0,
   144,   145,   146,   147,     0,     0,   148,   149,   411,   134,
   135,     0,   270,   271,    52,   272,     0,     0,   273,     0,
     0,     0,   274,   136,     0,     0,     0,     0,     0,   137,
   275,     0,   276,     0,   277,   278,   138,   279,     0,     0,
   139,     0,     0,     0,     0,     0,    54,     0,     0,    55,
    18,     0,     0,     0,     0,     0,     0,   280,     0,   192,
     0,     0,     0,   282,     0,     0,   144,   145,   146,   147,
     0,     0,   148,   149,   411,   134,   135,     0,   522,   271,
    52,   272,     0,     0,   273,     0,     0,     0,   274,   136,
     0,     0,     0,     0,     0,   137,   275,     0,   276,     0,
   277,   278,   138,   279,     0,     0,   139,     0,     0,     0,
     0,     0,    54,     0,     0,    55,    18,     0,     0,     0,
     0,     0,     0,   280,     0,   192,     0,     0,     0,   282,
     0,     0,   144,   145,   146,   147,     0,     0,   148,   149
};

static const short yycheck[] = {     3,
     4,   213,   309,   192,   143,    88,     1,   121,   352,     5,
    37,    37,    93,   290,     0,    15,   225,   123,   104,    38,
   229,   230,     8,     9,    10,   119,    45,     8,    32,    33,
    47,    35,   115,    86,   117,   119,    63,    53,    63,    43,
    26,    68,    68,    29,    30,    62,   119,   119,    29,    53,
    72,    37,   138,    57,    44,   555,   510,    63,    44,    78,
     2,    44,   346,     5,    86,    55,   132,   133,   134,   135,
    95,    61,    55,   573,   140,   141,   103,    67,    61,    96,
    94,    97,    68,   367,    67,    75,   100,    87,    92,    93,
    86,    47,   119,   119,    36,    37,    94,   124,    40,   443,
    95,    44,   100,   197,   108,   211,    62,    50,   202,    99,
   204,   138,   566,   197,    72,   142,    99,   103,    76,   123,
   499,    63,   195,   206,   197,   197,    68,    52,   214,   297,
    72,   585,   341,   119,    76,   344,   304,    50,   306,    82,
    96,   101,    85,    86,    93,    86,   430,   526,    97,    57,
   529,    94,   101,   526,   158,    99,   529,     8,    99,    10,
   118,   103,   104,   470,   471,   192,   450,    97,   195,    82,
   197,   197,    85,    86,    86,    37,   118,   119,    29,   245,
   246,   247,   124,   277,    92,    93,   213,    99,   192,    94,
   132,   133,   134,   135,    99,   100,   138,    44,   140,   141,
   142,    63,   283,   510,   583,   482,    68,   211,     9,    97,
   583,   197,   591,   101,    61,   594,   355,   596,   591,   223,
    67,   594,    95,   596,    99,    26,    99,   213,    44,    30,
   257,   109,   516,    97,    94,   239,   240,   101,   515,   428,
   100,   103,    44,    44,   327,    61,    98,    65,    50,    67,
   192,    67,    99,   195,    72,   197,    95,   119,    76,   566,
   287,   100,   124,   290,   142,   143,    97,    94,    86,   273,
    97,   213,   214,    94,   101,   279,    97,   561,   585,   283,
    82,   347,   309,    85,    86,    99,   290,   101,    36,    94,
   502,   480,    40,   297,    99,   100,    92,   100,   575,   326,
   304,    97,   306,   245,   246,   247,   248,   249,   250,   251,
   252,   253,   254,   255,   256,   257,   258,   259,   260,   261,
   262,   263,   264,   309,    72,   439,   407,    67,    76,   192,
    96,   499,    72,   195,   100,   197,    76,    94,   452,    94,
   326,    93,    97,   100,    94,   287,    86,   499,   290,    94,
   100,   213,    98,    94,   341,   100,   104,   344,   526,   100,
   238,   529,    98,   241,   499,    94,    44,   309,   462,   537,
   118,   100,    50,    94,   526,   489,   442,   529,   546,   100,
    44,    60,   192,   497,   326,    64,    50,   265,    95,   416,
   138,   526,   560,   271,   529,    98,   274,    18,    19,    20,
    21,   428,   280,   407,    82,   347,    98,    85,    86,   100,
   352,   253,   254,   255,   256,   583,    94,   511,    82,    99,
   100,    85,    86,   591,   428,   287,   594,   290,   596,   101,
    99,   583,   101,    95,   297,    97,    57,    91,    92,   591,
   499,   304,   594,   306,   596,   343,   309,   345,   583,     5,
     6,     7,   101,   480,   101,   482,   591,    99,   100,   594,
   101,   596,   340,   557,   326,    97,   214,   526,    91,    92,
   529,    11,   350,    12,   416,   502,   480,   355,   482,    13,
   290,    45,    46,    91,    92,    93,   428,   297,   515,    97,
     8,     9,    10,   101,   304,   499,   306,     3,     4,   309,
   442,   443,    91,    92,    91,    92,    93,    16,    17,   513,
    97,   515,   454,   391,   101,    14,   502,    95,   192,   397,
   398,    93,   526,    53,   583,   529,    95,   405,   555,    45,
    46,    97,   591,   537,    67,   594,    97,   596,   480,    44,
   482,    93,   546,   421,   422,    50,   573,    94,   575,    45,
    46,   555,   248,   249,   416,    96,   560,   250,   251,   252,
   502,    44,    67,   258,   259,   428,    67,    50,    93,   573,
   448,   575,    93,   515,    93,    88,    59,    82,    61,   583,
    85,    86,    93,    93,    67,     0,    93,   591,    88,    93,
   594,    99,   596,     8,     9,    10,    99,    99,    95,    82,
    93,   192,    85,    86,    99,    99,    98,   470,   471,    98,
    98,    26,    93,   555,    29,    30,   290,   480,   428,   482,
    99,    99,    37,   297,    99,   192,    99,    94,   506,    44,