blob: 320d7e5510ec2d10b40028389538ff483e3e48ce [file] [log] [blame]
#line 3 "parser_yang_lex.c"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 6
#define YY_FLEX_SUBMINOR_VERSION 0
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific or compiler-specific issues. */
/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
/* end standard C headers. */
/* flex integer type definitions */
#ifndef FLEXINT_H
#define FLEXINT_H
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
* if you want the limit (max/min) macros for int types.
*/
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif
#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif
#endif /* ! C99 */
#endif /* ! FLEXINT_H */
#ifdef __cplusplus
/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST
#else /* ! __cplusplus */
/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)
#define YY_USE_CONST
#endif /* defined (__STDC__) */
#endif /* ! __cplusplus */
#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif
/* Returned upon end-of-file. */
#define YY_NULL 0
/* Promotes a possibly negative, possibly signed char to an unsigned
* integer for use as an array index. If the signed char is negative,
* we want to instead treat it as an 8-bit unsigned char, hence the
* double cast.
*/
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
/* An opaque pointer. */
#ifndef YY_TYPEDEF_YY_SCANNER_T
#define YY_TYPEDEF_YY_SCANNER_T
typedef void* yyscan_t;
#endif
/* For convenience, these vars (plus the bison vars far below)
are macros in the reentrant scanner. */
#define yyin yyg->yyin_r
#define yyout yyg->yyout_r
#define yyextra yyg->yyextra_r
#define yyleng yyg->yyleng_r
#define yytext yyg->yytext_r
#define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno)
#define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column)
#define yy_flex_debug yyg->yy_flex_debug_r
/* Enter a start condition. This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN yyg->yy_start = 1 + 2 *
/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state. The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START ((yyg->yy_start - 1) / 2)
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart(yyin ,yyscanner )
#define YY_END_OF_BUFFER_CHAR 0
/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k.
* Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
* Ditto for the __ia64__ case accordingly.
*/
#define YY_BUF_SIZE 32768
#else
#define YY_BUF_SIZE 16384
#endif /* __ia64__ */
#endif
/* The state buf must be large enough to hold one state per character in the main buffer.
*/
#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif
#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define YY_LESS_LINENO(n)
#define YY_LINENO_REWIND_TO(ptr)
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
*yy_cp = yyg->yy_hold_char; \
YY_RESTORE_YY_MORE_OFFSET \
yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
} \
while ( 0 )
#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
{
FILE *yy_input_file;
char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */
/* Size of input buffer in bytes, not including room for EOB
* characters.
*/
yy_size_t yy_buf_size;
/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
yy_size_t yy_n_chars;
/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;
/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;
/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;
int yy_bs_lineno; /**< The line count. */
int yy_bs_column; /**< The column count. */
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;
int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more. We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2
};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \
? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \
: NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top]
void yyrestart (FILE *input_file ,yyscan_t yyscanner );
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner );
void yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
void yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner );
void yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner );
void yypop_buffer_state (yyscan_t yyscanner );
static void yyensure_buffer_stack (yyscan_t yyscanner );
static void yy_load_buffer_state (yyscan_t yyscanner );
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner );
#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ,yyscanner)
YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner );
void *yyalloc (yy_size_t ,yyscan_t yyscanner );
void *yyrealloc (void *,yy_size_t ,yyscan_t yyscanner );
void yyfree (void * ,yyscan_t yyscanner );
#define yy_new_buffer yy_create_buffer
#define yy_set_interactive(is_interactive) \
{ \
if ( ! YY_CURRENT_BUFFER ){ \
yyensure_buffer_stack (yyscanner); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
}
#define yy_set_bol(at_bol) \
{ \
if ( ! YY_CURRENT_BUFFER ){\
yyensure_buffer_stack (yyscanner); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
}
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
/* Begin user sect3 */
#define yywrap(yyscanner) (/*CONSTCOND*/1)
#define YY_SKIP_YYWRAP
typedef unsigned char YY_CHAR;
typedef int yy_state_type;
#define yytext_ptr yytext_r
static yy_state_type yy_get_previous_state (yyscan_t yyscanner );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner);
static int yy_get_next_buffer (yyscan_t yyscanner );
#if defined(__GNUC__) && __GNUC__ >= 3
__attribute__((__noreturn__))
#endif
static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner );
/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION \
yyg->yytext_ptr = yy_bp; \
yyleng = (size_t) (yy_cp - yy_bp); \
yyg->yy_hold_char = *yy_cp; \
*yy_cp = '\0'; \
yyg->yy_c_buf_p = yy_cp;
#define YY_NUM_RULES 131
#define YY_END_OF_BUFFER 132
/* This struct is not used in this scanner,
but its presence is necessary. */
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static yyconst flex_int16_t yy_accept[651] =
{ 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 132, 130, 129, 127, 130, 126, 92, 99,
91, 126, 126, 102, 104, 90, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 88, 89,
130, 130, 130, 130, 130, 130, 130, 130, 2, 3,
2, 130, 130, 130, 130, 130, 130, 130, 130, 6,
115, 113, 130, 118, 109, 110, 111, 130, 105, 116,
108, 121, 106, 107, 121, 117, 93, 95, 94, 98,
94, 130, 130, 130, 130, 130, 130, 130, 130, 100,
101, 130, 129, 128, 126, 0, 0, 0, 0, 0,
0, 0, 0, 103, 1, 5, 126, 104, 124, 126,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 0, 0, 0, 0, 0, 0, 0,
4, 2, 0, 0, 0, 0, 0, 0, 0, 115,
114, 112, 120, 119, 121, 0, 121, 94, 93, 0,
0, 0, 0, 0, 0, 0, 100, 103, 126, 104,
125, 124, 72, 124, 124, 124, 124, 124, 12, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
34, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 60, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 126, 0, 0, 0,
2, 0, 0, 0, 122, 121, 96, 0, 0, 0,
126, 104, 125, 124, 124, 124, 124, 124, 10, 124,
13, 124, 124, 124, 124, 124, 124, 124, 124, 124,
20, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 35, 124, 38, 124, 124, 124, 124, 124,
43, 124, 124, 124, 124, 124, 124, 124, 49, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 82, 63, 124, 124, 124, 84, 67, 124,
69, 124, 124, 126, 2, 122, 121, 97, 126, 104,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 77, 124, 124,
124, 124, 124, 124, 124, 33, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 124, 124, 54, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 66, 68, 124, 124,
121, 126, 85, 124, 7, 124, 124, 124, 14, 15,
124, 124, 124, 124, 75, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 31, 124, 124, 37, 124,
124, 124, 124, 42, 124, 124, 124, 124, 124, 124,
48, 124, 124, 52, 124, 124, 56, 124, 124, 124,
61, 124, 81, 124, 124, 65, 124, 124, 121, 126,
87, 124, 9, 124, 16, 124, 73, 18, 124, 124,
25, 124, 124, 124, 124, 26, 124, 124, 124, 124,
32, 124, 124, 124, 124, 124, 124, 124, 124, 124,
124, 124, 50, 124, 124, 124, 80, 124, 124, 124,
64, 124, 124, 124, 74, 126, 8, 124, 124, 124,
124, 124, 124, 124, 124, 124, 28, 29, 124, 124,
124, 124, 124, 86, 124, 124, 124, 79, 124, 124,
51, 53, 124, 124, 58, 124, 124, 124, 124, 126,
124, 17, 124, 124, 24, 124, 124, 23, 124, 124,
36, 39, 124, 124, 44, 124, 124, 124, 124, 55,
124, 124, 62, 83, 124, 124, 123, 11, 76, 124,
124, 124, 124, 30, 124, 124, 124, 124, 46, 124,
124, 124, 124, 124, 19, 124, 124, 124, 124, 124,
124, 124, 124, 124, 124, 124, 71, 124, 124, 124,
40, 41, 124, 45, 47, 124, 124, 70, 21, 22,
124, 78, 124, 59, 124, 124, 27, 124, 57, 0
} ;
static yyconst YY_CHAR yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 5, 6, 7, 6, 6, 6, 6, 8, 9,
10, 11, 12, 6, 13, 14, 15, 16, 17, 17,
17, 17, 17, 17, 17, 17, 17, 18, 19, 6,
20, 6, 6, 6, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
22, 23, 24, 6, 21, 6, 25, 26, 27, 28,
29, 30, 31, 32, 33, 21, 34, 35, 36, 37,
38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
48, 49, 50, 6, 51, 6, 6, 52, 52, 52,
52, 52, 52, 52, 52, 52, 52, 52, 52, 52,
52, 52, 52, 53, 53, 53, 53, 53, 53, 53,
53, 53, 53, 53, 53, 53, 53, 53, 53, 54,
54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
54, 55, 55, 56, 56, 56, 56, 56, 56, 56,
56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
56, 56, 56, 56, 56, 56, 56, 56, 56, 56,
56, 56, 56, 57, 58, 58, 58, 58, 58, 58,
58, 58, 58, 58, 58, 58, 59, 60, 60, 61,
62, 62, 62, 63, 55, 55, 55, 55, 55, 55,
55, 55, 55, 55, 55
} ;
static yyconst YY_CHAR yy_meta[64] =
{ 0,
1, 1, 1, 1, 1, 2, 1, 1, 2, 2,
2, 2, 3, 3, 2, 3, 3, 4, 1, 2,
5, 2, 2, 2, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5, 1,
1, 1, 1, 1, 1, 2, 2, 2, 2, 2,
2, 2, 2
} ;
static yyconst flex_uint16_t yy_base[660] =
{ 0,
0, 0, 61, 122, 62, 63, 185, 0, 248, 311,
374, 437, 472, 4766, 65, 4766, 453, 19, 4766, 4766,
27, 78, 490, 81, 88, 4766, 548, 606, 117, 128,
225, 231, 236, 254, 289, 294, 312, 351, 366, 371,
414, 432, 437, 475, 426, 481, 483, 501, 4766, 4766,
48, 390, 54, 16, 57, 40, 74, 362, 4766, 4766,
398, 77, 357, 95, 99, 110, 114, 231, 344, 4766,
168, 4766, 387, 4766, 4766, 4766, 4766, 280, 245, 4766,
4766, 274, 4766, 4766, 249, 4766, 4766, 4766, 4766, 4766,
272, 234, 203, 275, 237, 290, 243, 294, 119, 4766,
4766, 298, 352, 4766, 259, 306, 105, 333, 284, 348,
308, 364, 105, 408, 309, 394, 432, 471, 537, 664,
548, 556, 604, 701, 703, 612, 721, 709, 727, 739,
745, 747, 765, 771, 786, 791, 616, 801, 812, 814,
831, 832, 833, 852, 850, 874, 851, 876, 894, 899,
902, 915, 923, 934, 943, 954, 962, 972, 980, 993,
993, 999, 1014, 1019, 1022, 1038, 1038, 1055, 1057, 1068,
1076, 1089, 1095, 368, 478, 483, 487, 534, 542, 549,
4766, 4766, 583, 662, 665, 707, 768, 853, 856, 378,
4766, 4766, 4766, 4766, 94, 0, 258, 4766, 4766, 876,
940, 996, 1017, 1075, 1088, 1091, 4766, 1135, 1138, 1145,
1157, 1155, 1157, 1163, 1184, 1195, 1206, 1214, 1226, 1232,
1238, 1242, 1261, 1266, 1272, 1284, 1290, 1296, 1308, 1319,
1314, 1329, 1337, 1350, 1356, 1358, 1366, 1368, 1379, 1388,
1399, 1400, 1416, 1414, 1435, 1437, 1455, 1457, 1475, 1480,
1498, 1500, 1518, 1523, 1526, 1540, 1551, 1559, 1572, 1580,
1588, 1601, 1607, 1609, 1627, 1638, 1649, 1660, 1671, 1679,
1691, 1699, 1710, 1718, 1729, 1737, 435, 1105, 1192, 1243,
4766, 1336, 1417, 1434, 0, 314, 4766, 1452, 1461, 1480,
464, 1645, 1776, 1765, 1780, 1786, 1813, 1815, 1833, 1835,
1841, 1853, 1859, 1874, 1879, 1885, 1897, 1908, 1916, 1931,
1936, 1942, 1954, 1960, 1965, 1980, 1980, 1996, 1998, 2017,
2019, 2025, 2037, 2043, 2048, 2063, 2068, 2074, 2078, 2086,
2094, 2102, 2110, 2118, 2126, 2139, 2145, 2147, 2165, 2167,
2173, 2185, 2196, 2207, 2215, 2226, 2237, 2249, 2249, 2268,
2270, 2288, 2293, 2299, 2311, 2317, 2311, 2327, 2329, 2346,
2347, 2360, 2368, 451, 4766, 0, 114, 4766, 1694, 1752,
2381, 2387, 2381, 2403, 2409, 2424, 2429, 2444, 2449, 2464,
2464, 2481, 2487, 2502, 2510, 2521, 2522, 2533, 2532, 2552,
2554, 2572, 2583, 2591, 2602, 2610, 2562, 2610, 2618, 2629,
2637, 2645, 2656, 2658, 2677, 2679, 2697, 2702, 2717, 2725,
2736, 2748, 2756, 2767, 2778, 2789, 2800, 2808, 2819, 2831,
2831, 2850, 2852, 2870, 2875, 2881, 2893, 2899, 2893, 2909,
496, 1760, 2911, 2922, 2930, 2943, 2949, 2943, 2959, 2961,
2972, 2981, 2992, 3000, 3011, 3022, 3023, 3040, 3042, 3041,
3059, 3061, 3080, 3082, 3100, 3105, 3111, 3123, 3131, 3142,
3160, 3165, 3171, 3183, 3189, 3183, 3204, 3209, 3227, 3229,
3235, 3247, 3255, 3253, 3273, 3275, 3281, 3299, 3304, 3319,
3293, 3324, 3339, 3339, 3345, 3360, 3365, 3371, 363, 612,
3383, 3389, 3394, 3412, 3414, 3432, 3437, 3443, 3455, 3463,
3474, 3482, 3482, 3499, 3501, 3512, 3521, 3532, 3540, 3552,
3558, 3552, 3573, 3579, 3585, 3591, 3597, 3601, 3612, 3620,
3631, 3633, 3644, 3653, 3664, 3672, 3683, 3691, 3702, 3703,
3714, 3722, 3735, 3741, 73, 1916, 3743, 3761, 3766, 3772,
3784, 3792, 3792, 3800, 3813, 3819, 3821, 3839, 3841, 3847,
3859, 3865, 3883, 3877, 3888, 3903, 3908, 3926, 3931, 3937,
3949, 3955, 3960, 3975, 3987, 3993, 3998, 4006, 4014, 1931,
4022, 4033, 4042, 4053, 4061, 4072, 4073, 4084, 4083, 4103,
4108, 4114, 4126, 4132, 4134, 4152, 4154, 4172, 4174, 4194,
4196, 4202, 4214, 4220, 4226, 4238, 502, 4244, 4246, 4264,
4266, 4286, 4288, 4306, 4308, 4326, 4331, 4349, 4351, 4369,
4359, 4384, 4373, 4392, 4403, 4411, 4424, 4437, 4435, 4448,
4456, 4469, 4475, 4477, 4495, 4500, 4506, 4518, 4524, 4530,
4542, 4548, 4550, 4568, 4570, 4576, 4594, 4588, 4599, 4614,
4619, 4637, 4639, 4645, 4649, 4665, 4670, 4676, 4688, 4766,
4732, 4737, 4742, 4746, 4750, 4753, 66, 4757, 4760
} ;
static yyconst flex_int16_t yy_def[660] =
{ 0,
650, 1, 651, 651, 4, 4, 650, 7, 652, 652,
653, 653, 650, 650, 650, 650, 650, 654, 650, 650,
654, 654, 654, 23, 23, 650, 655, 655, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 656, 650, 650, 656, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 23, 650, 650, 650, 650, 650,
650, 650, 650, 23, 23, 23, 23, 23, 28, 650,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 133, 133, 133, 133,
133, 133, 133, 133, 133, 28, 133, 28, 28, 28,
133, 133, 133, 133, 28, 28, 28, 133, 133, 28,
133, 28, 28, 28, 133, 28, 133, 133, 133, 133,
133, 28, 28, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 656, 657, 656, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 23, 23, 23,
658, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 133, 28, 28, 28, 28, 28, 28, 28, 28,
28, 133, 133, 28, 28, 28, 133, 133, 133, 28,
28, 133, 133, 133, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 133, 133, 133, 133, 133, 133,
133, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 23, 650, 650, 650,
650, 650, 650, 650, 659, 656, 650, 650, 650, 650,
23, 23, 658, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 133, 133, 133, 28,
28, 28, 28, 28, 28, 28, 28, 28, 133, 133,
133, 133, 133, 133, 133, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 133, 28,
28, 28, 28, 28, 28, 28, 133, 133, 133, 133,
133, 133, 133, 23, 650, 659, 656, 650, 23, 23,
28, 28, 133, 133, 28, 28, 28, 28, 28, 28,
133, 133, 28, 28, 28, 28, 133, 133, 28, 28,
28, 28, 28, 28, 28, 28, 133, 133, 133, 133,
133, 133, 133, 133, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
133, 28, 28, 28, 28, 28, 28, 28, 133, 133,
656, 23, 133, 133, 133, 28, 28, 133, 133, 133,
133, 28, 28, 28, 28, 28, 133, 133, 133, 133,
133, 133, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 133, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 133, 28, 28, 28, 28, 656, 23,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 133, 133, 133, 133, 28, 28, 28, 28,
28, 133, 28, 28, 28, 28, 28, 133, 133, 133,
133, 133, 133, 28, 28, 28, 28, 28, 28, 133,
133, 133, 28, 28, 656, 23, 28, 28, 28, 28,
28, 28, 133, 133, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 133, 133, 23,
133, 133, 28, 28, 28, 28, 133, 133, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 23, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
133, 133, 133, 133, 133, 133, 133, 133, 133, 133,
133, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
28, 28, 28, 28, 133, 28, 28, 28, 28, 0,
650, 650, 650, 650, 650, 650, 650, 650, 650
} ;
static yyconst flex_uint16_t yy_nxt[4830] =
{ 0,
14, 15, 16, 17, 15, 18, 19, 20, 18, 18,
18, 21, 22, 18, 23, 24, 25, 18, 26, 18,
27, 18, 18, 18, 28, 29, 30, 31, 32, 33,
34, 27, 35, 36, 37, 38, 39, 40, 41, 27,
42, 43, 44, 45, 46, 47, 27, 48, 27, 49,
50, 14, 14, 14, 14, 51, 52, 53, 54, 55,
56, 57, 58, 60, 70, 70, 103, 176, 176, 103,
285, 61, 59, 59, 106, 107, 108, 109, 110, 111,
112, 113, 106, 107, 108, 109, 110, 111, 112, 113,
196, 105, 178, 178, 114, 105, 117, 117, 105, 105,
105, 105, 105, 118, 118, 175, 175, 175, 177, 177,
177, 196, 14, 14, 14, 14, 62, 63, 64, 65,
66, 67, 68, 69, 60, 179, 179, 179, 182, 182,
182, 196, 61, 106, 107, 108, 109, 110, 111, 112,
113, 126, 431, 119, 119, 127, 184, 184, 184, 128,
185, 185, 129, 119, 119, 119, 180, 119, 174, 130,
119, 186, 186, 186, 119, 131, 187, 187, 119, 190,
206, 132, 190, 14, 14, 14, 14, 62, 63, 64,
65, 66, 67, 68, 69, 14, 71, 72, 73, 71,
14, 74, 20, 75, 76, 14, 77, 14, 78, 79,
14, 14, 14, 80, 81, 82, 83, 14, 84, 82,
82, 85, 82, 82, 82, 82, 82, 82, 82, 82,
82, 82, 82, 82, 82, 82, 82, 82, 82, 82,
82, 82, 82, 82, 86, 14, 14, 14, 14, 14,
14, 14, 14, 14, 14, 14, 14, 14, 14, 87,
88, 119, 119, 133, 90, 193, 200, 119, 119, 194,
137, 119, 119, 119, 138, 119, 196, 134, 119, 105,
91, 135, 119, 105, 119, 196, 139, 136, 198, 119,
119, 119, 188, 188, 188, 198, 198, 198, 202, 202,
119, 196, 197, 192, 140, 204, 204, 119, 286, 14,
14, 14, 14, 92, 93, 94, 95, 96, 97, 98,
99, 14, 87, 88, 199, 119, 141, 90, 142, 105,
119, 119, 145, 105, 143, 144, 201, 201, 201, 119,
119, 196, 119, 91, 119, 176, 176, 119, 119, 119,
146, 203, 203, 203, 147, 205, 205, 205, 119, 207,
207, 207, 119, 103, 367, 119, 103, 105, 105, 105,
178, 178, 14, 14, 14, 14, 92, 93, 94, 95,
96, 97, 98, 99, 14, 148, 88, 119, 119, 190,
196, 101, 190, 149, 175, 175, 175, 119, 150, 191,
152, 119, 119, 119, 151, 189, 154, 119, 119, 177,
177, 177, 119, 153, 105, 535, 119, 119, 105, 119,
183, 155, 181, 180, 156, 179, 179, 179, 105, 277,
277, 277, 105, 208, 208, 14, 14, 14, 14, 102,
93, 94, 95, 96, 97, 98, 99, 14, 157, 88,
119, 119, 105, 174, 101, 105, 105, 209, 209, 105,
119, 158, 119, 119, 159, 104, 160, 119, 119, 119,
161, 105, 168, 119, 119, 105, 119, 169, 119, 119,
162, 650, 119, 119, 105, 119, 369, 119, 105, 163,
164, 105, 650, 650, 165, 105, 210, 210, 14, 14,
14, 14, 102, 93, 94, 95, 96, 97, 98, 99,
115, 119, 119, 650, 116, 170, 650, 119, 119, 119,
119, 119, 105, 196, 171, 166, 105, 119, 119, 119,
650, 119, 167, 119, 119, 172, 119, 119, 119, 277,
277, 277, 489, 173, 277, 277, 277, 119, 277, 277,
277, 119, 650, 650, 119, 106, 107, 108, 109, 110,
111, 112, 113, 105, 650, 650, 105, 105, 105, 105,
650, 650, 105, 119, 119, 120, 650, 105, 650, 105,
105, 105, 650, 119, 119, 119, 650, 119, 650, 650,
119, 650, 119, 213, 119, 278, 278, 278, 119, 650,
212, 119, 119, 279, 279, 279, 119, 650, 650, 119,
280, 280, 280, 106, 107, 108, 109, 110, 111, 112,
113, 105, 650, 650, 105, 105, 105, 105, 650, 650,
105, 650, 105, 120, 536, 105, 105, 105, 105, 105,
119, 119, 121, 122, 281, 281, 281, 650, 119, 119,
119, 650, 123, 650, 119, 119, 124, 119, 119, 125,
232, 214, 119, 217, 119, 119, 650, 119, 650, 650,
119, 106, 107, 108, 109, 110, 111, 112, 113, 105,
650, 650, 105, 105, 105, 105, 105, 105, 105, 105,
105, 105, 650, 105, 211, 105, 105, 105, 211, 211,
211, 211, 211, 211, 211, 211, 211, 211, 211, 211,
211, 211, 211, 211, 211, 211, 211, 211, 211, 211,
211, 211, 211, 281, 281, 281, 281, 281, 281, 106,
107, 108, 109, 110, 111, 112, 113, 119, 119, 119,
119, 215, 650, 216, 650, 119, 119, 119, 650, 119,
650, 119, 650, 119, 119, 119, 119, 119, 119, 119,
650, 219, 119, 119, 119, 218, 650, 119, 281, 281,
281, 119, 650, 119, 119, 119, 119, 119, 220, 650,
119, 119, 119, 119, 119, 119, 221, 650, 650, 119,
650, 222, 119, 119, 650, 119, 650, 223, 119, 650,
119, 119, 119, 650, 224, 650, 650, 119, 119, 225,
650, 119, 650, 226, 650, 119, 227, 119, 119, 228,
650, 119, 119, 119, 229, 650, 650, 119, 119, 282,
282, 282, 119, 650, 650, 233, 230, 119, 650, 119,
119, 119, 650, 231, 119, 119, 234, 650, 650, 119,
650, 119, 119, 119, 237, 119, 119, 650, 119, 650,
119, 235, 119, 119, 650, 119, 119, 650, 119, 236,
119, 119, 119, 650, 650, 119, 119, 119, 650, 119,
119, 238, 119, 119, 119, 119, 119, 119, 239, 119,
119, 119, 650, 650, 119, 119, 119, 650, 119, 119,
240, 119, 244, 119, 119, 119, 119, 241, 242, 650,
119, 119, 119, 119, 283, 283, 283, 284, 284, 284,
243, 650, 245, 650, 119, 650, 119, 119, 650, 119,
119, 119, 246, 650, 650, 119, 248, 287, 287, 287,
247, 119, 650, 650, 119, 119, 119, 119, 650, 119,
119, 650, 119, 249, 119, 650, 119, 650, 650, 119,
250, 650, 119, 119, 650, 650, 119, 119, 650, 119,
650, 119, 650, 119, 119, 251, 650, 119, 119, 119,
253, 650, 119, 254, 650, 252, 650, 650, 119, 119,
119, 119, 650, 119, 650, 650, 119, 650, 119, 119,
119, 287, 287, 287, 119, 650, 255, 119, 119, 650,
650, 119, 119, 650, 256, 119, 119, 650, 258, 119,
119, 650, 650, 257, 119, 650, 119, 650, 119, 119,
119, 119, 260, 650, 119, 264, 119, 119, 650, 259,
650, 261, 262, 119, 119, 119, 119, 263, 265, 119,
119, 119, 119, 650, 266, 119, 119, 287, 287, 287,
119, 119, 650, 650, 119, 119, 119, 119, 650, 119,
119, 650, 119, 267, 119, 119, 119, 119, 287, 287,
287, 650, 119, 650, 119, 650, 269, 650, 119, 119,
270, 268, 119, 650, 119, 272, 119, 271, 650, 119,
650, 119, 650, 119, 650, 119, 119, 119, 119, 119,
650, 119, 273, 650, 274, 119, 119, 650, 650, 119,
119, 650, 119, 650, 119, 119, 119, 119, 650, 650,
119, 119, 119, 650, 650, 275, 288, 288, 288, 119,
650, 276, 119, 650, 650, 119, 650, 650, 119, 289,
289, 289, 290, 290, 290, 105, 650, 650, 105, 105,
208, 208, 105, 291, 291, 105, 364, 364, 364, 105,
292, 292, 105, 650, 650, 105, 105, 105, 105, 650,
650, 105, 650, 650, 105, 650, 105, 650, 105, 105,
105, 119, 119, 119, 119, 650, 650, 294, 650, 119,
295, 119, 650, 119, 650, 119, 650, 119, 119, 119,
119, 650, 650, 119, 650, 650, 119, 650, 650, 296,
119, 119, 106, 107, 108, 109, 110, 111, 112, 113,
119, 119, 119, 650, 119, 650, 650, 297, 650, 650,
298, 119, 119, 119, 299, 119, 650, 650, 119, 650,
119, 119, 119, 364, 364, 364, 119, 650, 650, 119,
119, 300, 119, 119, 119, 650, 650, 119, 119, 119,
301, 650, 119, 650, 119, 119, 119, 650, 119, 119,
302, 303, 119, 650, 119, 119, 119, 650, 119, 650,
119, 119, 650, 119, 304, 650, 119, 119, 119, 650,
306, 650, 119, 119, 364, 364, 364, 119, 119, 119,
307, 305, 119, 650, 119, 650, 119, 650, 119, 119,
119, 119, 119, 650, 650, 119, 309, 119, 650, 650,
119, 650, 119, 119, 308, 650, 119, 119, 310, 650,
119, 650, 119, 119, 119, 119, 119, 650, 650, 119,
119, 119, 313, 311, 119, 119, 119, 650, 119, 650,
119, 119, 650, 650, 119, 119, 312, 119, 119, 119,
650, 650, 119, 119, 650, 650, 119, 119, 650, 650,
314, 119, 650, 119, 650, 119, 316, 119, 119, 315,
650, 119, 119, 119, 119, 119, 119, 365, 365, 365,
119, 650, 119, 119, 318, 319, 119, 119, 119, 317,
119, 119, 119, 650, 119, 320, 119, 119, 119, 119,
119, 650, 119, 321, 119, 119, 650, 119, 650, 650,
119, 650, 650, 119, 119, 119, 119, 650, 119, 323,
650, 322, 650, 650, 119, 119, 650, 650, 119, 119,
650, 119, 119, 119, 119, 119, 324, 650, 119, 327,
119, 650, 119, 650, 119, 119, 325, 119, 119, 650,
119, 119, 326, 119, 119, 650, 650, 328, 365, 365,
365, 119, 650, 119, 650, 119, 650, 119, 119, 650,
119, 119, 119, 119, 119, 365, 365, 365, 650, 329,
650, 119, 650, 119, 650, 119, 650, 119, 119, 650,
330, 119, 119, 368, 368, 368, 119, 119, 332, 650,
333, 119, 368, 368, 368, 119, 119, 331, 119, 650,
119, 650, 650, 119, 119, 119, 119, 119, 650, 650,
334, 368, 368, 368, 119, 650, 119, 335, 119, 650,
119, 119, 650, 119, 119, 119, 336, 337, 650, 119,
119, 650, 650, 650, 119, 119, 650, 650, 119, 119,
119, 119, 650, 119, 338, 650, 119, 119, 650, 119,
119, 339, 650, 650, 119, 650, 650, 650, 119, 650,
119, 119, 340, 341, 119, 119, 650, 650, 342, 119,
650, 650, 119, 119, 650, 119, 650, 119, 650, 650,
343, 119, 344, 119, 650, 650, 119, 650, 345, 119,
119, 650, 346, 119, 119, 650, 119, 119, 119, 650,
650, 119, 347, 650, 119, 650, 119, 119, 119, 119,
650, 650, 119, 119, 119, 119, 119, 119, 650, 349,
650, 119, 650, 119, 348, 119, 650, 119, 650, 119,
119, 650, 119, 119, 119, 105, 650, 369, 650, 105,
370, 370, 650, 119, 119, 119, 650, 119, 650, 350,
119, 650, 650, 351, 119, 119, 119, 650, 119, 650,
650, 119, 650, 650, 650, 119, 119, 119, 353, 119,
650, 352, 119, 650, 650, 650, 119, 119, 119, 354,
119, 650, 650, 119, 105, 119, 119, 119, 105, 432,
432, 119, 650, 650, 119, 119, 355, 119, 119, 119,
650, 650, 119, 650, 650, 119, 119, 119, 650, 650,
356, 119, 650, 357, 119, 119, 119, 119, 650, 358,
359, 650, 119, 650, 119, 119, 119, 650, 650, 363,
119, 650, 650, 360, 361, 119, 119, 650, 119, 362,
650, 119, 105, 119, 119, 119, 105, 370, 370, 119,
105, 650, 119, 119, 105, 490, 490, 119, 650, 650,
119, 105, 650, 650, 105, 105, 105, 105, 650, 650,
105, 119, 119, 105, 650, 105, 650, 105, 105, 105,
650, 119, 371, 650, 372, 119, 119, 119, 119, 650,
650, 650, 119, 119, 650, 650, 119, 650, 650, 650,
119, 373, 119, 119, 650, 650, 119, 650, 650, 119,
650, 106, 107, 108, 109, 110, 111, 112, 113, 119,
119, 119, 119, 375, 650, 650, 650, 650, 374, 119,
650, 119, 650, 119, 650, 119, 119, 650, 119, 119,
119, 119, 119, 650, 650, 650, 650, 119, 119, 119,
650, 376, 650, 119, 650, 119, 119, 119, 119, 377,
119, 119, 650, 650, 119, 119, 119, 650, 650, 119,
650, 378, 650, 119, 650, 119, 119, 650, 379, 119,
119, 119, 119, 650, 650, 119, 119, 380, 650, 650,
119, 119, 119, 650, 119, 119, 650, 119, 650, 119,
650, 119, 119, 119, 119, 119, 105, 650, 381, 650,
105, 570, 570, 119, 119, 119, 383, 119, 650, 382,
119, 105, 119, 119, 119, 105, 597, 597, 119, 650,
650, 119, 119, 650, 650, 385, 384, 119, 119, 119,
650, 650, 119, 119, 650, 650, 650, 119, 119, 119,
650, 119, 119, 650, 119, 650, 119, 650, 119, 119,
119, 119, 386, 650, 650, 119, 119, 119, 388, 650,
387, 119, 119, 650, 119, 650, 119, 119, 650, 650,
119, 119, 650, 119, 650, 119, 119, 119, 389, 119,
650, 650, 650, 650, 119, 650, 119, 650, 391, 650,
119, 119, 390, 119, 119, 119, 393, 119, 650, 650,
119, 650, 119, 650, 119, 650, 119, 119, 392, 119,
119, 650, 119, 119, 119, 119, 119, 650, 650, 397,
650, 119, 119, 119, 650, 119, 650, 394, 650, 119,
119, 119, 395, 119, 119, 119, 650, 396, 119, 119,
119, 650, 650, 119, 119, 119, 650, 119, 650, 119,
119, 650, 650, 119, 119, 398, 119, 399, 119, 119,
119, 119, 650, 650, 119, 119, 400, 650, 650, 119,
119, 119, 401, 119, 119, 650, 119, 402, 119, 650,
119, 119, 119, 650, 119, 119, 119, 119, 650, 119,
403, 650, 119, 119, 119, 650, 650, 119, 119, 650,
119, 119, 119, 650, 650, 119, 119, 650, 119, 119,
119, 650, 650, 404, 119, 650, 119, 406, 119, 650,
650, 405, 119, 650, 119, 119, 119, 650, 650, 119,
407, 650, 119, 650, 119, 119, 119, 119, 650, 650,
119, 119, 119, 119, 119, 119, 650, 650, 650, 408,
650, 409, 119, 119, 650, 119, 650, 119, 119, 650,
410, 119, 119, 119, 119, 411, 650, 650, 650, 119,
119, 119, 650, 119, 650, 119, 650, 119, 119, 119,
119, 119, 119, 119, 650, 412, 119, 413, 650, 650,
650, 119, 119, 119, 414, 119, 650, 650, 119, 650,
650, 650, 119, 119, 119, 415, 119, 650, 650, 119,
650, 119, 119, 119, 650, 650, 650, 119, 650, 650,
119, 119, 119, 119, 650, 416, 650, 650, 119, 650,
650, 418, 417, 119, 119, 650, 119, 650, 650, 119,
650, 650, 650, 119, 650, 119, 119, 119, 119, 650,
119, 419, 650, 119, 650, 119, 650, 119, 650, 119,
420, 650, 119, 119, 119, 119, 119, 119, 650, 650,
650, 650, 650, 650, 119, 650, 119, 422, 119, 650,
119, 421, 650, 119, 119, 119, 423, 650, 650, 119,
119, 650, 650, 650, 119, 119, 424, 650, 119, 119,
650, 119, 650, 119, 650, 119, 119, 119, 119, 119,
119, 650, 119, 119, 119, 119, 650, 119, 650, 119,
650, 119, 427, 119, 425, 119, 119, 119, 119, 650,
426, 119, 650, 119, 650, 119, 650, 119, 119, 650,
119, 119, 429, 119, 428, 119, 119, 650, 650, 650,
119, 119, 650, 650, 119, 119, 650, 119, 119, 119,
119, 119, 650, 650, 119, 650, 430, 119, 119, 650,
650, 119, 119, 650, 119, 650, 119, 119, 119, 119,
119, 650, 119, 119, 119, 435, 650, 433, 650, 119,
650, 119, 119, 119, 119, 119, 650, 119, 650, 434,
119, 436, 119, 650, 650, 119, 119, 119, 650, 650,
650, 119, 650, 650, 119, 437, 650, 119, 650, 119,
119, 119, 119, 650, 438, 119, 119, 439, 650, 650,
119, 650, 650, 650, 119, 119, 650, 119, 650, 119,
119, 119, 119, 650, 440, 441, 119, 650, 650, 650,
119, 442, 650, 650, 119, 119, 650, 119, 650, 119,
119, 119, 119, 119, 650, 650, 650, 650, 444, 650,
443, 650, 119, 650, 119, 119, 650, 119, 119, 445,
119, 650, 650, 446, 119, 119, 650, 650, 650, 119,
650, 650, 119, 119, 650, 119, 650, 119, 119, 119,
119, 650, 650, 449, 447, 650, 119, 119, 119, 650,
650, 650, 119, 650, 650, 119, 119, 119, 119, 650,
119, 119, 448, 119, 650, 650, 119, 119, 119, 119,
119, 119, 119, 450, 119, 650, 119, 119, 119, 650,
650, 119, 451, 650, 119, 119, 650, 119, 119, 119,
119, 119, 650, 650, 452, 650, 453, 650, 119, 650,
119, 119, 119, 650, 119, 119, 458, 119, 119, 119,
119, 650, 650, 119, 454, 650, 119, 455, 119, 119,
119, 650, 119, 650, 650, 119, 650, 119, 119, 119,
650, 650, 650, 119, 650, 650, 119, 119, 119, 457,
650, 119, 650, 456, 119, 650, 119, 119, 119, 119,
650, 459, 119, 650, 119, 119, 119, 119, 119, 650,
119, 119, 119, 119, 119, 650, 119, 650, 119, 119,
460, 650, 119, 461, 650, 650, 119, 119, 650, 650,
119, 462, 650, 119, 119, 119, 650, 463, 119, 119,
650, 119, 650, 119, 464, 119, 119, 119, 650, 119,
119, 650, 119, 650, 119, 650, 465, 119, 650, 119,
119, 650, 119, 119, 119, 119, 119, 650, 650, 650,
650, 467, 650, 119, 650, 119, 650, 119, 650, 119,
466, 650, 119, 119, 119, 468, 650, 650, 119, 119,
469, 650, 650, 119, 650, 650, 650, 119, 119, 650,
119, 650, 119, 119, 119, 119, 650, 650, 650, 470,
650, 119, 119, 119, 650, 650, 650, 119, 650, 650,
119, 119, 119, 119, 650, 119, 650, 471, 119, 650,
650, 650, 119, 650, 119, 119, 472, 650, 650, 119,
473, 650, 119, 119, 119, 650, 650, 650, 119, 650,
650, 119, 119, 119, 119, 650, 119, 650, 650, 119,
650, 650, 474, 475, 119, 119, 650, 119, 650, 650,
119, 650, 650, 650, 119, 119, 119, 476, 119, 650,
650, 119, 650, 650, 650, 119, 119, 119, 477, 119,
650, 650, 119, 650, 478, 119, 119, 650, 650, 650,
119, 650, 650, 119, 119, 119, 119, 650, 119, 650,
650, 119, 650, 650, 650, 119, 650, 119, 119, 479,
119, 650, 119, 480, 650, 119, 650, 119, 650, 119,
650, 119, 481, 650, 119, 119, 119, 482, 119, 119,
650, 650, 650, 650, 650, 650, 119, 483, 119, 650,
119, 650, 119, 119, 650, 119, 119, 119, 484, 650,
650, 119, 119, 650, 650, 650, 119, 119, 119, 486,
119, 485, 650, 119, 650, 119, 650, 119, 119, 119,
119, 119, 119, 650, 119, 119, 119, 119, 650, 119,
650, 119, 650, 119, 119, 119, 119, 487, 119, 119,
119, 650, 119, 488, 650, 119, 491, 119, 650, 119,
119, 119, 119, 119, 650, 119, 119, 650, 650, 119,
119, 650, 650, 119, 119, 650, 119, 650, 119, 119,
119, 119, 119, 650, 119, 119, 119, 119, 650, 492,
650, 119, 650, 119, 494, 119, 119, 119, 119, 119,
119, 493, 119, 119, 650, 119, 650, 119, 650, 119,
119, 119, 119, 119, 650, 119, 119, 119, 119, 650,
119, 650, 650, 119, 495, 650, 119, 496, 119, 119,
650, 119, 650, 650, 119, 650, 119, 119, 119, 650,
650, 650, 119, 650, 497, 119, 119, 119, 119, 650,
119, 650, 498, 119, 650, 650, 499, 119, 119, 119,
650, 119, 119, 650, 119, 650, 650, 119, 119, 650,
650, 500, 119, 650, 119, 119, 503, 119, 501, 119,
119, 119, 502, 505, 119, 119, 119, 504, 119, 119,
119, 119, 119, 119, 119, 119, 119, 506, 119, 650,
119, 650, 650, 119, 650, 119, 650, 119, 507, 119,
119, 650, 119, 119, 650, 119, 119, 119, 119, 119,
650, 650, 650, 650, 650, 650, 508, 650, 119, 650,
119, 650, 119, 119, 509, 119, 119, 119, 650, 650,
650, 119, 119, 650, 650, 650, 119, 119, 119, 511,
119, 119, 510, 119, 650, 119, 650, 119, 119, 119,
119, 119, 650, 650, 119, 512, 650, 119, 119, 119,
650, 650, 650, 119, 650, 650, 119, 119, 119, 119,
650, 119, 650, 650, 119, 650, 650, 650, 119, 513,
650, 650, 119, 650, 650, 119, 119, 119, 514, 650,
650, 119, 119, 515, 650, 650, 119, 119, 119, 516,
119, 119, 650, 119, 650, 119, 650, 119, 119, 119,
119, 119, 119, 517, 119, 119, 119, 119, 650, 119,
650, 518, 650, 119, 119, 119, 119, 119, 650, 119,
519, 119, 119, 650, 650, 119, 119, 650, 650, 650,
119, 650, 650, 650, 119, 119, 650, 119, 650, 119,
650, 520, 119, 119, 521, 119, 119, 650, 650, 650,
650, 119, 119, 119, 650, 119, 650, 119, 650, 119,
119, 119, 119, 119, 119, 119, 650, 522, 119, 119,
119, 119, 119, 523, 650, 650, 650, 119, 650, 119,
119, 119, 524, 119, 650, 119, 119, 650, 119, 525,
119, 119, 119, 650, 650, 650, 650, 119, 119, 119,
650, 526, 650, 119, 650, 119, 119, 119, 119, 119,
119, 119, 650, 650, 119, 119, 119, 527, 650, 119,
119, 119, 528, 119, 650, 119, 119, 650, 650, 119,
119, 650, 119, 650, 119, 119, 119, 119, 650, 650,
119, 119, 650, 650, 650, 119, 529, 650, 650, 119,
119, 650, 119, 650, 119, 119, 119, 530, 531, 650,
650, 119, 532, 119, 650, 119, 650, 119, 650, 119,
119, 119, 119, 119, 650, 119, 119, 119, 119, 650,
650, 119, 119, 533, 650, 650, 119, 119, 119, 534,
119, 119, 650, 119, 650, 119, 650, 119, 119, 119,
119, 119, 650, 650, 119, 119, 119, 650, 650, 119,
119, 119, 650, 119, 538, 119, 119, 650, 650, 119,
119, 537, 119, 650, 119, 650, 650, 119, 119, 119,
119, 119, 650, 650, 650, 650, 650, 650, 119, 650,
119, 650, 119, 650, 119, 119, 650, 119, 119, 119,
539, 650, 650, 119, 119, 650, 650, 650, 119, 119,
119, 650, 119, 119, 650, 119, 650, 119, 650, 119,
119, 119, 119, 119, 650, 650, 119, 650, 650, 119,
119, 119, 650, 650, 650, 119, 650, 540, 119, 119,
119, 119, 650, 119, 650, 541, 119, 650, 119, 119,
119, 119, 650, 650, 119, 650, 119, 119, 119, 542,
543, 650, 119, 119, 650, 119, 119, 544, 119, 650,
119, 650, 650, 119, 650, 119, 650, 119, 545, 119,
119, 119, 119, 119, 650, 119, 119, 119, 119, 650,
119, 650, 650, 119, 650, 650, 119, 546, 119, 119,
650, 119, 547, 650, 119, 650, 119, 119, 119, 650,
650, 650, 119, 650, 650, 119, 119, 650, 119, 119,
119, 119, 650, 119, 119, 119, 119, 548, 119, 650,
119, 650, 119, 550, 119, 549, 119, 650, 119, 119,
119, 119, 650, 650, 650, 119, 119, 650, 650, 119,
650, 119, 119, 551, 552, 119, 119, 119, 119, 119,
553, 119, 119, 555, 119, 119, 650, 119, 119, 650,
119, 554, 650, 119, 119, 119, 557, 119, 650, 556,
119, 119, 119, 559, 650, 119, 119, 650, 558, 119,
119, 650, 650, 119, 119, 650, 119, 560, 119, 650,
119, 119, 119, 650, 119, 119, 650, 119, 650, 119,
650, 119, 119, 119, 119, 119, 650, 119, 119, 119,
119, 650, 119, 650, 650, 119, 650, 650, 119, 561,
119, 119, 562, 119, 650, 650, 119, 650, 563, 119,
119, 650, 650, 564, 119, 650, 650, 119, 119, 119,
119, 650, 119, 650, 650, 119, 650, 119, 119, 119,
650, 650, 650, 119, 650, 650, 119, 119, 119, 119,
650, 119, 119, 650, 119, 650, 650, 566, 565, 650,
650, 119, 119, 119, 119, 119, 650, 119, 119, 650,
567, 119, 119, 650, 650, 119, 119, 650, 119, 650,
119, 119, 119, 119, 650, 650, 119, 119, 119, 119,
119, 119, 650, 650, 650, 568, 569, 119, 119, 119,
650, 119, 650, 119, 119, 650, 119, 119, 119, 650,
650, 650, 119, 119, 650, 650, 650, 119, 119, 119,
573, 119, 119, 571, 119, 650, 572, 650, 119, 119,
119, 119, 119, 650, 650, 119, 574, 650, 119, 119,
119, 119, 650, 650, 119, 650, 119, 119, 575, 119,
576, 579, 119, 119, 119, 119, 119, 650, 119, 119,
119, 577, 650, 650, 119, 119, 119, 119, 119, 578,
650, 650, 650, 119, 650, 119, 119, 119, 650, 119,
650, 119, 119, 650, 119, 119, 119, 119, 119, 650,
650, 650, 650, 119, 119, 119, 650, 119, 650, 119,
650, 580, 119, 119, 119, 119, 119, 119, 650, 581,
119, 119, 119, 583, 650, 119, 650, 650, 650, 119,
650, 119, 119, 119, 119, 119, 582, 650, 119, 119,
119, 584, 650, 119, 119, 119, 585, 119, 650, 119,
119, 650, 650, 119, 119, 650, 119, 650, 119, 119,
119, 119, 650, 650, 119, 119, 650, 650, 650, 119,
586, 650, 650, 119, 119, 650, 119, 650, 119, 650,
587, 119, 119, 119, 650, 650, 588, 119, 119, 650,
650, 650, 119, 119, 119, 650, 119, 119, 650, 119,
650, 119, 650, 119, 119, 119, 119, 119, 650, 589,
119, 119, 119, 650, 650, 119, 119, 119, 590, 119,
650, 119, 119, 650, 650, 119, 119, 650, 119, 592,
119, 119, 119, 119, 650, 650, 650, 591, 650, 650,
650, 119, 650, 119, 119, 119, 650, 650, 119, 119,
119, 593, 650, 119, 119, 594, 650, 119, 650, 119,
119, 650, 650, 119, 119, 119, 119, 650, 119, 650,
119, 119, 596, 119, 119, 650, 650, 595, 119, 650,
119, 119, 119, 650, 650, 119, 119, 650, 119, 598,
119, 650, 119, 119, 650, 650, 119, 119, 119, 599,
650, 119, 650, 650, 119, 650, 650, 119, 119, 119,
119, 650, 119, 650, 601, 119, 650, 119, 119, 119,
600, 650, 650, 119, 650, 650, 119, 119, 119, 119,
650, 119, 119, 650, 119, 650, 650, 119, 119, 119,
603, 119, 119, 119, 602, 119, 650, 119, 119, 119,
650, 650, 119, 119, 650, 119, 119, 650, 119, 119,
119, 604, 650, 650, 119, 119, 650, 650, 650, 119,
119, 119, 650, 119, 119, 650, 119, 650, 119, 650,
119, 119, 119, 119, 119, 650, 650, 119, 119, 119,
119, 119, 605, 650, 650, 650, 119, 650, 606, 119,
119, 650, 119, 650, 119, 119, 650, 119, 119, 119,
119, 119, 650, 650, 650, 650, 608, 650, 119, 650,
119, 650, 607, 650, 119, 119, 650, 119, 119, 119,
119, 119, 650, 650, 650, 650, 610, 650, 119, 650,
119, 650, 119, 650, 119, 119, 650, 119, 650, 609,
119, 119, 119, 119, 650, 650, 650, 650, 119, 612,
119, 650, 611, 650, 119, 650, 119, 119, 119, 119,
119, 119, 119, 650, 650, 119, 119, 119, 650, 650,
119, 650, 119, 119, 119, 650, 119, 119, 613, 650,
119, 650, 119, 119, 119, 119, 119, 650, 650, 119,
119, 119, 119, 119, 614, 650, 650, 650, 119, 650,
119, 119, 119, 650, 119, 650, 119, 119, 650, 119,
119, 119, 119, 119, 650, 650, 650, 650, 650, 650,
615, 650, 119, 650, 119, 650, 119, 119, 616, 119,
617, 650, 119, 119, 119, 119, 650, 650, 650, 650,
618, 650, 119, 650, 119, 650, 119, 650, 119, 119,
650, 119, 119, 119, 119, 119, 650, 650, 650, 650,
650, 650, 119, 650, 119, 650, 119, 650, 119, 119,
619, 119, 119, 119, 650, 650, 650, 119, 119, 650,
650, 650, 119, 650, 650, 650, 119, 119, 620, 119,
650, 119, 650, 621, 119, 119, 119, 119, 119, 650,
650, 650, 650, 650, 650, 119, 622, 119, 119, 119,
650, 119, 119, 119, 119, 119, 119, 119, 650, 650,
624, 650, 119, 119, 650, 119, 623, 119, 625, 119,
626, 119, 119, 119, 119, 650, 650, 119, 119, 650,
650, 119, 119, 650, 650, 119, 119, 650, 119, 650,
119, 650, 119, 119, 627, 628, 119, 119, 650, 650,
119, 119, 650, 650, 119, 119, 650, 119, 650, 119,
650, 650, 119, 119, 629, 119, 650, 650, 119, 650,
650, 650, 119, 650, 119, 119, 119, 630, 119, 119,
650, 119, 650, 119, 650, 119, 631, 119, 119, 119,
650, 119, 119, 650, 633, 119, 119, 650, 650, 632,
119, 650, 119, 650, 119, 119, 119, 119, 650, 650,
119, 119, 119, 119, 119, 634, 650, 650, 650, 119,
650, 635, 119, 119, 650, 119, 650, 119, 119, 636,
119, 119, 119, 650, 650, 650, 119, 119, 650, 650,
650, 119, 119, 119, 650, 119, 638, 637, 119, 650,
119, 650, 119, 119, 119, 119, 119, 650, 639, 119,
119, 119, 640, 650, 119, 650, 119, 119, 119, 650,
119, 119, 641, 650, 119, 650, 119, 119, 119, 119,
119, 650, 650, 119, 119, 119, 119, 642, 119, 650,
650, 650, 119, 650, 119, 119, 119, 650, 119, 650,
119, 119, 650, 119, 119, 119, 119, 119, 650, 650,
643, 650, 119, 119, 119, 650, 119, 650, 119, 650,
119, 119, 119, 119, 119, 119, 119, 650, 650, 119,
119, 119, 644, 650, 119, 119, 119, 650, 119, 650,
119, 119, 650, 650, 119, 119, 650, 119, 650, 119,
119, 119, 119, 650, 650, 119, 119, 650, 650, 650,
119, 650, 650, 650, 119, 119, 650, 119, 650, 119,
650, 645, 119, 119, 119, 119, 119, 650, 650, 650,
650, 119, 119, 119, 650, 646, 650, 119, 119, 119,
119, 119, 119, 119, 650, 119, 650, 119, 119, 650,
647, 648, 119, 119, 650, 650, 119, 119, 650, 650,
650, 119, 119, 119, 649, 119, 119, 650, 119, 650,
119, 650, 119, 119, 119, 119, 119, 650, 650, 119,
650, 650, 650, 650, 119, 650, 650, 650, 119, 650,
650, 119, 59, 59, 59, 59, 59, 89, 89, 89,
89, 89, 100, 100, 100, 100, 100, 105, 105, 105,
105, 119, 119, 119, 119, 195, 195, 195, 293, 293,
293, 293, 366, 650, 366, 13, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650
} ;
static yyconst flex_int16_t yy_chk[4830] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 3, 5, 6, 15, 54, 54, 15,
657, 3, 5, 6, 18, 18, 18, 18, 18, 18,
18, 18, 21, 21, 21, 21, 21, 21, 21, 21,
535, 24, 56, 56, 22, 24, 24, 24, 25, 51,
51, 51, 25, 25, 25, 53, 53, 53, 55, 55,
55, 195, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 4, 57, 57, 57, 62, 62,
62, 367, 4, 22, 22, 22, 22, 22, 22, 22,
22, 29, 367, 29, 29, 29, 64, 64, 64, 29,
65, 65, 30, 29, 30, 30, 113, 29, 107, 30,
29, 66, 66, 66, 30, 30, 67, 67, 30, 71,
99, 30, 71, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 9, 9,
9, 31, 31, 31, 9, 79, 93, 32, 32, 79,
33, 31, 33, 33, 33, 31, 85, 32, 31, 105,
9, 32, 33, 105, 32, 197, 33, 32, 91, 33,
34, 34, 68, 68, 68, 92, 92, 92, 95, 95,
34, 82, 85, 78, 34, 97, 97, 34, 197, 9,
9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
9, 10, 10, 10, 91, 35, 35, 10, 35, 115,
36, 36, 36, 115, 35, 35, 94, 94, 94, 35,
36, 286, 35, 10, 36, 109, 109, 36, 37, 37,
37, 96, 96, 96, 37, 98, 98, 98, 37, 102,
102, 102, 37, 103, 286, 37, 103, 106, 106, 106,
111, 111, 10, 10, 10, 10, 10, 10, 10, 10,
10, 10, 10, 10, 11, 38, 11, 38, 38, 190,
489, 11, 190, 38, 108, 108, 108, 38, 38, 73,
39, 38, 39, 39, 38, 69, 40, 40, 40, 110,
110, 110, 39, 39, 116, 489, 39, 40, 116, 39,
63, 40, 61, 58, 40, 112, 112, 112, 114, 174,
174, 174, 114, 114, 114, 11, 11, 11, 11, 11,
11, 11, 11, 11, 11, 11, 11, 12, 41, 12,
41, 41, 117, 52, 12, 277, 117, 117, 117, 277,
41, 41, 45, 45, 41, 17, 42, 41, 42, 42,
42, 364, 45, 43, 43, 364, 45, 45, 42, 45,
42, 13, 42, 43, 291, 42, 291, 43, 291, 43,
43, 118, 0, 0, 43, 118, 118, 118, 12, 12,
12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
23, 44, 44, 0, 23, 46, 0, 46, 46, 47,
47, 44, 597, 431, 47, 44, 597, 46, 44, 47,
0, 46, 44, 47, 46, 48, 47, 48, 48, 175,
175, 175, 431, 48, 176, 176, 176, 48, 177, 177,
177, 48, 0, 0, 48, 23, 23, 23, 23, 23,
23, 23, 23, 27, 0, 0, 27, 27, 27, 27,
0, 0, 27, 119, 119, 27, 0, 27, 0, 27,
27, 27, 0, 119, 121, 121, 0, 119, 0, 0,
119, 0, 122, 122, 121, 178, 178, 178, 121, 0,
121, 121, 122, 179, 179, 179, 122, 0, 0, 122,
180, 180, 180, 27, 27, 27, 27, 27, 27, 27,
27, 28, 0, 0, 28, 28, 28, 28, 0, 0,
28, 0, 490, 28, 490, 28, 490, 28, 28, 28,
123, 123, 28, 28, 183, 183, 183, 0, 126, 126,
123, 0, 28, 0, 123, 137, 28, 123, 126, 28,
137, 123, 126, 126, 137, 126, 0, 137, 0, 0,
137, 28, 28, 28, 28, 28, 28, 28, 28, 120,
0, 0, 120, 120, 120, 120, 120, 120, 120, 120,
120, 120, 0, 120, 120, 120, 120, 120, 120, 120,
120, 120, 120, 120, 120, 120, 120, 120, 120, 120,
120, 120, 120, 120, 120, 120, 120, 120, 120, 120,
120, 120, 120, 184, 184, 184, 185, 185, 185, 120,
120, 120, 120, 120, 120, 120, 120, 124, 124, 125,
125, 124, 0, 125, 0, 128, 128, 124, 0, 125,
0, 124, 0, 125, 124, 128, 125, 127, 127, 128,
0, 128, 128, 129, 129, 127, 0, 127, 186, 186,
186, 127, 0, 129, 127, 130, 130, 129, 129, 0,
129, 131, 131, 132, 132, 130, 130, 0, 0, 130,
0, 131, 130, 132, 0, 131, 0, 132, 131, 0,
132, 133, 133, 0, 133, 0, 0, 134, 134, 133,
0, 133, 0, 133, 0, 133, 133, 134, 133, 133,
0, 134, 135, 135, 134, 0, 0, 136, 136, 187,
187, 187, 135, 0, 0, 138, 135, 136, 0, 135,
138, 136, 0, 136, 136, 138, 139, 0, 0, 138,
0, 139, 138, 140, 142, 138, 139, 0, 140, 0,
139, 140, 140, 139, 0, 140, 139, 0, 140, 141,
141, 142, 143, 0, 0, 141, 142, 143, 0, 141,
142, 143, 141, 142, 143, 141, 142, 143, 144, 145,
147, 144, 0, 0, 145, 147, 144, 0, 145, 147,
144, 145, 147, 144, 145, 147, 144, 145, 146, 0,
146, 146, 148, 148, 188, 188, 188, 189, 189, 189,
146, 0, 148, 0, 146, 0, 148, 146, 0, 148,
149, 149, 148, 0, 0, 150, 150, 200, 200, 200,
149, 151, 0, 0, 149, 150, 151, 149, 0, 150,
151, 0, 150, 151, 152, 0, 151, 0, 0, 152,
152, 0, 153, 152, 0, 0, 152, 153, 0, 152,
0, 153, 0, 154, 153, 153, 0, 153, 154, 155,
155, 0, 154, 155, 0, 154, 0, 0, 154, 155,
156, 156, 0, 155, 0, 0, 155, 0, 157, 157,
156, 201, 201, 201, 156, 0, 156, 156, 157, 0,
0, 158, 157, 0, 157, 157, 158, 0, 159, 159,
158, 0, 0, 158, 159, 0, 158, 0, 159, 160,
160, 159, 161, 0, 159, 162, 162, 161, 0, 160,
0, 161, 161, 160, 161, 162, 160, 161, 163, 162,
163, 163, 162, 0, 164, 164, 164, 202, 202, 202,
163, 165, 0, 0, 163, 164, 165, 163, 0, 164,
165, 0, 164, 165, 166, 166, 165, 167, 203, 203,
203, 0, 167, 0, 166, 0, 167, 0, 166, 167,
168, 166, 167, 0, 168, 169, 169, 168, 0, 168,
0, 169, 0, 168, 0, 169, 168, 170, 169, 168,
0, 169, 170, 0, 171, 171, 170, 0, 0, 170,
171, 0, 170, 0, 171, 172, 172, 171, 0, 0,
171, 173, 173, 0, 0, 172, 204, 204, 204, 172,
0, 173, 172, 0, 0, 173, 0, 0, 173, 205,
205, 205, 206, 206, 206, 208, 0, 0, 209, 208,
208, 208, 209, 209, 209, 210, 278, 278, 278, 210,
210, 210, 211, 0, 0, 211, 211, 211, 211, 0,
0, 211, 0, 0, 211, 0, 211, 0, 211, 211,
211, 212, 212, 213, 213, 0, 0, 212, 0, 214,
214, 212, 0, 213, 0, 212, 0, 213, 212, 214,
213, 0, 0, 214, 0, 0, 214, 0, 0, 214,
215, 215, 211, 211, 211, 211, 211, 211, 211, 211,
215, 216, 216, 0, 215, 0, 0, 215, 0, 0,
216, 216, 217, 217, 217, 216, 0, 0, 216, 0,
218, 218, 217, 279, 279, 279, 217, 0, 0, 217,
218, 218, 219, 219, 218, 0, 0, 218, 220, 220,
220, 0, 219, 0, 221, 221, 219, 0, 220, 219,
221, 222, 220, 0, 221, 220, 222, 0, 221, 0,
222, 221, 0, 222, 222, 0, 222, 223, 223, 0,
224, 0, 224, 224, 280, 280, 280, 223, 225, 225,
225, 223, 224, 0, 223, 0, 224, 0, 225, 224,
226, 226, 225, 0, 0, 225, 227, 227, 0, 0,
226, 0, 228, 228, 226, 0, 227, 226, 228, 0,
227, 0, 228, 227, 229, 229, 228, 0, 0, 228,
231, 231, 231, 229, 229, 230, 230, 0, 229, 0,
231, 229, 0, 0, 231, 230, 230, 231, 232, 230,
0, 0, 230, 232, 0, 0, 233, 232, 0, 0,
232, 233, 0, 232, 0, 233, 234, 234, 233, 233,
0, 233, 235, 235, 236, 236, 234, 282, 282, 282,
234, 0, 235, 234, 236, 237, 235, 238, 236, 235,
237, 236, 238, 0, 237, 238, 238, 237, 239, 238,
237, 0, 238, 239, 240, 240, 0, 239, 0, 0,
239, 0, 0, 239, 240, 241, 241, 0, 240, 242,
0, 240, 0, 0, 242, 241, 0, 0, 242, 241,
0, 242, 241, 244, 242, 243, 243, 0, 244, 246,
243, 0, 244, 0, 243, 244, 244, 243, 244, 0,
243, 245, 245, 246, 246, 0, 0, 247, 283, 283,
283, 245, 0, 246, 0, 245, 0, 246, 245, 0,
246, 247, 247, 248, 248, 284, 284, 284, 0, 248,
0, 247, 0, 248, 0, 247, 0, 248, 247, 0,
248, 249, 249, 288, 288, 288, 250, 250, 250, 0,
251, 249, 289, 289, 289, 249, 250, 249, 249, 0,
250, 0, 0, 250, 251, 251, 252, 252, 0, 0,
251, 290, 290, 290, 251, 0, 252, 252, 251, 0,
252, 251, 0, 252, 253, 253, 253, 254, 0, 254,
254, 0, 0, 0, 253, 255, 0, 0, 253, 254,
255, 253, 0, 254, 255, 0, 254, 255, 0, 256,
255, 256, 0, 0, 256, 0, 0, 0, 256, 0,
257, 256, 256, 257, 256, 257, 0, 0, 258, 257,
0, 0, 257, 258, 0, 257, 0, 258, 0, 0,
258, 259, 259, 258, 0, 0, 259, 0, 260, 260,
259, 0, 260, 259, 260, 0, 259, 261, 260, 0,
0, 260, 261, 0, 260, 0, 261, 262, 262, 261,
0, 0, 261, 263, 263, 264, 264, 262, 0, 263,
0, 262, 0, 263, 262, 264, 0, 263, 0, 264,
263, 0, 264, 265, 265, 292, 0, 292, 0, 292,
292, 292, 0, 265, 266, 266, 0, 265, 0, 265,
265, 0, 0, 266, 266, 267, 267, 0, 266, 0,
0, 266, 0, 0, 0, 267, 268, 268, 268, 267,
0, 267, 267, 0, 0, 0, 268, 269, 269, 269,
268, 0, 0, 268, 369, 270, 270, 269, 369, 369,
369, 269, 0, 0, 269, 270, 270, 271, 271, 270,
0, 0, 270, 0, 0, 272, 272, 271, 0, 0,
271, 271, 0, 271, 271, 272, 273, 273, 0, 272,
272, 0, 272, 0, 274, 274, 273, 0, 0, 276,
273, 0, 0, 273, 274, 275, 275, 0, 274, 275,
0, 274, 370, 276, 276, 275, 370, 370, 370, 275,
432, 0, 275, 276, 432, 432, 432, 276, 0, 0,
276, 293, 0, 0, 293, 293, 293, 293, 0, 0,
293, 294, 294, 293, 0, 293, 0, 293, 293, 293,
0, 294, 294, 0, 295, 294, 295, 295, 294, 0,
0, 0, 296, 296, 0, 0, 295, 0, 0, 0,
295, 296, 296, 295, 0, 0, 296, 0, 0, 296,
0, 293, 293, 293, 293, 293, 293, 293, 293, 297,
297, 298, 298, 298, 0, 0, 0, 0, 297, 297,
0, 298, 0, 297, 0, 298, 297, 0, 298, 299,
299, 300, 300, 0, 0, 0, 0, 301, 301, 299,
0, 300, 0, 299, 0, 300, 299, 301, 300, 302,
302, 301, 0, 0, 301, 303, 303, 0, 0, 302,
0, 303, 0, 302, 0, 303, 302, 0, 304, 303,
304, 304, 303, 0, 0, 305, 305, 305, 0, 0,
304, 306, 306, 0, 304, 305, 0, 304, 0, 305,
0, 306, 305, 307, 307, 306, 536, 0, 306, 0,
536, 536, 536, 307, 308, 308, 308, 307, 0, 307,
307, 570, 309, 309, 308, 570, 570, 570, 308, 0,
0, 308, 309, 0, 0, 310, 309, 310, 310, 309,
0, 0, 311, 311, 0, 0, 0, 310, 312, 312,
0, 310, 311, 0, 310, 0, 311, 0, 312, 311,
313, 313, 312, 0, 0, 312, 314, 314, 314, 0,
313, 315, 315, 0, 313, 0, 314, 313, 0, 0,
314, 315, 0, 314, 0, 315, 316, 316, 315, 317,
0, 0, 0, 0, 317, 0, 316, 0, 317, 0,
316, 317, 316, 316, 317, 318, 319, 319, 0, 0,
318, 0, 319, 0, 318, 0, 319, 318, 318, 319,
318, 0, 319, 320, 320, 321, 321, 0, 0, 323,
0, 322, 322, 320, 0, 321, 0, 320, 0, 321,
320, 322, 321, 323, 323, 322, 0, 322, 322, 324,
324, 0, 0, 323, 325, 325, 0, 323, 0, 324,
323, 0, 0, 324, 325, 324, 324, 326, 325, 326,
326, 325, 0, 0, 327, 327, 327, 0, 0, 326,
328, 328, 328, 326, 327, 0, 326, 329, 327, 0,
328, 327, 329, 0, 328, 330, 329, 328, 0, 329,
330, 0, 329, 331, 330, 0, 0, 330, 331, 0,
330, 332, 331, 0, 0, 331, 332, 0, 331, 333,
332, 0, 0, 332, 333, 0, 332, 334, 333, 0,
0, 333, 334, 0, 333, 335, 334, 0, 0, 334,
335, 0, 334, 0, 335, 336, 336, 335, 0, 0,
335, 337, 337, 338, 338, 336, 0, 0, 0, 336,
0, 337, 336, 338, 0, 337, 0, 338, 337, 0,
338, 339, 339, 340, 340, 340, 0, 0, 0, 341,
341, 339, 0, 340, 0, 339, 0, 340, 339, 341,
340, 342, 342, 341, 0, 341, 341, 342, 0, 0,
0, 342, 343, 343, 343, 342, 0, 0, 342, 0,
0, 0, 343, 344, 344, 344, 343, 0, 0, 343,
0, 345, 345, 344, 0, 0, 0, 344, 0, 0,
344, 345, 346, 346, 0, 345, 0, 0, 345, 0,
0, 347, 346, 347, 347, 0, 346, 0, 0, 346,
0, 0, 0, 347, 0, 348, 348, 347, 349, 0,
347, 348, 0, 349, 0, 348, 0, 349, 0, 348,
349, 0, 348, 349, 350, 350, 351, 351, 0, 0,
0, 0, 0, 0, 350, 0, 351, 351, 350, 0,
351, 350, 0, 351, 352, 352, 352, 0, 0, 353,
353, 0, 0, 0, 352, 354, 354, 0, 352, 353,
0, 352, 0, 353, 0, 354, 353, 355, 355, 354,
357, 0, 354, 356, 356, 357, 0, 355, 0, 357,
0, 355, 357, 356, 355, 357, 358, 356, 359, 0,
356, 358, 0, 359, 0, 358, 0, 359, 358, 0,
359, 358, 362, 359, 360, 360, 361, 0, 0, 0,
360, 361, 0, 0, 360, 361, 0, 360, 361, 362,
360, 361, 0, 0, 362, 0, 363, 363, 362, 0,
0, 362, 363, 0, 362, 0, 363, 371, 371, 363,
373, 0, 363, 372, 372, 373, 0, 371, 0, 373,
0, 371, 373, 372, 371, 373, 0, 372, 0, 372,
372, 374, 374, 0, 0, 375, 375, 374, 0, 0,
0, 374, 0, 0, 374, 375, 0, 374, 0, 375,
376, 376, 375, 0, 376, 377, 377, 377, 0, 0,
376, 0, 0, 0, 376, 377, 0, 376, 0, 377,
378, 378, 377, 0, 378, 379, 379, 0, 0, 0,
378, 379, 0, 0, 378, 379, 0, 378, 0, 379,
380, 380, 379, 381, 0, 0, 0, 0, 381, 0,
380, 0, 381, 0, 380, 381, 0, 380, 381, 382,
382, 0, 0, 383, 383, 382, 0, 0, 0, 382,
0, 0, 382, 383, 0, 382, 0, 383, 384, 384,
383, 0, 0, 386, 384, 0, 385, 385, 384, 0,
0, 0, 384, 0, 0, 384, 385, 386, 386, 0,
385, 387, 385, 385, 0, 0, 387, 386, 389, 389,
387, 386, 388, 387, 386, 0, 387, 388, 389, 0,
0, 388, 389, 0, 388, 389, 0, 388, 390, 390,
391, 391, 0, 0, 390, 0, 391, 0, 390, 0,
391, 397, 390, 0, 391, 390, 397, 391, 392, 392,
397, 0, 0, 397, 392, 0, 397, 393, 392, 393,
393, 0, 392, 0, 0, 392, 0, 394, 394, 393,
0, 0, 0, 393, 0, 0, 393, 394, 395, 395,
0, 394, 0, 394, 394, 0, 396, 396, 395, 398,
0, 398, 395, 0, 398, 395, 396, 399, 398, 0,
396, 398, 399, 396, 398, 0, 399, 0, 400, 399,
399, 0, 399, 400, 0, 0, 401, 400, 0, 0,
400, 401, 0, 400, 402, 401, 0, 402, 401, 402,
0, 401, 0, 402, 403, 403, 402, 404, 0, 402,
403, 0, 404, 0, 403, 0, 404, 403, 0, 404,
403, 0, 404, 405, 405, 406, 406, 0, 0, 0,
0, 406, 0, 405, 0, 406, 0, 405, 0, 406,
405, 0, 406, 407, 407, 407, 0, 0, 408, 408,
408, 0, 0, 407, 0, 0, 0, 407, 408, 0,
407, 0, 408, 409, 409, 408, 0, 0, 0, 409,
0, 410, 410, 409, 0, 0, 0, 409, 0, 0,
409, 410, 411, 411, 0, 410, 0, 410, 410, 0,
0, 0, 411, 0, 412, 412, 411, 0, 0, 411,
412, 0, 413, 413, 412, 0, 0, 0, 412, 0,
0, 412, 413, 414, 414, 0, 413, 0, 0, 413,
0, 0, 413, 414, 415, 415, 0, 414, 0, 0,
414, 0, 0, 0, 415, 416, 416, 416, 415, 0,
0, 415, 0, 0, 0, 416, 417, 417, 417, 416,
0, 0, 416, 0, 418, 418, 417, 0, 0, 0,
417, 0, 0, 417, 418, 419, 419, 0, 418, 0,
0, 418, 0, 0, 0, 419, 0, 420, 420, 419,
421, 0, 419, 420, 0, 421, 0, 420, 0, 421,
0, 420, 421, 0, 420, 421, 422, 422, 423, 423,
0, 0, 0, 0, 0, 0, 422, 423, 423, 0,
422, 0, 423, 422, 0, 423, 424, 424, 424, 0,
0, 425, 425, 0, 0, 0, 424, 426, 426, 426,
424, 425, 0, 424, 0, 425, 0, 426, 425, 427,
427, 426, 429, 0, 426, 428, 428, 429, 0, 427,
0, 429, 0, 427, 429, 428, 427, 429, 430, 428,
433, 0, 428, 430, 0, 433, 434, 430, 0, 433,
430, 434, 433, 430, 0, 433, 434, 0, 0, 435,
434, 0, 0, 434, 435, 0, 434, 0, 435, 436,
436, 435, 438, 0, 435, 437, 437, 438, 0, 436,
0, 438, 0, 436, 438, 437, 436, 438, 439, 437,
440, 437, 437, 439, 0, 440, 0, 439, 0, 440,
439, 441, 440, 439, 0, 440, 441, 442, 442, 0,
441, 0, 0, 441, 441, 0, 441, 442, 443, 443,
0, 442, 0, 0, 442, 0, 444, 444, 443, 0,
0, 0, 443, 0, 443, 443, 444, 445, 445, 0,
444, 0, 444, 444, 0, 0, 446, 445, 446, 446,
0, 445, 447, 0, 445, 0, 0, 447, 446, 0,
0, 447, 446, 0, 447, 446, 449, 447, 448, 448,
450, 449, 448, 450, 448, 450, 449, 449, 448, 450,
449, 448, 450, 449, 448, 450, 449, 451, 451, 0,
452, 0, 0, 451, 0, 452, 0, 451, 452, 452,
451, 0, 452, 451, 0, 452, 453, 453, 454, 454,
0, 0, 0, 0, 0, 0, 453, 0, 454, 0,
453, 0, 454, 453, 454, 454, 455, 455, 0, 0,
0, 456, 456, 0, 0, 0, 455, 457, 457, 457,
455, 456, 455, 455, 0, 456, 0, 457, 456, 458,
458, 457, 0, 0, 457, 458, 0, 459, 459, 458,
0, 0, 0, 458, 0, 0, 458, 459, 460, 460,
0, 459, 0, 0, 459, 0, 0, 0, 460, 460,
0, 0, 460, 0, 0, 460, 461, 461, 461, 0,
0, 462, 462, 462, 0, 0, 461, 463, 463, 463,
461, 462, 0, 461, 0, 462, 0, 463, 462, 464,
464, 463, 466, 465, 463, 465, 465, 466, 0, 464,
0, 466, 0, 464, 466, 465, 464, 466, 0, 465,
467, 467, 465, 0, 0, 468, 468, 0, 0, 0,
467, 0, 0, 0, 467, 468, 0, 467, 0, 468,
0, 468, 468, 469, 469, 470, 470, 0, 0, 0,
0, 471, 471, 469, 0, 470, 0, 469, 0, 470,
469, 471, 470, 472, 472, 471, 0, 470, 471, 474,
474, 473, 473, 472, 0, 0, 0, 472, 0, 474,
472, 473, 473, 474, 0, 473, 474, 0, 473, 475,
475, 476, 476, 0, 0, 0, 0, 477, 477, 475,
0, 476, 0, 475, 0, 476, 475, 477, 476, 481,
481, 477, 0, 0, 477, 478, 478, 478, 0, 481,
479, 479, 479, 481, 0, 478, 481, 0, 0, 478,
479, 0, 478, 0, 479, 480, 480, 479, 0, 0,
482, 482, 0, 0, 0, 480, 480, 0, 0, 480,
482, 0, 480, 0, 482, 483, 483, 482, 484, 0,
0, 485, 485, 484, 0, 483, 0, 484, 0, 483,
484, 485, 483, 484, 0, 485, 486, 486, 485, 0,
0, 487, 487, 487, 0, 0, 486, 488, 488, 488,
486, 487, 0, 486, 0, 487, 0, 488, 487, 491,
491, 488, 0, 0, 488, 492, 492, 0, 0, 491,
493, 493, 0, 491, 494, 492, 491, 0, 0, 492,
493, 492, 492, 0, 493, 0, 0, 493, 494, 494,
495, 495, 0, 0, 0, 0, 0, 0, 494, 0,
495, 0, 494, 0, 495, 494, 0, 495, 496, 496,
496, 0, 0, 497, 497, 0, 0, 0, 496, 498,
498, 0, 496, 497, 0, 496, 0, 497, 0, 498,
497, 499, 499, 498, 0, 0, 498, 0, 0, 500,
500, 499, 0, 0, 0, 499, 0, 499, 499, 500,
501, 501, 0, 500, 0, 500, 500, 0, 502, 502,
501, 503, 0, 0, 501, 0, 503, 501, 502, 502,
503, 0, 502, 503, 0, 502, 503, 504, 504, 0,
505, 0, 0, 504, 0, 505, 0, 504, 505, 505,
504, 506, 505, 504, 0, 505, 506, 507, 507, 0,
506, 0, 0, 506, 0, 0, 506, 507, 508, 508,
0, 507, 508, 0, 507, 0, 509, 509, 508, 0,
0, 0, 508, 0, 0, 508, 509, 0, 510, 510,
509, 512, 0, 509, 511, 511, 512, 509, 510, 0,
512, 0, 510, 512, 511, 510, 512, 0, 511, 513,
513, 511, 0, 0, 0, 514, 514, 0, 0, 513,
0, 515, 515, 513, 514, 514, 513, 516, 516, 514,
515, 515, 514, 517, 517, 515, 0, 516, 515, 0,
518, 516, 0, 517, 516, 518, 519, 517, 0, 518,
517, 519, 518, 521, 0, 518, 519, 0, 520, 520,
519, 0, 0, 519, 520, 0, 519, 522, 520, 0,
521, 520, 522, 0, 520, 521, 0, 522, 0, 521,
0, 522, 521, 523, 522, 521, 0, 522, 523, 524,
524, 0, 523, 0, 0, 523, 0, 0, 523, 524,
525, 525, 525, 524, 0, 0, 524, 0, 526, 526,
525, 0, 0, 528, 525, 0, 0, 525, 526, 527,
527, 0, 526, 0, 0, 526, 0, 528, 528, 527,
0, 0, 0, 527, 0, 0, 527, 528, 529, 529,
0, 528, 530, 0, 528, 0, 0, 530, 529, 0,
0, 530, 529, 531, 530, 529, 0, 530, 531, 0,
532, 532, 531, 0, 0, 531, 532, 0, 531, 0,
532, 533, 533, 532, 0, 0, 532, 534, 534, 537,
537, 533, 0, 0, 0, 533, 534, 534, 533, 537,
0, 534, 0, 537, 534, 0, 537, 538, 538, 0,
0, 0, 539, 539, 0, 0, 0, 538, 540, 540,
540, 538, 539, 538, 538, 0, 539, 0, 540, 539,
541, 541, 540, 0, 0, 540, 541, 0, 542, 542,
541, 543, 0, 0, 541, 0, 543, 541, 542, 544,
543, 546, 542, 543, 544, 542, 543, 0, 544, 545,
545, 544, 0, 0, 544, 546, 546, 547, 547, 545,
0, 0, 0, 545, 0, 546, 545, 547, 0, 546,
0, 547, 546, 0, 547, 548, 548, 549, 549, 0,
0, 0, 0, 550, 550, 548, 0, 549, 0, 548,
0, 549, 548, 550, 549, 551, 551, 550, 0, 550,
550, 552, 552, 552, 0, 551, 0, 0, 0, 551,
0, 552, 551, 554, 554, 552, 551, 0, 552, 553,
553, 553, 0, 554, 555, 555, 555, 554, 0, 553,
554, 0, 0, 553, 555, 0, 553, 0, 555, 556,
556, 555, 0, 0, 557, 557, 0, 0, 0, 556,
556, 0, 0, 556, 557, 0, 556, 0, 557, 0,
557, 557, 558, 558, 0, 0, 559, 559, 559, 0,
0, 0, 558, 560, 560, 0, 558, 559, 0, 558,
0, 559, 0, 560, 559, 561, 561, 560, 0, 560,
560, 562, 562, 0, 0, 561, 563, 563, 563, 561,
0, 562, 561, 0, 0, 562, 563, 0, 562, 565,
563, 564, 564, 563, 0, 0, 0, 564, 0, 0,
0, 564, 0, 565, 565, 564, 0, 0, 564, 566,
566, 566, 0, 565, 567, 567, 0, 565, 0, 566,
565, 0, 0, 566, 567, 568, 566, 0, 567, 0,
568, 567, 569, 569, 568, 0, 0, 568, 569, 0,
568, 571, 569, 0, 0, 569, 571, 0, 569, 571,
571, 0, 572, 571, 0, 0, 571, 572, 573, 573,
0, 572, 0, 0, 572, 0, 0, 572, 573, 574,
574, 0, 573, 0, 576, 573, 0, 575, 575, 574,
574, 0, 0, 574, 0, 0, 574, 575, 576, 576,
0, 575, 577, 0, 575, 0, 0, 577, 576, 579,
579, 577, 576, 578, 577, 576, 0, 577, 578, 579,
0, 0, 578, 579, 0, 578, 579, 0, 578, 580,
580, 580, 0, 0, 581, 581, 0, 0, 0, 580,
582, 582, 0, 580, 581, 0, 580, 0, 581, 0,
582, 581, 583, 583, 582, 0, 0, 582, 584, 584,
585, 585, 583, 0, 0, 0, 583, 0, 584, 583,
585, 0, 584, 0, 585, 584, 0, 585, 586, 586,
587, 587, 0, 0, 0, 0, 587, 0, 586, 0,
587, 0, 586, 0, 587, 586, 0, 587, 588, 588,
589, 589, 0, 0, 0, 0, 589, 0, 588, 0,
589, 0, 588, 0, 589, 588, 0, 589, 0, 588,
590, 590, 591, 591, 0, 0, 0, 0, 592, 592,
590, 0, 591, 0, 590, 0, 591, 590, 592, 591,
593, 593, 592, 0, 0, 592, 594, 594, 0, 0,
593, 0, 595, 595, 593, 0, 594, 593, 595, 0,
594, 0, 595, 594, 596, 596, 595, 0, 0, 595,
598, 598, 599, 599, 596, 0, 0, 0, 596, 0,
598, 596, 599, 0, 598, 0, 599, 598, 0, 599,
600, 600, 601, 601, 0, 0, 0, 0, 0, 0,
600, 0, 601, 0, 600, 0, 601, 600, 601, 601,
602, 0, 602, 602, 603, 603, 0, 0, 0, 0,
603, 0, 602, 0, 603, 0, 602, 0, 603, 602,
0, 603, 604, 604, 605, 605, 0, 0, 0, 0,
0, 0, 604, 0, 605, 0, 604, 0, 605, 604,
605, 605, 606, 606, 0, 0, 0, 607, 607, 0,
0, 0, 606, 0, 0, 0, 606, 607, 606, 606,
0, 607, 0, 607, 607, 608, 608, 609, 609, 0,
0, 0, 0, 0, 0, 608, 608, 609, 611, 608,
0, 609, 608, 611, 609, 610, 610, 611, 0, 0,
611, 0, 613, 611, 0, 610, 610, 613, 612, 610,
613, 613, 610, 612, 613, 0, 0, 613, 612, 0,
0, 614, 612, 0, 0, 612, 614, 0, 612, 0,
614, 0, 615, 614, 614, 616, 614, 615, 0, 0,
616, 615, 0, 0, 615, 616, 0, 615, 0, 616,
0, 0, 616, 617, 617, 616, 0, 0, 617, 0,
0, 0, 617, 0, 619, 617, 618, 618, 617, 619,
0, 618, 0, 619, 0, 618, 619, 620, 618, 619,
0, 618, 620, 0, 621, 621, 620, 0, 0, 620,
621, 0, 620, 0, 621, 622, 622, 621, 0, 0,
621, 623, 623, 624, 624, 622, 0, 0, 0, 622,
0, 623, 622, 624, 0, 623, 0, 624, 623, 624,
624, 625, 625, 0, 0, 0, 626, 626, 0, 0,
0, 625, 627, 627, 0, 625, 626, 625, 625, 0,
626, 0, 627, 626, 628, 628, 627, 0, 628, 627,
629, 629, 629, 0, 628, 0, 630, 630, 628, 0,
629, 628, 630, 0, 629, 0, 630, 629, 631, 631,
630, 0, 0, 630, 632, 632, 633, 633, 631, 0,
0, 0, 631, 0, 632, 631, 633, 0, 632, 0,
633, 632, 0, 633, 634, 634, 635, 635, 0, 0,
636, 0, 636, 636, 634, 0, 635, 0, 634, 0,
635, 634, 636, 635, 638, 638, 636, 0, 0, 636,
637, 637, 637, 0, 638, 639, 639, 0, 638, 0,
637, 638, 0, 0, 637, 639, 0, 637, 0, 639,
640, 640, 639, 0, 0, 641, 641, 0, 0, 0,
640, 0, 0, 0, 640, 641, 0, 640, 0, 641,
0, 641, 641, 642, 642, 643, 643, 0, 0, 0,
0, 644, 644, 642, 0, 643, 0, 642, 645, 643,
642, 644, 643, 645, 0, 644, 0, 645, 644, 0,
645, 646, 646, 645, 0, 0, 647, 647, 0, 0,
0, 646, 648, 648, 648, 646, 647, 0, 646, 0,
647, 0, 648, 647, 649, 649, 648, 0, 0, 648,
0, 0, 0, 0, 649, 0, 0, 0, 649, 0,
0, 649, 651, 651, 651, 651, 651, 652, 652, 652,
652, 652, 653, 653, 653, 653, 653, 654, 654, 654,
654, 655, 655, 655, 655, 656, 656, 656, 658, 658,
658, 658, 659, 0, 659, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650, 650,
650, 650, 650, 650, 650, 650, 650, 650, 650
} ;
/* The intent behind this definition is that it'll catch
* any uses of REJECT which flex missed.
*/
#define REJECT reject_used_but_not_detected
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
/**
* @file yang.l
* @author Pavol Vican
* @brief YANG parser for libyang (flex grammar)
*
* Copyright (c) 2015 CESNET, z.s.p.o.
*
* This source code is licensed under BSD 3-Clause License (the "License").
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://opensource.org/licenses/BSD-3-Clause
*/
#define YY_NO_INPUT 1
#include "parser_yang.h"
#include "parser_yang_bis.h"
#define YY_USER_ACTION yylloc->first_column = yylloc->last_column +1;\
yylloc->last_column = yylloc->first_column + yyleng - 1;
#define INITIAL 0
#define COMMENT1 1
#define COMMENT2 2
#define PATH 3
#define DOUBLEQUOTES 4
#define SINGLEQUOTES 5
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif
#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif
/* Holds the entire state of the reentrant scanner. */
struct yyguts_t
{
/* User-defined. Not touched by flex. */
YY_EXTRA_TYPE yyextra_r;
/* The rest are the same as the globals declared in the non-reentrant scanner. */
FILE *yyin_r, *yyout_r;
size_t yy_buffer_stack_top; /**< index of top of stack. */
size_t yy_buffer_stack_max; /**< capacity of stack. */
YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
char yy_hold_char;
yy_size_t yy_n_chars;
yy_size_t yyleng_r;
char *yy_c_buf_p;
int yy_init;
int yy_start;
int yy_did_buffer_switch_on_eof;
int yy_start_stack_ptr;
int yy_start_stack_depth;
int *yy_start_stack;
yy_state_type yy_last_accepting_state;
char* yy_last_accepting_cpos;
int yylineno_r;
int yy_flex_debug_r;
char *yytext_r;
int yy_more_flag;
int yy_more_len;
YYSTYPE * yylval_r;
YYLTYPE * yylloc_r;
}; /* end struct yyguts_t */
static int yy_init_globals (yyscan_t yyscanner );
/* This must go here because YYSTYPE and YYLTYPE are included
* from bison output in section 1.*/
# define yylval yyg->yylval_r
# define yylloc yyg->yylloc_r
int yylex_init (yyscan_t* scanner);
int yylex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner);
/* Accessor methods to globals.
These are made visible to non-reentrant scanners for convenience. */
int yylex_destroy (yyscan_t yyscanner );
int yyget_debug (yyscan_t yyscanner );
void yyset_debug (int debug_flag ,yyscan_t yyscanner );
YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner );
void yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner );
FILE *yyget_in (yyscan_t yyscanner );
void yyset_in (FILE * _in_str ,yyscan_t yyscanner );
FILE *yyget_out (yyscan_t yyscanner );
void yyset_out (FILE * _out_str ,yyscan_t yyscanner );
yy_size_t yyget_leng (yyscan_t yyscanner );
char *yyget_text (yyscan_t yyscanner );
int yyget_lineno (yyscan_t yyscanner );
void yyset_lineno (int _line_number ,yyscan_t yyscanner );
int yyget_column (yyscan_t yyscanner );
void yyset_column (int _column_no ,yyscan_t yyscanner );
YYSTYPE * yyget_lval (yyscan_t yyscanner );
void yyset_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner );
YYLTYPE *yyget_lloc (yyscan_t yyscanner );
void yyset_lloc (YYLTYPE * yylloc_param ,yyscan_t yyscanner );
/* Macros after this point can all be overridden by user definitions in
* section 1.
*/
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap (yyscan_t yyscanner );
#else
extern int yywrap (yyscan_t yyscanner );
#endif
#endif
#ifndef YY_NO_UNPUT
#endif
#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner);
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner);
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (yyscan_t yyscanner );
#else
static int input (yyscan_t yyscanner );
#endif
#endif
/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k */
#define YY_READ_BUF_SIZE 16384
#else
#define YY_READ_BUF_SIZE 8192
#endif /* __ia64__ */
#endif
/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
#endif
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
{ \
int c = '*'; \
size_t n; \
for ( n = 0; n < max_size && \
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \
if ( c == '\n' ) \
buf[n++] = (char) c; \
if ( c == EOF && ferror( yyin ) ) \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
result = n; \
} \
else \
{ \
errno=0; \
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
{ \
if( errno != EINTR) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
break; \
} \
errno=0; \
clearerr(yyin); \
} \
}\
\
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif
/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif
/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner)
#endif
/* end tables serialization structures and prototypes */
/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1
extern int yylex \
(YYSTYPE * yylval_param,YYLTYPE * yylloc_param ,yyscan_t yyscanner);
#define YY_DECL int yylex \
(YYSTYPE * yylval_param, YYLTYPE * yylloc_param , yyscan_t yyscanner)
#endif /* !YY_DECL */
/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif
/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK /*LINTED*/break;
#endif
#define YY_RULE_SETUP \
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
{
yy_state_type yy_current_state;
char *yy_cp, *yy_bp;
int yy_act;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yylval = yylval_param;
yylloc = yylloc_param;
if ( !yyg->yy_init )
{
yyg->yy_init = 1;
#ifdef YY_USER_INIT
YY_USER_INIT;
#endif
if ( ! yyg->yy_start )
yyg->yy_start = 1; /* first start state */
if ( ! yyin )
yyin = stdin;
if ( ! yyout )
yyout = stdout;
if ( ! YY_CURRENT_BUFFER ) {
yyensure_buffer_stack (yyscanner);
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
}
yy_load_buffer_state(yyscanner );
}
{
int tab_count = 0;
int size_str = 0;
int column = 0;
char *str = NULL;
int _state = YY_START;
yy_size_t i;
uint32_t value;
while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
{
yy_cp = yyg->yy_c_buf_p;
/* Support of yytext. */
*yy_cp = yyg->yy_hold_char;
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = yyg->yy_start;
yy_match:
do
{
YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
if ( yy_accept[yy_current_state] )
{
yyg->yy_last_accepting_state = yy_current_state;
yyg->yy_last_accepting_cpos = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 651 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
++yy_cp;
}
while ( yy_base[yy_current_state] != 4766 );
yy_find_action:
yy_act = yy_accept[yy_current_state];
if ( yy_act == 0 )
{ /* have to back up */
yy_cp = yyg->yy_last_accepting_cpos;
yy_current_state = yyg->yy_last_accepting_state;
yy_act = yy_accept[yy_current_state];
}
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
switch ( yy_act )
{ /* beginning of action switch */
case 0: /* must back up */
/* undo the effects of YY_DO_BEFORE_ACTION */
*yy_cp = yyg->yy_hold_char;
yy_cp = yyg->yy_last_accepting_cpos;
yy_current_state = yyg->yy_last_accepting_state;
goto yy_find_action;
case 1:
YY_RULE_SETUP
{_state = YY_START; BEGIN COMMENT1; }
YY_BREAK
case 2:
YY_RULE_SETUP
YY_BREAK
case 3:
/* rule 3 can match eol */
YY_RULE_SETUP
{yylloc->last_column = 0;}
YY_BREAK
case 4:
YY_RULE_SETUP
{BEGIN _state; }
YY_BREAK
case 5:
YY_RULE_SETUP
{_state = YY_START; BEGIN COMMENT2;}
YY_BREAK
case 6:
/* rule 6 can match eol */
YY_RULE_SETUP
{BEGIN _state; yylloc->last_column = 0; return EOL; }
YY_BREAK
case 7:
YY_RULE_SETUP
{ return ANYXML_KEYWORD; }
YY_BREAK
case 8:
YY_RULE_SETUP
{ return ARGUMENT_KEYWORD; }
YY_BREAK
case 9:
YY_RULE_SETUP
{ BEGIN PATH; return AUGMENT_KEYWORD; }
YY_BREAK
case 10:
YY_RULE_SETUP
{ return BASE_KEYWORD; }
YY_BREAK
case 11:
YY_RULE_SETUP
{ return BELONGS_TO_KEYWORD; }
YY_BREAK
case 12:
YY_RULE_SETUP
{ return BIT_KEYWORD; }
YY_BREAK
case 13:
YY_RULE_SETUP
{ return CASE_KEYWORD; }
YY_BREAK
case 14:
YY_RULE_SETUP
{ return CHOICE_KEYWORD; }
YY_BREAK
case 15:
YY_RULE_SETUP
{ return CONFIG_KEYWORD; }
YY_BREAK
case 16:
YY_RULE_SETUP
{ return CONTACT_KEYWORD; }
YY_BREAK
case 17:
YY_RULE_SETUP
{ return CONTAINER_KEYWORD; }
YY_BREAK
case 18:
YY_RULE_SETUP
{ return DEFAULT_KEYWORD; }
YY_BREAK
case 19:
YY_RULE_SETUP
{ return DESCRIPTION_KEYWORD; }
YY_BREAK
case 20:
YY_RULE_SETUP
{ return ENUM_KEYWORD; }
YY_BREAK
case 21:
YY_RULE_SETUP
{ return ERROR_APP_TAG_KEYWORD; }
YY_BREAK
case 22:
YY_RULE_SETUP
{ return ERROR_MESSAGE_KEYWORD; }
YY_BREAK
case 23:
YY_RULE_SETUP
{ return EXTENSION_KEYWORD; }
YY_BREAK
case 24:
YY_RULE_SETUP
{ BEGIN PATH; return DEVIATION_KEYWORD; }
YY_BREAK
case 25:
YY_RULE_SETUP
{ return DEVIATE_KEYWORD; }
YY_BREAK
case 26:
YY_RULE_SETUP
{ return FEATURE_KEYWORD; }
YY_BREAK
case 27:
YY_RULE_SETUP
{ return FRACTION_DIGITS_KEYWORD; }
YY_BREAK
case 28:
YY_RULE_SETUP
{ return GROUPING_KEYWORD; }
YY_BREAK
case 29:
YY_RULE_SETUP
{ return IDENTITY_KEYWORD; }
YY_BREAK
case 30:
YY_RULE_SETUP
{ return IF_FEATURE_KEYWORD; }
YY_BREAK
case 31:
YY_RULE_SETUP
{ return IMPORT_KEYWORD; }
YY_BREAK
case 32:
YY_RULE_SETUP
{ return INCLUDE_KEYWORD; }
YY_BREAK
case 33:
YY_RULE_SETUP
{ return INPUT_KEYWORD; }
YY_BREAK
case 34:
YY_RULE_SETUP
{ return KEY_KEYWORD; }
YY_BREAK
case 35:
YY_RULE_SETUP
{ return LEAF_KEYWORD; }
YY_BREAK
case 36:
YY_RULE_SETUP
{ return LEAF_LIST_KEYWORD; }
YY_BREAK
case 37:
YY_RULE_SETUP
{ return LENGTH_KEYWORD; }
YY_BREAK
case 38:
YY_RULE_SETUP
{ return LIST_KEYWORD; }
YY_BREAK
case 39:
YY_RULE_SETUP
{ return MANDATORY_KEYWORD; }
YY_BREAK
case 40:
YY_RULE_SETUP
{ return MAX_ELEMENTS_KEYWORD; }
YY_BREAK
case 41:
YY_RULE_SETUP
{ return MIN_ELEMENTS_KEYWORD; }
YY_BREAK
case 42:
YY_RULE_SETUP
{ return MODULE_KEYWORD; }
YY_BREAK
case 43:
YY_RULE_SETUP
{ return MUST_KEYWORD; }
YY_BREAK
case 44:
YY_RULE_SETUP
{ return NAMESPACE_KEYWORD; }
YY_BREAK
case 45:
YY_RULE_SETUP
{ return NOTIFICATION_KEYWORD; }
YY_BREAK
case 46:
YY_RULE_SETUP
{ return ORDERED_BY_KEYWORD; }
YY_BREAK
case 47:
YY_RULE_SETUP
{ return ORGANIZATION_KEYWORD; }
YY_BREAK
case 48:
YY_RULE_SETUP
{ return OUTPUT_KEYWORD; }
YY_BREAK
case 49:
YY_RULE_SETUP
{ BEGIN PATH; return PATH_KEYWORD; }
YY_BREAK
case 50:
YY_RULE_SETUP
{ return PATTERN_KEYWORD; }
YY_BREAK
case 51:
YY_RULE_SETUP
{ return POSITION_KEYWORD; }
YY_BREAK
case 52:
YY_RULE_SETUP
{ return PREFIX_KEYWORD; }
YY_BREAK
case 53:
YY_RULE_SETUP
{ return PRESENCE_KEYWORD; }
YY_BREAK
case 54:
YY_RULE_SETUP
{ return RANGE_KEYWORD; }
YY_BREAK
case 55:
YY_RULE_SETUP
{ return REFERENCE_KEYWORD; }
YY_BREAK
case 56:
YY_RULE_SETUP
{ BEGIN PATH; return REFINE_KEYWORD; }
YY_BREAK
case 57:
YY_RULE_SETUP
{ return REQUIRE_INSTANCE_KEYWORD; }
YY_BREAK
case 58:
YY_RULE_SETUP
{ return REVISION_KEYWORD; }
YY_BREAK
case 59:
YY_RULE_SETUP
{ return REVISION_DATE_KEYWORD; }
YY_BREAK
case 60:
YY_RULE_SETUP
{ return RPC_KEYWORD; }
YY_BREAK
case 61:
YY_RULE_SETUP
{ return STATUS_KEYWORD; }
YY_BREAK
case 62:
YY_RULE_SETUP
{ return SUBMODULE_KEYWORD; }
YY_BREAK
case 63:
YY_RULE_SETUP
{ return TYPE_KEYWORD; }
YY_BREAK
case 64:
YY_RULE_SETUP
{ return TYPEDEF_KEYWORD; }
YY_BREAK
case 65:
YY_RULE_SETUP
{ BEGIN PATH; return UNIQUE_KEYWORD; }
YY_BREAK
case 66:
YY_RULE_SETUP
{ return UNITS_KEYWORD; }
YY_BREAK
case 67:
YY_RULE_SETUP
{ return USES_KEYWORD; }
YY_BREAK
case 68:
YY_RULE_SETUP
{ return VALUE_KEYWORD; }
YY_BREAK
case 69:
YY_RULE_SETUP
{ return WHEN_KEYWORD; }
YY_BREAK
case 70:
YY_RULE_SETUP
{ return YANG_VERSION_KEYWORD; }
YY_BREAK
case 71:
YY_RULE_SETUP
{ return YIN_ELEMENT_KEYWORD; }
YY_BREAK
case 72:
YY_RULE_SETUP
{ return ADD_KEYWORD; }
YY_BREAK
case 73:
YY_RULE_SETUP
{ return CURRENT_KEYWORD; }
YY_BREAK
case 74:
YY_RULE_SETUP
{ return CURRENT_KEYWORD; }
YY_BREAK
case 75:
YY_RULE_SETUP
{ return DELETE_KEYWORD; }
YY_BREAK
case 76:
YY_RULE_SETUP
{ return DEPRECATED_KEYWORD; }
YY_BREAK
case 77:
YY_RULE_SETUP
{ return FALSE_KEYWORD; }
YY_BREAK
case 78:
YY_RULE_SETUP
{ return NOT_SUPPORTED_KEYWORD; }
YY_BREAK
case 79:
YY_RULE_SETUP
{ return OBSOLETE_KEYWORD; }
YY_BREAK
case 80:
YY_RULE_SETUP
{ return REPLACE_KEYWORD; }
YY_BREAK
case 81:
YY_RULE_SETUP
{ return SYSTEM_KEYWORD; }
YY_BREAK
case 82:
YY_RULE_SETUP
{ return TRUE_KEYWORD; }
YY_BREAK
case 83:
YY_RULE_SETUP
{ return UNBOUNDED_KEYWORD; }
YY_BREAK
case 84:
YY_RULE_SETUP
{ return USER_KEYWORD; }
YY_BREAK
case 85:
YY_RULE_SETUP
{return ACTION_KEYWORD; }
YY_BREAK
case 86:
YY_RULE_SETUP
{return MODIFIER_KEYWORD; }
YY_BREAK
case 87:
YY_RULE_SETUP
{return ANYDATA_KEYWORD; }
YY_BREAK
case 88:
case 89:
case 90:
case 91:
YY_RULE_SETUP
{ return yytext[0];} /* unsolved problem with concatenate string '+' */
YY_BREAK
case 92:
YY_RULE_SETUP
{_state = YY_START; BEGIN DOUBLEQUOTES; str = yytext; column = yylloc->first_column; }
YY_BREAK
case 93:
YY_RULE_SETUP
{ tab_count++; size_str += yyleng; }
YY_BREAK
case 94:
YY_RULE_SETUP
{ size_str += yyleng; }
YY_BREAK
case 95:
/* rule 95 can match eol */
YY_RULE_SETUP
{yylloc->last_column = 0; size_str++; }
YY_BREAK
case 96:
YY_RULE_SETUP
{
value = ((uint32_t)(yytext[0] & 0xf) << 12) | ((uint32_t)(yytext[1] & 0x3f) << 6) | (yytext[2] & 0x3f);
if (((value & 0xf800) == 0xd800) ||
(value >= 0xfdd0 && value <= 0xfdef) ||
(value & 0xffe) == 0xffe) {
/* exclude surrogate blocks %xD800-DFFF */
/* exclude noncharacters %xFDD0-FDEF */
/* exclude noncharacters %xFFFE-FFFF */
LOGVAL(LYE_SPEC, LY_VLOG_NONE, NULL, "Invalid UTF-8 value 0x%08x", value);
yylloc->first_line = -1;
return ERROR;
}
size_str += 3;
}
YY_BREAK
case 97:
YY_RULE_SETUP
{
value = ((uint32_t)(yytext[0] & 0x7) << 18) | ((uint32_t)(yytext[1] & 0x3f) << 12) | ((uint32_t)(yytext[2] & 0x3f) << 6) | (yytext[3] & 0x3f);
if ((value & 0xffe) == 0xffe) {
/* exclude noncharacters %x1FFFE-1FFFF, %x2FFFE-2FFFF, %x3FFFE-3FFFF, %x4FFFE-4FFFF,
* %x5FFFE-5FFFF, %x6FFFE-6FFFF, %x7FFFE-7FFFF, %x8FFFE-8FFFF, %x9FFFE-9FFFF, %xAFFFE-AFFFF,
* %xBFFFE-BFFFF, %xCFFFE-CFFFF, %xDFFFE-DFFFF, %xEFFFE-EFFFF, %xFFFFE-FFFFF, %x10FFFE-10FFFF */
LOGVAL(LYE_SPEC, LY_VLOG_NONE, NULL, "Invalid UTF-8 value 0x%08x", value);
yylloc->first_line = -1;
return ERROR;
}
size_str += 4;
}
YY_BREAK
case 98:
YY_RULE_SETUP
{ yylval->i = tab_count;
BEGIN _state;
yytext = str;
yyleng = size_str + 2;
yylloc->first_column = column;
return STRING;
}
YY_BREAK
case YY_STATE_EOF(DOUBLEQUOTES):
{ LOGVAL(LYE_SPEC, LY_VLOG_NONE, NULL, "Unterminated double-quoted string.");
yylloc->first_line = -1;
return ERROR;
}
YY_BREAK
case 99:
YY_RULE_SETUP
{ _state = YY_START;
BEGIN SINGLEQUOTES;
str = yytext;
column = yylloc->first_column;
}
YY_BREAK
case 100:
YY_RULE_SETUP
{ size_str += yyleng; }
YY_BREAK
case 101:
YY_RULE_SETUP
{ BEGIN _state;
yytext = str;
yyleng = size_str + 2;
yylloc->first_column = column;
return STRING;
}
YY_BREAK
case YY_STATE_EOF(SINGLEQUOTES):
{ LOGVAL(LYE_SPEC, LY_VLOG_NONE, NULL, "Unterminated single-quoted string.");
yylloc->first_line = -1;
return ERROR;
}
YY_BREAK
case 102:
YY_RULE_SETUP
{return ZERO;}
YY_BREAK
case 103:
YY_RULE_SETUP
{return INTEGER;}
YY_BREAK
case 104:
YY_RULE_SETUP
{return NON_NEGATIVE_INTEGER;}
YY_BREAK
case 105:
case 106:
case 107:
case 108:
case 109:
case 110:
case 111:
YY_RULE_SETUP
{return yytext[0];}
YY_BREAK
case 112:
YY_RULE_SETUP
{return DOUBLEDOT;}
YY_BREAK
case 113:
/* rule 113 can match eol */
case 114:
/* rule 114 can match eol */
YY_RULE_SETUP
{ yylloc->last_column = 0; return EOL;}
YY_BREAK
case 115:
YY_RULE_SETUP
{ return WHITESPACE;}
YY_BREAK
case 116:
case 117:
YY_RULE_SETUP
{BEGIN INITIAL; return yytext[0];}
YY_BREAK
case 118:
YY_RULE_SETUP
{_state = YY_START; BEGIN DOUBLEQUOTES; str = yytext; column = yylloc->first_column; }
YY_BREAK
case 119:
YY_RULE_SETUP
{_state = YY_START; BEGIN COMMENT2;}
YY_BREAK
case 120:
YY_RULE_SETUP
{_state = YY_START; BEGIN COMMENT1;}
YY_BREAK
case 121:
YY_RULE_SETUP
{return IDENTIFIER;}
YY_BREAK
case 122:
YY_RULE_SETUP
{return IDENTIFIERPREFIX;}
YY_BREAK
case 123:
YY_RULE_SETUP
{return REVISION_DATE;}
YY_BREAK
case 124:
YY_RULE_SETUP
{return IDENTIFIER;}
YY_BREAK
case 125:
YY_RULE_SETUP
{return IDENTIFIERPREFIX;}
YY_BREAK
case 126:
YY_RULE_SETUP
{
if (yytext[0] == '/' && yytext[1] == '/') {
_state = YY_START;
yyless(2);
BEGIN COMMENT2;
} else if (yytext[0] == '/' && yytext[1] == '*') {
_state = YY_START;
yyless(2);
BEGIN COMMENT1;
} else {
i = 0;
while (i < yyleng) {
if (!(yytext[i] & 0x80)) {
/* one byte character */
++i;
} else if (!(yytext[i] & 0x20)) {
/* two bytes character */
i += 2;
} else if (!(yytext[i] & 0x10)) {
/* three bytes character */
value = ((uint32_t)(yytext[i] & 0xf) << 12) | ((uint32_t)(yytext[i + 1] & 0x3f) << 6) | (yytext[i + 2] & 0x3f);
if (((value & 0xf800) == 0xd800) ||
(value >= 0xfdd0 && value <= 0xfdef) ||
(value & 0xffe) == 0xffe) {
/* exclude surrogate blocks %xD800-DFFF */
/* exclude noncharacters %xFDD0-FDEF */
/* exclude noncharacters %xFFFE-FFFF */
LOGVAL(LYE_SPEC, LY_VLOG_NONE, NULL, "Invalid UTF-8 value 0x%08x", value);
yylloc->first_line = -1;
return ERROR;
}
i += 3;
} else {
/* four bytes character */
value = ((uint32_t)(yytext[i] & 0x7) << 18) | ((uint32_t)(yytext[i + 1] & 0x3f) << 12) | ((uint32_t)(yytext[i + 2] & 0x3f) << 6) | (yytext[i + 3] & 0x3f);
if ((value & 0xffe) == 0xffe) {
/* exclude noncharacters %x1FFFE-1FFFF, %x2FFFE-2FFFF, %x3FFFE-3FFFF, %x4FFFE-4FFFF,
* %x5FFFE-5FFFF, %x6FFFE-6FFFF, %x7FFFE-7FFFF, %x8FFFE-8FFFF, %x9FFFE-9FFFF, %xAFFFE-AFFFF,
* %xBFFFE-BFFFF, %xCFFFE-CFFFF, %xDFFFE-DFFFF, %xEFFFE-EFFFF, %xFFFFE-FFFFF, %x10FFFE-10FFFF */
LOGVAL(LYE_SPEC, LY_VLOG_NONE, NULL, "Invalid UTF-8 value 0x%08x", value);
yylloc->first_line = -1;
return ERROR;
}
i += 4;
}
}
return STRINGS;
}
}
YY_BREAK
case 127:
/* rule 127 can match eol */
case 128:
/* rule 128 can match eol */
YY_RULE_SETUP
{ yylloc->last_column = 0; return EOL; }
YY_BREAK
case 129:
YY_RULE_SETUP
{ return WHITESPACE;}
YY_BREAK
case 130:
/* rule 130 can match eol */
YY_RULE_SETUP
{
LOGVAL(LYE_SPEC, LY_VLOG_NONE, NULL, "Invalid UTF-8 leading byte 0x%02x", yytext[0]);
yylloc->first_line = -1;
return ERROR;
}
YY_BREAK
case 131:
YY_RULE_SETUP
ECHO;
YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(COMMENT1):
case YY_STATE_EOF(COMMENT2):
case YY_STATE_EOF(PATH):
yyterminate();
case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1;
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = yyg->yy_hold_char;
YY_RESTORE_YY_MORE_OFFSET
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source. It's
* possible that this happened because the user
* just pointed yyin at a new source and called
* yylex(). If so, then we have to assure
* consistency between YY_CURRENT_BUFFER and our
* globals. Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
}
/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state). Contrast this with the test
* in input().
*/
if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;
yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( yyscanner );
/* Okay, we're now positioned to make the NUL
* transition. We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/
yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner);
yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++yyg->yy_c_buf_p;
yy_current_state = yy_next_state;
goto yy_match;
}
else
{
yy_cp = yyg->yy_c_buf_p;
goto yy_find_action;
}
}
else switch ( yy_get_next_buffer( yyscanner ) )
{
case EOB_ACT_END_OF_FILE:
{
yyg->yy_did_buffer_switch_on_eof = 0;
if ( yywrap(yyscanner ) )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yytext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ;
yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}
else
{
if ( ! yyg->yy_did_buffer_switch_on_eof )
YY_NEW_FILE;
}
break;
}
case EOB_ACT_CONTINUE_SCAN:
yyg->yy_c_buf_p =
yyg->yytext_ptr + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( yyscanner );
yy_cp = yyg->yy_c_buf_p;
yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
goto yy_match;
case EOB_ACT_LAST_MATCH:
yyg->yy_c_buf_p =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars];
yy_current_state = yy_get_previous_state( yyscanner );
yy_cp = yyg->yy_c_buf_p;
yy_bp = yyg->yytext_ptr + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}
default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of user's declarations */
} /* end of yylex */
/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
static int yy_get_next_buffer (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
char *source = yyg->yytext_ptr;
yy_size_t number_to_move, i;
int ret_val;
if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}
else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}
/* Try to read more data. */
/* First move last chars to start of buffer. */
number_to_move = (yy_size_t) (yyg->yy_c_buf_p - yyg->yytext_ptr) - 1;
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0;
else
{
yy_size_t num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
int yy_c_buf_p_offset =
(int) (yyg->yy_c_buf_p - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
yy_size_t new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
b->yy_buf_size += b->yy_buf_size / 8;
else
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
/* Include room in for 2 EOB chars. */
yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner );
}
else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = 0;
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR(
"fatal error - scanner input buffer overflow" );
yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
number_to_move - 1;
}
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
yyg->yy_n_chars, num_to_read );
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
}
if ( yyg->yy_n_chars == 0 )
{
if ( number_to_move == YY_MORE_ADJ )
{
ret_val = EOB_ACT_END_OF_FILE;
yyrestart(yyin ,yyscanner);
}
else
{
ret_val = EOB_ACT_LAST_MATCH;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
YY_BUFFER_EOF_PENDING;
}
}
else
ret_val = EOB_ACT_CONTINUE_SCAN;
if ((yy_size_t) (yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
/* Extend the array by 50%, plus the number we really need. */
yy_size_t new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1);
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner );
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
}
yyg->yy_n_chars += number_to_move;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
return ret_val;
}
/* yy_get_previous_state - get the state just before the EOB char was reached */
static yy_state_type yy_get_previous_state (yyscan_t yyscanner)
{
yy_state_type yy_current_state;
char *yy_cp;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yy_current_state = yyg->yy_start;
for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp )
{
YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
if ( yy_accept[yy_current_state] )
{
yyg->yy_last_accepting_state = yy_current_state;
yyg->yy_last_accepting_cpos = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 651 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
}
return yy_current_state;
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
* synopsis
* next_state = yy_try_NUL_trans( current_state );
*/
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner)
{
int yy_is_jam;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */
char *yy_cp = yyg->yy_c_buf_p;
YY_CHAR yy_c = 1;
if ( yy_accept[yy_current_state] )
{
yyg->yy_last_accepting_state = yy_current_state;
yyg->yy_last_accepting_cpos = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 651 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
yy_is_jam = (yy_current_state == 650);
(void)yyg;
return yy_is_jam ? 0 : yy_current_state;
}
#ifndef YY_NO_UNPUT
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (yyscan_t yyscanner)
#else
static int input (yyscan_t yyscanner)
#endif
{
int c;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
*yyg->yy_c_buf_p = yyg->yy_hold_char;
if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] )
/* This was really a NUL. */
*yyg->yy_c_buf_p = '\0';
else
{ /* need more input */
yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
++yyg->yy_c_buf_p;
switch ( yy_get_next_buffer( yyscanner ) )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
yyrestart(yyin ,yyscanner);
/*FALLTHROUGH*/
case EOB_ACT_END_OF_FILE:
{
if ( yywrap(yyscanner ) )
return EOF;
if ( ! yyg->yy_did_buffer_switch_on_eof )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput(yyscanner);
#else
return input(yyscanner);
#endif
}
case EOB_ACT_CONTINUE_SCAN:
yyg->yy_c_buf_p = yyg->yytext_ptr + offset;
break;
}
}
}
c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */
*yyg->yy_c_buf_p = '\0'; /* preserve yytext */
yyg->yy_hold_char = *++yyg->yy_c_buf_p;
return c;
}
#endif /* ifndef YY_NO_INPUT */
/** Immediately switch to a different input stream.
* @param input_file A readable stream.
* @param yyscanner The scanner object.
* @note This function does not reset the start condition to @c INITIAL .
*/
void yyrestart (FILE * input_file , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if ( ! YY_CURRENT_BUFFER ){
yyensure_buffer_stack (yyscanner);
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner);
}
yy_init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner);
yy_load_buffer_state(yyscanner );
}
/** Switch to a different input buffer.
* @param new_buffer The new input buffer.
* @param yyscanner The scanner object.
*/
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
/* TODO. We should be able to replace this entire function body
* with
* yypop_buffer_state();
* yypush_buffer_state(new_buffer);
*/
yyensure_buffer_stack (yyscanner);
if ( YY_CURRENT_BUFFER == new_buffer )
return;
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*yyg->yy_c_buf_p = yyg->yy_hold_char;
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
}
YY_CURRENT_BUFFER_LVALUE = new_buffer;
yy_load_buffer_state(yyscanner );
/* We don't actually know whether we did this switch during
* EOF (yywrap()) processing, but the only time this flag
* is looked at is after yywrap() is called, so it's safe
* to go ahead and always set it.
*/
yyg->yy_did_buffer_switch_on_eof = 1;
}
static void yy_load_buffer_state (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
yyg->yy_hold_char = *yyg->yy_c_buf_p;
}
/** Allocate and initialize an input buffer state.
* @param file A readable stream.
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
* @param yyscanner The scanner object.
* @return the allocated buffer state.
*/
YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner)
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_buf_size = (yy_size_t)size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ,yyscanner );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_is_our_buffer = 1;
yy_init_buffer(b,file ,yyscanner);
return b;
}
/** Destroy the buffer.
* @param b a buffer created with yy_create_buffer()
* @param yyscanner The scanner object.
*/
void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if ( ! b )
return;
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
if ( b->yy_is_our_buffer )
yyfree((void *) b->yy_ch_buf ,yyscanner );
yyfree((void *) b ,yyscanner );
}
/* Initializes or reinitializes a buffer.
* This function is sometimes called more than once on the same buffer,
* such as during a yyrestart() or at EOF.
*/
static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner)
{
int oerrno = errno;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yy_flush_buffer(b ,yyscanner);
b->yy_input_file = file;
b->yy_fill_buffer = 1;
/* If b is the current buffer, then yy_init_buffer was _probably_
* called from yyrestart() or through yy_get_next_buffer.
* In that case, we don't want to reset the lineno or column.
*/
if (b != YY_CURRENT_BUFFER){
b->yy_bs_lineno = 1;
b->yy_bs_column = 0;
}
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
errno = oerrno;
}
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
* @param yyscanner The scanner object.
*/
void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == YY_CURRENT_BUFFER )
yy_load_buffer_state(yyscanner );
}
/** Pushes the new state onto the stack. The new state becomes
* the current state. This function will allocate the stack
* if necessary.
* @param new_buffer The new state.
* @param yyscanner The scanner object.
*/
void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (new_buffer == NULL)
return;
yyensure_buffer_stack(yyscanner);
/* This block is copied from yy_switch_to_buffer. */
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*yyg->yy_c_buf_p = yyg->yy_hold_char;
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p;
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
}
/* Only push if top exists. Otherwise, replace top. */
if (YY_CURRENT_BUFFER)
yyg->yy_buffer_stack_top++;
YY_CURRENT_BUFFER_LVALUE = new_buffer;
/* copied from yy_switch_to_buffer. */
yy_load_buffer_state(yyscanner );
yyg->yy_did_buffer_switch_on_eof = 1;
}
/** Removes and deletes the top of the stack, if present.
* The next element becomes the new top.
* @param yyscanner The scanner object.
*/
void yypop_buffer_state (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (!YY_CURRENT_BUFFER)
return;
yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner);
YY_CURRENT_BUFFER_LVALUE = NULL;
if (yyg->yy_buffer_stack_top > 0)
--yyg->yy_buffer_stack_top;
if (YY_CURRENT_BUFFER) {
yy_load_buffer_state(yyscanner );
yyg->yy_did_buffer_switch_on_eof = 1;
}
}
/* Allocates the stack if it does not exist.
* Guarantees space for at least one push.
*/
static void yyensure_buffer_stack (yyscan_t yyscanner)
{
yy_size_t num_to_alloc;
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (!yyg->yy_buffer_stack) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc = 1; // After all that talk, this was set to 1 anyways...
yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
, yyscanner);
if ( ! yyg->yy_buffer_stack )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*));
yyg->yy_buffer_stack_max = num_to_alloc;
yyg->yy_buffer_stack_top = 0;
return;
}
if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){
/* Increase the buffer to prepare for a possible push. */
yy_size_t grow_size = 8 /* arbitrary grow size */;
num_to_alloc = yyg->yy_buffer_stack_max + grow_size;
yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc
(yyg->yy_buffer_stack,
num_to_alloc * sizeof(struct yy_buffer_state*)
, yyscanner);
if ( ! yyg->yy_buffer_stack )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
/* zero only the new slots.*/
memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*));
yyg->yy_buffer_stack_max = num_to_alloc;
}
}
/** Setup the input buffer state to scan directly from a user-specified character buffer.
* @param base the character buffer
* @param size the size in bytes of the character buffer
* @param yyscanner The scanner object.
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner)
{
YY_BUFFER_STATE b;
if ( size < 2 ||
base[size-2] != YY_END_OF_BUFFER_CHAR ||
base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return 0;
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
b->yy_buf_pos = b->yy_ch_buf = base;
b->yy_is_our_buffer = 0;
b->yy_input_file = 0;
b->yy_n_chars = b->yy_buf_size;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
b->yy_buffer_status = YY_BUFFER_NEW;
yy_switch_to_buffer(b ,yyscanner );
return b;
}
/** Setup the input buffer state to scan a string. The next call to yylex() will
* scan from a @e copy of @a str.
* @param yystr a NUL-terminated string to scan
* @param yyscanner The scanner object.
* @return the newly allocated buffer state object.
* @note If you want to scan bytes that may contain NUL values, then use
* yy_scan_bytes() instead.
*/
YY_BUFFER_STATE yy_scan_string (yyconst char * yystr , yyscan_t yyscanner)
{
return yy_scan_bytes(yystr,strlen(yystr) ,yyscanner);
}
/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
* scan from a @e copy of @a bytes.
* @param yybytes the byte buffer to scan
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
* @param yyscanner The scanner object.
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner)
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
yy_size_t i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = _yybytes_len + 2;
buf = (char *) yyalloc(n ,yyscanner );
if ( ! buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
for ( i = 0; i < _yybytes_len; ++i )
buf[i] = yybytes[i];
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
b = yy_scan_buffer(buf,n ,yyscanner);
if ( ! b )
YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
/* It's okay to grow etc. this buffer, and we should throw it
* away when we're done.
*/
b->yy_is_our_buffer = 1;
return b;
}
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
(void)yyg;
(void) fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
yytext[yyleng] = yyg->yy_hold_char; \
yyg->yy_c_buf_p = yytext + yyless_macro_arg; \
yyg->yy_hold_char = *yyg->yy_c_buf_p; \
*yyg->yy_c_buf_p = '\0'; \
yyleng = yyless_macro_arg; \
} \
while ( 0 )
/* Accessor methods (get/set functions) to struct members. */
/** Get the user-defined data for this scanner.
* @param yyscanner The scanner object.
*/
YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
return yyextra;
}
/** Get the current line number.
* @param yyscanner The scanner object.
*/
int yyget_lineno (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (! YY_CURRENT_BUFFER)
return 0;
return yylineno;
}
/** Get the current column number.
* @param yyscanner The scanner object.
*/
int yyget_column (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
if (! YY_CURRENT_BUFFER)
return 0;
return yycolumn;
}
/** Get the input stream.
* @param yyscanner The scanner object.
*/
FILE *yyget_in (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
return yyin;
}
/** Get the output stream.
* @param yyscanner The scanner object.
*/
FILE *yyget_out (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
return yyout;
}
/** Get the length of the current token.
* @param yyscanner The scanner object.
*/
yy_size_t yyget_leng (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
return yyleng;
}
/** Get the current token.
* @param yyscanner The scanner object.
*/
char *yyget_text (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
return yytext;
}
/** Set the user-defined data. This data is never touched by the scanner.
* @param user_defined The data to be associated with this scanner.
* @param yyscanner The scanner object.
*/
void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yyextra = user_defined ;
}
/** Set the current line number.
* @param _line_number line number
* @param yyscanner The scanner object.
*/
void yyset_lineno (int _line_number , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
/* lineno is only valid if an input buffer exists. */
if (! YY_CURRENT_BUFFER )
YY_FATAL_ERROR( "yyset_lineno called with no buffer" );
yylineno = _line_number;
}
/** Set the current column.
* @param _column_no column number
* @param yyscanner The scanner object.
*/
void yyset_column (int _column_no , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
/* column is only valid if an input buffer exists. */
if (! YY_CURRENT_BUFFER )
YY_FATAL_ERROR( "yyset_column called with no buffer" );
yycolumn = _column_no;
}
/** Set the input stream. This does not discard the current
* input buffer.
* @param _in_str A readable stream.
* @param yyscanner The scanner object.
* @see yy_switch_to_buffer
*/
void yyset_in (FILE * _in_str , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yyin = _in_str ;
}
void yyset_out (FILE * _out_str , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yyout = _out_str ;
}
int yyget_debug (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
return yy_flex_debug;
}
void yyset_debug (int _bdebug , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yy_flex_debug = _bdebug ;
}
/* Accessor methods for yylval and yylloc */
YYSTYPE * yyget_lval (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
return yylval;
}
void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yylval = yylval_param;
}
YYLTYPE *yyget_lloc (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
return yylloc;
}
void yyset_lloc (YYLTYPE * yylloc_param , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
yylloc = yylloc_param;
}
/* User-visible API */
/* yylex_init is special because it creates the scanner itself, so it is
* the ONLY reentrant function that doesn't take the scanner as the last argument.
* That's why we explicitly handle the declaration, instead of using our macros.
*/
int yylex_init(yyscan_t* ptr_yy_globals)
{
if (ptr_yy_globals == NULL){
errno = EINVAL;
return 1;
}
*ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL );
if (*ptr_yy_globals == NULL){
errno = ENOMEM;
return 1;
}
/* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */
memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
return yy_init_globals ( *ptr_yy_globals );
}
/* yylex_init_extra has the same functionality as yylex_init, but follows the
* convention of taking the scanner as the last argument. Note however, that
* this is a *pointer* to a scanner, as it will be allocated by this call (and
* is the reason, too, why this function also must handle its own declaration).
* The user defined value in the first argument will be available to yyalloc in
* the yyextra field.
*/
int yylex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals )
{
struct yyguts_t dummy_yyguts;
yyset_extra (yy_user_defined, &dummy_yyguts);
if (ptr_yy_globals == NULL){
errno = EINVAL;
return 1;
}
*ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts );
if (*ptr_yy_globals == NULL){
errno = ENOMEM;
return 1;
}
/* By setting to 0xAA, we expose bugs in
yy_init_globals. Leave at 0x00 for releases. */
memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t));
yyset_extra (yy_user_defined, *ptr_yy_globals);
return yy_init_globals ( *ptr_yy_globals );
}
static int yy_init_globals (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
/* Initialization is the same as for the non-reentrant scanner.
* This function is called from yylex_destroy(), so don't allocate here.
*/
yyg->yy_buffer_stack = 0;
yyg->yy_buffer_stack_top = 0;
yyg->yy_buffer_stack_max = 0;
yyg->yy_c_buf_p = (char *) 0;
yyg->yy_init = 0;
yyg->yy_start = 0;
yyg->yy_start_stack_ptr = 0;
yyg->yy_start_stack_depth = 0;
yyg->yy_start_stack = NULL;
/* Defined in main.c */
#ifdef YY_STDINIT
yyin = stdin;
yyout = stdout;
#else
yyin = (FILE *) 0;
yyout = (FILE *) 0;
#endif
/* For future reference: Set errno on error, since we are called by
* yylex_init()
*/
return 0;
}
/* yylex_destroy is for both reentrant and non-reentrant scanners. */
int yylex_destroy (yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
/* Pop the buffer stack, destroying each element. */
while(YY_CURRENT_BUFFER){
yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner );
YY_CURRENT_BUFFER_LVALUE = NULL;
yypop_buffer_state(yyscanner);
}
/* Destroy the stack itself. */
yyfree(yyg->yy_buffer_stack ,yyscanner);
yyg->yy_buffer_stack = NULL;
/* Destroy the start condition stack. */
yyfree(yyg->yy_start_stack ,yyscanner );
yyg->yy_start_stack = NULL;
/* Reset the globals. This is important in a non-reentrant scanner so the next time
* yylex() is called, initialization will occur. */
yy_init_globals( yyscanner);
/* Destroy the main struct (reentrant only). */
yyfree ( yyscanner , yyscanner );
yyscanner = NULL;
return 0;
}
/*
* Internal utility routines.
*/
#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
(void)yyg;
int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner)
{
int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
void *yyalloc (yy_size_t size , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
(void)yyg;
return (void *) malloc( size );
}
void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
(void)yyg;
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* because both ANSI C and C++ allow castless assignment from
* any pointer type to void*, and deal with argument conversions
* as though doing an assignment.
*/
return (void *) realloc( (char *) ptr, size );
}
void yyfree (void * ptr , yyscan_t yyscanner)
{
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
(void)yyg;
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
}
#define YYTABLES_NAME "yytables"