#line 2 "frame/lex.C" #line 4 "frame/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 5 #define YY_FLEX_SUBMINOR_VERSION 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* The c++ scanner is a mess. The FlexLexer.h header file relies on the * following macro. This is required in order to pass the c++-multiple-scanners * test in the regression suite. We get reports that it breaks inheritance. * We will address this in a future release of flex, or omit the C++ scanner * altogether. */ #define yyFlexLexer frFlexLexer /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . 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 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; typedef uint64_t flex_uint64_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; #endif /* ! C99 */ /* 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 /* ! FLEXINT_H */ /* begin standard C++ headers. */ #include #include #include #include /* end standard C++ headers. */ #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) /* 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 (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 (((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 ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #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 extern yy_size_t yyleng; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) /* 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 = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (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, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { std::istream* 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 ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(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 (yy_buffer_stack)[(yy_buffer_stack_top)] void *fralloc (yy_size_t ); void *frrealloc (void *,yy_size_t ); void frfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer( yyin, YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer( yyin, YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; #define yytext_ptr yytext #include int yyFlexLexer::yywrap() { return 1; } /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ yyleng = (yy_size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 369 #define YY_END_OF_BUFFER 370 /* 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[1311] = { 0, 0, 0, 370, 368, 367, 369, 368, 368, 368, 368, 368, 349, 349, 349, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 367, 366, 0, 366, 363, 0, 366, 364, 366, 349, 351, 350, 349, 366, 353, 366, 366, 366, 288, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 30, 366, 366, 366, 366, 366, 44, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 139, 366, 366, 366, 366, 366, 151, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 199, 366, 366, 366, 366, 208, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 292, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 343, 366, 366, 366, 366, 366, 0, 366, 365, 363, 364, 351, 350, 355, 354, 366, 353, 366, 366, 366, 350, 366, 352, 366, 2, 366, 6, 7, 366, 366, 366, 366, 366, 366, 366, 366, 18, 366, 20, 366, 366, 366, 366, 366, 366, 366, 366, 31, 33, 366, 366, 366, 366, 38, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 84, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 99, 100, 366, 366, 366, 366, 107, 366, 366, 366, 366, 366, 113, 366, 366, 366, 119, 366, 123, 124, 366, 366, 366, 366, 366, 366, 366, 366, 134, 366, 366, 366, 366, 141, 366, 366, 366, 366, 366, 366, 366, 152, 366, 366, 366, 366, 366, 366, 161, 366, 366, 366, 366, 366, 366, 366, 366, 366, 174, 366, 366, 178, 366, 366, 366, 366, 366, 366, 186, 366, 366, 366, 366, 366, 366, 194, 366, 366, 197, 366, 366, 203, 366, 366, 366, 207, 366, 366, 366, 212, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 227, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 245, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 260, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 281, 366, 366, 284, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 304, 366, 366, 366, 366, 311, 366, 366, 366, 342, 344, 366, 366, 366, 366, 365, 356, 366, 351, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 19, 366, 22, 366, 366, 25, 27, 28, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 52, 366, 366, 55, 85, 366, 66, 366, 366, 366, 366, 366, 75, 366, 366, 366, 77, 366, 82, 366, 366, 87, 89, 366, 366, 366, 366, 366, 366, 366, 366, 106, 366, 366, 108, 366, 366, 366, 366, 366, 366, 116, 117, 366, 120, 366, 125, 366, 366, 128, 366, 130, 366, 366, 366, 366, 366, 137, 138, 366, 142, 366, 145, 366, 366, 366, 150, 366, 366, 155, 156, 158, 366, 366, 366, 366, 366, 366, 366, 169, 171, 366, 172, 366, 366, 366, 179, 181, 366, 366, 366, 366, 366, 187, 189, 366, 366, 192, 193, 366, 366, 198, 200, 366, 366, 204, 366, 366, 209, 366, 366, 366, 366, 366, 366, 217, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 233, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 246, 366, 366, 366, 366, 366, 252, 366, 254, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 266, 366, 268, 269, 366, 366, 366, 366, 366, 276, 366, 366, 366, 366, 366, 366, 286, 366, 366, 366, 366, 366, 295, 296, 297, 366, 366, 366, 366, 302, 366, 366, 366, 366, 305, 310, 338, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 366, 366, 366, 345, 346, 348, 366, 366, 357, 366, 366, 366, 366, 1, 5, 3, 366, 366, 10, 366, 366, 366, 366, 15, 16, 17, 366, 366, 24, 366, 29, 366, 366, 35, 36, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 54, 56, 366, 366, 366, 366, 366, 366, 366, 366, 366, 76, 366, 366, 78, 366, 366, 366, 366, 366, 92, 366, 366, 366, 96, 366, 366, 366, 366, 366, 366, 366, 366, 112, 366, 115, 366, 121, 122, 366, 366, 129, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 153, 366, 366, 366, 160, 366, 163, 366, 165, 366, 366, 366, 173, 366, 366, 366, 177, 366, 366, 366, 185, 366, 366, 366, 366, 196, 366, 366, 366, 366, 366, 366, 213, 366, 366, 216, 218, 366, 220, 366, 366, 223, 366, 366, 366, 366, 229, 366, 366, 366, 235, 366, 366, 238, 366, 366, 366, 366, 243, 366, 366, 248, 366, 366, 366, 253, 366, 256, 366, 366, 366, 366, 262, 366, 264, 265, 267, 270, 271, 366, 366, 366, 366, 366, 279, 366, 366, 283, 366, 290, 366, 366, 366, 366, 366, 366, 366, 366, 366, 303, 366, 366, 366, 366, 339, 340, 341, 366, 358, 357, 366, 366, 361, 366, 366, 359, 366, 366, 366, 366, 12, 13, 14, 366, 366, 366, 366, 34, 37, 366, 40, 366, 42, 43, 366, 46, 366, 366, 49, 366, 366, 53, 366, 366, 366, 57, 67, 366, 366, 366, 366, 366, 366, 366, 79, 80, 366, 83, 86, 366, 366, 366, 366, 366, 95, 366, 366, 366, 366, 366, 366, 109, 366, 366, 114, 118, 366, 126, 366, 366, 366, 135, 366, 140, 143, 144, 366, 366, 366, 366, 366, 366, 366, 366, 164, 366, 170, 167, 175, 366, 180, 366, 183, 184, 366, 190, 191, 195, 201, 366, 205, 206, 210, 211, 214, 215, 366, 221, 222, 366, 366, 366, 366, 366, 366, 366, 366, 236, 237, 239, 366, 366, 242, 366, 247, 249, 366, 251, 366, 257, 366, 259, 366, 263, 272, 273, 275, 366, 366, 280, 282, 366, 366, 366, 293, 294, 366, 366, 298, 366, 301, 306, 366, 308, 366, 347, 362, 360, 4, 366, 366, 11, 21, 23, 366, 366, 366, 366, 366, 47, 366, 366, 51, 366, 366, 366, 366, 366, 366, 366, 68, 69, 366, 366, 72, 366, 366, 366, 366, 90, 91, 94, 93, 366, 98, 366, 366, 104, 366, 110, 366, 366, 366, 366, 366, 366, 366, 147, 366, 366, 154, 159, 366, 162, 166, 366, 366, 182, 366, 202, 366, 224, 225, 366, 366, 366, 366, 366, 366, 240, 366, 366, 366, 366, 258, 366, 366, 277, 278, 366, 287, 366, 366, 366, 366, 307, 366, 366, 9, 366, 366, 366, 366, 45, 366, 50, 58, 60, 366, 366, 366, 366, 366, 366, 366, 71, 73, 366, 366, 88, 97, 101, 366, 366, 103, 366, 366, 131, 132, 133, 136, 146, 366, 366, 366, 366, 366, 188, 219, 366, 366, 230, 366, 232, 366, 241, 366, 250, 366, 366, 274, 285, 366, 366, 366, 300, 309, 8, 366, 32, 366, 41, 48, 366, 366, 59, 61, 366, 366, 70, 366, 81, 102, 366, 366, 127, 148, 366, 157, 366, 176, 366, 228, 366, 366, 366, 366, 366, 289, 366, 366, 26, 39, 62, 64, 366, 366, 366, 366, 111, 149, 366, 226, 231, 366, 244, 255, 366, 366, 299, 63, 65, 74, 366, 366, 234, 261, 366, 366, 168, 291, 366, 105, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 5, 4, 4, 4, 4, 6, 4, 4, 4, 7, 4, 7, 8, 4, 9, 10, 11, 12, 13, 14, 15, 15, 15, 16, 17, 4, 4, 4, 4, 4, 4, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 4, 4, 4, 4, 4, 4, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 4, 71, 4, 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, 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, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[72] = { 0, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 } ; static yyconst flex_int16_t yy_base[1318] = { 0, 0, 0, 432, 3026, 427, 3026, 0, 71, 76, 75, 83, 92, 69, 90, 141, 201, 250, 94, 295, 345, 146, 97, 390, 417, 96, 196, 295, 194, 300, 436, 83, 350, 483, 534, 91, 143, 243, 136, 103, 383, 363, 382, 0, 374, 390, 0, 363, 384, 0, 594, 603, 662, 702, 85, 611, 619, 636, 644, 742, 676, 96, 99, 244, 129, 253, 140, 189, 344, 180, 209, 214, 238, 351, 298, 242, 254, 0, 393, 290, 377, 302, 309, 0, 426, 347, 357, 405, 400, 391, 763, 442, 470, 479, 518, 809, 455, 324, 435, 441, 515, 457, 531, 431, 488, 470, 528, 531, 67, 530, 478, 542, 664, 521, 532, 677, 0, 605, 678, 658, 602, 604, 0, 604, 624, 720, 662, 659, 328, 657, 681, 702, 747, 724, 853, 710, 746, 683, 778, 793, 740, 745, 747, 770, 786, 806, 802, 798, 810, 817, 802, 833, 803, 813, 840, 861, 862, 860, 863, 893, 866, 886, 867, 895, 906, 932, 910, 941, 878, 901, 925, 939, 896, 952, 945, 940, 959, 949, 959, 964, 968, 948, 992, 971, 971, 995, 1002, 986, 980, 989, 993, 1014, 998, 0, 993, 996, 1015, 1004, 1018, 222, 1064, 0, 3026, 3026, 1127, 1047, 0, 0, 1063, 0, 1074, 1088, 1100, 1110, 1141, 0, 1042, 0, 1057, 1073, 0, 1103, 1104, 1105, 1108, 1125, 1131, 1145, 1133, 0, 1133, 0, 1131, 1132, 1139, 277, 1142, 1154, 1137, 1153, 1158, 0, 1148, 1151, 1163, 1163, 1180, 1154, 1163, 1170, 1162, 1195, 1192, 1178, 1185, 1185, 1198, 1201, 1187, 1193, 1196, 1200, 1185, 1188, 1187, 1200, 1204, 1218, 1217, 1215, 1202, 0, 1223, 1227, 1247, 1228, 1249, 1233, 1247, 1233, 1249, 1242, 0, 0, 1247, 1237, 1236, 1254, 0, 1255, 1251, 1257, 1266, 1249, 0, 1249, 1251, 1292, 1253, 1268, 0, 0, 1265, 1267, 1275, 1287, 1290, 1300, 1304, 1287, 0, 1305, 1292, 1305, 1306, 0, 1311, 1309, 1313, 1311, 1300, 1312, 1303, 0, 1317, 1337, 1310, 1331, 1321, 277, 1317, 1347, 1346, 1349, 1348, 1352, 1338, 1339, 1356, 1360, 0, 1347, 1350, 0, 1356, 1357, 1366, 1351, 1363, 1359, 0, 1357, 1371, 1376, 1380, 1386, 1387, 0, 1392, 1399, 0, 1385, 1402, 0, 1402, 1406, 1404, 0, 1385, 1402, 1407, 1409, 1395, 1399, 1414, 1401, 1403, 1419, 1405, 1412, 1404, 1421, 0, 1440, 1430, 1446, 1441, 1439, 1449, 1453, 1452, 1451, 1463, 0, 1451, 1471, 1468, 1458, 1486, 1470, 1491, 1471, 1465, 1488, 1483, 1503, 0, 1508, 1494, 1505, 1504, 1491, 1502, 1508, 1512, 1515, 1519, 1508, 1513, 1507, 1506, 1526, 1527, 1510, 0, 1513, 1533, 0, 1531, 1528, 1552, 1552, 1551, 1552, 1547, 1557, 1558, 1549, 1556, 1551, 1562, 1567, 1551, 1549, 0, 1552, 1556, 1554, 1562, 1618, 1670, 1654, 225, 0, 0, 1660, 1652, 1664, 1677, 3026, 0, 1687, 1695, 1714, 1723, 1732, 1712, 1719, 1731, 1726, 1711, 1732, 1726, 1725, 1731, 1736, 1717, 1720, 1736, 0, 1744, 0, 1725, 204, 1740, 0, 0, 1734, 1735, 1741, 1747, 1741, 1748, 1740, 1780, 1752, 1752, 1782, 1784, 1774, 1768, 1783, 1776, 0, 1779, 1774, 0, 0, 1775, 0, 1781, 1794, 1808, 1784, 1794, 0, 1783, 1800, 1785, 0, 1787, 0, 1793, 1828, 1824, 1824, 1831, 1818, 1835, 1821, 1834, 1841, 1830, 1830, 0, 1846, 1832, 0, 1846, 1839, 1833, 1849, 1840, 1851, 0, 0, 1852, 1833, 1856, 0, 1845, 1874, 0, 1858, 0, 1865, 1885, 1870, 1889, 1883, 0, 0, 1880, 1888, 1886, 0, 1883, 1891, 1871, 0, 1893, 1878, 0, 0, 1887, 1901, 176, 1888, 1893, 1887, 1896, 1889, 1909, 0, 1900, 0, 1901, 1908, 1921, 1932, 0, 1932, 1940, 1927, 1942, 1926, 1936, 0, 1937, 1932, 0, 0, 1926, 1930, 0, 0, 1949, 1946, 0, 1947, 1951, 0, 1940, 1943, 1957, 1954, 1955, 1956, 0, 1947, 1955, 1953, 123, 1959, 1975, 1970, 1983, 1988, 1974, 1990, 1991, 0, 1988, 1973, 2005, 1994, 1986, 2001, 1990, 2003, 1987, 1997, 0, 1990, 1993, 2000, 2000, 2000, 0, 2011, 0, 2003, 2026, 2029, 2036, 2041, 2038, 2041, 2042, 2028, 2045, 0, 2049, 0, 0, 2046, 2037, 2034, 2050, 2053, 0, 2040, 2041, 2042, 2057, 2059, 2053, 0, 2055, 2067, 2057, 2077, 2064, 0, 0, 0, 2086, 2095, 2085, 2078, 0, 2094, 2085, 2092, 2097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 2095, 152, 0, 0, 0, 2093, 2141, 2150, 2158, 2167, 2175, 2222, 0, 0, 2168, 2170, 2158, 0, 2157, 2175, 2166, 2178, 0, 0, 0, 2175, 2163, 0, 2166, 0, 2181, 2172, 0, 0, 2179, 2184, 2181, 2182, 2226, 2210, 2228, 2211, 2216, 2212, 2215, 2219, 2230, 2231, 0, 2250, 2220, 2225, 2226, 2223, 2225, 2240, 2225, 2246, 2239, 0, 2248, 2245, 2243, 2261, 2266, 2272, 2273, 2278, 0, 2272, 2280, 2281, 0, 2267, 2274, 2270, 2271, 2273, 2293, 2281, 2282, 0, 2280, 0, 2281, 0, 0, 2282, 2281, 0, 2293, 2283, 2295, 2303, 2312, 2326, 2314, 2313, 2325, 2318, 2329, 2322, 0, 2334, 2330, 2320, 0, 2324, 0, 2335, 0, 2339, 2327, 2341, 0, 2324, 2343, 2332, 0, 2344, 2348, 2329, 0, 2340, 2352, 2342, 2362, 0, 2359, 2365, 2366, 2365, 2372, 2367, 0, 2370, 2371, 0, 0, 2387, 0, 2387, 2388, 2389, 2380, 2393, 2378, 2380, 0, 2397, 2383, 2399, 0, 2391, 2385, 0, 2391, 2403, 2391, 2394, 0, 2398, 2420, 0, 2430, 2435, 2430, 0, 2418, 0, 2425, 2426, 2421, 2437, 0, 2439, 0, 0, 0, 0, 0, 2436, 2426, 2442, 2443, 2444, 0, 2431, 2439, 0, 2452, 0, 2450, 2447, 2451, 2437, 2442, 2451, 2456, 2466, 2472, 0, 2469, 2473, 2465, 2487, 0, 0, 0, 2486, 2195, 2512, 2526, 2534, 0, 2542, 2570, 0, 2518, 2537, 2538, 2529, 0, 0, 0, 2544, 2542, 2536, 2543, 0, 0, 2533, 0, 2552, 0, 0, 2553, 0, 2550, 2549, 0, 2550, 2548, 0, 2587, 2589, 2588, 2590, 0, 2589, 2575, 2586, 2577, 2579, 2579, 2585, 0, 0, 2599, 0, 0, 2582, 2588, 2602, 2586, 2588, 0, 2593, 2606, 2602, 2603, 2608, 2631, 0, 2627, 2624, 0, 0, 2634, 0, 2629, 2636, 2645, 0, 2644, 0, 0, 0, 2628, 2628, 2632, 2637, 2647, 2639, 2645, 2651, 0, 2642, 0, 2652, 0, 2649, 0, 2654, 0, 0, 2657, 0, 0, 0, 0, 2646, 0, 0, 0, 0, 0, 0, 2661, 0, 0, 2645, 2650, 2647, 2683, 2671, 2674, 2675, 2695, 0, 0, 0, 2692, 2686, 0, 2679, 0, 0, 2693, 0, 2692, 0, 2682, 0, 2684, 0, 0, 2697, 0, 2701, 2702, 0, 0, 2687, 2689, 2694, 0, 0, 2709, 2699, 0, 2709, 0, 0, 2699, 0, 2713, 0, 0, 0, 0, 2710, 2697, 0, 0, 0, 2696, 2743, 2733, 2734, 2736, 0, 2747, 2745, 0, 2732, 2735, 2751, 2752, 2753, 2754, 2753, 0, 0, 2737, 2739, 0, 2739, 2759, 2752, 2742, 0, 0, 0, 0, 2745, 0, 2761, 2750, 2765, 2764, 0, 2759, 2782, 2783, 2795, 2785, 2781, 2796, 0, 2801, 2783, 0, 0, 2789, 0, 0, 2791, 2801, 0, 2789, 0, 2796, 0, 0, 2800, 2795, 2806, 2803, 2788, 2794, 0, 2810, 2807, 2812, 2812, 0, 2810, 2794, 0, 0, 2816, 0, 2836, 2831, 2841, 2831, 0, 2840, 2835, 0, 2840, 2841, 2835, 2852, 0, 2846, 0, 0, 0, 2847, 2857, 2843, 2846, 2862, 2863, 2860, 0, 0, 2846, 2849, 0, 0, 0, 2854, 2855, 0, 2869, 2851, 0, 0, 0, 0, 0, 2859, 2872, 2886, 2897, 2884, 0, 0, 2887, 2890, 0, 2890, 0, 2897, 0, 2892, 0, 2899, 2896, 0, 0, 2906, 2906, 2892, 0, 0, 0, 2909, 0, 2895, 0, 0, 2910, 2911, 0, 0, 2905, 2915, 0, 2914, 0, 0, 2906, 2909, 0, 0, 2910, 0, 2914, 0, 2904, 0, 2911, 2937, 2939, 2951, 2954, 0, 2942, 2952, 0, 0, 0, 0, 2953, 2954, 2941, 2940, 0, 0, 2961, 0, 0, 2949, 0, 0, 2952, 2962, 0, 0, 0, 0, 2954, 2953, 0, 0, 2943, 2948, 0, 0, 2951, 0, 3026, 73, 3013, 3015, 3017, 3019, 3021, 3023 } ; static yyconst flex_int16_t yy_def[1318] = { 0, 1310, 1, 1310, 1310, 1310, 1310, 1311, 1312, 1313, 1311, 1311, 1311, 12, 12, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1314, 1310, 1311, 1315, 1312, 1311, 1316, 1313, 1311, 1311, 12, 1311, 1311, 12, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1317, 1314, 1311, 1310, 1310, 1311, 204, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 59, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1310, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1310, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 0, 1310, 1310, 1310, 1310, 1310, 1310, 1310 } ; static yyconst flex_int16_t yy_nxt[3098] = { 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 13, 14, 13, 13, 13, 13, 7, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 7, 44, 44, 44, 43, 46, 47, 47, 47, 300, 301, 49, 50, 51, 51, 51, 51, 51, 51, 51, 51, 52, 52, 52, 52, 52, 52, 52, 52, 53, 54, 54, 54, 54, 54, 54, 54, 54, 55, 43, 60, 94, 56, 57, 117, 95, 58, 129, 118, 96, 157, 182, 119, 183, 194, 43, 184, 216, 120, 97, 43, 217, 59, 866, 867, 43, 60, 94, 56, 57, 117, 95, 58, 129, 118, 96, 157, 182, 119, 183, 194, 43, 184, 216, 120, 97, 43, 217, 59, 61, 185, 221, 933, 112, 186, 192, 62, 113, 187, 63, 64, 65, 225, 66, 114, 67, 68, 193, 69, 70, 115, 71, 931, 72, 831, 61, 185, 221, 116, 112, 186, 192, 62, 113, 187, 63, 64, 65, 225, 66, 114, 67, 68, 193, 69, 70, 115, 71, 226, 72, 73, 139, 752, 130, 116, 140, 230, 131, 74, 75, 231, 132, 76, 227, 77, 141, 78, 133, 142, 79, 232, 143, 80, 81, 226, 233, 726, 139, 82, 130, 83, 140, 230, 131, 74, 75, 231, 132, 76, 227, 77, 141, 78, 133, 142, 79, 232, 143, 80, 81, 188, 233, 189, 234, 82, 190, 83, 84, 191, 218, 222, 85, 219, 238, 86, 87, 223, 239, 88, 89, 220, 90, 91, 224, 92, 576, 188, 93, 189, 234, 483, 190, 459, 84, 191, 218, 222, 85, 219, 238, 86, 87, 223, 239, 88, 89, 220, 90, 91, 224, 92, 243, 134, 93, 98, 99, 135, 236, 144, 247, 136, 244, 145, 100, 137, 101, 138, 102, 103, 104, 146, 248, 147, 237, 148, 105, 329, 243, 134, 283, 98, 99, 135, 236, 144, 247, 136, 244, 145, 100, 137, 101, 138, 102, 103, 104, 146, 248, 147, 237, 148, 105, 106, 199, 199, 199, 235, 158, 203, 228, 107, 159, 108, 160, 254, 252, 109, 253, 202, 110, 229, 161, 111, 42, 47, 47, 47, 162, 106, 49, 44, 44, 44, 158, 46, 228, 107, 159, 108, 160, 254, 252, 109, 253, 195, 110, 229, 161, 111, 121, 122, 245, 196, 162, 197, 123, 240, 246, 198, 124, 125, 257, 255, 241, 126, 258, 127, 128, 42, 242, 195, 1310, 259, 201, 1310, 121, 122, 245, 196, 256, 197, 123, 240, 246, 198, 124, 125, 257, 255, 241, 126, 258, 127, 149, 249, 242, 250, 150, 259, 266, 151, 152, 251, 284, 153, 256, 285, 154, 292, 1310, 155, 1310, 281, 156, 1310, 1310, 1310, 288, 1310, 149, 249, 1310, 250, 150, 282, 266, 151, 152, 251, 284, 153, 267, 285, 154, 292, 289, 155, 269, 281, 156, 163, 268, 164, 288, 165, 293, 294, 166, 167, 305, 282, 168, 169, 270, 170, 271, 171, 267, 172, 173, 174, 289, 1310, 269, 175, 1310, 163, 268, 164, 1310, 165, 293, 294, 166, 167, 305, 286, 168, 169, 270, 170, 271, 171, 287, 172, 173, 174, 295, 290, 1310, 175, 176, 272, 273, 274, 177, 296, 310, 178, 297, 302, 303, 286, 311, 304, 179, 291, 298, 180, 287, 306, 299, 307, 295, 290, 181, 1310, 176, 272, 273, 274, 177, 296, 310, 178, 297, 302, 303, 1310, 311, 304, 179, 291, 298, 180, 1310, 306, 299, 307, 1310, 1310, 181, 204, 204, 204, 204, 204, 204, 204, 204, 205, 51, 51, 51, 51, 51, 51, 51, 51, 210, 210, 210, 210, 210, 210, 210, 210, 211, 211, 211, 211, 211, 211, 211, 211, 314, 321, 206, 322, 323, 315, 324, 212, 43, 213, 213, 213, 213, 213, 213, 213, 213, 214, 214, 214, 214, 214, 214, 214, 214, 1310, 314, 321, 206, 322, 323, 315, 324, 1310, 43, 52, 52, 52, 52, 52, 52, 52, 52, 318, 327, 328, 319, 207, 208, 211, 211, 211, 211, 211, 211, 211, 211, 308, 320, 312, 316, 1310, 1310, 330, 331, 351, 309, 313, 317, 318, 327, 328, 319, 207, 208, 52, 52, 52, 52, 52, 52, 52, 52, 308, 320, 312, 316, 209, 57, 330, 331, 351, 309, 313, 317, 1310, 1310, 332, 1310, 1310, 1310, 1310, 1310, 1310, 325, 333, 338, 326, 339, 1310, 347, 348, 340, 209, 57, 215, 215, 215, 215, 215, 215, 215, 215, 332, 215, 215, 215, 215, 215, 215, 325, 333, 338, 326, 339, 334, 347, 348, 340, 1310, 362, 349, 335, 350, 360, 361, 364, 336, 337, 363, 215, 215, 215, 215, 215, 215, 260, 261, 262, 263, 264, 334, 1310, 352, 365, 265, 362, 349, 335, 350, 360, 361, 364, 336, 337, 363, 1310, 366, 353, 354, 1310, 355, 260, 261, 262, 263, 264, 356, 357, 352, 365, 265, 275, 367, 358, 368, 276, 277, 359, 369, 370, 374, 278, 366, 353, 354, 279, 355, 377, 378, 280, 1310, 371, 356, 357, 1310, 372, 373, 275, 367, 358, 368, 276, 277, 359, 369, 370, 374, 278, 375, 379, 1310, 279, 380, 377, 378, 280, 341, 371, 376, 381, 342, 372, 373, 382, 386, 387, 383, 388, 393, 343, 384, 344, 345, 346, 375, 379, 385, 389, 380, 396, 1310, 1310, 341, 1310, 376, 381, 342, 415, 1310, 382, 386, 387, 383, 388, 393, 343, 384, 344, 345, 346, 390, 394, 385, 389, 422, 396, 395, 400, 397, 391, 398, 408, 392, 415, 416, 401, 417, 399, 1310, 409, 1310, 402, 1310, 410, 403, 411, 390, 394, 418, 1310, 422, 1310, 395, 400, 397, 391, 398, 408, 392, 404, 416, 401, 417, 399, 405, 409, 419, 402, 412, 410, 403, 411, 406, 423, 418, 413, 407, 420, 424, 425, 421, 426, 428, 1310, 436, 404, 427, 414, 430, 434, 405, 432, 419, 429, 412, 441, 442, 431, 406, 423, 433, 413, 407, 420, 424, 425, 421, 426, 428, 435, 436, 447, 427, 414, 430, 434, 437, 432, 448, 429, 438, 441, 442, 431, 439, 445, 433, 443, 449, 450, 453, 440, 454, 444, 455, 435, 456, 447, 451, 457, 446, 458, 437, 1310, 448, 1310, 438, 1310, 452, 1310, 439, 445, 1310, 443, 449, 450, 453, 440, 454, 444, 455, 1310, 456, 1310, 451, 457, 446, 458, 199, 199, 199, 209, 57, 461, 452, 462, 462, 462, 462, 462, 462, 462, 462, 466, 467, 206, 210, 210, 210, 210, 210, 210, 210, 210, 463, 1310, 1310, 209, 57, 1310, 211, 211, 211, 211, 211, 211, 211, 211, 468, 466, 467, 206, 213, 213, 213, 213, 213, 213, 213, 213, 1310, 464, 213, 213, 213, 213, 213, 213, 213, 213, 1310, 1310, 1310, 1310, 468, 469, 470, 471, 201, 204, 204, 204, 204, 204, 204, 204, 204, 464, 1310, 472, 473, 207, 208, 214, 214, 214, 214, 214, 214, 214, 214, 469, 470, 471, 474, 460, 476, 478, 479, 480, 475, 481, 482, 484, 465, 472, 473, 207, 208, 485, 477, 486, 487, 488, 489, 490, 491, 492, 495, 496, 474, 460, 476, 478, 479, 480, 475, 481, 482, 484, 465, 493, 497, 494, 498, 485, 477, 486, 487, 488, 489, 490, 491, 492, 495, 496, 499, 500, 501, 502, 503, 504, 505, 506, 507, 513, 514, 493, 497, 494, 498, 508, 515, 511, 516, 509, 512, 510, 517, 518, 521, 522, 499, 500, 501, 502, 503, 504, 505, 506, 507, 513, 514, 519, 523, 524, 520, 508, 515, 511, 516, 509, 512, 510, 517, 518, 521, 522, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 519, 523, 524, 520, 536, 537, 538, 539, 540, 541, 542, 543, 1310, 547, 548, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 549, 1310, 550, 551, 536, 537, 538, 539, 540, 541, 542, 543, 544, 547, 548, 552, 553, 554, 555, 545, 556, 557, 558, 559, 561, 562, 549, 546, 550, 551, 563, 564, 560, 565, 566, 567, 568, 569, 544, 570, 573, 552, 553, 554, 555, 545, 556, 557, 558, 559, 561, 562, 574, 546, 575, 577, 563, 564, 560, 565, 566, 567, 568, 569, 571, 570, 573, 578, 579, 580, 572, 581, 582, 583, 584, 585, 586, 587, 574, 588, 575, 577, 589, 590, 591, 592, 593, 594, 596, 595, 571, 597, 598, 578, 579, 580, 572, 581, 582, 583, 584, 585, 586, 587, 599, 588, 600, 601, 589, 590, 591, 592, 593, 594, 596, 595, 602, 597, 598, 603, 604, 608, 605, 609, 610, 611, 612, 613, 614, 616, 599, 606, 600, 601, 617, 618, 619, 620, 615, 621, 622, 623, 602, 607, 624, 603, 604, 608, 605, 609, 610, 611, 612, 613, 614, 616, 625, 606, 626, 628, 617, 618, 619, 620, 615, 621, 622, 623, 632, 607, 624, 629, 633, 634, 627, 635, 636, 630, 637, 638, 631, 639, 625, 640, 626, 628, 642, 643, 644, 645, 648, 651, 1310, 641, 632, 1310, 652, 629, 633, 634, 627, 635, 636, 630, 637, 638, 631, 639, 653, 640, 646, 654, 642, 643, 644, 645, 648, 651, 649, 641, 650, 647, 652, 655, 656, 657, 659, 658, 660, 661, 662, 663, 664, 665, 653, 666, 646, 654, 667, 668, 669, 670, 671, 672, 649, 673, 650, 647, 674, 655, 656, 657, 659, 658, 660, 661, 662, 663, 664, 665, 675, 666, 676, 677, 667, 668, 669, 670, 671, 672, 678, 673, 679, 680, 674, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 675, 692, 676, 677, 693, 694, 695, 696, 1310, 1310, 678, 1310, 679, 680, 1310, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 1310, 692, 1310, 1310, 693, 694, 695, 696, 43, 43, 43, 43, 43, 697, 43, 43, 43, 43, 43, 43, 43, 43, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 43, 43, 724, 725, 727, 728, 729, 730, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 1310, 1310, 1310, 1310, 724, 725, 727, 728, 729, 730, 731, 732, 732, 732, 732, 732, 732, 732, 732, 733, 734, 734, 734, 734, 734, 734, 734, 734, 735, 736, 736, 736, 736, 736, 736, 736, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 753, 754, 755, 756, 757, 758, 759, 760, 1310, 763, 764, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 753, 754, 755, 756, 757, 758, 759, 760, 761, 763, 764, 765, 766, 767, 768, 769, 762, 771, 772, 773, 774, 776, 777, 775, 1310, 783, 781, 1310, 770, 782, 784, 785, 786, 787, 761, 788, 778, 765, 766, 767, 768, 769, 762, 771, 772, 773, 774, 776, 777, 775, 779, 783, 781, 780, 770, 782, 784, 785, 786, 787, 789, 788, 778, 790, 791, 793, 794, 795, 796, 797, 792, 798, 799, 800, 801, 802, 779, 803, 804, 780, 805, 806, 807, 808, 809, 810, 789, 811, 812, 790, 791, 793, 794, 795, 796, 797, 792, 798, 799, 800, 801, 802, 813, 803, 804, 814, 805, 806, 807, 808, 809, 810, 815, 811, 812, 816, 817, 818, 819, 820, 821, 822, 823, 824, 826, 827, 828, 829, 813, 830, 832, 814, 833, 825, 834, 835, 836, 837, 815, 838, 839, 816, 817, 818, 819, 820, 821, 822, 823, 824, 826, 827, 828, 829, 840, 830, 832, 841, 833, 825, 834, 835, 836, 837, 842, 838, 839, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 840, 856, 857, 841, 858, 859, 860, 861, 862, 863, 842, 864, 865, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 868, 856, 857, 869, 858, 859, 860, 861, 862, 863, 870, 864, 865, 871, 872, 873, 874, 875, 876, 877, 880, 1310, 881, 882, 883, 884, 868, 878, 885, 869, 886, 887, 888, 889, 890, 891, 870, 892, 893, 871, 872, 873, 874, 875, 876, 877, 880, 879, 881, 882, 883, 884, 894, 878, 885, 895, 886, 887, 888, 889, 890, 891, 896, 892, 893, 897, 898, 899, 900, 901, 902, 903, 904, 879, 905, 906, 907, 908, 894, 909, 910, 895, 911, 913, 912, 914, 915, 916, 896, 917, 919, 897, 898, 899, 900, 901, 902, 903, 904, 920, 905, 906, 907, 908, 921, 909, 910, 918, 911, 913, 912, 914, 915, 916, 922, 917, 919, 923, 924, 925, 926, 927, 928, 929, 932, 920, 934, 930, 1310, 1310, 921, 1310, 1310, 918, 1310, 1310, 1310, 1310, 1310, 1310, 922, 1310, 1310, 923, 924, 925, 926, 927, 928, 929, 932, 1310, 934, 930, 935, 935, 935, 935, 935, 935, 935, 935, 936, 732, 732, 732, 732, 732, 732, 732, 732, 937, 937, 937, 937, 937, 937, 937, 937, 938, 734, 734, 734, 734, 734, 734, 734, 734, 940, 940, 940, 940, 940, 940, 940, 940, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 939, 935, 935, 935, 935, 935, 935, 935, 935, 1310, 954, 955, 956, 957, 958, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 939, 941, 736, 736, 736, 736, 736, 736, 736, 736, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 1310, 972, 973, 974, 942, 975, 1310, 976, 977, 978, 979, 980, 981, 982, 983, 969, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 970, 972, 973, 974, 942, 975, 971, 976, 977, 978, 979, 980, 981, 982, 983, 969, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 970, 994, 995, 996, 997, 998, 971, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 1008, 994, 995, 996, 997, 998, 1009, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1008, 1020, 1021, 1022, 1023, 1024, 1009, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1034, 1020, 1021, 1022, 1023, 1024, 1035, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1034, 1046, 1047, 1048, 1049, 1050, 1035, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1060, 1046, 1047, 1048, 1049, 1050, 1061, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1060, 1072, 1073, 1074, 1075, 1076, 1061, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1086, 1072, 1073, 1074, 1075, 1076, 1087, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1088, 1089, 1090, 1091, 1092, 1310, 1310, 1310, 1310, 1310, 1086, 1310, 1310, 1310, 1310, 1310, 1087, 935, 935, 935, 935, 935, 935, 935, 935, 1310, 1088, 1089, 1090, 1091, 1092, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 940, 940, 940, 940, 940, 940, 940, 940, 1310, 1310, 1095, 1093, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 939, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1094, 940, 940, 940, 940, 940, 940, 940, 940, 1095, 1093, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 939, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1094, 1110, 942, 1111, 1112, 1114, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1115, 1113, 1127, 1128, 1129, 1130, 1116, 1131, 1132, 1133, 1134, 1110, 942, 1111, 1112, 1114, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1115, 1113, 1127, 1128, 1129, 1130, 1116, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1200, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1200, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 45, 45, 48, 48, 200, 200, 44, 44, 47, 47, 199, 199, 3, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310 } ; static yyconst flex_int16_t yy_chk[3098] = { 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, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 1311, 8, 9, 9, 9, 108, 108, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 14, 18, 12, 12, 22, 18, 12, 25, 22, 18, 31, 35, 22, 35, 39, 54, 35, 61, 22, 18, 14, 62, 12, 622, 622, 13, 14, 18, 12, 12, 22, 18, 12, 25, 22, 18, 31, 35, 22, 35, 39, 54, 35, 61, 22, 18, 14, 62, 12, 15, 36, 64, 726, 21, 36, 38, 15, 21, 36, 15, 15, 15, 66, 15, 21, 15, 15, 38, 15, 15, 21, 15, 724, 15, 576, 15, 36, 64, 21, 21, 36, 38, 15, 21, 36, 15, 15, 15, 66, 15, 21, 15, 15, 38, 15, 15, 21, 15, 67, 15, 16, 28, 483, 26, 21, 28, 69, 26, 16, 16, 69, 26, 16, 67, 16, 28, 16, 26, 28, 16, 70, 28, 16, 16, 67, 71, 452, 28, 16, 26, 16, 28, 69, 26, 16, 16, 69, 26, 16, 67, 16, 28, 16, 26, 28, 16, 70, 28, 16, 16, 37, 71, 37, 72, 16, 37, 16, 17, 37, 63, 65, 17, 63, 75, 17, 17, 65, 76, 17, 17, 63, 17, 17, 65, 17, 329, 37, 17, 37, 72, 235, 37, 199, 17, 37, 63, 65, 17, 63, 75, 17, 17, 65, 76, 17, 17, 63, 17, 17, 65, 17, 79, 27, 17, 19, 19, 27, 74, 29, 81, 27, 79, 29, 19, 27, 19, 27, 19, 19, 19, 29, 82, 29, 74, 29, 19, 128, 79, 27, 97, 19, 19, 27, 74, 29, 81, 27, 79, 29, 19, 27, 19, 27, 19, 19, 19, 29, 82, 29, 74, 29, 19, 20, 41, 41, 41, 73, 32, 47, 68, 20, 32, 20, 32, 86, 85, 20, 85, 44, 20, 68, 32, 20, 42, 48, 48, 48, 32, 20, 48, 45, 45, 45, 32, 45, 68, 20, 32, 20, 32, 86, 85, 20, 85, 40, 20, 68, 32, 20, 23, 23, 80, 40, 32, 40, 23, 78, 80, 40, 23, 23, 88, 87, 78, 23, 88, 23, 24, 5, 78, 40, 3, 89, 41, 0, 23, 23, 80, 40, 87, 40, 23, 78, 80, 40, 23, 23, 88, 87, 78, 23, 88, 23, 30, 84, 78, 84, 30, 89, 91, 30, 30, 84, 98, 30, 87, 99, 30, 103, 0, 30, 0, 96, 30, 0, 0, 0, 101, 0, 30, 84, 0, 84, 30, 96, 91, 30, 30, 84, 98, 30, 92, 99, 30, 103, 101, 30, 93, 96, 30, 33, 92, 33, 101, 33, 104, 105, 33, 33, 110, 96, 33, 33, 93, 33, 93, 33, 92, 33, 33, 33, 101, 0, 93, 33, 0, 33, 92, 33, 0, 33, 104, 105, 33, 33, 110, 100, 33, 33, 93, 33, 93, 33, 100, 33, 33, 33, 106, 102, 0, 33, 34, 94, 94, 94, 34, 106, 113, 34, 107, 109, 109, 100, 114, 109, 34, 102, 107, 34, 100, 111, 107, 111, 106, 102, 34, 0, 34, 94, 94, 94, 34, 106, 113, 34, 107, 109, 109, 0, 114, 109, 34, 102, 107, 34, 0, 111, 107, 111, 0, 0, 34, 50, 50, 50, 50, 50, 50, 50, 50, 51, 51, 51, 51, 51, 51, 51, 51, 51, 55, 55, 55, 55, 55, 55, 55, 55, 56, 56, 56, 56, 56, 56, 56, 56, 117, 120, 51, 121, 123, 117, 124, 57, 51, 57, 57, 57, 57, 57, 57, 57, 57, 58, 58, 58, 58, 58, 58, 58, 58, 0, 117, 120, 51, 121, 123, 117, 124, 0, 51, 52, 52, 52, 52, 52, 52, 52, 52, 119, 126, 127, 119, 52, 52, 60, 60, 60, 60, 60, 60, 60, 60, 112, 119, 115, 118, 0, 0, 129, 130, 137, 112, 115, 118, 119, 126, 127, 119, 52, 52, 53, 53, 53, 53, 53, 53, 53, 53, 112, 119, 115, 118, 53, 53, 129, 130, 137, 112, 115, 118, 0, 0, 131, 0, 0, 0, 0, 0, 0, 125, 131, 133, 125, 133, 0, 135, 135, 133, 53, 53, 59, 59, 59, 59, 59, 59, 59, 59, 131, 59, 59, 59, 59, 59, 59, 125, 131, 133, 125, 133, 132, 135, 135, 133, 0, 141, 136, 132, 136, 140, 140, 142, 132, 132, 141, 59, 59, 59, 59, 59, 59, 90, 90, 90, 90, 90, 132, 0, 138, 143, 90, 141, 136, 132, 136, 140, 140, 142, 132, 132, 141, 0, 144, 138, 138, 0, 138, 90, 90, 90, 90, 90, 139, 139, 138, 143, 90, 95, 145, 139, 146, 95, 95, 139, 147, 148, 150, 95, 144, 138, 138, 95, 138, 152, 153, 95, 0, 149, 139, 139, 0, 149, 149, 95, 145, 139, 146, 95, 95, 139, 147, 148, 150, 95, 151, 154, 0, 95, 154, 152, 153, 95, 134, 149, 151, 154, 134, 149, 149, 154, 156, 157, 155, 158, 160, 134, 155, 134, 134, 134, 151, 154, 155, 158, 154, 162, 0, 0, 134, 0, 151, 154, 134, 168, 0, 154, 156, 157, 155, 158, 160, 134, 155, 134, 134, 134, 159, 161, 155, 158, 172, 162, 161, 164, 163, 159, 163, 166, 159, 168, 169, 164, 169, 163, 0, 166, 0, 164, 0, 166, 164, 166, 159, 161, 170, 0, 172, 0, 161, 164, 163, 159, 163, 166, 159, 165, 169, 164, 169, 163, 165, 166, 170, 164, 167, 166, 164, 166, 165, 173, 170, 167, 165, 171, 174, 175, 171, 176, 177, 0, 181, 165, 176, 167, 178, 180, 165, 179, 170, 177, 167, 183, 184, 178, 165, 173, 179, 167, 165, 171, 174, 175, 171, 176, 177, 180, 181, 187, 176, 167, 178, 180, 182, 179, 188, 177, 182, 183, 184, 178, 182, 186, 179, 185, 189, 190, 192, 182, 194, 185, 195, 180, 196, 187, 191, 197, 186, 198, 182, 0, 188, 0, 182, 0, 191, 0, 182, 186, 0, 185, 189, 190, 192, 182, 194, 185, 195, 0, 196, 0, 191, 197, 186, 198, 200, 200, 200, 205, 205, 208, 191, 208, 208, 208, 208, 208, 208, 208, 208, 216, 218, 205, 210, 210, 210, 210, 210, 210, 210, 210, 210, 0, 0, 205, 205, 0, 211, 211, 211, 211, 211, 211, 211, 211, 219, 216, 218, 205, 212, 212, 212, 212, 212, 212, 212, 212, 0, 211, 213, 213, 213, 213, 213, 213, 213, 213, 0, 0, 0, 0, 219, 221, 222, 223, 200, 204, 204, 204, 204, 204, 204, 204, 204, 211, 0, 224, 225, 204, 204, 214, 214, 214, 214, 214, 214, 214, 214, 221, 222, 223, 226, 204, 227, 228, 230, 232, 226, 233, 234, 236, 214, 224, 225, 204, 204, 237, 227, 238, 239, 240, 242, 243, 244, 245, 247, 248, 226, 204, 227, 228, 230, 232, 226, 233, 234, 236, 214, 246, 249, 246, 250, 237, 227, 238, 239, 240, 242, 243, 244, 245, 247, 248, 251, 252, 253, 254, 255, 256, 257, 258, 259, 262, 263, 246, 249, 246, 250, 260, 264, 261, 265, 260, 261, 260, 266, 267, 269, 270, 251, 252, 253, 254, 255, 256, 257, 258, 259, 262, 263, 268, 272, 273, 268, 260, 264, 261, 265, 260, 261, 260, 266, 267, 269, 270, 274, 275, 276, 277, 278, 279, 280, 281, 284, 285, 286, 268, 272, 273, 268, 287, 289, 290, 291, 292, 293, 295, 296, 0, 298, 299, 274, 275, 276, 277, 278, 279, 280, 281, 284, 285, 286, 302, 0, 303, 304, 287, 289, 290, 291, 292, 293, 295, 296, 297, 298, 299, 305, 305, 306, 307, 297, 308, 309, 311, 312, 313, 314, 302, 297, 303, 304, 316, 317, 312, 318, 319, 320, 321, 322, 297, 324, 326, 305, 305, 306, 307, 297, 308, 309, 311, 312, 313, 314, 327, 297, 328, 330, 316, 317, 312, 318, 319, 320, 321, 322, 325, 324, 326, 331, 332, 333, 325, 334, 335, 336, 337, 338, 339, 341, 327, 342, 328, 330, 344, 345, 346, 347, 348, 349, 351, 349, 325, 352, 353, 331, 332, 333, 325, 334, 335, 336, 337, 338, 339, 341, 354, 342, 355, 356, 344, 345, 346, 347, 348, 349, 351, 349, 358, 352, 353, 359, 361, 364, 362, 365, 366, 368, 369, 370, 371, 372, 354, 362, 355, 356, 373, 374, 375, 376, 371, 377, 378, 379, 358, 362, 380, 359, 361, 364, 362, 365, 366, 368, 369, 370, 371, 372, 381, 362, 383, 384, 373, 374, 375, 376, 371, 377, 378, 379, 386, 362, 380, 385, 387, 388, 383, 389, 390, 385, 391, 392, 385, 392, 381, 392, 383, 384, 394, 395, 396, 397, 399, 401, 0, 392, 386, 0, 402, 385, 387, 388, 383, 389, 390, 385, 391, 392, 385, 392, 403, 392, 398, 404, 394, 395, 396, 397, 399, 401, 400, 392, 400, 398, 402, 405, 407, 408, 409, 408, 410, 411, 412, 413, 414, 415, 403, 416, 398, 404, 417, 418, 419, 420, 421, 422, 400, 423, 400, 398, 425, 405, 407, 408, 409, 408, 410, 411, 412, 413, 414, 415, 426, 416, 428, 429, 417, 418, 419, 420, 421, 422, 430, 423, 431, 432, 425, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 426, 445, 428, 429, 446, 446, 447, 448, 0, 0, 430, 0, 431, 432, 0, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 0, 445, 0, 0, 446, 446, 447, 448, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 450, 451, 455, 456, 457, 458, 461, 461, 461, 461, 461, 461, 461, 461, 462, 462, 462, 462, 462, 462, 462, 462, 0, 0, 0, 0, 450, 451, 455, 456, 457, 458, 463, 463, 463, 463, 463, 463, 463, 463, 463, 464, 464, 464, 464, 464, 464, 464, 464, 464, 465, 465, 465, 465, 465, 465, 465, 465, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 482, 484, 487, 488, 489, 490, 491, 492, 493, 0, 495, 496, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 480, 482, 484, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 494, 502, 504, 505, 508, 510, 511, 508, 0, 514, 513, 0, 501, 513, 516, 517, 518, 520, 494, 522, 512, 497, 498, 499, 500, 501, 494, 502, 504, 505, 508, 510, 511, 508, 512, 514, 513, 512, 501, 513, 516, 517, 518, 520, 523, 522, 512, 524, 525, 526, 527, 528, 529, 530, 525, 531, 532, 533, 535, 536, 512, 538, 539, 512, 540, 541, 542, 543, 546, 547, 523, 548, 550, 524, 525, 526, 527, 528, 529, 530, 525, 531, 532, 533, 535, 536, 551, 538, 539, 553, 540, 541, 542, 543, 546, 547, 555, 548, 550, 556, 557, 558, 559, 562, 563, 564, 566, 567, 568, 570, 571, 574, 551, 575, 577, 553, 578, 567, 579, 580, 581, 582, 555, 584, 586, 556, 557, 558, 559, 562, 563, 564, 566, 567, 568, 570, 571, 574, 587, 575, 577, 588, 578, 567, 579, 580, 581, 582, 589, 584, 586, 591, 592, 593, 594, 595, 596, 598, 599, 602, 603, 606, 607, 609, 587, 610, 612, 588, 613, 614, 615, 616, 617, 619, 589, 620, 621, 591, 592, 593, 594, 595, 596, 598, 599, 602, 603, 606, 607, 609, 623, 610, 612, 624, 613, 614, 615, 616, 617, 619, 625, 620, 621, 626, 627, 628, 629, 630, 632, 633, 635, 0, 636, 637, 638, 639, 623, 634, 640, 624, 641, 643, 644, 645, 646, 647, 625, 649, 651, 626, 627, 628, 629, 630, 632, 633, 635, 634, 636, 637, 638, 639, 652, 634, 640, 653, 641, 643, 644, 645, 646, 647, 654, 649, 651, 655, 656, 657, 658, 659, 660, 662, 665, 634, 666, 667, 668, 669, 652, 671, 672, 653, 673, 674, 673, 675, 676, 678, 654, 679, 680, 655, 656, 657, 658, 659, 660, 662, 665, 681, 666, 667, 668, 669, 682, 671, 672, 679, 673, 674, 673, 675, 676, 678, 686, 679, 680, 687, 688, 689, 691, 692, 693, 694, 725, 681, 730, 694, 0, 0, 682, 0, 0, 679, 0, 0, 0, 0, 0, 0, 686, 0, 0, 687, 688, 689, 691, 692, 693, 694, 725, 0, 730, 694, 731, 731, 731, 731, 731, 731, 731, 731, 732, 732, 732, 732, 732, 732, 732, 732, 732, 733, 733, 733, 733, 733, 733, 733, 733, 734, 734, 734, 734, 734, 734, 734, 734, 734, 735, 735, 735, 735, 735, 735, 735, 735, 739, 740, 741, 743, 744, 745, 746, 750, 751, 753, 755, 734, 935, 935, 935, 935, 935, 935, 935, 935, 0, 756, 759, 760, 761, 762, 739, 740, 741, 743, 744, 745, 746, 750, 751, 753, 755, 734, 736, 736, 736, 736, 736, 736, 736, 736, 736, 756, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 0, 775, 776, 777, 736, 778, 0, 779, 780, 781, 782, 783, 785, 786, 787, 774, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 774, 775, 776, 777, 736, 778, 774, 779, 780, 781, 782, 783, 785, 786, 787, 774, 788, 789, 790, 791, 792, 794, 795, 796, 798, 799, 774, 800, 801, 802, 802, 803, 774, 804, 805, 807, 809, 812, 813, 815, 816, 817, 788, 789, 790, 791, 792, 794, 795, 796, 798, 799, 818, 800, 801, 802, 802, 803, 819, 804, 805, 807, 809, 812, 813, 815, 816, 817, 820, 821, 822, 823, 824, 825, 826, 828, 829, 830, 818, 832, 834, 836, 837, 838, 819, 840, 841, 842, 844, 845, 846, 848, 849, 850, 820, 821, 822, 823, 824, 825, 826, 828, 829, 830, 851, 832, 834, 836, 837, 838, 853, 840, 841, 842, 844, 845, 846, 848, 849, 850, 854, 855, 856, 857, 858, 860, 861, 864, 866, 867, 851, 868, 869, 870, 871, 872, 853, 874, 875, 876, 878, 879, 881, 882, 883, 884, 854, 855, 856, 857, 858, 860, 861, 864, 866, 867, 886, 868, 869, 870, 871, 872, 887, 874, 875, 876, 878, 879, 881, 882, 883, 884, 889, 890, 891, 893, 895, 896, 897, 898, 900, 906, 886, 907, 908, 909, 910, 912, 887, 913, 915, 917, 918, 919, 920, 921, 922, 923, 889, 890, 891, 893, 895, 896, 897, 898, 900, 906, 924, 907, 908, 909, 910, 912, 925, 913, 915, 917, 918, 919, 920, 921, 922, 923, 927, 928, 929, 930, 934, 0, 0, 0, 0, 0, 924, 0, 0, 0, 0, 0, 925, 936, 936, 936, 936, 936, 936, 936, 936, 0, 927, 928, 929, 930, 934, 937, 937, 937, 937, 937, 937, 937, 937, 938, 938, 938, 938, 938, 938, 938, 938, 940, 940, 940, 940, 940, 940, 940, 940, 0, 0, 943, 937, 944, 945, 946, 950, 951, 952, 953, 938, 956, 958, 961, 963, 964, 966, 967, 940, 941, 941, 941, 941, 941, 941, 941, 941, 943, 937, 944, 945, 946, 950, 951, 952, 953, 938, 956, 958, 961, 963, 964, 966, 967, 940, 969, 941, 970, 971, 972, 974, 975, 976, 977, 978, 979, 980, 983, 986, 987, 972, 971, 988, 989, 990, 992, 972, 993, 994, 995, 996, 969, 941, 970, 971, 972, 974, 975, 976, 977, 978, 979, 980, 983, 986, 987, 972, 971, 988, 989, 990, 992, 972, 993, 994, 995, 996, 997, 999, 1000, 1003, 1005, 1006, 1007, 1009, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1022, 1024, 1026, 1028, 1031, 1036, 1043, 1046, 1047, 1048, 997, 999, 1000, 1003, 1005, 1006, 1007, 1009, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1022, 1024, 1026, 1028, 1031, 1036, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1057, 1058, 1060, 1063, 1065, 1067, 1069, 1072, 1074, 1075, 1078, 1079, 1080, 1083, 1084, 1086, 1089, 1091, 1096, 1097, 1101, 1049, 1050, 1051, 1052, 1053, 1057, 1058, 1060, 1063, 1065, 1067, 1069, 1072, 1074, 1075, 1078, 1079, 1080, 1083, 1084, 1086, 1089, 1091, 1096, 1097, 1101, 1102, 1103, 1104, 1105, 1107, 1108, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1119, 1120, 1122, 1123, 1124, 1125, 1130, 1132, 1133, 1134, 1135, 1137, 1116, 1102, 1103, 1104, 1105, 1107, 1108, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1119, 1120, 1122, 1123, 1124, 1125, 1130, 1132, 1133, 1134, 1135, 1137, 1116, 1138, 1139, 1140, 1141, 1142, 1143, 1145, 1146, 1149, 1152, 1153, 1155, 1157, 1160, 1161, 1162, 1163, 1164, 1165, 1167, 1168, 1169, 1170, 1172, 1173, 1176, 1138, 1139, 1140, 1141, 1142, 1143, 1145, 1146, 1149, 1152, 1153, 1155, 1157, 1160, 1161, 1162, 1163, 1164, 1165, 1167, 1168, 1169, 1170, 1172, 1173, 1176, 1178, 1179, 1180, 1181, 1183, 1184, 1186, 1187, 1188, 1189, 1191, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1204, 1205, 1209, 1210, 1212, 1213, 1219, 1220, 1178, 1179, 1180, 1181, 1183, 1184, 1186, 1187, 1188, 1189, 1191, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1204, 1205, 1209, 1210, 1212, 1213, 1219, 1220, 1221, 1222, 1223, 1226, 1227, 1229, 1231, 1233, 1235, 1236, 1239, 1240, 1241, 1245, 1247, 1250, 1251, 1254, 1255, 1257, 1260, 1261, 1264, 1266, 1268, 1270, 1221, 1222, 1223, 1226, 1227, 1229, 1231, 1233, 1235, 1236, 1239, 1240, 1241, 1245, 1247, 1250, 1251, 1254, 1255, 1257, 1260, 1261, 1264, 1266, 1268, 1270, 1271, 1272, 1273, 1274, 1276, 1277, 1282, 1283, 1284, 1285, 1288, 1291, 1294, 1295, 1300, 1301, 1304, 1305, 1308, 0, 0, 0, 0, 0, 0, 0, 1271, 1272, 1273, 1274, 1276, 1277, 1282, 1283, 1284, 1285, 1288, 1291, 1294, 1295, 1300, 1301, 1304, 1305, 1308, 1312, 1312, 1313, 1313, 1314, 1314, 1315, 1315, 1316, 1316, 1317, 1317, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310 } ; /* 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 #line 1 "frame/lex.L" /* Copyright (C) 1999-2018 * Smithsonian Astrophysical Observatory, Cambridge, MA, USA * For conditions of distribution and use, see copyright notice in "copyright" */ #line 12 "frame/lex.L" #include #include #include #include #include "util.h" #include "parser.H" extern YYSTYPE* frlval; /* rules */ #line 1540 "frame/lex.C" #define INITIAL 0 #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 #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO #define ECHO LexerOutput( yytext, yyleng ) #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 ( (result = LexerInput( (char *) buf, max_size )) < 0 ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #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) LexerError( msg ) #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 #define YY_DECL int yyFlexLexer::yylex() #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 break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 28 "frame/lex.L" #line 1643 "frame/lex.C" if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = & std::cin; if ( ! yyout ) yyout = & std::cout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer( yyin, YY_BUF_SIZE ); } yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (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 = (yy_start); yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (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 >= 1311 ) 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_current_state != 1310 ); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_find_action: 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 = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 30 "frame/lex.L" {return ABOUT_;} YY_BREAK case 2: YY_RULE_SETUP #line 31 "frame/lex.L" {return AIP_;} YY_BREAK case 3: YY_RULE_SETUP #line 32 "frame/lex.L" {return ALLOC_;} YY_BREAK case 4: YY_RULE_SETUP #line 33 "frame/lex.L" {return ALLOCGZ_;} YY_BREAK case 5: YY_RULE_SETUP #line 34 "frame/lex.L" {return ALIGN_;} YY_BREAK case 6: YY_RULE_SETUP #line 35 "frame/lex.L" {return ALL_;} YY_BREAK case 7: YY_RULE_SETUP #line 36 "frame/lex.L" {return ALT_;} YY_BREAK case 8: YY_RULE_SETUP #line 37 "frame/lex.L" {return AMPLIFIER_;} YY_BREAK case 9: YY_RULE_SETUP #line 38 "frame/lex.L" {return ANALYSIS_;} YY_BREAK case 10: YY_RULE_SETUP #line 39 "frame/lex.L" {return ANGLE_;} YY_BREAK case 11: YY_RULE_SETUP #line 40 "frame/lex.L" {return ANNULUS_;} YY_BREAK case 12: YY_RULE_SETUP #line 41 "frame/lex.L" {return APPEND_;} YY_BREAK case 13: YY_RULE_SETUP #line 42 "frame/lex.L" {return ARCMIN_;} YY_BREAK case 14: YY_RULE_SETUP #line 43 "frame/lex.L" {return ARCSEC_;} YY_BREAK case 15: YY_RULE_SETUP #line 44 "frame/lex.L" {return ARRAY_;} YY_BREAK case 16: YY_RULE_SETUP #line 45 "frame/lex.L" {return ARROW_;} YY_BREAK case 17: YY_RULE_SETUP #line 46 "frame/lex.L" {return ASINH_;} YY_BREAK case 18: YY_RULE_SETUP #line 47 "frame/lex.L" {return AST_;} YY_BREAK case 19: YY_RULE_SETUP #line 48 "frame/lex.L" {return AUTO_;} YY_BREAK case 20: YY_RULE_SETUP #line 49 "frame/lex.L" {return AUX_;} YY_BREAK case 21: YY_RULE_SETUP #line 50 "frame/lex.L" {return AVERAGE_;} YY_BREAK case 22: YY_RULE_SETUP #line 51 "frame/lex.L" {return AXES_;} YY_BREAK case 23: YY_RULE_SETUP #line 52 "frame/lex.L" {return AZIMUTH_;} YY_BREAK case 24: YY_RULE_SETUP #line 53 "frame/lex.L" {return B1950_;} YY_BREAK case 25: YY_RULE_SETUP #line 54 "frame/lex.L" {return BACK_;} YY_BREAK case 26: YY_RULE_SETUP #line 55 "frame/lex.L" {return BACKGROUND_;} YY_BREAK case 27: YY_RULE_SETUP #line 56 "frame/lex.L" {return BASE_;} YY_BREAK case 28: YY_RULE_SETUP #line 57 "frame/lex.L" {return BBOX_;} YY_BREAK case 29: YY_RULE_SETUP #line 58 "frame/lex.L" {return BEGIN_;} YY_BREAK case 30: YY_RULE_SETUP #line 59 "frame/lex.L" {return BG_;} YY_BREAK case 31: YY_RULE_SETUP #line 60 "frame/lex.L" {return BIGENDIAN_;} YY_BREAK case 32: YY_RULE_SETUP #line 61 "frame/lex.L" {return BIGENDIAN_;} YY_BREAK case 33: YY_RULE_SETUP #line 62 "frame/lex.L" {return BIN_;} YY_BREAK case 34: YY_RULE_SETUP #line 63 "frame/lex.L" {return BITPIX_;} YY_BREAK case 35: YY_RULE_SETUP #line 64 "frame/lex.L" {return BLEND_;} YY_BREAK case 36: YY_RULE_SETUP #line 65 "frame/lex.L" {return BLOCK_;} YY_BREAK case 37: YY_RULE_SETUP #line 66 "frame/lex.L" {return BORDER_;} YY_BREAK case 38: YY_RULE_SETUP #line 67 "frame/lex.L" {return BOX_;} YY_BREAK case 39: YY_RULE_SETUP #line 68 "frame/lex.L" {return BOXANNULUS_;} YY_BREAK case 40: YY_RULE_SETUP #line 69 "frame/lex.L" {return BOXCAR_;} YY_BREAK case 41: YY_RULE_SETUP #line 70 "frame/lex.L" {return BOXCIRCLE_;} YY_BREAK case 42: YY_RULE_SETUP #line 71 "frame/lex.L" {return BPANDA_;} YY_BREAK case 43: YY_RULE_SETUP #line 72 "frame/lex.L" {return BUFFER_;} YY_BREAK case 44: YY_RULE_SETUP #line 73 "frame/lex.L" {return BW_;} YY_BREAK case 45: YY_RULE_SETUP #line 74 "frame/lex.L" {return CALLBACK_;} YY_BREAK case 46: YY_RULE_SETUP #line 75 "frame/lex.L" {return CANVAS_;} YY_BREAK case 47: YY_RULE_SETUP #line 76 "frame/lex.L" {return CATALOG_;} YY_BREAK case 48: YY_RULE_SETUP #line 77 "frame/lex.L" {return CELESTIAL_;} YY_BREAK case 49: YY_RULE_SETUP #line 78 "frame/lex.L" {return CENTER_;} YY_BREAK case 50: YY_RULE_SETUP #line 79 "frame/lex.L" {return CENTROID_;} YY_BREAK case 51: YY_RULE_SETUP #line 80 "frame/lex.L" {return CHANNEL_;} YY_BREAK case 52: YY_RULE_SETUP #line 81 "frame/lex.L" {return CIAO_;} YY_BREAK case 53: YY_RULE_SETUP #line 82 "frame/lex.L" {return CIRCLE_;} YY_BREAK case 54: YY_RULE_SETUP #line 83 "frame/lex.L" {return CLEAR_;} YY_BREAK case 55: YY_RULE_SETUP #line 84 "frame/lex.L" {return CLIP_;} YY_BREAK case 56: YY_RULE_SETUP #line 85 "frame/lex.L" {return COLOR_;} YY_BREAK case 57: YY_RULE_SETUP #line 86 "frame/lex.L" {return COLOR_;} YY_BREAK case 58: YY_RULE_SETUP #line 87 "frame/lex.L" {return COLORBAR_;} YY_BREAK case 59: YY_RULE_SETUP #line 88 "frame/lex.L" {return COLORBAR_;} YY_BREAK case 60: YY_RULE_SETUP #line 89 "frame/lex.L" {return COLORMAP_;} YY_BREAK case 61: YY_RULE_SETUP #line 90 "frame/lex.L" {return COLORMAP_;} YY_BREAK case 62: YY_RULE_SETUP #line 91 "frame/lex.L" {return COLORSCALE_;} YY_BREAK case 63: YY_RULE_SETUP #line 92 "frame/lex.L" {return COLORSCALE_;} YY_BREAK case 64: YY_RULE_SETUP #line 93 "frame/lex.L" {return COLORSPACE_;} YY_BREAK case 65: YY_RULE_SETUP #line 94 "frame/lex.L" {return COLORSPACE_;} YY_BREAK case 66: YY_RULE_SETUP #line 95 "frame/lex.L" {return COLS_;} YY_BREAK case 67: YY_RULE_SETUP #line 96 "frame/lex.L" {return COLUMN_;} YY_BREAK case 68: YY_RULE_SETUP #line 97 "frame/lex.L" {return COMMAND_;} YY_BREAK case 69: YY_RULE_SETUP #line 98 "frame/lex.L" {return COMPASS_;} YY_BREAK case 70: YY_RULE_SETUP #line 99 "frame/lex.L" {return COMPOSITE_;} YY_BREAK case 71: YY_RULE_SETUP #line 100 "frame/lex.L" {return COMPRESS_;} YY_BREAK case 72: YY_RULE_SETUP #line 101 "frame/lex.L" {return CONTOUR_;} YY_BREAK case 73: YY_RULE_SETUP #line 102 "frame/lex.L" {return CONTRAST_;} YY_BREAK case 74: YY_RULE_SETUP #line 103 "frame/lex.L" {return COORDINATES_;} YY_BREAK case 75: YY_RULE_SETUP #line 104 "frame/lex.L" {return COPY_;} YY_BREAK case 76: YY_RULE_SETUP #line 105 "frame/lex.L" {return COUNT_;} YY_BREAK case 77: YY_RULE_SETUP #line 106 "frame/lex.L" {return CROP_;} YY_BREAK case 78: YY_RULE_SETUP #line 107 "frame/lex.L" {return CROSS_;} YY_BREAK case 79: YY_RULE_SETUP #line 108 "frame/lex.L" {return CPANDA_;} YY_BREAK case 80: YY_RULE_SETUP #line 109 "frame/lex.L" {return CREATE_;} YY_BREAK case 81: YY_RULE_SETUP #line 110 "frame/lex.L" {return CROSSHAIR_;} YY_BREAK case 82: YY_RULE_SETUP #line 111 "frame/lex.L" {return CUBE_;} YY_BREAK case 83: YY_RULE_SETUP #line 112 "frame/lex.L" {return CURSOR_;} YY_BREAK case 84: YY_RULE_SETUP #line 113 "frame/lex.L" {return CUT_;} YY_BREAK case 85: YY_RULE_SETUP #line 114 "frame/lex.L" {return CMYK_;} YY_BREAK case 86: YY_RULE_SETUP #line 115 "frame/lex.L" {return DARKEN_;} YY_BREAK case 87: YY_RULE_SETUP #line 116 "frame/lex.L" {return DASH_;} YY_BREAK case 88: YY_RULE_SETUP #line 117 "frame/lex.L" {return DASHLIST_;} YY_BREAK case 89: YY_RULE_SETUP #line 118 "frame/lex.L" {return DATA_;} YY_BREAK case 90: YY_RULE_SETUP #line 119 "frame/lex.L" {return DATAMIN_;} YY_BREAK case 91: YY_RULE_SETUP #line 120 "frame/lex.L" {return DATASEC_;} YY_BREAK case 92: YY_RULE_SETUP #line 121 "frame/lex.L" {return DEBUG_;} YY_BREAK case 93: YY_RULE_SETUP #line 122 "frame/lex.L" {return DEGREES_;} YY_BREAK case 94: YY_RULE_SETUP #line 123 "frame/lex.L" {return DEFAULT_;} YY_BREAK case 95: YY_RULE_SETUP #line 124 "frame/lex.L" {return DELETE_;} YY_BREAK case 96: YY_RULE_SETUP #line 125 "frame/lex.L" {return DEPTH_;} YY_BREAK case 97: YY_RULE_SETUP #line 126 "frame/lex.L" {return DETECTOR_;} YY_BREAK case 98: YY_RULE_SETUP #line 127 "frame/lex.L" {return DIAMOND_;} YY_BREAK case 99: YY_RULE_SETUP #line 128 "frame/lex.L" {return DIM_;} YY_BREAK case 100: YY_RULE_SETUP #line 129 "frame/lex.L" {return DS9_;} YY_BREAK case 101: YY_RULE_SETUP #line 130 "frame/lex.L" {return ECLIPTIC_;} YY_BREAK case 102: YY_RULE_SETUP #line 131 "frame/lex.L" {return ELEVATION_;} YY_BREAK case 103: YY_RULE_SETUP #line 132 "frame/lex.L" {return ELLIPTIC_;} YY_BREAK case 104: YY_RULE_SETUP #line 133 "frame/lex.L" {return ELLIPSE_;} YY_BREAK case 105: YY_RULE_SETUP #line 134 "frame/lex.L" {return ELLIPSEANNULUS_;} YY_BREAK case 106: YY_RULE_SETUP #line 135 "frame/lex.L" {return EDIT_;} YY_BREAK case 107: YY_RULE_SETUP #line 136 "frame/lex.L" {return END_;} YY_BREAK case 108: YY_RULE_SETUP #line 137 "frame/lex.L" {return ENVI_;} YY_BREAK case 109: YY_RULE_SETUP #line 138 "frame/lex.L" {return EPANDA_;} YY_BREAK case 110: YY_RULE_SETUP #line 139 "frame/lex.L" {return EPSILON_;} YY_BREAK case 111: YY_RULE_SETUP #line 140 "frame/lex.L" {return EQUATORIAL_;} YY_BREAK case 112: YY_RULE_SETUP #line 141 "frame/lex.L" {return ERASE_;} YY_BREAK case 113: YY_RULE_SETUP #line 142 "frame/lex.L" {return EXT_;} YY_BREAK case 114: YY_RULE_SETUP #line 143 "frame/lex.L" {return FACTOR_;} YY_BREAK case 115: YY_RULE_SETUP #line 144 "frame/lex.L" {return FALSE_;} YY_BREAK case 116: YY_RULE_SETUP #line 145 "frame/lex.L" {return FILE_;} YY_BREAK case 117: YY_RULE_SETUP #line 146 "frame/lex.L" {return FILL_;} YY_BREAK case 118: YY_RULE_SETUP #line 147 "frame/lex.L" {return FILTER_;} YY_BREAK case 119: YY_RULE_SETUP #line 148 "frame/lex.L" {return FIT_;} YY_BREAK case 120: YY_RULE_SETUP #line 149 "frame/lex.L" {return FITS_;} YY_BREAK case 121: YY_RULE_SETUP #line 150 "frame/lex.L" {return FITSY_;} YY_BREAK case 122: YY_RULE_SETUP #line 151 "frame/lex.L" {return FIXED_;} YY_BREAK case 123: YY_RULE_SETUP #line 152 "frame/lex.L" {return FK4_;} YY_BREAK case 124: YY_RULE_SETUP #line 153 "frame/lex.L" {return FK5_;} YY_BREAK case 125: YY_RULE_SETUP #line 154 "frame/lex.L" {return FONT_;} YY_BREAK case 126: YY_RULE_SETUP #line 155 "frame/lex.L" {return FORMAT_;} YY_BREAK case 127: YY_RULE_SETUP #line 156 "frame/lex.L" {return FOOTPRINT_;} YY_BREAK case 128: YY_RULE_SETUP #line 157 "frame/lex.L" {return FROM_;} YY_BREAK case 129: YY_RULE_SETUP #line 158 "frame/lex.L" {return FRONT_;} YY_BREAK case 130: YY_RULE_SETUP #line 159 "frame/lex.L" {return FULL_;} YY_BREAK case 131: YY_RULE_SETUP #line 160 "frame/lex.L" {return FUNCTION_;} YY_BREAK case 132: YY_RULE_SETUP #line 161 "frame/lex.L" {return GALACTIC_;} YY_BREAK case 133: YY_RULE_SETUP #line 162 "frame/lex.L" {return GAUSSIAN_;} YY_BREAK case 134: YY_RULE_SETUP #line 163 "frame/lex.L" {return GET_;} YY_BREAK case 135: YY_RULE_SETUP #line 164 "frame/lex.L" {return GLOBAL_;} YY_BREAK case 136: YY_RULE_SETUP #line 165 "frame/lex.L" {return GRAPHICS_;} YY_BREAK case 137: YY_RULE_SETUP #line 166 "frame/lex.L" {return GRAY_;} YY_BREAK case 138: YY_RULE_SETUP #line 167 "frame/lex.L" {return GRID_;} YY_BREAK case 139: YY_RULE_SETUP #line 168 "frame/lex.L" {return GZ_;} YY_BREAK case 140: YY_RULE_SETUP #line 169 "frame/lex.L" {return HANDLE_;} YY_BREAK case 141: YY_RULE_SETUP #line 170 "frame/lex.L" {return HAS_;} YY_BREAK case 142: YY_RULE_SETUP #line 171 "frame/lex.L" {return HEAD_;} YY_BREAK case 143: YY_RULE_SETUP #line 172 "frame/lex.L" {return HEADER_;} YY_BREAK case 144: YY_RULE_SETUP #line 173 "frame/lex.L" {return HEIGHT_;} YY_BREAK case 145: YY_RULE_SETUP #line 174 "frame/lex.L" {return HIDE_;} YY_BREAK case 146: YY_RULE_SETUP #line 175 "frame/lex.L" {return HIGHLITE_;} YY_BREAK case 147: YY_RULE_SETUP #line 176 "frame/lex.L" {return HISTEQU_;} YY_BREAK case 148: YY_RULE_SETUP #line 177 "frame/lex.L" {return HISTOGRAM_;} YY_BREAK case 149: YY_RULE_SETUP #line 178 "frame/lex.L" {return HORIZONTAL_;} YY_BREAK case 150: YY_RULE_SETUP #line 179 "frame/lex.L" {return ICRS_;} YY_BREAK case 151: YY_RULE_SETUP #line 180 "frame/lex.L" {return ID_;} YY_BREAK case 152: YY_RULE_SETUP #line 181 "frame/lex.L" {return IIS_;} YY_BREAK case 153: YY_RULE_SETUP #line 182 "frame/lex.L" {return IMAGE_;} YY_BREAK case 154: YY_RULE_SETUP #line 183 "frame/lex.L" {return INCLUDE_;} YY_BREAK case 155: YY_RULE_SETUP #line 184 "frame/lex.L" {return INCR_;} YY_BREAK case 156: YY_RULE_SETUP #line 185 "frame/lex.L" {return INFO_;} YY_BREAK case 157: YY_RULE_SETUP #line 186 "frame/lex.L" {return ITERATION_;} YY_BREAK case 158: YY_RULE_SETUP #line 187 "frame/lex.L" {return IRAF_;} YY_BREAK case 159: YY_RULE_SETUP #line 188 "frame/lex.L" {return IRAFMIN_;} YY_BREAK case 160: YY_RULE_SETUP #line 189 "frame/lex.L" {return J2000_;} YY_BREAK case 161: YY_RULE_SETUP #line 190 "frame/lex.L" {return KEY_;} YY_BREAK case 162: YY_RULE_SETUP #line 191 "frame/lex.L" {return KEYWORD_;} YY_BREAK case 163: YY_RULE_SETUP #line 192 "frame/lex.L" {return LABEL_;} YY_BREAK case 164: YY_RULE_SETUP #line 193 "frame/lex.L" {return LENGTH_;} YY_BREAK case 165: YY_RULE_SETUP #line 194 "frame/lex.L" {return LEVEL_;} YY_BREAK case 166: YY_RULE_SETUP #line 195 "frame/lex.L" {return LIGHTEN_;} YY_BREAK case 167: YY_RULE_SETUP #line 196 "frame/lex.L" {return LITTLEENDIAN_;} YY_BREAK case 168: YY_RULE_SETUP #line 197 "frame/lex.L" {return LITTLEENDIAN_;} YY_BREAK case 169: YY_RULE_SETUP #line 198 "frame/lex.L" {return LINE_;} YY_BREAK case 170: YY_RULE_SETUP #line 199 "frame/lex.L" {return LINEAR_;} YY_BREAK case 171: YY_RULE_SETUP #line 200 "frame/lex.L" {return LIST_;} YY_BREAK case 172: YY_RULE_SETUP #line 201 "frame/lex.L" {return LOAD_;} YY_BREAK case 173: YY_RULE_SETUP #line 202 "frame/lex.L" {return LOCAL_;} YY_BREAK case 174: YY_RULE_SETUP #line 203 "frame/lex.L" {return LOG_;} YY_BREAK case 175: YY_RULE_SETUP #line 204 "frame/lex.L" {return MACOSX_;} YY_BREAK case 176: YY_RULE_SETUP #line 205 "frame/lex.L" {return MAGNIFIER_;} YY_BREAK case 177: YY_RULE_SETUP #line 206 "frame/lex.L" {return MATCH_;} YY_BREAK case 178: YY_RULE_SETUP #line 207 "frame/lex.L" {return MAP_;} YY_BREAK case 179: YY_RULE_SETUP #line 208 "frame/lex.L" {return MARK_;} YY_BREAK case 180: YY_RULE_SETUP #line 209 "frame/lex.L" {return MARKER_;} YY_BREAK case 181: YY_RULE_SETUP #line 210 "frame/lex.L" {return MASK_;} YY_BREAK case 182: YY_RULE_SETUP #line 211 "frame/lex.L" {return MESSAGE_;} YY_BREAK case 183: YY_RULE_SETUP #line 212 "frame/lex.L" {return METHOD_;} YY_BREAK case 184: YY_RULE_SETUP #line 213 "frame/lex.L" {return MINMAX_;} YY_BREAK case 185: YY_RULE_SETUP #line 214 "frame/lex.L" {return MINOR_;} YY_BREAK case 186: YY_RULE_SETUP #line 215 "frame/lex.L" {return MIP_;} YY_BREAK case 187: YY_RULE_SETUP #line 216 "frame/lex.L" {return MMAP_;} YY_BREAK case 188: YY_RULE_SETUP #line 217 "frame/lex.L" {return MMAPINCR_;} YY_BREAK case 189: YY_RULE_SETUP #line 218 "frame/lex.L" {return MODE_;} YY_BREAK case 190: YY_RULE_SETUP #line 219 "frame/lex.L" {return MOSAIC_;} YY_BREAK case 191: YY_RULE_SETUP #line 220 "frame/lex.L" {return MOTION_;} YY_BREAK case 192: YY_RULE_SETUP #line 221 "frame/lex.L" {return MOVE_;} YY_BREAK case 193: YY_RULE_SETUP #line 222 "frame/lex.L" {return NAME_;} YY_BREAK case 194: YY_RULE_SETUP #line 223 "frame/lex.L" {return NAN_;} YY_BREAK case 195: YY_RULE_SETUP #line 224 "frame/lex.L" {return NATIVE_;} YY_BREAK case 196: YY_RULE_SETUP #line 225 "frame/lex.L" {return NAXES_;} YY_BREAK case 197: YY_RULE_SETUP #line 226 "frame/lex.L" {return NEW_;} YY_BREAK case 198: YY_RULE_SETUP #line 227 "frame/lex.L" {return NEXT_;} YY_BREAK case 199: YY_RULE_SETUP #line 228 "frame/lex.L" {return NO_;} YY_BREAK case 200: YY_RULE_SETUP #line 229 "frame/lex.L" {return NONE_;} YY_BREAK case 201: YY_RULE_SETUP #line 230 "frame/lex.L" {return NONNAN_;} YY_BREAK case 202: YY_RULE_SETUP #line 231 "frame/lex.L" {return NONZERO_;} YY_BREAK case 203: YY_RULE_SETUP #line 232 "frame/lex.L" {return NOW_;} YY_BREAK case 204: YY_RULE_SETUP #line 233 "frame/lex.L" {return NRRD_;} YY_BREAK case 205: YY_RULE_SETUP #line 234 "frame/lex.L" {return NUMBER_;} YY_BREAK case 206: YY_RULE_SETUP #line 235 "frame/lex.L" {return OBJECT_;} YY_BREAK case 207: YY_RULE_SETUP #line 236 "frame/lex.L" {return OFF_;} YY_BREAK case 208: YY_RULE_SETUP #line 237 "frame/lex.L" {return ON_;} YY_BREAK case 209: YY_RULE_SETUP #line 238 "frame/lex.L" {return ONLY_;} YY_BREAK case 210: YY_RULE_SETUP #line 239 "frame/lex.L" {return OPTION_;} YY_BREAK case 211: YY_RULE_SETUP #line 240 "frame/lex.L" {return ORIENT_;} YY_BREAK case 212: YY_RULE_SETUP #line 241 "frame/lex.L" {return PAN_;} YY_BREAK case 213: YY_RULE_SETUP #line 242 "frame/lex.L" {return CPANDA_;} YY_BREAK case 214: YY_RULE_SETUP #line 243 "frame/lex.L" {return PANNER_;} YY_BREAK case 215: YY_RULE_SETUP #line 244 "frame/lex.L" {return PARSER_;} YY_BREAK case 216: YY_RULE_SETUP #line 245 "frame/lex.L" {return PASTE_;} YY_BREAK case 217: YY_RULE_SETUP #line 246 "frame/lex.L" {return PERF_;} YY_BREAK case 218: YY_RULE_SETUP #line 247 "frame/lex.L" {return PHOTO_;} YY_BREAK case 219: YY_RULE_SETUP #line 248 "frame/lex.L" {return PHYSICAL_;} YY_BREAK case 220: YY_RULE_SETUP #line 249 "frame/lex.L" {return PIXEL_;} YY_BREAK case 221: YY_RULE_SETUP #line 250 "frame/lex.L" {return PLOT2D_;} YY_BREAK case 222: YY_RULE_SETUP #line 251 "frame/lex.L" {return PLOT3D_;} YY_BREAK case 223: YY_RULE_SETUP #line 252 "frame/lex.L" {return POINT_;} YY_BREAK case 224: YY_RULE_SETUP #line 253 "frame/lex.L" {return POINTER_;} YY_BREAK case 225: YY_RULE_SETUP #line 254 "frame/lex.L" {return POLYGON_;} YY_BREAK case 226: YY_RULE_SETUP #line 255 "frame/lex.L" {return POSTSCRIPT_;} YY_BREAK case 227: YY_RULE_SETUP #line 256 "frame/lex.L" {return POW_;} YY_BREAK case 228: YY_RULE_SETUP #line 257 "frame/lex.L" {return PRECISION_;} YY_BREAK case 229: YY_RULE_SETUP #line 258 "frame/lex.L" {return PRINT_;} YY_BREAK case 230: YY_RULE_SETUP #line 259 "frame/lex.L" {return PRESERVE_;} YY_BREAK case 231: YY_RULE_SETUP #line 260 "frame/lex.L" {return PROJECTION_;} YY_BREAK case 232: YY_RULE_SETUP #line 261 "frame/lex.L" {return PROPERTY_;} YY_BREAK case 233: YY_RULE_SETUP #line 262 "frame/lex.L" {return PROS_;} YY_BREAK case 234: YY_RULE_SETUP #line 263 "frame/lex.L" {return PUBLICATION_;} YY_BREAK case 235: YY_RULE_SETUP #line 264 "frame/lex.L" {return QUERY_;} YY_BREAK case 236: YY_RULE_SETUP #line 265 "frame/lex.L" {return RADIAL_;} YY_BREAK case 237: YY_RULE_SETUP #line 266 "frame/lex.L" {return RADIUS_;} YY_BREAK case 238: YY_RULE_SETUP #line 267 "frame/lex.L" {return RANGE_;} YY_BREAK case 239: YY_RULE_SETUP #line 268 "frame/lex.L" {return REGION_;} YY_BREAK case 240: YY_RULE_SETUP #line 269 "frame/lex.L" {return REPLACE_;} YY_BREAK case 241: YY_RULE_SETUP #line 270 "frame/lex.L" {return RESAMPLE_;} YY_BREAK case 242: YY_RULE_SETUP #line 271 "frame/lex.L" {return RESCAN_;} YY_BREAK case 243: YY_RULE_SETUP #line 272 "frame/lex.L" {return RESET_;} YY_BREAK case 244: YY_RULE_SETUP #line 273 "frame/lex.L" {return RESOLUTION_;} YY_BREAK case 245: YY_RULE_SETUP #line 274 "frame/lex.L" {return RGB_;} YY_BREAK case 246: YY_RULE_SETUP #line 275 "frame/lex.L" {return ROOT_;} YY_BREAK case 247: YY_RULE_SETUP #line 276 "frame/lex.L" {return ROTATE_;} YY_BREAK case 248: YY_RULE_SETUP #line 277 "frame/lex.L" {return RULER_;} YY_BREAK case 249: YY_RULE_SETUP #line 278 "frame/lex.L" {return SAMPLE_;} YY_BREAK case 250: YY_RULE_SETUP #line 279 "frame/lex.L" {return SAOIMAGE_;} YY_BREAK case 251: YY_RULE_SETUP #line 280 "frame/lex.L" {return SAOTNG_;} YY_BREAK case 252: YY_RULE_SETUP #line 281 "frame/lex.L" {return SAVE_;} YY_BREAK case 253: YY_RULE_SETUP #line 282 "frame/lex.L" {return SCALE_;} YY_BREAK case 254: YY_RULE_SETUP #line 283 "frame/lex.L" {return SCAN_;} YY_BREAK case 255: YY_RULE_SETUP #line 284 "frame/lex.L" {return SCIENTIFIC_;} YY_BREAK case 256: YY_RULE_SETUP #line 285 "frame/lex.L" {return SCOPE_;} YY_BREAK case 257: YY_RULE_SETUP #line 286 "frame/lex.L" {return SCREEN_;} YY_BREAK case 258: YY_RULE_SETUP #line 287 "frame/lex.L" {return SEGMENT_;} YY_BREAK case 259: YY_RULE_SETUP #line 288 "frame/lex.L" {return SELECT_;} YY_BREAK case 260: YY_RULE_SETUP #line 289 "frame/lex.L" {return SET_;} YY_BREAK case 261: YY_RULE_SETUP #line 290 "frame/lex.L" {return SEXAGESIMAL_;} YY_BREAK case 262: YY_RULE_SETUP #line 291 "frame/lex.L" {return SHAPE_;} YY_BREAK case 263: YY_RULE_SETUP #line 292 "frame/lex.L" {return SHARED_;} YY_BREAK case 264: YY_RULE_SETUP #line 293 "frame/lex.L" {return SHIFT_;} YY_BREAK case 265: YY_RULE_SETUP #line 294 "frame/lex.L" {return SHMID_;} YY_BREAK case 266: YY_RULE_SETUP #line 295 "frame/lex.L" {return SHOW_;} YY_BREAK case 267: YY_RULE_SETUP #line 296 "frame/lex.L" {return SIGMA_;} YY_BREAK case 268: YY_RULE_SETUP #line 297 "frame/lex.L" {return SINH_;} YY_BREAK case 269: YY_RULE_SETUP #line 298 "frame/lex.L" {return SIZE_;} YY_BREAK case 270: YY_RULE_SETUP #line 299 "frame/lex.L" {return SLICE_;} YY_BREAK case 271: YY_RULE_SETUP #line 300 "frame/lex.L" {return SMMAP_;} YY_BREAK case 272: YY_RULE_SETUP #line 301 "frame/lex.L" {return SMOOTH_;} YY_BREAK case 273: YY_RULE_SETUP #line 302 "frame/lex.L" {return SOCKET_;} YY_BREAK case 274: YY_RULE_SETUP #line 303 "frame/lex.L" {return SOCKETGZ_;} YY_BREAK case 275: YY_RULE_SETUP #line 304 "frame/lex.L" {return SOURCE_;} YY_BREAK case 276: YY_RULE_SETUP #line 305 "frame/lex.L" {return SQRT_;} YY_BREAK case 277: YY_RULE_SETUP #line 306 "frame/lex.L" {return SQUARED_;} YY_BREAK case 278: YY_RULE_SETUP #line 307 "frame/lex.L" {return SSHARED_;} YY_BREAK case 279: YY_RULE_SETUP #line 308 "frame/lex.L" {return STATS_;} YY_BREAK case 280: YY_RULE_SETUP #line 309 "frame/lex.L" {return STATUS_;} YY_BREAK case 281: YY_RULE_SETUP #line 310 "frame/lex.L" {return SUM_;} YY_BREAK case 282: YY_RULE_SETUP #line 311 "frame/lex.L" {return SYSTEM_;} YY_BREAK case 283: YY_RULE_SETUP #line 312 "frame/lex.L" {return TABLE_;} YY_BREAK case 284: YY_RULE_SETUP #line 313 "frame/lex.L" {return TAG_;} YY_BREAK case 285: YY_RULE_SETUP #line 314 "frame/lex.L" {return TEMPLATE_;} YY_BREAK case 286: YY_RULE_SETUP #line 315 "frame/lex.L" {return TEXT_;} YY_BREAK case 287: YY_RULE_SETUP #line 316 "frame/lex.L" {return THREADS_;} YY_BREAK case 288: YY_RULE_SETUP #line 317 "frame/lex.L" {return THREED_;} YY_BREAK case 289: YY_RULE_SETUP #line 318 "frame/lex.L" {return THRESHOLD_;} YY_BREAK case 290: YY_RULE_SETUP #line 319 "frame/lex.L" {return THICK_;} YY_BREAK case 291: YY_RULE_SETUP #line 320 "frame/lex.L" {return TRANSPARENCY_;} YY_BREAK case 292: YY_RULE_SETUP #line 321 "frame/lex.L" {return TO_;} YY_BREAK case 293: YY_RULE_SETUP #line 322 "frame/lex.L" {return TOGGLE_;} YY_BREAK case 294: YY_RULE_SETUP #line 323 "frame/lex.L" {return TOPHAT_;} YY_BREAK case 295: YY_RULE_SETUP #line 324 "frame/lex.L" {return TRUE_;} YY_BREAK case 296: YY_RULE_SETUP #line 325 "frame/lex.L" {return TYPE_;} YY_BREAK case 297: YY_RULE_SETUP #line 326 "frame/lex.L" {return UNDO_;} YY_BREAK case 298: YY_RULE_SETUP #line 327 "frame/lex.L" {return UNLOAD_;} YY_BREAK case 299: YY_RULE_SETUP #line 328 "frame/lex.L" {return UNHIGHLITE_;} YY_BREAK case 300: YY_RULE_SETUP #line 329 "frame/lex.L" {return UNSELECT_;} YY_BREAK case 301: YY_RULE_SETUP #line 330 "frame/lex.L" {return UPDATE_;} YY_BREAK case 302: YY_RULE_SETUP #line 331 "frame/lex.L" {return USER_;} YY_BREAK case 303: YY_RULE_SETUP #line 332 "frame/lex.L" {return VALUE_;} YY_BREAK case 304: YY_RULE_SETUP #line 333 "frame/lex.L" {return VAR_;} YY_BREAK case 305: YY_RULE_SETUP #line 334 "frame/lex.L" {return VIEW_;} YY_BREAK case 306: YY_RULE_SETUP #line 335 "frame/lex.L" {return VECTOR_;} YY_BREAK case 307: YY_RULE_SETUP #line 336 "frame/lex.L" {return VERSION_;} YY_BREAK case 308: YY_RULE_SETUP #line 337 "frame/lex.L" {return VERTEX_;} YY_BREAK case 309: YY_RULE_SETUP #line 338 "frame/lex.L" {return VERTICAL_;} YY_BREAK case 310: YY_RULE_SETUP #line 339 "frame/lex.L" {return WARP_;} YY_BREAK case 311: YY_RULE_SETUP #line 340 "frame/lex.L" {return WCS_;} YY_BREAK case 312: YY_RULE_SETUP #line 341 "frame/lex.L" {return WCSA_;} YY_BREAK case 313: YY_RULE_SETUP #line 342 "frame/lex.L" {return WCSB_;} YY_BREAK case 314: YY_RULE_SETUP #line 343 "frame/lex.L" {return WCSC_;} YY_BREAK case 315: YY_RULE_SETUP #line 344 "frame/lex.L" {return WCSD_;} YY_BREAK case 316: YY_RULE_SETUP #line 345 "frame/lex.L" {return WCSE_;} YY_BREAK case 317: YY_RULE_SETUP #line 346 "frame/lex.L" {return WCSF_;} YY_BREAK case 318: YY_RULE_SETUP #line 347 "frame/lex.L" {return WCSG_;} YY_BREAK case 319: YY_RULE_SETUP #line 348 "frame/lex.L" {return WCSH_;} YY_BREAK case 320: YY_RULE_SETUP #line 349 "frame/lex.L" {return WCSI_;} YY_BREAK case 321: YY_RULE_SETUP #line 350 "frame/lex.L" {return WCSJ_;} YY_BREAK case 322: YY_RULE_SETUP #line 351 "frame/lex.L" {return WCSK_;} YY_BREAK case 323: YY_RULE_SETUP #line 352 "frame/lex.L" {return WCSL_;} YY_BREAK case 324: YY_RULE_SETUP #line 353 "frame/lex.L" {return WCSM_;} YY_BREAK case 325: YY_RULE_SETUP #line 354 "frame/lex.L" {return WCSN_;} YY_BREAK case 326: YY_RULE_SETUP #line 355 "frame/lex.L" {return WCSO_;} YY_BREAK case 327: YY_RULE_SETUP #line 356 "frame/lex.L" {return WCSP_;} YY_BREAK case 328: YY_RULE_SETUP #line 357 "frame/lex.L" {return WCSQ_;} YY_BREAK case 329: YY_RULE_SETUP #line 358 "frame/lex.L" {return WCSR_;} YY_BREAK case 330: YY_RULE_SETUP #line 359 "frame/lex.L" {return WCSS_;} YY_BREAK case 331: YY_RULE_SETUP #line 360 "frame/lex.L" {return WCST_;} YY_BREAK case 332: YY_RULE_SETUP #line 361 "frame/lex.L" {return WCSU_;} YY_BREAK case 333: YY_RULE_SETUP #line 362 "frame/lex.L" {return WCSV_;} YY_BREAK case 334: YY_RULE_SETUP #line 363 "frame/lex.L" {return WCSW_;} YY_BREAK case 335: YY_RULE_SETUP #line 364 "frame/lex.L" {return WCSX_;} YY_BREAK case 336: YY_RULE_SETUP #line 365 "frame/lex.L" {return WCSY_;} YY_BREAK case 337: YY_RULE_SETUP #line 366 "frame/lex.L" {return WCSZ_;} YY_BREAK case 338: YY_RULE_SETUP #line 367 "frame/lex.L" {return WCS0_;} YY_BREAK case 339: YY_RULE_SETUP #line 368 "frame/lex.L" {return WFPC2_;} YY_BREAK case 340: YY_RULE_SETUP #line 369 "frame/lex.L" {return WIDTH_;} YY_BREAK case 341: YY_RULE_SETUP #line 370 "frame/lex.L" {return WIN32_;} YY_BREAK case 342: YY_RULE_SETUP #line 371 "frame/lex.L" {return XML_;} YY_BREAK case 343: YY_RULE_SETUP #line 372 "frame/lex.L" {return XY_;} YY_BREAK case 344: YY_RULE_SETUP #line 373 "frame/lex.L" {return YES_;} YY_BREAK case 345: YY_RULE_SETUP #line 374 "frame/lex.L" {return ZERO_;} YY_BREAK case 346: YY_RULE_SETUP #line 375 "frame/lex.L" {return ZMAX_;} YY_BREAK case 347: YY_RULE_SETUP #line 376 "frame/lex.L" {return ZSCALE_;} YY_BREAK case 348: YY_RULE_SETUP #line 377 "frame/lex.L" {return ZOOM_;} YY_BREAK case 349: YY_RULE_SETUP #line 379 "frame/lex.L" { // Integer frlval->integer = atoi(yytext); return INT; } YY_BREAK case 350: #line 385 "frame/lex.L" case 351: YY_RULE_SETUP #line 385 "frame/lex.L" { // Real Number frlval->real = atof(yytext); return REAL; } YY_BREAK case 352: YY_RULE_SETUP #line 390 "frame/lex.L" { // Pointer frlval->ptr = (void*)strtoul(yytext,NULL,16); return POINTER; } YY_BREAK case 353: #line 396 "frame/lex.L" case 354: YY_RULE_SETUP #line 396 "frame/lex.L" { // degrees yytext[yyleng-1] = '\0'; frlval->real = atof(yytext); return ANGDEGREE; } YY_BREAK case 355: #line 403 "frame/lex.L" case 356: YY_RULE_SETUP #line 403 "frame/lex.L" { // radians yytext[yyleng-1] = '\0'; frlval->real = atof(yytext); return ANGRADIAN; } YY_BREAK case 357: #line 410 "frame/lex.L" case 358: YY_RULE_SETUP #line 410 "frame/lex.L" { // sexagesimal int ll = yyleng <(FRBUFSIZE-1) ? yyleng:(FRBUFSIZE-1); strncpy(frlval->str,yytext,ll); frlval->str[ll] = '\0'; return SEXSTR; } YY_BREAK case 359: #line 418 "frame/lex.L" case 360: YY_RULE_SETUP #line 418 "frame/lex.L" { // HMS int ll = yyleng <(FRBUFSIZE-1) ? yyleng:(FRBUFSIZE-1); strncpy(frlval->str,yytext,ll); frlval->str[ll] = '\0'; return HMSSTR; } YY_BREAK case 361: #line 426 "frame/lex.L" case 362: YY_RULE_SETUP #line 426 "frame/lex.L" { // DMS int ll = yyleng <(FRBUFSIZE-1) ? yyleng:(FRBUFSIZE-1); strncpy(frlval->str,yytext,ll); frlval->str[ll] = '\0'; return DMSSTR; } YY_BREAK case 363: /* rule 363 can match eol */ #line 434 "frame/lex.L" case 364: /* rule 364 can match eol */ YY_RULE_SETUP #line 434 "frame/lex.L" { // Quoted String int ll = (yyleng-2)<(FRBUFSIZE-1) ? (yyleng-2):(FRBUFSIZE-1); strncpy(frlval->str,yytext+1,ll); // skip the " " frlval->str[ll] = '\0'; // Remove the '"' return STRING; } YY_BREAK case 365: /* rule 365 can match eol */ YY_RULE_SETUP #line 441 "frame/lex.L" { // Quoted String int ll = (yyleng-2)<(FRBUFSIZE-1) ? (yyleng-2):(FRBUFSIZE-1); strncpy(frlval->str,yytext+1,ll); // skip the '{' frlval->str[ll] = '\0'; // Remove the '}' return STRING; } YY_BREAK case 366: YY_RULE_SETUP #line 448 "frame/lex.L" { // General String-- at least 2 printable chars int ll = yyleng <(FRBUFSIZE-1) ? yyleng:(FRBUFSIZE-1); strncpy(frlval->str,yytext,ll); frlval->str[ll] = '\0'; return STRING; } YY_BREAK case 367: YY_RULE_SETUP #line 455 "frame/lex.L" { // White Spaces } YY_BREAK case 368: YY_RULE_SETUP #line 458 "frame/lex.L" { // Else, return the char return toupper(yytext[0]); } YY_BREAK case 369: YY_RULE_SETUP #line 462 "frame/lex.L" ECHO; YY_BREAK #line 3599 "frame/lex.C" case YY_STATE_EOF(INITIAL): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (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. */ (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 ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* 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 ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* 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. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (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 yylex */ /* The contents of this function are C++ specific, so the () macro is not used. */ yyFlexLexer::yyFlexLexer( std::istream* arg_yyin, std::ostream* arg_yyout ) { yyin = arg_yyin; yyout = arg_yyout; yy_c_buf_p = 0; yy_init = 0; yy_start = 0; yy_flex_debug = 0; yylineno = 1; // this will only get updated if %option yylineno yy_did_buffer_switch_on_eof = 0; yy_looking_for_trail_begin = 0; yy_more_flag = 0; yy_more_len = 0; yy_more_offset = yy_prev_more_offset = 0; yy_start_stack_ptr = yy_start_stack_depth = 0; yy_start_stack = NULL; yy_buffer_stack = 0; yy_buffer_stack_top = 0; yy_buffer_stack_max = 0; yy_state_buf = 0; } /* The contents of this function are C++ specific, so the () macro is not used. */ yyFlexLexer::~yyFlexLexer() { delete [] yy_state_buf; frfree(yy_start_stack ); yy_delete_buffer( YY_CURRENT_BUFFER ); frfree(yy_buffer_stack ); } /* The contents of this function are C++ specific, so the () macro is not used. */ void yyFlexLexer::switch_streams( std::istream* new_in, std::ostream* new_out ) { if ( new_in ) { yy_delete_buffer( YY_CURRENT_BUFFER ); yy_switch_to_buffer( yy_create_buffer( new_in, YY_BUF_SIZE ) ); } if ( new_out ) yyout = new_out; } #ifdef YY_INTERACTIVE size_t yyFlexLexer::LexerInput( char* buf, size_t /* max_size */ ) #else size_t yyFlexLexer::LexerInput( char* buf, size_t max_size ) #endif { if ( yyin->eof() || yyin->fail() ) return 0; #ifdef YY_INTERACTIVE yyin->get( buf[0] ); if ( yyin->eof() ) return 0; if ( yyin->bad() ) return -1; return 1; #else (void) yyin->read( buf, max_size ); if ( yyin->bad() ) return -1; else return yyin->gcount(); #endif } void yyFlexLexer::LexerOutput( const char* buf, size_t size ) { (void) yyout->write( buf, size ); } /* 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 */ int yyFlexLexer::yy_get_next_buffer() { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(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 ( (yy_c_buf_p) - (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 = (int) ((yy_c_buf_p) - (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 = (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; int yy_c_buf_p_offset = (int) ((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. */ frrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } 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" ); (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]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( yyin ); } 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) ((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 = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) frrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (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 */ yy_state_type yyFlexLexer::yy_get_previous_state() { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (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 >= 1311 ) 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 ); */ yy_state_type yyFlexLexer::yy_try_NUL_trans( yy_state_type yy_current_state ) { register int yy_is_jam; register char *yy_cp = (yy_c_buf_p); register YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (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 >= 1311 ) 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 == 1310); return yy_is_jam ? 0 : yy_current_state; } void yyFlexLexer::yyunput( int c, register char* yy_bp) { register char *yy_cp; yy_cp = (yy_c_buf_p); /* undo effects of setting up yytext */ *yy_cp = (yy_hold_char); if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register yy_size_t number_to_move = (yy_n_chars) + 2; register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; register char *source = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; (yytext_ptr) = yy_bp; (yy_hold_char) = *yy_cp; (yy_c_buf_p) = yy_cp; } int yyFlexLexer::yyinput() { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(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 ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ yy_size_t offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { 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 ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return 0; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyFlexLexer::yyrestart( std::istream* input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer( yyin, YY_BUF_SIZE ); } yy_init_buffer( YY_CURRENT_BUFFER, input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yyFlexLexer::yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* 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. */ (yy_did_buffer_switch_on_eof) = 1; } void yyFlexLexer::yy_load_buffer_state() { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(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. * * @return the allocated buffer state. */ YY_BUFFER_STATE yyFlexLexer::yy_create_buffer( std::istream* file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) fralloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = 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 *) fralloc(b->yy_buf_size + 2 ); 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 ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yyFlexLexer::yy_delete_buffer( YY_BUFFER_STATE b ) { 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 ) frfree((void *) b->yy_ch_buf ); frfree((void *) b ); } /* 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. */ void yyFlexLexer::yy_init_buffer( YY_BUFFER_STATE b, std::istream* file ) { int oerrno = errno; yy_flush_buffer( b ); 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 = 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. * */ void yyFlexLexer::yy_flush_buffer( YY_BUFFER_STATE b ) { 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( ); } /** 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. * */ void yyFlexLexer::yypush_buffer_state (YY_BUFFER_STATE new_buffer) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yyFlexLexer::yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ void yyFlexLexer::yyensure_buffer_stack(void) { yy_size_t num_to_alloc; if (!(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; (yy_buffer_stack) = (struct yy_buffer_state**)fralloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)frrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } void yyFlexLexer::yy_push_state( int new_state ) { if ( (yy_start_stack_ptr) >= (yy_start_stack_depth) ) { yy_size_t new_size; (yy_start_stack_depth) += YY_START_STACK_INCR; new_size = (yy_start_stack_depth) * sizeof( int ); if ( ! (yy_start_stack) ) (yy_start_stack) = (int *) fralloc(new_size ); else (yy_start_stack) = (int *) frrealloc((void *) (yy_start_stack),new_size ); if ( ! (yy_start_stack) ) YY_FATAL_ERROR( "out of memory expanding start-condition stack" ); } (yy_start_stack)[(yy_start_stack_ptr)++] = YY_START; BEGIN(new_state); } void yyFlexLexer::yy_pop_state() { if ( --(yy_start_stack_ptr) < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN((yy_start_stack)[(yy_start_stack_ptr)]); } int yyFlexLexer::yy_top_state() { return (yy_start_stack)[(yy_start_stack_ptr) - 1]; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif void yyFlexLexer::LexerError( yyconst char msg[] ) { std::cerr << msg << std::endl; 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] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { register 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 ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *fralloc (yy_size_t size ) { return (void *) malloc( size ); } void *frrealloc (void * ptr, yy_size_t size ) { /* 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 frfree (void * ptr ) { free( (char *) ptr ); /* see frrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 462 "frame/lex.L"