summaryrefslogtreecommitdiff
path: root/Zend/zend_language_parser.c
diff options
context:
space:
mode:
authorOndřej Surý <ondrej@sury.org>2013-02-19 13:28:10 +0100
committerOndřej Surý <ondrej@sury.org>2013-02-19 13:28:10 +0100
commit54098cf044025ec5965b8ea9c84750f9631d85b6 (patch)
treeed0ef32b379c0cdfe20fcafc5b27c4488732fe90 /Zend/zend_language_parser.c
parent8572aeb0703107705fc7dde35961cd6a5f89c0c8 (diff)
downloadphp-upstream/5.5.0_alpha4.tar.gz
Imported Upstream version 5.5.0~alpha4upstream/5.5.0_alpha4
Diffstat (limited to 'Zend/zend_language_parser.c')
-rw-r--r--Zend/zend_language_parser.c3376
1 files changed, 1676 insertions, 1700 deletions
diff --git a/Zend/zend_language_parser.c b/Zend/zend_language_parser.c
index 23bf762f2..aaf670b0d 100644
--- a/Zend/zend_language_parser.c
+++ b/Zend/zend_language_parser.c
@@ -1,21 +1,24 @@
-/* A Bison parser, made by GNU Bison 2.5. */
+/* A Bison parser, made by GNU Bison 2.3. */
-/* Bison implementation for Yacc-like parsers in C
-
- Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
-
- This program is free software: you can redistribute it and/or modify
+/* Skeleton implementation for Bison's Yacc-like parsers in C
+
+ Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+ 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 3 of the License, or
- (at your option) any later version.
-
+ 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, see <http://www.gnu.org/licenses/>. */
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
@@ -26,7 +29,7 @@
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
-
+
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
@@ -44,7 +47,7 @@
#define YYBISON 1
/* Bison version. */
-#define YYBISON_VERSION "2.5"
+#define YYBISON_VERSION "2.3"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
@@ -52,96 +55,17 @@
/* Pure parsers. */
#define YYPURE 1
-/* Push parsers. */
-#define YYPUSH 0
-
-/* Pull parsers. */
-#define YYPULL 1
-
/* Using locations. */
#define YYLSP_NEEDED 0
/* Substitute the variable and function names. */
-#define yyparse zendparse
-#define yylex zendlex
-#define yyerror zenderror
-#define yylval zendlval
-#define yychar zendchar
-#define yydebug zenddebug
-#define yynerrs zendnerrs
-
-
-/* Copy the first part of user declarations. */
-
-
-/*
- +----------------------------------------------------------------------+
- | Zend Engine |
- +----------------------------------------------------------------------+
- | Copyright (c) 1998-2013 Zend Technologies Ltd. (http://www.zend.com) |
- +----------------------------------------------------------------------+
- | This source file is subject to version 2.00 of the Zend license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available through the world-wide-web at the following url: |
- | http://www.zend.com/license/2_00.txt. |
- | If you did not receive a copy of the Zend license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | license@zend.com so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Authors: Andi Gutmans <andi@zend.com> |
- | Zeev Suraski <zeev@zend.com> |
- +----------------------------------------------------------------------+
-*/
-
-/* $Id$ */
-
-/*
- * LALR shift/reduce conflicts and how they are resolved:
- *
- * - 2 shift/reduce conflicts due to the dangling elseif/else ambiguity. Solved by shift.
- *
- */
-
-
-#include "zend_compile.h"
-#include "zend.h"
-#include "zend_list.h"
-#include "zend_globals.h"
-#include "zend_API.h"
-#include "zend_constants.h"
-
-#define YYSIZE_T size_t
-#define yytnamerr zend_yytnamerr
-static YYSIZE_T zend_yytnamerr(char*, const char*);
-
-#define YYERROR_VERBOSE
-#define YYSTYPE znode
-#ifdef ZTS
-# define YYPARSE_PARAM tsrm_ls
-# define YYLEX_PARAM tsrm_ls
-#endif
-
-
-
-
-
-/* Enabling traces. */
-#ifndef YYDEBUG
-# define YYDEBUG 0
-#endif
-
-/* Enabling verbose error messages. */
-#ifdef YYERROR_VERBOSE
-# undef YYERROR_VERBOSE
-# define YYERROR_VERBOSE 1
-#else
-# define YYERROR_VERBOSE 0
-#endif
-
-/* Enabling the token table. */
-#ifndef YYTOKEN_TABLE
-# define YYTOKEN_TABLE 0
-#endif
+#define yyparse zendparse
+#define yylex zendlex
+#define yyerror zenderror
+#define yylval zendlval
+#define yychar zendchar
+#define yydebug zenddebug
+#define yynerrs zendnerrs
/* Tokens. */
@@ -417,17 +341,91 @@ static YYSIZE_T zend_yytnamerr(char*, const char*);
+/* Copy the first part of user declarations. */
+
+
+/*
+ +----------------------------------------------------------------------+
+ | Zend Engine |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 1998-2013 Zend Technologies Ltd. (http://www.zend.com) |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 2.00 of the Zend license, |
+ | that is bundled with this package in the file LICENSE, and is |
+ | available through the world-wide-web at the following url: |
+ | http://www.zend.com/license/2_00.txt. |
+ | If you did not receive a copy of the Zend license and are unable to |
+ | obtain it through the world-wide-web, please send a note to |
+ | license@zend.com so we can mail you a copy immediately. |
+ +----------------------------------------------------------------------+
+ | Authors: Andi Gutmans <andi@zend.com> |
+ | Zeev Suraski <zeev@zend.com> |
+ +----------------------------------------------------------------------+
+*/
+
+/* $Id$ */
+
+/*
+ * LALR shift/reduce conflicts and how they are resolved:
+ *
+ * - 2 shift/reduce conflicts due to the dangling elseif/else ambiguity. Solved by shift.
+ *
+ */
+
+
+#include "zend_compile.h"
+#include "zend.h"
+#include "zend_list.h"
+#include "zend_globals.h"
+#include "zend_API.h"
+#include "zend_constants.h"
+
+#define YYSIZE_T size_t
+#define yytnamerr zend_yytnamerr
+static YYSIZE_T zend_yytnamerr(char*, const char*);
+
+#define YYERROR_VERBOSE
+#define YYSTYPE znode
+#ifdef ZTS
+# define YYPARSE_PARAM tsrm_ls
+# define YYLEX_PARAM tsrm_ls
+#endif
+
+
+
+
+/* Enabling traces. */
+#ifndef YYDEBUG
+# define YYDEBUG 0
+#endif
+
+/* Enabling verbose error messages. */
+#ifdef YYERROR_VERBOSE
+# undef YYERROR_VERBOSE
+# define YYERROR_VERBOSE 1
+#else
+# define YYERROR_VERBOSE 0
+#endif
+
+/* Enabling the token table. */
+#ifndef YYTOKEN_TABLE
+# define YYTOKEN_TABLE 0
+#endif
+
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef int YYSTYPE;
-# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
+# define YYSTYPE_IS_TRIVIAL 1
#endif
+
/* Copy the second part of user declarations. */
+/* Line 216 of yacc.c. */
+
#ifdef short
# undef short
@@ -477,7 +475,7 @@ typedef short int yytype_int16;
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
#ifndef YY_
-# if defined YYENABLE_NLS && YYENABLE_NLS
+# if YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(msgid) dgettext ("bison-runtime", msgid)
@@ -502,14 +500,14 @@ typedef short int yytype_int16;
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static int
-YYID (int yyi)
+YYID (int i)
#else
static int
-YYID (yyi)
- int yyi;
+YYID (i)
+ int i;
#endif
{
- return yyi;
+ return i;
}
#endif
@@ -530,11 +528,11 @@ YYID (yyi)
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
-# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
-# ifndef EXIT_SUCCESS
-# define EXIT_SUCCESS 0
+# ifndef _STDLIB_H
+# define _STDLIB_H 1
# endif
# endif
# endif
@@ -557,24 +555,24 @@ YYID (yyi)
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
-# if (defined __cplusplus && ! defined EXIT_SUCCESS \
+# if (defined __cplusplus && ! defined _STDLIB_H \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
-# ifndef EXIT_SUCCESS
-# define EXIT_SUCCESS 0
+# ifndef _STDLIB_H
+# define _STDLIB_H 1
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
-# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
-# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
@@ -590,9 +588,9 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */
/* A type that is properly aligned for any stack member. */
union yyalloc
{
- yytype_int16 yyss_alloc;
- YYSTYPE yyvs_alloc;
-};
+ yytype_int16 yyss;
+ YYSTYPE yyvs;
+ };
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
@@ -603,27 +601,6 @@ union yyalloc
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
-# define YYCOPY_NEEDED 1
-
-/* Relocate STACK from its old location to the new one. The
- local variables YYSIZE and YYSTACKSIZE give the old and new number of
- elements in the stack, and YYPTR gives the new location of the
- stack. Advance YYPTR to a properly aligned location for the next
- stack. */
-# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
- do \
- { \
- YYSIZE_T yynewbytes; \
- YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
- Stack = &yyptr->Stack_alloc; \
- yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
- yyptr += yynewbytes / sizeof (*yyptr); \
- } \
- while (YYID (0))
-
-#endif
-
-#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from FROM to TO. The source and destination do
not overlap. */
# ifndef YYCOPY
@@ -641,21 +618,38 @@ union yyalloc
while (YYID (0))
# endif
# endif
-#endif /* !YYCOPY_NEEDED */
+
+/* Relocate STACK from its old location to the new one. The
+ local variables YYSIZE and YYSTACKSIZE give the old and new number of
+ elements in the stack, and YYPTR gives the new location of the
+ stack. Advance YYPTR to a properly aligned location for the next
+ stack. */
+# define YYSTACK_RELOCATE(Stack) \
+ do \
+ { \
+ YYSIZE_T yynewbytes; \
+ YYCOPY (&yyptr->Stack, Stack, yysize); \
+ Stack = &yyptr->Stack; \
+ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
+ yyptr += yynewbytes / sizeof (*yyptr); \
+ } \
+ while (YYID (0))
+
+#endif
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 3
/* YYLAST -- Last index in YYTABLE. */
-#define YYLAST 5133
+#define YYLAST 5126
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 160
/* YYNNTS -- Number of nonterminals. */
-#define YYNNTS 216
+#define YYNNTS 218
/* YYNRULES -- Number of rules. */
-#define YYNRULES 541
+#define YYNRULES 545
/* YYNRULES -- Number of states. */
-#define YYNSTATES 998
+#define YYNSTATES 1002
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
@@ -754,20 +748,20 @@ static const yytype_uint16 yyprhs[] =
1253, 1255, 1257, 1261, 1264, 1266, 1270, 1273, 1275, 1277,
1278, 1279, 1286, 1288, 1291, 1292, 1295, 1296, 1299, 1301,
1302, 1304, 1306, 1307, 1309, 1311, 1313, 1315, 1317, 1319,
- 1321, 1323, 1325, 1327, 1329, 1333, 1336, 1338, 1340, 1344,
- 1347, 1350, 1353, 1358, 1362, 1364, 1366, 1370, 1372, 1374,
- 1376, 1380, 1383, 1385, 1389, 1393, 1395, 1396, 1399, 1400,
- 1402, 1408, 1412, 1416, 1418, 1420, 1422, 1426, 1430, 1432,
- 1434, 1436, 1437, 1438, 1446, 1448, 1451, 1452, 1453, 1458,
- 1463, 1468, 1469, 1472, 1474, 1476, 1477, 1479, 1482, 1486,
- 1490, 1492, 1497, 1498, 1504, 1506, 1508, 1510, 1512, 1515,
- 1517, 1522, 1527, 1529, 1531, 1536, 1537, 1539, 1541, 1542,
- 1545, 1550, 1555, 1557, 1559, 1563, 1565, 1568, 1572, 1574,
- 1576, 1577, 1583, 1584, 1585, 1588, 1594, 1598, 1602, 1604,
- 1611, 1616, 1621, 1624, 1627, 1630, 1632, 1635, 1637, 1638,
- 1644, 1648, 1652, 1659, 1663, 1665, 1667, 1669, 1674, 1679,
- 1684, 1687, 1690, 1695, 1698, 1701, 1703, 1704, 1709, 1711,
- 1713, 1717
+ 1321, 1323, 1325, 1327, 1329, 1333, 1336, 1338, 1340, 1342,
+ 1346, 1349, 1352, 1355, 1360, 1364, 1366, 1368, 1372, 1374,
+ 1376, 1378, 1380, 1384, 1387, 1389, 1393, 1397, 1399, 1400,
+ 1403, 1404, 1406, 1412, 1416, 1420, 1422, 1424, 1426, 1430,
+ 1434, 1436, 1438, 1440, 1441, 1442, 1450, 1452, 1455, 1456,
+ 1457, 1462, 1467, 1472, 1473, 1476, 1478, 1480, 1481, 1483,
+ 1486, 1490, 1494, 1496, 1501, 1502, 1508, 1510, 1512, 1514,
+ 1516, 1519, 1521, 1526, 1531, 1533, 1535, 1540, 1541, 1543,
+ 1545, 1546, 1549, 1554, 1559, 1561, 1563, 1567, 1569, 1572,
+ 1576, 1578, 1580, 1581, 1587, 1588, 1589, 1592, 1598, 1602,
+ 1606, 1608, 1615, 1620, 1625, 1628, 1631, 1634, 1636, 1639,
+ 1641, 1642, 1648, 1652, 1656, 1663, 1667, 1669, 1671, 1673,
+ 1678, 1683, 1688, 1691, 1694, 1699, 1702, 1705, 1707, 1708,
+ 1713, 1715, 1717, 1721, 1725, 1729
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
@@ -906,46 +900,47 @@ static const yytype_int16 yyrhs[] =
-1, -1, 79, -1, 367, -1, -1, 245, -1, 70,
-1, 71, -1, 80, -1, 134, -1, 135, -1, 149,
-1, 131, -1, 132, -1, 133, -1, 148, -1, 142,
- 79, 143, -1, 142, 143, -1, 325, -1, 164, -1,
- 147, 150, 164, -1, 150, 164, -1, 43, 326, -1,
- 44, 326, -1, 128, 151, 329, 152, -1, 62, 329,
- 157, -1, 327, -1, 130, -1, 314, 146, 72, -1,
- 73, -1, 375, -1, 164, -1, 147, 150, 164, -1,
- 150, 164, -1, 325, -1, 159, 367, 159, -1, 142,
- 367, 143, -1, 130, -1, -1, 331, 330, -1, -1,
- 8, -1, 331, 8, 326, 126, 326, -1, 331, 8,
- 326, -1, 326, 126, 326, -1, 326, -1, 334, -1,
- 285, -1, 151, 332, 152, -1, 151, 299, 152, -1,
- 337, -1, 337, -1, 337, -1, -1, -1, 352, 125,
- 338, 357, 339, 346, 340, -1, 352, -1, 340, 341,
- -1, -1, -1, 125, 357, 342, 346, -1, 343, 62,
- 356, 157, -1, 344, 62, 356, 157, -1, -1, 345,
- 245, -1, 344, -1, 343, -1, -1, 354, -1, 361,
- 354, -1, 314, 146, 347, -1, 349, 146, 347, -1,
- 354, -1, 350, 62, 356, 157, -1, -1, 305, 351,
- 62, 356, 157, -1, 353, -1, 350, -1, 305, -1,
- 354, -1, 361, 354, -1, 348, -1, 354, 62, 356,
- 157, -1, 354, 154, 332, 155, -1, 355, -1, 74,
- -1, 156, 154, 332, 155, -1, -1, 332, -1, 359,
- -1, -1, 347, 358, -1, 359, 62, 356, 157, -1,
- 359, 154, 332, 155, -1, 360, -1, 72, -1, 154,
- 332, 155, -1, 156, -1, 361, 156, -1, 362, 8,
- 363, -1, 363, -1, 337, -1, -1, 127, 151, 364,
- 362, 152, -1, -1, -1, 366, 330, -1, 366, 8,
- 332, 126, 332, -1, 366, 8, 332, -1, 332, 126,
- 332, -1, 332, -1, 366, 8, 332, 126, 32, 335,
- -1, 366, 8, 32, 335, -1, 332, 126, 32, 335,
- -1, 32, 335, -1, 367, 368, -1, 367, 79, -1,
- 368, -1, 79, 368, -1, 74, -1, -1, 74, 62,
- 369, 370, 157, -1, 74, 125, 72, -1, 144, 332,
- 155, -1, 144, 73, 62, 332, 157, 155, -1, 145,
- 337, 155, -1, 72, -1, 75, -1, 74, -1, 117,
- 151, 372, 152, -1, 118, 151, 337, 152, -1, 118,
- 151, 285, 152, -1, 7, 332, -1, 6, 332, -1,
- 5, 151, 332, 152, -1, 4, 332, -1, 3, 332,
- -1, 374, -1, -1, 372, 8, 373, 374, -1, 337,
- -1, 285, -1, 314, 146, 72, -1, 349, 146, 72,
- -1
+ 79, 143, -1, 142, 143, -1, 325, -1, 376, -1,
+ 164, -1, 147, 150, 164, -1, 150, 164, -1, 43,
+ 326, -1, 44, 326, -1, 128, 151, 329, 152, -1,
+ 62, 329, 157, -1, 327, -1, 130, -1, 314, 146,
+ 72, -1, 73, -1, 377, -1, 375, -1, 164, -1,
+ 147, 150, 164, -1, 150, 164, -1, 325, -1, 159,
+ 367, 159, -1, 142, 367, 143, -1, 130, -1, -1,
+ 331, 330, -1, -1, 8, -1, 331, 8, 326, 126,
+ 326, -1, 331, 8, 326, -1, 326, 126, 326, -1,
+ 326, -1, 334, -1, 285, -1, 151, 332, 152, -1,
+ 151, 299, 152, -1, 337, -1, 337, -1, 337, -1,
+ -1, -1, 352, 125, 338, 357, 339, 346, 340, -1,
+ 352, -1, 340, 341, -1, -1, -1, 125, 357, 342,
+ 346, -1, 343, 62, 356, 157, -1, 344, 62, 356,
+ 157, -1, -1, 345, 245, -1, 344, -1, 343, -1,
+ -1, 354, -1, 361, 354, -1, 314, 146, 347, -1,
+ 349, 146, 347, -1, 354, -1, 350, 62, 356, 157,
+ -1, -1, 305, 351, 62, 356, 157, -1, 353, -1,
+ 350, -1, 305, -1, 354, -1, 361, 354, -1, 348,
+ -1, 354, 62, 356, 157, -1, 354, 154, 332, 155,
+ -1, 355, -1, 74, -1, 156, 154, 332, 155, -1,
+ -1, 332, -1, 359, -1, -1, 347, 358, -1, 359,
+ 62, 356, 157, -1, 359, 154, 332, 155, -1, 360,
+ -1, 72, -1, 154, 332, 155, -1, 156, -1, 361,
+ 156, -1, 362, 8, 363, -1, 363, -1, 337, -1,
+ -1, 127, 151, 364, 362, 152, -1, -1, -1, 366,
+ 330, -1, 366, 8, 332, 126, 332, -1, 366, 8,
+ 332, -1, 332, 126, 332, -1, 332, -1, 366, 8,
+ 332, 126, 32, 335, -1, 366, 8, 32, 335, -1,
+ 332, 126, 32, 335, -1, 32, 335, -1, 367, 368,
+ -1, 367, 79, -1, 368, -1, 79, 368, -1, 74,
+ -1, -1, 74, 62, 369, 370, 157, -1, 74, 125,
+ 72, -1, 144, 332, 155, -1, 144, 73, 62, 332,
+ 157, 155, -1, 145, 337, 155, -1, 72, -1, 75,
+ -1, 74, -1, 117, 151, 372, 152, -1, 118, 151,
+ 337, 152, -1, 118, 151, 285, 152, -1, 7, 332,
+ -1, 6, 332, -1, 5, 151, 332, 152, -1, 4,
+ 332, -1, 3, 332, -1, 374, -1, -1, 372, 8,
+ 373, 374, -1, 337, -1, 285, -1, 314, 146, 72,
+ -1, 349, 146, 72, -1, 314, 146, 120, -1, 314,
+ 146, 120, -1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
@@ -993,19 +988,19 @@ static const yytype_uint16 yyrline[] =
892, 891, 894, 899, 900, 905, 909, 910, 911, 915,
916, 917, 922, 923, 928, 929, 930, 931, 932, 933,
934, 935, 936, 937, 938, 939, 944, 945, 946, 947,
- 948, 949, 950, 951, 952, 953, 957, 961, 962, 963,
- 964, 965, 966, 967, 968, 969, 974, 975, 978, 980,
- 984, 985, 986, 987, 991, 992, 996, 997, 1002, 1007,
- 1012, 1017, 1018, 1017, 1020, 1024, 1025, 1030, 1030, 1034,
- 1035, 1039, 1039, 1044, 1045, 1046, 1050, 1051, 1055, 1056,
- 1061, 1065, 1066, 1066, 1071, 1072, 1073, 1078, 1079, 1080,
- 1084, 1085, 1086, 1091, 1092, 1096, 1097, 1102, 1103, 1103,
- 1107, 1108, 1109, 1113, 1114, 1118, 1119, 1123, 1124, 1129,
- 1130, 1130, 1131, 1136, 1137, 1141, 1142, 1143, 1144, 1145,
- 1146, 1147, 1148, 1152, 1153, 1154, 1155, 1161, 1162, 1162,
- 1163, 1164, 1165, 1166, 1171, 1172, 1173, 1178, 1179, 1180,
- 1181, 1182, 1183, 1184, 1185, 1189, 1190, 1190, 1194, 1195,
- 1199, 1200
+ 948, 949, 950, 951, 952, 953, 954, 958, 962, 963,
+ 964, 965, 966, 967, 968, 969, 970, 971, 976, 977,
+ 980, 982, 986, 987, 988, 989, 993, 994, 998, 999,
+ 1004, 1009, 1014, 1019, 1020, 1019, 1022, 1026, 1027, 1032,
+ 1032, 1036, 1037, 1041, 1041, 1046, 1047, 1048, 1052, 1053,
+ 1057, 1058, 1063, 1067, 1068, 1068, 1073, 1074, 1075, 1080,
+ 1081, 1082, 1086, 1087, 1088, 1093, 1094, 1098, 1099, 1104,
+ 1105, 1105, 1109, 1110, 1111, 1115, 1116, 1120, 1121, 1125,
+ 1126, 1131, 1132, 1132, 1133, 1138, 1139, 1143, 1144, 1145,
+ 1146, 1147, 1148, 1149, 1150, 1154, 1155, 1156, 1157, 1163,
+ 1164, 1164, 1165, 1166, 1167, 1168, 1173, 1174, 1175, 1180,
+ 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1191, 1192, 1192,
+ 1196, 1197, 1201, 1202, 1206, 1210
};
#endif
@@ -1076,29 +1071,28 @@ static const char *const yytname[] =
"\":: (T_PAAMAYIM_NEKUDOTAYIM)\"", "\"namespace (T_NAMESPACE)\"",
"\"__NAMESPACE__ (T_NS_C)\"", "\"__DIR__ (T_DIR)\"",
"\"\\\\ (T_NS_SEPARATOR)\"", "'('", "')'", "';'", "'{'", "'}'", "'$'",
- "']'", "'`'", "'\"'", "$accept", "start", "top_statement_list", "$@1",
- "namespace_name", "top_statement", "$@2", "$@3", "use_declarations",
- "use_declaration", "constant_declaration", "inner_statement_list", "$@4",
- "inner_statement", "statement", "unticked_statement", "$@5", "$@6",
- "$@7", "$@8", "$@9", "@10", "$@11", "$@12", "$@13", "$@14", "$@15",
- "$@16", "$@17", "$@18", "$@19", "$@20", "$@21", "$@22", "$@23",
- "catch_statement", "$@24", "$@25", "$@26", "$@27", "finally_statement",
- "$@28", "additional_catches", "non_empty_additional_catches",
- "additional_catch", "@29", "$@30", "unset_variables", "unset_variable",
- "function_declaration_statement", "class_declaration_statement",
- "is_reference", "unticked_function_declaration_statement", "$@31",
- "unticked_class_declaration_statement", "$@32", "$@33",
- "class_entry_type", "extends_from", "interface_entry",
- "interface_extends_list", "implements_list", "interface_list",
- "foreach_optional_arg", "foreach_variable", "$@34", "for_statement",
- "foreach_statement", "declare_statement", "declare_list",
- "switch_case_list", "case_list", "$@35", "$@36", "case_separator",
- "while_statement", "elseif_list", "$@37", "new_elseif_list", "$@38",
- "else_single", "new_else_single", "parameter_list",
- "non_empty_parameter_list", "optional_class_type",
+ "']'", "'`'", "'\"'", "$accept", "start", "top_statement_list", "@1",
+ "namespace_name", "top_statement", "@2", "@3", "use_declarations",
+ "use_declaration", "constant_declaration", "inner_statement_list", "@4",
+ "inner_statement", "statement", "unticked_statement", "@5", "@6", "@7",
+ "@8", "@9", "@10", "@11", "@12", "@13", "@14", "@15", "@16", "@17",
+ "@18", "@19", "@20", "@21", "@22", "@23", "catch_statement", "@24",
+ "@25", "@26", "@27", "finally_statement", "@28", "additional_catches",
+ "non_empty_additional_catches", "additional_catch", "@29", "@30",
+ "unset_variables", "unset_variable", "function_declaration_statement",
+ "class_declaration_statement", "is_reference",
+ "unticked_function_declaration_statement", "@31",
+ "unticked_class_declaration_statement", "@32", "@33", "class_entry_type",
+ "extends_from", "interface_entry", "interface_extends_list",
+ "implements_list", "interface_list", "foreach_optional_arg",
+ "foreach_variable", "@34", "for_statement", "foreach_statement",
+ "declare_statement", "declare_list", "switch_case_list", "case_list",
+ "@35", "@36", "case_separator", "while_statement", "elseif_list", "@37",
+ "new_elseif_list", "@38", "else_single", "new_else_single",
+ "parameter_list", "non_empty_parameter_list", "optional_class_type",
"function_call_parameter_list", "non_empty_function_call_parameter_list",
"global_var_list", "global_var", "static_var_list",
- "class_statement_list", "class_statement", "$@39", "$@40",
+ "class_statement_list", "class_statement", "@39", "@40",
"trait_use_statement", "trait_list", "trait_adaptations",
"trait_adaptation_list", "non_empty_trait_adaptation_list",
"trait_adaptation_statement", "trait_precedence", "trait_reference_list",
@@ -1106,34 +1100,33 @@ static const char *const yytname[] =
"trait_alias", "trait_modifiers", "method_body", "variable_modifiers",
"method_modifiers", "non_empty_member_modifiers", "member_modifier",
"class_variable_declaration", "class_constant_declaration",
- "echo_expr_list", "for_expr", "non_empty_for_expr", "$@41",
+ "echo_expr_list", "for_expr", "non_empty_for_expr", "@41",
"chaining_method_or_property", "chaining_dereference",
- "chaining_instance_call", "$@42", "instance_call", "$@43", "new_expr",
- "$@44", "expr_without_variable", "$@45", "$@46", "$@47", "$@48", "$@49",
- "$@50", "@51", "$@52", "$@53", "$@54", "$@55", "@56", "@57",
- "yield_expr", "combined_scalar_offset", "combined_scalar", "function",
- "lexical_vars", "lexical_var_list", "function_call", "@58", "@59", "@60",
- "@61", "$@62", "$@63", "$@64", "$@65", "class_name",
- "fully_qualified_class_name", "class_name_reference",
- "dynamic_class_name_reference", "$@66", "$@67",
+ "chaining_instance_call", "@42", "instance_call", "@43", "new_expr",
+ "@44", "expr_without_variable", "@45", "@46", "@47", "@48", "@49", "@50",
+ "@51", "@52", "@53", "@54", "@55", "@56", "@57", "yield_expr",
+ "combined_scalar_offset", "combined_scalar", "function", "lexical_vars",
+ "lexical_var_list", "function_call", "@58", "@59", "@60", "@61", "@62",
+ "@63", "@64", "@65", "class_name", "fully_qualified_class_name",
+ "class_name_reference", "dynamic_class_name_reference", "@66", "@67",
"dynamic_class_name_variable_properties",
"dynamic_class_name_variable_property", "exit_expr", "backticks_expr",
"ctor_arguments", "common_scalar", "static_scalar",
"static_class_constant", "scalar", "static_array_pair_list",
"possible_comma", "non_empty_static_array_pair_list", "expr",
"parenthesis_expr", "r_variable", "w_variable", "rw_variable",
- "variable", "$@68", "$@69", "variable_properties", "variable_property",
- "$@70", "array_method_dereference", "method", "@71", "method_or_not",
+ "variable", "@68", "@69", "variable_properties", "variable_property",
+ "@70", "array_method_dereference", "method", "@71", "method_or_not",
"variable_without_objects", "static_member", "variable_class_name",
- "array_function_dereference", "$@72",
- "base_variable_with_function_calls", "base_variable",
- "reference_variable", "compound_variable", "dim_offset",
- "object_property", "$@73", "object_dim_list", "variable_name",
+ "array_function_dereference", "@72", "base_variable_with_function_calls",
+ "base_variable", "reference_variable", "compound_variable", "dim_offset",
+ "object_property", "@73", "object_dim_list", "variable_name",
"simple_indirect_reference", "assignment_list",
- "assignment_list_element", "$@74", "array_pair_list",
- "non_empty_array_pair_list", "encaps_list", "encaps_var", "$@75",
+ "assignment_list_element", "@74", "array_pair_list",
+ "non_empty_array_pair_list", "encaps_list", "encaps_var", "@75",
"encaps_var_offset", "internal_functions_in_yacc", "isset_variables",
- "$@76", "isset_variable", "class_constant", 0
+ "@76", "isset_variable", "class_constant", "static_class_name_scalar",
+ "class_name_scalar", 0
};
#endif
@@ -1206,19 +1199,19 @@ static const yytype_uint16 yyr1[] =
319, 317, 317, 320, 320, 321, 322, 322, 322, 323,
323, 323, 324, 324, 325, 325, 325, 325, 325, 325,
325, 325, 325, 325, 325, 325, 326, 326, 326, 326,
- 326, 326, 326, 326, 326, 326, 327, 328, 328, 328,
- 328, 328, 328, 328, 328, 328, 329, 329, 330, 330,
- 331, 331, 331, 331, 332, 332, 333, 333, 334, 335,
- 336, 338, 339, 337, 337, 340, 340, 342, 341, 343,
- 343, 345, 344, 346, 346, 346, 347, 347, 348, 348,
- 349, 350, 351, 350, 352, 352, 352, 353, 353, 353,
- 354, 354, 354, 355, 355, 356, 356, 357, 358, 357,
- 359, 359, 359, 360, 360, 361, 361, 362, 362, 363,
- 364, 363, 363, 365, 365, 366, 366, 366, 366, 366,
- 366, 366, 366, 367, 367, 367, 367, 368, 369, 368,
- 368, 368, 368, 368, 370, 370, 370, 371, 371, 371,
- 371, 371, 371, 371, 371, 372, 373, 372, 374, 374,
- 375, 375
+ 326, 326, 326, 326, 326, 326, 326, 327, 328, 328,
+ 328, 328, 328, 328, 328, 328, 328, 328, 329, 329,
+ 330, 330, 331, 331, 331, 331, 332, 332, 333, 333,
+ 334, 335, 336, 338, 339, 337, 337, 340, 340, 342,
+ 341, 343, 343, 345, 344, 346, 346, 346, 347, 347,
+ 348, 348, 349, 350, 351, 350, 352, 352, 352, 353,
+ 353, 353, 354, 354, 354, 355, 355, 356, 356, 357,
+ 358, 357, 359, 359, 359, 360, 360, 361, 361, 362,
+ 362, 363, 364, 363, 363, 365, 365, 366, 366, 366,
+ 366, 366, 366, 366, 366, 367, 367, 367, 367, 368,
+ 369, 368, 368, 368, 368, 368, 370, 370, 370, 371,
+ 371, 371, 371, 371, 371, 371, 371, 372, 373, 372,
+ 374, 374, 375, 375, 376, 377
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
@@ -1265,1043 +1258,999 @@ static const yytype_uint8 yyr2[] =
1, 1, 3, 2, 1, 3, 2, 1, 1, 0,
0, 6, 1, 2, 0, 2, 0, 2, 1, 0,
1, 1, 0, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 3, 2, 1, 1, 3, 2,
- 2, 2, 4, 3, 1, 1, 3, 1, 1, 1,
- 3, 2, 1, 3, 3, 1, 0, 2, 0, 1,
- 5, 3, 3, 1, 1, 1, 3, 3, 1, 1,
- 1, 0, 0, 7, 1, 2, 0, 0, 4, 4,
- 4, 0, 2, 1, 1, 0, 1, 2, 3, 3,
- 1, 4, 0, 5, 1, 1, 1, 1, 2, 1,
- 4, 4, 1, 1, 4, 0, 1, 1, 0, 2,
- 4, 4, 1, 1, 3, 1, 2, 3, 1, 1,
- 0, 5, 0, 0, 2, 5, 3, 3, 1, 6,
- 4, 4, 2, 2, 2, 1, 2, 1, 0, 5,
- 3, 3, 6, 3, 1, 1, 1, 4, 4, 4,
- 2, 2, 4, 2, 2, 1, 0, 4, 1, 1,
- 3, 3
+ 1, 1, 1, 1, 3, 2, 1, 1, 1, 3,
+ 2, 2, 2, 4, 3, 1, 1, 3, 1, 1,
+ 1, 1, 3, 2, 1, 3, 3, 1, 0, 2,
+ 0, 1, 5, 3, 3, 1, 1, 1, 3, 3,
+ 1, 1, 1, 0, 0, 7, 1, 2, 0, 0,
+ 4, 4, 4, 0, 2, 1, 1, 0, 1, 2,
+ 3, 3, 1, 4, 0, 5, 1, 1, 1, 1,
+ 2, 1, 4, 4, 1, 1, 4, 0, 1, 1,
+ 0, 2, 4, 4, 1, 1, 3, 1, 2, 3,
+ 1, 1, 0, 5, 0, 0, 2, 5, 3, 3,
+ 1, 6, 4, 4, 2, 2, 2, 1, 2, 1,
+ 0, 5, 3, 3, 6, 3, 1, 1, 1, 4,
+ 4, 4, 2, 2, 4, 2, 2, 1, 0, 4,
+ 1, 1, 3, 3, 3, 3
};
-/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
- Performed when YYTABLE doesn't specify something else to do. Zero
+/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
+ STATE-NUM when YYTABLE doesn't specify something else to do. Zero
means the default is an error. */
static const yytype_uint16 yydefact[] =
{
5, 0, 3, 1, 0, 0, 0, 0, 0, 0,
0, 343, 0, 0, 0, 0, 336, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 503, 0, 0, 396,
- 0, 404, 405, 6, 427, 483, 66, 406, 0, 46,
+ 0, 0, 0, 0, 0, 0, 505, 0, 0, 396,
+ 0, 404, 405, 6, 428, 485, 66, 406, 0, 46,
43, 0, 0, 75, 0, 0, 0, 0, 357, 0,
0, 78, 0, 0, 0, 0, 0, 380, 0, 0,
- 0, 0, 112, 114, 118, 0, 0, 435, 410, 411,
+ 0, 0, 112, 114, 118, 0, 0, 437, 410, 411,
412, 407, 408, 0, 0, 413, 409, 0, 0, 77,
- 29, 495, 399, 0, 429, 4, 0, 8, 34, 9,
- 10, 102, 103, 0, 0, 319, 445, 0, 339, 340,
- 104, 476, 0, 432, 338, 0, 318, 444, 0, 448,
- 378, 479, 0, 475, 454, 474, 477, 482, 0, 327,
- 428, 343, 6, 380, 0, 104, 534, 533, 0, 531,
- 530, 342, 445, 0, 448, 305, 306, 307, 308, 0,
- 334, 333, 332, 331, 330, 329, 328, 380, 0, 0,
- 364, 0, 284, 450, 0, 282, 0, 508, 0, 438,
- 269, 0, 0, 381, 387, 261, 388, 0, 392, 477,
- 0, 0, 335, 398, 0, 37, 35, 485, 0, 244,
- 0, 0, 245, 0, 0, 53, 55, 0, 57, 0,
- 0, 0, 59, 445, 0, 448, 0, 0, 0, 21,
- 0, 20, 187, 0, 0, 186, 115, 113, 192, 0,
- 104, 0, 0, 0, 0, 263, 503, 517, 0, 415,
- 0, 0, 0, 515, 0, 15, 0, 431, 319, 0,
- 0, 27, 0, 400, 0, 401, 0, 0, 0, 0,
- 0, 18, 116, 110, 62, 485, 485, 105, 344, 0,
- 0, 289, 0, 291, 322, 285, 287, 0, 0, 0,
+ 29, 497, 399, 0, 431, 4, 0, 8, 34, 9,
+ 10, 102, 103, 0, 0, 319, 447, 0, 339, 340,
+ 104, 478, 0, 434, 338, 0, 318, 446, 0, 450,
+ 378, 481, 0, 477, 456, 476, 479, 484, 0, 327,
+ 430, 429, 343, 6, 380, 0, 104, 536, 535, 0,
+ 533, 532, 342, 447, 0, 450, 305, 306, 307, 308,
+ 0, 334, 333, 332, 331, 330, 329, 328, 380, 0,
+ 0, 364, 0, 284, 452, 0, 282, 0, 510, 0,
+ 440, 269, 0, 0, 381, 387, 261, 388, 0, 392,
+ 479, 0, 0, 335, 398, 0, 37, 35, 487, 0,
+ 244, 0, 0, 245, 0, 0, 53, 55, 0, 57,
+ 0, 0, 0, 59, 447, 0, 450, 0, 0, 0,
+ 21, 0, 20, 187, 0, 0, 186, 115, 113, 192,
+ 0, 104, 0, 0, 0, 0, 263, 505, 519, 0,
+ 415, 0, 0, 0, 517, 0, 15, 0, 433, 319,
+ 0, 0, 27, 0, 400, 0, 401, 0, 0, 0,
+ 0, 0, 18, 116, 110, 62, 487, 487, 105, 344,
+ 0, 0, 289, 0, 291, 322, 285, 287, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 67, 283, 281,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 485, 451, 485, 0, 496, 478,
- 344, 0, 0, 337, 0, 368, 0, 0, 512, 449,
- 0, 356, 439, 504, 0, 383, 0, 402, 0, 389,
- 478, 397, 40, 0, 486, 0, 0, 65, 0, 44,
- 0, 246, 249, 445, 448, 0, 0, 56, 58, 82,
- 0, 60, 61, 29, 81, 23, 0, 0, 17, 0,
- 188, 448, 0, 63, 0, 0, 64, 346, 0, 99,
- 101, 445, 448, 0, 535, 445, 448, 0, 502, 0,
- 518, 0, 414, 516, 427, 0, 0, 514, 434, 513,
- 430, 5, 12, 13, 0, 320, 447, 446, 36, 0,
- 0, 341, 433, 7, 0, 365, 0, 0, 108, 119,
- 0, 0, 106, 0, 485, 540, 0, 468, 466, 370,
- 0, 0, 293, 0, 325, 0, 0, 0, 294, 296,
- 295, 310, 309, 312, 311, 313, 315, 316, 314, 304,
- 303, 298, 299, 297, 300, 301, 302, 317, 0, 265,
- 280, 279, 278, 277, 276, 275, 274, 273, 272, 271,
- 270, 379, 541, 469, 374, 0, 0, 0, 0, 532,
- 445, 448, 366, 493, 0, 507, 0, 506, 382, 468,
- 403, 262, 469, 0, 29, 38, 354, 243, 47, 0,
- 49, 247, 72, 69, 0, 0, 143, 143, 54, 0,
- 0, 436, 406, 0, 425, 0, 0, 0, 417, 0,
- 416, 26, 424, 27, 0, 22, 19, 0, 185, 193,
- 190, 0, 0, 0, 536, 527, 529, 528, 11, 0,
- 499, 0, 498, 355, 0, 520, 0, 521, 523, 0,
- 3, 5, 369, 258, 0, 28, 30, 31, 32, 484,
- 0, 176, 0, 445, 0, 448, 0, 0, 0, 384,
- 117, 121, 0, 0, 353, 352, 0, 172, 0, 0,
- 0, 0, 467, 290, 292, 0, 0, 286, 288, 0,
- 266, 0, 0, 471, 488, 452, 487, 492, 480, 481,
- 511, 510, 0, 390, 27, 152, 0, 29, 150, 45,
- 245, 0, 0, 0, 0, 0, 0, 143, 0, 143,
- 0, 420, 421, 443, 0, 438, 436, 0, 0, 419,
- 0, 83, 24, 189, 0, 172, 100, 68, 0, 500,
- 502, 0, 524, 526, 525, 0, 0, 367, 16, 3,
- 321, 0, 0, 181, 0, 177, 178, 25, 0, 386,
- 0, 0, 120, 123, 195, 172, 173, 174, 0, 162,
- 0, 175, 473, 494, 373, 371, 326, 323, 267, 377,
- 375, 489, 465, 485, 0, 0, 505, 394, 155, 158,
- 0, 27, 0, 248, 0, 0, 125, 127, 125, 137,
- 0, 29, 135, 76, 0, 0, 0, 0, 0, 139,
- 0, 423, 439, 437, 0, 418, 426, 0, 79, 191,
- 0, 537, 502, 497, 0, 519, 0, 14, 485, 0,
- 257, 256, 260, 251, 0, 0, 445, 448, 385, 122,
- 195, 0, 227, 0, 358, 172, 0, 164, 0, 402,
- 464, 463, 0, 456, 0, 0, 509, 391, 160, 0,
- 0, 39, 48, 0, 50, 128, 129, 0, 0, 0,
- 0, 27, 0, 141, 0, 148, 149, 146, 140, 442,
- 441, 422, 84, 89, 358, 0, 264, 522, 0, 457,
- 250, 485, 0, 33, 184, 227, 124, 0, 0, 231,
- 232, 233, 236, 235, 234, 226, 111, 194, 199, 196,
- 0, 225, 229, 0, 0, 0, 0, 0, 165, 0,
- 324, 268, 485, 485, 462, 453, 490, 491, 0, 393,
- 0, 0, 0, 153, 159, 151, 245, 502, 126, 73,
- 70, 138, 0, 142, 144, 29, 0, 0, 90, 80,
- 0, 501, 253, 465, 0, 255, 109, 0, 0, 203,
- 0, 104, 230, 0, 198, 29, 0, 29, 0, 168,
- 0, 167, 0, 0, 455, 395, 0, 29, 0, 0,
- 0, 0, 0, 0, 136, 29, 27, 440, 85, 0,
- 29, 458, 252, 0, 0, 205, 207, 202, 239, 0,
- 0, 0, 27, 0, 362, 0, 27, 169, 0, 166,
- 459, 460, 156, 27, 42, 154, 51, 130, 29, 133,
- 74, 71, 27, 0, 29, 27, 242, 204, 6, 0,
- 208, 209, 0, 0, 217, 0, 0, 0, 0, 197,
- 200, 0, 107, 363, 0, 359, 345, 0, 171, 29,
- 0, 27, 0, 27, 347, 206, 210, 211, 221, 0,
- 212, 0, 240, 237, 0, 241, 0, 360, 170, 27,
- 29, 131, 52, 0, 86, 91, 0, 220, 213, 214,
- 218, 0, 172, 361, 27, 134, 0, 219, 0, 238,
- 0, 0, 29, 215, 0, 132, 27, 223, 29, 201,
- 87, 27, 93, 224, 0, 88, 92, 94, 0, 95,
- 96, 0, 0, 97, 0, 29, 27, 98
+ 0, 0, 0, 0, 0, 0, 0, 0, 67, 283,
+ 281, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 487, 453, 487, 0, 498,
+ 480, 344, 0, 0, 337, 0, 368, 0, 0, 514,
+ 451, 0, 356, 441, 506, 0, 383, 0, 402, 0,
+ 389, 480, 397, 40, 0, 488, 0, 0, 65, 0,
+ 44, 0, 246, 249, 447, 450, 0, 0, 56, 58,
+ 82, 0, 60, 61, 29, 81, 23, 0, 0, 17,
+ 0, 188, 450, 0, 63, 0, 0, 64, 346, 0,
+ 99, 101, 447, 450, 0, 537, 447, 450, 0, 504,
+ 0, 520, 0, 414, 518, 428, 0, 0, 516, 436,
+ 515, 432, 5, 12, 13, 0, 320, 449, 448, 36,
+ 0, 0, 341, 435, 7, 0, 365, 0, 0, 108,
+ 119, 0, 0, 106, 0, 487, 542, 545, 0, 470,
+ 468, 370, 0, 0, 293, 0, 325, 0, 0, 0,
+ 294, 296, 295, 310, 309, 312, 311, 313, 315, 316,
+ 314, 304, 303, 298, 299, 297, 300, 301, 302, 317,
+ 0, 265, 280, 279, 278, 277, 276, 275, 274, 273,
+ 272, 271, 270, 379, 543, 471, 374, 0, 0, 0,
+ 0, 534, 447, 450, 366, 495, 0, 509, 0, 508,
+ 382, 470, 403, 262, 471, 0, 29, 38, 354, 243,
+ 47, 0, 49, 247, 72, 69, 0, 0, 143, 143,
+ 54, 0, 0, 438, 406, 0, 426, 0, 0, 0,
+ 418, 0, 416, 26, 425, 417, 27, 0, 22, 19,
+ 0, 185, 193, 190, 0, 0, 0, 538, 529, 531,
+ 530, 11, 0, 501, 0, 500, 355, 0, 522, 0,
+ 523, 525, 0, 3, 5, 369, 258, 0, 28, 30,
+ 31, 32, 486, 0, 176, 0, 447, 0, 450, 0,
+ 0, 0, 384, 117, 121, 0, 0, 353, 352, 0,
+ 172, 0, 0, 0, 0, 469, 290, 292, 0, 0,
+ 286, 288, 0, 266, 0, 0, 473, 490, 454, 489,
+ 494, 482, 483, 513, 512, 0, 390, 27, 152, 0,
+ 29, 150, 45, 245, 0, 0, 0, 0, 0, 0,
+ 143, 0, 143, 0, 421, 422, 445, 0, 440, 438,
+ 0, 0, 420, 0, 83, 24, 189, 0, 172, 100,
+ 68, 0, 502, 504, 0, 526, 528, 527, 0, 0,
+ 367, 16, 3, 321, 0, 0, 181, 0, 177, 178,
+ 25, 0, 386, 0, 0, 120, 123, 195, 172, 173,
+ 174, 0, 162, 0, 175, 475, 496, 373, 371, 326,
+ 323, 267, 377, 375, 491, 467, 487, 0, 0, 507,
+ 394, 155, 158, 0, 27, 0, 248, 0, 0, 125,
+ 127, 125, 137, 0, 29, 135, 76, 0, 0, 0,
+ 0, 0, 139, 0, 424, 441, 439, 0, 419, 427,
+ 544, 0, 79, 191, 0, 539, 504, 499, 0, 521,
+ 0, 14, 487, 0, 257, 256, 260, 251, 0, 0,
+ 447, 450, 385, 122, 195, 0, 227, 0, 358, 172,
+ 0, 164, 0, 402, 466, 465, 0, 458, 0, 0,
+ 511, 391, 160, 0, 0, 39, 48, 0, 50, 128,
+ 129, 0, 0, 0, 0, 27, 0, 141, 0, 148,
+ 149, 146, 140, 444, 443, 423, 84, 89, 358, 0,
+ 264, 524, 0, 459, 250, 487, 0, 33, 184, 227,
+ 124, 0, 0, 231, 232, 233, 236, 235, 234, 226,
+ 111, 194, 199, 196, 0, 225, 229, 0, 0, 0,
+ 0, 0, 165, 0, 324, 268, 487, 487, 464, 455,
+ 492, 493, 0, 393, 0, 0, 0, 153, 159, 151,
+ 245, 504, 126, 73, 70, 138, 0, 142, 144, 29,
+ 0, 0, 90, 80, 0, 503, 253, 467, 0, 255,
+ 109, 0, 0, 203, 0, 104, 230, 0, 198, 29,
+ 0, 29, 0, 168, 0, 167, 0, 0, 457, 395,
+ 0, 29, 0, 0, 0, 0, 0, 0, 136, 29,
+ 27, 442, 85, 0, 29, 460, 252, 0, 0, 205,
+ 207, 202, 239, 0, 0, 0, 27, 0, 362, 0,
+ 27, 169, 0, 166, 461, 462, 156, 27, 42, 154,
+ 51, 130, 29, 133, 74, 71, 27, 0, 29, 27,
+ 242, 204, 6, 0, 208, 209, 0, 0, 217, 0,
+ 0, 0, 0, 197, 200, 0, 107, 363, 0, 359,
+ 345, 0, 171, 29, 0, 27, 0, 27, 347, 206,
+ 210, 211, 221, 0, 212, 0, 240, 237, 0, 241,
+ 0, 360, 170, 27, 29, 131, 52, 0, 86, 91,
+ 0, 220, 213, 214, 218, 0, 172, 361, 27, 134,
+ 0, 219, 0, 238, 0, 0, 29, 215, 0, 132,
+ 27, 223, 29, 201, 87, 27, 93, 224, 0, 88,
+ 92, 94, 0, 95, 96, 0, 0, 97, 0, 29,
+ 27, 98
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
- -1, 1, 2, 4, 84, 85, 531, 381, 200, 201,
- 86, 231, 389, 535, 899, 88, 323, 585, 474, 668,
- 181, 479, 180, 586, 590, 816, 930, 336, 593, 863,
- 592, 862, 184, 196, 763, 698, 827, 903, 966, 982,
- 829, 869, 985, 986, 987, 991, 994, 358, 359, 89,
- 90, 248, 91, 556, 92, 551, 399, 93, 398, 94,
- 553, 641, 642, 748, 676, 817, 952, 900, 683, 485,
- 488, 598, 865, 825, 757, 589, 669, 859, 738, 929,
- 741, 812, 648, 649, 650, 470, 542, 204, 205, 209,
- 722, 787, 840, 944, 788, 838, 877, 909, 910, 911,
- 912, 958, 913, 914, 915, 956, 979, 789, 790, 791,
- 792, 879, 793, 178, 330, 331, 591, 710, 711, 712,
- 772, 630, 631, 95, 317, 96, 368, 729, 416, 417,
- 411, 413, 533, 415, 728, 565, 139, 403, 511, 97,
- 98, 99, 125, 796, 885, 101, 239, 529, 384, 561,
- 560, 572, 571, 292, 102, 651, 165, 166, 473, 667,
- 737, 809, 172, 234, 471, 103, 603, 502, 104, 604,
- 313, 605, 105, 106, 107, 308, 108, 109, 456, 662,
- 805, 713, 833, 730, 731, 732, 733, 110, 111, 112,
- 113, 249, 114, 115, 116, 117, 325, 575, 661, 576,
- 577, 118, 521, 522, 702, 158, 159, 222, 223, 524,
- 625, 119, 363, 618, 364, 120
+ -1, 1, 2, 4, 84, 85, 534, 382, 201, 202,
+ 86, 232, 390, 538, 903, 88, 324, 588, 476, 671,
+ 182, 481, 181, 589, 593, 820, 934, 337, 596, 867,
+ 595, 866, 185, 197, 767, 702, 831, 907, 970, 986,
+ 833, 873, 989, 990, 991, 995, 998, 359, 360, 89,
+ 90, 249, 91, 559, 92, 554, 400, 93, 399, 94,
+ 556, 644, 645, 752, 679, 821, 956, 904, 686, 487,
+ 490, 601, 869, 829, 761, 592, 672, 863, 742, 933,
+ 745, 816, 651, 652, 653, 472, 545, 205, 206, 210,
+ 726, 791, 844, 948, 792, 842, 881, 913, 914, 915,
+ 916, 962, 917, 918, 919, 960, 983, 793, 794, 795,
+ 796, 883, 797, 179, 331, 332, 594, 714, 715, 716,
+ 776, 633, 634, 95, 318, 96, 369, 733, 418, 419,
+ 413, 415, 536, 417, 732, 568, 140, 404, 514, 97,
+ 98, 99, 126, 800, 889, 101, 240, 532, 385, 564,
+ 563, 575, 574, 293, 102, 654, 166, 167, 475, 670,
+ 741, 813, 173, 235, 473, 103, 606, 504, 104, 607,
+ 314, 608, 105, 106, 107, 309, 108, 109, 458, 665,
+ 809, 717, 837, 734, 735, 736, 737, 110, 111, 112,
+ 113, 250, 114, 115, 116, 117, 326, 578, 664, 579,
+ 580, 118, 524, 525, 706, 159, 160, 223, 224, 527,
+ 628, 119, 364, 621, 365, 120, 505, 121
};
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
-#define YYPACT_NINF -769
+#define YYPACT_NINF -770
static const yytype_int16 yypact[] =
{
- -769, 118, 121, -769, 1586, 3871, 3871, -25, 3871, 3871,
- 3871, 3871, 3871, 3871, 3871, 3871, -769, 3871, 3871, 3871,
- 3871, 3871, 3871, 3871, 187, 187, 2541, 3871, 349, -22,
- -20, -769, -769, 107, -769, -769, -769, 74, 3871, -769,
- -769, 47, 78, -769, -20, 2674, 2807, 163, -769, 170,
- 2940, -769, 3871, -47, -26, 26, 111, 14, 109, 112,
- 114, 116, -769, -769, -769, 149, 164, -769, -769, -769,
- -769, -769, -769, 374, -27, -769, -769, 200, 4004, -769,
- -769, 150, 194, 253, 278, -769, 13, -769, -769, -769,
- -769, -769, -769, 247, 275, -769, -769, 172, 288, 303,
- 340, 315, 249, -769, -769, 4485, -769, -769, 29, 2292,
- -769, -769, 255, 364, 307, -769, 66, -769, -16, -769,
- -769, -769, -769, 369, 285, 340, 4938, 4938, 3871, 4938,
- 4938, 937, -11, 4737, 1760, -769, -769, 353, -769, 3871,
- -769, -769, -769, -769, -769, -769, -769, -769, 299, 200,
- -49, 334, -769, -769, 338, -769, 187, 4780, 344, 498,
- -769, 360, 200, 362, 377, -769, -769, 386, 390, -35,
- -16, 3073, -769, -769, 4004, 503, -769, 3871, 20, 4938,
- 2275, -20, 3871, 3871, 387, -769, -769, 4527, -769, 4569,
- 388, 526, -769, 391, 4938, 1380, 392, 4611, 200, -5,
- 23, -769, -769, 246, 24, -769, -769, -769, 535, 25,
- 340, 187, 3871, 3871, 401, -769, 2541, 100, 131, -769,
- 4137, 187, 413, -769, 200, -769, 306, 293, 402, 412,
- 4653, 416, 3871, 144, 420, 359, 144, 158, 507, 429,
- 509, -769, 462, -769, -769, 3871, 3871, -769, 514, 527,
- 220, -769, 3871, -769, 565, -769, -769, 3871, 3871, 3871,
- 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871,
- 3871, 3871, 3871, 3871, 3871, 3871, 349, -769, -769, -769,
- 3206, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871, 3871,
- 3871, 3871, 429, 235, 3871, -769, 3871, 3871, 150, -7,
- -769, 4695, 3871, -769, 200, -38, 250, 250, -769, -769,
- 3339, -769, 3472, -769, 200, 362, -8, 429, -8, -769,
- 36, -769, -769, 2275, 4938, 436, 3871, -769, 511, -769,
- 445, 592, 4938, 512, 1208, 534, 10, -769, -769, -769,
- 757, -769, -769, -769, -769, 162, 538, -47, -769, 3871,
- -769, -769, -26, -769, 757, 533, -769, -769, 33, -769,
- -769, 34, 56, 41, -769, 461, 1560, 464, 280, 463,
- -769, 546, -769, -769, 557, 1066, 465, -769, -769, -769,
- 304, -769, -769, -769, 429, -769, -769, -769, -769, 1743,
- 1327, -769, -769, -769, 2408, -769, 609, 89, -769, 504,
- 469, 471, -769, 479, 3871, 480, 3871, 481, 36, -769,
- -16, 3871, 5017, 3871, -769, 3871, 3871, 3871, 2458, 2591,
- 2722, 2855, 2855, 2855, 2855, 1563, 1563, 1563, 1563, 642,
- 642, 370, 370, 370, 353, 353, 353, -769, 219, 937,
- 937, 937, 937, 937, 937, 937, 937, 937, 937, 937,
- 937, -769, 480, 486, -769, 483, 250, 487, 4271, -769,
- 210, 2026, -36, -769, 187, 4938, 187, 4839, 362, -769,
- -769, -769, -769, 250, -769, -769, -769, 4938, -769, 1404,
- -769, -769, -769, -769, 624, 49, 490, 495, -769, 757,
- 757, 757, -769, 500, -769, 45, 499, 200, -49, 506,
- -769, -769, -769, 501, 581, -769, -769, 4313, -769, -769,
- 640, 508, 187, 505, -769, -769, -769, -769, -769, 513,
- -769, 51, -769, -769, 207, -769, 3871, -769, -769, 429,
- 502, -769, -769, 153, 516, -769, -769, -769, -769, -769,
- 187, -769, 52, 54, 510, 135, 757, 515, 200, 362,
- -769, 536, 89, 518, -769, -769, 519, 350, 517, 4355,
- 429, 429, 36, 4979, 937, 3871, 4881, 5062, 5083, 349,
- -769, 429, 429, -769, -769, -769, 53, -769, -769, -769,
- -769, -769, 3605, -769, 341, -769, -20, -769, -769, -769,
- 3871, 3871, 234, 234, 757, 597, 1876, -769, 382, -769,
- 176, -769, -769, 550, 522, 672, 757, 539, 200, -38,
- 622, 595, -769, -769, 757, 350, -769, -769, 3871, -769,
- 280, 681, -769, -769, -769, 543, 985, -769, -769, 547,
- -769, 159, 551, -769, 3738, -769, -769, -769, 200, 362,
- 89, 553, 696, -769, -769, 350, -769, -769, 563, 697,
- 59, -769, -769, -769, -769, -769, 5040, -769, -769, -769,
- -769, -769, 568, 3871, 3871, 187, 4938, -769, -769, 384,
- 567, 632, 569, 4938, 187, 573, 603, -769, 603, -769,
- 716, -769, -769, -769, 441, 579, 3871, 58, 291, -769,
- 757, -769, 757, -769, 589, -36, -769, 582, -769, -769,
- 590, -769, 280, -769, 3871, -769, 591, -769, 3871, 250,
- 623, 171, -769, -769, 594, 187, 57, 1227, 362, 696,
- -769, 89, 650, 599, 646, 284, 679, 743, 3871, 429,
- 705, 706, 429, -769, 612, 4399, -769, 645, 394, -20,
- 2275, -769, -769, 618, -769, -769, -769, 234, 625, 627,
- 757, 684, 628, -769, 4443, -769, -769, -769, -769, -769,
- 652, -769, -769, 678, 646, 61, 937, -769, 619, -769,
- -769, 3871, 623, -769, -769, 1167, -769, 711, 89, -769,
- -769, -769, -769, -769, -769, -769, -769, -769, -769, -769,
- 369, 600, -769, 27, 630, 634, 633, 212, 772, 757,
- 5040, -769, 3871, 3871, -769, 623, -769, -769, 250, -769,
- -20, 761, 722, -769, -769, -769, 3871, 280, -769, -769,
- -769, -769, 639, -769, -769, -769, 757, 89, -769, -769,
- 641, -769, -769, 568, 637, 623, -769, 783, 18, -769,
- 730, 340, -769, 736, -769, -769, 351, -769, 735, 796,
- 757, -769, 654, 655, -769, -769, 787, -769, 662, 2275,
- 664, 75, 2009, 2009, -769, -769, 155, -769, -769, 663,
- -769, -769, -769, 757, 89, -769, 91, -769, 804, 28,
- 749, 808, 668, 750, -769, 76, 670, 816, 757, -769,
- -769, -769, -769, 763, -769, -769, -769, -769, -769, -769,
- -769, -769, 204, 759, -769, 680, -769, -769, 747, 685,
- 91, -769, 686, 751, 727, 688, 698, 757, 771, -769,
- -769, 757, -769, -769, 367, -769, -769, 757, -769, -769,
- 2142, 758, 695, 693, -769, -769, -769, -769, 626, 89,
- -769, 779, -769, 839, 704, -769, 782, -769, -769, 493,
- -769, -769, -769, 708, -769, -769, 785, 786, 851, -769,
- -769, 757, 350, -769, 777, -769, 712, -769, 89, -769,
- 713, 714, -769, -769, 336, -769, 715, -769, -769, -769,
- -769, 718, 765, -769, 723, -769, 765, -769, 89, -769,
- -769, 801, 724, -769, 725, -769, 726, -769
+ -770, 72, 80, -770, 1334, 3870, 3870, -49, 3870, 3870,
+ 3870, 3870, 3870, 3870, 3870, 3870, -770, 3870, 3870, 3870,
+ 3870, 3870, 3870, 3870, -40, -40, 2540, 3870, 146, -17,
+ 87, -770, -770, 84, -770, -770, -770, 184, 3870, -770,
+ -770, 110, 112, -770, 87, 2673, 2806, 193, -770, 196,
+ 2939, -770, 3870, -15, 39, 152, 155, 4, 126, 136,
+ 148, 182, -770, -770, -770, 220, 227, -770, -770, -770,
+ -770, -770, -770, 210, 157, -770, -770, 223, 4003, -770,
+ -770, 154, 218, 273, -69, -770, 29, -770, -770, -770,
+ -770, -770, -770, 288, 313, -770, -770, 230, 325, 328,
+ 363, 335, 257, -770, -770, 1325, -770, -770, 67, 1759,
+ -770, -770, 261, 347, 287, -770, 128, -770, 96, -770,
+ -770, -770, -770, -770, 321, 279, 363, 4931, 4931, 3870,
+ 4931, 4931, 1481, -35, 4694, 1010, -770, -770, 373, -770,
+ 3870, -770, -770, -770, -770, -770, -770, -770, -770, 291,
+ 223, -67, 297, -770, -770, 300, -770, -40, 4737, 268,
+ 440, -770, 326, 223, 333, 304, -770, -770, 324, 362,
+ 68, 96, 3072, -770, -770, 4003, 466, -770, 3870, 30,
+ 4931, 2274, 87, 3870, 3870, 344, -770, -770, 4482, -770,
+ 4526, 351, 486, -770, 352, 4931, 1523, 383, 4568, 223,
+ -31, 33, -770, -770, 272, 38, -770, -770, -770, 504,
+ 43, 363, -40, 3870, 3870, 381, -770, 2540, 169, -46,
+ -770, 4136, -40, 320, -770, 223, -770, 303, -42, 395,
+ 400, 4610, 384, 3870, -8, 397, 358, -8, 161, 498,
+ 428, 511, -770, 461, -770, -770, 3870, 3870, -770, 516,
+ 527, 165, -770, 3870, -770, 564, -770, -770, 3870, 3870,
+ 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870,
+ 3870, 3870, 3870, 3870, 3870, 3870, 3870, 146, -770, -770,
+ -770, 3205, 3870, 3870, 3870, 3870, 3870, 3870, 3870, 3870,
+ 3870, 3870, 3870, 428, 156, 3870, -770, 3870, 3870, 154,
+ -22, -770, 4652, 3870, -770, 223, -54, 176, 176, -770,
+ -770, 3338, -770, 3471, -770, 223, 333, 162, 428, 162,
+ -770, -13, -770, -770, 2274, 4931, 435, 3870, -770, 514,
+ -770, 447, 593, 4931, 512, 2688, 533, 62, -770, -770,
+ -770, 4804, -770, -770, -770, -770, 130, 535, -15, -770,
+ 3870, -770, -770, 39, -770, 4804, 534, -770, -770, 14,
+ -770, -770, 19, 804, 40, -770, 458, 1572, 459, 284,
+ 462, -770, 539, -770, -770, 551, 1256, 465, -770, -770,
+ -770, 229, -770, -770, -770, 428, -770, -770, -770, -770,
+ 1609, 4270, -770, -770, -770, 2407, -770, 607, 117, -770,
+ 499, 474, 476, -770, 472, 3870, 488, -770, 3870, 489,
+ -13, -770, 96, 3870, 5010, 3870, -770, 3870, 3870, 3870,
+ 2457, 2590, 2721, 2854, 2854, 2854, 2854, 1213, 1213, 1213,
+ 1213, 582, 582, 519, 519, 519, 373, 373, 373, -770,
+ 277, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481,
+ 1481, 1481, 1481, -770, 488, 491, -770, 490, 176, 493,
+ 4312, -770, 102, 1096, -45, -770, -40, 4931, -40, 4796,
+ 333, -770, -770, -770, -770, 176, -770, -770, -770, 4931,
+ -770, 1742, -770, -770, -770, -770, 631, 48, 495, 501,
+ -770, 4804, 4804, 4804, -770, 500, -770, -12, 496, 223,
+ -67, 506, -770, -770, -770, -770, 505, 583, -770, -770,
+ 4354, -770, -770, 642, 508, -40, 517, -770, -770, -770,
+ -770, -770, 521, -770, 50, -770, -770, 364, -770, 3870,
+ -770, -770, 428, 518, -770, -770, 189, 524, -770, -770,
+ -770, -770, -770, -40, -770, 53, 55, 525, 994, 4804,
+ 528, 223, 333, -770, 555, 117, 526, -770, -770, 530,
+ 330, 529, 4398, 428, 428, -13, 4972, 1481, 3870, 4859,
+ 5055, 5076, 146, -770, 428, 428, -770, -770, -770, 9,
+ -770, -770, -770, -770, -770, 3604, -770, 442, -770, 87,
+ -770, -770, -770, 3870, 3870, 254, 254, 4804, 611, 1875,
+ -770, 422, -770, 275, -770, -770, 558, 537, 677, 4804,
+ 547, 223, -54, 1, 589, -770, -770, 4804, 330, -770,
+ -770, 3870, -770, 284, 682, -770, -770, -770, 541, 114,
+ -770, -770, 544, -770, 204, 550, -770, 3737, -770, -770,
+ -770, 223, 333, 117, 549, 698, -770, -770, 330, -770,
+ -770, 556, 699, 195, -770, -770, -770, -770, -770, 5033,
+ -770, -770, -770, -770, -770, 559, 3870, 3870, -40, 4931,
+ -770, -770, 394, 567, 628, 568, 4931, -40, 573, 599,
+ -770, 599, -770, 719, -770, -770, -770, 449, 584, 3870,
+ 12, 311, -770, 4804, -770, 4804, -770, 586, -45, -770,
+ -770, 594, -770, -770, 588, -770, 284, -770, 3870, -770,
+ 591, -770, 3870, 176, 619, 239, -770, -770, 595, -40,
+ 56, 1083, 333, 698, -770, 117, 736, 597, 644, 379,
+ 678, 737, 3870, 428, 691, 692, 428, -770, 598, 4440,
+ -770, 632, 411, 87, 2274, -770, -770, 603, -770, -770,
+ -770, 254, 608, 610, 4804, 669, 612, -770, 1525, -770,
+ -770, -770, -770, -770, 637, -770, -770, 662, 644, 57,
+ 1481, -770, 616, -770, -770, 3870, 619, -770, -770, 867,
+ -770, 695, 117, -770, -770, -770, -770, -770, -770, -770,
+ -770, -770, -770, -770, 321, 605, -770, 44, 614, 618,
+ 620, 209, 761, 4804, 5033, -770, 3870, 3870, -770, 619,
+ -770, -770, 176, -770, 87, 749, 708, -770, -770, -770,
+ 3870, 284, -770, -770, -770, -770, 627, -770, -770, -770,
+ 4804, 117, -770, -770, 629, -770, -770, 559, 624, 619,
+ -770, 768, 25, -770, 712, 363, -770, 715, -770, -770,
+ 224, -770, 714, 775, 4804, -770, 633, 634, -770, -770,
+ 766, -770, 641, 2274, 646, 60, 2008, 2008, -770, -770,
+ 419, -770, -770, 645, -770, -770, -770, 4804, 117, -770,
+ 190, -770, 782, 46, 729, 789, 649, 731, -770, 61,
+ 654, 796, 4804, -770, -770, -770, -770, 744, -770, -770,
+ -770, -770, -770, -770, -770, -770, 427, 740, -770, 660,
+ -770, -770, 741, 676, 190, -770, 680, 743, 733, 690,
+ 706, 4804, 781, -770, -770, 4804, -770, -770, 293, -770,
+ -770, 4804, -770, -770, 2141, 769, 707, 705, -770, -770,
+ -770, -770, 554, 117, -770, 790, -770, 849, 716, -770,
+ 795, -770, -770, 482, -770, -770, -770, 717, -770, -770,
+ 799, 800, 866, -770, -770, 4804, 330, -770, 797, -770,
+ 721, -770, 117, -770, 724, 728, -770, -770, 336, -770,
+ 727, -770, -770, -770, -770, 730, 783, -770, 738, -770,
+ 783, -770, 117, -770, -770, 810, 742, -770, 734, -770,
+ 745, -770
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
- -769, -769, -362, -769, -24, -769, -769, -769, -769, 530,
- -769, -223, -769, -769, 3, -769, -769, -769, -769, -769,
- -769, -769, -769, -769, -769, -769, -769, -769, -769, -769,
- -769, -769, -769, -769, -769, -769, -769, -769, -769, -769,
- -769, -769, -769, -769, -108, -769, -769, -769, 368, 494,
- 520, -123, -769, -769, -769, -769, -769, -769, -769, -769,
- -769, -769, 242, 206, -579, -769, -769, 31, -769, -769,
- -769, -383, -769, -769, 141, -769, -769, -769, -769, -769,
- -769, -769, -607, -769, 175, -193, -769, -769, 544, -769,
- 181, -769, -769, -769, -769, -769, -769, -769, -769, 0,
- -769, -769, -769, -769, -769, -769, -769, -769, -769, -769,
- -768, -769, -769, -769, -573, -769, -769, 139, -769, -769,
- -769, -769, -769, 834, -769, 11, -769, -769, -769, -769,
- -769, -769, -769, -769, -769, -769, -769, -769, -769, -65,
- -769, -769, -1, 160, -769, -769, -769, -769, -769, -769,
- -769, -769, -769, -769, -19, -363, -264, -769, -769, -769,
- -769, -769, -769, -769, 203, 459, 466, -769, -769, 333,
- 331, -769, 908, -14, 737, -446, 470, 43, -769, -769,
- -769, -670, -769, -769, -769, -769, 108, -211, -769, 19,
- -769, -769, -769, -18, 64, -769, -194, -462, -769, -769,
- 236, 35, -678, 323, -769, 729, -769, 443, 330, -769,
- -769, -769, -769, -769, 329, -769
+ -770, -770, -362, -770, -24, -770, -770, -770, -770, 545,
+ -770, -138, -770, -770, 3, -770, -770, -770, -770, -770,
+ -770, -770, -770, -770, -770, -770, -770, -770, -770, -770,
+ -770, -770, -770, -770, -770, -770, -770, -770, -770, -770,
+ -770, -770, -770, -770, -98, -770, -770, -770, 380, 509,
+ 513, -123, -770, -770, -770, -770, -770, -770, -770, -770,
+ -770, -770, 253, 228, -575, -770, -770, 37, -770, -770,
+ -770, -383, -770, -770, 147, -770, -770, -770, -770, -770,
+ -770, -770, -605, -770, 179, -198, -770, -770, 557, -770,
+ 187, -770, -770, -770, -770, -770, -770, -770, -770, -1,
+ -770, -770, -770, -770, -770, -770, -770, -770, -770, -770,
+ -769, -770, -770, -770, -576, -770, -770, 138, -770, -770,
+ -770, -770, -770, 837, -770, -3, -770, -770, -770, -770,
+ -770, -770, -770, -770, -770, -770, -770, -770, -770, -60,
+ -770, -770, -2, 160, -770, -770, -770, -770, -770, -770,
+ -770, -770, -770, -770, -19, -386, -263, -770, -770, -770,
+ -770, -770, -770, -770, 183, 387, 144, -770, -770, 331,
+ 337, -770, 912, -14, 739, -443, 473, 20, -770, -770,
+ -770, -594, -770, -770, -770, -770, 107, -232, -770, 66,
+ -770, -770, -770, -18, -4, -770, -211, -464, -770, -770,
+ 106, 65, -647, 329, -770, 732, -770, 479, 322, -770,
+ -770, -770, -770, -770, 332, -770, -770, -770
};
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule which
- number is the opposite. If YYTABLE_NINF, syntax error. */
-#define YYTABLE_NINF -540
+ number is the opposite. If zero, do what YYDEFACT says.
+ If YYTABLE_NINF, syntax error. */
+#define YYTABLE_NINF -542
static const yytype_int16 yytable[] =
{
- 150, 150, 300, 100, 163, 151, 151, 87, 700, 164,
- 168, 583, 437, 229, 678, 173, 175, 672, 580, 530,
- 581, 240, 132, 842, 765, 122, 874, 296, 326, 199,
- 185, 347, 352, 355, 550, 843, 918, 486, 723, 407,
- 770, 512, -539, 154, 154, 122, 395, 167, 202, 514,
- 226, 400, 401, 227, 134, 296, 210, 595, 35, 620,
- 634, 193, -179, 170, -538, -182, 35, 153, 153, 620,
- 280, 281, 282, 283, 284, 285, 286, 287, 288, 289,
- 290, 291, 453, 620, 924, 755, 346, 357, 208, 278,
- 279, 726, 169, 195, 633, 407, 453, -381, 296, 451,
- 455, 238, 457, 198, 600, 469, 229, 472, -383, 229,
- -382, -470, 238, 48, 238, 663, -450, -450, 3, 297,
- 503, -2, 210, 224, 607, 305, 128, 225, 296, 171,
- 203, 174, 150, 727, 176, 854, 177, 151, 315, 861,
- 298, -348, -348, -180, -467, 238, 206, 297, 81, 280,
+ 151, 151, 100, 301, 164, 152, 152, 87, 133, 165,
+ 169, 586, 553, 704, 439, 174, 176, 675, 230, 409,
+ 533, 681, 515, 583, 170, 584, 846, -541, 218, 200,
+ 186, 135, 123, 878, 35, 401, 402, 241, 327, 759,
+ 297, 348, 396, 727, 154, 154, 353, 194, 517, 297,
+ 227, 356, 847, 228, 922, 211, 598, 123, 623, 769,
+ 347, 637, 455, -179, -182, 623, 218, 610, 623, 928,
+ 196, 666, 3, 699, 148, 409, 455, -381, 209, -381,
+ -2, 239, -364, 239, 457, 471, 459, 474, 358, 488,
+ 155, 155, -383, 171, 168, 453, 239, 373, 221, 222,
+ 636, -382, 129, 48, -383, 239, 603, 149, 239, -368,
+ 150, 177, 230, 203, 300, 230, 81, -348, -348, 239,
+ 774, 700, 211, 252, 253, 254, 306, 279, 280, -469,
+ 297, 220, 298, 151, 172, 199, 221, 222, 152, 316,
+ 255, 298, 256, 257, 258, 259, 260, 261, 262, 263,
+ 264, 265, 266, 267, 268, 269, 270, 271, 272, 273,
+ 274, 275, 276, 667, 277, 760, 516, 321, 330, 646,
+ 35, -541, 632, 961, 865, 346, 822, 310, 879, 880,
+ 151, 334, 242, 328, 329, 152, 349, 535, 151, 123,
+ 297, 354, 518, 152, 561, 204, 357, 848, 151, 923,
+ 599, 381, 624, 152, 335, 638, 506, -179, -182, 835,
+ 362, 366, 901, 929, -472, 858, 489, 687, 123, 691,
+ 35, 507, 298, 155, 352, 740, 577, 730, 454, 123,
+ 35, 371, 361, 363, 367, 218, 35, 406, 175, 35,
+ 378, 852, 377, 577, 864, 774, 178, 410, 465, 773,
+ 35, -259, 299, 164, -350, -350, 887, 646, 165, 169,
+ 148, 183, 912, 184, 550, 191, 712, 551, 192, 731,
+ 155, 710, 207, 170, -472, 208, 778, 212, 155, -468,
+ 239, 464, 298, 853, 218, 407, 677, 213, 155, 219,
+ 410, 470, 218, 162, 372, 123, 163, 234, 888, 214,
+ 462, 775, 81, 410, 410, 221, 222, 225, 233, 661,
+ 408, 226, 81, 410, -259, 410, 412, 500, 81, 408,
+ 393, 81, 501, 463, 200, 950, 123, 477, 35, 713,
+ 408, 500, 81, 215, 630, 547, 501, 550, 587, 780,
+ 551, 572, 171, 168, 123, 151, 35, 218, 859, 123,
+ 152, 35, 237, 220, 221, 222, 123, 411, 35, 412,
+ 243, 974, 221, 222, -254, 657, 658, 951, 148, 689,
+ 690, 216, 412, 412, 552, -382, 662, 663, 217, 239,
+ -366, 678, 412, 245, 412, 244, 148, 246, 100, 523,
+ 247, 148, 546, 539, 218, 248, 843, -474, 148, 378,
+ 456, 149, 123, 251, 150, 689, 690, 294, 565, 295,
+ 81, 522, 296, 411, 456, 548, 151, 221, 222, 149,
+ 48, 152, 150, 277, 149, 312, 350, 150, 81, 225,
+ 692, 149, 218, 81, 150, 155, 625, 378, 626, 627,
+ 81, 305, 151, 307, 151, 872, 308, 152, 313, 152,
+ 317, 123, 674, 239, 410, 738, 383, 384, 649, 650,
+ 573, 743, 744, 379, 221, 222, 762, 500, 500, 500,
+ 319, 410, 501, 501, 501, 612, 315, 550, 814, 815,
+ 551, 577, -163, 239, 591, 503, 310, 320, 310, 981,
+ 982, 151, 911, 323, 920, 336, 152, 153, 156, 512,
+ 341, 772, 221, 222, 340, 342, 155, 649, 650, -41,
+ -41, -41, -147, -147, -147, 688, 689, 690, 355, 151,
+ -145, -145, -145, 412, 152, 500, 550, 642, 920, 551,
+ 501, 552, 155, 368, 155, 361, 552, 344, 808, 389,
+ 412, 374, 756, 689, 690, 380, 755, 386, 164, -157,
+ -157, -157, 387, 165, 169, 392, 374, 963, 380, 374,
+ 380, 236, 238, 310, 838, 274, 275, 276, 170, 277,
+ 394, 151, 151, 500, -147, 673, 152, 152, 501, 395,
+ 577, 155, -145, 397, 398, 500, 977, 698, 403, 405,
+ 501, 416, 478, 500, 552, 856, 857, 480, 501, 151,
+ 482, 483, 685, 484, 152, 486, 994, 508, 513, 155,
+ 519, 528, 521, 529, 526, 680, 680, 722, 362, 552,
+ 531, 549, 555, 560, 552, 271, 272, 273, 274, 275,
+ 276, 557, 277, 558, 720, 604, 605, 171, 168, -495,
+ -372, 363, -376, 523, 151, 597, 611, 576, 600, 152,
+ 581, 609, 613, 151, 602, 615, 617, 721, 152, 618,
+ 614, 155, 155, 783, 784, 785, 786, 787, 788, 500,
+ 620, 500, 622, 631, 501, 635, 501, 639, 641, 643,
+ 647, 648, 151, 683, 693, 695, 655, 152, 310, 155,
+ 373, 870, 701, 640, 694, 151, 708, 749, 709, 711,
+ 152, 552, 718, 724, -228, 552, 725, 729, 728, 410,
+ -463, 886, 747, 890, 783, 784, 785, 786, 787, 788,
+ 746, 748, 884, 897, 750, 751, 523, 151, 502, 817,
+ 500, 906, 152, 754, 155, 501, 909, 757, 765, 310,
+ 768, 682, 502, 155, 713, 766, 771, 818, 777, 798,
+ 799, 803, 802, 806, 807, 810, 819, 812, 552, 826,
+ 823, 703, 824, 830, 935, 827, 832, 841, 849, 850,
+ 937, 680, 155, 836, 851, 854, 861, 862, 412, 500,
+ 868, 876, 877, 874, 501, 155, 882, 885, 891, 892,
+ 894, 895, 845, 896, 898, 953, 921, 151, 900, 908,
+ 860, 924, 152, 925, 926, 927, 500, 552, 410, 930,
+ 931, 501, -540, -161, 936, 938, 968, 155, 281, 282,
+ 283, 284, 285, 286, 287, 288, 289, 290, 291, 292,
+ 500, 939, -216, 941, 942, 501, 781, 763, 980, 764,
+ 943, 523, 782, 944, 985, 783, 784, 785, 786, 787,
+ 788, 789, 945, 500, 552, 947, 552, 957, 501, 958,
+ 959, 1000, 964, 965, -452, -452, 899, 966, 500, 967,
+ 969, 971, -222, 501, 972, 976, 978, 412, 502, 502,
+ 502, 979, 984, 975, 996, 987, 988, 155, 999, 992,
+ 552, 790, 993, 509, 997, 619, 723, 500, 825, 540,
+ 1001, 500, 501, 541, 905, 828, 501, 500, 801, 753,
+ 511, 779, 501, 940, 839, 229, 805, 127, 128, 552,
+ 130, 131, 132, 134, 136, 137, 138, 139, 834, 141,
+ 142, 143, 144, 145, 146, 147, 502, 955, 158, 161,
+ 697, 500, 552, 351, 875, 696, 501, 855, 552, 370,
+ 180, 0, 707, 705, 0, 0, -540, 188, 190, 0,
+ 0, 0, 195, 0, 198, 0, 0, 781, 552, 0,
+ 0, 0, 0, 782, 871, 0, 783, 784, 785, 786,
+ 787, 788, 789, 0, 502, 0, 0, 0, 0, 0,
+ 231, 0, 0, 0, 0, 0, 502, 0, 893, 0,
+ 0, 0, -180, 0, 502, 0, 0, 0, 281, 282,
+ 283, 284, 285, 286, 287, 288, 289, 290, 291, 292,
+ 0, 910, 840, 0, 281, 282, 283, 284, 285, 286,
+ 287, 288, 289, 290, 291, 292, 932, 0, 0, 0,
+ 0, 302, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 304, 0, -452, -452, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 946, 0, 0, 0, 949,
+ -452, -452, 0, 0, 0, 952, 0, 0, 0, 0,
+ 502, 0, 502, 0, 231, 0, 0, 231, 0, 0,
+ 325, -183, 0, 0, 0, 333, 195, 281, 282, 283,
+ 284, 285, 286, 287, 288, 289, 290, 291, 292, 973,
281, 282, 283, 284, 285, 286, 287, 288, 289, 290,
- 291, 122, 370, 908, 487, 770, 241, 329, 818, 629,
- 957, 875, 876, 327, 345, 154, 348, 353, 356, 150,
- 844, 919, 299, 328, 151, 513, -539, 150, 219, 643,
- 297, 532, 151, 515, 333, -450, -450, 150, 182, 309,
- 380, 596, 151, 621, 635, 217, -179, 664, -538, -182,
- 558, 756, -470, 831, 684, -259, 688, -466, 217, 736,
- 297, 708, 154, 361, 365, 371, 334, 897, 925, 183,
- 154, 207, 217, 771, 320, 190, 547, 377, 547, 548,
- 154, 548, 191, 860, 848, 574, 351, 769, -147, -147,
- -147, 584, 163, 504, 360, 362, 366, 164, 168, 122,
- 211, 35, 574, 212, 376, 213, 674, 214, 217, 774,
- 686, 687, 122, 233, 372, 220, 221, 643, -259, 622,
- 462, 623, 624, 569, 709, 410, 849, -180, 220, 221,
- 468, 122, 405, 35, 35, 167, -254, -145, -145, -145,
- 215, 147, 220, 221, 232, 658, 122, 452, 35, 35,
- -147, 170, 238, 460, 408, 216, 498, 392, 122, 242,
- 35, 499, 463, 199, 35, 244, 475, 217, 410, 544,
- 498, 689, 236, 147, 148, 499, 627, 149, 220, 221,
- 169, 410, 410, 81, 150, 461, 855, 243, 147, 151,
- 245, 410, 122, 410, 35, 970, 122, 408, 776, -145,
- 147, 675, -350, -350, 671, 246, 148, 654, 655, 149,
- 408, 408, 247, 549, 406, 81, 81, -472, 659, 660,
- 408, 148, 408, 883, 149, 686, 687, 154, 100, 406,
- 81, 81, 536, 148, 147, 250, 149, 220, 221, 946,
- 349, 293, 81, 276, 406, 543, 81, 519, -41, -41,
- -41, 520, 646, 647, 150, 839, 273, 274, 275, 151,
- 276, 122, 122, 35, -381, 884, 294, 148, 238, -364,
- 149, 547, 295, 217, 548, 224, 81, 545, 377, -383,
- 150, 947, 150, 238, -368, 151, 758, 151, 217, 304,
- -382, 739, 740, 218, 238, -366, 238, 154, 751, 382,
- 383, 810, 811, 147, 868, 498, 498, 498, 48, 734,
- 499, 499, 499, 609, 562, 685, 686, 687, 646, 647,
- 306, 570, 588, 154, 307, 154, 409, 217, 150, 977,
- 978, 410, 377, 151, 152, 155, 161, 547, 574, 162,
- 548, 311, -163, 220, 221, 81, 312, 309, 410, 309,
- 314, 907, 238, 916, 768, 319, 150, 219, 220, 221,
- 408, 151, 498, 316, 639, 235, 237, 499, 549, 454,
- 322, 154, 318, 549, 752, 686, 687, 408, 335, 804,
- 340, 339, 409, 454, 341, 163, 343, 916, 373, 354,
- 164, 168, 379, 367, 385, 360, 378, 220, 221, 154,
- -157, -157, -157, 373, 386, 379, 373, 379, 150, 150,
- 498, 388, 670, 151, 151, 499, 959, 834, 391, 393,
- 394, 396, 498, 309, 695, 397, 402, 499, 167, 404,
- 498, 549, 414, 476, 478, 499, 150, 574, 480, 682,
- 481, 151, 866, 482, 170, 973, 484, 510, 852, 853,
- 505, 154, 154, 516, 718, 523, 549, 518, 525, 526,
- 528, 549, 882, 546, 886, 990, 554, 552, 555, 361,
- 557, -493, -372, 169, 893, 677, 677, -376, 594, 154,
- 573, 150, 902, 597, 578, 716, 151, 905, 599, 608,
- 150, 606, 610, 612, 614, 151, 611, 628, 617, 615,
- 640, 362, 636, 520, 619, 638, 498, 632, 498, 680,
- 645, 499, 644, 499, 652, 931, 690, 717, 150, 691,
- 692, 933, 372, 151, 154, 270, 271, 272, 273, 274,
- 275, 150, 276, 154, 696, 704, 151, 549, 697, -228,
- 705, 549, 707, 714, 721, 725, 949, 720, 309, 779,
- 780, 781, 782, 783, 784, 724, 743, 745, 880, -461,
- 742, 154, 744, 150, 746, 813, 498, 964, 151, 747,
- 750, 499, 753, 762, 154, 779, 780, 781, 782, 783,
- 784, 761, 764, 814, 410, 520, 767, 773, 709, 976,
- 777, 794, 795, 798, 549, 981, 778, 799, 309, 779,
- 780, 781, 782, 783, 784, 785, 154, 802, 803, 806,
- 808, 815, 996, 408, 822, 498, 832, 819, 826, 820,
- 499, 823, 828, 837, 845, 846, 850, 847, 857, 841,
- 677, 858, 864, 150, 872, 870, 856, 873, 151, 500,
- 489, 490, 498, 549, 878, 786, 501, 499, 881, 887,
- 888, 890, 891, 500, 892, 894, 896, 904, 917, 491,
- 509, 920, 921, 922, 923, 926, 498, 31, 32, 122,
- 927, 499, -161, 932, 939, 934, 154, 492, -216, 937,
- 935, 940, 938, 410, 941, 943, 953, 954, 955, 498,
- 549, 960, 549, 961, 499, 962, 963, 967, -222, 968,
- 520, 965, 895, 971, 498, 974, 972, 975, 984, 499,
- 980, 147, 408, 983, 988, 992, 993, 506, 989, 995,
- 616, 997, 719, 537, 749, 493, 549, 494, 68, 69,
- 70, 71, 72, 498, 901, 824, 508, 498, 499, 495,
- 797, 775, 499, 498, 496, 75, 76, 497, 499, 538,
- 936, 835, 228, 126, 127, 549, 129, 130, 131, 133,
- 135, 136, 137, 138, 830, 140, 141, 142, 143, 144,
- 145, 146, 801, 951, 157, 160, 693, 498, 549, 694,
- 350, 871, 499, 703, 549, 369, 179, 701, 500, 500,
- 500, 0, 0, 187, 189, 601, 602, 0, 194, 0,
- 197, 0, 0, 254, 549, 255, 256, 257, 258, 259,
- 260, 261, 262, 263, 264, 265, 266, 267, 268, 269,
- 270, 271, 272, 273, 274, 275, 230, 276, 0, 0,
- 0, 0, 0, 0, 251, 252, 253, 0, 0, 0,
- 0, 0, 0, 0, 0, 500, 0, 0, 0, 0,
- 0, 254, 637, 255, 256, 257, 258, 259, 260, 261,
+ 291, 292, 0, 0, 0, 195, 195, 0, 0, 158,
+ 0, 0, 0, 376, 0, 0, 0, 0, 0, 0,
+ 0, 502, 0, -452, -452, 391, -180, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, -452, -452, 325, 325,
+ 0, 0, -349, -349, 0, 414, 0, 0, 0, 0,
+ 420, 421, 422, 423, 424, 425, 426, 427, 428, 429,
+ 430, 431, 432, 433, 434, 435, 436, 437, 438, 0,
+ 502, 0, 0, 441, 442, 443, 444, 445, 446, 447,
+ 448, 449, 450, 451, 452, 0, 0, 325, 0, 325,
+ 460, 0, 0, 0, 0, 195, 0, 502, 0, 0,
+ 0, 0, 0, 467, 0, 469, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, -183, 0, 0, 0, 479,
+ 0, 502, 0, 0, 0, 0, 0, 0, -351, -351,
+ -542, -542, -542, -542, 269, 270, 271, 272, 273, 274,
+ 275, 276, 510, 277, 502, 252, 253, 254, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 502,
+ 0, 0, 255, 0, 256, 257, 258, 259, 260, 261,
262, 263, 264, 265, 266, 267, 268, 269, 270, 271,
- 272, 273, 274, 275, 0, 276, 301, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 303, 0, 0,
- 0, 0, 0, 500, 0, 0, 0, 0, 0, 0,
- 679, 0, 0, 0, 0, 500, 0, 0, 0, 0,
- 0, 0, 0, 500, 0, 251, 252, 253, 0, 230,
- 699, 0, 230, 0, 0, 324, 0, 0, 0, 0,
- 332, 194, 254, 0, 255, 256, 257, 258, 259, 260,
- 261, 262, 263, 264, 265, 266, 267, 268, 269, 270,
- 271, 272, 273, 274, 275, 0, 276, 0, 0, 0,
- 194, 194, 0, 0, 157, 0, 0, 0, 375, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 390, 0, 706, 0, 0, 0, 0, 0, 0, 500,
- 0, 500, 0, 324, 324, 0, 759, 0, 760, 0,
- 412, 0, 0, 0, 0, 418, 419, 420, 421, 422,
- 423, 424, 425, 426, 427, 428, 429, 430, 431, 432,
- 433, 434, 435, 436, 0, 0, 0, 0, 439, 440,
- 441, 442, 443, 444, 445, 446, 447, 448, 449, 450,
- 0, 0, 324, 0, 324, 458, 0, 0, 0, 500,
- 194, 0, 0, 0, 0, 0, 821, 0, 465, 0,
- 467, 527, 280, 281, 282, 283, 284, 285, 286, 287,
- 288, 289, 290, 291, 477, -183, 0, 0, 0, 0,
- 0, 280, 281, 282, 283, 284, 285, 286, 287, 288,
- 289, 290, 291, 0, 0, 0, 0, 507, 500, 0,
- 0, 0, 0, 0, 0, 851, 0, 777, -450, -450,
- 0, 0, 0, 778, 0, 0, 779, 780, 781, 782,
- 783, 784, 785, 0, 0, 500, 0, -450, -450, 0,
- 0, 0, 867, 0, 0, 0, 0, 0, 0, 483,
- 0, 0, 194, 0, 0, 0, 0, 0, 0, 500,
- 0, 0, 324, 0, 559, 0, 889, 0, 0, 563,
- 0, 564, 836, 566, 567, 568, 0, 0, 0, 0,
- 0, 0, 500, 0, 0, 0, 251, 252, 253, 906,
- 0, 0, 0, 0, 0, 0, 0, 500, 0, 0,
- 0, 0, 0, 254, 928, 255, 256, 257, 258, 259,
- 260, 261, 262, 263, 264, 265, 266, 267, 268, 269,
- 270, 271, 272, 273, 274, 275, 500, 276, 0, -183,
- 500, 0, 0, 942, 0, 0, 500, 945, 0, 0,
- 0, 0, 0, 948, 280, 281, 282, 283, 284, 285,
- 286, 287, 288, 289, 290, 291, 0, 5, 6, 7,
+ 272, 273, 274, 275, 276, 0, 277, 195, 502, 0,
+ 0, 0, 502, 0, 0, 0, 0, 325, 502, 0,
+ 562, 0, 0, 0, 0, 566, 0, 567, 0, 569,
+ 570, 571, 0, 0, 252, 253, 254, 5, 6, 7,
8, 9, 0, 0, 0, 0, 10, 11, 0, 0,
- 500, 0, 0, 0, 0, 0, 0, 969, 0, 0,
- 0, 587, 0, 0, 626, 0, 0, 0, 0, 0,
- -450, -450, 0, 0, 0, 0, 0, 12, 13, 0,
+ 0, 255, 502, 256, 257, 258, 259, 260, 261, 262,
+ 263, 264, 265, 266, 267, 268, 269, 270, 271, 272,
+ 273, 274, 275, 276, 0, 277, 0, 12, 13, 0,
0, 0, 0, 14, 0, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- 30, 0, 0, 656, 31, 32, 33, 34, 35, 0,
- 36, 0, 539, 0, 37, 38, 39, 40, 0, 41,
- 666, 42, 0, 43, 0, 0, 44, 0, 332, 673,
- 45, 46, 47, 48, 0, 50, 51, 0, 0, 52,
- 0, 0, 54, 0, 0, 0, 0, 0, 57, 0,
- 58, 59, 60, 0, 0, 0, 194, 0, 0, 0,
- 0, 65, 66, 342, 67, 68, 69, 70, 71, 72,
- 0, 0, 194, 0, 0, 0, 73, 0, 0, 0,
- 0, 124, 75, 76, 77, 78, 0, 79, 80, 0,
- 81, 0, 82, 83, 0, 0, 0, 0, 0, 0,
- 0, 324, 735, 0, 280, 281, 282, 283, 284, 285,
- 286, 287, 288, 289, 290, 291, 0, 0, 0, 5,
- 6, 7, 8, 9, 754, 0, 0, 0, 10, 11,
- -540, -540, -540, -540, 268, 269, 270, 271, 272, 273,
- 274, 275, 766, 276, 0, 0, 324, 0, 0, 0,
- -450, -450, 0, 0, 0, 0, 0, 0, 0, 12,
- 13, 0, 0, 0, 0, 14, 800, 15, 16, 17,
- 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
- 28, 29, 30, 0, 0, 0, 31, 32, 33, 34,
- 35, 0, 36, 0, 0, 0, 37, 38, 39, 40,
- 0, 41, 0, 42, 0, 43, 0, 0, 44, 324,
- 0, 0, 45, 46, 47, 48, 49, 50, 51, 0,
- 0, 52, 53, 0, 54, 0, 0, 0, 55, 56,
- 57, 0, 58, 59, 60, 61, 62, 63, 64, 0,
- 324, 324, 517, 65, 66, 0, 67, 68, 69, 70,
- 71, 72, 0, 0, 332, 0, 0, 0, 73, 0,
- 0, 0, 0, 74, 75, 76, 77, 78, 0, 79,
- 80, 0, 81, 0, 82, 83, 5, 6, 7, 8,
- 9, 0, 0, 0, 0, 10, 11, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 280, 281, 282, 283, 284, 285,
- 286, 287, 288, 289, 290, 291, 12, 13, 0, 0,
- 0, 0, 14, 0, 15, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
- 0, 0, 0, 31, 32, 33, 34, 35, 0, 36,
- -450, -450, 0, 37, 38, 39, 40, 0, 41, 0,
- 42, 0, 43, 0, 0, 44, 0, 0, 0, 45,
- 46, 47, 48, 0, 50, 51, 0, 0, 52, 0,
- 0, 54, 0, 0, 0, 55, 56, 57, 0, 58,
- 59, 60, 534, 62, 63, 64, 0, 0, 0, 0,
- 65, 66, 0, 67, 68, 69, 70, 71, 72, 5,
- 6, 7, 8, 9, 0, 73, 0, 0, 10, 11,
- 124, 75, 76, 77, 78, 0, 79, 80, 0, 81,
- 0, 82, 83, 681, 0, 0, 0, 0, 0, 0,
- 0, 0, -349, -349, 0, 0, 0, 0, 0, 12,
- 13, 0, 0, 0, 0, 14, 0, 15, 16, 17,
- 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
- 28, 29, 30, 0, 0, 0, 31, 32, 33, 34,
- 35, 0, 36, 0, 0, 0, 37, 38, 39, 40,
- 0, 41, 0, 42, 0, 43, 0, 0, 44, 0,
- 0, 0, 45, 46, 47, 48, 0, 50, 51, 0,
- 0, 52, 0, 0, 54, 0, 0, 0, 0, 0,
- 57, 0, 58, 59, 60, 0, 0, 0, 0, 0,
- 0, 0, 0, 65, 66, 0, 67, 68, 69, 70,
- 71, 72, 5, 6, 7, 8, 9, 0, 73, 0,
- 0, 10, 11, 124, 75, 76, 77, 78, 0, 79,
- 80, 0, 81, 0, 82, 83, 898, 0, 0, 0,
- 280, 281, 282, 283, 284, 285, 286, 287, 288, 289,
- 290, 291, 12, 13, 0, 0, 0, 0, 14, 0,
+ 30, 0, 0, 0, 31, 32, 33, 34, 35, 0,
+ 36, 530, 0, 0, 37, 38, 39, 40, 0, 41,
+ 0, 42, 0, 43, 0, 0, 44, 0, 0, 0,
+ 45, 46, 47, 48, 49, 50, 51, 0, 0, 52,
+ 53, 629, 54, 0, 0, 0, 55, 56, 57, 0,
+ 58, 59, 60, 61, 62, 63, 64, 0, 0, 0,
+ 0, 65, 66, 0, 67, 68, 69, 70, 71, 72,
+ 0, 0, 0, 0, 0, 0, 73, 0, 278, 0,
+ 659, 74, 75, 76, 77, 78, 0, 79, 80, 0,
+ 81, 0, 82, 83, 0, 0, 0, 669, 0, 0,
+ 0, 0, 0, 0, 0, 333, 676, 255, 0, 256,
+ 257, 258, 259, 260, 261, 262, 263, 264, 265, 266,
+ 267, 268, 269, 270, 271, 272, 273, 274, 275, 276,
+ 0, 277, 0, 195, 252, 253, 254, 281, 282, 283,
+ 284, 285, 286, 287, 288, 289, 290, 291, 292, 195,
+ 0, 255, 759, 256, 257, 258, 259, 260, 261, 262,
+ 263, 264, 265, 266, 267, 268, 269, 270, 271, 272,
+ 273, 274, 275, 276, 0, 277, 0, 0, 325, 739,
+ 0, 0, 0, -452, -452, 0, 281, 282, 283, 284,
+ 285, 286, 287, 288, 289, 290, 291, 292, 0, 0,
+ 0, 758, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 5, 6, 7, 8, 9, 0, 0, 0,
+ 770, 10, 11, 0, 325, 0, 0, 0, 0, 0,
+ 0, 0, -452, -452, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 804, 0, 0, 0, 0, 0,
+ 0, 0, 12, 13, 0, 0, 0, 0, 14, 0,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
- 25, 26, 27, 28, 29, 30, 0, 0, 0, 31,
- 32, 33, 34, 35, 0, 36, -450, -450, 0, 37,
+ 25, 26, 27, 28, 29, 30, 343, 0, 760, 31,
+ 32, 33, 34, 35, 0, 36, 0, 325, 0, 37,
38, 39, 40, 0, 41, 0, 42, 0, 43, 0,
0, 44, 0, 0, 0, 45, 46, 47, 48, 0,
- 50, 51, 0, 0, 52, 0, 0, 54, 0, 0,
- 0, 0, 0, 57, 0, 58, 59, 60, 0, 0,
- 0, 0, 0, 0, 0, 0, 65, 66, 0, 67,
+ 50, 51, 0, 0, 52, 0, 0, 54, 325, 325,
+ 0, 55, 56, 57, 520, 58, 59, 60, 537, 62,
+ 63, 64, 333, 0, 0, 0, 65, 66, 0, 67,
68, 69, 70, 71, 72, 5, 6, 7, 8, 9,
- 0, 73, 0, 0, 10, 11, 124, 75, 76, 77,
- 78, 0, 79, 80, 0, 81, 0, 82, 83, 950,
- 0, 0, 0, 0, 0, 0, 0, 0, -351, -351,
- 0, 0, 0, 0, 0, 12, 13, 0, 0, 0,
+ 0, 73, 0, 0, 10, 11, 125, 75, 76, 77,
+ 78, 0, 79, 80, 0, 81, 0, 82, 83, 590,
+ 0, 0, 0, 281, 282, 283, 284, 285, 286, 287,
+ 288, 289, 290, 291, 292, 12, 13, 0, 0, 0,
0, 14, 0, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 30, 0,
- 0, 0, 31, 32, 33, 34, 35, 0, 36, 0,
- 0, 0, 37, 38, 39, 40, 0, 41, 0, 42,
+ 0, 0, 31, 32, 33, 34, 35, 0, 36, -452,
+ -452, 0, 37, 38, 39, 40, 0, 41, 0, 42,
0, 43, 0, 0, 44, 0, 0, 0, 45, 46,
47, 48, 0, 50, 51, 0, 0, 52, 0, 0,
54, 0, 0, 0, 0, 0, 57, 0, 58, 59,
60, 0, 0, 0, 0, 0, 0, 0, 0, 65,
66, 0, 67, 68, 69, 70, 71, 72, 5, 6,
- 7, 8, 9, 0, 73, 0, 0, 10, 11, 124,
+ 7, 8, 9, 0, 73, 0, 0, 10, 11, 125,
75, 76, 77, 78, 0, 79, 80, 0, 81, 0,
- 82, 83, 0, 0, 0, 0, 280, 281, 282, 283,
- 284, 285, 286, 287, 288, 289, 290, 291, 12, 13,
+ 82, 83, 684, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 12, 13,
0, 0, 0, 0, 14, 0, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30, 0, 0, 0, 31, 32, 33, 34, 35,
- 0, 36, -450, -450, 0, 37, 38, 39, 40, 0,
+ 0, 36, 0, 0, 0, 37, 38, 39, 40, 0,
41, 0, 42, 0, 43, 0, 0, 44, 0, 0,
0, 45, 46, 47, 48, 0, 50, 51, 0, 0,
52, 0, 0, 54, 0, 0, 0, 0, 0, 57,
0, 58, 59, 60, 0, 0, 0, 0, 0, 0,
0, 0, 65, 66, 0, 67, 68, 69, 70, 71,
72, 5, 6, 7, 8, 9, 0, 73, 0, 0,
- 10, 11, 124, 75, 76, 77, 78, 0, 79, 80,
- 0, 81, 0, 82, 83, 0, 0, 0, 0, 0,
- 540, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 10, 11, 125, 75, 76, 77, 78, 0, 79, 80,
+ 0, 81, 0, 82, 83, 902, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 12, 13, 0, 0, 0, 0, 14, 0, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 0, 0, 0, 0, 31, 32,
- 122, 34, 35, 0, 0, 0, 0, 0, 37, 258,
- 259, 260, 261, 262, 263, 264, 265, 266, 267, 268,
- 269, 270, 271, 272, 273, 274, 275, 48, 276, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 123, 0, 0, 59, 60, 0, 0, 0,
+ 26, 27, 28, 29, 30, 0, 0, 0, 31, 32,
+ 33, 34, 35, 0, 36, 0, 0, 0, 37, 38,
+ 39, 40, 0, 41, 0, 42, 0, 43, 0, 0,
+ 44, 0, 0, 0, 45, 46, 47, 48, 0, 50,
+ 51, 0, 0, 52, 0, 0, 54, 0, 0, 0,
+ 0, 0, 57, 0, 58, 59, 60, 0, 0, 0,
0, 0, 0, 0, 0, 65, 66, 0, 67, 68,
69, 70, 71, 72, 5, 6, 7, 8, 9, 0,
- 73, 0, 0, 10, 121, 124, 75, 76, 77, 78,
- 541, 0, 0, 0, 81, 0, 82, 83, 0, 0,
- 0, 0, 0, 156, 0, 0, 0, 0, 0, 0,
+ 73, 0, 0, 10, 11, 125, 75, 76, 77, 78,
+ 0, 79, 80, 0, 81, 0, 82, 83, 954, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 12, 13, 0, 0, 0, 0,
14, 0, 15, 16, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, 26, 27, 28, 29, 0, 0, 0,
- 0, 31, 32, 122, 34, 35, 0, 0, 0, 0,
- 0, 37, 0, 259, 260, 261, 262, 263, 264, 265,
- 266, 267, 268, 269, 270, 271, 272, 273, 274, 275,
- 48, 276, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 123, 0, 0, 59, 60,
+ 23, 24, 25, 26, 27, 28, 29, 30, 0, 0,
+ 0, 31, 32, 33, 34, 35, 0, 36, 0, 0,
+ 0, 37, 38, 39, 40, 0, 41, 0, 42, 0,
+ 43, 0, 0, 44, 0, 0, 0, 45, 46, 47,
+ 48, 0, 50, 51, 0, 0, 52, 0, 0, 54,
+ 0, 0, 0, 0, 0, 57, 0, 58, 59, 60,
0, 0, 0, 0, 0, 0, 0, 0, 65, 66,
0, 67, 68, 69, 70, 71, 72, 5, 6, 7,
- 8, 9, 0, 73, 0, 0, 10, 121, 124, 75,
- 76, 77, 78, 0, 0, 0, 0, 81, 0, 82,
+ 8, 9, 0, 73, 0, 0, 10, 11, 125, 75,
+ 76, 77, 78, 0, 79, 80, 0, 81, 0, 82,
83, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 12, 13, 0,
0, 0, 0, 14, 0, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- 0, 0, 0, 0, 31, 32, 122, 34, 35, 0,
- 0, 0, 0, 0, 37, 260, 261, 262, 263, 264,
- 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
- 275, 0, 276, 48, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 123, 0,
- 0, 59, 60, 0, 0, 0, 0, 0, 0, 0,
+ 30, 0, 0, 0, 31, 32, 33, 34, 35, 0,
+ 36, 0, 0, 0, 37, 38, 39, 40, 0, 41,
+ 0, 42, 0, 43, 0, 0, 44, 0, 0, 0,
+ 45, 46, 47, 48, 0, 50, 51, 0, 0, 52,
+ 0, 0, 54, 0, 0, 0, 0, 0, 57, 0,
+ 58, 59, 60, 0, 0, 0, 0, 0, 0, 0,
0, 65, 66, 0, 67, 68, 69, 70, 71, 72,
5, 6, 7, 8, 9, 0, 73, 0, 0, 10,
- 121, 124, 75, 76, 77, 78, 0, 186, 0, 0,
- 81, 0, 82, 83, 0, 0, 0, 0, 0, 0,
+ 11, 125, 75, 76, 77, 78, 0, 79, 80, 0,
+ 81, 0, 82, 83, 0, 0, 0, 0, 0, 543,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12, 13, 0, 0, 0, 0, 14, 0, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, 28, 29, 0, 0, 0, 0, 31, 32, 122,
- 34, 35, 0, 0, 0, 0, 0, 37, -540, -540,
- -540, -540, 264, 265, 266, 267, 268, 269, 270, 271,
- 272, 273, 274, 275, 0, 276, 48, 0, 0, 0,
+ 27, 28, 29, 0, 0, 0, 0, 31, 32, 123,
+ 34, 35, 0, 0, 0, 0, 0, 37, 259, 260,
+ 261, 262, 263, 264, 265, 266, 267, 268, 269, 270,
+ 271, 272, 273, 274, 275, 276, 48, 277, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 123, 0, 0, 59, 60, 0, 0, 0, 0,
+ 0, 124, 0, 0, 59, 60, 0, 0, 0, 0,
0, 0, 0, 0, 65, 66, 0, 67, 68, 69,
70, 71, 72, 5, 6, 7, 8, 9, 0, 73,
- 0, 0, 10, 121, 124, 75, 76, 77, 78, 0,
- 188, 0, 0, 81, 0, 82, 83, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 10, 122, 125, 75, 76, 77, 78, 544,
+ 0, 0, 0, 81, 0, 82, 83, 0, 0, 0,
+ 0, 0, 157, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 12, 13, 0, 0, 0, 0, 14,
0, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 0, 0, 0, 0,
- 31, 32, 122, 34, 35, 0, 0, 0, 0, 0,
- 37, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 123, 0, 0, 59, 60, 0,
+ 31, 32, 123, 34, 35, 0, 0, 0, 0, 0,
+ 37, 0, 260, 261, 262, 263, 264, 265, 266, 267,
+ 268, 269, 270, 271, 272, 273, 274, 275, 276, 48,
+ 277, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 124, 0, 0, 59, 60, 0,
0, 0, 0, 0, 0, 0, 0, 65, 66, 0,
67, 68, 69, 70, 71, 72, 5, 6, 7, 8,
- 9, 0, 73, 0, 0, 10, 11, 124, 75, 76,
- 77, 78, 0, 192, 0, 0, 81, 0, 82, 83,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 12, 13, 0, 0,
+ 9, 0, 73, 0, 0, 10, 122, 125, 75, 76,
+ 77, 78, 0, 0, 0, 0, 81, 0, 82, 83,
+ 0, 0, 281, 282, 283, 284, 285, 286, 287, 288,
+ 289, 290, 291, 292, 0, 0, 12, 13, 0, 0,
0, 0, 14, 0, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 29, 0,
- 0, 0, 0, 31, 32, 122, 34, 35, 0, 0,
- 0, 0, 0, 37, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 48, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 123, 0, 0,
+ 0, 0, 0, 31, 32, 123, 34, 35, -452, -452,
+ 0, 0, 0, 37, 261, 262, 263, 264, 265, 266,
+ 267, 268, 269, 270, 271, 272, 273, 274, 275, 276,
+ 0, 277, 48, 0, 0, 0, 0, 0, 0, 485,
+ 0, 0, 0, 0, 0, 0, 0, 124, 0, 0,
59, 60, 0, 0, 0, 0, 0, 0, 0, 0,
65, 66, 0, 67, 68, 69, 70, 71, 72, 5,
- 6, 7, 8, 9, 0, 73, 0, 0, 10, 121,
- 124, 75, 76, 77, 78, 321, 0, 0, 0, 81,
- 0, 82, 83, 0, 0, 0, 0, 0, 438, 0,
+ 6, 7, 8, 9, 0, 73, 0, 0, 10, 122,
+ 125, 75, 76, 77, 78, 0, 187, 0, 0, 81,
+ 0, 82, 83, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 12,
13, 0, 0, 0, 0, 14, 0, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
- 28, 29, 0, 0, 0, 0, 31, 32, 122, 34,
- 35, 0, 0, 0, 0, 0, 37, 0, 0, 0,
+ 28, 29, 0, 0, 0, 0, 31, 32, 123, 34,
+ 35, 0, 0, 0, 0, 0, 37, -542, -542, -542,
+ -542, 265, 266, 267, 268, 269, 270, 271, 272, 273,
+ 274, 275, 276, 0, 277, 48, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 48, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 123, 0, 0, 59, 60, 0, 0, 0, 0, 0,
+ 124, 0, 0, 59, 60, 0, 0, 0, 0, 0,
0, 0, 0, 65, 66, 0, 67, 68, 69, 70,
71, 72, 5, 6, 7, 8, 9, 0, 73, 0,
- 0, 10, 121, 124, 75, 76, 77, 78, 0, 0,
+ 0, 10, 122, 125, 75, 76, 77, 78, 0, 189,
0, 0, 81, 0, 82, 83, 0, 0, 0, 0,
- 0, 464, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 12, 13, 0, 0, 0, 0, 14, 0,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 0, 0, 0, 0, 31,
- 32, 122, 34, 35, 0, 0, 0, 0, 0, 37,
+ 32, 123, 34, 35, 0, 0, 0, 0, 0, 37,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 48, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 123, 0, 0, 59, 60, 0, 0,
+ 0, 0, 0, 124, 0, 0, 59, 60, 0, 0,
0, 0, 0, 0, 0, 0, 65, 66, 0, 67,
68, 69, 70, 71, 72, 5, 6, 7, 8, 9,
- 0, 73, 0, 0, 10, 121, 124, 75, 76, 77,
- 78, 0, 0, 0, 0, 81, 0, 82, 83, 0,
- 0, 0, 0, 0, 466, 0, 0, 0, 0, 0,
+ 0, 73, 0, 0, 10, 11, 125, 75, 76, 77,
+ 78, 0, 193, 0, 0, 81, 0, 82, 83, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 12, 13, 0, 0, 0,
0, 14, 0, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, 29, 0, 0,
- 0, 0, 31, 32, 122, 34, 35, 0, 0, 0,
+ 0, 0, 31, 32, 123, 34, 35, 0, 0, 0,
0, 0, 37, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 48, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 123, 0, 0, 59,
+ 0, 0, 0, 0, 0, 0, 124, 0, 0, 59,
60, 0, 0, 0, 0, 0, 0, 0, 0, 65,
66, 0, 67, 68, 69, 70, 71, 72, 5, 6,
- 7, 8, 9, 0, 73, 0, 0, 10, 121, 124,
- 75, 76, 77, 78, 0, 0, 0, 0, 81, 0,
- 82, 83, 0, 0, 0, 0, 0, 665, 0, 0,
+ 7, 8, 9, 0, 73, 0, 0, 10, 122, 125,
+ 75, 76, 77, 78, 322, 0, 0, 0, 81, 0,
+ 82, 83, 0, 0, 0, 0, 0, 440, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 12, 13,
0, 0, 0, 0, 14, 0, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
- 29, 0, 0, 0, 0, 31, 32, 122, 34, 35,
+ 29, 0, 0, 0, 0, 31, 32, 123, 34, 35,
0, 0, 0, 0, 0, 37, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 48, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 123,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 124,
0, 0, 59, 60, 0, 0, 0, 0, 0, 0,
0, 0, 65, 66, 0, 67, 68, 69, 70, 71,
72, 5, 6, 7, 8, 9, 0, 73, 0, 0,
- 10, 121, 124, 75, 76, 77, 78, 0, 0, 0,
+ 10, 122, 125, 75, 76, 77, 78, 0, 0, 0,
0, 81, 0, 82, 83, 0, 0, 0, 0, 0,
- 715, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 466, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 12, 13, 0, 0, 0, 0, 14, 0, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 29, 0, 0, 0, 0, 31, 32,
- 122, 34, 35, 0, 0, 0, 0, 0, 37, 0,
+ 123, 34, 35, 0, 0, 0, 0, 0, 37, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 48, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 123, 0, 0, 59, 60, 0, 0, 0,
+ 0, 0, 124, 0, 0, 59, 60, 0, 0, 0,
0, 0, 0, 0, 0, 65, 66, 0, 67, 68,
69, 70, 71, 72, 5, 6, 7, 8, 9, 0,
- 73, 0, 0, 10, 121, 124, 75, 76, 77, 78,
+ 73, 0, 0, 10, 122, 125, 75, 76, 77, 78,
0, 0, 0, 0, 81, 0, 82, 83, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 468, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 12, 13, 0, 0, 0, 0,
14, 0, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 28, 29, 0, 0, 0,
- 0, 31, 32, 122, 34, 35, 0, 0, 0, 0,
+ 0, 31, 32, 123, 34, 35, 0, 0, 0, 0,
0, 37, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 123, 0, 0, 59, 60,
+ 0, 0, 0, 0, 0, 124, 0, 0, 59, 60,
0, 0, 0, 0, 0, 0, 0, 0, 65, 66,
0, 67, 68, 69, 70, 71, 72, 5, 6, 7,
- 8, 9, 0, 73, 0, 0, 10, 11, 124, 75,
+ 8, 9, 0, 73, 0, 0, 10, 122, 125, 75,
76, 77, 78, 0, 0, 0, 0, 81, 0, 82,
- 83, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 83, 0, 0, 0, 0, 0, 668, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 12, 13, 0,
0, 0, 0, 14, 0, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
- 0, 0, 0, 0, 31, 32, 122, 34, 35, 0,
+ 0, 0, 0, 0, 31, 32, 123, 34, 35, 0,
0, 0, 0, 0, 37, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 48, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 123, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 124, 0,
0, 59, 60, 0, 0, 0, 0, 0, 0, 0,
0, 65, 66, 0, 67, 68, 69, 70, 71, 72,
5, 6, 7, 8, 9, 0, 73, 0, 0, 10,
- 121, 124, 75, 76, 77, 78, 0, 0, 0, 0,
- 81, 0, 82, 83, 0, 0, 0, 0, 0, 0,
+ 122, 125, 75, 76, 77, 78, 0, 0, 0, 0,
+ 81, 0, 82, 83, 0, 0, 0, 0, 0, 719,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
12, 13, 0, 0, 0, 0, 14, 0, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, 28, 29, 0, 0, 0, 0, 31, 32, 122,
- 374, 35, 0, 0, 0, 0, 0, 37, 0, 0,
+ 27, 28, 29, 0, 0, 0, 0, 31, 32, 123,
+ 34, 35, 0, 0, 0, 0, 0, 37, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 48, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 123, 0, 0, 59, 60, 0, 0, 0, 0,
+ 0, 124, 0, 0, 59, 60, 0, 0, 0, 0,
0, 0, 0, 0, 65, 66, 0, 67, 68, 69,
- 70, 71, 72, 0, 0, 0, 0, 0, 0, 73,
- 251, 252, 253, 0, 124, 75, 76, 77, 78, 0,
- 0, 0, 0, 81, 0, 82, 83, 254, 0, 255,
+ 70, 71, 72, 5, 6, 7, 8, 9, 0, 73,
+ 0, 0, 10, 122, 125, 75, 76, 77, 78, 0,
+ 0, 0, 0, 81, 0, 82, 83, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 12, 13, 0, 0, 0, 0, 14,
+ 0, 15, 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 28, 29, 0, 0, 0, 0,
+ 31, 32, 123, 34, 35, 0, 0, 0, 0, 0,
+ 37, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 48,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 124, 0, 0, 59, 60, 0,
+ 0, 0, 0, 0, 0, 0, 0, 65, 66, 0,
+ 67, 68, 69, 70, 71, 72, 5, 6, 7, 8,
+ 9, 0, 73, 0, 0, 10, 11, 125, 75, 76,
+ 77, 78, 0, 0, 0, 0, 81, 0, 82, 83,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 12, 13, 0, 0,
+ 0, 0, 14, 0, 15, 16, 17, 18, 19, 20,
+ 21, 22, 23, 24, 25, 26, 27, 28, 29, 0,
+ 0, 0, 0, 31, 32, 123, 34, 35, 0, 0,
+ 0, 0, 0, 37, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 48, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 124, 0, 0,
+ 59, 60, 0, 0, 0, 0, 0, 0, 0, 0,
+ 65, 66, 0, 67, 68, 69, 70, 71, 72, 5,
+ 6, 7, 8, 9, 0, 73, 0, 0, 10, 122,
+ 125, 75, 76, 77, 78, 0, 0, 0, 0, 81,
+ 0, 82, 83, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 12,
+ 13, 0, 0, 0, 0, 14, 0, 15, 16, 17,
+ 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
+ 28, 29, 0, 0, 0, 0, 31, 32, 123, 375,
+ 35, 0, 0, 0, 0, 0, 37, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 48, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 124, 0, 0, 59, 60, 0, 0, 0, 0, 0,
+ 0, 0, 0, 65, 66, 0, 67, 68, 69, 70,
+ 71, 72, 0, 0, 0, 0, 0, 0, 73, 252,
+ 253, 254, 0, 125, 75, 76, 77, 78, 0, 0,
+ 0, 0, 81, 0, 82, 83, 255, 0, 256, 257,
+ 258, 259, 260, 261, 262, 263, 264, 265, 266, 267,
+ 268, 269, 270, 271, 272, 273, 274, 275, 276, 0,
+ 277, 252, 253, 254, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 255, 0,
256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
266, 267, 268, 269, 270, 271, 272, 273, 274, 275,
- 0, 276, 251, 252, 253, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 254,
- 0, 255, 256, 257, 258, 259, 260, 261, 262, 263,
+ 276, 0, 277, 252, 253, 254, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 255, 0, 256, 257, 258, 259, 260, 261, 262, 263,
264, 265, 266, 267, 268, 269, 270, 271, 272, 273,
- 274, 275, 0, 276, 251, 252, 253, 0, 0, 0,
+ 274, 275, 276, 0, 277, 0, 0, 252, 253, 254,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 254, 0, 255, 256, 257, 258, 259, 260, 261,
- 262, 263, 264, 265, 266, 267, 268, 269, 270, 271,
- 272, 273, 274, 275, 0, 276, 0, 0, 251, 252,
- 253, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 254, 579, 255, 256, 257,
+ 0, 0, 0, 0, 255, 542, 256, 257, 258, 259,
+ 260, 261, 262, 263, 264, 265, 266, 267, 268, 269,
+ 270, 271, 272, 273, 274, 275, 276, 0, 277, 252,
+ 253, 254, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 255, 582, 256, 257,
258, 259, 260, 261, 262, 263, 264, 265, 266, 267,
- 268, 269, 270, 271, 272, 273, 274, 275, 0, 276,
- 0, 0, 251, 252, 253, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 613, 254,
- 755, 255, 256, 257, 258, 259, 260, 261, 262, 263,
- 264, 265, 266, 267, 268, 269, 270, 271, 272, 273,
- 274, 275, 0, 276, 251, 252, 253, 0, 0, 0,
+ 268, 269, 270, 271, 272, 273, 274, 275, 276, 0,
+ 277, 252, 253, 254, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 255, 616,
+ 256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
+ 266, 267, 268, 269, 270, 271, 272, 273, 274, 275,
+ 276, 0, 277, 0, 0, 252, 253, 254, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 653, 254, 0, 255, 256, 257, 258, 259, 260, 261,
+ 0, 0, 255, 656, 256, 257, 258, 259, 260, 261,
262, 263, 264, 265, 266, 267, 268, 269, 270, 271,
- 272, 273, 274, 275, 0, 276, 251, 252, 253, 0,
+ 272, 273, 274, 275, 276, 0, 277, 252, 253, 254,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 254, 807, 255, 256, 257, 258, 259,
+ 0, 0, 0, 0, 255, 811, 256, 257, 258, 259,
260, 261, 262, 263, 264, 265, 266, 267, 268, 269,
- 270, 271, 272, 273, 274, 275, 0, 276, 251, 252,
- 253, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 254, 756, 255, 256, 257,
+ 270, 271, 272, 273, 274, 275, 276, 0, 277, 252,
+ 253, 254, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 338, 255, 0, 256, 257,
258, 259, 260, 261, 262, 263, 264, 265, 266, 267,
- 268, 269, 270, 271, 272, 273, 274, 275, 0, 276,
- 251, 252, 253, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 254, 277, 255,
+ 268, 269, 270, 271, 272, 273, 274, 275, 276, 0,
+ 277, 252, 253, 254, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 255, 339,
256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
266, 267, 268, 269, 270, 271, 272, 273, 274, 275,
- 0, 276, 251, 252, 253, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 254,
- 337, 255, 256, 257, 258, 259, 260, 261, 262, 263,
+ 276, 0, 277, 252, 253, 254, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 255, 345, 256, 257, 258, 259, 260, 261, 262, 263,
264, 265, 266, 267, 268, 269, 270, 271, 272, 273,
- 274, 275, 0, 276, 251, 252, 253, 0, 0, 0,
+ 274, 275, 276, 0, 277, 0, 252, 253, 254, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 388, 255, 0, 256, 257, 258, 259, 260,
+ 261, 262, 263, 264, 265, 266, 267, 268, 269, 270,
+ 271, 272, 273, 274, 275, 276, 0, 277, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 461, 252, 253, 254, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 254, 338, 255, 256, 257, 258, 259, 260, 261,
+ 303, 0, 255, 0, 256, 257, 258, 259, 260, 261,
262, 263, 264, 265, 266, 267, 268, 269, 270, 271,
- 272, 273, 274, 275, 0, 276, 251, 252, 253, 0,
+ 272, 273, 274, 275, 276, 0, 277, 491, 492, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 254, 344, 255, 256, 257, 258, 259,
- 260, 261, 262, 263, 264, 265, 266, 267, 268, 269,
- 270, 271, 272, 273, 274, 275, 0, 276, 0, 251,
- 252, 253, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 387, 254, 0, 255, 256,
+ 0, 0, 0, 311, 0, 0, 493, 0, 252, 253,
+ 254, 0, 0, 0, 31, 32, 123, 0, 0, 0,
+ 0, 0, 0, 0, 494, 255, 660, 256, 257, 258,
+ 259, 260, 261, 262, 263, 264, 265, 266, 267, 268,
+ 269, 270, 271, 272, 273, 274, 275, 276, 0, 277,
+ 0, 0, 0, 0, 0, 0, 0, 0, 148, 0,
+ 0, 0, 585, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 495, 0, 496, 68, 69, 70, 71, 72,
+ 252, 253, 254, 0, 0, 0, 497, 0, 0, 0,
+ 0, 498, 75, 76, 499, 0, 0, 255, 0, 256,
257, 258, 259, 260, 261, 262, 263, 264, 265, 266,
- 267, 268, 269, 270, 271, 272, 273, 274, 275, 0,
- 276, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 459, 251, 252,
- 253, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 302, 0, 254, 0, 255, 256, 257,
- 258, 259, 260, 261, 262, 263, 264, 265, 266, 267,
- 268, 269, 270, 271, 272, 273, 274, 275, 0, 276,
- 251, 252, 253, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 310, 254, 657, 255,
+ 267, 268, 269, 270, 271, 272, 273, 274, 275, 276,
+ 0, 277, 253, 254, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 255, 0,
256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
266, 267, 268, 269, 270, 271, 272, 273, 274, 275,
- 0, 276, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 251, 252, 253,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 254, 582, 255, 256, 257, 258,
- 259, 260, 261, 262, 263, 264, 265, 266, 267, 268,
- 269, 270, 271, 272, 273, 274, 275, 0, 276, 252,
- 253, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 254, 0, 255, 256, 257,
+ 276, 254, 277, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 255, 0, 256, 257,
258, 259, 260, 261, 262, 263, 264, 265, 266, 267,
- 268, 269, 270, 271, 272, 273, 274, 275, 253, 276,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 254, 0, 255, 256, 257, 258, 259,
- 260, 261, 262, 263, 264, 265, 266, 267, 268, 269,
- 270, 271, 272, 273, 274, 275, 0, 276, 255, 256,
- 257, 258, 259, 260, 261, 262, 263, 264, 265, 266,
- 267, 268, 269, 270, 271, 272, 273, 274, 275, 0,
- 276, 256, 257, 258, 259, 260, 261, 262, 263, 264,
+ 268, 269, 270, 271, 272, 273, 274, 275, 276, 0,
+ 277, 256, 257, 258, 259, 260, 261, 262, 263, 264,
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
- 275, 0, 276, 257, 258, 259, 260, 261, 262, 263,
- 264, 265, 266, 267, 268, 269, 270, 271, 272, 273,
- 274, 275, 0, 276
+ 275, 276, 0, 277, 257, 258, 259, 260, 261, 262,
+ 263, 264, 265, 266, 267, 268, 269, 270, 271, 272,
+ 273, 274, 275, 276, 0, 277, 258, 259, 260, 261,
+ 262, 263, 264, 265, 266, 267, 268, 269, 270, 271,
+ 272, 273, 274, 275, 276, 0, 277
};
-#define yypact_value_is_default(yystate) \
- ((yystate) == (-769))
-
-#define yytable_value_is_error(yytable_value) \
- ((yytable_value) == (-540))
-
static const yytype_int16 yycheck[] =
{
- 24, 25, 125, 4, 28, 24, 25, 4, 615, 28,
- 28, 473, 276, 78, 593, 29, 30, 590, 464, 381,
- 466, 8, 11, 791, 702, 72, 8, 62, 8, 53,
- 44, 8, 8, 8, 397, 8, 8, 27, 645, 250,
- 710, 8, 8, 24, 25, 72, 239, 28, 74, 8,
- 74, 245, 246, 77, 11, 62, 57, 8, 74, 8,
- 8, 50, 8, 28, 8, 8, 74, 24, 25, 8,
+ 24, 25, 4, 126, 28, 24, 25, 4, 11, 28,
+ 28, 475, 398, 618, 277, 29, 30, 593, 78, 251,
+ 382, 596, 8, 466, 28, 468, 795, 8, 74, 53,
+ 44, 11, 72, 8, 74, 246, 247, 8, 8, 27,
+ 62, 8, 240, 648, 24, 25, 8, 50, 8, 62,
+ 74, 8, 8, 77, 8, 57, 8, 72, 8, 706,
+ 91, 8, 294, 8, 8, 8, 74, 79, 8, 8,
+ 50, 62, 0, 72, 114, 307, 308, 146, 74, 146,
+ 0, 150, 151, 150, 295, 317, 297, 319, 211, 27,
+ 24, 25, 146, 28, 28, 293, 150, 143, 144, 145,
+ 543, 146, 151, 99, 146, 150, 489, 147, 150, 151,
+ 150, 27, 172, 74, 118, 175, 156, 152, 153, 150,
+ 714, 120, 124, 9, 10, 11, 150, 60, 61, 151,
+ 62, 143, 154, 157, 151, 150, 144, 145, 157, 163,
+ 26, 154, 28, 29, 30, 31, 32, 33, 34, 35,
+ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
+ 46, 47, 48, 154, 50, 153, 152, 171, 182, 555,
+ 74, 152, 534, 942, 821, 199, 751, 157, 153, 154,
+ 204, 184, 153, 153, 181, 204, 153, 385, 212, 72,
+ 62, 153, 152, 212, 405, 156, 153, 153, 222, 153,
+ 152, 225, 152, 222, 184, 152, 344, 152, 152, 152,
+ 213, 214, 152, 152, 146, 809, 154, 600, 72, 602,
+ 74, 91, 154, 157, 204, 668, 458, 32, 72, 72,
+ 74, 62, 212, 213, 214, 74, 74, 72, 151, 74,
+ 79, 32, 222, 475, 820, 839, 62, 251, 72, 713,
+ 74, 62, 156, 277, 152, 153, 32, 643, 277, 277,
+ 114, 151, 72, 151, 147, 72, 62, 150, 72, 74,
+ 204, 157, 120, 277, 146, 120, 719, 151, 212, 151,
+ 150, 305, 154, 74, 74, 120, 32, 151, 222, 79,
+ 294, 315, 74, 147, 125, 72, 150, 79, 74, 151,
+ 303, 62, 156, 307, 308, 144, 145, 150, 154, 572,
+ 154, 154, 156, 317, 125, 319, 251, 341, 156, 154,
+ 159, 156, 341, 303, 348, 32, 72, 324, 74, 125,
+ 154, 355, 156, 151, 532, 395, 355, 147, 476, 725,
+ 150, 64, 277, 277, 72, 369, 74, 74, 812, 72,
+ 369, 74, 79, 143, 144, 145, 72, 251, 74, 294,
+ 72, 966, 144, 145, 125, 563, 564, 74, 114, 94,
+ 95, 151, 307, 308, 398, 146, 574, 575, 151, 150,
+ 151, 127, 317, 153, 319, 72, 114, 62, 390, 369,
+ 62, 114, 395, 390, 74, 32, 782, 62, 114, 79,
+ 294, 147, 72, 146, 150, 94, 95, 146, 412, 62,
+ 156, 127, 125, 307, 308, 395, 440, 144, 145, 147,
+ 99, 440, 150, 50, 147, 157, 154, 150, 156, 150,
+ 155, 147, 74, 156, 150, 369, 72, 79, 74, 75,
+ 156, 150, 466, 146, 468, 831, 146, 466, 8, 468,
+ 146, 72, 590, 150, 458, 666, 153, 154, 128, 129,
+ 440, 67, 68, 143, 144, 145, 155, 491, 492, 493,
+ 146, 475, 491, 492, 493, 499, 150, 147, 67, 68,
+ 150, 713, 152, 150, 481, 341, 466, 125, 468, 153,
+ 154, 515, 878, 27, 880, 151, 515, 24, 25, 355,
+ 14, 712, 144, 145, 153, 153, 440, 128, 129, 67,
+ 68, 69, 93, 94, 95, 93, 94, 95, 14, 543,
+ 93, 94, 95, 458, 543, 549, 147, 551, 914, 150,
+ 549, 555, 466, 152, 468, 515, 560, 154, 736, 155,
+ 475, 219, 93, 94, 95, 223, 684, 152, 572, 67,
+ 68, 69, 152, 572, 572, 158, 234, 943, 236, 237,
+ 238, 82, 83, 543, 775, 46, 47, 48, 572, 50,
+ 72, 595, 596, 597, 155, 589, 595, 596, 597, 151,
+ 812, 515, 155, 72, 123, 609, 972, 611, 72, 62,
+ 609, 27, 157, 617, 618, 806, 807, 83, 617, 623,
+ 153, 8, 599, 91, 623, 72, 992, 72, 74, 543,
+ 152, 72, 153, 62, 152, 595, 596, 641, 621, 643,
+ 155, 14, 123, 151, 648, 43, 44, 45, 46, 47,
+ 48, 157, 50, 157, 637, 491, 492, 572, 572, 151,
+ 151, 621, 151, 623, 668, 14, 150, 157, 153, 668,
+ 157, 151, 146, 677, 153, 72, 14, 637, 677, 151,
+ 155, 595, 596, 109, 110, 111, 112, 113, 114, 693,
+ 153, 695, 151, 155, 693, 151, 695, 152, 150, 124,
+ 154, 151, 706, 72, 126, 8, 157, 706, 668, 623,
+ 143, 829, 103, 549, 157, 719, 14, 677, 157, 155,
+ 719, 725, 152, 154, 99, 729, 8, 8, 152, 713,
+ 151, 849, 84, 851, 109, 110, 111, 112, 113, 114,
+ 153, 153, 845, 861, 151, 126, 706, 751, 341, 743,
+ 754, 869, 751, 14, 668, 754, 874, 153, 152, 719,
+ 152, 597, 355, 677, 125, 151, 155, 744, 153, 152,
+ 106, 14, 74, 62, 62, 157, 153, 125, 782, 90,
+ 152, 617, 152, 126, 902, 153, 104, 72, 154, 151,
+ 908, 751, 706, 157, 154, 14, 27, 69, 713, 803,
+ 153, 157, 14, 154, 803, 719, 74, 72, 74, 14,
+ 157, 157, 794, 27, 153, 933, 14, 821, 152, 154,
+ 814, 72, 821, 14, 155, 74, 830, 831, 812, 155,
+ 14, 830, 8, 69, 74, 155, 954, 751, 14, 15,
+ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
+ 854, 155, 91, 153, 91, 854, 100, 693, 976, 695,
+ 107, 821, 106, 153, 982, 109, 110, 111, 112, 113,
+ 114, 115, 146, 877, 878, 74, 880, 88, 877, 152,
+ 155, 999, 72, 14, 60, 61, 863, 151, 892, 74,
+ 153, 72, 72, 892, 8, 154, 152, 812, 491, 492,
+ 493, 153, 155, 86, 74, 155, 103, 821, 154, 151,
+ 914, 155, 990, 348, 152, 515, 643, 921, 754, 390,
+ 155, 925, 921, 390, 867, 758, 925, 931, 729, 681,
+ 353, 724, 931, 914, 776, 78, 733, 5, 6, 943,
+ 8, 9, 10, 11, 12, 13, 14, 15, 768, 17,
+ 18, 19, 20, 21, 22, 23, 549, 934, 26, 27,
+ 609, 965, 966, 204, 837, 608, 965, 803, 972, 217,
+ 38, -1, 623, 621, -1, -1, 152, 45, 46, -1,
+ -1, -1, 50, -1, 52, -1, -1, 100, 992, -1,
+ -1, -1, -1, 106, 830, -1, 109, 110, 111, 112,
+ 113, 114, 115, -1, 597, -1, -1, -1, -1, -1,
+ 78, -1, -1, -1, -1, -1, 609, -1, 854, -1,
+ -1, -1, 8, -1, 617, -1, -1, -1, 14, 15,
+ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
+ -1, 877, 155, -1, 14, 15, 16, 17, 18, 19,
+ 20, 21, 22, 23, 24, 25, 892, -1, -1, -1,
+ -1, 129, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 140, -1, 60, 61, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 921, -1, -1, -1, 925,
+ 60, 61, -1, -1, -1, 931, -1, -1, -1, -1,
+ 693, -1, 695, -1, 172, -1, -1, 175, -1, -1,
+ 178, 8, -1, -1, -1, 183, 184, 14, 15, 16,
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 965,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 293, 8, 8, 27, 91, 210, 74, 60,
- 61, 32, 28, 50, 540, 306, 307, 146, 62, 292,
- 294, 150, 296, 150, 487, 316, 171, 318, 146, 174,
- 146, 146, 150, 99, 150, 62, 60, 61, 0, 154,
- 343, 0, 123, 150, 79, 149, 151, 154, 62, 151,
- 156, 151, 156, 74, 27, 805, 62, 156, 162, 817,
- 156, 152, 153, 8, 151, 150, 120, 154, 156, 14,
- 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
- 25, 72, 62, 72, 154, 835, 153, 181, 747, 531,
- 938, 153, 154, 153, 198, 156, 153, 153, 153, 203,
- 153, 153, 118, 180, 203, 152, 152, 211, 143, 552,
- 154, 384, 211, 152, 183, 60, 61, 221, 151, 156,
- 224, 152, 221, 152, 152, 74, 152, 154, 152, 152,
- 404, 153, 146, 152, 597, 62, 599, 151, 74, 665,
- 154, 62, 203, 212, 213, 125, 183, 152, 152, 151,
- 211, 120, 74, 62, 170, 72, 147, 79, 147, 150,
- 221, 150, 72, 816, 32, 456, 203, 709, 93, 94,
- 95, 474, 276, 91, 211, 212, 213, 276, 276, 72,
- 151, 74, 473, 151, 221, 151, 32, 151, 74, 715,
- 94, 95, 72, 79, 143, 144, 145, 640, 125, 72,
- 304, 74, 75, 64, 125, 250, 74, 152, 144, 145,
- 314, 72, 72, 74, 74, 276, 125, 93, 94, 95,
- 151, 114, 144, 145, 154, 569, 72, 72, 74, 74,
- 155, 276, 150, 302, 250, 151, 340, 159, 72, 72,
- 74, 340, 72, 347, 74, 153, 323, 74, 293, 394,
- 354, 155, 79, 114, 147, 354, 529, 150, 144, 145,
- 276, 306, 307, 156, 368, 302, 808, 72, 114, 368,
- 62, 316, 72, 318, 74, 962, 72, 293, 721, 155,
- 114, 127, 152, 153, 587, 62, 147, 560, 561, 150,
- 306, 307, 32, 397, 154, 156, 156, 62, 571, 572,
- 316, 147, 318, 32, 150, 94, 95, 368, 389, 154,
- 156, 156, 389, 147, 114, 146, 150, 144, 145, 32,
- 154, 146, 156, 50, 154, 394, 156, 127, 67, 68,
- 69, 368, 128, 129, 438, 778, 46, 47, 48, 438,
- 50, 72, 72, 74, 146, 74, 62, 147, 150, 151,
- 150, 147, 125, 74, 150, 150, 156, 394, 79, 146,
- 464, 74, 466, 150, 151, 464, 155, 466, 74, 150,
- 146, 67, 68, 79, 150, 151, 150, 438, 681, 153,
- 154, 67, 68, 114, 827, 489, 490, 491, 99, 663,
- 489, 490, 491, 497, 410, 93, 94, 95, 128, 129,
- 146, 438, 479, 464, 146, 466, 250, 74, 512, 153,
- 154, 456, 79, 512, 24, 25, 147, 147, 709, 150,
- 150, 157, 152, 144, 145, 156, 8, 464, 473, 466,
- 150, 874, 150, 876, 708, 125, 540, 143, 144, 145,
- 456, 540, 546, 146, 548, 82, 83, 546, 552, 293,
- 27, 512, 146, 557, 93, 94, 95, 473, 151, 732,
- 14, 153, 306, 307, 153, 569, 154, 910, 218, 14,
- 569, 569, 222, 152, 152, 512, 143, 144, 145, 540,
- 67, 68, 69, 233, 152, 235, 236, 237, 592, 593,
- 594, 155, 586, 592, 593, 594, 939, 771, 158, 72,
- 151, 72, 606, 540, 608, 123, 72, 606, 569, 62,
- 614, 615, 27, 157, 83, 614, 620, 808, 153, 596,
- 8, 620, 825, 91, 569, 968, 72, 74, 802, 803,
- 72, 592, 593, 152, 638, 152, 640, 153, 72, 62,
- 155, 645, 845, 14, 847, 988, 157, 123, 157, 618,
- 151, 151, 151, 569, 857, 592, 593, 151, 14, 620,
- 157, 665, 865, 153, 157, 634, 665, 870, 153, 150,
- 674, 151, 146, 72, 14, 674, 155, 155, 153, 151,
- 124, 618, 152, 620, 151, 150, 690, 151, 692, 72,
- 151, 690, 154, 692, 157, 898, 126, 634, 702, 157,
- 8, 904, 143, 702, 665, 43, 44, 45, 46, 47,
- 48, 715, 50, 674, 72, 14, 715, 721, 103, 99,
- 157, 725, 155, 152, 8, 8, 929, 154, 665, 109,
- 110, 111, 112, 113, 114, 152, 84, 674, 841, 151,
- 153, 702, 153, 747, 151, 739, 750, 950, 747, 126,
- 14, 750, 153, 151, 715, 109, 110, 111, 112, 113,
- 114, 152, 152, 740, 709, 702, 155, 153, 125, 972,
- 100, 152, 106, 74, 778, 978, 106, 14, 715, 109,
- 110, 111, 112, 113, 114, 115, 747, 62, 62, 157,
- 125, 153, 995, 709, 90, 799, 157, 152, 126, 152,
- 799, 153, 104, 72, 154, 151, 14, 154, 27, 790,
- 747, 69, 153, 817, 157, 154, 810, 14, 817, 340,
- 43, 44, 826, 827, 74, 155, 340, 826, 72, 74,
- 14, 157, 157, 354, 27, 153, 152, 154, 14, 62,
- 354, 72, 14, 155, 74, 155, 850, 70, 71, 72,
- 14, 850, 69, 74, 107, 155, 817, 80, 91, 153,
- 155, 153, 91, 808, 146, 74, 88, 152, 155, 873,
- 874, 72, 876, 14, 873, 151, 74, 72, 72, 8,
- 817, 153, 859, 86, 888, 152, 154, 153, 103, 888,
- 155, 114, 808, 155, 151, 74, 152, 347, 986, 154,
- 512, 155, 640, 389, 678, 128, 910, 130, 131, 132,
- 133, 134, 135, 917, 863, 754, 352, 921, 917, 142,
- 725, 720, 921, 927, 147, 148, 149, 150, 927, 389,
- 910, 772, 78, 5, 6, 939, 8, 9, 10, 11,
- 12, 13, 14, 15, 764, 17, 18, 19, 20, 21,
- 22, 23, 729, 930, 26, 27, 605, 961, 962, 606,
- 203, 833, 961, 620, 968, 216, 38, 618, 489, 490,
- 491, -1, -1, 45, 46, 489, 490, -1, 50, -1,
- 52, -1, -1, 26, 988, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, 78, 50, -1, -1,
- -1, -1, -1, -1, 9, 10, 11, -1, -1, -1,
- -1, -1, -1, -1, -1, 546, -1, -1, -1, -1,
- -1, 26, 546, 28, 29, 30, 31, 32, 33, 34,
- 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
- 45, 46, 47, 48, -1, 50, 128, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 139, -1, -1,
- -1, -1, -1, 594, -1, -1, -1, -1, -1, -1,
- 594, -1, -1, -1, -1, 606, -1, -1, -1, -1,
- -1, -1, -1, 614, -1, 9, 10, 11, -1, 171,
- 614, -1, 174, -1, -1, 177, -1, -1, -1, -1,
- 182, 183, 26, -1, 28, 29, 30, 31, 32, 33,
+ 24, 25, -1, -1, -1, 213, 214, -1, -1, 217,
+ -1, -1, -1, 221, -1, -1, -1, -1, -1, -1,
+ -1, 754, -1, 60, 61, 233, 152, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 60, 61, 246, 247,
+ -1, -1, 152, 153, -1, 253, -1, -1, -1, -1,
+ 258, 259, 260, 261, 262, 263, 264, 265, 266, 267,
+ 268, 269, 270, 271, 272, 273, 274, 275, 276, -1,
+ 803, -1, -1, 281, 282, 283, 284, 285, 286, 287,
+ 288, 289, 290, 291, 292, -1, -1, 295, -1, 297,
+ 298, -1, -1, -1, -1, 303, -1, 830, -1, -1,
+ -1, -1, -1, 311, -1, 313, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 152, -1, -1, -1, 327,
+ -1, 854, -1, -1, -1, -1, -1, -1, 152, 153,
+ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
+ 47, 48, 350, 50, 877, 9, 10, 11, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 892,
+ -1, -1, 26, -1, 28, 29, 30, 31, 32, 33,
34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
- 44, 45, 46, 47, 48, -1, 50, -1, -1, -1,
- 212, 213, -1, -1, 216, -1, -1, -1, 220, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 232, -1, 157, -1, -1, -1, -1, -1, -1, 690,
- -1, 692, -1, 245, 246, -1, 690, -1, 692, -1,
- 252, -1, -1, -1, -1, 257, 258, 259, 260, 261,
- 262, 263, 264, 265, 266, 267, 268, 269, 270, 271,
- 272, 273, 274, 275, -1, -1, -1, -1, 280, 281,
- 282, 283, 284, 285, 286, 287, 288, 289, 290, 291,
- -1, -1, 294, -1, 296, 297, -1, -1, -1, 750,
- 302, -1, -1, -1, -1, -1, 750, -1, 310, -1,
- 312, 155, 14, 15, 16, 17, 18, 19, 20, 21,
- 22, 23, 24, 25, 326, 8, -1, -1, -1, -1,
- -1, 14, 15, 16, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, -1, -1, -1, -1, 349, 799, -1,
- -1, -1, -1, -1, -1, 799, -1, 100, 60, 61,
- -1, -1, -1, 106, -1, -1, 109, 110, 111, 112,
- 113, 114, 115, -1, -1, 826, -1, 60, 61, -1,
- -1, -1, 826, -1, -1, -1, -1, -1, -1, 91,
- -1, -1, 394, -1, -1, -1, -1, -1, -1, 850,
- -1, -1, 404, -1, 406, -1, 850, -1, -1, 411,
- -1, 413, 155, 415, 416, 417, -1, -1, -1, -1,
- -1, -1, 873, -1, -1, -1, 9, 10, 11, 873,
- -1, -1, -1, -1, -1, -1, -1, 888, -1, -1,
- -1, -1, -1, 26, 888, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, 917, 50, -1, 152,
- 921, -1, -1, 917, -1, -1, 927, 921, -1, -1,
- -1, -1, -1, 927, 14, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, -1, 3, 4, 5,
+ 44, 45, 46, 47, 48, -1, 50, 395, 921, -1,
+ -1, -1, 925, -1, -1, -1, -1, 405, 931, -1,
+ 408, -1, -1, -1, -1, 413, -1, 415, -1, 417,
+ 418, 419, -1, -1, 9, 10, 11, 3, 4, 5,
6, 7, -1, -1, -1, -1, 12, 13, -1, -1,
- 961, -1, -1, -1, -1, -1, -1, 961, -1, -1,
- -1, 27, -1, -1, 526, -1, -1, -1, -1, -1,
- 60, 61, -1, -1, -1, -1, -1, 43, 44, -1,
+ -1, 26, 965, 28, 29, 30, 31, 32, 33, 34,
+ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
+ 45, 46, 47, 48, -1, 50, -1, 43, 44, -1,
-1, -1, -1, 49, -1, 51, 52, 53, 54, 55,
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
- 66, -1, -1, 565, 70, 71, 72, 73, 74, -1,
- 76, -1, 155, -1, 80, 81, 82, 83, -1, 85,
- 582, 87, -1, 89, -1, -1, 92, -1, 590, 591,
- 96, 97, 98, 99, -1, 101, 102, -1, -1, 105,
- -1, -1, 108, -1, -1, -1, -1, -1, 114, -1,
- 116, 117, 118, -1, -1, -1, 618, -1, -1, -1,
- -1, 127, 128, 153, 130, 131, 132, 133, 134, 135,
- -1, -1, 634, -1, -1, -1, 142, -1, -1, -1,
- -1, 147, 148, 149, 150, 151, -1, 153, 154, -1,
- 156, -1, 158, 159, -1, -1, -1, -1, -1, -1,
- -1, 663, 664, -1, 14, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, -1, -1, -1, 3,
- 4, 5, 6, 7, 686, -1, -1, -1, 12, 13,
- 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- 47, 48, 704, 50, -1, -1, 708, -1, -1, -1,
- 60, 61, -1, -1, -1, -1, -1, -1, -1, 43,
- 44, -1, -1, -1, -1, 49, 728, 51, 52, 53,
- 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
- 64, 65, 66, -1, -1, -1, 70, 71, 72, 73,
- 74, -1, 76, -1, -1, -1, 80, 81, 82, 83,
- -1, 85, -1, 87, -1, 89, -1, -1, 92, 771,
- -1, -1, 96, 97, 98, 99, 100, 101, 102, -1,
- -1, 105, 106, -1, 108, -1, -1, -1, 112, 113,
- 114, -1, 116, 117, 118, 119, 120, 121, 122, -1,
- 802, 803, 152, 127, 128, -1, 130, 131, 132, 133,
- 134, 135, -1, -1, 816, -1, -1, -1, 142, -1,
- -1, -1, -1, 147, 148, 149, 150, 151, -1, 153,
- 154, -1, 156, -1, 158, 159, 3, 4, 5, 6,
- 7, -1, -1, -1, -1, 12, 13, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 14, 15, 16, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 43, 44, -1, -1,
- -1, -1, 49, -1, 51, 52, 53, 54, 55, 56,
- 57, 58, 59, 60, 61, 62, 63, 64, 65, 66,
- -1, -1, -1, 70, 71, 72, 73, 74, -1, 76,
- 60, 61, -1, 80, 81, 82, 83, -1, 85, -1,
- 87, -1, 89, -1, -1, 92, -1, -1, -1, 96,
- 97, 98, 99, -1, 101, 102, -1, -1, 105, -1,
- -1, 108, -1, -1, -1, 112, 113, 114, -1, 116,
- 117, 118, 119, 120, 121, 122, -1, -1, -1, -1,
- 127, 128, -1, 130, 131, 132, 133, 134, 135, 3,
- 4, 5, 6, 7, -1, 142, -1, -1, 12, 13,
- 147, 148, 149, 150, 151, -1, 153, 154, -1, 156,
- -1, 158, 159, 27, -1, -1, -1, -1, -1, -1,
- -1, -1, 152, 153, -1, -1, -1, -1, -1, 43,
- 44, -1, -1, -1, -1, 49, -1, 51, 52, 53,
- 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
- 64, 65, 66, -1, -1, -1, 70, 71, 72, 73,
- 74, -1, 76, -1, -1, -1, 80, 81, 82, 83,
- -1, 85, -1, 87, -1, 89, -1, -1, 92, -1,
- -1, -1, 96, 97, 98, 99, -1, 101, 102, -1,
- -1, 105, -1, -1, 108, -1, -1, -1, -1, -1,
- 114, -1, 116, 117, 118, -1, -1, -1, -1, -1,
- -1, -1, -1, 127, 128, -1, 130, 131, 132, 133,
- 134, 135, 3, 4, 5, 6, 7, -1, 142, -1,
- -1, 12, 13, 147, 148, 149, 150, 151, -1, 153,
- 154, -1, 156, -1, 158, 159, 27, -1, -1, -1,
- 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 43, 44, -1, -1, -1, -1, 49, -1,
+ 66, -1, -1, -1, 70, 71, 72, 73, 74, -1,
+ 76, 155, -1, -1, 80, 81, 82, 83, -1, 85,
+ -1, 87, -1, 89, -1, -1, 92, -1, -1, -1,
+ 96, 97, 98, 99, 100, 101, 102, -1, -1, 105,
+ 106, 529, 108, -1, -1, -1, 112, 113, 114, -1,
+ 116, 117, 118, 119, 120, 121, 122, -1, -1, -1,
+ -1, 127, 128, -1, 130, 131, 132, 133, 134, 135,
+ -1, -1, -1, -1, -1, -1, 142, -1, 153, -1,
+ 568, 147, 148, 149, 150, 151, -1, 153, 154, -1,
+ 156, -1, 158, 159, -1, -1, -1, 585, -1, -1,
+ -1, -1, -1, -1, -1, 593, 594, 26, -1, 28,
+ 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
+ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
+ -1, 50, -1, 621, 9, 10, 11, 14, 15, 16,
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 637,
+ -1, 26, 27, 28, 29, 30, 31, 32, 33, 34,
+ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
+ 45, 46, 47, 48, -1, 50, -1, -1, 666, 667,
+ -1, -1, -1, 60, 61, -1, 14, 15, 16, 17,
+ 18, 19, 20, 21, 22, 23, 24, 25, -1, -1,
+ -1, 689, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 3, 4, 5, 6, 7, -1, -1, -1,
+ 708, 12, 13, -1, 712, -1, -1, -1, -1, -1,
+ -1, -1, 60, 61, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 732, -1, -1, -1, -1, -1,
+ -1, -1, 43, 44, -1, -1, -1, -1, 49, -1,
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
- 61, 62, 63, 64, 65, 66, -1, -1, -1, 70,
- 71, 72, 73, 74, -1, 76, 60, 61, -1, 80,
+ 61, 62, 63, 64, 65, 66, 153, -1, 153, 70,
+ 71, 72, 73, 74, -1, 76, -1, 775, -1, 80,
81, 82, 83, -1, 85, -1, 87, -1, 89, -1,
-1, 92, -1, -1, -1, 96, 97, 98, 99, -1,
- 101, 102, -1, -1, 105, -1, -1, 108, -1, -1,
- -1, -1, -1, 114, -1, 116, 117, 118, -1, -1,
- -1, -1, -1, -1, -1, -1, 127, 128, -1, 130,
+ 101, 102, -1, -1, 105, -1, -1, 108, 806, 807,
+ -1, 112, 113, 114, 152, 116, 117, 118, 119, 120,
+ 121, 122, 820, -1, -1, -1, 127, 128, -1, 130,
131, 132, 133, 134, 135, 3, 4, 5, 6, 7,
-1, 142, -1, -1, 12, 13, 147, 148, 149, 150,
151, -1, 153, 154, -1, 156, -1, 158, 159, 27,
- -1, -1, -1, -1, -1, -1, -1, -1, 152, 153,
- -1, -1, -1, -1, -1, 43, 44, -1, -1, -1,
+ -1, -1, -1, 14, 15, 16, 17, 18, 19, 20,
+ 21, 22, 23, 24, 25, 43, 44, -1, -1, -1,
-1, 49, -1, 51, 52, 53, 54, 55, 56, 57,
58, 59, 60, 61, 62, 63, 64, 65, 66, -1,
- -1, -1, 70, 71, 72, 73, 74, -1, 76, -1,
- -1, -1, 80, 81, 82, 83, -1, 85, -1, 87,
+ -1, -1, 70, 71, 72, 73, 74, -1, 76, 60,
+ 61, -1, 80, 81, 82, 83, -1, 85, -1, 87,
-1, 89, -1, -1, 92, -1, -1, -1, 96, 97,
98, 99, -1, 101, 102, -1, -1, 105, -1, -1,
108, -1, -1, -1, -1, -1, 114, -1, 116, 117,
@@ -2309,12 +2258,12 @@ static const yytype_int16 yycheck[] =
128, -1, 130, 131, 132, 133, 134, 135, 3, 4,
5, 6, 7, -1, 142, -1, -1, 12, 13, 147,
148, 149, 150, 151, -1, 153, 154, -1, 156, -1,
- 158, 159, -1, -1, -1, -1, 14, 15, 16, 17,
- 18, 19, 20, 21, 22, 23, 24, 25, 43, 44,
+ 158, 159, 27, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 43, 44,
-1, -1, -1, -1, 49, -1, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, -1, -1, -1, 70, 71, 72, 73, 74,
- -1, 76, 60, 61, -1, 80, 81, 82, 83, -1,
+ -1, 76, -1, -1, -1, 80, 81, 82, 83, -1,
85, -1, 87, -1, 89, -1, -1, 92, -1, -1,
-1, 96, 97, 98, 99, -1, 101, 102, -1, -1,
105, -1, -1, 108, -1, -1, -1, -1, -1, 114,
@@ -2322,101 +2271,101 @@ static const yytype_int16 yycheck[] =
-1, -1, 127, 128, -1, 130, 131, 132, 133, 134,
135, 3, 4, 5, 6, 7, -1, 142, -1, -1,
12, 13, 147, 148, 149, 150, 151, -1, 153, 154,
- -1, 156, -1, 158, 159, -1, -1, -1, -1, -1,
- 32, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 156, -1, 158, 159, 27, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 43, 44, -1, -1, -1, -1, 49, -1, 51,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,
- 62, 63, 64, 65, -1, -1, -1, -1, 70, 71,
- 72, 73, 74, -1, -1, -1, -1, -1, 80, 31,
- 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
- 42, 43, 44, 45, 46, 47, 48, 99, 50, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 114, -1, -1, 117, 118, -1, -1, -1,
+ 62, 63, 64, 65, 66, -1, -1, -1, 70, 71,
+ 72, 73, 74, -1, 76, -1, -1, -1, 80, 81,
+ 82, 83, -1, 85, -1, 87, -1, 89, -1, -1,
+ 92, -1, -1, -1, 96, 97, 98, 99, -1, 101,
+ 102, -1, -1, 105, -1, -1, 108, -1, -1, -1,
+ -1, -1, 114, -1, 116, 117, 118, -1, -1, -1,
-1, -1, -1, -1, -1, 127, 128, -1, 130, 131,
132, 133, 134, 135, 3, 4, 5, 6, 7, -1,
142, -1, -1, 12, 13, 147, 148, 149, 150, 151,
- 152, -1, -1, -1, 156, -1, 158, 159, -1, -1,
- -1, -1, -1, 32, -1, -1, -1, -1, -1, -1,
+ -1, 153, 154, -1, 156, -1, 158, 159, 27, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 43, 44, -1, -1, -1, -1,
49, -1, 51, 52, 53, 54, 55, 56, 57, 58,
- 59, 60, 61, 62, 63, 64, 65, -1, -1, -1,
- -1, 70, 71, 72, 73, 74, -1, -1, -1, -1,
- -1, 80, -1, 32, 33, 34, 35, 36, 37, 38,
- 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
- 99, 50, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 114, -1, -1, 117, 118,
+ 59, 60, 61, 62, 63, 64, 65, 66, -1, -1,
+ -1, 70, 71, 72, 73, 74, -1, 76, -1, -1,
+ -1, 80, 81, 82, 83, -1, 85, -1, 87, -1,
+ 89, -1, -1, 92, -1, -1, -1, 96, 97, 98,
+ 99, -1, 101, 102, -1, -1, 105, -1, -1, 108,
+ -1, -1, -1, -1, -1, 114, -1, 116, 117, 118,
-1, -1, -1, -1, -1, -1, -1, -1, 127, 128,
-1, 130, 131, 132, 133, 134, 135, 3, 4, 5,
6, 7, -1, 142, -1, -1, 12, 13, 147, 148,
- 149, 150, 151, -1, -1, -1, -1, 156, -1, 158,
+ 149, 150, 151, -1, 153, 154, -1, 156, -1, 158,
159, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 43, 44, -1,
-1, -1, -1, 49, -1, 51, 52, 53, 54, 55,
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
- -1, -1, -1, -1, 70, 71, 72, 73, 74, -1,
- -1, -1, -1, -1, 80, 33, 34, 35, 36, 37,
- 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
- 48, -1, 50, 99, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 114, -1,
- -1, 117, 118, -1, -1, -1, -1, -1, -1, -1,
+ 66, -1, -1, -1, 70, 71, 72, 73, 74, -1,
+ 76, -1, -1, -1, 80, 81, 82, 83, -1, 85,
+ -1, 87, -1, 89, -1, -1, 92, -1, -1, -1,
+ 96, 97, 98, 99, -1, 101, 102, -1, -1, 105,
+ -1, -1, 108, -1, -1, -1, -1, -1, 114, -1,
+ 116, 117, 118, -1, -1, -1, -1, -1, -1, -1,
-1, 127, 128, -1, 130, 131, 132, 133, 134, 135,
3, 4, 5, 6, 7, -1, 142, -1, -1, 12,
- 13, 147, 148, 149, 150, 151, -1, 153, -1, -1,
- 156, -1, 158, 159, -1, -1, -1, -1, -1, -1,
+ 13, 147, 148, 149, 150, 151, -1, 153, 154, -1,
+ 156, -1, 158, 159, -1, -1, -1, -1, -1, 32,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
43, 44, -1, -1, -1, -1, 49, -1, 51, 52,
53, 54, 55, 56, 57, 58, 59, 60, 61, 62,
63, 64, 65, -1, -1, -1, -1, 70, 71, 72,
- 73, 74, -1, -1, -1, -1, -1, 80, 33, 34,
- 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
- 45, 46, 47, 48, -1, 50, 99, -1, -1, -1,
+ 73, 74, -1, -1, -1, -1, -1, 80, 31, 32,
+ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
+ 43, 44, 45, 46, 47, 48, 99, 50, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 114, -1, -1, 117, 118, -1, -1, -1, -1,
-1, -1, -1, -1, 127, 128, -1, 130, 131, 132,
133, 134, 135, 3, 4, 5, 6, 7, -1, 142,
- -1, -1, 12, 13, 147, 148, 149, 150, 151, -1,
- 153, -1, -1, 156, -1, 158, 159, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 12, 13, 147, 148, 149, 150, 151, 152,
+ -1, -1, -1, 156, -1, 158, 159, -1, -1, -1,
+ -1, -1, 32, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 43, 44, -1, -1, -1, -1, 49,
-1, 51, 52, 53, 54, 55, 56, 57, 58, 59,
60, 61, 62, 63, 64, 65, -1, -1, -1, -1,
70, 71, 72, 73, 74, -1, -1, -1, -1, -1,
- 80, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 99,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 80, -1, 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47, 48, 99,
+ 50, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 114, -1, -1, 117, 118, -1,
-1, -1, -1, -1, -1, -1, -1, 127, 128, -1,
130, 131, 132, 133, 134, 135, 3, 4, 5, 6,
7, -1, 142, -1, -1, 12, 13, 147, 148, 149,
- 150, 151, -1, 153, -1, -1, 156, -1, 158, 159,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 43, 44, -1, -1,
+ 150, 151, -1, -1, -1, -1, 156, -1, 158, 159,
+ -1, -1, 14, 15, 16, 17, 18, 19, 20, 21,
+ 22, 23, 24, 25, -1, -1, 43, 44, -1, -1,
-1, -1, 49, -1, 51, 52, 53, 54, 55, 56,
57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
- -1, -1, -1, 70, 71, 72, 73, 74, -1, -1,
- -1, -1, -1, 80, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 99, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 70, 71, 72, 73, 74, 60, 61,
+ -1, -1, -1, 80, 33, 34, 35, 36, 37, 38,
+ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
+ -1, 50, 99, -1, -1, -1, -1, -1, -1, 91,
-1, -1, -1, -1, -1, -1, -1, 114, -1, -1,
117, 118, -1, -1, -1, -1, -1, -1, -1, -1,
127, 128, -1, 130, 131, 132, 133, 134, 135, 3,
4, 5, 6, 7, -1, 142, -1, -1, 12, 13,
- 147, 148, 149, 150, 151, 152, -1, -1, -1, 156,
- -1, 158, 159, -1, -1, -1, -1, -1, 32, -1,
+ 147, 148, 149, 150, 151, -1, 153, -1, -1, 156,
+ -1, 158, 159, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 43,
44, -1, -1, -1, -1, 49, -1, 51, 52, 53,
54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
64, 65, -1, -1, -1, -1, 70, 71, 72, 73,
- 74, -1, -1, -1, -1, -1, 80, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 99, -1, -1, -1, -1,
+ 74, -1, -1, -1, -1, -1, 80, 33, 34, 35,
+ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
+ 46, 47, 48, -1, 50, 99, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
114, -1, -1, 117, 118, -1, -1, -1, -1, -1,
-1, -1, -1, 127, 128, -1, 130, 131, 132, 133,
134, 135, 3, 4, 5, 6, 7, -1, 142, -1,
- -1, 12, 13, 147, 148, 149, 150, 151, -1, -1,
+ -1, 12, 13, 147, 148, 149, 150, 151, -1, 153,
-1, -1, 156, -1, 158, 159, -1, -1, -1, -1,
- -1, 32, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 43, 44, -1, -1, -1, -1, 49, -1,
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
61, 62, 63, 64, 65, -1, -1, -1, -1, 70,
@@ -2428,8 +2377,8 @@ static const yytype_int16 yycheck[] =
-1, -1, -1, -1, -1, -1, 127, 128, -1, 130,
131, 132, 133, 134, 135, 3, 4, 5, 6, 7,
-1, 142, -1, -1, 12, 13, 147, 148, 149, 150,
- 151, -1, -1, -1, -1, 156, -1, 158, 159, -1,
- -1, -1, -1, -1, 32, -1, -1, -1, -1, -1,
+ 151, -1, 153, -1, -1, 156, -1, 158, 159, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 43, 44, -1, -1, -1,
-1, 49, -1, 51, 52, 53, 54, 55, 56, 57,
58, 59, 60, 61, 62, 63, 64, 65, -1, -1,
@@ -2441,7 +2390,7 @@ static const yytype_int16 yycheck[] =
118, -1, -1, -1, -1, -1, -1, -1, -1, 127,
128, -1, 130, 131, 132, 133, 134, 135, 3, 4,
5, 6, 7, -1, 142, -1, -1, 12, 13, 147,
- 148, 149, 150, 151, -1, -1, -1, -1, 156, -1,
+ 148, 149, 150, 151, 152, -1, -1, -1, 156, -1,
158, 159, -1, -1, -1, -1, -1, 32, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 43, 44,
-1, -1, -1, -1, 49, -1, 51, 52, 53, 54,
@@ -2469,7 +2418,7 @@ static const yytype_int16 yycheck[] =
132, 133, 134, 135, 3, 4, 5, 6, 7, -1,
142, -1, -1, 12, 13, 147, 148, 149, 150, 151,
-1, -1, -1, -1, 156, -1, 158, 159, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 32, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 43, 44, -1, -1, -1, -1,
49, -1, 51, 52, 53, 54, 55, 56, 57, 58,
59, 60, 61, 62, 63, 64, 65, -1, -1, -1,
@@ -2482,7 +2431,7 @@ static const yytype_int16 yycheck[] =
-1, 130, 131, 132, 133, 134, 135, 3, 4, 5,
6, 7, -1, 142, -1, -1, 12, 13, 147, 148,
149, 150, 151, -1, -1, -1, -1, 156, -1, 158,
- 159, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 159, -1, -1, -1, -1, -1, 32, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 43, 44, -1,
-1, -1, -1, 49, -1, 51, 52, 53, 54, 55,
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
@@ -2495,7 +2444,7 @@ static const yytype_int16 yycheck[] =
-1, 127, 128, -1, 130, 131, 132, 133, 134, 135,
3, 4, 5, 6, 7, -1, 142, -1, -1, 12,
13, 147, 148, 149, 150, 151, -1, -1, -1, -1,
- 156, -1, 158, 159, -1, -1, -1, -1, -1, -1,
+ 156, -1, 158, 159, -1, -1, -1, -1, -1, 32,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
43, 44, -1, -1, -1, -1, 49, -1, 51, 52,
53, 54, 55, 56, 57, 58, 59, 60, 61, 62,
@@ -2506,93 +2455,132 @@ static const yytype_int16 yycheck[] =
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 114, -1, -1, 117, 118, -1, -1, -1, -1,
-1, -1, -1, -1, 127, 128, -1, 130, 131, 132,
- 133, 134, 135, -1, -1, -1, -1, -1, -1, 142,
- 9, 10, 11, -1, 147, 148, 149, 150, 151, -1,
- -1, -1, -1, 156, -1, 158, 159, 26, -1, 28,
- 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
- 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
- -1, 50, 9, 10, 11, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 26,
- -1, 28, 29, 30, 31, 32, 33, 34, 35, 36,
- 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- 47, 48, -1, 50, 9, 10, 11, -1, -1, -1,
+ 133, 134, 135, 3, 4, 5, 6, 7, -1, 142,
+ -1, -1, 12, 13, 147, 148, 149, 150, 151, -1,
+ -1, -1, -1, 156, -1, 158, 159, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 26, -1, 28, 29, 30, 31, 32, 33, 34,
- 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
- 45, 46, 47, 48, -1, 50, -1, -1, 9, 10,
- 11, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 26, 155, 28, 29, 30,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
- 41, 42, 43, 44, 45, 46, 47, 48, -1, 50,
- -1, -1, 9, 10, 11, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 155, 26,
- 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
- 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- 47, 48, -1, 50, 9, 10, 11, -1, -1, -1,
+ -1, -1, -1, 43, 44, -1, -1, -1, -1, 49,
+ -1, 51, 52, 53, 54, 55, 56, 57, 58, 59,
+ 60, 61, 62, 63, 64, 65, -1, -1, -1, -1,
+ 70, 71, 72, 73, 74, -1, -1, -1, -1, -1,
+ 80, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 99,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 155, 26, -1, 28, 29, 30, 31, 32, 33, 34,
- 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
- 45, 46, 47, 48, -1, 50, 9, 10, 11, -1,
+ -1, -1, -1, -1, 114, -1, -1, 117, 118, -1,
+ -1, -1, -1, -1, -1, -1, -1, 127, 128, -1,
+ 130, 131, 132, 133, 134, 135, 3, 4, 5, 6,
+ 7, -1, 142, -1, -1, 12, 13, 147, 148, 149,
+ 150, 151, -1, -1, -1, -1, 156, -1, 158, 159,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 26, 155, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, -1, 50, 9, 10,
- 11, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 26, 153, 28, 29, 30,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
- 41, 42, 43, 44, 45, 46, 47, 48, -1, 50,
- 9, 10, 11, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 26, 153, 28,
- 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
- 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
- -1, 50, 9, 10, 11, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 26,
- 153, 28, 29, 30, 31, 32, 33, 34, 35, 36,
- 37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- 47, 48, -1, 50, 9, 10, 11, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 43, 44, -1, -1,
+ -1, -1, 49, -1, 51, 52, 53, 54, 55, 56,
+ 57, 58, 59, 60, 61, 62, 63, 64, 65, -1,
+ -1, -1, -1, 70, 71, 72, 73, 74, -1, -1,
+ -1, -1, -1, 80, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 26, 153, 28, 29, 30, 31, 32, 33, 34,
- 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
- 45, 46, 47, 48, -1, 50, 9, 10, 11, -1,
+ -1, -1, 99, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 114, -1, -1,
+ 117, 118, -1, -1, -1, -1, -1, -1, -1, -1,
+ 127, 128, -1, 130, 131, 132, 133, 134, 135, 3,
+ 4, 5, 6, 7, -1, 142, -1, -1, 12, 13,
+ 147, 148, 149, 150, 151, -1, -1, -1, -1, 156,
+ -1, 158, 159, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 43,
+ 44, -1, -1, -1, -1, 49, -1, 51, 52, 53,
+ 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
+ 64, 65, -1, -1, -1, -1, 70, 71, 72, 73,
+ 74, -1, -1, -1, -1, -1, 80, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 26, 153, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, -1, 50, -1, 9,
+ -1, -1, -1, -1, -1, 99, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 114, -1, -1, 117, 118, -1, -1, -1, -1, -1,
+ -1, -1, -1, 127, 128, -1, 130, 131, 132, 133,
+ 134, 135, -1, -1, -1, -1, -1, -1, 142, 9,
+ 10, 11, -1, 147, 148, 149, 150, 151, -1, -1,
+ -1, -1, 156, -1, 158, 159, 26, -1, 28, 29,
+ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47, 48, -1,
+ 50, 9, 10, 11, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 26, -1,
+ 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
+ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
+ 48, -1, 50, 9, 10, 11, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 26, -1, 28, 29, 30, 31, 32, 33, 34, 35,
+ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
+ 46, 47, 48, -1, 50, -1, -1, 9, 10, 11,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 26, 155, 28, 29, 30, 31,
+ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
+ 42, 43, 44, 45, 46, 47, 48, -1, 50, 9,
10, 11, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 152, 26, -1, 28, 29,
+ -1, -1, -1, -1, -1, -1, 26, 155, 28, 29,
30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
40, 41, 42, 43, 44, 45, 46, 47, 48, -1,
- 50, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 152, 9, 10,
- 11, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 126, -1, 26, -1, 28, 29, 30,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
- 41, 42, 43, 44, 45, 46, 47, 48, -1, 50,
- 9, 10, 11, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 126, 26, 27, 28,
- 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
- 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
- -1, 50, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 9, 10, 11,
+ 50, 9, 10, 11, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 26, 155,
+ 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
+ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
+ 48, -1, 50, -1, -1, 9, 10, 11, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 26, 155, 28, 29, 30, 31, 32, 33,
+ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
+ 44, 45, 46, 47, 48, -1, 50, 9, 10, 11,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 26, 126, 28, 29, 30, 31,
+ -1, -1, -1, -1, 26, 155, 28, 29, 30, 31,
32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
- 42, 43, 44, 45, 46, 47, 48, -1, 50, 10,
- 11, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 26, -1, 28, 29, 30,
- 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
- 41, 42, 43, 44, 45, 46, 47, 48, 11, 50,
+ 42, 43, 44, 45, 46, 47, 48, -1, 50, 9,
+ 10, 11, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 153, 26, -1, 28, 29,
+ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47, 48, -1,
+ 50, 9, 10, 11, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 26, 153,
+ 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
+ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
+ 48, -1, 50, 9, 10, 11, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 26, -1, 28, 29, 30, 31, 32,
+ 26, 153, 28, 29, 30, 31, 32, 33, 34, 35,
+ 36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
+ 46, 47, 48, -1, 50, -1, 9, 10, 11, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 152, 26, -1, 28, 29, 30, 31, 32,
33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, -1, 50, 28, 29,
+ 43, 44, 45, 46, 47, 48, -1, 50, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 152, 9, 10, 11, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 126, -1, 26, -1, 28, 29, 30, 31, 32, 33,
+ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
+ 44, 45, 46, 47, 48, -1, 50, 43, 44, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 126, -1, -1, 62, -1, 9, 10,
+ 11, -1, -1, -1, 70, 71, 72, -1, -1, -1,
+ -1, -1, -1, -1, 80, 26, 27, 28, 29, 30,
+ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
+ 41, 42, 43, 44, 45, 46, 47, 48, -1, 50,
+ -1, -1, -1, -1, -1, -1, -1, -1, 114, -1,
+ -1, -1, 126, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 128, -1, 130, 131, 132, 133, 134, 135,
+ 9, 10, 11, -1, -1, -1, 142, -1, -1, -1,
+ -1, 147, 148, 149, 150, -1, -1, 26, -1, 28,
+ 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
+ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
+ -1, 50, 10, 11, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 26, -1,
+ 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
+ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
+ 48, 11, 50, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 26, -1, 28, 29,
30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
40, 41, 42, 43, 44, 45, 46, 47, 48, -1,
- 50, 29, 30, 31, 32, 33, 34, 35, 36, 37,
- 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
- 48, -1, 50, 30, 31, 32, 33, 34, 35, 36,
+ 50, 28, 29, 30, 31, 32, 33, 34, 35, 36,
37, 38, 39, 40, 41, 42, 43, 44, 45, 46,
- 47, 48, -1, 50
+ 47, 48, -1, 50, 29, 30, 31, 32, 33, 34,
+ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
+ 45, 46, 47, 48, -1, 50, 30, 31, 32, 33,
+ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
+ 44, 45, 46, 47, 48, -1, 50
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
@@ -2611,94 +2599,95 @@ static const yytype_uint16 yystos[] =
210, 212, 214, 217, 219, 283, 285, 299, 300, 301,
302, 305, 314, 325, 328, 332, 333, 334, 336, 337,
347, 348, 349, 350, 352, 353, 354, 355, 361, 371,
- 375, 13, 72, 114, 147, 302, 332, 332, 151, 332,
- 332, 332, 285, 332, 337, 332, 332, 332, 332, 296,
- 332, 332, 332, 332, 332, 332, 332, 114, 147, 150,
- 164, 314, 336, 337, 349, 336, 32, 332, 365, 366,
- 332, 147, 150, 164, 314, 316, 317, 349, 353, 354,
- 361, 151, 322, 333, 151, 333, 27, 62, 273, 332,
- 182, 180, 151, 151, 192, 333, 153, 332, 153, 332,
- 72, 72, 153, 285, 332, 337, 193, 332, 150, 164,
- 168, 169, 74, 156, 247, 248, 120, 120, 74, 249,
- 302, 151, 151, 151, 151, 151, 151, 74, 79, 143,
- 144, 145, 367, 368, 150, 154, 164, 164, 283, 299,
- 332, 171, 154, 79, 323, 367, 79, 367, 150, 306,
- 8, 153, 72, 72, 153, 62, 62, 32, 211, 351,
- 146, 9, 10, 11, 26, 28, 29, 30, 31, 32,
- 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
- 43, 44, 45, 46, 47, 48, 50, 153, 60, 61,
- 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 313, 146, 62, 125, 62, 154, 156, 354,
- 211, 332, 126, 332, 150, 164, 146, 146, 335, 337,
- 126, 157, 8, 330, 150, 164, 146, 284, 146, 125,
- 354, 152, 27, 176, 332, 356, 8, 153, 174, 333,
- 274, 275, 332, 285, 337, 151, 187, 153, 153, 153,
- 14, 153, 153, 154, 153, 164, 91, 8, 153, 154,
- 334, 337, 8, 153, 14, 8, 153, 211, 207, 208,
- 337, 285, 337, 372, 374, 285, 337, 152, 286, 365,
- 62, 125, 143, 368, 73, 332, 337, 79, 143, 368,
- 164, 167, 153, 154, 308, 152, 152, 152, 155, 172,
- 332, 158, 159, 72, 151, 245, 72, 123, 218, 216,
- 356, 356, 72, 297, 62, 72, 154, 347, 354, 360,
- 361, 290, 332, 291, 27, 293, 288, 289, 332, 332,
- 332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
- 332, 332, 332, 332, 332, 332, 332, 316, 32, 332,
+ 375, 377, 13, 72, 114, 147, 302, 332, 332, 151,
+ 332, 332, 332, 285, 332, 337, 332, 332, 332, 332,
+ 296, 332, 332, 332, 332, 332, 332, 332, 114, 147,
+ 150, 164, 314, 336, 337, 349, 336, 32, 332, 365,
+ 366, 332, 147, 150, 164, 314, 316, 317, 349, 353,
+ 354, 361, 151, 322, 333, 151, 333, 27, 62, 273,
+ 332, 182, 180, 151, 151, 192, 333, 153, 332, 153,
+ 332, 72, 72, 153, 285, 332, 337, 193, 332, 150,
+ 164, 168, 169, 74, 156, 247, 248, 120, 120, 74,
+ 249, 302, 151, 151, 151, 151, 151, 151, 74, 79,
+ 143, 144, 145, 367, 368, 150, 154, 164, 164, 283,
+ 299, 332, 171, 154, 79, 323, 367, 79, 367, 150,
+ 306, 8, 153, 72, 72, 153, 62, 62, 32, 211,
+ 351, 146, 9, 10, 11, 26, 28, 29, 30, 31,
+ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
+ 42, 43, 44, 45, 46, 47, 48, 50, 153, 60,
+ 61, 14, 15, 16, 17, 18, 19, 20, 21, 22,
+ 23, 24, 25, 313, 146, 62, 125, 62, 154, 156,
+ 354, 211, 332, 126, 332, 150, 164, 146, 146, 335,
+ 337, 126, 157, 8, 330, 150, 164, 146, 284, 146,
+ 125, 354, 152, 27, 176, 332, 356, 8, 153, 174,
+ 333, 274, 275, 332, 285, 337, 151, 187, 153, 153,
+ 153, 14, 153, 153, 154, 153, 164, 91, 8, 153,
+ 154, 334, 337, 8, 153, 14, 8, 153, 211, 207,
+ 208, 337, 285, 337, 372, 374, 285, 337, 152, 286,
+ 365, 62, 125, 143, 368, 73, 332, 337, 79, 143,
+ 368, 164, 167, 153, 154, 308, 152, 152, 152, 155,
+ 172, 332, 158, 159, 72, 151, 245, 72, 123, 218,
+ 216, 356, 356, 72, 297, 62, 72, 120, 154, 347,
+ 354, 360, 361, 290, 332, 291, 27, 293, 288, 289,
332, 332, 332, 332, 332, 332, 332, 332, 332, 332,
- 332, 245, 72, 347, 360, 356, 338, 356, 332, 152,
- 285, 337, 164, 72, 32, 332, 32, 332, 164, 347,
- 245, 324, 347, 318, 178, 174, 157, 332, 83, 181,
- 153, 8, 91, 91, 72, 229, 27, 154, 230, 43,
- 44, 62, 80, 128, 130, 142, 147, 150, 164, 314,
- 325, 326, 327, 171, 91, 72, 169, 332, 248, 326,
- 74, 298, 8, 152, 8, 152, 152, 152, 153, 127,
- 337, 362, 363, 152, 369, 72, 62, 155, 155, 307,
- 162, 166, 245, 292, 119, 173, 174, 209, 210, 155,
- 32, 152, 246, 285, 299, 337, 14, 147, 150, 164,
- 315, 215, 123, 220, 157, 157, 213, 151, 356, 332,
- 310, 309, 354, 332, 332, 295, 332, 332, 332, 64,
- 337, 312, 311, 157, 347, 357, 359, 360, 157, 155,
- 335, 335, 126, 357, 171, 177, 183, 27, 174, 235,
- 184, 276, 190, 188, 14, 8, 152, 153, 231, 153,
- 231, 326, 326, 326, 329, 331, 151, 79, 150, 164,
- 146, 155, 72, 155, 14, 151, 208, 153, 373, 151,
- 8, 152, 72, 74, 75, 370, 332, 245, 155, 162,
- 281, 282, 151, 335, 8, 152, 152, 326, 150, 164,
- 124, 221, 222, 315, 154, 151, 128, 129, 242, 243,
- 244, 315, 157, 155, 245, 245, 332, 27, 316, 245,
- 245, 358, 339, 62, 154, 32, 332, 319, 179, 236,
- 333, 171, 274, 332, 32, 127, 224, 337, 224, 326,
- 72, 27, 174, 228, 231, 93, 94, 95, 231, 155,
- 126, 157, 8, 330, 329, 164, 72, 103, 195, 326,
- 242, 374, 364, 363, 14, 157, 157, 155, 62, 125,
- 277, 278, 279, 341, 152, 32, 285, 337, 164, 222,
- 154, 8, 250, 242, 152, 8, 32, 74, 294, 287,
- 343, 344, 345, 346, 356, 332, 335, 320, 238, 67,
- 68, 240, 153, 84, 153, 337, 151, 126, 223, 223,
- 14, 171, 93, 153, 332, 27, 153, 234, 155, 326,
- 326, 152, 151, 194, 152, 362, 332, 155, 356, 357,
- 341, 62, 280, 153, 335, 250, 315, 100, 106, 109,
- 110, 111, 112, 113, 114, 115, 155, 251, 254, 267,
- 268, 269, 270, 272, 152, 106, 303, 244, 74, 14,
- 332, 324, 62, 62, 245, 340, 157, 155, 125, 321,
- 67, 68, 241, 333, 174, 153, 185, 225, 224, 152,
- 152, 326, 90, 153, 234, 233, 126, 196, 104, 200,
- 303, 152, 157, 342, 356, 277, 155, 72, 255, 315,
- 252, 302, 270, 8, 153, 154, 151, 154, 32, 74,
- 14, 326, 356, 356, 341, 357, 333, 27, 69, 237,
- 274, 362, 191, 189, 153, 232, 171, 326, 315, 201,
- 154, 346, 157, 14, 8, 153, 154, 256, 74, 271,
- 211, 72, 171, 32, 74, 304, 171, 74, 14, 326,
- 157, 157, 27, 171, 153, 174, 152, 152, 27, 174,
- 227, 227, 171, 197, 154, 171, 326, 315, 72, 257,
- 258, 259, 260, 262, 263, 264, 315, 14, 8, 153,
- 72, 14, 155, 74, 8, 152, 155, 14, 326, 239,
- 186, 171, 74, 171, 155, 155, 259, 153, 91, 107,
- 153, 146, 326, 74, 253, 326, 32, 74, 326, 171,
- 27, 174, 226, 88, 152, 155, 265, 270, 261, 315,
- 72, 14, 151, 74, 171, 153, 198, 72, 8, 326,
- 242, 86, 154, 315, 152, 153, 171, 153, 154, 266,
- 155, 171, 199, 155, 103, 202, 203, 204, 151, 204,
- 315, 205, 74, 152, 206, 154, 171, 155
+ 332, 332, 332, 332, 332, 332, 332, 332, 332, 316,
+ 32, 332, 332, 332, 332, 332, 332, 332, 332, 332,
+ 332, 332, 332, 245, 72, 347, 360, 356, 338, 356,
+ 332, 152, 285, 337, 164, 72, 32, 332, 32, 332,
+ 164, 347, 245, 324, 347, 318, 178, 174, 157, 332,
+ 83, 181, 153, 8, 91, 91, 72, 229, 27, 154,
+ 230, 43, 44, 62, 80, 128, 130, 142, 147, 150,
+ 164, 314, 325, 326, 327, 376, 171, 91, 72, 169,
+ 332, 248, 326, 74, 298, 8, 152, 8, 152, 152,
+ 152, 153, 127, 337, 362, 363, 152, 369, 72, 62,
+ 155, 155, 307, 162, 166, 245, 292, 119, 173, 174,
+ 209, 210, 155, 32, 152, 246, 285, 299, 337, 14,
+ 147, 150, 164, 315, 215, 123, 220, 157, 157, 213,
+ 151, 356, 332, 310, 309, 354, 332, 332, 295, 332,
+ 332, 332, 64, 337, 312, 311, 157, 347, 357, 359,
+ 360, 157, 155, 335, 335, 126, 357, 171, 177, 183,
+ 27, 174, 235, 184, 276, 190, 188, 14, 8, 152,
+ 153, 231, 153, 231, 326, 326, 326, 329, 331, 151,
+ 79, 150, 164, 146, 155, 72, 155, 14, 151, 208,
+ 153, 373, 151, 8, 152, 72, 74, 75, 370, 332,
+ 245, 155, 162, 281, 282, 151, 335, 8, 152, 152,
+ 326, 150, 164, 124, 221, 222, 315, 154, 151, 128,
+ 129, 242, 243, 244, 315, 157, 155, 245, 245, 332,
+ 27, 316, 245, 245, 358, 339, 62, 154, 32, 332,
+ 319, 179, 236, 333, 171, 274, 332, 32, 127, 224,
+ 337, 224, 326, 72, 27, 174, 228, 231, 93, 94,
+ 95, 231, 155, 126, 157, 8, 330, 329, 164, 72,
+ 120, 103, 195, 326, 242, 374, 364, 363, 14, 157,
+ 157, 155, 62, 125, 277, 278, 279, 341, 152, 32,
+ 285, 337, 164, 222, 154, 8, 250, 242, 152, 8,
+ 32, 74, 294, 287, 343, 344, 345, 346, 356, 332,
+ 335, 320, 238, 67, 68, 240, 153, 84, 153, 337,
+ 151, 126, 223, 223, 14, 171, 93, 153, 332, 27,
+ 153, 234, 155, 326, 326, 152, 151, 194, 152, 362,
+ 332, 155, 356, 357, 341, 62, 280, 153, 335, 250,
+ 315, 100, 106, 109, 110, 111, 112, 113, 114, 115,
+ 155, 251, 254, 267, 268, 269, 270, 272, 152, 106,
+ 303, 244, 74, 14, 332, 324, 62, 62, 245, 340,
+ 157, 155, 125, 321, 67, 68, 241, 333, 174, 153,
+ 185, 225, 224, 152, 152, 326, 90, 153, 234, 233,
+ 126, 196, 104, 200, 303, 152, 157, 342, 356, 277,
+ 155, 72, 255, 315, 252, 302, 270, 8, 153, 154,
+ 151, 154, 32, 74, 14, 326, 356, 356, 341, 357,
+ 333, 27, 69, 237, 274, 362, 191, 189, 153, 232,
+ 171, 326, 315, 201, 154, 346, 157, 14, 8, 153,
+ 154, 256, 74, 271, 211, 72, 171, 32, 74, 304,
+ 171, 74, 14, 326, 157, 157, 27, 171, 153, 174,
+ 152, 152, 27, 174, 227, 227, 171, 197, 154, 171,
+ 326, 315, 72, 257, 258, 259, 260, 262, 263, 264,
+ 315, 14, 8, 153, 72, 14, 155, 74, 8, 152,
+ 155, 14, 326, 239, 186, 171, 74, 171, 155, 155,
+ 259, 153, 91, 107, 153, 146, 326, 74, 253, 326,
+ 32, 74, 326, 171, 27, 174, 226, 88, 152, 155,
+ 265, 270, 261, 315, 72, 14, 151, 74, 171, 153,
+ 198, 72, 8, 326, 242, 86, 154, 315, 152, 153,
+ 171, 153, 154, 266, 155, 171, 199, 155, 103, 202,
+ 203, 204, 151, 204, 315, 205, 74, 152, 206, 154,
+ 171, 155
};
#define yyerrok (yyerrstatus = 0)
@@ -2713,18 +2702,9 @@ static const yytype_uint16 yystos[] =
/* Like YYERROR except do call yyerror. This remains here temporarily
to ease the transition to the new meaning of YYERROR, for GCC.
- Once GCC version 2 has supplanted version 1, this can go. However,
- YYFAIL appears to be in use. Nevertheless, it is formally deprecated
- in Bison 2.4.2's NEWS entry, where a plan to phase it out is
- discussed. */
+ Once GCC version 2 has supplanted version 1, this can go. */
#define YYFAIL goto yyerrlab
-#if defined YYFAIL
- /* This is here to suppress warnings from the GCC cpp's
- -Wunused-macros. Normally we don't worry about that warning, but
- some users do, and we want to make it easy for users to remove
- YYFAIL uses, which will produce warnings from Bison 2.5. */
-#endif
#define YYRECOVERING() (!!yyerrstatus)
@@ -2734,6 +2714,7 @@ do \
{ \
yychar = (Token); \
yylval = (Value); \
+ yytoken = YYTRANSLATE (yychar); \
YYPOPSTACK (1); \
goto yybackup; \
} \
@@ -2775,10 +2756,19 @@ while (YYID (0))
#endif
-/* This macro is provided for backward compatibility. */
+/* YY_LOCATION_PRINT -- Print the location on the stream.
+ This macro was not mandated originally: define only if we know
+ we won't break user code: when these are the locations we know. */
#ifndef YY_LOCATION_PRINT
-# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
+# if YYLTYPE_IS_TRIVIAL
+# define YY_LOCATION_PRINT(File, Loc) \
+ fprintf (File, "%d.%d-%d.%d", \
+ (Loc).first_line, (Loc).first_column, \
+ (Loc).last_line, (Loc).last_column)
+# else
+# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
+# endif
#endif
@@ -2882,20 +2872,17 @@ yy_symbol_print (yyoutput, yytype, yyvaluep)
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
-yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
+yy_stack_print (yytype_int16 *bottom, yytype_int16 *top)
#else
static void
-yy_stack_print (yybottom, yytop)
- yytype_int16 *yybottom;
- yytype_int16 *yytop;
+yy_stack_print (bottom, top)
+ yytype_int16 *bottom;
+ yytype_int16 *top;
#endif
{
YYFPRINTF (stderr, "Stack now");
- for (; yybottom <= yytop; yybottom++)
- {
- int yybot = *yybottom;
- YYFPRINTF (stderr, " %d", yybot);
- }
+ for (; bottom <= top; ++bottom)
+ YYFPRINTF (stderr, " %d", *bottom);
YYFPRINTF (stderr, "\n");
}
@@ -2929,11 +2916,11 @@ yy_reduce_print (yyvsp, yyrule)
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
- YYFPRINTF (stderr, " $%d = ", yyi + 1);
+ fprintf (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
&(yyvsp[(yyi + 1) - (yynrhs)])
);
- YYFPRINTF (stderr, "\n");
+ fprintf (stderr, "\n");
}
}
@@ -2970,6 +2957,7 @@ int yydebug;
# define YYMAXDEPTH 10000
#endif
+
#if YYERROR_VERBOSE
@@ -3072,142 +3060,115 @@ yytnamerr (char *yyres, const char *yystr)
}
# endif
-/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
- about the unexpected token YYTOKEN for the state stack whose top is
- YYSSP.
-
- Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
- not large enough to hold the message. In that case, also set
- *YYMSG_ALLOC to the required number of bytes. Return 2 if the
- required number of bytes is too large to store. */
-static int
-yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
- yytype_int16 *yyssp, int yytoken)
+/* Copy into YYRESULT an error message about the unexpected token
+ YYCHAR while in state YYSTATE. Return the number of bytes copied,
+ including the terminating null byte. If YYRESULT is null, do not
+ copy anything; just return the number of bytes that would be
+ copied. As a special case, return 0 if an ordinary "syntax error"
+ message will do. Return YYSIZE_MAXIMUM if overflow occurs during
+ size calculation. */
+static YYSIZE_T
+yysyntax_error (char *yyresult, int yystate, int yychar)
{
- YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]);
- YYSIZE_T yysize = yysize0;
- YYSIZE_T yysize1;
- enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
- /* Internationalized format string. */
- const char *yyformat = 0;
- /* Arguments of yyformat. */
- char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
- /* Number of reported tokens (one for the "unexpected", one per
- "expected"). */
- int yycount = 0;
-
- /* There are many possibilities here to consider:
- - Assume YYFAIL is not used. It's too flawed to consider. See
- <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
- for details. YYERROR is fine as it does not invoke this
- function.
- - If this state is a consistent state with a default action, then
- the only way this function was invoked is if the default action
- is an error action. In that case, don't check for expected
- tokens because there are none.
- - The only way there can be no lookahead present (in yychar) is if
- this state is a consistent state with a default action. Thus,
- detecting the absence of a lookahead is sufficient to determine
- that there is no unexpected or expected token to report. In that
- case, just report a simple "syntax error".
- - Don't assume there isn't a lookahead just because this state is a
- consistent state with a default action. There might have been a
- previous inconsistent state, consistent state with a non-default
- action, or user semantic action that manipulated yychar.
- - Of course, the expected token list depends on states to have
- correct lookahead information, and it depends on the parser not
- to perform extra reductions after fetching a lookahead from the
- scanner and before detecting a syntax error. Thus, state merging
- (from LALR or IELR) and default reductions corrupt the expected
- token list. However, the list is correct for canonical LR with
- one exception: it will still contain any token that will not be
- accepted due to an error action in a later state.
- */
- if (yytoken != YYEMPTY)
- {
- int yyn = yypact[*yyssp];
- yyarg[yycount++] = yytname[yytoken];
- if (!yypact_value_is_default (yyn))
- {
- /* Start YYX at -YYN if negative to avoid negative indexes in
- YYCHECK. In other words, skip the first -YYN actions for
- this state because they are default actions. */
- int yyxbegin = yyn < 0 ? -yyn : 0;
- /* Stay within bounds of both yycheck and yytname. */
- int yychecklim = YYLAST - yyn + 1;
- int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
- int yyx;
-
- for (yyx = yyxbegin; yyx < yyxend; ++yyx)
- if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
- && !yytable_value_is_error (yytable[yyx + yyn]))
- {
- if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
- {
- yycount = 1;
- yysize = yysize0;
- break;
- }
- yyarg[yycount++] = yytname[yyx];
- yysize1 = yysize + yytnamerr (0, yytname[yyx]);
- if (! (yysize <= yysize1
- && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
- return 2;
- yysize = yysize1;
- }
- }
- }
+ int yyn = yypact[yystate];
- switch (yycount)
+ if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
+ return 0;
+ else
{
-# define YYCASE_(N, S) \
- case N: \
- yyformat = S; \
- break
- YYCASE_(0, YY_("syntax error"));
- YYCASE_(1, YY_("syntax error, unexpected %s"));
- YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
- YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
- YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
- YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
-# undef YYCASE_
- }
+ int yytype = YYTRANSLATE (yychar);
+ YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
+ YYSIZE_T yysize = yysize0;
+ YYSIZE_T yysize1;
+ int yysize_overflow = 0;
+ enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
+ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
+ int yyx;
+
+# if 0
+ /* This is so xgettext sees the translatable formats that are
+ constructed on the fly. */
+ YY_("syntax error, unexpected %s");
+ YY_("syntax error, unexpected %s, expecting %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s or %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
+# endif
+ char *yyfmt;
+ char const *yyf;
+ static char const yyunexpected[] = "syntax error, unexpected %s";
+ static char const yyexpecting[] = ", expecting %s";
+ static char const yyor[] = " or %s";
+ char yyformat[sizeof yyunexpected
+ + sizeof yyexpecting - 1
+ + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
+ * (sizeof yyor - 1))];
+ char const *yyprefix = yyexpecting;
+
+ /* Start YYX at -YYN if negative to avoid negative indexes in
+ YYCHECK. */
+ int yyxbegin = yyn < 0 ? -yyn : 0;
+
+ /* Stay within bounds of both yycheck and yytname. */
+ int yychecklim = YYLAST - yyn + 1;
+ int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
+ int yycount = 1;
+
+ yyarg[0] = yytname[yytype];
+ yyfmt = yystpcpy (yyformat, yyunexpected);
+
+ for (yyx = yyxbegin; yyx < yyxend; ++yyx)
+ if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
+ {
+ if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
+ {
+ yycount = 1;
+ yysize = yysize0;
+ yyformat[sizeof yyunexpected - 1] = '\0';
+ break;
+ }
+ yyarg[yycount++] = yytname[yyx];
+ yysize1 = yysize + yytnamerr (0, yytname[yyx]);
+ yysize_overflow |= (yysize1 < yysize);
+ yysize = yysize1;
+ yyfmt = yystpcpy (yyfmt, yyprefix);
+ yyprefix = yyor;
+ }
- yysize1 = yysize + yystrlen (yyformat);
- if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
- return 2;
- yysize = yysize1;
+ yyf = YY_(yyformat);
+ yysize1 = yysize + yystrlen (yyf);
+ yysize_overflow |= (yysize1 < yysize);
+ yysize = yysize1;
- if (*yymsg_alloc < yysize)
- {
- *yymsg_alloc = 2 * yysize;
- if (! (yysize <= *yymsg_alloc
- && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
- *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
- return 1;
- }
+ if (yysize_overflow)
+ return YYSIZE_MAXIMUM;
- /* Avoid sprintf, as that infringes on the user's name space.
- Don't have undefined behavior even if the translation
- produced a string with the wrong number of "%s"s. */
- {
- char *yyp = *yymsg;
- int yyi = 0;
- while ((*yyp = *yyformat) != '\0')
- if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
- {
- yyp += yytnamerr (yyp, yyarg[yyi++]);
- yyformat += 2;
- }
- else
- {
- yyp++;
- yyformat++;
- }
- }
- return 0;
+ if (yyresult)
+ {
+ /* Avoid sprintf, as that infringes on the user's name space.
+ Don't have undefined behavior even if the translation
+ produced a string with the wrong number of "%s"s. */
+ char *yyp = yyresult;
+ int yyi = 0;
+ while ((*yyp = *yyf) != '\0')
+ {
+ if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
+ {
+ yyp += yytnamerr (yyp, yyarg[yyi++]);
+ yyf += 2;
+ }
+ else
+ {
+ yyp++;
+ yyf++;
+ }
+ }
+ }
+ return yysize;
+ }
}
#endif /* YYERROR_VERBOSE */
+
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
@@ -3239,9 +3200,10 @@ yydestruct (yymsg, yytype, yyvaluep)
break;
}
}
-
+
/* Prevent warnings from -Wmissing-prototypes. */
+
#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int yyparse (void *YYPARSE_PARAM);
@@ -3257,6 +3219,10 @@ int yyparse ();
#endif /* ! YYPARSE_PARAM */
+
+
+
+
/*----------.
| yyparse. |
`----------*/
@@ -3283,46 +3249,22 @@ yyparse ()
#endif
#endif
{
-/* The lookahead symbol. */
+ /* The look-ahead symbol. */
int yychar;
-/* The semantic value of the lookahead symbol. */
+/* The semantic value of the look-ahead symbol. */
YYSTYPE yylval;
- /* Number of syntax errors so far. */
- int yynerrs;
-
- int yystate;
- /* Number of tokens to shift before error messages enabled. */
- int yyerrstatus;
-
- /* The stacks and their tools:
- `yyss': related to states.
- `yyvs': related to semantic values.
-
- Refer to the stacks thru separate pointers, to allow yyoverflow
- to reallocate them elsewhere. */
-
- /* The state stack. */
- yytype_int16 yyssa[YYINITDEPTH];
- yytype_int16 *yyss;
- yytype_int16 *yyssp;
-
- /* The semantic value stack. */
- YYSTYPE yyvsa[YYINITDEPTH];
- YYSTYPE *yyvs;
- YYSTYPE *yyvsp;
-
- YYSIZE_T yystacksize;
+/* Number of syntax errors so far. */
+int yynerrs;
+ int yystate;
int yyn;
int yyresult;
- /* Lookahead token as an internal (translated) token number. */
- int yytoken;
- /* The variables used to return semantic value and location from the
- action routines. */
- YYSTYPE yyval;
-
+ /* Number of tokens to shift before error messages enabled. */
+ int yyerrstatus;
+ /* Look-ahead token as an internal (translated) token number. */
+ int yytoken = 0;
#if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
@@ -3330,28 +3272,51 @@ YYSTYPE yylval;
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
#endif
+ /* Three stacks and their tools:
+ `yyss': related to states,
+ `yyvs': related to semantic values,
+ `yyls': related to locations.
+
+ Refer to the stacks thru separate pointers, to allow yyoverflow
+ to reallocate them elsewhere. */
+
+ /* The state stack. */
+ yytype_int16 yyssa[YYINITDEPTH];
+ yytype_int16 *yyss = yyssa;
+ yytype_int16 *yyssp;
+
+ /* The semantic value stack. */
+ YYSTYPE yyvsa[YYINITDEPTH];
+ YYSTYPE *yyvs = yyvsa;
+ YYSTYPE *yyvsp;
+
+
+
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
+ YYSIZE_T yystacksize = YYINITDEPTH;
+
+ /* The variables used to return semantic value and location from the
+ action routines. */
+ YYSTYPE yyval;
+
+
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
- yytoken = 0;
- yyss = yyssa;
- yyvs = yyvsa;
- yystacksize = YYINITDEPTH;
-
YYDPRINTF ((stderr, "Starting parse\n"));
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
+ yychar = YYEMPTY; /* Cause a token to be read. */
/* Initialize stack pointers.
Waste one element of value and location stack
so that they stay on the same level as the state stack.
The wasted elements are never initialized. */
+
yyssp = yyss;
yyvsp = yyvs;
@@ -3381,6 +3346,7 @@ YYSTYPE yylval;
YYSTYPE *yyvs1 = yyvs;
yytype_int16 *yyss1 = yyss;
+
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
@@ -3388,6 +3354,7 @@ YYSTYPE yylval;
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * sizeof (*yyssp),
&yyvs1, yysize * sizeof (*yyvsp),
+
&yystacksize);
yyss = yyss1;
@@ -3410,8 +3377,9 @@ YYSTYPE yylval;
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
if (! yyptr)
goto yyexhaustedlab;
- YYSTACK_RELOCATE (yyss_alloc, yyss);
- YYSTACK_RELOCATE (yyvs_alloc, yyvs);
+ YYSTACK_RELOCATE (yyss);
+ YYSTACK_RELOCATE (yyvs);
+
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
@@ -3422,6 +3390,7 @@ YYSTYPE yylval;
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
+
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
(unsigned long int) yystacksize));
@@ -3431,9 +3400,6 @@ YYSTYPE yylval;
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
- if (yystate == YYFINAL)
- YYACCEPT;
-
goto yybackup;
/*-----------.
@@ -3442,16 +3408,16 @@ YYSTYPE yylval;
yybackup:
/* Do appropriate processing given the current state. Read a
- lookahead token if we need one and don't already have one. */
+ look-ahead token if we need one and don't already have one. */
- /* First try to decide what to do without reference to lookahead token. */
+ /* First try to decide what to do without reference to look-ahead token. */
yyn = yypact[yystate];
- if (yypact_value_is_default (yyn))
+ if (yyn == YYPACT_NINF)
goto yydefault;
- /* Not known => get a lookahead token if don't already have one. */
+ /* Not known => get a look-ahead token if don't already have one. */
- /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
+ /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token: "));
@@ -3477,22 +3443,26 @@ yybackup:
yyn = yytable[yyn];
if (yyn <= 0)
{
- if (yytable_value_is_error (yyn))
- goto yyerrlab;
+ if (yyn == 0 || yyn == YYTABLE_NINF)
+ goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
+ if (yyn == YYFINAL)
+ YYACCEPT;
+
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
- /* Shift the lookahead token. */
+ /* Shift the look-ahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
- /* Discard the shifted token. */
- yychar = YYEMPTY;
+ /* Discard the shifted token unless it is eof. */
+ if (yychar != YYEOF)
+ yychar = YYEMPTY;
yystate = yyn;
*++yyvsp = yylval;
@@ -5333,42 +5303,42 @@ yyreduce:
case 417:
- { zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(1) - (1)]), ZEND_CT, 1 TSRMLS_CC); }
+ { (yyval) = (yyvsp[(1) - (1)]); }
break;
case 418:
- { (yyval).op_type = IS_CONST; ZVAL_EMPTY_STRING(&(yyval).u.constant); zend_do_build_namespace_name(&(yyval), &(yyval), &(yyvsp[(3) - (3)]) TSRMLS_CC); (yyvsp[(3) - (3)]) = (yyval); zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(3) - (3)]), ZEND_CT, 0 TSRMLS_CC); }
+ { zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(1) - (1)]), ZEND_CT, 1 TSRMLS_CC); }
break;
case 419:
- { char *tmp = estrndup(Z_STRVAL((yyvsp[(2) - (2)]).u.constant), Z_STRLEN((yyvsp[(2) - (2)]).u.constant)+1); memcpy(&(tmp[1]), Z_STRVAL((yyvsp[(2) - (2)]).u.constant), Z_STRLEN((yyvsp[(2) - (2)]).u.constant)+1); tmp[0] = '\\'; efree(Z_STRVAL((yyvsp[(2) - (2)]).u.constant)); Z_STRVAL((yyvsp[(2) - (2)]).u.constant) = tmp; ++Z_STRLEN((yyvsp[(2) - (2)]).u.constant); zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(2) - (2)]), ZEND_CT, 0 TSRMLS_CC); }
+ { (yyval).op_type = IS_CONST; ZVAL_EMPTY_STRING(&(yyval).u.constant); zend_do_build_namespace_name(&(yyval), &(yyval), &(yyvsp[(3) - (3)]) TSRMLS_CC); (yyvsp[(3) - (3)]) = (yyval); zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(3) - (3)]), ZEND_CT, 0 TSRMLS_CC); }
break;
case 420:
- { ZVAL_LONG(&(yyvsp[(1) - (2)]).u.constant, 0); add_function(&(yyvsp[(2) - (2)]).u.constant, &(yyvsp[(1) - (2)]).u.constant, &(yyvsp[(2) - (2)]).u.constant TSRMLS_CC); (yyval) = (yyvsp[(2) - (2)]); }
+ { char *tmp = estrndup(Z_STRVAL((yyvsp[(2) - (2)]).u.constant), Z_STRLEN((yyvsp[(2) - (2)]).u.constant)+1); memcpy(&(tmp[1]), Z_STRVAL((yyvsp[(2) - (2)]).u.constant), Z_STRLEN((yyvsp[(2) - (2)]).u.constant)+1); tmp[0] = '\\'; efree(Z_STRVAL((yyvsp[(2) - (2)]).u.constant)); Z_STRVAL((yyvsp[(2) - (2)]).u.constant) = tmp; ++Z_STRLEN((yyvsp[(2) - (2)]).u.constant); zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(2) - (2)]), ZEND_CT, 0 TSRMLS_CC); }
break;
case 421:
- { ZVAL_LONG(&(yyvsp[(1) - (2)]).u.constant, 0); sub_function(&(yyvsp[(2) - (2)]).u.constant, &(yyvsp[(1) - (2)]).u.constant, &(yyvsp[(2) - (2)]).u.constant TSRMLS_CC); (yyval) = (yyvsp[(2) - (2)]); }
+ { ZVAL_LONG(&(yyvsp[(1) - (2)]).u.constant, 0); add_function(&(yyvsp[(2) - (2)]).u.constant, &(yyvsp[(1) - (2)]).u.constant, &(yyvsp[(2) - (2)]).u.constant TSRMLS_CC); (yyval) = (yyvsp[(2) - (2)]); }
break;
case 422:
- { (yyval) = (yyvsp[(3) - (4)]); Z_TYPE((yyval).u.constant) = IS_CONSTANT_ARRAY; }
+ { ZVAL_LONG(&(yyvsp[(1) - (2)]).u.constant, 0); sub_function(&(yyvsp[(2) - (2)]).u.constant, &(yyvsp[(1) - (2)]).u.constant, &(yyvsp[(2) - (2)]).u.constant TSRMLS_CC); (yyval) = (yyvsp[(2) - (2)]); }
break;
case 423:
- { (yyval) = (yyvsp[(2) - (3)]); Z_TYPE((yyval).u.constant) = IS_CONSTANT_ARRAY; }
+ { (yyval) = (yyvsp[(3) - (4)]); Z_TYPE((yyval).u.constant) = IS_CONSTANT_ARRAY; }
break;
case 424:
- { (yyval) = (yyvsp[(1) - (1)]); }
+ { (yyval) = (yyvsp[(2) - (3)]); Z_TYPE((yyval).u.constant) = IS_CONSTANT_ARRAY; }
break;
case 425:
@@ -5378,12 +5348,12 @@ yyreduce:
case 426:
- { zend_do_fetch_constant(&(yyval), &(yyvsp[(1) - (3)]), &(yyvsp[(3) - (3)]), ZEND_CT, 0 TSRMLS_CC); }
+ { (yyval) = (yyvsp[(1) - (1)]); }
break;
case 427:
- { (yyval) = (yyvsp[(1) - (1)]); }
+ { zend_do_fetch_constant(&(yyval), &(yyvsp[(1) - (3)]), &(yyvsp[(3) - (3)]), ZEND_CT, 0 TSRMLS_CC); }
break;
case 428:
@@ -5393,566 +5363,576 @@ yyreduce:
case 429:
- { zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(1) - (1)]), ZEND_RT, 1 TSRMLS_CC); }
+ { (yyval) = (yyvsp[(1) - (1)]); }
break;
case 430:
- { (yyval).op_type = IS_CONST; ZVAL_EMPTY_STRING(&(yyval).u.constant); zend_do_build_namespace_name(&(yyval), &(yyval), &(yyvsp[(3) - (3)]) TSRMLS_CC); (yyvsp[(3) - (3)]) = (yyval); zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(3) - (3)]), ZEND_RT, 0 TSRMLS_CC); }
+ { (yyval) = (yyvsp[(1) - (1)]); }
break;
case 431:
- { char *tmp = estrndup(Z_STRVAL((yyvsp[(2) - (2)]).u.constant), Z_STRLEN((yyvsp[(2) - (2)]).u.constant)+1); memcpy(&(tmp[1]), Z_STRVAL((yyvsp[(2) - (2)]).u.constant), Z_STRLEN((yyvsp[(2) - (2)]).u.constant)+1); tmp[0] = '\\'; efree(Z_STRVAL((yyvsp[(2) - (2)]).u.constant)); Z_STRVAL((yyvsp[(2) - (2)]).u.constant) = tmp; ++Z_STRLEN((yyvsp[(2) - (2)]).u.constant); zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(2) - (2)]), ZEND_RT, 0 TSRMLS_CC); }
+ { zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(1) - (1)]), ZEND_RT, 1 TSRMLS_CC); }
break;
case 432:
- { (yyval) = (yyvsp[(1) - (1)]); }
+ { (yyval).op_type = IS_CONST; ZVAL_EMPTY_STRING(&(yyval).u.constant); zend_do_build_namespace_name(&(yyval), &(yyval), &(yyvsp[(3) - (3)]) TSRMLS_CC); (yyvsp[(3) - (3)]) = (yyval); zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(3) - (3)]), ZEND_RT, 0 TSRMLS_CC); }
break;
case 433:
- { (yyval) = (yyvsp[(2) - (3)]); }
+ { char *tmp = estrndup(Z_STRVAL((yyvsp[(2) - (2)]).u.constant), Z_STRLEN((yyvsp[(2) - (2)]).u.constant)+1); memcpy(&(tmp[1]), Z_STRVAL((yyvsp[(2) - (2)]).u.constant), Z_STRLEN((yyvsp[(2) - (2)]).u.constant)+1); tmp[0] = '\\'; efree(Z_STRVAL((yyvsp[(2) - (2)]).u.constant)); Z_STRVAL((yyvsp[(2) - (2)]).u.constant) = tmp; ++Z_STRLEN((yyvsp[(2) - (2)]).u.constant); zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(2) - (2)]), ZEND_RT, 0 TSRMLS_CC); }
break;
case 434:
- { (yyval) = (yyvsp[(2) - (3)]); }
+ { (yyval) = (yyvsp[(1) - (1)]); }
break;
case 435:
- { if (Z_TYPE((yyvsp[(1) - (1)]).u.constant) == IS_CONSTANT) {zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(1) - (1)]), ZEND_RT, 1 TSRMLS_CC);} else {(yyval) = (yyvsp[(1) - (1)]);} }
+ { (yyval) = (yyvsp[(2) - (3)]); }
break;
case 436:
- { (yyval).op_type = IS_CONST; INIT_PZVAL(&(yyval).u.constant); array_init(&(yyval).u.constant); }
+ { (yyval) = (yyvsp[(2) - (3)]); }
break;
case 437:
+ { if (Z_TYPE((yyvsp[(1) - (1)]).u.constant) == IS_CONSTANT) {zend_do_fetch_constant(&(yyval), NULL, &(yyvsp[(1) - (1)]), ZEND_RT, 1 TSRMLS_CC);} else {(yyval) = (yyvsp[(1) - (1)]);} }
+ break;
+
+ case 438:
+
+ { (yyval).op_type = IS_CONST; INIT_PZVAL(&(yyval).u.constant); array_init(&(yyval).u.constant); }
+ break;
+
+ case 439:
+
{ (yyval) = (yyvsp[(1) - (2)]); }
break;
- case 440:
+ case 442:
{ zend_do_add_static_array_element(&(yyval), &(yyvsp[(3) - (5)]), &(yyvsp[(5) - (5)])); }
break;
- case 441:
+ case 443:
{ zend_do_add_static_array_element(&(yyval), NULL, &(yyvsp[(3) - (3)])); }
break;
- case 442:
+ case 444:
{ (yyval).op_type = IS_CONST; INIT_PZVAL(&(yyval).u.constant); array_init(&(yyval).u.constant); zend_do_add_static_array_element(&(yyval), &(yyvsp[(1) - (3)]), &(yyvsp[(3) - (3)])); }
break;
- case 443:
+ case 445:
{ (yyval).op_type = IS_CONST; INIT_PZVAL(&(yyval).u.constant); array_init(&(yyval).u.constant); zend_do_add_static_array_element(&(yyval), NULL, &(yyvsp[(1) - (1)])); }
break;
- case 444:
+ case 446:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 445:
+ case 447:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 446:
+ case 448:
{ (yyval) = (yyvsp[(2) - (3)]); }
break;
- case 447:
+ case 449:
{ (yyval) = (yyvsp[(2) - (3)]); }
break;
- case 448:
+ case 450:
{ zend_do_end_variable_parse(&(yyvsp[(1) - (1)]), BP_VAR_R, 0 TSRMLS_CC); (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 449:
+ case 451:
{ zend_do_end_variable_parse(&(yyvsp[(1) - (1)]), BP_VAR_W, 0 TSRMLS_CC); (yyval) = (yyvsp[(1) - (1)]);
zend_check_writable_variable(&(yyvsp[(1) - (1)])); }
break;
- case 450:
+ case 452:
{ zend_do_end_variable_parse(&(yyvsp[(1) - (1)]), BP_VAR_RW, 0 TSRMLS_CC); (yyval) = (yyvsp[(1) - (1)]);
zend_check_writable_variable(&(yyvsp[(1) - (1)])); }
break;
- case 451:
+ case 453:
{ zend_do_push_object(&(yyvsp[(1) - (2)]) TSRMLS_CC); }
break;
- case 452:
+ case 454:
{ zend_do_push_object(&(yyvsp[(4) - (4)]) TSRMLS_CC); }
break;
- case 453:
+ case 455:
{ zend_do_pop_object(&(yyval) TSRMLS_CC); (yyval).EA = (yyvsp[(1) - (7)]).EA | ((yyvsp[(7) - (7)]).EA ? (yyvsp[(7) - (7)]).EA : (yyvsp[(6) - (7)]).EA); }
break;
- case 454:
+ case 456:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 455:
+ case 457:
{ (yyval).EA = (yyvsp[(2) - (2)]).EA; }
break;
- case 456:
+ case 458:
{ (yyval).EA = 0; }
break;
- case 457:
+ case 459:
{ zend_do_push_object(&(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 458:
+ case 460:
{ (yyval).EA = (yyvsp[(4) - (4)]).EA; }
break;
- case 459:
+ case 461:
{ fetch_array_dim(&(yyval), &(yyvsp[(1) - (4)]), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 460:
+ case 462:
{ (yyvsp[(1) - (4)]).EA = ZEND_PARSED_METHOD_CALL; fetch_array_dim(&(yyval), &(yyvsp[(1) - (4)]), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 461:
+ case 463:
{ zend_do_pop_object(&(yyval) TSRMLS_CC); zend_do_begin_method_call(&(yyval) TSRMLS_CC); }
break;
- case 462:
+ case 464:
{ zend_do_end_function_call(&(yyvsp[(1) - (2)]), &(yyval), &(yyvsp[(2) - (2)]), 1, 1 TSRMLS_CC); zend_do_extended_fcall_end(TSRMLS_C); }
break;
- case 463:
+ case 465:
{ (yyval) = (yyvsp[(1) - (1)]); (yyval).EA = ZEND_PARSED_METHOD_CALL; zend_do_push_object(&(yyval) TSRMLS_CC); }
break;
- case 464:
+ case 466:
{ (yyval) = (yyvsp[(1) - (1)]); zend_do_push_object(&(yyval) TSRMLS_CC); }
break;
- case 465:
+ case 467:
{ (yyval).EA = ZEND_PARSED_MEMBER; }
break;
- case 466:
+ case 468:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 467:
+ case 469:
{ zend_do_indirect_references(&(yyval), &(yyvsp[(1) - (2)]), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 468:
+ case 470:
{ (yyval) = (yyvsp[(3) - (3)]); zend_do_fetch_static_member(&(yyval), &(yyvsp[(1) - (3)]) TSRMLS_CC); }
break;
- case 469:
+ case 471:
{ (yyval) = (yyvsp[(3) - (3)]); zend_do_fetch_static_member(&(yyval), &(yyvsp[(1) - (3)]) TSRMLS_CC); }
break;
- case 470:
+ case 472:
{ zend_do_end_variable_parse(&(yyvsp[(1) - (1)]), BP_VAR_R, 0 TSRMLS_CC); (yyval)=(yyvsp[(1) - (1)]);; }
break;
- case 471:
+ case 473:
{ fetch_array_dim(&(yyval), &(yyvsp[(1) - (4)]), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 472:
+ case 474:
{ zend_do_begin_variable_parse(TSRMLS_C); (yyvsp[(1) - (1)]).EA = ZEND_PARSED_FUNCTION_CALL; }
break;
- case 473:
+ case 475:
{ fetch_array_dim(&(yyval), &(yyvsp[(1) - (5)]), &(yyvsp[(4) - (5)]) TSRMLS_CC); }
break;
- case 474:
+ case 476:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 475:
+ case 477:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 476:
+ case 478:
{ zend_do_begin_variable_parse(TSRMLS_C); (yyval) = (yyvsp[(1) - (1)]); (yyval).EA = ZEND_PARSED_FUNCTION_CALL; }
break;
- case 477:
+ case 479:
{ (yyval) = (yyvsp[(1) - (1)]); (yyval).EA = ZEND_PARSED_VARIABLE; }
break;
- case 478:
+ case 480:
{ zend_do_indirect_references(&(yyval), &(yyvsp[(1) - (2)]), &(yyvsp[(2) - (2)]) TSRMLS_CC); (yyval).EA = ZEND_PARSED_VARIABLE; }
break;
- case 479:
+ case 481:
{ (yyval) = (yyvsp[(1) - (1)]); (yyval).EA = ZEND_PARSED_STATIC_MEMBER; }
break;
- case 480:
+ case 482:
{ fetch_array_dim(&(yyval), &(yyvsp[(1) - (4)]), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 481:
+ case 483:
{ fetch_string_offset(&(yyval), &(yyvsp[(1) - (4)]), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 482:
+ case 484:
{ zend_do_begin_variable_parse(TSRMLS_C); fetch_simple_variable(&(yyval), &(yyvsp[(1) - (1)]), 1 TSRMLS_CC); }
break;
- case 483:
+ case 485:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 484:
+ case 486:
{ (yyval) = (yyvsp[(3) - (4)]); }
break;
- case 485:
+ case 487:
{ (yyval).op_type = IS_UNUSED; }
break;
- case 486:
+ case 488:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 487:
+ case 489:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 488:
+ case 490:
{ zend_do_end_variable_parse(&(yyvsp[(1) - (1)]), BP_VAR_R, 0 TSRMLS_CC); }
break;
- case 489:
+ case 491:
{ znode tmp_znode; zend_do_pop_object(&tmp_znode TSRMLS_CC); zend_do_fetch_property(&(yyval), &tmp_znode, &(yyvsp[(1) - (2)]) TSRMLS_CC);}
break;
- case 490:
+ case 492:
{ fetch_array_dim(&(yyval), &(yyvsp[(1) - (4)]), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 491:
+ case 493:
{ fetch_string_offset(&(yyval), &(yyvsp[(1) - (4)]), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 492:
+ case 494:
{ znode tmp_znode; zend_do_pop_object(&tmp_znode TSRMLS_CC); zend_do_fetch_property(&(yyval), &tmp_znode, &(yyvsp[(1) - (1)]) TSRMLS_CC);}
break;
- case 493:
+ case 495:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 494:
+ case 496:
{ (yyval) = (yyvsp[(2) - (3)]); }
break;
- case 495:
+ case 497:
{ Z_LVAL((yyval).u.constant) = 1; }
break;
- case 496:
+ case 498:
{ Z_LVAL((yyval).u.constant)++; }
break;
- case 499:
+ case 501:
{ zend_do_add_list_element(&(yyvsp[(1) - (1)]) TSRMLS_CC); }
break;
- case 500:
+ case 502:
{ zend_do_new_list_begin(TSRMLS_C); }
break;
- case 501:
+ case 503:
{ zend_do_new_list_end(TSRMLS_C); }
break;
- case 502:
+ case 504:
{ zend_do_add_list_element(NULL TSRMLS_CC); }
break;
- case 503:
+ case 505:
{ zend_do_init_array(&(yyval), NULL, NULL, 0 TSRMLS_CC); }
break;
- case 504:
+ case 506:
{ (yyval) = (yyvsp[(1) - (2)]); }
break;
- case 505:
+ case 507:
{ zend_do_add_array_element(&(yyval), &(yyvsp[(5) - (5)]), &(yyvsp[(3) - (5)]), 0 TSRMLS_CC); }
break;
- case 506:
+ case 508:
{ zend_do_add_array_element(&(yyval), &(yyvsp[(3) - (3)]), NULL, 0 TSRMLS_CC); }
break;
- case 507:
+ case 509:
{ zend_do_init_array(&(yyval), &(yyvsp[(3) - (3)]), &(yyvsp[(1) - (3)]), 0 TSRMLS_CC); }
break;
- case 508:
+ case 510:
{ zend_do_init_array(&(yyval), &(yyvsp[(1) - (1)]), NULL, 0 TSRMLS_CC); }
break;
- case 509:
+ case 511:
{ zend_do_add_array_element(&(yyval), &(yyvsp[(6) - (6)]), &(yyvsp[(3) - (6)]), 1 TSRMLS_CC); }
break;
- case 510:
+ case 512:
{ zend_do_add_array_element(&(yyval), &(yyvsp[(4) - (4)]), NULL, 1 TSRMLS_CC); }
break;
- case 511:
+ case 513:
{ zend_do_init_array(&(yyval), &(yyvsp[(4) - (4)]), &(yyvsp[(1) - (4)]), 1 TSRMLS_CC); }
break;
- case 512:
+ case 514:
{ zend_do_init_array(&(yyval), &(yyvsp[(2) - (2)]), NULL, 1 TSRMLS_CC); }
break;
- case 513:
+ case 515:
{ zend_do_end_variable_parse(&(yyvsp[(2) - (2)]), BP_VAR_R, 0 TSRMLS_CC); zend_do_add_variable(&(yyval), &(yyvsp[(1) - (2)]), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 514:
+ case 516:
{ zend_do_add_string(&(yyval), &(yyvsp[(1) - (2)]), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 515:
+ case 517:
{ zend_do_end_variable_parse(&(yyvsp[(1) - (1)]), BP_VAR_R, 0 TSRMLS_CC); zend_do_add_variable(&(yyval), NULL, &(yyvsp[(1) - (1)]) TSRMLS_CC); }
break;
- case 516:
+ case 518:
{ zend_do_add_string(&(yyval), NULL, &(yyvsp[(1) - (2)]) TSRMLS_CC); zend_do_end_variable_parse(&(yyvsp[(2) - (2)]), BP_VAR_R, 0 TSRMLS_CC); zend_do_add_variable(&(yyval), &(yyval), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 517:
+ case 519:
{ zend_do_begin_variable_parse(TSRMLS_C); fetch_simple_variable(&(yyval), &(yyvsp[(1) - (1)]), 1 TSRMLS_CC); }
break;
- case 518:
+ case 520:
{ zend_do_begin_variable_parse(TSRMLS_C); }
break;
- case 519:
+ case 521:
{ fetch_array_begin(&(yyval), &(yyvsp[(1) - (5)]), &(yyvsp[(4) - (5)]) TSRMLS_CC); }
break;
- case 520:
+ case 522:
{ zend_do_begin_variable_parse(TSRMLS_C); fetch_simple_variable(&(yyvsp[(2) - (3)]), &(yyvsp[(1) - (3)]), 1 TSRMLS_CC); zend_do_fetch_property(&(yyval), &(yyvsp[(2) - (3)]), &(yyvsp[(3) - (3)]) TSRMLS_CC); }
break;
- case 521:
+ case 523:
{ zend_do_begin_variable_parse(TSRMLS_C); fetch_simple_variable(&(yyval), &(yyvsp[(2) - (3)]), 1 TSRMLS_CC); }
break;
- case 522:
+ case 524:
{ zend_do_begin_variable_parse(TSRMLS_C); fetch_array_begin(&(yyval), &(yyvsp[(2) - (6)]), &(yyvsp[(4) - (6)]) TSRMLS_CC); }
break;
- case 523:
+ case 525:
{ (yyval) = (yyvsp[(2) - (3)]); }
break;
- case 524:
+ case 526:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 525:
+ case 527:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 526:
+ case 528:
{ fetch_simple_variable(&(yyval), &(yyvsp[(1) - (1)]), 1 TSRMLS_CC); }
break;
- case 527:
+ case 529:
{ (yyval) = (yyvsp[(3) - (4)]); }
break;
- case 528:
+ case 530:
{ zend_do_isset_or_isempty(ZEND_ISEMPTY, &(yyval), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 529:
+ case 531:
{ zend_do_unary_op(ZEND_BOOL_NOT, &(yyval), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 530:
+ case 532:
{ zend_do_include_or_eval(ZEND_INCLUDE, &(yyval), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 531:
+ case 533:
{ zend_do_include_or_eval(ZEND_INCLUDE_ONCE, &(yyval), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 532:
+ case 534:
{ zend_do_include_or_eval(ZEND_EVAL, &(yyval), &(yyvsp[(3) - (4)]) TSRMLS_CC); }
break;
- case 533:
+ case 535:
{ zend_do_include_or_eval(ZEND_REQUIRE, &(yyval), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 534:
+ case 536:
{ zend_do_include_or_eval(ZEND_REQUIRE_ONCE, &(yyval), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 535:
+ case 537:
{ (yyval) = (yyvsp[(1) - (1)]); }
break;
- case 536:
+ case 538:
{ zend_do_boolean_and_begin(&(yyvsp[(1) - (2)]), &(yyvsp[(2) - (2)]) TSRMLS_CC); }
break;
- case 537:
+ case 539:
{ zend_do_boolean_and_end(&(yyval), &(yyvsp[(1) - (4)]), &(yyvsp[(4) - (4)]), &(yyvsp[(2) - (4)]) TSRMLS_CC); }
break;
- case 538:
+ case 540:
{ zend_do_isset_or_isempty(ZEND_ISSET, &(yyval), &(yyvsp[(1) - (1)]) TSRMLS_CC); }
break;
- case 539:
+ case 541:
{ zend_error(E_COMPILE_ERROR, "Cannot use isset() on the result of an expression (you can use \"null !== expression\" instead)"); }
break;
- case 540:
+ case 542:
{ zend_do_fetch_constant(&(yyval), &(yyvsp[(1) - (3)]), &(yyvsp[(3) - (3)]), ZEND_RT, 0 TSRMLS_CC); }
break;
- case 541:
+ case 543:
{ zend_do_fetch_constant(&(yyval), &(yyvsp[(1) - (3)]), &(yyvsp[(3) - (3)]), ZEND_RT, 0 TSRMLS_CC); }
break;
+ case 544:
+
+ { zend_do_resolve_class_name(&(yyval), &(yyvsp[(1) - (3)]), 1 TSRMLS_CC); }
+ break;
+
+ case 545:
+ { zend_do_resolve_class_name(&(yyval), &(yyvsp[(1) - (3)]), 0 TSRMLS_CC); }
+ break;
+
+
+/* Line 1267 of yacc.c. */
default: break;
}
- /* User semantic actions sometimes alter yychar, and that requires
- that yytoken be updated with the new translation. We take the
- approach of translating immediately before every use of yytoken.
- One alternative is translating here after every semantic action,
- but that translation would be missed if the semantic action invokes
- YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
- if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
- incorrect destructor might then be invoked immediately. In the
- case of YYERROR or YYBACKUP, subsequent parser actions might lead
- to an incorrect destructor call or verbose syntax error message
- before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
YYPOPSTACK (yylen);
@@ -5961,6 +5941,7 @@ yyreduce:
*++yyvsp = yyval;
+
/* Now `shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
@@ -5980,10 +5961,6 @@ yyreduce:
| yyerrlab -- here on detecting error |
`------------------------------------*/
yyerrlab:
- /* Make sure we have latest lookahead translation. See comments at
- user semantic actions for why this is necessary. */
- yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
-
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
@@ -5991,36 +5968,37 @@ yyerrlab:
#if ! YYERROR_VERBOSE
yyerror (YY_("syntax error"));
#else
-# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
- yyssp, yytoken)
{
- char const *yymsgp = YY_("syntax error");
- int yysyntax_error_status;
- yysyntax_error_status = YYSYNTAX_ERROR;
- if (yysyntax_error_status == 0)
- yymsgp = yymsg;
- else if (yysyntax_error_status == 1)
- {
- if (yymsg != yymsgbuf)
- YYSTACK_FREE (yymsg);
- yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
- if (!yymsg)
- {
- yymsg = yymsgbuf;
- yymsg_alloc = sizeof yymsgbuf;
- yysyntax_error_status = 2;
- }
- else
- {
- yysyntax_error_status = YYSYNTAX_ERROR;
- yymsgp = yymsg;
- }
- }
- yyerror (yymsgp);
- if (yysyntax_error_status == 2)
- goto yyexhaustedlab;
+ YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
+ if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
+ {
+ YYSIZE_T yyalloc = 2 * yysize;
+ if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
+ yyalloc = YYSTACK_ALLOC_MAXIMUM;
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+ yymsg = (char *) YYSTACK_ALLOC (yyalloc);
+ if (yymsg)
+ yymsg_alloc = yyalloc;
+ else
+ {
+ yymsg = yymsgbuf;
+ yymsg_alloc = sizeof yymsgbuf;
+ }
+ }
+
+ if (0 < yysize && yysize <= yymsg_alloc)
+ {
+ (void) yysyntax_error (yymsg, yystate, yychar);
+ yyerror (yymsg);
+ }
+ else
+ {
+ yyerror (YY_("syntax error"));
+ if (yysize != 0)
+ goto yyexhaustedlab;
+ }
}
-# undef YYSYNTAX_ERROR
#endif
}
@@ -6028,7 +6006,7 @@ yyerrlab:
if (yyerrstatus == 3)
{
- /* If just tried and failed to reuse lookahead token after an
+ /* If just tried and failed to reuse look-ahead token after an
error, discard it. */
if (yychar <= YYEOF)
@@ -6045,7 +6023,7 @@ yyerrlab:
}
}
- /* Else will try to reuse lookahead token after shifting the error
+ /* Else will try to reuse look-ahead token after shifting the error
token. */
goto yyerrlab1;
@@ -6079,7 +6057,7 @@ yyerrlab1:
for (;;)
{
yyn = yypact[yystate];
- if (!yypact_value_is_default (yyn))
+ if (yyn != YYPACT_NINF)
{
yyn += YYTERROR;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
@@ -6102,6 +6080,9 @@ yyerrlab1:
YY_STACK_PRINT (yyss, yyssp);
}
+ if (yyn == YYFINAL)
+ YYACCEPT;
+
*++yyvsp = yylval;
@@ -6126,7 +6107,7 @@ yyabortlab:
yyresult = 1;
goto yyreturn;
-#if !defined(yyoverflow) || YYERROR_VERBOSE
+#ifndef yyoverflow
/*-------------------------------------------------.
| yyexhaustedlab -- memory exhaustion comes here. |
`-------------------------------------------------*/
@@ -6137,14 +6118,9 @@ yyexhaustedlab:
#endif
yyreturn:
- if (yychar != YYEMPTY)
- {
- /* Make sure we have latest lookahead translation. See comments at
- user semantic actions for why this is necessary. */
- yytoken = YYTRANSLATE (yychar);
- yydestruct ("Cleanup: discarding lookahead",
- yytoken, &yylval);
- }
+ if (yychar != YYEOF && yychar != YYEMPTY)
+ yydestruct ("Cleanup: discarding lookahead",
+ yytoken, &yylval);
/* Do not reclaim the symbols of the rule which action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);