#define yy_create_buffer msyy_create_buffer #define yy_delete_buffer msyy_delete_buffer #define yy_scan_buffer msyy_scan_buffer #define yy_scan_string msyy_scan_string #define yy_scan_bytes msyy_scan_bytes #define yy_flex_debug msyy_flex_debug #define yy_init_buffer msyy_init_buffer #define yy_flush_buffer msyy_flush_buffer #define yy_load_buffer_state msyy_load_buffer_state #define yy_switch_to_buffer msyy_switch_to_buffer #define yyin msyyin #define yyleng msyyleng #define yylex msyylex #define yyout msyyout #define yyrestart msyyrestart #define yytext msyytext #define yywrap msyywrap #line 20 "maplexer.c" /* A lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #include /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ #ifdef c_plusplus #ifndef __cplusplus #define __cplusplus #endif #endif #ifdef __cplusplus #include #include /* Use prototypes in function declarations. */ #define YY_USE_PROTOS /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_PROTOS #define YY_USE_CONST #endif /* __STDC__ */ #endif /* ! __cplusplus */ #ifdef __TURBOC__ #pragma warn -rch #pragma warn -use #include #include #define YY_USE_CONST #define YY_USE_PROTOS #endif #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif #ifdef YY_USE_PROTOS #define YY_PROTO(proto) proto #else #define YY_PROTO(proto) () #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. */ #define YY_BUF_SIZE 16384 typedef struct yy_buffer_state *YY_BUFFER_STATE; extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* The funky do-while in the following #define is used to turn the definition * int a single C statement (which needs a semi-colon terminator). This * avoids problems with code like: * * if ( condition_holds ) * yyless( 5 ); * else * do_something_else(); * * Prior to using the do-while the compiler would get upset at the * "else" because it interpreted the "if" statement as being all * done when it reached the ';' after the yyless() call. */ /* Return all but the first 'n' matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ *yy_cp = yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yytext_ptr ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ typedef unsigned int yy_size_t; struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int 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; /* 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 }; static YY_BUFFER_STATE yy_current_buffer = 0; /* 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". */ #define YY_CURRENT_BUFFER yy_current_buffer /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; static int yy_init = 1; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart YY_PROTO(( FILE *input_file )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); void yy_load_buffer_state YY_PROTO(( void )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); static void *yy_flex_alloc YY_PROTO(( yy_size_t )); static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); static void yy_flex_free YY_PROTO(( void * )); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state YY_PROTO(( void )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); static int yy_get_next_buffer YY_PROTO(( void )); static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); /* 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 = (int) (yy_cp - yy_bp); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #define YY_NUM_RULES 271 #define YY_END_OF_BUFFER 272 static yyconst short int yy_accept[2463] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 269, 1, 267, 269, 2, 269, 269, 269, 251, 264, 251, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 268, 268, 265, 250, 3, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 1, 251, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 270, 1, 1, 14, 270, 270, 270, 270, 252, 270, 252, 9, 6, 8, 270, 270, 270, 270, 270, 270, 270, 270, 268, 268, 271, 1, 271, 271, 1, 0, 261, 2, 0, 261, 0, 258, 251, 251, 264, 251, 264, 0, 264, 256, 251, 0, 264, 264, 264, 264, 264, 264, 264, 264, 264, 185, 264, 264, 187, 264, 188, 264, 264, 193, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 205, 264, 264, 207, 264, 208, 264, 264, 264, 264, 264, 264, 264, 264, 264, 218, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 167, 264, 264, 243, 244, 264, 245, 264, 264, 264, 264, 264, 264, 264, 265, 250, 3, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 167, 265, 265, 265, 265, 265, 265, 265, 266, 251, 266, 266, 256, 266, 266, 266, 185, 266, 187, 188, 266, 193, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 205, 266, 207, 208, 266, 266, 266, 266, 266, 266, 266, 218, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 243, 244, 245, 266, 266, 7, 0, 263, 5, 0, 263, 252, 252, 252, 0, 0, 257, 252, 0, 11, 6, 12, 10, 0, 253, 0, 8, 0, 13, 11, 9, 0, 4, 0, 260, 0, 259, 251, 0, 0, 264, 251, 256, 254, 251, 0, 0, 251, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 189, 264, 264, 264, 264, 264, 264, 264, 264, 264, 45, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 60, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 96, 97, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 216, 217, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 233, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 175, 247, 264, 177, 248, 264, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 97, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 175, 265, 177, 265, 266, 251, 254, 266, 266, 266, 266, 189, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 216, 217, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 233, 266, 266, 266, 266, 266, 266, 266, 266, 247, 248, 262, 0, 252, 255, 252, 0, 0, 252, 16, 0, 14, 251, 254, 0, 251, 264, 264, 264, 264, 180, 264, 264, 264, 264, 264, 264, 183, 264, 264, 264, 264, 264, 264, 264, 38, 264, 264, 264, 42, 264, 264, 264, 264, 264, 264, 264, 264, 264, 197, 264, 264, 264, 55, 264, 264, 264, 59, 264, 264, 61, 264, 264, 264, 264, 264, 264, 264, 264, 264, 76, 264, 264, 264, 264, 264, 264, 264, 264, 206, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 121, 214, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 150, 264, 264, 264, 264, 264, 264, 264, 162, 264, 239, 264, 264, 264, 264, 241, 173, 264, 264, 264, 178, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 38, 265, 265, 42, 265, 265, 265, 265, 265, 265, 265, 55, 265, 265, 265, 59, 265, 61, 265, 265, 265, 265, 265, 76, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 121, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 150, 265, 265, 265, 265, 265, 162, 265, 265, 265, 265, 173, 265, 265, 178, 266, 266, 180, 266, 266, 266, 266, 197, 266, 266, 266, 266, 266, 266, 206, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 239, 266, 241, 0, 252, 0, 249, 22, 264, 264, 264, 264, 181, 264, 264, 264, 264, 264, 264, 32, 34, 264, 264, 264, 264, 40, 264, 264, 264, 195, 43, 264, 46, 264, 264, 196, 264, 264, 264, 264, 264, 264, 57, 264, 199, 264, 63, 200, 264, 264, 65, 264, 264, 73, 264, 264, 264, 264, 264, 80, 204, 264, 90, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 211, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 212, 264, 228, 190, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 225, 264, 264, 264, 264, 264, 264, 230, 264, 264, 264, 264, 264, 264, 232, 145, 264, 264, 264, 264, 264, 264, 264, 237, 264, 264, 154, 264, 159, 264, 264, 166, 264, 264, 264, 264, 174, 264, 176, 265, 22, 265, 265, 265, 265, 265, 32, 34, 265, 265, 265, 265, 40, 265, 43, 265, 46, 265, 265, 265, 265, 265, 57, 265, 265, 63, 265, 65, 73, 265, 265, 265, 265, 80, 265, 90, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 145, 265, 265, 265, 265, 265, 154, 265, 159, 265, 265, 166, 265, 265, 174, 176, 249, 266, 266, 266, 195, 196, 266, 199, 266, 266, 266, 204, 266, 266, 211, 212, 266, 228, 190, 266, 266, 266, 266, 266, 266, 225, 266, 266, 230, 266, 232, 266, 266, 237, 266, 266, 266, 266, 0, 264, 264, 264, 264, 264, 264, 182, 264, 30, 264, 264, 186, 264, 264, 35, 264, 264, 264, 264, 41, 264, 264, 264, 264, 48, 264, 51, 52, 198, 264, 54, 264, 264, 64, 201, 264, 264, 264, 264, 264, 264, 202, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 89, 91, 264, 264, 98, 264, 264, 264, 264, 264, 264, 264, 264, 264, 209, 264, 210, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 215, 122, 264, 264, 264, 264, 264, 264, 264, 264, 224, 223, 229, 134, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 231, 264, 264, 264, 264, 264, 264, 264, 264, 235, 236, 264, 264, 238, 153, 264, 156, 264, 264, 264, 264, 264, 264, 264, 264, 246, 265, 265, 265, 265, 265, 265, 30, 265, 265, 35, 265, 265, 265, 41, 265, 265, 265, 48, 265, 52, 54, 265, 265, 64, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 89, 91, 98, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 122, 265, 265, 265, 265, 265, 134, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 153, 265, 156, 265, 265, 265, 265, 265, 265, 266, 186, 266, 198, 201, 202, 266, 209, 210, 266, 215, 266, 266, 266, 224, 229, 266, 266, 266, 231, 266, 236, 238, 266, 266, 266, 15, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 192, 194, 264, 264, 264, 50, 264, 56, 264, 264, 264, 264, 264, 264, 264, 264, 72, 264, 264, 264, 78, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 93, 264, 264, 100, 264, 264, 264, 264, 105, 264, 264, 264, 264, 264, 111, 264, 264, 264, 264, 264, 117, 264, 264, 264, 264, 123, 264, 264, 264, 264, 264, 264, 264, 226, 264, 227, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 50, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 78, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 100, 265, 265, 265, 265, 105, 265, 265, 265, 265, 265, 111, 265, 265, 265, 265, 265, 117, 265, 265, 265, 123, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 266, 192, 266, 266, 266, 266, 266, 226, 227, 266, 266, 266, 266, 266, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 44, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 71, 264, 264, 77, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 94, 264, 264, 264, 264, 104, 264, 264, 108, 109, 110, 264, 264, 264, 264, 116, 264, 264, 120, 213, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 133, 264, 135, 264, 264, 264, 264, 264, 140, 264, 264, 264, 143, 264, 146, 234, 264, 264, 264, 151, 264, 264, 264, 264, 160, 264, 165, 264, 264, 264, 240, 242, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 44, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 71, 265, 265, 77, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 104, 265, 265, 108, 109, 110, 265, 265, 265, 265, 116, 265, 265, 120, 265, 265, 265, 265, 265, 265, 265, 133, 135, 265, 265, 265, 265, 140, 265, 265, 265, 143, 265, 146, 265, 265, 265, 151, 265, 265, 265, 265, 160, 265, 165, 265, 265, 265, 266, 266, 213, 266, 266, 266, 266, 266, 234, 266, 240, 242, 264, 23, 264, 24, 264, 28, 264, 184, 31, 33, 264, 264, 264, 19, 264, 49, 264, 264, 62, 264, 69, 70, 264, 67, 74, 75, 264, 264, 264, 264, 264, 84, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 20, 141, 264, 264, 264, 264, 149, 152, 155, 264, 158, 264, 163, 168, 172, 264, 265, 23, 24, 265, 28, 265, 33, 265, 265, 265, 19, 265, 49, 265, 265, 62, 265, 69, 70, 265, 67, 74, 75, 265, 265, 265, 265, 84, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 20, 141, 265, 265, 265, 265, 149, 152, 155, 265, 158, 265, 163, 168, 172, 265, 266, 266, 266, 266, 266, 266, 266, 164, 21, 179, 264, 264, 17, 36, 264, 47, 53, 264, 66, 264, 79, 203, 264, 82, 264, 264, 264, 264, 264, 264, 264, 99, 101, 264, 264, 264, 264, 112, 264, 264, 264, 264, 264, 264, 219, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 191, 264, 137, 138, 264, 142, 144, 264, 148, 264, 264, 264, 264, 21, 265, 265, 17, 36, 265, 47, 53, 265, 66, 265, 79, 265, 82, 265, 265, 265, 265, 265, 265, 99, 101, 265, 265, 265, 265, 112, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 137, 138, 265, 142, 144, 265, 148, 265, 265, 265, 265, 179, 203, 266, 219, 266, 266, 191, 264, 264, 264, 264, 264, 39, 264, 264, 264, 83, 264, 264, 264, 264, 264, 264, 102, 103, 264, 107, 113, 264, 115, 264, 119, 220, 264, 264, 264, 264, 264, 264, 264, 264, 131, 264, 222, 264, 139, 147, 157, 264, 264, 264, 171, 265, 265, 265, 265, 265, 39, 265, 265, 265, 83, 265, 265, 265, 265, 265, 102, 103, 265, 107, 113, 265, 115, 265, 119, 265, 265, 265, 265, 265, 265, 265, 131, 265, 265, 139, 147, 157, 265, 265, 265, 171, 220, 266, 222, 264, 264, 264, 29, 264, 58, 68, 264, 264, 264, 264, 264, 92, 264, 106, 264, 118, 264, 124, 125, 264, 127, 264, 264, 264, 264, 264, 264, 264, 170, 265, 265, 265, 29, 265, 58, 68, 265, 265, 265, 265, 265, 92, 106, 265, 118, 124, 125, 265, 127, 265, 265, 265, 265, 265, 265, 265, 170, 266, 264, 264, 264, 264, 264, 85, 86, 87, 88, 264, 264, 221, 264, 264, 264, 264, 132, 264, 264, 264, 265, 265, 265, 265, 265, 85, 86, 87, 88, 265, 265, 265, 265, 265, 132, 265, 265, 265, 221, 264, 264, 264, 37, 81, 264, 114, 264, 128, 129, 264, 136, 264, 169, 265, 265, 265, 37, 81, 114, 265, 128, 129, 265, 136, 265, 169, 18, 25, 264, 95, 264, 264, 161, 18, 25, 265, 265, 265, 161, 264, 264, 264, 265, 265, 265, 264, 264, 264, 264, 265, 265, 265, 265, 264, 264, 264, 264, 265, 265, 265, 265, 264, 264, 264, 130, 265, 265, 265, 130, 264, 27, 264, 265, 27, 265, 26, 264, 26, 265, 126, 126, 0 } ; static yyconst int yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 6, 7, 8, 1, 1, 9, 10, 11, 12, 1, 13, 1, 14, 15, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 1, 1, 18, 19, 20, 1, 1, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 1, 1, 1, 1, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 1, 49, 1, 50, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 int yy_meta[52] = { 0, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 4, 4, 1, 4, 1, 5, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1 } ; static yyconst short int yy_base[2480] = { 0, 0, 0, 51, 0, 102, 0, 153, 0, 203, 207, 2769, 2770, 214, 2770, 2761, 0, 2757, 2754, 205, 198, 225, 225, 210, 227, 254, 238, 262, 232, 226, 259, 188, 2728, 229, 276, 288, 225, 289, 303, 2721, 277, 319, 325, 287, 2736, 336, 0, 2770, 2770, 0, 2745, 2740, 237, 266, 246, 330, 339, 350, 2720, 2732, 257, 2721, 2730, 297, 324, 2733, 340, 299, 2712, 315, 361, 370, 2718, 369, 409, 361, 417, 346, 0, 409, 333, 2718, 409, 2721, 2720, 2714, 2718, 422, 417, 2711, 376, 424, 2704, 434, 443, 375, 447, 424, 2770, 471, 475, 2727, 2738, 2735, 2733, 448, 414, 2726, 468, 2722, 465, 2721, 2717, 2702, 2698, 179, 461, 459, 462, 2696, 2686, 2770, 2770, 488, 2727, 2723, 498, 2725, 2700, 0, 2720, 2698, 2716, 2715, 477, 481, 0, 489, 381, 2710, 516, 2694, 513, 496, 2686, 506, 2681, 508, 2678, 2679, 2683, 463, 2679, 0, 2695, 2677, 2693, 478, 0, 2671, 2672, 0, 483, 2682, 2677, 2677, 507, 521, 2670, 499, 2675, 516, 2674, 515, 2670, 2668, 2682, 527, 2662, 2680, 2668, 2678, 528, 2669, 2652, 2664, 532, 0, 2668, 2660, 0, 2666, 0, 522, 531, 541, 2660, 210, 2658, 523, 2664, 2651, 2663, 2666, 2646, 2660, 2646, 2645, 2638, 2640, 547, 2645, 2654, 544, 556, 2637, 2656, 2651, 2643, 2653, 551, 2652, 2631, 546, 2638, 2648, 536, 558, 2637, 573, 2632, 0, 0, 2638, 0, 2643, 2643, 2625, 2639, 2622, 2622, 2639, 0, 2644, 2639, 2621, 299, 566, 2621, 2629, 2633, 567, 2613, 2630, 2622, 2617, 2613, 2625, 2609, 567, 2625, 2613, 570, 2609, 588, 2622, 2621, 572, 2612, 2595, 584, 2612, 575, 2598, 582, 2604, 2610, 2595, 2609, 2595, 581, 2597, 2606, 2596, 595, 2608, 2607, 2581, 597, 2593, 2603, 589, 596, 2592, 2602, 2586, 2592, 2598, 2595, 2578, 2596, 0, 610, 626, 644, 2587, 2579, 2580, 2573, 0, 2574, 0, 0, 2569, 0, 2584, 2587, 2576, 2582, 2574, 2584, 2572, 2580, 2570, 2563, 0, 2566, 0, 0, 607, 625, 2567, 413, 2560, 2571, 2558, 2570, 2573, 2555, 2548, 2550, 627, 2565, 2550, 2547, 2562, 2554, 2551, 2563, 2542, 635, 632, 0, 0, 0, 2543, 2542, 2770, 2575, 2550, 2770, 2570, 2548, 615, 655, 656, 663, 2562, 2546, 657, 672, 2770, 2770, 2770, 2770, 2554, 2770, 2549, 2770, 2535, 2770, 2537, 2770, 2530, 2770, 2564, 2770, 2560, 2770, 661, 683, 2552, 2551, 2550, 2535, 0, 664, 685, 2548, 2547, 2533, 2528, 2524, 2529, 2522, 2525, 2531, 2529, 2520, 2509, 2525, 2510, 2509, 2510, 2524, 2507, 2510, 651, 0, 2523, 2502, 2521, 2499, 2504, 2510, 2513, 2497, 2501, 0, 2500, 2496, 2508, 2493, 2491, 2490, 667, 2497, 2488, 2487, 678, 2493, 0, 2491, 2484, 2499, 2481, 2498, 2496, 2490, 2491, 674, 2492, 2491, 2481, 674, 2479, 2488, 2485, 2479, 2485, 2484, 2483, 0, 0, 2476, 683, 2477, 689, 2480, 2479, 706, 2478, 2462, 2472, 2463, 2474, 2473, 2464, 2457, 0, 2483, 2471, 683, 2455, 2452, 2468, 683, 2463, 2455, 2443, 689, 694, 2449, 2459, 2445, 2459, 2462, 2441, 2446, 2446, 2447, 0, 2453, 697, 2441, 2449, 2450, 2442, 2452, 2432, 2439, 2448, 2437, 2432, 2427, 2441, 2420, 2432, 2438, 2428, 2440, 2435, 2434, 2418, 2417, 0, 0, 2416, 0, 0, 2419, 2426, 2421, 2423, 2420, 2426, 2406, 2422, 2408, 2411, 705, 2424, 2403, 2401, 2406, 2401, 2405, 2404, 2400, 2412, 2396, 2395, 2394, 2393, 711, 2399, 2391, 2406, 2388, 2404, 2400, 2401, 2400, 2390, 708, 2398, 2390, 2396, 2395, 0, 2388, 729, 2397, 2392, 752, 2391, 2376, 704, 2376, 2373, 2378, 712, 730, 2373, 2383, 2384, 2387, 2366, 2371, 2373, 718, 2379, 2363, 2370, 2379, 2368, 2363, 2358, 2372, 2364, 2370, 2360, 2368, 2352, 0, 2351, 0, 2354, 2374, 2373, 0, 2359, 2351, 2350, 2361, 0, 2362, 2357, 2342, 2340, 2347, 2344, 2348, 2348, 2340, 2347, 2348, 2343, 2346, 2345, 2344, 2328, 2338, 2329, 2332, 0, 0, 2352, 2340, 2339, 2336, 2333, 2325, 2313, 2317, 2318, 2315, 2320, 0, 2328, 2325, 2319, 2329, 2324, 2303, 2326, 2321, 0, 0, 2770, 2330, 2329, 2770, 723, 750, 2328, 2327, 2770, 2314, 2770, 2325, 2770, 2324, 2323, 2316, 2311, 2295, 2313, 0, 2306, 2293, 2299, 2309, 2290, 2303, 0, 2292, 2305, 2293, 2285, 2285, 2293, 2296, 652, 2293, 2278, 2293, 0, 2281, 2292, 2270, 2290, 2275, 2287, 2277, 2285, 2268, 0, 2283, 2282, 2271, 2266, 2279, 2278, 2281, 0, 2261, 2271, 0, 2263, 2270, 2272, 2256, 2270, 2269, 2252, 2248, 2253, 0, 2257, 727, 2256, 2256, 2262, 2251, 2247, 2250, 734, 2258, 2244, 2246, 2255, 2245, 748, 2253, 2248, 2235, 2251, 2236, 2234, 2232, 2233, 2235, 2188, 241, 251, 756, 278, 368, 382, 530, 548, 594, 0, 0, 618, 741, 680, 693, 714, 718, 735, 746, 755, 750, 762, 755, 746, 760, 748, 766, 765, 769, 751, 774, 775, 763, 762, 774, 772, 781, 781, 784, 773, 784, 778, 779, 783, 781, 776, 774, 791, 782, 793, 787, 0, 791, 0, 796, 784, 784, 791, 786, 0, 788, 793, 801, 0, 809, 806, 811, 806, 795, 796, 811, 798, 800, 810, 815, 805, 815, 819, 0, 800, 822, 809, 823, 815, 809, 826, 0, 827, 828, 833, 0, 826, 0, 820, 832, 833, 815, 822, 0, 828, 833, 831, 829, 827, 832, 842, 830, 835, 846, 838, 850, 849, 846, 852, 837, 840, 845, 852, 857, 849, 861, 860, 857, 0, 863, 858, 848, 861, 865, 855, 856, 865, 873, 874, 855, 876, 865, 864, 876, 874, 882, 873, 884, 881, 870, 887, 878, 889, 883, 0, 887, 892, 880, 880, 0, 881, 893, 0, 902, 884, 0, 893, 885, 903, 903, 0, 894, 890, 891, 907, 900, 909, 0, 894, 898, 898, 900, 910, 901, 909, 921, 903, 912, 920, 914, 918, 908, 922, 923, 906, 927, 929, 931, 923, 924, 919, 929, 0, 925, 920, 946, 947, 923, 941, 936, 945, 935, 930, 940, 0, 934, 946, 934, 941, 951, 950, 947, 939, 951, 956, 959, 960, 0, 950, 945, 945, 0, 0, 956, 0, 947, 948, 0, 951, 966, 953, 949, 968, 956, 0, 955, 0, 973, 0, 0, 959, 973, 976, 961, 977, 0, 972, 981, 957, 984, 981, 997, 0, 973, 0, 984, 989, 976, 977, 996, 977, 1001, 984, 1004, 981, 1006, 996, 1007, 999, 1012, 995, 0, 992, 1015, 995, 1001, 1020, 1002, 1022, 998, 1023, 1013, 1023, 0, 1012, 0, 0, 1017, 1010, 1011, 1017, 1028, 1020, 1015, 1035, 1036, 1024, 1020, 1024, 1027, 1023, 1028, 1035, 1036, 1045, 1028, 1045, 1043, 1041, 1033, 1047, 1044, 1037, 1036, 0, 1056, 1039, 1037, 1045, 1057, 1058, 1044, 1051, 0, 1061, 1048, 1059, 1057, 0, 1069, 1057, 0, 1071, 1067, 1067, 1050, 0, 1058, 0, 1075, 1070, 1068, 1063, 1073, 1079, 1067, 1077, 1069, 1081, 1086, 1089, 1090, 0, 1074, 0, 1084, 0, 1075, 1076, 1079, 1080, 1081, 0, 1080, 1098, 0, 1084, 1100, 0, 1092, 1104, 1080, 1106, 1109, 1094, 0, 1105, 1093, 1116, 1099, 1123, 1105, 1125, 1103, 1128, 1118, 1128, 1132, 1109, 1132, 1112, 1118, 1137, 1119, 1139, 1115, 1140, 1130, 1140, 1125, 1126, 1133, 1128, 1148, 1149, 1132, 1143, 1152, 1135, 1152, 1150, 1148, 1153, 1150, 1142, 1140, 1160, 1141, 1149, 1146, 1153, 1149, 1160, 1158, 0, 1170, 1158, 0, 1172, 1168, 0, 0, 0, 1174, 1171, 1165, 0, 0, 1156, 0, 1175, 1162, 1177, 0, 1170, 1166, 0, 0, 1170, 0, 0, 1175, 1173, 1184, 1176, 1172, 1178, 0, 1178, 1185, 0, 1177, 0, 1176, 1192, 0, 1193, 1185, 1193, 1176, 1194, 1189, 1185, 1186, 1198, 1193, 1189, 0, 1204, 0, 1202, 1192, 0, 1193, 1213, 0, 1195, 1196, 1203, 1198, 0, 1214, 1206, 1202, 1213, 0, 1218, 0, 1215, 0, 1205, 0, 1211, 1206, 0, 0, 1213, 1214, 1229, 1210, 1207, 1215, 0, 1229, 1234, 1235, 1230, 1233, 1236, 1220, 1227, 1241, 1228, 1224, 1244, 1241, 1238, 0, 1242, 1233, 1241, 1232, 1233, 1235, 1235, 1251, 1245, 1253, 1255, 1244, 1241, 0, 1242, 0, 1247, 1245, 1246, 1246, 1247, 1263, 1257, 1265, 1267, 1256, 1253, 1262, 0, 0, 1270, 1284, 1258, 1273, 1273, 1255, 1269, 1262, 0, 0, 0, 0, 1269, 1269, 1266, 1281, 1285, 1269, 1269, 1275, 1290, 1272, 0, 1279, 1272, 1290, 1276, 1296, 1293, 1296, 1299, 0, 0, 1296, 1293, 0, 0, 1283, 1285, 1285, 1302, 1302, 1294, 1294, 1309, 1299, 1296, 0, 1298, 1294, 1307, 1302, 1298, 1313, 0, 1300, 1320, 0, 1302, 1303, 1310, 0, 1311, 1307, 1318, 0, 1323, 1320, 0, 1315, 1310, 0, 1317, 1318, 1333, 1314, 1311, 1319, 1337, 1338, 1333, 1336, 1339, 1329, 1343, 1330, 1326, 1346, 1343, 1340, 0, 1344, 1332, 1333, 1334, 1334, 1351, 1345, 1353, 1355, 1344, 1341, 1342, 1347, 1345, 1346, 1346, 1347, 1363, 1357, 1365, 1367, 1356, 1353, 0, 1369, 1370, 1370, 1352, 1366, 0, 1364, 1378, 1362, 1362, 1368, 1383, 1365, 1372, 1365, 1383, 1369, 1389, 1388, 1391, 1388, 1385, 0, 1375, 1377, 1377, 1394, 1394, 1386, 1386, 1401, 1383, 0, 1384, 0, 0, 0, 1385, 0, 0, 1394, 0, 1416, 1390, 1390, 0, 0, 1397, 1393, 1408, 0, 1409, 0, 0, 1411, 1404, 1401, 2770, 1406, 1414, 1411, 1420, 1401, 1418, 1409, 1411, 1421, 1422, 1414, 1420, 1410, 1424, 0, 0, 1425, 1424, 1419, 0, 1415, 0, 1420, 1425, 1426, 1435, 1420, 1440, 1426, 1431, 0, 1441, 1433, 1441, 0, 1438, 1443, 1442, 1447, 1433, 1447, 1429, 1440, 1438, 1430, 1442, 0, 1444, 1450, 0, 1451, 1440, 1444, 1458, 0, 1455, 1453, 1458, 1466, 1463, 0, 1460, 1469, 1450, 1454, 1468, 0, 1465, 1463, 1468, 1472, 0, 1465, 1463, 1478, 1467, 1481, 1466, 1485, 0, 1473, 0, 1469, 1484, 1481, 1482, 1474, 1477, 1490, 1494, 1493, 1480, 1492, 1484, 1499, 1489, 1496, 1486, 1494, 1488, 1504, 1507, 1506, 1508, 1501, 1512, 1498, 1499, 1513, 1514, 1508, 1516, 1521, 1502, 1519, 1510, 1521, 1513, 1519, 1509, 1523, 1524, 1523, 1518, 0, 1514, 1519, 1524, 1525, 1534, 1519, 1539, 1525, 1530, 1540, 1532, 1540, 0, 1537, 1540, 1545, 1531, 1545, 1527, 1538, 1536, 1528, 1540, 1547, 0, 1548, 1537, 1541, 1555, 0, 1552, 1550, 1555, 1563, 1560, 0, 1557, 1566, 1547, 1551, 1565, 0, 1562, 1560, 1565, 0, 1571, 1560, 1574, 1559, 1565, 1575, 1572, 1573, 1565, 1568, 1580, 1583, 1583, 1571, 1582, 1574, 1579, 1586, 1576, 1584, 1578, 1594, 1597, 1596, 1598, 1591, 1602, 1588, 1589, 1599, 0, 1604, 1605, 1598, 1596, 1613, 0, 0, 1596, 1612, 1612, 1613, 1614, 1605, 1608, 1607, 1604, 1610, 1612, 1608, 1622, 1610, 1616, 1623, 1616, 1627, 1628, 0, 1619, 1621, 1631, 1617, 1633, 1624, 1635, 1633, 1630, 1638, 0, 1639, 1626, 0, 1632, 1629, 1636, 1641, 1637, 1638, 1633, 1634, 1633, 1650, 1638, 1644, 1632, 1633, 1642, 1639, 0, 1640, 1662, 0, 0, 0, 1638, 1651, 1648, 1645, 0, 1646, 1668, 0, 0, 1669, 1657, 1671, 1658, 1656, 1674, 1661, 1676, 1657, 1670, 0, 1673, 0, 1664, 1670, 1669, 1669, 1673, 0, 1674, 1683, 1669, 0, 1675, 0, 0, 1679, 1666, 1685, 0, 1675, 1683, 1696, 1678, 1683, 1676, 0, 1696, 1689, 1698, 0, 0, 1689, 1692, 1687, 1693, 1695, 1691, 1697, 1704, 1697, 1708, 1709, 0, 1700, 1702, 1712, 1698, 1714, 1705, 1716, 1714, 1711, 1719, 0, 1720, 1707, 0, 1713, 1716, 1721, 1717, 1718, 1713, 1714, 1713, 1730, 1718, 1711, 1712, 1721, 1718, 0, 1719, 1741, 0, 0, 0, 1717, 1730, 1727, 1724, 0, 1725, 1747, 0, 1734, 1732, 1750, 1737, 1752, 1733, 1746, 0, 0, 1744, 1743, 1743, 1746, 0, 1747, 1757, 1743, 0, 1749, 0, 1753, 1740, 1759, 0, 1749, 1756, 1769, 1752, 1757, 1750, 0, 1770, 1763, 1772, 1763, 1761, 0, 1779, 1767, 1781, 1776, 1767, 0, 1761, 0, 0, 1768, 0, 1773, 0, 1784, 0, 1776, 0, 0, 0, 1785, 1777, 1774, 0, 1779, 0, 1781, 1786, 0, 1778, 0, 0, 1788, 0, 0, 0, 1791, 1780, 1795, 1796, 1801, 0, 1800, 1801, 1796, 1797, 1794, 1807, 1804, 1805, 1806, 1811, 1804, 1794, 1810, 1813, 1812, 1817, 1810, 1800, 1807, 1817, 1803, 1812, 1812, 1823, 1815, 1804, 1815, 1810, 1805, 1819, 1828, 1822, 1832, 1829, 1823, 1837, 0, 0, 1824, 1826, 1826, 1837, 0, 0, 0, 1831, 0, 1843, 0, 1824, 0, 1832, 1829, 0, 0, 1844, 0, 1836, 0, 1845, 1837, 1834, 0, 1839, 0, 1841, 1846, 0, 1838, 0, 0, 1848, 0, 0, 0, 1851, 1854, 1855, 1860, 0, 1859, 1860, 1855, 1856, 1853, 1862, 1863, 1864, 1869, 1862, 1852, 1868, 1871, 1870, 1875, 1868, 1858, 1867, 1867, 1878, 1870, 1859, 1870, 1865, 1860, 1874, 1885, 1882, 1876, 1890, 0, 0, 1877, 1879, 1879, 1890, 0, 0, 0, 1884, 0, 1896, 0, 1877, 0, 1885, 1886, 1882, 1888, 1898, 1884, 1900, 1894, 0, 1889, 0, 1905, 1908, 0, 1890, 1897, 0, 0, 1897, 0, 1893, 0, 0, 1905, 0, 1895, 1915, 1916, 1900, 1899, 1919, 1897, 0, 0, 1903, 1911, 1921, 1921, 0, 1922, 1909, 1917, 1926, 1926, 1907, 0, 1924, 1919, 1934, 1925, 1922, 1919, 1920, 1928, 1936, 1940, 1924, 0, 1943, 0, 0, 1925, 0, 0, 1928, 0, 1942, 1928, 1935, 1947, 1933, 1949, 1952, 0, 1934, 1941, 0, 0, 1941, 0, 1937, 0, 1949, 0, 1939, 1959, 1960, 1944, 1943, 1963, 0, 0, 1946, 1954, 1965, 1965, 0, 1966, 1953, 1961, 1970, 1970, 1961, 1976, 1967, 1964, 1961, 1962, 1970, 1978, 1982, 1984, 0, 0, 1966, 0, 0, 1969, 0, 1983, 1969, 1976, 1988, 0, 0, 1967, 0, 1984, 1975, 0, 1994, 1981, 1989, 1978, 1974, 0, 1986, 1976, 1982, 0, 1991, 1992, 2000, 2001, 1987, 1990, 0, 0, 2005, 0, 0, 2002, 0, 2007, 0, 0, 2012, 1996, 1995, 2009, 1999, 2009, 2010, 2011, 0, 2006, 0, 2019, 0, 0, 0, 2003, 2015, 2000, 0, 2025, 2012, 2020, 2009, 2005, 0, 2017, 2007, 2013, 0, 2022, 2023, 2031, 2032, 2018, 0, 0, 2034, 0, 0, 2031, 0, 2036, 0, 2024, 2023, 2037, 2027, 2037, 2038, 2039, 0, 2034, 2047, 0, 0, 0, 2031, 2043, 2028, 0, 0, 2053, 0, 2041, 2044, 2056, 0, 2042, 0, 0, 2054, 2055, 2056, 2043, 2050, 0, 2055, 0, 2039, 0, 2054, 0, 0, 2049, 0, 2042, 2043, 2056, 2059, 2064, 2068, 2054, 0, 2061, 2064, 2076, 0, 2062, 0, 0, 2074, 2075, 2076, 2063, 2070, 0, 0, 2058, 0, 0, 0, 2067, 0, 2060, 2061, 2074, 2077, 2082, 2086, 2072, 0, 2081, 2087, 2080, 2092, 2092, 2085, 0, 0, 0, 0, 2073, 2095, 0, 2086, 2097, 2098, 2099, 0, 2100, 2088, 2088, 2101, 2094, 2106, 2106, 2099, 0, 0, 0, 0, 2108, 2099, 2110, 2111, 2112, 0, 2113, 2101, 2101, 0, 2116, 2104, 2108, 0, 0, 2119, 0, 2104, 0, 0, 2123, 0, 2113, 0, 2123, 2111, 2115, 0, 0, 0, 2110, 0, 0, 2129, 0, 2119, 0, 0, 0, 2111, 0, 2121, 2121, 0, 0, 0, 2114, 2124, 2124, 0, 2137, 2137, 2130, 2140, 2140, 2133, 2131, 2138, 2145, 2134, 2135, 2142, 2149, 2138, 2142, 2129, 2142, 2140, 2148, 2135, 2147, 2145, 2149, 2160, 2154, 0, 2152, 2163, 2157, 0, 2152, 0, 2156, 2154, 0, 2158, 0, 2156, 0, 2157, 0, 0, 2770, 2197, 2202, 2207, 2212, 2217, 2219, 2224, 2205, 2227, 2231, 2236, 2241, 2246, 2251, 2256, 2261, 2266 } ; static yyconst short int yy_def[2480] = { 0, 2462, 1, 2462, 3, 2462, 5, 2462, 7, 2463, 2463, 2462, 2462, 2462, 2462, 2464, 2465, 2466, 2467, 2462, 2468, 2469, 2462, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2462, 2462, 2470, 2462, 2462, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2462, 2471, 2472, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2462, 2462, 2462, 2462, 2473, 2462, 2474, 2462, 2462, 2475, 2462, 2462, 2462, 2462, 2476, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2477, 2478, 2462, 2464, 2462, 2465, 2466, 2462, 2467, 2467, 2462, 2462, 2468, 2468, 2468, 2479, 2469, 2468, 2462, 2462, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2462, 2462, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2472, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2462, 2473, 2462, 2462, 2474, 2462, 2462, 2462, 2462, 2462, 2475, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2476, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2477, 2462, 2478, 2462, 2462, 2462, 2462, 2468, 2468, 2462, 2468, 2462, 2462, 2462, 2462, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2462, 2462, 2462, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2462, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2462, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2471, 2471, 2471, 2471, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2471, 2471, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2471, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2468, 2468, 2468, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2470, 2470, 2468, 2468, 2468, 2470, 2470, 2470, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2468, 2468, 2468, 2468, 2470, 2470, 2470, 2470, 2468, 2468, 2468, 2470, 2470, 2470, 2468, 2468, 2470, 2470, 2468, 2470, 0, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462 } ; static yyconst short int yy_nxt[2822] = { 0, 12, 13, 14, 13, 13, 12, 15, 16, 12, 17, 18, 12, 12, 19, 20, 21, 22, 12, 12, 12, 12, 12, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 46, 46, 12, 12, 12, 12, 12, 47, 48, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 49, 49, 50, 12, 12, 12, 51, 12, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 49, 73, 49, 49, 49, 48, 12, 48, 12, 13, 47, 74, 13, 12, 15, 12, 12, 17, 18, 12, 12, 19, 75, 76, 22, 12, 12, 12, 12, 12, 77, 78, 79, 80, 81, 82, 83, 84, 85, 78, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 78, 97, 78, 78, 78, 48, 12, 48, 98, 99, 47, 100, 99, 101, 102, 98, 103, 104, 98, 98, 98, 105, 106, 107, 108, 109, 110, 111, 98, 112, 113, 98, 98, 98, 114, 98, 115, 98, 116, 98, 98, 117, 98, 118, 119, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 120, 98, 121, 123, 374, 123, 123, 123, 124, 123, 123, 125, 124, 137, 126, 125, 126, 126, 134, 378, 135, 181, 182, 138, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 473, 142, 141, 135, 139, 144, 139, 145, 139, 198, 175, 147, 474, 143, 146, 148, 170, 184, 176, 149, 171, 185, 160, 199, 172, 161, 162, 177, 150, 1035, 173, 151, 245, 174, 246, 139, 139, 139, 152, 163, 153, 250, 164, 178, 251, 154, 155, 179, 1036, 156, 247, 180, 157, 266, 267, 158, 159, 165, 166, 167, 186, 213, 187, 168, 188, 214, 1040, 248, 189, 169, 249, 190, 193, 231, 191, 215, 194, 192, 200, 201, 195, 270, 232, 279, 233, 271, 202, 206, 234, 532, 203, 207, 196, 204, 205, 208, 197, 280, 209, 283, 281, 210, 533, 284, 211, 216, 217, 218, 272, 225, 219, 220, 273, 226, 252, 221, 274, 227, 253, 222, 314, 315, 223, 228, 236, 237, 229, 224, 238, 276, 239, 254, 240, 230, 255, 256, 257, 241, 260, 302, 258, 306, 261, 307, 277, 278, 259, 285, 262, 303, 308, 263, 286, 287, 290, 391, 392, 297, 291, 393, 1041, 298, 292, 299, 288, 334, 335, 350, 293, 289, 300, 294, 126, 336, 126, 126, 351, 337, 295, 139, 139, 139, 139, 1042, 139, 139, 139, 139, 139, 139, 139, 139, 365, 317, 305, 309, 139, 318, 139, 139, 139, 310, 366, 632, 311, 329, 324, 319, 325, 330, 312, 313, 338, 355, 326, 633, 339, 327, 343, 340, 356, 331, 341, 328, 363, 332, 364, 139, 139, 139, 345, 346, 344, 352, 126, 347, 126, 126, 126, 348, 126, 126, 353, 349, 369, 372, 364, 381, 354, 379, 357, 126, 410, 126, 126, 389, 370, 142, 380, 135, 383, 126, 382, 126, 126, 390, 411, 137, 420, 143, 398, 398, 421, 416, 399, 417, 373, 138, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 396, 425, 141, 405, 139, 401, 139, 430, 139, 433, 397, 431, 402, 434, 406, 426, 427, 428, 403, 436, 443, 437, 438, 450, 451, 439, 456, 466, 444, 476, 463, 1043, 464, 477, 445, 139, 139, 139, 465, 509, 452, 513, 457, 467, 458, 468, 469, 470, 488, 459, 493, 489, 514, 471, 495, 494, 504, 505, 490, 1044, 496, 534, 515, 510, 516, 497, 519, 498, 561, 506, 517, 539, 535, 540, 520, 548, 552, 553, 565, 549, 554, 556, 580, 569, 562, 570, 521, 573, 574, 557, 592, 571, 581, 585, 596, 558, 566, 302, 1045, 586, 598, 567, 365, 627, 587, 597, 588, 303, 599, 391, 608, 1046, 366, 609, 593, 139, 139, 139, 139, 628, 139, 139, 139, 139, 139, 139, 139, 139, 642, 629, 305, 643, 139, 655, 139, 139, 139, 630, 644, 653, 369, 654, 364, 365, 663, 656, 660, 660, 389, 691, 661, 396, 370, 366, 664, 665, 665, 692, 390, 666, 974, 397, 975, 139, 139, 139, 391, 391, 672, 672, 670, 708, 673, 713, 724, 729, 739, 740, 725, 709, 774, 741, 747, 714, 742, 730, 748, 769, 775, 781, 779, 770, 1049, 793, 743, 744, 782, 1050, 745, 751, 752, 780, 753, 827, 754, 794, 842, 755, 879, 853, 663, 828, 880, 884, 895, 1051, 843, 756, 757, 854, 664, 758, 860, 861, 885, 886, 896, 862, 1007, 1015, 863, 1052, 887, 954, 954, 1008, 1016, 955, 1047, 1053, 864, 865, 1048, 1022, 866, 869, 870, 1054, 871, 1023, 872, 1037, 1055, 873, 1056, 1057, 1058, 1038, 1059, 1060, 1061, 1024, 1064, 874, 875, 1062, 1065, 876, 1066, 1039, 1063, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1081, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1111, 1110, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1132, 1133, 1134, 1135, 1136, 1137, 1131, 1138, 1139, 1140, 1141, 1144, 1145, 1146, 1147, 1148, 1142, 1149, 1150, 1151, 1152, 1153, 1156, 1157, 1160, 1158, 1161, 1154, 1143, 1159, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1155, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1179, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 955, 955, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1271, 1272, 1275, 1276, 1273, 1277, 1278, 1286, 1287, 1266, 1288, 1289, 1267, 1268, 1274, 1290, 1269, 1270, 1279, 1291, 1280, 1292, 1293, 1281, 1294, 1295, 1282, 1296, 1297, 1298, 1283, 1299, 1300, 1301, 1302, 1284, 1285, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1333, 1334, 1335, 1336, 1338, 1339, 1340, 1341, 1332, 1342, 1337, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1359, 1360, 1362, 1363, 1364, 1358, 1365, 1366, 1367, 1368, 1369, 1361, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1395, 1397, 1398, 1399, 1407, 1408, 1400, 1409, 1401, 1390, 1396, 1402, 1391, 1392, 1403, 1410, 1393, 1394, 1404, 1411, 1412, 1413, 1414, 1405, 1406, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1444, 1445, 1446, 1447, 1448, 1449, 1443, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1460, 1461, 1463, 1464, 1465, 1459, 1466, 1467, 1468, 1469, 1470, 1462, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1481, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1532, 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, 1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566, 1567, 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1587, 1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1586, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, 1630, 1631, 1632, 1633, 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1634, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676, 1677, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1678, 1694, 1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1766, 1765, 1767, 1768, 1769, 1770, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781, 1782, 1771, 1783, 1772, 1784, 1785, 1786, 1773, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1798, 1797, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1864, 1876, 1865, 1877, 1878, 1879, 1866, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1888, 1887, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1899, 1898, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1965, 1966, 1968, 1969, 1970, 1971, 1972, 1964, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1967, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2041, 2042, 2044, 2045, 2046, 2047, 2048, 2040, 2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2043, 2058, 2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191, 2192, 2193, 2194, 2196, 2197, 2198, 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2195, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2238, 2239, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2237, 2240, 2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2278, 2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2428, 2429, 2430, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2427, 2444, 2445, 2431, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 122, 122, 122, 122, 122, 127, 127, 127, 127, 127, 129, 242, 129, 129, 129, 130, 130, 130, 130, 130, 132, 1034, 132, 132, 132, 136, 136, 140, 140, 140, 140, 140, 301, 301, 304, 304, 304, 304, 304, 358, 358, 358, 358, 358, 361, 361, 361, 361, 361, 367, 367, 367, 367, 367, 375, 375, 375, 375, 375, 385, 385, 385, 385, 385, 387, 387, 387, 387, 387, 139, 139, 139, 139, 139, 1033, 1032, 1031, 1030, 1029, 1028, 1027, 1026, 1025, 1021, 1020, 1019, 1018, 1017, 1014, 1013, 1012, 1011, 1010, 1009, 1006, 1005, 1004, 1003, 1002, 1001, 1000, 999, 998, 997, 996, 995, 994, 993, 992, 991, 990, 989, 988, 987, 986, 985, 984, 983, 982, 981, 980, 979, 978, 977, 976, 973, 972, 971, 970, 969, 968, 967, 966, 965, 964, 963, 962, 961, 960, 959, 958, 957, 673, 673, 670, 956, 666, 666, 661, 661, 953, 952, 951, 950, 949, 948, 947, 946, 945, 944, 943, 942, 941, 940, 939, 938, 937, 936, 935, 934, 933, 932, 931, 930, 929, 928, 927, 926, 925, 924, 923, 922, 921, 920, 919, 918, 917, 916, 915, 914, 913, 912, 609, 609, 911, 910, 909, 908, 907, 906, 905, 904, 903, 902, 901, 900, 899, 898, 897, 894, 893, 892, 891, 890, 889, 888, 883, 882, 881, 878, 877, 868, 867, 859, 858, 857, 856, 855, 852, 851, 850, 849, 848, 847, 846, 845, 844, 841, 840, 839, 838, 837, 836, 835, 834, 833, 832, 831, 830, 829, 826, 825, 824, 823, 822, 821, 820, 819, 818, 817, 816, 815, 814, 813, 812, 811, 810, 809, 808, 807, 806, 805, 804, 803, 802, 801, 800, 799, 798, 797, 796, 795, 792, 791, 790, 789, 788, 787, 786, 785, 784, 783, 778, 777, 776, 773, 772, 771, 768, 767, 766, 765, 764, 763, 762, 761, 760, 759, 750, 749, 746, 738, 737, 736, 735, 734, 733, 732, 731, 728, 727, 726, 723, 722, 721, 720, 719, 718, 717, 716, 715, 712, 711, 710, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 694, 693, 690, 689, 688, 687, 686, 685, 684, 683, 682, 681, 680, 679, 678, 677, 676, 675, 674, 399, 399, 671, 393, 393, 670, 386, 386, 669, 668, 667, 360, 376, 662, 368, 659, 362, 659, 359, 658, 657, 652, 651, 650, 649, 648, 647, 646, 645, 641, 640, 639, 638, 637, 636, 635, 634, 631, 626, 625, 624, 623, 622, 621, 620, 619, 618, 617, 616, 615, 614, 613, 612, 611, 610, 607, 606, 605, 604, 603, 602, 601, 600, 595, 594, 591, 590, 589, 584, 583, 582, 579, 578, 577, 576, 575, 572, 568, 564, 563, 560, 559, 555, 551, 550, 547, 546, 545, 544, 543, 542, 541, 538, 537, 536, 531, 244, 243, 530, 529, 528, 527, 526, 525, 524, 523, 522, 518, 512, 511, 508, 507, 503, 502, 501, 500, 499, 492, 491, 487, 486, 485, 484, 483, 482, 481, 480, 479, 478, 475, 472, 462, 461, 460, 455, 454, 453, 449, 448, 447, 446, 442, 441, 440, 435, 432, 429, 424, 423, 422, 419, 418, 415, 414, 413, 412, 409, 408, 407, 404, 400, 395, 394, 133, 133, 388, 131, 388, 128, 386, 386, 384, 384, 372, 377, 376, 374, 371, 368, 362, 360, 359, 357, 342, 333, 323, 322, 321, 320, 316, 296, 282, 275, 269, 268, 265, 264, 244, 243, 235, 212, 183, 133, 131, 128, 2462, 11, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462 } ; static yyconst short int yy_chk[2822] = { 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, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9, 115, 9, 9, 10, 9, 10, 10, 9, 10, 20, 13, 10, 13, 13, 19, 115, 19, 31, 31, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 197, 22, 21, 22, 21, 23, 21, 23, 21, 36, 29, 24, 197, 22, 23, 24, 28, 33, 29, 24, 28, 33, 26, 36, 28, 26, 26, 29, 24, 754, 28, 24, 52, 28, 52, 21, 21, 21, 25, 26, 25, 54, 26, 30, 54, 25, 25, 30, 755, 25, 53, 30, 25, 60, 60, 25, 25, 27, 27, 27, 34, 40, 34, 27, 34, 40, 757, 53, 34, 27, 53, 34, 35, 43, 34, 40, 35, 34, 37, 37, 35, 63, 43, 67, 43, 63, 37, 38, 43, 246, 37, 38, 35, 37, 37, 38, 35, 67, 38, 69, 67, 38, 246, 69, 38, 41, 41, 41, 64, 42, 41, 41, 64, 42, 55, 41, 64, 42, 55, 41, 80, 80, 41, 42, 45, 45, 42, 41, 45, 66, 45, 55, 45, 42, 55, 56, 56, 45, 57, 75, 56, 77, 57, 77, 66, 66, 56, 70, 57, 75, 77, 57, 70, 70, 71, 138, 138, 73, 71, 138, 758, 73, 71, 73, 70, 90, 90, 95, 71, 70, 73, 71, 74, 90, 74, 74, 95, 90, 71, 76, 76, 76, 76, 759, 76, 76, 76, 76, 76, 76, 76, 76, 106, 82, 76, 79, 76, 82, 76, 76, 76, 79, 106, 332, 79, 88, 87, 82, 87, 88, 79, 79, 91, 97, 87, 332, 91, 87, 93, 91, 97, 88, 91, 87, 105, 88, 105, 76, 76, 76, 94, 94, 93, 96, 99, 94, 99, 99, 100, 94, 100, 100, 96, 94, 108, 110, 108, 117, 96, 116, 118, 123, 151, 123, 123, 134, 108, 135, 116, 135, 118, 126, 117, 126, 126, 134, 151, 137, 162, 135, 143, 143, 162, 157, 143, 157, 110, 137, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 142, 166, 140, 147, 140, 145, 140, 169, 140, 171, 142, 169, 145, 171, 147, 166, 167, 167, 145, 173, 177, 173, 173, 182, 182, 173, 186, 194, 177, 199, 193, 760, 193, 199, 177, 140, 140, 140, 193, 223, 182, 226, 186, 194, 186, 195, 195, 195, 210, 186, 213, 210, 226, 195, 214, 213, 220, 220, 210, 761, 214, 247, 227, 223, 227, 214, 229, 214, 267, 220, 227, 251, 247, 251, 229, 259, 262, 262, 270, 259, 262, 264, 280, 272, 267, 272, 229, 274, 274, 264, 288, 272, 280, 284, 291, 264, 270, 302, 762, 284, 292, 270, 363, 329, 284, 291, 284, 302, 292, 303, 303, 765, 363, 303, 288, 304, 304, 304, 304, 329, 304, 304, 304, 304, 304, 304, 304, 304, 341, 330, 304, 341, 304, 351, 304, 304, 304, 330, 341, 350, 364, 350, 364, 365, 369, 351, 366, 366, 389, 417, 366, 396, 364, 365, 369, 370, 370, 417, 389, 370, 693, 396, 693, 304, 304, 304, 390, 390, 397, 397, 390, 435, 397, 439, 450, 454, 465, 465, 450, 435, 486, 465, 467, 439, 465, 454, 467, 482, 486, 491, 490, 482, 767, 503, 465, 465, 491, 768, 465, 470, 470, 490, 470, 540, 470, 503, 554, 470, 577, 564, 663, 540, 577, 581, 590, 769, 554, 470, 470, 564, 663, 470, 571, 571, 581, 582, 590, 571, 730, 737, 571, 770, 582, 664, 664, 730, 737, 664, 766, 771, 571, 571, 766, 743, 571, 574, 574, 772, 574, 743, 574, 756, 773, 574, 774, 775, 776, 756, 777, 778, 779, 743, 781, 574, 574, 780, 782, 574, 783, 756, 780, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 806, 808, 809, 810, 797, 811, 812, 814, 815, 816, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 829, 831, 833, 834, 835, 836, 837, 838, 839, 841, 842, 843, 845, 847, 848, 849, 850, 851, 853, 854, 855, 856, 857, 858, 859, 860, 854, 861, 862, 863, 864, 865, 866, 867, 868, 869, 864, 870, 871, 872, 873, 874, 875, 876, 879, 878, 880, 874, 864, 878, 881, 882, 883, 884, 885, 886, 887, 888, 889, 874, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 904, 905, 906, 907, 909, 910, 897, 912, 913, 915, 916, 917, 918, 920, 921, 922, 923, 924, 925, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 977, 978, 979, 982, 984, 985, 985, 987, 988, 989, 990, 991, 992, 994, 996, 999, 1000, 1001, 1002, 1003, 1006, 1007, 1005, 1008, 1009, 1012, 1014, 1001, 1015, 1016, 1001, 1001, 1005, 1017, 1001, 1001, 1010, 1018, 1010, 1019, 1020, 1010, 1021, 1022, 1010, 1023, 1024, 1025, 1010, 1026, 1027, 1028, 1029, 1010, 1010, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1043, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1062, 1071, 1066, 1072, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1083, 1084, 1085, 1086, 1088, 1089, 1091, 1092, 1093, 1094, 1096, 1089, 1098, 1099, 1100, 1101, 1102, 1092, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1112, 1114, 1116, 1117, 1117, 1118, 1119, 1120, 1122, 1123, 1125, 1126, 1128, 1129, 1130, 1131, 1133, 1135, 1132, 1136, 1132, 1126, 1128, 1132, 1126, 1126, 1132, 1137, 1126, 1126, 1132, 1138, 1139, 1140, 1141, 1132, 1132, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1169, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1184, 1185, 1187, 1188, 1192, 1193, 1194, 1185, 1197, 1199, 1200, 1201, 1203, 1188, 1204, 1207, 1210, 1211, 1212, 1213, 1214, 1215, 1217, 1218, 1220, 1222, 1223, 1225, 1226, 1227, 1228, 1229, 1218, 1230, 1231, 1232, 1233, 1234, 1235, 1237, 1239, 1240, 1242, 1243, 1245, 1246, 1247, 1248, 1250, 1251, 1252, 1253, 1255, 1257, 1259, 1261, 1262, 1265, 1266, 1267, 1268, 1269, 1270, 1272, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1287, 1288, 1289, 1290, 1291, 1283, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1301, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1350, 1351, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1365, 1366, 1346, 1367, 1368, 1369, 1370, 1372, 1373, 1375, 1376, 1377, 1379, 1380, 1381, 1383, 1384, 1386, 1387, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1408, 1409, 1410, 1411, 1412, 1404, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1432, 1433, 1434, 1435, 1436, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1465, 1469, 1472, 1450, 1474, 1475, 1476, 1479, 1480, 1481, 1483, 1486, 1487, 1488, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1506, 1507, 1508, 1510, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1521, 1522, 1523, 1525, 1526, 1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1537, 1538, 1540, 1541, 1542, 1543, 1545, 1546, 1547, 1548, 1549, 1551, 1552, 1553, 1554, 1555, 1557, 1558, 1559, 1560, 1562, 1563, 1562, 1564, 1565, 1566, 1566, 1567, 1568, 1570, 1572, 1573, 1574, 1575, 1576, 1577, 1566, 1578, 1566, 1579, 1580, 1581, 1566, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, 1590, 1591, 1592, 1591, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610, 1611, 1612, 1613, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1640, 1641, 1642, 1643, 1645, 1646, 1647, 1648, 1649, 1651, 1652, 1653, 1654, 1655, 1657, 1658, 1659, 1661, 1662, 1663, 1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1663, 1673, 1663, 1674, 1675, 1676, 1663, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1683, 1685, 1686, 1687, 1688, 1689, 1690, 1692, 1693, 1694, 1695, 1694, 1696, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1730, 1731, 1733, 1734, 1735, 1736, 1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1750, 1751, 1755, 1756, 1757, 1758, 1760, 1761, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1772, 1773, 1775, 1777, 1778, 1779, 1780, 1771, 1781, 1783, 1784, 1785, 1787, 1790, 1791, 1792, 1794, 1773, 1795, 1796, 1797, 1798, 1799, 1801, 1802, 1803, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1829, 1830, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1847, 1848, 1852, 1853, 1854, 1855, 1857, 1858, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1869, 1870, 1871, 1872, 1874, 1864, 1875, 1876, 1878, 1880, 1881, 1882, 1884, 1885, 1886, 1866, 1887, 1888, 1889, 1891, 1892, 1893, 1894, 1895, 1897, 1898, 1899, 1900, 1901, 1903, 1906, 1908, 1910, 1912, 1916, 1917, 1918, 1920, 1922, 1923, 1925, 1928, 1932, 1933, 1934, 1935, 1936, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1976, 1977, 1978, 1979, 1983, 1985, 1987, 1989, 1990, 1993, 1995, 1997, 1998, 1999, 2001, 2003, 2004, 2006, 2009, 2013, 2014, 2015, 2016, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2050, 2051, 2052, 2053, 2057, 2059, 2061, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 2072, 2074, 2075, 2077, 2078, 2081, 2083, 2086, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2097, 2098, 2074, 2099, 2100, 2102, 2103, 2104, 2105, 2106, 2107, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2121, 2124, 2127, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2137, 2138, 2141, 2143, 2145, 2147, 2148, 2149, 2150, 2151, 2152, 2155, 2156, 2132, 2134, 2157, 2158, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170, 2171, 2172, 2173, 2174, 2177, 2180, 2182, 2183, 2184, 2185, 2188, 2190, 2191, 2193, 2194, 2195, 2196, 2197, 2199, 2200, 2201, 2203, 2204, 2205, 2206, 2207, 2185, 2208, 2211, 2214, 2216, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2228, 2230, 2234, 2235, 2236, 2238, 2239, 2240, 2241, 2242, 2244, 2245, 2246, 2248, 2249, 2250, 2251, 2252, 2255, 2258, 2260, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2270, 2271, 2275, 2276, 2277, 2280, 2282, 2283, 2284, 2286, 2289, 2290, 2291, 2292, 2293, 2295, 2297, 2299, 2302, 2304, 2305, 2306, 2307, 2308, 2309, 2310, 2312, 2313, 2314, 2316, 2319, 2320, 2321, 2322, 2323, 2326, 2330, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2340, 2341, 2342, 2343, 2344, 2345, 2350, 2351, 2353, 2354, 2355, 2356, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2370, 2371, 2372, 2373, 2374, 2376, 2377, 2378, 2380, 2381, 2382, 2385, 2387, 2390, 2392, 2394, 2395, 2396, 2400, 2403, 2405, 2409, 2411, 2412, 2416, 2417, 2418, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2420, 2436, 2437, 2423, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2446, 2447, 2448, 2450, 2452, 2453, 2455, 2457, 2459, 2463, 2463, 2463, 2463, 2463, 2464, 2464, 2464, 2464, 2464, 2465, 2470, 2465, 2465, 2465, 2466, 2466, 2466, 2466, 2466, 2467, 753, 2467, 2467, 2467, 2468, 2468, 2469, 2469, 2469, 2469, 2469, 2471, 2471, 2472, 2472, 2472, 2472, 2472, 2473, 2473, 2473, 2473, 2473, 2474, 2474, 2474, 2474, 2474, 2475, 2475, 2475, 2475, 2475, 2476, 2476, 2476, 2476, 2476, 2477, 2477, 2477, 2477, 2477, 2478, 2478, 2478, 2478, 2478, 2479, 2479, 2479, 2479, 2479, 752, 751, 750, 749, 748, 747, 746, 745, 744, 742, 741, 740, 739, 738, 736, 735, 734, 733, 732, 731, 729, 727, 726, 725, 724, 723, 722, 721, 720, 719, 717, 716, 714, 713, 712, 711, 710, 709, 708, 706, 705, 704, 703, 702, 701, 700, 699, 698, 696, 695, 694, 692, 691, 690, 689, 688, 687, 686, 684, 683, 682, 681, 680, 679, 677, 676, 675, 674, 673, 672, 670, 668, 666, 665, 661, 660, 656, 655, 654, 653, 652, 651, 650, 649, 647, 646, 645, 644, 643, 642, 641, 640, 639, 638, 637, 634, 633, 632, 631, 630, 629, 628, 627, 626, 625, 624, 623, 622, 621, 620, 619, 618, 617, 616, 614, 613, 612, 611, 609, 608, 607, 605, 603, 602, 601, 600, 599, 598, 597, 596, 595, 594, 593, 592, 591, 589, 588, 587, 586, 585, 584, 583, 580, 579, 578, 576, 575, 573, 572, 570, 568, 567, 566, 565, 563, 562, 561, 560, 559, 558, 557, 556, 555, 553, 552, 551, 550, 549, 548, 547, 546, 545, 544, 543, 542, 541, 539, 538, 537, 536, 535, 534, 533, 532, 531, 530, 527, 524, 523, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 509, 508, 507, 506, 505, 504, 502, 500, 499, 498, 497, 496, 495, 494, 493, 492, 489, 488, 487, 485, 484, 483, 481, 480, 478, 477, 476, 475, 474, 473, 472, 471, 469, 468, 466, 464, 461, 460, 459, 458, 457, 456, 455, 453, 452, 451, 449, 448, 447, 446, 445, 444, 443, 442, 440, 438, 437, 436, 434, 433, 432, 431, 430, 429, 427, 426, 425, 424, 423, 422, 421, 420, 419, 416, 415, 414, 413, 412, 411, 410, 409, 408, 407, 406, 405, 404, 403, 402, 401, 400, 399, 398, 394, 393, 392, 391, 387, 385, 383, 381, 379, 377, 375, 368, 367, 362, 361, 359, 358, 356, 355, 349, 348, 347, 346, 345, 344, 343, 342, 340, 339, 338, 337, 336, 335, 334, 333, 331, 326, 324, 323, 322, 321, 320, 319, 318, 317, 316, 315, 313, 310, 308, 307, 306, 305, 300, 299, 298, 297, 296, 295, 294, 293, 290, 289, 287, 286, 285, 283, 282, 281, 279, 278, 277, 276, 275, 273, 271, 269, 268, 266, 265, 263, 261, 260, 258, 257, 256, 255, 254, 253, 252, 250, 249, 248, 245, 244, 243, 241, 240, 239, 238, 237, 236, 235, 233, 230, 228, 225, 224, 222, 221, 219, 218, 217, 216, 215, 212, 211, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 198, 196, 191, 189, 188, 185, 184, 183, 181, 180, 179, 178, 176, 175, 174, 172, 170, 168, 165, 164, 163, 160, 159, 156, 155, 154, 152, 150, 149, 148, 146, 144, 141, 139, 133, 132, 131, 130, 128, 127, 125, 124, 120, 119, 114, 113, 112, 111, 109, 107, 104, 103, 102, 101, 92, 89, 86, 85, 84, 83, 81, 72, 68, 65, 62, 61, 59, 58, 51, 50, 44, 39, 32, 18, 17, 15, 11, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462, 2462 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; /* 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 char *yytext; #line 1 "maplexer.l" #define INITIAL 0 #line 2 "maplexer.l" /* C declarations */ #include #include #include #include #include #include "map.h" #include "maperror.h" #include "mapfile.h" #include "maptime.h" #include "mapsymbol.h" #include "mapparser.h" /* msyylineno is required for flex 2.5.4 and older, but is already defined by * flex 2.5.31 (bug 975). * Unfortunately there is no clean way to differenciate the two versions, * so we use the symbol YY_CURRENT_BUFFER_LVALUE to base our test since it * was not present in 2.5.4 and is present in 2.5.31. Hopefully that won't * put us in trouble with other versions. If that happens then we can * switch to using autoconf to detect the version. */ #ifndef YY_CURRENT_BUFFER_LVALUE int msyylineno = 1; #endif double msyynumber; int msyystate=0; char *msyystring=NULL; int msyyreturncomments = 0; void lexer_cleanup(void) { #ifndef YY_CURRENT_BUFFER_LVALUE /* yy_current_buffer was there only in older versions (e.g. 2.5.4) * but is gone in newer versions (e.g. 2.5.31) */ if( yy_current_buffer != NULL ) { yy_delete_buffer( yy_current_buffer ); yy_current_buffer = 0; } #endif } #define MAX_INCLUDE_DEPTH 5 YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH]; int include_stack_ptr = 0; #define OBJECT_STRING 1 #define VALUE_STRING 2 #define EXPRESSION_STRING 3 #define INCLUDE 4 #line 1877 "maplexer.c" /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap YY_PROTO(( void )); #else extern int yywrap YY_PROTO(( void )); #endif #endif #ifndef YY_NO_UNPUT static void yyunput YY_PROTO(( int c, char *buf_ptr )); #endif #ifndef yytext_ptr static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen YY_PROTO(( yyconst char * )); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput YY_PROTO(( void )); #else static int input YY_PROTO(( void )); #endif #endif #if YY_STACK_USED static int yy_start_stack_ptr = 0; static int yy_start_stack_depth = 0; static int *yy_start_stack = 0; #ifndef YY_NO_PUSH_STATE static void yy_push_state YY_PROTO(( int new_state )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( void )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( void )); #endif #else #define YY_NO_PUSH_STATE 1 #define YY_NO_POP_STATE 1 #define YY_NO_TOP_STATE 1 #endif #ifdef YY_MALLOC_DECL YY_MALLOC_DECL #else #if __STDC__ #ifndef __cplusplus #include #endif #else /* Just try to get by without declaring the routines. This will fail * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) * or sizeof(void*) != sizeof(int). */ #endif #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 /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( yy_current_buffer->yy_is_interactive ) \ { \ int c = '*', n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \ && ferror( yyin ) ) \ 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) yy_fatal_error( msg ) #endif /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL int yylex YY_PROTO(( void )) #endif /* 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 YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 58 "maplexer.l" switch(msyystate) { case(0): break; case(1): BEGIN(OBJECT_STRING); msyy_scan_string(msyystring); msyystate=0; msyyreturncomments=0; (void) yyunput; /* just to avoid warning about it being unrefed */ break; case(2): BEGIN(VALUE_STRING); msyy_delete_buffer(YY_CURRENT_BUFFER); msyy_scan_string(msyystring); msyystate=0; msyyreturncomments=0; break; case(3): BEGIN(INITIAL); msyy_delete_buffer(YY_CURRENT_BUFFER); msyystate=0; msyystring=NULL; msyyreturncomments=0; return(0); break; case(4): BEGIN(EXPRESSION_STRING); msyy_delete_buffer(YY_CURRENT_BUFFER); msyy_scan_string(msyystring); msyystate=0; msyyreturncomments=0; break; case(5): BEGIN(INITIAL); msyystate=0; msyystring=NULL; msyyreturncomments=0; return(0); break; case(6): BEGIN(INITIAL); msyystate=0; msyystring=NULL; msyyreturncomments=1; /* Return comments in tokenizer mode */ return(0); break; default: break; } #line 2080 "maplexer.c" if ( yy_init ) { yy_init = 0; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yy_start ) yy_start = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! yy_current_buffer ) yy_current_buffer = 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 >= 2463 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 2770 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = yy_last_accepting_cpos; yy_current_state = yy_last_accepting_state; yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = yy_hold_char; yy_cp = yy_last_accepting_cpos; yy_current_state = yy_last_accepting_state; goto yy_find_action; case 1: YY_RULE_SETUP #line 109 "maplexer.l" ; YY_BREAK case 2: YY_RULE_SETUP #line 111 "maplexer.l" { if (msyyreturncomments) return(MS_COMMENT); } YY_BREAK case 3: YY_RULE_SETUP #line 113 "maplexer.l" ; YY_BREAK case 4: YY_RULE_SETUP #line 115 "maplexer.l" { return(OR); } YY_BREAK case 5: YY_RULE_SETUP #line 116 "maplexer.l" { return(AND); } YY_BREAK case 6: YY_RULE_SETUP #line 117 "maplexer.l" { return(EQ); } YY_BREAK case 7: YY_RULE_SETUP #line 118 "maplexer.l" { return(NE); } YY_BREAK case 8: YY_RULE_SETUP #line 119 "maplexer.l" { return(GT); } YY_BREAK case 9: YY_RULE_SETUP #line 120 "maplexer.l" { return(LT); } YY_BREAK case 10: YY_RULE_SETUP #line 121 "maplexer.l" { return(GE); } YY_BREAK case 11: YY_RULE_SETUP #line 122 "maplexer.l" { return(LE); } YY_BREAK case 12: YY_RULE_SETUP #line 123 "maplexer.l" { return(RE); } YY_BREAK case 13: YY_RULE_SETUP #line 124 "maplexer.l" { return(IN); } YY_BREAK case 14: YY_RULE_SETUP #line 125 "maplexer.l" { return(NOT); } YY_BREAK case 15: YY_RULE_SETUP #line 127 "maplexer.l" { return(LENGTH); } YY_BREAK case 16: YY_RULE_SETUP #line 128 "maplexer.l" { return(IEQ); } YY_BREAK case 17: YY_RULE_SETUP #line 131 "maplexer.l" { return(COLORRANGE); } YY_BREAK case 18: YY_RULE_SETUP #line 132 "maplexer.l" { return(ALPHACOLORRANGE); } YY_BREAK case 19: YY_RULE_SETUP #line 133 "maplexer.l" { return(DATARANGE); } YY_BREAK case 20: YY_RULE_SETUP #line 134 "maplexer.l" { return(RANGEITEM); } YY_BREAK case 21: YY_RULE_SETUP #line 136 "maplexer.l" { return(ALPHACOLOR); } YY_BREAK case 22: YY_RULE_SETUP #line 137 "maplexer.l" { return(ANGLE); } YY_BREAK case 23: YY_RULE_SETUP #line 138 "maplexer.l" { return(ANGLEITEM); } YY_BREAK case 24: YY_RULE_SETUP #line 139 "maplexer.l" { return(ANTIALIAS); } YY_BREAK case 25: YY_RULE_SETUP #line 140 "maplexer.l" { return(BACKGROUNDCOLOR); } YY_BREAK case 26: YY_RULE_SETUP #line 141 "maplexer.l" { return(BACKGROUNDSHADOWCOLOR); } YY_BREAK case 27: YY_RULE_SETUP #line 142 "maplexer.l" { return(BACKGROUNDSHADOWSIZE); } YY_BREAK case 28: YY_RULE_SETUP #line 143 "maplexer.l" { return(BANDSITEM); } YY_BREAK case 29: YY_RULE_SETUP #line 144 "maplexer.l" { return(BROWSEFORMAT); } YY_BREAK case 30: YY_RULE_SETUP #line 145 "maplexer.l" { return(BUFFER); } YY_BREAK case 31: YY_RULE_SETUP #line 146 "maplexer.l" { return(CHARACTER); } YY_BREAK case 32: YY_RULE_SETUP #line 147 "maplexer.l" { return(CLASS); } YY_BREAK case 33: YY_RULE_SETUP #line 148 "maplexer.l" { return(CLASSITEM); } YY_BREAK case 34: YY_RULE_SETUP #line 149 "maplexer.l" { return(COLOR); } YY_BREAK case 35: YY_RULE_SETUP #line 150 "maplexer.l" { return(CONFIG); } YY_BREAK case 36: YY_RULE_SETUP #line 151 "maplexer.l" { return(CONNECTION); } YY_BREAK case 37: YY_RULE_SETUP #line 152 "maplexer.l" { return(CONNECTIONTYPE); } YY_BREAK case 38: YY_RULE_SETUP #line 153 "maplexer.l" { return(DATA); } YY_BREAK case 39: YY_RULE_SETUP #line 154 "maplexer.l" { return(DATAPATTERN); } YY_BREAK case 40: YY_RULE_SETUP #line 155 "maplexer.l" { return(DEBUG); } YY_BREAK case 41: YY_RULE_SETUP #line 156 "maplexer.l" { return(DRIVER); } YY_BREAK case 42: YY_RULE_SETUP #line 157 "maplexer.l" { return(DUMP); } YY_BREAK case 43: YY_RULE_SETUP #line 158 "maplexer.l" { return(EMPTY); } YY_BREAK case 44: YY_RULE_SETUP #line 159 "maplexer.l" { return(ENCODING); } YY_BREAK case 45: YY_RULE_SETUP #line 160 "maplexer.l" { return(END); } YY_BREAK case 46: YY_RULE_SETUP #line 161 "maplexer.l" { return(ERROR); } YY_BREAK case 47: YY_RULE_SETUP #line 162 "maplexer.l" { return(EXPRESSION); } YY_BREAK case 48: YY_RULE_SETUP #line 163 "maplexer.l" { return(EXTENT); } YY_BREAK case 49: YY_RULE_SETUP #line 164 "maplexer.l" { return(EXTENSION); } YY_BREAK case 50: YY_RULE_SETUP #line 165 "maplexer.l" { return(FEATURE); } YY_BREAK case 51: YY_RULE_SETUP #line 166 "maplexer.l" { return(FILLED); } YY_BREAK case 52: YY_RULE_SETUP #line 167 "maplexer.l" { return(FILTER); } YY_BREAK case 53: YY_RULE_SETUP #line 168 "maplexer.l" { return(FILTERITEM); } YY_BREAK case 54: YY_RULE_SETUP #line 169 "maplexer.l" { return(FOOTER); } YY_BREAK case 55: YY_RULE_SETUP #line 170 "maplexer.l" { return(FONT); } YY_BREAK case 56: YY_RULE_SETUP #line 171 "maplexer.l" { return(FONTSET); } YY_BREAK case 57: YY_RULE_SETUP #line 172 "maplexer.l" { return(FORCE); } YY_BREAK case 58: YY_RULE_SETUP #line 173 "maplexer.l" { return(FORMATOPTION); } YY_BREAK case 59: YY_RULE_SETUP #line 174 "maplexer.l" { return(FROM); } YY_BREAK case 60: YY_RULE_SETUP #line 175 "maplexer.l" { return(GAP); } YY_BREAK case 61: YY_RULE_SETUP #line 176 "maplexer.l" { return(GRID); } YY_BREAK case 62: YY_RULE_SETUP #line 177 "maplexer.l" { return(GRATICULE); } YY_BREAK case 63: YY_RULE_SETUP #line 178 "maplexer.l" { return(GROUP); } YY_BREAK case 64: YY_RULE_SETUP #line 179 "maplexer.l" { return(HEADER); } YY_BREAK case 65: YY_RULE_SETUP #line 180 "maplexer.l" { return(IMAGE); } YY_BREAK case 66: YY_RULE_SETUP #line 181 "maplexer.l" { return(IMAGECOLOR); } YY_BREAK case 67: YY_RULE_SETUP #line 182 "maplexer.l" { return(IMAGETYPE); } YY_BREAK case 68: YY_RULE_SETUP #line 183 "maplexer.l" { return(IMAGEQUALITY); } YY_BREAK case 69: YY_RULE_SETUP #line 184 "maplexer.l" { return(IMAGEMODE); } YY_BREAK case 70: YY_RULE_SETUP #line 185 "maplexer.l" { return(IMAGEPATH); } YY_BREAK case 71: YY_RULE_SETUP #line 186 "maplexer.l" { return(IMAGEURL); } YY_BREAK case 72: YY_RULE_SETUP #line 187 "maplexer.l" { BEGIN(INCLUDE); } YY_BREAK case 73: YY_RULE_SETUP #line 188 "maplexer.l" { return(INDEX); } YY_BREAK case 74: YY_RULE_SETUP #line 189 "maplexer.l" { return(INTERLACE); } YY_BREAK case 75: YY_RULE_SETUP #line 190 "maplexer.l" { return(INTERVALS); } YY_BREAK case 76: YY_RULE_SETUP #line 191 "maplexer.l" { return(JOIN); } YY_BREAK case 77: YY_RULE_SETUP #line 192 "maplexer.l" { return(KEYIMAGE); } YY_BREAK case 78: YY_RULE_SETUP #line 193 "maplexer.l" { return(KEYSIZE); } YY_BREAK case 79: YY_RULE_SETUP #line 194 "maplexer.l" { return(KEYSPACING); } YY_BREAK case 80: YY_RULE_SETUP #line 195 "maplexer.l" { return(LABEL); } YY_BREAK case 81: YY_RULE_SETUP #line 196 "maplexer.l" { return(LABELANGLEITEM); } YY_BREAK case 82: YY_RULE_SETUP #line 197 "maplexer.l" { return(LABELCACHE); } YY_BREAK case 83: YY_RULE_SETUP #line 198 "maplexer.l" { return(LABELFORMAT); } YY_BREAK case 84: YY_RULE_SETUP #line 199 "maplexer.l" { return(LABELITEM); } YY_BREAK case 85: YY_RULE_SETUP #line 200 "maplexer.l" { return(LABELMAXSCALE); } YY_BREAK case 86: YY_RULE_SETUP #line 201 "maplexer.l" { return(LABELMINSCALE); } YY_BREAK case 87: YY_RULE_SETUP #line 202 "maplexer.l" { return(LABELREQUIRES); } YY_BREAK case 88: YY_RULE_SETUP #line 203 "maplexer.l" { return(LABELSIZEITEM); } YY_BREAK case 89: YY_RULE_SETUP #line 204 "maplexer.l" { return(LATLON); } YY_BREAK case 90: YY_RULE_SETUP #line 205 "maplexer.l" { return(LAYER); } YY_BREAK case 91: YY_RULE_SETUP #line 206 "maplexer.l" { return(LEGEND); } YY_BREAK case 92: YY_RULE_SETUP #line 207 "maplexer.l" { return(LEGENDFORMAT); } YY_BREAK case 93: YY_RULE_SETUP #line 208 "maplexer.l" { return(LINECAP); } YY_BREAK case 94: YY_RULE_SETUP #line 209 "maplexer.l" { return(LINEJOIN); } YY_BREAK case 95: YY_RULE_SETUP #line 210 "maplexer.l" { return(LINEJOINMAXSIZE); } YY_BREAK case 96: YY_RULE_SETUP #line 211 "maplexer.l" { return(LOG); } YY_BREAK case 97: YY_RULE_SETUP #line 212 "maplexer.l" { return(MAP); } YY_BREAK case 98: YY_RULE_SETUP #line 213 "maplexer.l" { return(MARKER); } YY_BREAK case 99: YY_RULE_SETUP #line 214 "maplexer.l" { return(MARKERSIZE); } YY_BREAK case 100: YY_RULE_SETUP #line 215 "maplexer.l" { return(MAXARCS); } YY_BREAK case 101: YY_RULE_SETUP #line 216 "maplexer.l" { return(MAXBOXSIZE); } YY_BREAK case 102: YY_RULE_SETUP #line 217 "maplexer.l" { return(MAXFEATURES); } YY_BREAK case 103: YY_RULE_SETUP #line 218 "maplexer.l" { return(MAXINTERVAL); } YY_BREAK case 104: YY_RULE_SETUP #line 219 "maplexer.l" { return(MAXSCALE); } YY_BREAK case 105: YY_RULE_SETUP #line 220 "maplexer.l" { return(MAXSIZE); } YY_BREAK case 106: YY_RULE_SETUP #line 221 "maplexer.l" { return(MAXSUBDIVIDE); } YY_BREAK case 107: YY_RULE_SETUP #line 222 "maplexer.l" { return(MAXTEMPLATE); } YY_BREAK case 108: YY_RULE_SETUP #line 223 "maplexer.l" { return(MAXWIDTH); } YY_BREAK case 109: YY_RULE_SETUP #line 224 "maplexer.l" { return(METADATA); } YY_BREAK case 110: YY_RULE_SETUP #line 225 "maplexer.l" { return(MIMETYPE); } YY_BREAK case 111: YY_RULE_SETUP #line 226 "maplexer.l" { return(MINARCS); } YY_BREAK case 112: YY_RULE_SETUP #line 227 "maplexer.l" { return(MINBOXSIZE); } YY_BREAK case 113: YY_RULE_SETUP #line 228 "maplexer.l" { return(MINDISTANCE); } YY_BREAK case 114: YY_RULE_SETUP #line 229 "maplexer.l" { return(MINFEATURESIZE); } YY_BREAK case 115: YY_RULE_SETUP #line 230 "maplexer.l" { return(MININTERVAL); } YY_BREAK case 116: YY_RULE_SETUP #line 231 "maplexer.l" { return(MINSCALE); } YY_BREAK case 117: YY_RULE_SETUP #line 232 "maplexer.l" { return(MINSIZE); } YY_BREAK case 118: YY_RULE_SETUP #line 233 "maplexer.l" { return(MINSUBDIVIDE); } YY_BREAK case 119: YY_RULE_SETUP #line 234 "maplexer.l" { return(MINTEMPLATE); } YY_BREAK case 120: YY_RULE_SETUP #line 235 "maplexer.l" { return(MINWIDTH); } YY_BREAK case 121: YY_RULE_SETUP #line 236 "maplexer.l" { return(NAME); } YY_BREAK case 122: YY_RULE_SETUP #line 237 "maplexer.l" { return(OFFSET); } YY_BREAK case 123: YY_RULE_SETUP #line 238 "maplexer.l" { return(OFFSITE); } YY_BREAK case 124: YY_RULE_SETUP #line 239 "maplexer.l" { return(OUTLINECOLOR); } YY_BREAK case 125: YY_RULE_SETUP #line 240 "maplexer.l" { return(OUTPUTFORMAT); } YY_BREAK case 126: YY_RULE_SETUP #line 241 "maplexer.l" { return(OVERLAYBACKGROUNDCOLOR); } YY_BREAK case 127: YY_RULE_SETUP #line 242 "maplexer.l" { return(OVERLAYCOLOR); } YY_BREAK case 128: YY_RULE_SETUP #line 243 "maplexer.l" { return(OVERLAYMAXSIZE); } YY_BREAK case 129: YY_RULE_SETUP #line 244 "maplexer.l" { return(OVERLAYMINSIZE); } YY_BREAK case 130: YY_RULE_SETUP #line 245 "maplexer.l" { return(OVERLAYOUTLINECOLOR); } YY_BREAK case 131: YY_RULE_SETUP #line 246 "maplexer.l" { return(OVERLAYSIZE); } YY_BREAK case 132: YY_RULE_SETUP #line 247 "maplexer.l" { return(OVERLAYSYMBOL); } YY_BREAK case 133: YY_RULE_SETUP #line 248 "maplexer.l" { return(PARTIALS); } YY_BREAK case 134: YY_RULE_SETUP #line 249 "maplexer.l" { return(POINTS); } YY_BREAK case 135: YY_RULE_SETUP #line 250 "maplexer.l" { return(POSITION); } YY_BREAK case 136: YY_RULE_SETUP #line 251 "maplexer.l" { return(POSTLABELCACHE); } YY_BREAK case 137: YY_RULE_SETUP #line 252 "maplexer.l" { return(PROCESSING); } YY_BREAK case 138: YY_RULE_SETUP #line 253 "maplexer.l" { return(PROJECTION); } YY_BREAK case 139: YY_RULE_SETUP #line 254 "maplexer.l" { return(QUERYFORMAT); } YY_BREAK case 140: YY_RULE_SETUP #line 255 "maplexer.l" { return(QUERYMAP); } YY_BREAK case 141: YY_RULE_SETUP #line 256 "maplexer.l" { return(REFERENCE); } YY_BREAK case 142: YY_RULE_SETUP #line 257 "maplexer.l" { return(RELATIVETO); } YY_BREAK case 143: YY_RULE_SETUP #line 258 "maplexer.l" { return(REQUIRES); } YY_BREAK case 144: YY_RULE_SETUP #line 259 "maplexer.l" { return(RESOLUTION); } YY_BREAK case 145: YY_RULE_SETUP #line 260 "maplexer.l" { return(SCALE); } YY_BREAK case 146: YY_RULE_SETUP #line 261 "maplexer.l" { return(SCALEBAR); } YY_BREAK case 147: YY_RULE_SETUP #line 262 "maplexer.l" { return(SHADOWCOLOR); } YY_BREAK case 148: YY_RULE_SETUP #line 263 "maplexer.l" { return(SHADOWSIZE); } YY_BREAK case 149: YY_RULE_SETUP #line 264 "maplexer.l" { return(SHAPEPATH); } YY_BREAK case 150: YY_RULE_SETUP #line 265 "maplexer.l" { return(SIZE); } YY_BREAK case 151: YY_RULE_SETUP #line 266 "maplexer.l" { return(SIZEITEM); } YY_BREAK case 152: YY_RULE_SETUP #line 267 "maplexer.l" { return(SIZEUNITS); } YY_BREAK case 153: YY_RULE_SETUP #line 268 "maplexer.l" { return(STATUS); } YY_BREAK case 154: YY_RULE_SETUP #line 269 "maplexer.l" { return(STYLE); } YY_BREAK case 155: YY_RULE_SETUP #line 270 "maplexer.l" { return(STYLEITEM); } YY_BREAK case 156: YY_RULE_SETUP #line 271 "maplexer.l" { return(SYMBOL); } YY_BREAK case 157: YY_RULE_SETUP #line 272 "maplexer.l" { return(SYMBOLSCALE); } YY_BREAK case 158: YY_RULE_SETUP #line 273 "maplexer.l" { return(SYMBOLSET); } YY_BREAK case 159: YY_RULE_SETUP #line 274 "maplexer.l" { return(TABLE); } YY_BREAK case 160: YY_RULE_SETUP #line 275 "maplexer.l" { return(TEMPLATE); } YY_BREAK case 161: YY_RULE_SETUP #line 276 "maplexer.l" { return(TEMPLATEPATTERN); } YY_BREAK case 162: YY_RULE_SETUP #line 277 "maplexer.l" { return(TEXT); } YY_BREAK case 163: YY_RULE_SETUP #line 278 "maplexer.l" { return(TILEINDEX); } YY_BREAK case 164: YY_RULE_SETUP #line 279 "maplexer.l" { return(MS_LAYER_TILEINDEX); } YY_BREAK case 165: YY_RULE_SETUP #line 280 "maplexer.l" { return(TILEITEM); } YY_BREAK case 166: YY_RULE_SETUP #line 281 "maplexer.l" { return(TITLE); } YY_BREAK case 167: YY_RULE_SETUP #line 282 "maplexer.l" { return(TO); } YY_BREAK case 168: YY_RULE_SETUP #line 283 "maplexer.l" { return(TOLERANCE); } YY_BREAK case 169: YY_RULE_SETUP #line 284 "maplexer.l" { return(TOLERANCEUNITS); } YY_BREAK case 170: YY_RULE_SETUP #line 285 "maplexer.l" { return(TRANSPARENCY); } YY_BREAK case 171: YY_RULE_SETUP #line 286 "maplexer.l" { return(TRANSPARENT); } YY_BREAK case 172: YY_RULE_SETUP #line 287 "maplexer.l" { return(TRANSFORM); } YY_BREAK case 173: YY_RULE_SETUP #line 288 "maplexer.l" { return(TYPE); } YY_BREAK case 174: YY_RULE_SETUP #line 289 "maplexer.l" { return(UNITS); } YY_BREAK case 175: YY_RULE_SETUP #line 290 "maplexer.l" { return(WEB); } YY_BREAK case 176: YY_RULE_SETUP #line 291 "maplexer.l" { return(WIDTH); } YY_BREAK case 177: YY_RULE_SETUP #line 292 "maplexer.l" { return(WKT); } YY_BREAK case 178: YY_RULE_SETUP #line 293 "maplexer.l" { return(WRAP); } YY_BREAK case 179: YY_RULE_SETUP #line 295 "maplexer.l" { return(MS_LAYER_ANNOTATION); } YY_BREAK case 180: YY_RULE_SETUP #line 296 "maplexer.l" { return(MS_AUTO); } YY_BREAK case 181: YY_RULE_SETUP #line 297 "maplexer.l" { return(MS_CJC_BEVEL); } YY_BREAK case 182: YY_RULE_SETUP #line 298 "maplexer.l" { return(MS_BITMAP); } YY_BREAK case 183: YY_RULE_SETUP #line 299 "maplexer.l" { return(MS_CJC_BUTT); } YY_BREAK case 184: YY_RULE_SETUP #line 300 "maplexer.l" { return(MS_SYMBOL_CARTOLINE); } YY_BREAK case 185: YY_RULE_SETUP #line 301 "maplexer.l" { return(MS_CC); } YY_BREAK case 186: YY_RULE_SETUP #line 302 "maplexer.l" { return(MS_LAYER_CIRCLE); } YY_BREAK case 187: YY_RULE_SETUP #line 303 "maplexer.l" { return(MS_CL); } YY_BREAK case 188: YY_RULE_SETUP #line 304 "maplexer.l" { return(MS_CR); } YY_BREAK case 189: YY_RULE_SETUP #line 305 "maplexer.l" { return(MS_DB_CSV); } YY_BREAK case 190: YY_RULE_SETUP #line 306 "maplexer.l" { return(MS_DB_MYSQL); } YY_BREAK case 191: YY_RULE_SETUP #line 307 "maplexer.l" { return(MS_DB_POSTGRES); } YY_BREAK case 192: YY_RULE_SETUP #line 308 "maplexer.l" { return(MS_DEFAULT); } YY_BREAK case 193: YY_RULE_SETUP #line 309 "maplexer.l" { return(MS_DD); } YY_BREAK case 194: YY_RULE_SETUP #line 310 "maplexer.l" { return(MS_SYMBOL_ELLIPSE); } YY_BREAK case 195: YY_RULE_SETUP #line 311 "maplexer.l" { return(MS_EMBED); } YY_BREAK case 196: YY_RULE_SETUP #line 312 "maplexer.l" { return(MS_FALSE); } YY_BREAK case 197: YY_RULE_SETUP #line 313 "maplexer.l" { return(MS_FEET); } YY_BREAK case 198: YY_RULE_SETUP #line 314 "maplexer.l" { return(MS_FOLLOW); } YY_BREAK case 199: YY_RULE_SETUP #line 315 "maplexer.l" { return(MS_GIANT); } YY_BREAK case 200: YY_RULE_SETUP #line 316 "maplexer.l" { return(MS_SYMBOL_HATCH); } YY_BREAK case 201: YY_RULE_SETUP #line 317 "maplexer.l" { return(MS_HILITE); } YY_BREAK case 202: YY_RULE_SETUP #line 318 "maplexer.l" { return(MS_INCHES); } YY_BREAK case 203: YY_RULE_SETUP #line 319 "maplexer.l" { return(MS_KILOMETERS); } YY_BREAK case 204: YY_RULE_SETUP #line 320 "maplexer.l" { return(MS_LARGE); } YY_BREAK case 205: YY_RULE_SETUP #line 321 "maplexer.l" { return(MS_LC); } YY_BREAK case 206: YY_RULE_SETUP #line 322 "maplexer.l" { return(MS_LAYER_LINE); } YY_BREAK case 207: YY_RULE_SETUP #line 323 "maplexer.l" { return(MS_LL); } YY_BREAK case 208: YY_RULE_SETUP #line 324 "maplexer.l" { return(MS_LR); } YY_BREAK case 209: YY_RULE_SETUP #line 325 "maplexer.l" { return(MS_MEDIUM); } YY_BREAK case 210: YY_RULE_SETUP #line 326 "maplexer.l" { return(MS_METERS); } YY_BREAK case 211: YY_RULE_SETUP #line 327 "maplexer.l" { return(MS_MILES); } YY_BREAK case 212: YY_RULE_SETUP #line 328 "maplexer.l" { return(MS_CJC_MITER); } YY_BREAK case 213: YY_RULE_SETUP #line 329 "maplexer.l" { return(MS_MULTIPLE); } YY_BREAK case 214: YY_RULE_SETUP #line 331 "maplexer.l" { return(MS_CJC_NONE); } YY_BREAK case 215: YY_RULE_SETUP #line 332 "maplexer.l" { return(MS_NORMAL); } YY_BREAK case 216: YY_RULE_SETUP #line 333 "maplexer.l" { return(MS_OFF); } YY_BREAK case 217: YY_RULE_SETUP #line 334 "maplexer.l" { return(MS_OGR); } YY_BREAK case 218: YY_RULE_SETUP #line 335 "maplexer.l" { return(MS_ON); } YY_BREAK case 219: YY_RULE_SETUP #line 336 "maplexer.l" { return(MS_JOIN_ONE_TO_ONE); } YY_BREAK case 220: YY_RULE_SETUP #line 337 "maplexer.l" { return(MS_JOIN_ONE_TO_MANY); } YY_BREAK case 221: YY_RULE_SETUP #line 338 "maplexer.l" { return(MS_ORACLESPATIAL); } YY_BREAK case 222: YY_RULE_SETUP #line 339 "maplexer.l" { return(MS_PERCENTAGES); } YY_BREAK case 223: YY_RULE_SETUP #line 340 "maplexer.l" { return(MS_SYMBOL_PIXMAP); } YY_BREAK case 224: YY_RULE_SETUP #line 341 "maplexer.l" { return(MS_PIXELS); } YY_BREAK case 225: YY_RULE_SETUP #line 342 "maplexer.l" { return(MS_LAYER_POINT); } YY_BREAK case 226: YY_RULE_SETUP #line 343 "maplexer.l" { return(MS_LAYER_POLYGON); } YY_BREAK case 227: YY_RULE_SETUP #line 344 "maplexer.l" { return(MS_POSTGIS); } YY_BREAK case 228: YY_RULE_SETUP #line 345 "maplexer.l" { return(MS_MYGIS); } YY_BREAK case 229: YY_RULE_SETUP #line 346 "maplexer.l" { return(MS_PLUGIN); } YY_BREAK case 230: YY_RULE_SETUP #line 347 "maplexer.l" { return(MS_LAYER_QUERY); } YY_BREAK case 231: YY_RULE_SETUP #line 348 "maplexer.l" { return(MS_LAYER_RASTER); } YY_BREAK case 232: YY_RULE_SETUP #line 349 "maplexer.l" { return(MS_CJC_ROUND); } YY_BREAK case 233: YY_RULE_SETUP #line 350 "maplexer.l" { return(MS_SDE); } YY_BREAK case 234: YY_RULE_SETUP #line 351 "maplexer.l" { return(MS_SELECTED); } YY_BREAK case 235: YY_RULE_SETUP #line 352 "maplexer.l" { return(MS_SYMBOL_SIMPLE); } YY_BREAK case 236: YY_RULE_SETUP #line 353 "maplexer.l" { return(MS_SINGLE); } YY_BREAK case 237: YY_RULE_SETUP #line 354 "maplexer.l" { return(MS_SMALL); } YY_BREAK case 238: YY_RULE_SETUP #line 355 "maplexer.l" { return(MS_CJC_SQUARE); } YY_BREAK case 239: YY_RULE_SETUP #line 356 "maplexer.l" { return(MS_TINY); } YY_BREAK case 240: YY_RULE_SETUP #line 357 "maplexer.l" { return(MS_CJC_TRIANGLE); } YY_BREAK case 241: YY_RULE_SETUP #line 358 "maplexer.l" { return(MS_TRUE); } YY_BREAK case 242: YY_RULE_SETUP #line 359 "maplexer.l" { return(MS_TRUETYPE); } YY_BREAK case 243: YY_RULE_SETUP #line 360 "maplexer.l" { return(MS_UC); } YY_BREAK case 244: YY_RULE_SETUP #line 361 "maplexer.l" { return(MS_UL); } YY_BREAK case 245: YY_RULE_SETUP #line 362 "maplexer.l" { return(MS_UR); } YY_BREAK case 246: YY_RULE_SETUP #line 363 "maplexer.l" { return(MS_SYMBOL_VECTOR); } YY_BREAK case 247: YY_RULE_SETUP #line 364 "maplexer.l" { return(MS_WFS); } YY_BREAK case 248: YY_RULE_SETUP #line 365 "maplexer.l" { return(MS_WMS); } YY_BREAK case 249: YY_RULE_SETUP #line 366 "maplexer.l" { return(MS_GD_ALPHA); } YY_BREAK case 250: YY_RULE_SETUP #line 368 "maplexer.l" { msyynumber = atof(msyytext); return(MS_NUMBER); } YY_BREAK case 251: YY_RULE_SETUP #line 373 "maplexer.l" { msyynumber = atof(msyytext); return(MS_NUMBER); } YY_BREAK case 252: YY_RULE_SETUP #line 378 "maplexer.l" { msyylval.dblval = atof(msyytext); return(NUMBER); } YY_BREAK case 253: YY_RULE_SETUP #line 383 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; msTimeInit(&msyylval.tmval); msParseTime(msyytext, &msyylval.tmval); /* TODO: need to trap bad date formats somehow, should return a parse error (need an error token in mapparser.y)*/ return(TIME); } YY_BREAK case 254: YY_RULE_SETUP #line 392 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-2] = '\0'; return(MS_IREGEX); } YY_BREAK case 255: YY_RULE_SETUP #line 398 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-2] = '\0'; msyylval.strval = strdup(msyytext); return(IREGEX); } YY_BREAK case 256: YY_RULE_SETUP #line 405 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; return(MS_REGEX); } YY_BREAK case 257: YY_RULE_SETUP #line 411 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; msyylval.strval = strdup(msyytext); return(REGEX); } YY_BREAK case 258: YY_RULE_SETUP #line 418 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; return(MS_EXPRESSION); } YY_BREAK case 259: YY_RULE_SETUP #line 424 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-2] = '\0'; return(MS_ISTRING); } YY_BREAK case 260: YY_RULE_SETUP #line 430 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; if(include_stack_ptr >= MAX_INCLUDE_DEPTH) { msSetError(MS_IOERR, "Includes nested to deeply.", "msyylex()"); exit(1); } include_stack[include_stack_ptr++] = YY_CURRENT_BUFFER; msyyin = fopen(msyytext, "r"); if(!msyyin) { msSetError(MS_IOERR, "Error opening included file \"%s\".", "msyylex()", msyytext); exit(1); } msyy_switch_to_buffer( msyy_create_buffer(msyyin, YY_BUF_SIZE) ); BEGIN(INITIAL); } YY_BREAK case 261: YY_RULE_SETUP #line 452 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; return(MS_STRING); } YY_BREAK case 262: YY_RULE_SETUP #line 458 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-2] = '\0'; /* msyylval.strval = strdup(msyytext);*/ msyylval.strval = msyytext; return(ISTRING); } YY_BREAK case 263: YY_RULE_SETUP #line 466 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; /* msyylval.strval = strdup(msyytext);*/ msyylval.strval = msyytext; return(STRING); } YY_BREAK case 264: YY_RULE_SETUP #line 474 "maplexer.l" { return(MS_STRING); } YY_BREAK case 265: YY_RULE_SETUP #line 475 "maplexer.l" { return(MS_STRING); } YY_BREAK case 266: YY_RULE_SETUP #line 476 "maplexer.l" { return(MS_STRING); } YY_BREAK case 267: YY_RULE_SETUP #line 478 "maplexer.l" { msyylineno++; } YY_BREAK case YY_STATE_EOF(INITIAL): #line 480 "maplexer.l" { if( --include_stack_ptr < 0 ) return(EOF); /* end of main file */ else { msyy_delete_buffer( YY_CURRENT_BUFFER ); msyy_switch_to_buffer(include_stack[include_stack_ptr]); } } YY_BREAK case 268: YY_RULE_SETUP #line 489 "maplexer.l" { return(0); } YY_BREAK case 269: YY_RULE_SETUP #line 491 "maplexer.l" { return(0); } YY_BREAK case 270: YY_RULE_SETUP #line 492 "maplexer.l" { return(msyytext[0]); } YY_BREAK case 271: YY_RULE_SETUP #line 493 "maplexer.l" ECHO; YY_BREAK #line 3607 "maplexer.c" case YY_STATE_EOF(OBJECT_STRING): case YY_STATE_EOF(VALUE_STRING): case YY_STATE_EOF(EXPRESSION_STRING): case YY_STATE_EOF(INCLUDE): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = yy_hold_char; YY_RESTORE_YY_MORE_OFFSET if ( yy_current_buffer->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->yy_n_chars; yy_current_buffer->yy_input_file = yyin; yy_current_buffer->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->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_c_buf_p; 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->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 */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer() { register char *dest = yy_current_buffer->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->yy_ch_buf[yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( yy_current_buffer->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->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->yy_n_chars = yy_n_chars = 0; else { int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ #ifdef YY_USES_REJECT YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); #else /* 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 ) { int 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. */ yy_flex_realloc( (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->yy_buf_size - number_to_move - 1; #endif } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), yy_n_chars, num_to_read ); yy_current_buffer->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->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; yy_n_chars += number_to_move; yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state() { 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)] : 51); 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 >= 2463 ) 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 ); */ #ifdef YY_USE_PROTOS static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) #else static yy_state_type yy_try_NUL_trans( yy_current_state ) yy_state_type yy_current_state; #endif { register int yy_is_jam; register char *yy_cp = yy_c_buf_p; register YY_CHAR yy_c = 51; 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 >= 2463 ) 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 == 2462); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #ifdef YY_USE_PROTOS static void yyunput( int c, register char *yy_bp ) #else static void yyunput( c, yy_bp ) int c; register char *yy_bp; #endif { register char *yy_cp = yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yy_hold_char; if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = yy_n_chars + 2; register char *dest = &yy_current_buffer->yy_ch_buf[ yy_current_buffer->yy_buf_size + 2]; register char *source = &yy_current_buffer->yy_ch_buf[number_to_move]; while ( source > yy_current_buffer->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); yy_current_buffer->yy_n_chars = yy_n_chars = yy_current_buffer->yy_buf_size; if ( yy_cp < yy_current_buffer->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; } #endif /* ifndef YY_NO_UNPUT */ #ifdef __cplusplus static int yyinput() #else static int input() #endif { 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->yy_ch_buf[yy_n_chars] ) /* This was really a NUL. */ *yy_c_buf_p = '\0'; else { /* need more input */ int 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 ); /* fall through */ case EOB_ACT_END_OF_FILE: { if ( yywrap() ) return EOF; 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; } #ifdef YY_USE_PROTOS void yyrestart( FILE *input_file ) #else void yyrestart( input_file ) FILE *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); yy_init_buffer( yy_current_buffer, input_file ); yy_load_buffer_state(); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) #else void yy_switch_to_buffer( new_buffer ) YY_BUFFER_STATE new_buffer; #endif { 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->yy_buf_pos = yy_c_buf_p; yy_current_buffer->yy_n_chars = yy_n_chars; } yy_current_buffer = 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; } #ifdef YY_USE_PROTOS void yy_load_buffer_state( void ) #else void yy_load_buffer_state() #endif { yy_n_chars = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; yyin = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) #else YY_BUFFER_STATE yy_create_buffer( file, size ) FILE *file; int size; #endif { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yy_flex_alloc( 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 *) yy_flex_alloc( 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; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b ) #else void yy_delete_buffer( b ) YY_BUFFER_STATE b; #endif { if ( ! b ) return; if ( b == yy_current_buffer ) yy_current_buffer = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yy_flex_free( (void *) b->yy_ch_buf ); yy_flex_free( (void *) b ); } #ifndef YY_ALWAYS_INTERACTIVE #ifndef YY_NEVER_INTERACTIVE extern int isatty YY_PROTO(( int )); #endif #endif #ifdef YY_USE_PROTOS void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) #else void yy_init_buffer( b, file ) YY_BUFFER_STATE b; FILE *file; #endif { yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; #if YY_ALWAYS_INTERACTIVE b->yy_is_interactive = 1; #else #if YY_NEVER_INTERACTIVE b->yy_is_interactive = 0; #else b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b ) #else void yy_flush_buffer( b ) YY_BUFFER_STATE b; #endif { 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(); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) #else YY_BUFFER_STATE yy_scan_buffer( base, size ) char *base; yy_size_t size; #endif { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) #else YY_BUFFER_STATE yy_scan_string( yy_str ) yyconst char *yy_str; #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len ) yyconst char *bytes; int len; #endif { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = len + 2; buf = (char *) yy_flex_alloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < len; ++i ) buf[i] = bytes[i]; buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer( buf, n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #endif #ifndef YY_NO_PUSH_STATE #ifdef YY_USE_PROTOS static void yy_push_state( int new_state ) #else static void yy_push_state( new_state ) int new_state; #endif { 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 *) yy_flex_alloc( new_size ); else yy_start_stack = (int *) yy_flex_realloc( (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); } #endif #ifndef YY_NO_POP_STATE static void yy_pop_state() { if ( --yy_start_stack_ptr < 0 ) YY_FATAL_ERROR( "start-condition stack underflow" ); BEGIN(yy_start_stack[yy_start_stack_ptr]); } #endif #ifndef YY_NO_TOP_STATE static int yy_top_state() { return yy_start_stack[yy_start_stack_ptr - 1]; } #endif #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif #ifdef YY_USE_PROTOS static void yy_fatal_error( yyconst char msg[] ) #else static void yy_fatal_error( msg ) char msg[]; #endif { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yytext[yyleng] = yy_hold_char; \ yy_c_buf_p = yytext + n; \ yy_hold_char = *yy_c_buf_p; \ *yy_c_buf_p = '\0'; \ yyleng = n; \ } \ while ( 0 ) /* Internal utility routines. */ #ifndef yytext_ptr #ifdef YY_USE_PROTOS static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) #else static void yy_flex_strncpy( s1, s2, n ) char *s1; yyconst char *s2; int n; #endif { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN #ifdef YY_USE_PROTOS static int yy_flex_strlen( yyconst char *s ) #else static int yy_flex_strlen( s ) yyconst char *s; #endif { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif #ifdef YY_USE_PROTOS static void *yy_flex_alloc( yy_size_t size ) #else static void *yy_flex_alloc( size ) yy_size_t size; #endif { return (void *) malloc( size ); } #ifdef YY_USE_PROTOS static void *yy_flex_realloc( void *ptr, yy_size_t size ) #else static void *yy_flex_realloc( ptr, size ) void *ptr; yy_size_t size; #endif { /* 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 ); } #ifdef YY_USE_PROTOS static void yy_flex_free( void *ptr ) #else static void yy_flex_free( ptr ) void *ptr; #endif { free( ptr ); } #if YY_MAIN int main() { yylex(); return 0; } #endif #line 493 "maplexer.l" /* ** Any extra C functions */ int msyywrap() /* override */ { return(1); } int msyyerror(char *s) { msSetError(MS_PARSEERR, s, "msyyparse()"); return(0); }