#line 2 "frame/ds9lex.C" #line 4 "frame/ds9lex.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 mkFlexLexer /* 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 *mkalloc (yy_size_t ); void *mkrealloc (void *,yy_size_t ); void mkfree (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 155 #define YY_END_OF_BUFFER 156 /* 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[546] = { 0, 0, 0, 2, 2, 156, 154, 150, 153, 154, 154, 154, 154, 154, 154, 118, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 56, 149, 149, 149, 149, 149, 149, 149, 149, 149, 115, 116, 154, 154, 2, 1, 150, 151, 0, 146, 0, 0, 147, 0, 118, 120, 133, 129, 119, 118, 0, 149, 121, 149, 149, 127, 125, 123, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 57, 149, 59, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 152, 0, 148, 2, 0, 120, 135, 131, 119, 121, 0, 0, 127, 125, 123, 134, 130, 122, 0, 128, 126, 124, 121, 0, 149, 0, 119, 149, 149, 149, 149, 149, 149, 149, 149, 11, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 33, 149, 149, 149, 149, 149, 38, 40, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 51, 149, 149, 58, 149, 149, 62, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 75, 149, 149, 149, 149, 149, 149, 149, 149, 86, 149, 117, 143, 136, 132, 0, 119, 0, 0, 120, 0, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 22, 149, 149, 149, 149, 149, 149, 29, 149, 149, 149, 149, 36, 149, 0, 42, 149, 149, 149, 149, 149, 47, 149, 149, 149, 149, 53, 55, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 76, 79, 80, 149, 149, 149, 149, 149, 113, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 149, 0, 0, 0, 0, 137, 0, 149, 0, 149, 149, 149, 149, 149, 7, 8, 149, 10, 149, 149, 149, 149, 17, 149, 149, 149, 21, 149, 24, 149, 149, 149, 149, 149, 149, 149, 34, 35, 37, 0, 149, 149, 149, 149, 149, 149, 50, 149, 52, 149, 60, 149, 149, 64, 149, 149, 149, 149, 149, 70, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 114, 0, 0, 0, 138, 137, 0, 0, 141, 0, 0, 139, 149, 149, 5, 6, 149, 149, 13, 149, 15, 149, 149, 20, 149, 149, 26, 149, 149, 149, 149, 32, 0, 41, 149, 44, 149, 149, 48, 149, 54, 149, 63, 149, 149, 149, 68, 69, 149, 71, 73, 149, 149, 149, 149, 149, 83, 81, 149, 144, 141, 139, 142, 140, 149, 4, 149, 149, 149, 149, 18, 149, 149, 25, 149, 28, 149, 30, 0, 149, 149, 149, 49, 149, 65, 149, 149, 72, 149, 149, 149, 149, 149, 82, 0, 149, 149, 149, 14, 16, 149, 23, 27, 31, 39, 43, 149, 46, 61, 149, 67, 149, 149, 149, 149, 85, 0, 3, 149, 12, 19, 149, 149, 149, 77, 149, 149, 0, 9, 149, 66, 149, 78, 84, 0, 149, 149, 0, 149, 149, 145, 45, 74, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 5, 6, 1, 1, 1, 7, 1, 1, 1, 8, 1, 9, 10, 1, 11, 12, 13, 14, 15, 16, 17, 17, 17, 18, 19, 1, 1, 1, 1, 1, 1, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 1, 46, 1, 1, 1, 1, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 1, 74, 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, 1 } ; static yyconst flex_int32_t yy_meta[75] = { 0, 1, 1, 2, 1, 3, 1, 3, 1, 1, 3, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1 } ; static yyconst flex_int16_t yy_base[564] = { 0, 0, 0, 181, 180, 179, 4425, 176, 4425, 167, 160, 0, 156, 65, 73, 87, 102, 162, 213, 140, 273, 331, 170, 211, 388, 113, 195, 201, 233, 266, 274, 429, 166, 305, 306, 489, 364, 372, 406, 244, 426, 80, 84, 0, 4425, 155, 4425, 151, 4425, 0, 148, 4425, 456, 549, 609, 4425, 4425, 669, 729, 489, 337, 789, 507, 516, 396, 425, 433, 536, 575, 804, 532, 629, 635, 586, 648, 691, 695, 758, 708, 805, 716, 864, 766, 815, 823, 830, 857, 840, 865, 894, 895, 887, 922, 921, 929, 939, 949, 956, 964, 971, 989, 872, 996, 1000, 582, 1007, 684, 1017, 1018, 1028, 1035, 1039, 1062, 1073, 1077, 1092, 1102, 1108, 1119, 1134, 1135, 1141, 1162, 1177, 1181, 1198, 1206, 4425, 80, 4425, 0, 0, 1217, 4425, 4425, 1238, 1246, 1261, 1269, 4425, 4425, 4425, 4425, 4425, 4425, 1280, 4425, 4425, 4425, 4425, 1288, 84, 1297, 1311, 1319, 1333, 1334, 1349, 1350, 1356, 1360, 1366, 1388, 1399, 1415, 1419, 1423, 1442, 1443, 1453, 1459, 1460, 1475, 1482, 1483, 1504, 1510, 1521, 1525, 1536, 1540, 1547, 1551, 1557, 1567, 1574, 1585, 1589, 1600, 1606, 1617, 1624, 1630, 1637, 1653, 1657, 1661, 1684, 1694, 1701, 1702, 1717, 1723, 1724, 1730, 1740, 1750, 1751, 1758, 1787, 1793, 1769, 1806, 1814, 1822, 1833, 1840, 1848, 1856, 1855, 1877, 1883, 1890, 1906, 1961, 1914, 1907, 0, 4425, 4425, 2023, 1934, 2031, 1946, 2053, 2062, 2081, 2090, 2104, 2105, 2111, 2121, 2115, 2136, 2143, 2160, 2166, 2176, 2170, 2193, 2197, 2203, 2220, 2228, 2248, 2249, 2264, 2271, 2275, 2279, 2298, 1913, 2304, 2311, 2322, 2340, 2346, 2357, 84, 2364, 2365, 2372, 2382, 2390, 2401, 2408, 2409, 2426, 2430, 2437, 2447, 2453, 2464, 2471, 2481, 2482, 2488, 2498, 2499, 2523, 2524, 2546, 2547, 2554, 2562, 2572, 2585, 2589, 2607, 2608, 2614, 2618, 2633, 2634, 2641, 2649, 2659, 2666, 2672, 2676, 2683, 2691, 2698, 2699, 2706, 2714, 2721, 2722, 2729, 2737, 2744, 2745, 2752, 2760, 2767, 2768, 2775, 2783, 2790, 2791, 2798, 2806, 0, 2824, 2833, 2841, 2851, 2859, 2868, 2876, 2885, 2900, 2907, 2908, 2924, 2813, 2925, 2932, 2948, 2952, 2956, 2972, 2976, 2980, 2999, 3003, 3010, 3016, 3026, 3033, 3037, 3041, 3048, 3064, 3065, 3072, 3088, 3096, 3106, 3113, 85, 3123, 3129, 3133, 3139, 3146, 3162, 3140, 3173, 3166, 3192, 3193, 3199, 3200, 3215, 3221, 3225, 3232, 3247, 3254, 3253, 3270, 3271, 3281, 3294, 3302, 3309, 3326, 3339, 3345, 3349, 3366, 3372, 0, 3391, 3404, 3419, 3432, 3446, 3459, 3473, 3487, 3501, 3516, 3522, 3523, 3538, 3539, 3546, 3557, 3563, 3564, 3580, 3586, 3590, 3607, 3615, 3622, 3623, 3630, 3647, 3658, 3664, 3671, 144, 3688, 3689, 3695, 3699, 3715, 3719, 3723, 3730, 3736, 3752, 3753, 3759, 3760, 3770, 3777, 3783, 3787, 3798, 3804, 3811, 3822, 3826, 3833, 3837, 3843, 3853, 0, 4425, 4425, 4425, 4425, 3861, 3860, 3868, 3884, 3888, 3904, 3912, 3919, 3927, 3934, 3942, 3950, 3958, 3957, 101, 3965, 3981, 3985, 3989, 4006, 4010, 4014, 4021, 4025, 4036, 4040, 4053, 4047, 4069, 4076, 0, 4077, 4094, 4100, 4110, 4111, 4118, 4126, 4133, 4139, 4425, 4143, 4154, 4158, 4165, 4169, 4173, 4180, 4186, 4197, 4201, 4207, 0, 4214, 4224, 4234, 4241, 4245, 4249, 4265, 4266, 4276, 4284, 0, 4283, 4291, 4306, 4310, 4314, 4321, 0, 4327, 4331, 0, 4346, 4353, 4425, 4359, 4374, 4425, 4402, 4406, 144, 4410, 4412, 4416, 4420, 132, 129, 127, 126, 125, 124, 123, 104, 92, 91, 89 } ; static yyconst flex_int16_t yy_def[564] = { 0, 545, 1, 546, 546, 545, 545, 545, 545, 545, 547, 548, 549, 545, 545, 550, 550, 550, 17, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 21, 550, 550, 550, 550, 550, 550, 550, 550, 550, 545, 551, 552, 545, 545, 545, 547, 545, 553, 549, 545, 545, 545, 545, 545, 545, 545, 550, 545, 550, 550, 61, 61, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 545, 551, 545, 552, 554, 54, 545, 545, 57, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 61, 545, 61, 61, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 545, 550, 550, 555, 545, 545, 545, 545, 545, 545, 545, 545, 61, 61, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 545, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 556, 545, 545, 545, 545, 545, 61, 545, 61, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 545, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 557, 545, 545, 545, 545, 545, 545, 550, 545, 545, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 545, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 558, 545, 545, 545, 545, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 545, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 559, 550, 550, 550, 550, 550, 550, 550, 550, 550, 545, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 560, 550, 550, 550, 550, 550, 550, 550, 550, 550, 550, 561, 550, 550, 550, 550, 550, 550, 562, 550, 550, 563, 550, 550, 545, 550, 550, 0, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545 } ; static yyconst flex_int16_t yy_nxt[4500] = { 0, 6, 7, 8, 9, 10, 11, 12, 13, 13, 14, 15, 15, 15, 15, 15, 15, 15, 15, 6, 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, 32, 41, 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, 32, 42, 6, 52, 53, 53, 53, 53, 53, 53, 53, 53, 54, 54, 54, 54, 54, 54, 54, 54, 55, 542, 56, 539, 536, 57, 58, 58, 58, 58, 58, 58, 58, 58, 59, 545, 529, 545, 61, 62, 545, 127, 63, 64, 236, 370, 545, 434, 545, 545, 65, 545, 66, 506, 100, 518, 496, 461, 403, 332, 545, 227, 67, 68, 131, 61, 62, 69, 127, 63, 64, 236, 370, 545, 434, 545, 49, 65, 545, 66, 506, 480, 129, 51, 48, 45, 129, 545, 80, 67, 68, 51, 81, 48, 69, 545, 82, 545, 46, 545, 545, 545, 70, 545, 545, 545, 45, 545, 545, 545, 71, 44, 44, 545, 72, 80, 545, 545, 92, 81, 545, 545, 545, 82, 73, 74, 545, 545, 545, 93, 545, 545, 545, 545, 545, 545, 545, 71, 545, 545, 545, 72, 545, 545, 545, 92, 545, 101, 545, 545, 545, 73, 74, 60, 545, 545, 93, 102, 545, 545, 545, 75, 545, 94, 545, 60, 545, 95, 545, 76, 545, 545, 545, 545, 101, 77, 78, 545, 79, 545, 545, 545, 545, 545, 102, 545, 545, 545, 75, 545, 94, 545, 60, 545, 95, 103, 76, 545, 545, 545, 545, 545, 77, 78, 545, 79, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 103, 83, 84, 545, 545, 105, 104, 545, 545, 545, 85, 545, 86, 106, 87, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 83, 84, 545, 545, 105, 104, 545, 545, 114, 85, 545, 86, 106, 87, 545, 545, 545, 112, 115, 545, 545, 545, 545, 113, 116, 545, 545, 545, 545, 88, 545, 545, 545, 545, 545, 114, 545, 89, 545, 90, 545, 545, 545, 91, 112, 115, 545, 545, 545, 545, 113, 116, 545, 545, 545, 545, 88, 545, 545, 545, 545, 545, 545, 545, 89, 545, 90, 545, 545, 545, 91, 545, 545, 545, 123, 121, 545, 122, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 96, 545, 545, 545, 97, 545, 545, 545, 545, 545, 98, 99, 545, 123, 121, 545, 122, 545, 124, 545, 545, 545, 545, 545, 125, 545, 545, 96, 545, 545, 545, 97, 545, 545, 545, 545, 545, 98, 99, 107, 126, 545, 545, 545, 545, 124, 108, 109, 545, 60, 545, 125, 545, 110, 545, 545, 111, 132, 132, 132, 132, 132, 132, 132, 132, 545, 107, 126, 545, 545, 545, 545, 545, 108, 109, 545, 60, 545, 545, 545, 110, 545, 545, 111, 545, 545, 545, 545, 545, 545, 150, 150, 150, 150, 150, 150, 150, 150, 545, 117, 545, 545, 545, 118, 545, 152, 152, 119, 153, 153, 153, 153, 153, 153, 153, 153, 120, 154, 154, 154, 154, 154, 154, 154, 154, 545, 117, 545, 545, 545, 118, 545, 545, 545, 119, 545, 545, 545, 545, 545, 159, 545, 545, 120, 133, 545, 134, 545, 545, 135, 53, 53, 53, 53, 53, 53, 53, 53, 59, 545, 545, 155, 136, 137, 545, 545, 138, 139, 545, 545, 545, 545, 545, 545, 140, 545, 141, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 155, 136, 137, 545, 545, 138, 139, 545, 545, 545, 156, 545, 545, 140, 545, 141, 142, 545, 143, 545, 545, 545, 54, 54, 54, 54, 54, 54, 54, 54, 545, 162, 545, 545, 144, 145, 545, 156, 545, 146, 545, 545, 545, 545, 545, 545, 147, 545, 148, 545, 545, 545, 545, 160, 545, 545, 545, 545, 162, 545, 545, 144, 145, 161, 545, 545, 146, 545, 545, 545, 163, 545, 545, 147, 545, 148, 55, 545, 56, 545, 160, 545, 54, 54, 54, 54, 54, 54, 54, 54, 161, 545, 545, 545, 149, 137, 545, 163, 545, 139, 545, 545, 545, 545, 545, 545, 140, 545, 141, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 149, 137, 545, 164, 545, 139, 545, 545, 545, 168, 545, 545, 140, 165, 141, 55, 545, 56, 545, 545, 57, 58, 58, 58, 58, 58, 58, 58, 58, 59, 164, 545, 545, 61, 62, 170, 168, 63, 64, 545, 165, 545, 545, 545, 545, 65, 545, 66, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 61, 62, 170, 545, 63, 64, 545, 175, 545, 545, 166, 167, 65, 545, 66, 545, 545, 545, 545, 545, 545, 151, 151, 151, 151, 151, 151, 151, 151, 545, 545, 545, 545, 545, 175, 545, 545, 166, 167, 545, 545, 545, 545, 545, 545, 545, 545, 157, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 169, 545, 158, 545, 545, 545, 545, 176, 545, 545, 545, 545, 177, 545, 157, 545, 545, 545, 545, 545, 545, 180, 178, 545, 545, 545, 545, 169, 545, 158, 545, 545, 545, 545, 176, 545, 545, 545, 545, 177, 545, 179, 545, 545, 545, 545, 171, 545, 180, 178, 545, 172, 545, 545, 545, 545, 173, 181, 545, 545, 545, 545, 545, 545, 174, 545, 545, 545, 179, 545, 545, 185, 186, 171, 545, 545, 545, 198, 172, 182, 545, 187, 545, 173, 181, 188, 183, 545, 545, 545, 545, 174, 545, 545, 545, 545, 545, 545, 184, 545, 545, 545, 545, 545, 198, 545, 182, 545, 187, 545, 545, 545, 188, 183, 189, 545, 190, 545, 545, 545, 545, 191, 545, 545, 545, 184, 192, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 189, 545, 190, 545, 195, 545, 193, 191, 545, 194, 545, 545, 192, 196, 545, 545, 545, 545, 545, 545, 197, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 195, 545, 193, 545, 545, 194, 545, 545, 545, 196, 545, 545, 545, 545, 545, 545, 545, 545, 199, 545, 545, 201, 545, 545, 545, 545, 545, 545, 545, 545, 200, 545, 545, 545, 545, 545, 545, 545, 545, 202, 545, 204, 545, 545, 545, 199, 545, 545, 201, 545, 545, 203, 206, 545, 545, 207, 545, 200, 545, 545, 205, 545, 208, 545, 545, 545, 202, 545, 204, 545, 545, 545, 545, 545, 545, 545, 545, 545, 203, 206, 545, 545, 207, 545, 545, 545, 545, 205, 545, 208, 209, 545, 211, 210, 545, 545, 545, 212, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 209, 545, 211, 210, 213, 545, 215, 212, 545, 214, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 213, 545, 215, 216, 545, 214, 217, 545, 545, 219, 545, 545, 545, 545, 545, 545, 218, 545, 545, 545, 220, 545, 545, 545, 545, 545, 221, 545, 545, 545, 216, 545, 545, 217, 545, 545, 219, 545, 545, 545, 222, 545, 545, 218, 545, 545, 545, 220, 545, 545, 545, 545, 545, 221, 545, 223, 545, 545, 545, 545, 224, 545, 225, 228, 545, 229, 545, 222, 545, 132, 132, 132, 132, 132, 132, 132, 132, 545, 545, 545, 545, 545, 223, 545, 133, 226, 134, 224, 545, 225, 132, 132, 132, 132, 132, 132, 132, 132, 230, 230, 230, 230, 230, 230, 230, 230, 545, 545, 545, 545, 152, 152, 226, 231, 231, 231, 231, 231, 231, 231, 231, 232, 232, 232, 232, 232, 232, 232, 232, 233, 233, 545, 234, 234, 234, 234, 234, 234, 234, 234, 150, 150, 150, 150, 150, 150, 150, 150, 235, 231, 231, 231, 231, 231, 231, 231, 231, 133, 545, 134, 545, 545, 545, 153, 153, 153, 153, 153, 153, 153, 153, 154, 154, 154, 154, 154, 154, 154, 154, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 237, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 238, 545, 545, 545, 545, 545, 545, 545, 243, 545, 239, 545, 545, 545, 237, 545, 545, 240, 545, 545, 242, 545, 545, 241, 545, 545, 244, 238, 545, 545, 245, 545, 545, 545, 545, 545, 545, 239, 545, 545, 545, 545, 545, 545, 240, 545, 246, 242, 545, 545, 241, 545, 545, 244, 545, 545, 545, 245, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 247, 545, 545, 545, 545, 246, 545, 545, 545, 249, 545, 545, 545, 545, 248, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 250, 545, 247, 545, 545, 545, 545, 545, 545, 545, 545, 249, 545, 545, 545, 545, 248, 545, 545, 252, 251, 545, 545, 545, 545, 545, 545, 250, 545, 254, 545, 545, 545, 545, 253, 545, 545, 545, 545, 545, 545, 545, 545, 255, 545, 545, 252, 251, 545, 257, 258, 545, 545, 545, 545, 256, 254, 545, 545, 545, 545, 253, 545, 545, 545, 545, 545, 545, 545, 545, 255, 545, 545, 545, 545, 545, 257, 258, 545, 259, 545, 260, 256, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 262, 545, 545, 545, 545, 545, 545, 261, 545, 545, 259, 545, 260, 545, 545, 545, 545, 545, 545, 545, 263, 545, 545, 545, 545, 545, 545, 262, 545, 265, 268, 545, 264, 545, 261, 266, 545, 545, 267, 545, 545, 545, 545, 545, 545, 545, 545, 263, 545, 545, 545, 545, 545, 545, 545, 545, 265, 545, 545, 264, 545, 545, 266, 545, 545, 267, 545, 545, 545, 545, 545, 545, 545, 271, 545, 269, 545, 545, 545, 270, 545, 545, 545, 545, 545, 272, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 273, 271, 545, 269, 545, 274, 545, 270, 545, 545, 545, 545, 545, 272, 545, 545, 545, 545, 545, 545, 545, 545, 545, 275, 545, 545, 545, 273, 545, 545, 545, 277, 274, 545, 545, 276, 545, 545, 545, 545, 278, 545, 545, 279, 545, 545, 545, 545, 545, 545, 275, 545, 545, 545, 545, 545, 545, 545, 277, 545, 545, 545, 276, 545, 545, 545, 545, 278, 545, 545, 545, 545, 545, 280, 281, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 282, 545, 545, 545, 545, 545, 280, 281, 545, 545, 545, 545, 545, 545, 545, 545, 283, 545, 284, 545, 545, 545, 545, 545, 545, 545, 545, 282, 545, 545, 545, 545, 545, 545, 545, 545, 545, 285, 545, 545, 545, 287, 545, 283, 545, 284, 545, 288, 545, 286, 545, 545, 545, 545, 545, 292, 545, 545, 545, 545, 545, 289, 290, 545, 285, 545, 545, 545, 287, 545, 545, 291, 545, 545, 288, 545, 286, 545, 545, 545, 545, 545, 292, 545, 293, 545, 545, 545, 289, 290, 545, 545, 545, 545, 545, 545, 545, 545, 291, 545, 295, 545, 545, 545, 545, 294, 545, 545, 545, 545, 545, 293, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 297, 295, 545, 545, 545, 545, 294, 296, 298, 545, 545, 299, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 297, 545, 300, 545, 301, 545, 545, 296, 298, 545, 545, 299, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 300, 302, 301, 545, 545, 545, 545, 545, 545, 545, 545, 133, 545, 134, 545, 545, 303, 231, 231, 231, 231, 231, 231, 231, 231, 331, 545, 545, 302, 234, 234, 234, 234, 234, 234, 234, 234, 545, 545, 545, 545, 545, 545, 303, 304, 60, 60, 60, 60, 60, 60, 60, 331, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 545, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 230, 230, 230, 230, 230, 230, 230, 230, 232, 232, 232, 232, 232, 232, 232, 232, 545, 545, 545, 545, 545, 333, 545, 545, 228, 545, 229, 545, 545, 334, 234, 234, 234, 234, 234, 234, 234, 234, 335, 336, 336, 336, 336, 336, 336, 336, 336, 545, 333, 545, 545, 545, 545, 545, 545, 545, 334, 337, 338, 338, 338, 338, 338, 338, 338, 338, 339, 340, 340, 340, 340, 340, 340, 340, 340, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 341, 545, 545, 545, 342, 545, 545, 343, 545, 545, 545, 545, 545, 344, 545, 346, 545, 545, 545, 545, 545, 545, 545, 545, 545, 345, 545, 341, 545, 545, 545, 342, 545, 545, 343, 545, 545, 347, 545, 545, 344, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 345, 545, 545, 545, 545, 545, 545, 351, 545, 348, 349, 545, 347, 545, 545, 350, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 351, 545, 348, 349, 545, 354, 352, 545, 350, 545, 545, 545, 545, 545, 545, 545, 353, 545, 545, 355, 545, 545, 545, 545, 545, 356, 545, 545, 545, 545, 545, 545, 354, 352, 545, 545, 545, 545, 545, 545, 545, 545, 545, 353, 545, 545, 355, 545, 357, 545, 545, 545, 356, 545, 545, 545, 545, 359, 545, 545, 545, 358, 545, 545, 545, 545, 545, 545, 545, 545, 360, 545, 545, 545, 545, 357, 545, 545, 545, 362, 545, 545, 545, 545, 359, 545, 545, 545, 358, 545, 545, 545, 361, 545, 545, 363, 545, 360, 545, 545, 545, 545, 545, 545, 545, 545, 362, 545, 545, 545, 545, 545, 545, 545, 545, 364, 366, 545, 545, 361, 545, 365, 363, 545, 545, 545, 545, 545, 367, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 364, 366, 545, 368, 545, 545, 365, 545, 545, 545, 545, 545, 545, 367, 545, 545, 545, 545, 545, 545, 369, 545, 545, 545, 545, 371, 545, 545, 545, 545, 368, 545, 545, 545, 372, 545, 545, 545, 545, 545, 545, 545, 373, 545, 545, 545, 545, 369, 545, 545, 545, 545, 371, 545, 545, 545, 545, 545, 545, 545, 545, 372, 545, 545, 374, 545, 545, 545, 545, 373, 545, 545, 375, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 376, 545, 379, 545, 377, 374, 545, 545, 545, 545, 545, 545, 545, 375, 545, 545, 545, 545, 545, 545, 545, 380, 545, 545, 378, 545, 545, 376, 545, 545, 545, 377, 545, 545, 545, 545, 545, 545, 381, 545, 545, 545, 545, 545, 545, 545, 545, 545, 380, 545, 545, 378, 545, 382, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 381, 383, 545, 385, 545, 545, 545, 545, 545, 545, 384, 386, 387, 545, 545, 382, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 383, 545, 385, 545, 545, 545, 545, 545, 545, 384, 386, 387, 545, 545, 545, 545, 545, 545, 545, 389, 545, 545, 545, 388, 545, 545, 545, 545, 545, 545, 545, 545, 391, 545, 545, 545, 545, 392, 545, 545, 545, 545, 545, 545, 390, 393, 389, 545, 545, 545, 388, 545, 545, 545, 545, 545, 545, 545, 545, 391, 545, 545, 545, 545, 392, 545, 395, 545, 545, 545, 394, 390, 393, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 396, 545, 545, 545, 545, 545, 545, 545, 545, 545, 395, 545, 397, 545, 394, 545, 545, 545, 545, 545, 545, 545, 545, 398, 545, 545, 545, 396, 545, 545, 545, 545, 545, 545, 545, 399, 545, 545, 545, 397, 401, 545, 545, 545, 545, 400, 545, 545, 545, 545, 398, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 399, 545, 545, 545, 545, 401, 545, 545, 545, 545, 400, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 402, 337, 404, 404, 404, 404, 404, 404, 404, 404, 339, 405, 405, 405, 405, 405, 405, 405, 405, 406, 406, 406, 406, 406, 406, 406, 406, 402, 407, 336, 336, 336, 336, 336, 336, 336, 336, 408, 408, 408, 408, 408, 408, 408, 408, 409, 338, 338, 338, 338, 338, 338, 338, 338, 411, 411, 411, 411, 411, 411, 411, 411, 412, 340, 340, 340, 340, 340, 340, 340, 340, 545, 545, 410, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 413, 545, 414, 545, 545, 545, 545, 545, 545, 545, 410, 545, 545, 545, 545, 545, 545, 545, 416, 545, 545, 545, 545, 417, 415, 545, 545, 413, 545, 414, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 416, 418, 545, 545, 545, 417, 415, 545, 420, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 419, 545, 545, 421, 545, 545, 545, 418, 545, 545, 545, 422, 545, 545, 420, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 419, 545, 545, 421, 545, 545, 545, 545, 545, 545, 545, 422, 545, 545, 425, 545, 545, 545, 545, 545, 545, 423, 545, 545, 545, 424, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 426, 545, 545, 425, 545, 545, 545, 427, 545, 545, 423, 428, 545, 545, 424, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 426, 545, 545, 545, 545, 545, 429, 427, 545, 545, 545, 428, 545, 545, 545, 545, 430, 545, 545, 545, 545, 545, 545, 431, 545, 545, 545, 433, 545, 432, 545, 545, 545, 429, 545, 545, 545, 545, 545, 545, 545, 545, 545, 430, 545, 545, 545, 545, 545, 545, 431, 545, 545, 545, 433, 545, 432, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 435, 438, 437, 545, 545, 545, 436, 545, 545, 545, 545, 545, 439, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 440, 545, 545, 435, 438, 437, 545, 545, 545, 436, 441, 545, 545, 545, 545, 439, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 440, 545, 545, 545, 545, 545, 545, 545, 443, 545, 441, 545, 545, 545, 545, 545, 442, 545, 545, 545, 545, 545, 545, 545, 545, 444, 545, 545, 545, 545, 545, 545, 545, 545, 446, 443, 545, 545, 545, 545, 545, 545, 445, 442, 545, 545, 545, 545, 545, 545, 545, 545, 444, 545, 545, 545, 447, 545, 448, 545, 545, 446, 545, 545, 545, 545, 545, 545, 545, 445, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 447, 449, 448, 545, 545, 545, 545, 450, 545, 452, 545, 545, 545, 545, 451, 545, 545, 545, 545, 545, 545, 545, 545, 545, 453, 545, 545, 545, 449, 545, 545, 545, 545, 545, 450, 545, 452, 545, 545, 454, 545, 451, 545, 545, 545, 545, 545, 455, 545, 545, 545, 453, 545, 545, 545, 545, 545, 456, 545, 545, 545, 545, 545, 545, 545, 545, 454, 457, 545, 545, 545, 545, 545, 458, 455, 545, 545, 545, 545, 545, 545, 545, 545, 545, 456, 545, 545, 545, 545, 545, 459, 545, 545, 545, 457, 545, 545, 545, 545, 545, 458, 545, 545, 545, 460, 409, 404, 404, 404, 404, 404, 404, 404, 404, 545, 545, 545, 459, 412, 405, 405, 405, 405, 405, 405, 405, 405, 545, 545, 545, 545, 460, 545, 462, 406, 406, 406, 406, 406, 406, 406, 406, 545, 545, 545, 545, 463, 406, 406, 406, 406, 406, 406, 406, 406, 545, 545, 545, 545, 545, 462, 408, 408, 408, 408, 408, 408, 408, 408, 545, 545, 545, 545, 463, 408, 408, 408, 408, 408, 408, 408, 408, 545, 545, 545, 545, 545, 545, 464, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 462, 411, 411, 411, 411, 411, 411, 411, 411, 545, 545, 545, 545, 545, 464, 411, 411, 411, 411, 411, 411, 411, 411, 545, 545, 545, 545, 462, 465, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 463, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 466, 545, 465, 545, 545, 545, 545, 545, 545, 545, 545, 467, 545, 545, 545, 545, 463, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 466, 545, 469, 468, 545, 545, 545, 545, 545, 470, 545, 467, 545, 545, 545, 545, 545, 471, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 469, 468, 545, 545, 545, 545, 545, 470, 545, 545, 545, 545, 473, 545, 545, 545, 545, 545, 472, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 473, 545, 545, 545, 545, 545, 472, 545, 474, 545, 545, 545, 545, 545, 545, 475, 545, 545, 545, 476, 545, 545, 545, 545, 545, 477, 545, 545, 545, 545, 545, 545, 545, 545, 545, 474, 545, 545, 545, 545, 545, 478, 475, 479, 545, 545, 476, 545, 545, 545, 545, 545, 477, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 478, 545, 479, 545, 481, 545, 545, 545, 482, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 481, 545, 545, 484, 482, 545, 545, 545, 545, 545, 483, 545, 485, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 484, 545, 545, 545, 545, 545, 545, 483, 545, 485, 545, 545, 486, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 487, 488, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 486, 545, 545, 545, 545, 545, 545, 545, 545, 489, 545, 490, 487, 488, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 491, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 489, 545, 490, 545, 545, 545, 494, 545, 493, 545, 545, 545, 492, 545, 545, 491, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 494, 545, 493, 497, 495, 545, 492, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 498, 545, 545, 545, 497, 495, 545, 499, 545, 545, 500, 545, 545, 545, 545, 545, 545, 545, 545, 501, 545, 545, 545, 545, 545, 545, 545, 498, 545, 545, 545, 545, 545, 545, 499, 545, 545, 500, 545, 545, 545, 545, 545, 545, 545, 545, 501, 545, 545, 545, 502, 545, 545, 545, 545, 545, 545, 545, 503, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 504, 505, 545, 545, 545, 545, 502, 545, 507, 545, 545, 545, 545, 545, 503, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 504, 505, 545, 509, 545, 545, 508, 545, 507, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 509, 510, 545, 508, 545, 545, 511, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 510, 512, 545, 513, 545, 511, 545, 514, 545, 515, 545, 516, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 512, 545, 513, 545, 545, 545, 514, 545, 515, 545, 516, 545, 545, 545, 545, 545, 517, 545, 545, 545, 545, 545, 519, 545, 545, 545, 545, 545, 545, 545, 545, 545, 521, 545, 545, 520, 545, 545, 545, 545, 545, 545, 545, 517, 545, 545, 545, 545, 545, 519, 522, 545, 545, 545, 545, 545, 545, 545, 545, 521, 545, 545, 520, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 522, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 523, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 525, 545, 545, 524, 545, 545, 545, 545, 545, 523, 526, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 525, 545, 545, 524, 545, 545, 545, 545, 545, 527, 526, 545, 545, 528, 545, 545, 545, 545, 545, 545, 530, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 527, 545, 545, 545, 528, 545, 545, 545, 545, 545, 545, 530, 545, 545, 545, 545, 545, 531, 545, 532, 545, 545, 545, 545, 533, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 534, 545, 545, 545, 545, 545, 545, 531, 535, 532, 545, 545, 545, 545, 533, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 534, 545, 545, 537, 545, 545, 545, 545, 535, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 538, 545, 545, 545, 545, 545, 540, 545, 537, 545, 541, 545, 545, 545, 545, 545, 545, 545, 545, 543, 545, 545, 545, 545, 545, 545, 544, 538, 545, 545, 545, 545, 545, 540, 545, 545, 545, 541, 545, 545, 545, 545, 545, 545, 545, 545, 543, 545, 545, 545, 545, 545, 545, 544, 43, 43, 43, 43, 47, 545, 47, 47, 50, 545, 50, 50, 60, 60, 128, 545, 128, 128, 130, 545, 130, 130, 5, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545 } ; static yyconst flex_int16_t yy_chk[4500] = { 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, 1, 1, 1, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 15, 563, 15, 562, 561, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 16, 560, 16, 15, 15, 16, 41, 15, 15, 151, 268, 25, 370, 25, 16, 15, 25, 15, 480, 25, 559, 558, 557, 556, 555, 25, 554, 16, 16, 553, 15, 15, 16, 41, 15, 15, 151, 268, 19, 370, 19, 548, 15, 19, 15, 480, 434, 128, 50, 47, 45, 42, 19, 19, 16, 16, 12, 19, 10, 16, 17, 19, 17, 9, 32, 17, 32, 17, 22, 32, 22, 7, 5, 22, 17, 17, 4, 3, 32, 17, 19, 0, 22, 22, 19, 0, 0, 0, 19, 17, 17, 0, 0, 26, 22, 26, 0, 0, 26, 27, 0, 27, 17, 0, 27, 0, 17, 26, 0, 23, 22, 23, 26, 27, 23, 0, 17, 17, 18, 0, 0, 22, 27, 23, 0, 0, 18, 0, 23, 0, 18, 28, 23, 28, 18, 0, 28, 0, 0, 26, 18, 18, 39, 18, 39, 28, 0, 39, 0, 27, 0, 0, 0, 18, 0, 23, 39, 18, 0, 23, 28, 18, 0, 0, 29, 0, 29, 18, 18, 29, 18, 20, 30, 20, 30, 0, 20, 30, 29, 0, 0, 0, 0, 0, 0, 20, 30, 28, 20, 20, 0, 0, 30, 29, 0, 0, 0, 20, 0, 20, 30, 20, 0, 33, 34, 33, 34, 0, 33, 34, 0, 0, 0, 0, 0, 20, 20, 33, 34, 30, 29, 0, 0, 34, 20, 0, 20, 30, 20, 21, 0, 21, 33, 34, 21, 60, 0, 60, 33, 34, 60, 0, 0, 21, 21, 0, 0, 0, 0, 60, 34, 0, 21, 0, 21, 0, 0, 0, 21, 33, 34, 0, 36, 0, 36, 33, 34, 36, 0, 0, 37, 21, 37, 0, 0, 37, 36, 0, 0, 21, 0, 21, 0, 0, 37, 21, 24, 0, 24, 37, 36, 24, 36, 0, 64, 0, 64, 0, 0, 64, 24, 0, 0, 24, 38, 0, 38, 24, 64, 38, 0, 0, 0, 24, 24, 0, 37, 36, 38, 36, 0, 38, 0, 65, 40, 65, 40, 38, 65, 40, 24, 66, 0, 66, 24, 0, 66, 65, 40, 0, 24, 24, 31, 40, 0, 66, 0, 0, 38, 31, 31, 0, 31, 0, 38, 0, 31, 0, 0, 31, 52, 52, 52, 52, 52, 52, 52, 52, 0, 31, 40, 0, 0, 0, 0, 0, 31, 31, 0, 31, 0, 0, 0, 31, 0, 0, 31, 35, 0, 35, 0, 0, 35, 59, 59, 59, 59, 59, 59, 59, 59, 35, 35, 0, 0, 0, 35, 0, 62, 62, 35, 62, 62, 62, 62, 62, 62, 62, 62, 35, 63, 63, 63, 63, 63, 63, 63, 63, 0, 35, 70, 0, 70, 35, 67, 70, 67, 35, 0, 67, 0, 0, 0, 70, 70, 0, 35, 53, 67, 53, 0, 0, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 0, 0, 67, 53, 53, 0, 0, 53, 53, 0, 0, 68, 0, 68, 0, 53, 68, 53, 104, 0, 104, 0, 73, 104, 73, 68, 0, 73, 0, 67, 53, 53, 104, 0, 53, 53, 73, 0, 0, 68, 0, 0, 53, 0, 53, 54, 0, 54, 0, 0, 0, 54, 54, 54, 54, 54, 54, 54, 54, 0, 73, 0, 0, 54, 54, 71, 68, 71, 54, 0, 71, 72, 0, 72, 0, 54, 72, 54, 0, 71, 0, 0, 71, 0, 74, 72, 74, 73, 0, 74, 54, 54, 72, 0, 0, 54, 0, 0, 74, 74, 0, 0, 54, 0, 54, 57, 0, 57, 0, 71, 0, 57, 57, 57, 57, 57, 57, 57, 57, 72, 106, 0, 106, 57, 57, 106, 74, 75, 57, 75, 0, 76, 75, 76, 106, 57, 76, 57, 0, 0, 0, 75, 0, 0, 78, 76, 78, 0, 0, 78, 57, 57, 80, 75, 80, 57, 0, 80, 78, 78, 0, 0, 57, 76, 57, 58, 80, 58, 0, 0, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 75, 0, 0, 58, 58, 80, 78, 58, 58, 0, 76, 0, 0, 0, 77, 58, 77, 58, 0, 77, 0, 0, 82, 0, 82, 0, 0, 82, 77, 0, 58, 58, 80, 0, 58, 58, 82, 82, 0, 0, 77, 77, 58, 0, 58, 61, 0, 61, 0, 0, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 69, 79, 69, 79, 82, 69, 79, 77, 77, 0, 0, 83, 0, 83, 69, 79, 83, 69, 0, 84, 0, 84, 0, 0, 84, 83, 85, 0, 85, 0, 79, 85, 69, 84, 0, 0, 87, 83, 87, 0, 85, 87, 84, 0, 69, 0, 0, 0, 0, 0, 87, 87, 85, 86, 0, 86, 0, 79, 86, 69, 81, 88, 81, 88, 83, 81, 88, 86, 101, 84, 101, 86, 0, 101, 81, 88, 81, 0, 87, 85, 0, 81, 101, 91, 0, 91, 81, 88, 91, 0, 89, 90, 89, 90, 81, 89, 90, 91, 86, 0, 0, 90, 90, 81, 89, 90, 0, 101, 81, 89, 0, 91, 0, 81, 88, 91, 89, 93, 92, 93, 92, 81, 93, 92, 0, 94, 0, 94, 89, 0, 94, 93, 92, 0, 101, 95, 89, 95, 91, 94, 95, 0, 91, 89, 92, 96, 93, 96, 0, 95, 96, 94, 97, 0, 97, 89, 95, 97, 0, 96, 98, 0, 98, 0, 0, 98, 97, 99, 0, 99, 0, 92, 99, 93, 98, 98, 0, 96, 94, 0, 97, 99, 0, 95, 99, 100, 0, 100, 0, 0, 100, 100, 102, 0, 102, 0, 103, 102, 103, 100, 0, 103, 98, 105, 96, 105, 102, 97, 105, 0, 103, 99, 0, 107, 108, 107, 108, 105, 107, 108, 102, 0, 0, 105, 109, 0, 109, 107, 108, 109, 0, 110, 103, 110, 0, 111, 110, 111, 109, 0, 111, 107, 0, 109, 0, 110, 0, 102, 0, 111, 105, 0, 0, 108, 110, 0, 0, 110, 112, 103, 112, 0, 109, 112, 111, 0, 0, 0, 107, 113, 109, 113, 112, 114, 113, 114, 0, 0, 114, 0, 108, 110, 0, 113, 110, 0, 0, 114, 115, 109, 115, 111, 112, 115, 114, 113, 0, 0, 116, 114, 116, 0, 115, 116, 117, 0, 117, 0, 0, 117, 0, 0, 116, 0, 0, 118, 0, 118, 117, 112, 118, 114, 113, 115, 0, 117, 114, 0, 116, 118, 119, 120, 119, 120, 0, 119, 120, 121, 0, 121, 0, 0, 121, 0, 119, 120, 0, 0, 0, 0, 115, 121, 117, 118, 0, 116, 119, 0, 122, 121, 122, 0, 0, 122, 0, 0, 120, 0, 0, 0, 121, 0, 122, 123, 0, 123, 122, 124, 123, 124, 118, 0, 124, 119, 0, 0, 121, 123, 0, 0, 123, 124, 0, 120, 125, 0, 125, 121, 0, 125, 0, 0, 126, 122, 126, 123, 0, 126, 125, 0, 124, 0, 125, 132, 0, 132, 126, 123, 0, 132, 132, 132, 132, 132, 132, 132, 132, 0, 0, 0, 0, 0, 123, 0, 135, 126, 135, 124, 0, 125, 135, 135, 135, 135, 135, 135, 135, 135, 136, 136, 136, 136, 136, 136, 136, 136, 0, 0, 0, 0, 137, 137, 126, 137, 137, 137, 137, 137, 137, 137, 137, 138, 138, 138, 138, 138, 138, 138, 138, 145, 145, 0, 145, 145, 145, 145, 145, 145, 145, 145, 150, 150, 150, 150, 150, 150, 150, 150, 150, 152, 152, 152, 152, 152, 152, 152, 152, 153, 0, 153, 0, 0, 0, 153, 153, 153, 153, 153, 153, 153, 153, 154, 154, 154, 154, 154, 154, 154, 154, 155, 156, 155, 156, 0, 155, 156, 0, 0, 0, 0, 0, 0, 154, 155, 156, 157, 158, 157, 158, 0, 157, 158, 159, 0, 159, 155, 160, 159, 160, 157, 158, 160, 161, 159, 161, 156, 159, 161, 0, 154, 160, 0, 157, 0, 0, 158, 161, 0, 157, 0, 0, 160, 155, 0, 162, 161, 162, 0, 0, 162, 0, 0, 156, 0, 0, 163, 0, 163, 162, 157, 163, 162, 158, 0, 0, 157, 0, 0, 160, 163, 0, 164, 161, 164, 0, 165, 164, 165, 0, 166, 165, 166, 0, 163, 166, 164, 0, 0, 162, 165, 0, 0, 165, 166, 0, 0, 0, 164, 167, 168, 167, 168, 0, 167, 168, 0, 0, 0, 166, 169, 163, 169, 167, 168, 169, 170, 171, 170, 171, 165, 170, 171, 0, 169, 164, 0, 0, 168, 167, 170, 171, 172, 0, 172, 0, 166, 172, 170, 173, 174, 173, 174, 169, 173, 174, 172, 0, 0, 0, 0, 0, 171, 173, 174, 168, 167, 0, 173, 174, 0, 175, 0, 175, 172, 170, 175, 176, 0, 176, 169, 0, 176, 0, 0, 175, 0, 0, 177, 171, 177, 176, 178, 177, 178, 173, 174, 178, 175, 0, 176, 172, 177, 179, 0, 179, 178, 180, 179, 180, 0, 0, 180, 0, 181, 178, 181, 179, 182, 181, 182, 180, 177, 182, 183, 175, 183, 176, 181, 183, 0, 0, 182, 0, 184, 180, 184, 0, 183, 184, 0, 185, 178, 185, 182, 185, 185, 181, 184, 177, 183, 0, 186, 184, 186, 185, 187, 186, 187, 0, 0, 187, 180, 0, 0, 0, 186, 188, 0, 188, 187, 182, 188, 189, 181, 189, 0, 183, 189, 0, 184, 188, 0, 0, 190, 0, 190, 189, 189, 190, 187, 191, 0, 191, 188, 0, 191, 192, 190, 192, 190, 0, 192, 0, 193, 191, 193, 0, 0, 193, 0, 192, 0, 0, 191, 189, 0, 187, 193, 192, 194, 188, 194, 0, 195, 194, 195, 190, 196, 195, 196, 0, 0, 196, 194, 0, 0, 193, 195, 0, 0, 191, 196, 0, 0, 195, 192, 0, 0, 194, 0, 197, 0, 197, 196, 0, 197, 197, 0, 0, 0, 198, 0, 198, 193, 197, 198, 0, 199, 200, 199, 200, 195, 199, 200, 198, 194, 0, 0, 0, 0, 196, 199, 200, 201, 0, 201, 199, 200, 201, 202, 203, 202, 203, 0, 202, 203, 204, 201, 204, 0, 0, 204, 0, 202, 203, 0, 205, 202, 205, 0, 204, 205, 0, 199, 200, 0, 206, 207, 206, 207, 205, 206, 207, 203, 208, 205, 208, 0, 0, 208, 206, 207, 0, 0, 202, 211, 0, 211, 208, 0, 211, 0, 0, 0, 206, 0, 0, 0, 208, 211, 203, 0, 205, 209, 208, 209, 207, 0, 209, 210, 0, 210, 211, 0, 210, 0, 0, 209, 209, 209, 0, 206, 212, 210, 212, 208, 0, 212, 210, 0, 213, 208, 213, 207, 0, 213, 212, 0, 214, 211, 214, 212, 0, 214, 213, 209, 209, 0, 0, 215, 0, 215, 214, 0, 215, 210, 216, 214, 216, 0, 0, 216, 213, 215, 217, 0, 217, 0, 212, 217, 216, 219, 218, 219, 218, 0, 219, 218, 217, 0, 0, 0, 0, 217, 214, 219, 218, 0, 0, 213, 216, 218, 0, 220, 219, 220, 0, 0, 220, 221, 0, 221, 0, 0, 221, 0, 222, 220, 222, 0, 217, 222, 220, 221, 221, 0, 0, 216, 218, 0, 222, 219, 223, 226, 223, 226, 0, 223, 226, 261, 225, 261, 225, 0, 261, 225, 223, 226, 0, 220, 222, 221, 0, 261, 225, 0, 0, 0, 0, 0, 231, 0, 231, 0, 0, 223, 231, 231, 231, 231, 231, 231, 231, 231, 225, 0, 0, 222, 233, 233, 233, 233, 233, 233, 233, 233, 0, 0, 0, 0, 0, 0, 223, 224, 224, 224, 224, 224, 224, 224, 224, 225, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 0, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 230, 230, 230, 230, 230, 230, 230, 230, 232, 232, 232, 232, 232, 232, 232, 232, 0, 0, 0, 0, 0, 230, 0, 0, 234, 0, 234, 0, 0, 232, 234, 234, 234, 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235, 235, 0, 230, 0, 0, 0, 0, 0, 0, 0, 232, 236, 236, 236, 236, 236, 236, 236, 236, 236, 237, 237, 237, 237, 237, 237, 237, 237, 237, 238, 239, 238, 239, 0, 238, 239, 240, 0, 240, 0, 242, 240, 242, 238, 239, 242, 241, 0, 241, 0, 240, 241, 238, 0, 242, 0, 239, 0, 0, 240, 241, 243, 0, 243, 0, 241, 243, 243, 244, 0, 244, 0, 0, 244, 0, 243, 0, 242, 0, 238, 0, 0, 244, 239, 0, 245, 240, 245, 0, 244, 245, 246, 241, 246, 0, 248, 246, 248, 0, 245, 248, 247, 0, 247, 242, 246, 247, 0, 0, 248, 0, 248, 0, 245, 246, 247, 244, 0, 249, 247, 249, 0, 250, 249, 250, 0, 0, 250, 251, 0, 251, 0, 249, 251, 0, 0, 250, 0, 248, 0, 245, 246, 251, 251, 249, 252, 247, 252, 0, 0, 252, 0, 0, 253, 250, 253, 0, 251, 253, 252, 0, 0, 0, 252, 0, 0, 0, 253, 0, 0, 251, 249, 0, 254, 255, 254, 255, 0, 254, 255, 0, 250, 0, 0, 251, 0, 253, 254, 255, 256, 252, 256, 0, 0, 256, 255, 257, 0, 257, 254, 258, 257, 258, 256, 259, 258, 259, 0, 256, 259, 257, 0, 0, 253, 258, 0, 0, 258, 259, 0, 0, 0, 255, 260, 0, 260, 254, 0, 260, 262, 257, 262, 0, 259, 262, 256, 263, 260, 263, 0, 0, 263, 0, 262, 258, 0, 0, 264, 0, 264, 263, 0, 264, 260, 263, 0, 0, 257, 0, 262, 259, 264, 0, 0, 0, 265, 264, 265, 0, 0, 265, 266, 0, 266, 0, 0, 266, 0, 0, 265, 260, 263, 267, 265, 267, 266, 262, 267, 0, 269, 270, 269, 270, 264, 269, 270, 267, 271, 0, 271, 267, 0, 271, 269, 270, 270, 0, 272, 0, 272, 265, 271, 272, 0, 271, 273, 0, 273, 0, 0, 273, 272, 272, 0, 0, 0, 274, 267, 274, 273, 0, 274, 270, 275, 276, 275, 276, 0, 275, 276, 274, 271, 0, 0, 273, 0, 0, 275, 276, 272, 0, 277, 274, 277, 0, 278, 277, 278, 0, 0, 278, 0, 279, 0, 279, 277, 276, 279, 279, 278, 277, 273, 280, 0, 280, 0, 279, 280, 281, 274, 281, 0, 0, 281, 0, 0, 280, 280, 0, 282, 278, 282, 281, 276, 282, 0, 283, 277, 283, 0, 0, 283, 0, 282, 282, 0, 284, 285, 284, 285, 283, 284, 285, 286, 280, 286, 0, 278, 286, 283, 284, 285, 0, 287, 288, 287, 288, 286, 287, 288, 0, 282, 284, 0, 286, 0, 0, 287, 288, 0, 0, 285, 287, 288, 0, 0, 283, 0, 289, 290, 289, 290, 0, 289, 290, 0, 0, 0, 0, 284, 0, 286, 289, 290, 0, 0, 0, 0, 285, 287, 288, 291, 292, 291, 292, 0, 291, 292, 290, 293, 0, 293, 289, 0, 293, 291, 292, 294, 0, 294, 0, 292, 294, 293, 0, 0, 293, 295, 0, 295, 0, 294, 295, 291, 294, 290, 0, 0, 0, 289, 296, 295, 296, 0, 297, 296, 297, 0, 292, 297, 0, 0, 0, 293, 296, 296, 0, 0, 297, 295, 291, 294, 298, 299, 298, 299, 0, 298, 299, 300, 0, 300, 296, 301, 300, 301, 298, 299, 301, 0, 0, 0, 296, 300, 299, 0, 295, 301, 302, 303, 302, 303, 0, 302, 303, 300, 304, 0, 304, 296, 0, 304, 302, 303, 305, 0, 305, 301, 0, 305, 304, 299, 303, 0, 306, 0, 306, 302, 305, 306, 0, 307, 300, 307, 0, 0, 307, 308, 306, 308, 0, 309, 308, 309, 301, 307, 309, 0, 310, 303, 310, 308, 0, 310, 302, 309, 311, 0, 311, 0, 0, 311, 310, 312, 313, 312, 313, 0, 312, 313, 311, 314, 0, 314, 0, 0, 314, 312, 313, 315, 0, 315, 0, 0, 315, 314, 316, 317, 316, 317, 0, 316, 317, 315, 318, 0, 318, 0, 0, 318, 316, 317, 319, 0, 319, 0, 0, 319, 318, 320, 321, 320, 321, 0, 320, 321, 319, 322, 0, 322, 0, 0, 322, 320, 321, 323, 0, 323, 0, 0, 323, 322, 324, 325, 324, 325, 0, 324, 325, 323, 326, 0, 326, 0, 0, 326, 324, 325, 327, 0, 327, 0, 0, 327, 326, 328, 329, 328, 329, 0, 328, 329, 327, 330, 0, 330, 0, 0, 330, 328, 329, 331, 0, 331, 0, 0, 331, 330, 345, 0, 345, 0, 0, 345, 0, 331, 0, 0, 0, 0, 0, 0, 345, 331, 333, 333, 333, 333, 333, 333, 333, 333, 333, 334, 334, 334, 334, 334, 334, 334, 334, 334, 335, 335, 335, 335, 335, 335, 335, 335, 331, 336, 336, 336, 336, 336, 336, 336, 336, 336, 337, 337, 337, 337, 337, 337, 337, 337, 338, 338, 338, 338, 338, 338, 338, 338, 338, 339, 339, 339, 339, 339, 339, 339, 339, 340, 340, 340, 340, 340, 340, 340, 340, 340, 0, 341, 338, 341, 0, 0, 341, 0, 342, 343, 342, 343, 0, 342, 343, 341, 0, 0, 0, 340, 0, 341, 342, 343, 0, 344, 346, 344, 346, 338, 344, 346, 0, 347, 0, 347, 0, 343, 347, 344, 346, 0, 344, 342, 0, 0, 340, 347, 341, 348, 0, 348, 0, 349, 348, 349, 0, 350, 349, 350, 0, 0, 350, 348, 343, 347, 0, 349, 0, 344, 342, 350, 350, 351, 0, 351, 0, 352, 351, 352, 0, 353, 352, 353, 0, 349, 353, 351, 351, 0, 0, 352, 347, 0, 0, 353, 352, 0, 0, 350, 354, 0, 354, 0, 355, 354, 355, 0, 0, 355, 0, 356, 349, 356, 354, 351, 356, 357, 355, 357, 0, 0, 357, 352, 0, 356, 356, 358, 0, 358, 0, 357, 358, 354, 359, 0, 359, 355, 360, 359, 360, 358, 361, 360, 361, 0, 0, 361, 359, 362, 358, 362, 360, 356, 362, 0, 361, 360, 0, 0, 354, 361, 0, 362, 355, 363, 364, 363, 364, 0, 363, 364, 0, 365, 0, 365, 0, 358, 365, 363, 364, 0, 0, 362, 360, 0, 0, 365, 361, 366, 0, 366, 0, 363, 366, 0, 0, 367, 0, 367, 364, 0, 367, 366, 366, 0, 365, 368, 0, 368, 362, 367, 368, 0, 369, 0, 369, 0, 0, 369, 363, 368, 0, 0, 371, 0, 371, 364, 369, 371, 372, 366, 372, 365, 373, 372, 373, 0, 371, 373, 374, 377, 374, 377, 372, 374, 377, 375, 373, 375, 0, 0, 375, 0, 374, 377, 0, 0, 371, 374, 373, 375, 0, 376, 372, 376, 0, 379, 376, 379, 375, 0, 379, 0, 378, 0, 378, 376, 0, 378, 0, 379, 376, 0, 0, 371, 374, 373, 378, 0, 0, 372, 378, 380, 381, 380, 381, 375, 380, 381, 382, 383, 382, 383, 0, 382, 383, 380, 381, 376, 0, 0, 0, 0, 382, 383, 384, 382, 384, 378, 0, 384, 385, 0, 385, 380, 386, 385, 386, 0, 384, 386, 0, 387, 383, 387, 385, 0, 387, 0, 386, 0, 0, 386, 382, 0, 0, 387, 388, 0, 388, 385, 380, 388, 390, 389, 390, 389, 0, 390, 389, 383, 388, 0, 0, 387, 0, 388, 390, 389, 386, 391, 392, 391, 392, 0, 391, 392, 385, 0, 0, 0, 393, 0, 393, 391, 392, 393, 0, 0, 0, 0, 387, 389, 388, 394, 393, 394, 0, 391, 394, 393, 0, 395, 0, 395, 392, 0, 395, 394, 396, 0, 396, 0, 0, 396, 394, 395, 0, 0, 389, 0, 0, 0, 396, 0, 391, 397, 393, 397, 0, 395, 397, 392, 0, 0, 0, 0, 0, 396, 398, 397, 398, 394, 0, 398, 399, 0, 399, 397, 400, 399, 400, 0, 398, 400, 0, 0, 395, 398, 399, 0, 0, 0, 400, 399, 396, 401, 0, 401, 0, 0, 401, 402, 0, 402, 397, 0, 402, 0, 0, 401, 400, 0, 0, 0, 398, 402, 0, 0, 0, 0, 399, 0, 0, 0, 401, 404, 404, 404, 404, 404, 404, 404, 404, 404, 0, 0, 0, 400, 405, 405, 405, 405, 405, 405, 405, 405, 405, 0, 0, 0, 0, 401, 0, 404, 406, 406, 406, 406, 406, 406, 406, 406, 0, 0, 0, 0, 405, 407, 407, 407, 407, 407, 407, 407, 407, 0, 0, 0, 0, 0, 404, 408, 408, 408, 408, 408, 408, 408, 408, 0, 0, 0, 0, 405, 409, 409, 409, 409, 409, 409, 409, 409, 410, 0, 410, 0, 0, 410, 408, 0, 0, 0, 0, 0, 0, 0, 410, 0, 0, 0, 0, 409, 411, 411, 411, 411, 411, 411, 411, 411, 0, 0, 0, 0, 0, 408, 412, 412, 412, 412, 412, 412, 412, 412, 0, 413, 0, 413, 409, 411, 413, 414, 415, 414, 415, 0, 414, 415, 0, 413, 0, 0, 0, 412, 0, 414, 415, 416, 417, 416, 417, 0, 416, 417, 414, 418, 411, 418, 0, 0, 418, 416, 417, 0, 0, 415, 419, 0, 419, 418, 412, 419, 420, 421, 420, 421, 0, 420, 421, 0, 419, 414, 0, 419, 418, 0, 420, 421, 0, 422, 421, 422, 415, 0, 422, 423, 0, 423, 422, 424, 423, 424, 0, 422, 424, 0, 0, 0, 0, 423, 419, 418, 0, 424, 0, 0, 425, 421, 425, 0, 0, 425, 424, 0, 426, 0, 426, 0, 423, 426, 425, 427, 428, 427, 428, 0, 427, 428, 426, 429, 0, 429, 0, 0, 429, 427, 428, 0, 0, 424, 0, 0, 0, 429, 0, 423, 430, 426, 430, 0, 0, 430, 0, 0, 427, 0, 0, 431, 429, 431, 430, 0, 431, 432, 430, 432, 0, 0, 432, 0, 433, 431, 433, 0, 426, 433, 0, 432, 0, 0, 431, 427, 432, 0, 433, 429, 0, 435, 436, 435, 436, 430, 435, 436, 437, 0, 437, 0, 438, 437, 438, 435, 436, 438, 0, 0, 0, 431, 437, 432, 0, 436, 438, 0, 439, 438, 439, 0, 440, 439, 440, 0, 441, 440, 441, 0, 0, 441, 439, 442, 0, 442, 440, 0, 442, 443, 441, 443, 436, 0, 443, 441, 438, 442, 0, 0, 0, 0, 439, 443, 443, 444, 445, 444, 445, 0, 444, 445, 446, 447, 446, 447, 0, 446, 447, 444, 445, 0, 441, 448, 0, 448, 446, 447, 448, 439, 449, 443, 449, 0, 445, 449, 450, 448, 450, 0, 451, 450, 451, 0, 449, 451, 446, 447, 0, 0, 450, 452, 0, 452, 451, 0, 452, 453, 0, 453, 0, 445, 453, 0, 454, 452, 454, 0, 0, 454, 450, 453, 453, 446, 447, 455, 0, 455, 454, 456, 455, 456, 0, 0, 456, 454, 457, 0, 457, 455, 458, 457, 458, 456, 0, 458, 459, 450, 459, 453, 457, 459, 0, 457, 458, 456, 460, 0, 460, 455, 459, 460, 454, 467, 466, 467, 466, 0, 467, 466, 460, 468, 0, 468, 0, 0, 468, 467, 466, 0, 457, 0, 456, 466, 460, 468, 455, 469, 0, 469, 0, 470, 469, 470, 0, 0, 470, 0, 0, 0, 0, 469, 0, 0, 0, 470, 468, 471, 0, 471, 466, 460, 471, 469, 0, 472, 470, 472, 0, 0, 472, 471, 473, 0, 473, 471, 0, 473, 0, 472, 474, 0, 474, 468, 0, 474, 473, 475, 0, 475, 469, 0, 475, 470, 474, 476, 0, 476, 0, 0, 476, 475, 471, 477, 0, 477, 473, 0, 477, 476, 479, 478, 479, 478, 474, 479, 478, 477, 481, 0, 481, 0, 0, 481, 479, 478, 0, 476, 478, 0, 0, 0, 481, 473, 482, 481, 482, 0, 483, 482, 483, 474, 484, 483, 484, 0, 0, 484, 482, 0, 0, 0, 483, 0, 476, 478, 484, 483, 0, 485, 482, 485, 481, 486, 485, 486, 0, 487, 486, 487, 0, 0, 487, 485, 488, 0, 488, 486, 489, 488, 489, 487, 0, 489, 483, 485, 0, 482, 488, 490, 487, 490, 489, 491, 490, 491, 0, 0, 491, 0, 493, 0, 493, 490, 0, 493, 492, 491, 492, 0, 0, 492, 485, 488, 493, 490, 0, 487, 0, 491, 492, 492, 494, 493, 494, 0, 0, 494, 0, 495, 497, 495, 497, 0, 495, 497, 494, 0, 0, 0, 488, 0, 490, 495, 497, 0, 491, 498, 492, 498, 493, 0, 498, 499, 0, 499, 494, 0, 499, 0, 0, 498, 497, 500, 501, 500, 501, 499, 500, 501, 0, 502, 499, 502, 0, 498, 502, 500, 501, 503, 0, 503, 0, 494, 503, 502, 504, 0, 504, 497, 502, 504, 505, 503, 505, 0, 507, 505, 507, 499, 504, 507, 498, 0, 0, 0, 505, 508, 0, 508, 507, 509, 508, 509, 0, 0, 509, 502, 510, 0, 510, 508, 511, 510, 511, 509, 512, 511, 512, 0, 508, 512, 510, 513, 0, 513, 511, 0, 513, 514, 512, 514, 0, 0, 514, 0, 0, 513, 513, 0, 515, 511, 515, 514, 516, 515, 516, 508, 514, 516, 517, 0, 517, 0, 515, 517, 0, 519, 516, 519, 0, 0, 519, 0, 517, 513, 0, 520, 511, 520, 0, 519, 520, 0, 515, 514, 0, 521, 516, 521, 0, 520, 521, 0, 522, 520, 522, 0, 523, 522, 523, 521, 524, 523, 524, 0, 0, 524, 522, 0, 0, 515, 523, 0, 0, 516, 524, 0, 525, 526, 525, 526, 520, 525, 526, 0, 0, 0, 523, 527, 524, 527, 525, 526, 527, 525, 530, 528, 530, 528, 0, 530, 528, 527, 531, 0, 531, 0, 527, 531, 530, 528, 0, 0, 0, 523, 528, 524, 531, 532, 0, 532, 525, 533, 532, 533, 0, 534, 533, 534, 0, 0, 534, 532, 535, 527, 535, 533, 531, 535, 537, 534, 537, 528, 538, 537, 538, 0, 535, 538, 0, 0, 0, 0, 537, 0, 0, 533, 538, 540, 0, 540, 0, 537, 540, 531, 541, 538, 541, 0, 0, 541, 543, 540, 543, 0, 540, 543, 0, 0, 541, 0, 0, 541, 533, 0, 543, 544, 0, 544, 537, 0, 544, 0, 538, 0, 0, 0, 0, 0, 0, 544, 0, 540, 0, 0, 0, 0, 0, 0, 541, 546, 546, 546, 546, 547, 0, 547, 547, 549, 0, 549, 549, 550, 550, 551, 0, 551, 551, 552, 0, 552, 552, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545, 545 } ; /* 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/ds9lex.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/ds9lex.L" #include #include #include #include "util.h" #include "ds9parser.H" extern YYSTYPE* mklval; extern mkFlexLexer* mklexx; /* rules */ #line 1599 "frame/ds9lex.C" #define INITIAL 0 #define DISCARD 1 #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 31 "frame/ds9lex.L" #line 1703 "frame/ds9lex.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 >= 546 ) 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 != 545 ); 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: /* rule 1 can match eol */ YY_RULE_SETUP #line 33 "frame/ds9lex.L" { // special case-- #\n BEGIN INITIAL; yyless(0); // put back the terminator strcpy(mklval->str,""); // feed a blank string return STRING; } YY_BREAK case 2: YY_RULE_SETUP #line 40 "frame/ds9lex.L" { // Discard reset of line BEGIN INITIAL; int ll = yyleng <(MKBUFSIZE-1) ? yyleng:(MKBUFSIZE-1); strncpy(mklval->str,yytext,ll); mklval->str[ll] = '\0'; return STRING; } YY_BREAK case 3: YY_RULE_SETUP #line 48 "frame/ds9lex.L" {return AMPLIFIER_;} YY_BREAK case 4: YY_RULE_SETUP #line 49 "frame/ds9lex.L" {return ANNULUS_;} YY_BREAK case 5: YY_RULE_SETUP #line 50 "frame/ds9lex.L" {return ARCMIN_;} YY_BREAK case 6: YY_RULE_SETUP #line 51 "frame/ds9lex.L" {return ARCSEC_;} YY_BREAK case 7: YY_RULE_SETUP #line 52 "frame/ds9lex.L" {return ARROW_;} YY_BREAK case 8: YY_RULE_SETUP #line 53 "frame/ds9lex.L" {return B1950_;} YY_BREAK case 9: YY_RULE_SETUP #line 54 "frame/ds9lex.L" {return BACKGROUND_;} YY_BREAK case 10: YY_RULE_SETUP #line 55 "frame/ds9lex.L" {return BEGIN_;} YY_BREAK case 11: YY_RULE_SETUP #line 56 "frame/ds9lex.L" {return BOX_;} YY_BREAK case 12: YY_RULE_SETUP #line 57 "frame/ds9lex.L" {return BOXCIRCLE_;} YY_BREAK case 13: YY_RULE_SETUP #line 58 "frame/ds9lex.L" {return BPANDA_;} YY_BREAK case 14: YY_RULE_SETUP #line 59 "frame/ds9lex.L" {return CALLBACK_;} YY_BREAK case 15: YY_RULE_SETUP #line 60 "frame/ds9lex.L" {return CIRCLE_;} YY_BREAK case 16: YY_RULE_SETUP #line 61 "frame/ds9lex.L" {return CIRCLE3D_;} YY_BREAK case 17: YY_RULE_SETUP #line 62 "frame/ds9lex.L" {return COLOR_;} YY_BREAK case 18: YY_RULE_SETUP #line 63 "frame/ds9lex.L" {return COMPASS_;} YY_BREAK case 19: YY_RULE_SETUP #line 64 "frame/ds9lex.L" {return COMPOSITE_;} YY_BREAK case 20: YY_RULE_SETUP #line 65 "frame/ds9lex.L" {return CPANDA_;} YY_BREAK case 21: YY_RULE_SETUP #line 66 "frame/ds9lex.L" {return CROSS_;} YY_BREAK case 22: YY_RULE_SETUP #line 67 "frame/ds9lex.L" {return DASH_;} YY_BREAK case 23: YY_RULE_SETUP #line 68 "frame/ds9lex.L" {return DASHLIST_;} YY_BREAK case 24: YY_RULE_SETUP #line 69 "frame/ds9lex.L" {return DEBUG_;} YY_BREAK case 25: YY_RULE_SETUP #line 70 "frame/ds9lex.L" {return DEGREES_;} YY_BREAK case 26: YY_RULE_SETUP #line 71 "frame/ds9lex.L" {return DELETE_;} YY_BREAK case 27: YY_RULE_SETUP #line 72 "frame/ds9lex.L" {return DETECTOR_;} YY_BREAK case 28: YY_RULE_SETUP #line 73 "frame/ds9lex.L" {return DIAMOND_;} YY_BREAK case 29: YY_RULE_SETUP #line 74 "frame/ds9lex.L" {return EDIT_;} YY_BREAK case 30: YY_RULE_SETUP #line 75 "frame/ds9lex.L" {return ELLIPSE_;} YY_BREAK case 31: YY_RULE_SETUP #line 76 "frame/ds9lex.L" {return ECLIPTIC_;} YY_BREAK case 32: YY_RULE_SETUP #line 77 "frame/ds9lex.L" {return EPANDA_;} YY_BREAK case 33: YY_RULE_SETUP #line 78 "frame/ds9lex.L" {return END_;} YY_BREAK case 34: YY_RULE_SETUP #line 79 "frame/ds9lex.L" {return FALSE_;} YY_BREAK case 35: YY_RULE_SETUP #line 80 "frame/ds9lex.L" {return FIELD_;} YY_BREAK case 36: YY_RULE_SETUP #line 81 "frame/ds9lex.L" {return FILL_;} YY_BREAK case 37: YY_RULE_SETUP #line 82 "frame/ds9lex.L" {return FIXED_;} YY_BREAK case 38: YY_RULE_SETUP #line 83 "frame/ds9lex.L" {return FK4_;} YY_BREAK case 39: YY_RULE_SETUP #line 84 "frame/ds9lex.L" {return FK4_NO_E_;} YY_BREAK case 40: YY_RULE_SETUP #line 85 "frame/ds9lex.L" {return FK5_;} YY_BREAK case 41: YY_RULE_SETUP #line 86 "frame/ds9lex.L" {return FORMAT_;} YY_BREAK case 42: YY_RULE_SETUP #line 87 "frame/ds9lex.L" {return FONT_;} YY_BREAK case 43: YY_RULE_SETUP #line 88 "frame/ds9lex.L" {return GALACTIC_;} YY_BREAK case 44: YY_RULE_SETUP #line 89 "frame/ds9lex.L" {return GLOBAL_;} YY_BREAK case 45: YY_RULE_SETUP #line 90 "frame/ds9lex.L" {return HELIOECLIPTIC_;} YY_BREAK case 46: YY_RULE_SETUP #line 91 "frame/ds9lex.L" {return HIGHLITE_;} YY_BREAK case 47: YY_RULE_SETUP #line 92 "frame/ds9lex.L" {return ICRS_;} YY_BREAK case 48: YY_RULE_SETUP #line 93 "frame/ds9lex.L" {return IGNORE_;} YY_BREAK case 49: YY_RULE_SETUP #line 94 "frame/ds9lex.L" {return INCLUDE_;} YY_BREAK case 50: YY_RULE_SETUP #line 95 "frame/ds9lex.L" {return IMAGE_;} YY_BREAK case 51: YY_RULE_SETUP #line 96 "frame/ds9lex.L" {return KEY_;} YY_BREAK case 52: YY_RULE_SETUP #line 97 "frame/ds9lex.L" {return J2000_;} YY_BREAK case 53: YY_RULE_SETUP #line 98 "frame/ds9lex.L" {return LINE_;} YY_BREAK case 54: YY_RULE_SETUP #line 99 "frame/ds9lex.L" {return LINEAR_;} YY_BREAK case 55: YY_RULE_SETUP #line 100 "frame/ds9lex.L" {return MOVE_;} YY_BREAK case 56: YY_RULE_SETUP #line 101 "frame/ds9lex.L" {return N_;} YY_BREAK case 57: YY_RULE_SETUP #line 102 "frame/ds9lex.L" {return NO_;} YY_BREAK case 58: YY_RULE_SETUP #line 103 "frame/ds9lex.L" {return OFF_;} YY_BREAK case 59: YY_RULE_SETUP #line 104 "frame/ds9lex.L" {return ON_;} YY_BREAK case 60: YY_RULE_SETUP #line 105 "frame/ds9lex.L" {return CPANDA_;} YY_BREAK case 61: YY_RULE_SETUP #line 106 "frame/ds9lex.L" {return PHYSICAL_;} YY_BREAK case 62: YY_RULE_SETUP #line 107 "frame/ds9lex.L" {return PIE_;} YY_BREAK case 63: YY_RULE_SETUP #line 108 "frame/ds9lex.L" {return PIXELS_;} YY_BREAK case 64: YY_RULE_SETUP #line 109 "frame/ds9lex.L" {return POINT_;} YY_BREAK case 65: YY_RULE_SETUP #line 110 "frame/ds9lex.L" {return POLYGON_;} YY_BREAK case 66: YY_RULE_SETUP #line 111 "frame/ds9lex.L" {return PROJECTION_;} YY_BREAK case 67: YY_RULE_SETUP #line 112 "frame/ds9lex.L" {return PROPERTY_;} YY_BREAK case 68: YY_RULE_SETUP #line 113 "frame/ds9lex.L" {return ROTATE_;} YY_BREAK case 69: YY_RULE_SETUP #line 114 "frame/ds9lex.L" {return ROTBOX_;} YY_BREAK case 70: YY_RULE_SETUP #line 115 "frame/ds9lex.L" {return RULER_;} YY_BREAK case 71: YY_RULE_SETUP #line 116 "frame/ds9lex.L" {return SELECT_;} YY_BREAK case 72: YY_RULE_SETUP #line 117 "frame/ds9lex.L" {return SEGMENT_;} YY_BREAK case 73: YY_RULE_SETUP #line 118 "frame/ds9lex.L" {return SOURCE_;} YY_BREAK case 74: YY_RULE_SETUP #line 119 "frame/ds9lex.L" {return SUPERGALACTIC_;} YY_BREAK case 75: YY_RULE_SETUP #line 120 "frame/ds9lex.L" {return TAG_;} YY_BREAK case 76: YY_RULE_SETUP #line 121 "frame/ds9lex.L" {return TEXT_;} YY_BREAK case 77: YY_RULE_SETUP #line 122 "frame/ds9lex.L" {return TEXTANGLE_;} YY_BREAK case 78: YY_RULE_SETUP #line 123 "frame/ds9lex.L" {return TEXTROTATE_;} YY_BREAK case 79: YY_RULE_SETUP #line 124 "frame/ds9lex.L" {return TILE_;} YY_BREAK case 80: YY_RULE_SETUP #line 125 "frame/ds9lex.L" {return TRUE_;} YY_BREAK case 81: YY_RULE_SETUP #line 126 "frame/ds9lex.L" {return VECTOR_;} YY_BREAK case 82: YY_RULE_SETUP #line 127 "frame/ds9lex.L" {return VERSION_;} YY_BREAK case 83: YY_RULE_SETUP #line 128 "frame/ds9lex.L" {return UPDATE_;} YY_BREAK case 84: YY_RULE_SETUP #line 129 "frame/ds9lex.L" {return UNHIGHLITE_;} YY_BREAK case 85: YY_RULE_SETUP #line 130 "frame/ds9lex.L" {return UNSELECT_;} YY_BREAK case 86: YY_RULE_SETUP #line 131 "frame/ds9lex.L" {return WCS_;} YY_BREAK case 87: YY_RULE_SETUP #line 132 "frame/ds9lex.L" {return WCSA_;} YY_BREAK case 88: YY_RULE_SETUP #line 133 "frame/ds9lex.L" {return WCSB_;} YY_BREAK case 89: YY_RULE_SETUP #line 134 "frame/ds9lex.L" {return WCSC_;} YY_BREAK case 90: YY_RULE_SETUP #line 135 "frame/ds9lex.L" {return WCSD_;} YY_BREAK case 91: YY_RULE_SETUP #line 136 "frame/ds9lex.L" {return WCSE_;} YY_BREAK case 92: YY_RULE_SETUP #line 137 "frame/ds9lex.L" {return WCSF_;} YY_BREAK case 93: YY_RULE_SETUP #line 138 "frame/ds9lex.L" {return WCSG_;} YY_BREAK case 94: YY_RULE_SETUP #line 139 "frame/ds9lex.L" {return WCSH_;} YY_BREAK case 95: YY_RULE_SETUP #line 140 "frame/ds9lex.L" {return WCSI_;} YY_BREAK case 96: YY_RULE_SETUP #line 141 "frame/ds9lex.L" {return WCSJ_;} YY_BREAK case 97: YY_RULE_SETUP #line 142 "frame/ds9lex.L" {return WCSK_;} YY_BREAK case 98: YY_RULE_SETUP #line 143 "frame/ds9lex.L" {return WCSL_;} YY_BREAK case 99: YY_RULE_SETUP #line 144 "frame/ds9lex.L" {return WCSM_;} YY_BREAK case 100: YY_RULE_SETUP #line 145 "frame/ds9lex.L" {return WCSN_;} YY_BREAK case 101: YY_RULE_SETUP #line 146 "frame/ds9lex.L" {return WCSO_;} YY_BREAK case 102: YY_RULE_SETUP #line 147 "frame/ds9lex.L" {return WCSP_;} YY_BREAK case 103: YY_RULE_SETUP #line 148 "frame/ds9lex.L" {return WCSQ_;} YY_BREAK case 104: YY_RULE_SETUP #line 149 "frame/ds9lex.L" {return WCSR_;} YY_BREAK case 105: YY_RULE_SETUP #line 150 "frame/ds9lex.L" {return WCSS_;} YY_BREAK case 106: YY_RULE_SETUP #line 151 "frame/ds9lex.L" {return WCST_;} YY_BREAK case 107: YY_RULE_SETUP #line 152 "frame/ds9lex.L" {return WCSU_;} YY_BREAK case 108: YY_RULE_SETUP #line 153 "frame/ds9lex.L" {return WCSV_;} YY_BREAK case 109: YY_RULE_SETUP #line 154 "frame/ds9lex.L" {return WCSW_;} YY_BREAK case 110: YY_RULE_SETUP #line 155 "frame/ds9lex.L" {return WCSX_;} YY_BREAK case 111: YY_RULE_SETUP #line 156 "frame/ds9lex.L" {return WCSY_;} YY_BREAK case 112: YY_RULE_SETUP #line 157 "frame/ds9lex.L" {return WCSZ_;} YY_BREAK case 113: YY_RULE_SETUP #line 158 "frame/ds9lex.L" {return WCS0_;} YY_BREAK case 114: YY_RULE_SETUP #line 159 "frame/ds9lex.L" {return WIDTH_;} YY_BREAK case 115: YY_RULE_SETUP #line 160 "frame/ds9lex.L" {return X_;} YY_BREAK case 116: YY_RULE_SETUP #line 161 "frame/ds9lex.L" {return Y_;} YY_BREAK case 117: YY_RULE_SETUP #line 162 "frame/ds9lex.L" {return YES_;} YY_BREAK case 118: YY_RULE_SETUP #line 165 "frame/ds9lex.L" { // Integer mklval->integer = atoi(yytext); return INT; } YY_BREAK case 119: #line 171 "frame/ds9lex.L" case 120: YY_RULE_SETUP #line 171 "frame/ds9lex.L" { // Real Number mklval->real = atof(yytext); return REAL; } YY_BREAK case 121: #line 177 "frame/ds9lex.L" case 122: YY_RULE_SETUP #line 177 "frame/ds9lex.L" { // degrees yytext[yyleng-1] = '\0'; mklval->real = atof(yytext); return ANGDEGREE; } YY_BREAK case 123: #line 184 "frame/ds9lex.L" case 124: YY_RULE_SETUP #line 184 "frame/ds9lex.L" { // radians yytext[yyleng-1] = '\0'; mklval->real = atof(yytext); return ANGRADIAN; } YY_BREAK case 125: #line 191 "frame/ds9lex.L" case 126: YY_RULE_SETUP #line 191 "frame/ds9lex.L" { // physical coords yytext[yyleng-1] = '\0'; mklval->real = atof(yytext); return PHYCOORD; } YY_BREAK case 127: #line 198 "frame/ds9lex.L" case 128: YY_RULE_SETUP #line 198 "frame/ds9lex.L" { // image coords yytext[yyleng-1] = '\0'; mklval->real = atof(yytext); return IMGCOORD; } YY_BREAK case 129: #line 205 "frame/ds9lex.L" case 130: #line 206 "frame/ds9lex.L" case 131: #line 207 "frame/ds9lex.L" case 132: YY_RULE_SETUP #line 207 "frame/ds9lex.L" { // minutes of arc yytext[yyleng-1] = '\0'; mklval->real = atof(yytext); return ARCMINUTE; } YY_BREAK case 133: #line 214 "frame/ds9lex.L" case 134: #line 215 "frame/ds9lex.L" case 135: #line 216 "frame/ds9lex.L" case 136: YY_RULE_SETUP #line 216 "frame/ds9lex.L" { // seconds of arc yytext[yyleng-1] = '\0'; mklval->real = atof(yytext); return ARCSECOND; } YY_BREAK case 137: #line 223 "frame/ds9lex.L" case 138: YY_RULE_SETUP #line 223 "frame/ds9lex.L" { // Sexagesimal int ll = yyleng <(MKBUFSIZE-1) ? yyleng:(MKBUFSIZE-1); strncpy(mklval->str,yytext,ll); mklval->str[ll] = '\0'; return SEXSTR; } YY_BREAK case 139: #line 231 "frame/ds9lex.L" case 140: YY_RULE_SETUP #line 231 "frame/ds9lex.L" { // HMS int ll = yyleng <(MKBUFSIZE-1) ? yyleng:(MKBUFSIZE-1); strncpy(mklval->str,yytext,ll); mklval->str[ll] = '\0'; return HMSSTR; } YY_BREAK case 141: #line 239 "frame/ds9lex.L" case 142: YY_RULE_SETUP #line 239 "frame/ds9lex.L" { // DMS int ll = yyleng <(MKBUFSIZE-1) ? yyleng:(MKBUFSIZE-1); strncpy(mklval->str,yytext,ll); mklval->str[ll] = '\0'; return DMSSTR; } YY_BREAK case 143: YY_RULE_SETUP #line 246 "frame/ds9lex.L" { // 8 bit Hex Color int ll = yyleng <(MKBUFSIZE-1) ? yyleng:(MKBUFSIZE-1); strncpy(mklval->str,yytext,ll); mklval->str[ll] = '\0'; return STRING; } YY_BREAK case 144: YY_RULE_SETUP #line 253 "frame/ds9lex.L" { // 16 bit Hex Color int ll = yyleng <(MKBUFSIZE-1) ? yyleng:(MKBUFSIZE-1); strncpy(mklval->str,yytext,ll); mklval->str[ll] = '\0'; return STRING; } YY_BREAK case 145: YY_RULE_SETUP #line 260 "frame/ds9lex.L" { // 32 bit Hex Color int ll = yyleng <(MKBUFSIZE-1) ? yyleng:(MKBUFSIZE-1); strncpy(mklval->str,yytext,ll); mklval->str[ll] = '\0'; return STRING; } YY_BREAK case 146: #line 268 "frame/ds9lex.L" case 147: YY_RULE_SETUP #line 268 "frame/ds9lex.L" { // Quoted String int ll = (yyleng-2)<(MKBUFSIZE-1) ? (yyleng-2):(MKBUFSIZE-1); strncpy(mklval->str,yytext+1,ll); // skip the " " mklval->str[ll] = '\0'; // Remove the '"' return STRING; } YY_BREAK case 148: YY_RULE_SETUP #line 275 "frame/ds9lex.L" { // Quoted String int ll = (yyleng-2)<(MKBUFSIZE-1) ? (yyleng-2):(MKBUFSIZE-1); strncpy(mklval->str,yytext+1,ll); // skip the '{' mklval->str[ll] = '\0'; // Remove the '}' return STRING; } YY_BREAK case 149: YY_RULE_SETUP #line 282 "frame/ds9lex.L" { // General String int ll = yyleng <(MKBUFSIZE-1) ? yyleng:(MKBUFSIZE-1); strncpy(mklval->str,yytext,ll); mklval->str[ll] = '\0'; return STRING; } YY_BREAK case 150: YY_RULE_SETUP #line 289 "frame/ds9lex.L" { // White Spaces } YY_BREAK case 151: /* rule 151 can match eol */ YY_RULE_SETUP #line 292 "frame/ds9lex.L" { // windows line feed return '\n'; } YY_BREAK case 152: YY_RULE_SETUP #line 296 "frame/ds9lex.L" { // fake line feed return '\n'; } YY_BREAK case 153: /* rule 153 can match eol */ YY_RULE_SETUP #line 300 "frame/ds9lex.L" { // linefeed return '\n'; } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(DISCARD): #line 304 "frame/ds9lex.L" { // eof return EOF_; } YY_BREAK case 154: YY_RULE_SETUP #line 308 "frame/ds9lex.L" { // Else, return the char return yytext[0]; } YY_BREAK case 155: YY_RULE_SETUP #line 312 "frame/ds9lex.L" ECHO; YY_BREAK #line 2617 "frame/ds9lex.C" 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; mkfree(yy_start_stack ); yy_delete_buffer( YY_CURRENT_BUFFER ); mkfree(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. */ mkrealloc((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 *) mkrealloc((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 >= 546 ) 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 >= 546 ) 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 == 545); 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) mkalloc(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 *) mkalloc(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 ) mkfree((void *) b->yy_ch_buf ); mkfree((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**)mkalloc (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**)mkrealloc ((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 *) mkalloc(new_size ); else (yy_start_stack) = (int *) mkrealloc((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 *mkalloc (yy_size_t size ) { return (void *) malloc( size ); } void *mkrealloc (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 mkfree (void * ptr ) { free( (char *) ptr ); /* see mkrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 312 "frame/ds9lex.L" void mkDiscard(int doit) { if (mklexx) mklexx->begin(DISCARD, doit); } void mkFlexLexer::begin(int which, int doit) { BEGIN which; if (doit) yyless(0); }