#define yy_create_buffer zend_create_buffer #define yy_delete_buffer zend_delete_buffer #define yy_scan_buffer zend_scan_buffer #define yy_scan_string zend_scan_string #define yy_scan_bytes zend_scan_bytes #define yy_flex_debug zend_flex_debug #define yy_init_buffer zend_init_buffer #define yy_flush_buffer zend_flush_buffer #define yy_load_buffer_state zend_load_buffer_state #define yy_switch_to_buffer zend_switch_to_buffer #define yyin zendin #define yyleng zendleng #define yylex zendlex #define yyout zendout #define yyrestart zendrestart #define yytext zendtext /* A Lexical scanner generated by flex */ /* Scanner skeleton version: * $Header: /repository/ZendEngine2/flex.skl,v 1.31 2003/08/11 05:24:41 fujimoto Exp $ * vim:ft=lex: */ #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 #if HAVE_UNISTD_H #include #endif /* 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 #undef YY_USE_PROTOS #define YY_USE_PROTOS #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( SCNG(yy_in) TSRMLS_CC ) #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; #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_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 TSRMLS_CC ) /* 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 { struct _zend_file_handle *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 }; #define yy_current_buffer SCNG(current_buffer) #define yy_hold_char SCNG(_yy_hold_char) /* 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. */ #if 0 static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ #endif /* Points to current character in buffer. */ #define yy_c_buf_p SCNG(c_buf_p) #define yy_init SCNG(init) #define yy_start SCNG(start) #ifdef ZTS #define TSRMLS_D void ***tsrm_ls #define TSRMLS_DC , TSRMLS_D #define TSRMLS_C tsrm_ls #define TSRMLS_CC , TSRMLS_C #else #define TSRMLS_D #define TSRMLS_DC #define TSRMLS_C #define TSRMLS_CC #endif /* 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; */ #define yy_did_buffer_switch_on_eof SCNG(_yy_did_buffer_switch_on_eof) void yyrestart YY_PROTO(( struct _zend_file_handle *input_file TSRMLS_DC )); void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer TSRMLS_DC )); void yy_load_buffer_state YY_PROTO(( TSRMLS_D )); YY_BUFFER_STATE yy_create_buffer YY_PROTO(( struct _zend_file_handle *file, int size TSRMLS_DC )); void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b TSRMLS_DC )); void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, struct _zend_file_handle *file TSRMLS_DC )); void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b TSRMLS_DC )); #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer TSRMLS_CC ) YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size TSRMLS_DC )); YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str TSRMLS_DC )); YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len TSRMLS_DC )); 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( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); \ yy_current_buffer->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); \ yy_current_buffer->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (yy_current_buffer->yy_at_bol) #define yywrap() 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern char *yytext; #define yytext_ptr yytext #undef yyleng #define yyleng SCNG(yy_leng) #undef yytext #define yytext SCNG(yy_text) #undef yytext_ptr #define yytext_ptr SCNG(yy_text) #undef yyin #define yyin SCNG(yy_in) #undef yyout #define yyout SCNG(yy_out) #undef yy_last_accepting_state #define yy_last_accepting_state SCNG(_yy_last_accepting_state) #undef yy_last_accepting_cpos #define yy_last_accepting_cpos SCNG(_yy_last_accepting_cpos) #undef yy_more_flag #define yy_more_flag SCNG(_yy_more_flag) #undef yy_more_len #define yy_more_len SCNG(_yy_more_len) static yy_state_type yy_get_previous_state YY_PROTO(( TSRMLS_D )); static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state TSRMLS_DC )); static int yy_get_next_buffer YY_PROTO(( TSRMLS_D )); static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); #undef TSRMLS_D #undef TSRMLS_DC #undef TSRMLS_C #undef TSRMLS_CC /* 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; \ yytext_ptr -= yy_more_len; \ yyleng = (int) (yy_cp - yytext_ptr); \ yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yy_c_buf_p = yy_cp; #undef yyleng #undef yytext #undef yytext_ptr #undef yyin #undef yyout #undef yy_last_accepting_state #undef yy_last_accepting_cpos #undef yy_more_flag #undef yy_more_len #define YY_NUM_RULES 158 #define YY_END_OF_BUFFER 159 static yyconst short int yy_accept[1396] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 110, 110, 157, 118, 95, 134, 119, 95, 95, 95, 137, 95, 95, 95, 95, 95, 95, 95, 101, 101, 95, 95, 95, 95, 95, 95, 116, 136, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 96, 95, 98, 139, 154, 144, 139, 103, 103, 144, 157, 117, 141, 144, 140, 156, 157, 142, 157, 155, 153, 139, 157, 117, 38, 37, 100, 99, 126, 129, 129, 121, 122, 122, 120, 120, 120, 110, 0, 110, 113, 111, 110, 118, 74, 0, 132, 0, 115, 82, 131, 89, 85, 0, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 69, 77, 70, 78, 36, 104, 81, 125, 119, 80, 104, 101, 0, 0, 39, 0, 93, 75, 74, 73, 66, 76, 94, 130, 87, 116, 116, 116, 116, 116, 23, 116, 116, 116, 116, 116, 116, 15, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 9, 116, 116, 116, 116, 116, 90, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 86, 88, 139, 143, 97, 36, 103, 0, 152, 148, 150, 152, 117, 141, 145, 140, 0, 146, 147, 142, 149, 153, 139, 138, 138, 117, 0, 37, 99, 126, 128, 127, 121, 122, 123, 110, 0, 112, 0, 0, 72, 115, 131, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, 0, 104, 102, 0, 0, 83, 71, 84, 130, 130, 116, 116, 116, 116, 116, 91, 116, 116, 116, 116, 116, 116, 116, 116, 116, 2, 116, 116, 116, 116, 116, 116, 116, 116, 16, 116, 116, 116, 116, 116, 116, 116, 116, 40, 116, 116, 116, 116, 116, 116, 116, 116, 6, 116, 55, 42, 116, 92, 103, 150, 151, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 0, 0, 0, 116, 116, 116, 116, 116, 116, 116, 116, 26, 116, 116, 116, 116, 116, 116, 116, 30, 12, 116, 116, 116, 116, 116, 116, 50, 1, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 67, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 150, 151, 110, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 135, 135, 0, 116, 116, 116, 116, 116, 116, 68, 28, 7, 32, 41, 4, 116, 116, 116, 116, 58, 116, 116, 11, 116, 116, 116, 61, 116, 116, 116, 116, 116, 116, 116, 57, 31, 116, 116, 116, 116, 116, 116, 116, 8, 65, 13, 110, 0, 114, 114, 0, 0, 0, 48, 0, 0, 0, 0, 0, 44, 0, 0, 0, 116, 116, 116, 116, 116, 116, 116, 116, 116, 10, 116, 17, 116, 116, 116, 116, 116, 56, 116, 116, 116, 116, 116, 116, 64, 116, 5, 59, 24, 110, 0, 0, 0, 46, 0, 0, 0, 0, 0, 49, 0, 116, 116, 116, 116, 116, 116, 116, 20, 27, 116, 116, 116, 116, 34, 18, 116, 116, 51, 116, 116, 62, 116, 53, 110, 0, 0, 0, 0, 0, 47, 0, 45, 0, 116, 109, 116, 108, 116, 60, 29, 116, 116, 116, 14, 3, 116, 116, 116, 116, 116, 116, 110, 0, 0, 0, 105, 116, 116, 116, 116, 25, 116, 116, 116, 33, 63, 116, 110, 0, 0, 116, 107, 21, 19, 35, 116, 22, 116, 110, 0, 0, 116, 116, 116, 110, 0, 0, 106, 52, 54, 110, 0, 0, 110, 0, 0, 110, 0, 0, 110, 0, 0, 110, 0, 0, 0, 110, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 110, 0, 0, 0, 0, 110, 0, 0, 0, 0, 111, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, 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, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21, 21, 22, 22, 23, 24, 25, 26, 27, 28, 16, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 29, 30, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 16, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59 } ; static yyconst int yy_meta[63] = { 0, 1, 2, 3, 3, 4, 1, 4, 5, 6, 4, 7, 4, 4, 8, 4, 4, 4, 4, 4, 9, 9, 9, 4, 10, 11, 4, 6, 6, 1, 1, 4, 12, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 4, 1 } ; static yyconst short int yy_base[1816] = { 0, 7956, 7955, 0, 0, 62, 0, 114, 115, 121, 122, 123, 151, 210, 0, 272, 0, 7965, 7964, 7963, 7962, 132, 139, 7975, 7949, 121, 7982, 129, 7947, 131, 7982, 0, 112, 137, 135, 333, 7982, 7946, 143, 151, 150, 322, 322, 331, 7948, 320, 148, 153, 7943, 7943, 7936, 7982, 303, 7916, 328, 323, 344, 340, 7921, 0, 356, 7923, 7926, 7912, 305, 7924, 310, 99, 331, 7927, 7919, 7911, 7982, 331, 7982, 0, 7982, 408, 7931, 451, 376, 7982, 468, 0, 7924, 7948, 7925, 7982, 347, 7948, 457, 7982, 469, 470, 462, 481, 7982, 0, 7982, 0, 0, 7934, 7933, 0, 7982, 7948, 7923, 7982, 7922, 7923, 470, 7922, 7920, 460, 7909, 402, 7918, 481, 7982, 488, 0, 7982, 489, 7982, 7982, 363, 7982, 7940, 0, 7891, 7893, 7892, 7894, 7891, 7902, 7898, 7882, 7887, 7982, 7982, 7982, 7982, 7982, 7982, 479, 7982, 7919, 7982, 7982, 506, 511, 519, 525, 7982, 7880, 481, 7982, 7982, 7905, 7982, 7982, 7904, 509, 7982, 0, 512, 7877, 7891, 7876, 0, 7888, 463, 352, 7878, 458, 7886, 0, 7882, 7870, 7872, 7883, 7885, 468, 7871, 7866, 7869, 7867, 0, 7865, 501, 7861, 7860, 7855, 0, 476, 7875, 470, 7875, 7866, 7856, 7848, 7853, 7866, 7852, 7860, 7850, 7982, 7982, 0, 7982, 7982, 0, 545, 548, 7982, 7982, 522, 554, 0, 7867, 7982, 7869, 7868, 7982, 7982, 7891, 7982, 544, 567, 7982, 7893, 577, 568, 0, 0, 0, 7982, 7982, 0, 7982, 7982, 7870, 570, 7982, 7853, 7842, 7982, 0, 7982, 7889, 7840, 7842, 7835, 7840, 7834, 7843, 7851, 7833, 7831, 600, 585, 588, 591, 594, 7846, 7879, 7982, 7982, 7982, 7982, 7877, 7834, 582, 7836, 7839, 7823, 0, 7841, 7840, 7835, 7836, 7819, 7823, 544, 7824, 7834, 0, 7819, 7828, 7812, 598, 7819, 7810, 7824, 7827, 7822, 7823, 7823, 7812, 7811, 7802, 7816, 7815, 7799, 0, 483, 7798, 7805, 7795, 7794, 7794, 7793, 7797, 0, 7806, 0, 0, 7798, 0, 621, 597, 627, 7817, 642, 7792, 7798, 7805, 7793, 7802, 7802, 666, 7797, 7789, 7791, 7794, 617, 7780, 7828, 622, 7795, 7783, 7780, 7779, 7772, 7773, 7765, 7778, 0, 7780, 7768, 7781, 7765, 7775, 7782, 7761, 0, 7772, 7755, 7774, 7763, 7771, 7753, 7767, 0, 0, 7760, 7761, 7771, 7751, 7769, 7764, 7747, 7766, 7748, 7745, 0, 7744, 7762, 7757, 7752, 7751, 7741, 7749, 7754, 7733, 7735, 7749, 7982, 7982, 7761, 644, 642, 7736, 7726, 669, 7738, 7729, 625, 7982, 3000, 3003, 671, 2990, 2983, 2993, 7982, 3031, 671, 2981, 2980, 2981, 2978, 2974, 2980, 0, 0, 0, 0, 0, 0, 2966, 2961, 2966, 2971, 0, 2959, 2943, 0, 2932, 2929, 2927, 0, 2919, 2912, 2906, 2904, 2910, 2897, 2904, 0, 0, 2889, 2905, 2904, 2882, 2878, 2888, 2867, 0, 0, 0, 2879, 667, 7982, 2896, 2845, 675, 676, 7982, 2843, 2833, 2761, 2745, 678, 7982, 2757, 684, 2747, 2743, 2762, 2740, 2760, 2743, 2754, 2735, 2750, 2734, 0, 2741, 2747, 2731, 2738, 2730, 2740, 2732, 0, 2741, 2739, 2739, 2740, 2733, 2716, 0, 2729, 0, 0, 0, 2740, 674, 706, 685, 7982, 2717, 2712, 688, 698, 701, 7982, 2709, 2727, 2726, 2714, 2721, 2715, 2697, 2711, 0, 0, 2713, 2690, 2686, 2683, 0, 0, 2672, 2663, 2675, 2666, 2665, 0, 2652, 2652, 2656, 696, 713, 710, 716, 718, 7982, 720, 7982, 732, 2647, 0, 2630, 0, 2643, 0, 0, 2613, 2625, 2619, 0, 0, 2597, 2599, 2596, 2600, 2598, 2585, 2607, 716, 2595, 735, 0, 2560, 2572, 2564, 2552, 0, 2540, 2543, 2550, 0, 0, 2540, 2537, 718, 2514, 2527, 0, 0, 0, 0, 2520, 0, 2517, 2525, 736, 2507, 2512, 2503, 2492, 2494, 738, 2464, 0, 0, 0, 2491, 744, 2481, 2488, 746, 2464, 2476, 748, 2452, 2462, 756, 775, 2459, 758, 789, 800, 2453, 788, 815, 2426, 2424, 2431, 2444, 800, 2413, 2406, 2395, 2417, 805, 2392, 2389, 748, 2407, 811, 2423, 2416, 820, 7982, 2377, 818, 2376, 820, 2374, 825, 2373, 826, 2371, 833, 2362, 846, 2359, 851, 2356, 856, 2345, 858, 2334, 864, 2331, 866, 2330, 871, 2328, 879, 2325, 881, 2322, 886, 2319, 892, 2316, 896, 2305, 904, 2302, 917, 2299, 918, 2288, 925, 2287, 926, 2285, 927, 2284, 932, 2282, 938, 2262, 940, 2259, 955, 2257, 963, 2256, 972, 2253, 973, 2247, 977, 2244, 978, 2242, 984, 2223, 985, 2217, 986, 2216, 995, 2214, 1007, 2213, 1017, 2211, 1018, 2210, 1024, 2207, 1025, 2196, 1030, 2185, 1032, 2174, 1039, 2171, 1047, 2170, 1053, 2168, 1062, 2167, 1064, 2165, 1070, 2156, 1076, 2145, 1084, 2142, 1085, 2139, 1093, 2128, 1098, 2125, 1099, 2124, 1106, 2122, 1110, 2119, 1116, 2116, 1121, 2102, 1131, 2099, 1138, 2097, 1139, 2096, 1144, 2093, 1146, 2082, 1151, 2079, 1152, 2076, 1156, 2057, 1161, 2056, 1169, 2054, 1184, 2053, 1186, 2051, 1190, 2050, 1191, 2047, 1192, 2036, 1197, 2017, 1198, 2014, 1220, 2011, 1226, 2010, 1228, 2008, 1230, 2007, 1232, 2005, 1237, 2004, 1238, 1971, 1243, 1969, 1258, 1968, 1260, 1966, 1266, 1965, 1268, 1964, 1272, 1962, 1278, 1959, 1283, 1929, 1289, 1926, 1298, 1925, 1300, 1923, 1304, 1922, 1306, 1920, 1312, 1919, 1318, 1916, 1329, 1897, 1335, 1894, 1340, 1883, 1344, 1880, 1346, 1879, 1350, 1877, 1352, 1876, 1357, 1874, 1358, 1857, 1375, 1854, 1380, 1851, 1386, 1848, 1388, 1837, 1390, 1834, 1392, 1833, 1397, 1831, 1398, 1828, 1403, 1817, 1420, 1811, 1426, 1808, 1428, 1806, 1432, 1805, 1434, 1802, 1438, 1791, 1443, 1788, 1449, 1777, 1460, 1766, 1464, 1765, 1466, 1763, 1472, 1762, 1474, 1760, 1478, 1759, 1489, 1756, 1495, 1734, 1500, 1729, 1504, 1726, 1506, 1723, 1510, 1720, 1512, 1719, 1518, 1717, 1535, 1716, 1540, 1714, 1541, 1691, 1546, 1689, 1548, 1688, 1550, 1686, 1552, 1677, 1558, 1674, 1563, 1671, 1580, 1668, 1581, 1657, 1586, 1651, 1588, 1648, 1592, 1646, 1594, 139, 1598, 157, 1603, 312, 1609, 339, 1620, 382, 1626, 479, 1632, 510, 1634, 527, 1638, 531, 1640, 569, 1649, 574, 1655, 609, 1660, 614, 1666, 627, 1670, 656, 1672, 660, 1678, 668, 1680, 681, 1695, 688, 1700, 703, 1701, 705, 1706, 707, 1708, 715, 1710, 717, 1712, 724, 1718, 729, 1740, 731, 1741, 735, 1746, 755, 1747, 757, 1748, 760, 1752, 762, 1754, 764, 1758, 769, 1769, 770, 1780, 774, 1786, 780, 1787, 782, 1792, 787, 1794, 806, 1798, 807, 1800, 812, 1809, 813, 1815, 816, 1820, 819, 1826, 831, 1832, 834, 1838, 837, 1840, 841, 1846, 843, 1855, 844, 1860, 857, 1861, 862, 1866, 868, 1868, 872, 1872, 875, 1878, 877, 1886, 887, 1900, 890, 1901, 894, 1906, 897, 1907, 900, 1908, 903, 1912, 905, 1914, 912, 1918, 914, 1940, 915, 1946, 933, 1947, 934, 1948, 936, 1952, 937, 1953, 942, 1954, 946, 1958, 948, 1960, 949, 1986, 950, 1988, 951, 1992, 960, 1993, 964, 1994, 971, 1998, 974, 1999, 983, 2000, 992, 2006, 993, 2028, 994, 2032, 996, 2034, 997, 2038, 1003, 2039, 1006, 2040, 1015, 2045, 1019, 2046, 1026, 2060, 1029, 2068, 1036, 2074, 1038, 2078, 1040, 2080, 1041, 2085, 1043, 2086, 1049, 2091, 1055, 2100, 1058, 2106, 1061, 2108, 1063, 2114, 1071, 2120, 1072, 2126, 1075, 2131, 1078, 2137, 1081, 2146, 1086, 2148, 1092, 2152, 1095, 2154, 1104, 2159, 1107, 2160, 1108, 2166, 1114, 2177, 1117, 2188, 1118, 2192, 1127, 2194, 1129, 2198, 1132, 2199, 1150, 2200, 1157, 2205, 1160, 2206, 1162, 2228, 1163, 2234, 1167, 2236, 1177, 2238, 1180, 2240, 1185, 2245, 1199, 2246, 1202, 2251, 1203, 2266, 1205, 2268, 1206, 2274, 1207, 2276, 1208, 2280, 1209, 2286, 1215, 2291, 1234, 2297, 1236, 2306, 1239, 2308, 1245, 2312, 1248, 2314, 1249, 2320, 1251, 2326, 1254, 2337, 1274, 2343, 1276, 2348, 1277, 2352, 1279, 2354, 1280, 2358, 1291, 2360, 1294, 2365, 1297, 2366, 1308, 2383, 1311, 2388, 1314, 2394, 1317, 2396, 1320, 2398, 1322, 2400, 1323, 2405, 1326, 2406, 1337, 2411, 1348, 2428, 1351, 2434, 1354, 2436, 1363, 2440, 1365, 2442, 1366, 2446, 1368, 2451, 1369, 2457, 1394, 2468, 1396, 2472, 1399, 2474, 1405, 2480, 1408, 2482, 1409, 2486, 1411, 2497, 1414, 2503, 1421, 2508, 1436, 2512, 1439, 2514, 1440, 2518, 1442, 2520, 1445, 2526, 1451, 2543, 1454, 2548, 1457, 2549, 1468, 2554, 1471, 2556, 1480, 2558, 1482, 2560, 1483, 2566, 1485, 2571, 1486, 2588, 1497, 2589, 1508, 2594, 1511, 2596, 1514, 2600, 1517, 2602, 1520, 2606, 1523, 2611, 1526, 2617, 1528, 2628, 1529, 2634, 1554, 2640, 1556, 2642, 1557, 2646, 1559, 2648, 1560, 2657, 1569, 2663, 1571, 2668, 1574, 2674, 1596, 2678, 1599, 2680, 1600, 2686, 1602, 2688, 1605, 2703, 1611, 2708, 1614, 2709, 1617, 2714, 1627, 2716, 1628, 2718, 1631, 2720, 1642, 2726, 7982, 2748, 7982, 2800, 2812, 2824, 2836, 2848, 2860, 2872, 1658, 2884, 2888, 2899, 2910, 2914, 2926, 2936, 2940, 2944, 2956, 2968, 2980, 2984, 2996, 3007, 3019, 3029, 3041, 3053, 3065, 3077, 3089, 3101, 3113, 3125, 3137, 3149, 3161, 3173, 3185, 3197, 3209, 3221, 3233, 3245, 3257, 3269, 3281, 3293, 3305, 3317, 3329, 3341, 3353, 3365, 3377, 3389, 3401, 3413, 3425, 3437, 3449, 3461, 3473, 3485, 3497, 3509, 3521, 3533, 3545, 3557, 3569, 3581, 3593, 3605, 3617, 3629, 3641, 3653, 3665, 3677, 3689, 3701, 3713, 3725, 3737, 3749, 3761, 3773, 3785, 3797, 3809, 3821, 3833, 3845, 3857, 3869, 3881, 3893, 3905, 3917, 3929, 3941, 3953, 3965, 3977, 3989, 4001, 4013, 4025, 4037, 4049, 4061, 4073, 4085, 4097, 4109, 4121, 4133, 4145, 4157, 4169, 4181, 4193, 4205, 4217, 4229, 4241, 4253, 4265, 4277, 4289, 4301, 4313, 4325, 4337, 4349, 4361, 4373, 4385, 4397, 4409, 4421, 4433, 4445, 4457, 4469, 4481, 4493, 4505, 4517, 4529, 4541, 4553, 4565, 4577, 4589, 4601, 4613, 4625, 4637, 4649, 4661, 4673, 4685, 4697, 4709, 4721, 4733, 4745, 4757, 4769, 4781, 4793, 4805, 4817, 4829, 4841, 4853, 4865, 4877, 4889, 4901, 4913, 4925, 4937, 4949, 4961, 4973, 4985, 4997, 5009, 5021, 5033, 5045, 5057, 5069, 5081, 5093, 5105, 5117, 5129, 5141, 5153, 5165, 5177, 5189, 5201, 5213, 5225, 5237, 5249, 5261, 5273, 5285, 5297, 5309, 5321, 5333, 5345, 5357, 5369, 5381, 5393, 5405, 5417, 5429, 5441, 5453, 5465, 5477, 5489, 5501, 5513, 5525, 5537, 5549, 5561, 5573, 5585, 5597, 5609, 5621, 5633, 5645, 5657, 5669, 5681, 5693, 5705, 5717, 5729, 5741, 5753, 5765, 5777, 5789, 5801, 5813, 5825, 5837, 5849, 5861, 5873, 5885, 5897, 5909, 5921, 5933, 5945, 5957, 5969, 5981, 5993, 6005, 6017, 6029, 6041, 6053, 6065, 6077, 6089, 6101, 6113, 6125, 6137, 6149, 6161, 6173, 6185, 6197, 6209, 6221, 6233, 6245, 6257, 6269, 6281, 6293, 6305, 6317, 6329, 6341, 6353, 6365, 6377, 6389, 6401, 6413, 6425, 6437, 6449, 6461, 6473, 6485, 6497, 6509, 6521, 6533, 6545, 6557, 6569, 6581, 6593, 6605, 6617, 6629, 6641, 6653, 6665, 6677, 6689, 6701, 6713, 6725, 6737, 6749, 6761, 6773, 6785, 6797, 6809, 6821, 6833, 6845, 6857, 6869, 6881, 6893, 6905, 6917, 6929, 6941, 6953, 6965, 6977, 6989, 7001, 7013, 7025, 7037, 7049, 7061, 7073, 7085, 7097, 7109, 7121, 7133, 7145, 7157, 7169, 7181, 7193, 7205, 7217, 7229, 7241, 7253, 7265, 7277, 7289, 7301, 7313, 7325, 7337, 7349, 7361, 7373, 7385, 7397, 7409, 7421, 7433, 7445, 7457, 7469, 7481, 7493, 7505, 7517, 7529, 7541, 7553, 7565, 7577, 7589, 7601, 7613, 7625, 7637, 7649, 7661, 7673, 7685, 7697, 7709, 7721, 7733, 7745, 7757, 7769 } ; static yyconst short int yy_def[1816] = { 0, 1396, 1396, 1395, 3, 1395, 5, 1397, 1397, 5, 5, 5, 5, 1395, 13, 1395, 15, 1398, 1398, 1398, 1398, 1399, 1399, 1395, 1400, 1401, 1395, 1395, 1395, 1402, 1395, 1403, 1395, 1395, 1404, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1405, 1395, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1395, 1395, 1395, 1406, 1395, 1395, 1406, 1395, 1395, 1395, 1407, 1408, 1395, 1395, 1409, 1395, 1409, 1395, 1407, 1395, 1395, 1406, 1407, 1410, 1395, 1411, 1395, 1412, 1413, 1395, 1395, 1414, 1395, 1395, 1395, 1395, 1395, 1415, 1400, 1400, 1395, 1395, 1395, 1395, 1395, 1402, 1395, 1402, 1416, 1395, 1395, 1395, 1395, 1404, 1395, 1404, 35, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1395, 1395, 1406, 1395, 1395, 1406, 1395, 1395, 1395, 1395, 1395, 1395, 1408, 1395, 1395, 1409, 1409, 1395, 1395, 1395, 1395, 1395, 1406, 1395, 1395, 1410, 1395, 1411, 1412, 1413, 1395, 1395, 1414, 1395, 1395, 1417, 1415, 1395, 1395, 1395, 1395, 1416, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1418, 1395, 1395, 1395, 1395, 1395, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1395, 1395, 1395, 1419, 1417, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1418, 1420, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1395, 1395, 1421, 1419, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1420, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1422, 1421, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1423, 1422, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1424, 1423, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1425, 1424, 1395, 1395, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1426, 1425, 1395, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1427, 1426, 1395, 1405, 1405, 1405, 1428, 1427, 1395, 1405, 1405, 1405, 1429, 1428, 1395, 1430, 1429, 1395, 1431, 1430, 1395, 1432, 1431, 1395, 1433, 1432, 1395, 1395, 1434, 1433, 1395, 1395, 1395, 1395, 1435, 1434, 1395, 1395, 1395, 1436, 1435, 1395, 1395, 1395, 1437, 1436, 1395, 1395, 1395, 1395, 1438, 1437, 1439, 1438, 1440, 1439, 1441, 1440, 1442, 1441, 1443, 1442, 1444, 1443, 1445, 1444, 1446, 1445, 1447, 1446, 1448, 1447, 1449, 1448, 1450, 1449, 1451, 1450, 1452, 1451, 1453, 1452, 1454, 1453, 1455, 1454, 1456, 1455, 1457, 1456, 1458, 1457, 1459, 1458, 1460, 1459, 1461, 1460, 1462, 1461, 1463, 1462, 1464, 1463, 1465, 1464, 1466, 1465, 1467, 1466, 1468, 1467, 1469, 1468, 1470, 1469, 1471, 1470, 1472, 1471, 1473, 1472, 1474, 1473, 1475, 1474, 1476, 1475, 1477, 1476, 1478, 1477, 1479, 1478, 1480, 1479, 1481, 1480, 1482, 1481, 1483, 1482, 1484, 1483, 1485, 1484, 1486, 1485, 1487, 1486, 1488, 1487, 1489, 1488, 1490, 1489, 1491, 1490, 1492, 1491, 1493, 1492, 1494, 1493, 1495, 1494, 1496, 1495, 1497, 1496, 1498, 1497, 1499, 1498, 1500, 1499, 1501, 1500, 1502, 1501, 1503, 1502, 1504, 1503, 1505, 1504, 1506, 1505, 1507, 1506, 1508, 1507, 1509, 1508, 1510, 1509, 1511, 1510, 1512, 1511, 1513, 1512, 1514, 1513, 1515, 1514, 1516, 1515, 1517, 1516, 1518, 1517, 1519, 1518, 1520, 1519, 1521, 1520, 1522, 1521, 1523, 1522, 1524, 1523, 1525, 1524, 1526, 1525, 1527, 1526, 1528, 1527, 1529, 1528, 1530, 1529, 1531, 1530, 1532, 1531, 1533, 1532, 1534, 1533, 1535, 1534, 1536, 1535, 1537, 1536, 1538, 1537, 1539, 1538, 1540, 1539, 1541, 1540, 1542, 1541, 1543, 1542, 1544, 1543, 1545, 1544, 1546, 1545, 1547, 1546, 1548, 1547, 1549, 1548, 1550, 1549, 1551, 1550, 1552, 1551, 1553, 1552, 1554, 1553, 1555, 1554, 1556, 1555, 1557, 1556, 1558, 1557, 1559, 1558, 1560, 1559, 1561, 1560, 1562, 1561, 1563, 1562, 1564, 1563, 1565, 1564, 1566, 1565, 1567, 1566, 1568, 1567, 1569, 1568, 1570, 1569, 1571, 1570, 1572, 1571, 1573, 1572, 1574, 1573, 1575, 1574, 1576, 1575, 1577, 1576, 1578, 1577, 1579, 1578, 1580, 1579, 1581, 1580, 1582, 1581, 1583, 1582, 1584, 1583, 1585, 1584, 1586, 1585, 1587, 1586, 1588, 1587, 1589, 1588, 1590, 1589, 1591, 1590, 1592, 1591, 1593, 1592, 1594, 1593, 1595, 1594, 1596, 1595, 1597, 1596, 1598, 1597, 1599, 1598, 1600, 1599, 1601, 1600, 1602, 1601, 1603, 1602, 1604, 1603, 1605, 1604, 1606, 1605, 1607, 1606, 1608, 1607, 1609, 1608, 1610, 1609, 1611, 1610, 1612, 1611, 1613, 1612, 1614, 1613, 1615, 1614, 1616, 1615, 1617, 1616, 1618, 1617, 1619, 1618, 1620, 1619, 1621, 1620, 1622, 1621, 1623, 1622, 1624, 1623, 1625, 1624, 1626, 1625, 1627, 1626, 1628, 1627, 1629, 1628, 1630, 1629, 1631, 1630, 1632, 1631, 1633, 1632, 1634, 1633, 1635, 1634, 1636, 1635, 1637, 1636, 1638, 1637, 1639, 1638, 1640, 1639, 1641, 1640, 1642, 1641, 1643, 1642, 1644, 1643, 1645, 1644, 1646, 1645, 1647, 1646, 1648, 1647, 1649, 1648, 1650, 1649, 1651, 1650, 1652, 1651, 1653, 1652, 1654, 1653, 1655, 1654, 1656, 1655, 1657, 1656, 1658, 1657, 1659, 1658, 1660, 1659, 1661, 1660, 1662, 1661, 1663, 1662, 1664, 1663, 1665, 1664, 1666, 1665, 1667, 1666, 1668, 1667, 1669, 1668, 1670, 1669, 1671, 1670, 1672, 1671, 1673, 1672, 1674, 1673, 1675, 1674, 1676, 1675, 1677, 1676, 1678, 1677, 1679, 1678, 1680, 1679, 1681, 1680, 1682, 1681, 1683, 1682, 1684, 1683, 1685, 1684, 1686, 1685, 1687, 1686, 1688, 1687, 1689, 1688, 1690, 1689, 1691, 1690, 1692, 1691, 1693, 1692, 1694, 1693, 1695, 1694, 1696, 1695, 1697, 1696, 1698, 1697, 1699, 1698, 1700, 1699, 1701, 1700, 1702, 1701, 1703, 1702, 1704, 1703, 1705, 1704, 1706, 1705, 1707, 1706, 1708, 1707, 1709, 1708, 1710, 1709, 1711, 1710, 1712, 1711, 1713, 1712, 1714, 1713, 1715, 1714, 1716, 1715, 1717, 1716, 1718, 1717, 1719, 1718, 1720, 1719, 1721, 1720, 1722, 1721, 1723, 1722, 1724, 1723, 1725, 1724, 1726, 1725, 1727, 1726, 1728, 1727, 1729, 1728, 1730, 1729, 1731, 1730, 1732, 1731, 1733, 1732, 1734, 1733, 1735, 1734, 1736, 1735, 1737, 1736, 1738, 1737, 1739, 1738, 1740, 1739, 1741, 1740, 1742, 1741, 1743, 1742, 1744, 1743, 1745, 1744, 1746, 1745, 1747, 1746, 1748, 1747, 1749, 1748, 1750, 1749, 1751, 1750, 1752, 1751, 1753, 1752, 1754, 1753, 1755, 1754, 1756, 1755, 1757, 1756, 1758, 1757, 1759, 1758, 1760, 1759, 1761, 1760, 1762, 1761, 1763, 1762, 1764, 1763, 1765, 1764, 1766, 1765, 1767, 1766, 1768, 1767, 1769, 1768, 1770, 1769, 1771, 1770, 1772, 1771, 1773, 1772, 1774, 1773, 1775, 1774, 1776, 1775, 1777, 1776, 1778, 1777, 1779, 1778, 1780, 1779, 1781, 1780, 1782, 1781, 1783, 1782, 1784, 1783, 1785, 1784, 1786, 1785, 1787, 1786, 1788, 1787, 1789, 1788, 1790, 1789, 1791, 1790, 1792, 1791, 1793, 1792, 1794, 1793, 1795, 1794, 1796, 1795, 1797, 1796, 1798, 1797, 1799, 1798, 1800, 1799, 1801, 1800, 1802, 1801, 1803, 1802, 1804, 1803, 1805, 1804, 1806, 1805, 1807, 1806, 1808, 1807, 1809, 1808, 1810, 1809, 1811, 1810, 1812, 1811, 1813, 1812, 1814, 1813, 1815, 1814, 1395, 1815, 0, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395 } ; static yyconst short int yy_nxt[8045] = { 0, 26, 27, 27, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 36, 39, 40, 41, 42, 43, 43, 44, 36, 45, 46, 47, 48, 36, 26, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 59, 59, 61, 59, 62, 63, 64, 59, 65, 66, 67, 68, 69, 70, 71, 59, 59, 72, 73, 74, 26, 75, 75, 75, 75, 76, 75, 77, 75, 75, 75, 75, 75, 75, 75, 75, 78, 75, 75, 79, 80, 80, 75, 75, 75, 75, 75, 75, 81, 82, 75, 83, 84, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 85, 75, 81, 87, 87, 89, 89, 92, 112, 115, 115, 115, 93, 104, 105, 118, 121, 122, 199, 106, 104, 105, 88, 88, 126, 123, 106, 113, 200, 90, 90, 94, 91, 91, 92, 92, 139, 107, 108, 119, 93, 124, 946, 127, 107, 108, 141, 140, 144, 144, 144, 114, 158, 159, 145, 142, 143, 160, 161, 94, 948, 95, 92, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 97, 96, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, 96, 96, 96, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 99, 98, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 98, 98, 98, 128, 146, 950, 166, 154, 149, 147, 150, 150, 150, 155, 156, 157, 148, 149, 167, 150, 150, 150, 168, 169, 194, 206, 223, 195, 151, 174, 171, 197, 952, 175, 198, 129, 130, 151, 131, 176, 132, 172, 126, 133, 173, 224, 201, 152, 177, 134, 183, 202, 135, 136, 281, 137, 184, 178, 179, 180, 207, 127, 185, 187, 212, 212, 212, 181, 282, 182, 188, 189, 115, 115, 115, 954, 190, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 120, 209, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 210, 209, 209, 212, 212, 212, 215, 227, 227, 216, 216, 1395, 227, 228, 216, 216, 229, 230, 243, 118, 216, 216, 226, 1395, 248, 249, 284, 1395, 117, 285, 1395, 144, 144, 144, 227, 227, 956, 232, 265, 266, 213, 244, 292, 119, 269, 270, 217, 279, 280, 151, 305, 217, 308, 293, 1395, 309, 306, 217, 260, 260, 260, 149, 376, 150, 150, 150, 261, 958, 261, 299, 377, 262, 262, 262, 320, 320, 151, 263, 263, 263, 271, 151, 227, 272, 960, 300, 301, 227, 962, 273, 274, 263, 263, 263, 263, 263, 263, 212, 212, 212, 319, 319, 319, 229, 230, 227, 321, 321, 321, 227, 228, 1395, 229, 230, 319, 319, 319, 319, 319, 319, 321, 321, 321, 321, 321, 321, 964, 1395, 351, 352, 1395, 966, 227, 232, 335, 335, 335, 260, 260, 260, 262, 262, 262, 262, 262, 262, 263, 263, 263, 387, 387, 335, 335, 335, 1395, 151, 340, 405, 406, 397, 263, 263, 263, 263, 263, 263, 968, 358, 341, 359, 398, 970, 360, 319, 319, 319, 453, 453, 454, 388, 388, 388, 361, 1395, 972, 1395, 362, 319, 319, 319, 319, 319, 319, 388, 388, 388, 388, 388, 388, 1395, 397, 1395, 1395, 457, 1395, 463, 405, 406, 1395, 500, 457, 398, 463, 974, 458, 1395, 464, 976, 506, 500, 501, 458, 537, 464, 1395, 978, 1395, 1395, 1395, 507, 501, 1395, 539, 538, 1395, 506, 399, 1395, 980, 459, 534, 534, 534, 540, 457, 982, 507, 534, 534, 534, 397, 1395, 537, 1395, 539, 458, 1395, 1395, 1395, 1395, 984, 398, 986, 538, 988, 540, 563, 563, 563, 563, 563, 563, 990, 1395, 992, 1395, 1395, 1395, 1395, 1395, 1395, 994, 635, 635, 635, 1395, 996, 1395, 998, 1395, 562, 162, 1000, 1395, 162, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 636, 1395, 613, 613, 613, 1002, 1395, 1004, 1395, 1395, 1006, 1395, 1008, 1395, 1010, 1395, 613, 613, 613, 1012, 1014, 1395, 1395, 1395, 1016, 1395, 614, 617, 617, 617, 1018, 618, 1020, 1395, 1395, 1395, 619, 1022, 1395, 1395, 614, 1395, 617, 617, 617, 1395, 618, 635, 635, 635, 1395, 619, 1395, 1395, 1395, 1395, 1024, 1026, 1395, 1395, 1395, 1395, 1028, 1030, 1395, 1395, 1032, 1395, 1395, 1034, 1395, 1395, 636, 1395, 620, 1395, 1395, 1395, 1395, 1395, 1395, 1036, 1395, 1395, 1038, 1395, 1395, 1040, 1395, 620, 1395, 1042, 1395, 1044, 1046, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1048, 1395, 1395, 1395, 1395, 1050, 1395, 1395, 1395, 1395, 1395, 1052, 1395, 1395, 1395, 1054, 1395, 1395, 1056, 1395, 1058, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1060, 1395, 1395, 1062, 1395, 1395, 1395, 1064, 1395, 1395, 1066, 1395, 1395, 1068, 1395, 1395, 1070, 1395, 1072, 1395, 1395, 1395, 1395, 1395, 1395, 1074, 1395, 1076, 1078, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1080, 1082, 1395, 1084, 1086, 1395, 1395, 1395, 1395, 1088, 1395, 1395, 1395, 1090, 1395, 1092, 1094, 1096, 1098, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1100, 1395, 1395, 1395, 1102, 1395, 1395, 1395, 1395, 1395, 1395, 1104, 1395, 1395, 1106, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1108, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1110, 1112, 1114, 1395, 1116, 1118, 1395, 1395, 1395, 1395, 1395, 1120, 1395, 1395, 1122, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1124, 1395, 1395, 1395, 1126, 1395, 1395, 1395, 1395, 1395, 1395, 1128, 1395, 1395, 1130, 1395, 1395, 1395, 1395, 1395, 1395, 1132, 1395, 1134, 1395, 1136, 1138, 1395, 1140, 1395, 1395, 1395, 1395, 1395, 1142, 1395, 1395, 1395, 1395, 1395, 1144, 1395, 1395, 1146, 1395, 1395, 1148, 1395, 1150, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1152, 1154, 1395, 1395, 1156, 1395, 1395, 1158, 1395, 1395, 1160, 1395, 1395, 1395, 1395, 1162, 1395, 1395, 1395, 1395, 1395, 1164, 1395, 1395, 1166, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1168, 1395, 1395, 1170, 1172, 1395, 1395, 1395, 1395, 1395, 1174, 1395, 1395, 1176, 1178, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1180, 1395, 1182, 1395, 1395, 1184, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1186, 1395, 1395, 1395, 1395, 1395, 1395, 1188, 1395, 1395, 1190, 1395, 1192, 1194, 1395, 1395, 1395, 1196, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1198, 1395, 1395, 1200, 1395, 1395, 1395, 1395, 1202, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1204, 1395, 1395, 1206, 1208, 1395, 1210, 1212, 1214, 1216, 1218, 1395, 1395, 1395, 1395, 1395, 1220, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1222, 1395, 1224, 1395, 1395, 1226, 1395, 1395, 1395, 1395, 1395, 1228, 1395, 1395, 1230, 1232, 1395, 1234, 1395, 1395, 1236, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1238, 1395, 1240, 1242, 1395, 1244, 1246, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1248, 1395, 1395, 1250, 1395, 1395, 1252, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1254, 1395, 1395, 1256, 1395, 1395, 1258, 1395, 1395, 1260, 1395, 1395, 1262, 1395, 1264, 1266, 1395, 1395, 1268, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1270, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1272, 1395, 1395, 1274, 1395, 1395, 1276, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1278, 1395, 1280, 1282, 1395, 1284, 1286, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1288, 1395, 1290, 1395, 1395, 1292, 1395, 1395, 1395, 1395, 1395, 1294, 1395, 1395, 1296, 1298, 1395, 1300, 1395, 1395, 1302, 1395, 1395, 1395, 1395, 1395, 1395, 1304, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1306, 1395, 1395, 1308, 1310, 1395, 1312, 1395, 1395, 1314, 1395, 1395, 1395, 1395, 1395, 1316, 1395, 1395, 1318, 1395, 1395, 1320, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1322, 1395, 1395, 1324, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1326, 1395, 1328, 1330, 1395, 1332, 1334, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1336, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1338, 1395, 1395, 1340, 1395, 1395, 1342, 1395, 1395, 1344, 1395, 1395, 1346, 1395, 1395, 1348, 1395, 1395, 1350, 1395, 1352, 1354, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1356, 1395, 1358, 1360, 1395, 1362, 1364, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1366, 1395, 1368, 1395, 1395, 1370, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1372, 1395, 1395, 1374, 1376, 1395, 1378, 1395, 1395, 1380, 1395, 1395, 1395, 1395, 1395, 1382, 1395, 1395, 1384, 1395, 1395, 1386, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1388, 1390, 1395, 1395, 1392, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1394, 1395, 1395, 120, 944, 1395, 942, 1395, 1395, 940, 1395, 1395, 1395, 1395, 1395, 938, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 936, 1395, 1395, 934, 1395, 1395, 932, 1395, 1395, 930, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 928, 1395, 926, 924, 1395, 922, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 920, 1395, 918, 916, 1395, 914, 912, 1395, 1395, 910, 1395, 1395, 908, 1395, 1395, 906, 1395, 1395, 1395, 1395, 904, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 902, 1395, 1395, 900, 898, 1395, 896, 894, 1395, 892, 890, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 888, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 886, 1395, 1395, 884, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 882, 1395, 1395, 880, 878, 1395, 876, 1395, 1395, 874, 1395, 1395, 1395, 1395, 1395, 872, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 870, 1395, 1395, 868, 1395, 866, 864, 1395, 1395, 862, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 860, 1395, 1395, 858, 1395, 1395, 856, 1395, 1395, 854, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 852, 1395, 850, 848, 1395, 846, 844, 1395, 1395, 842, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 840, 1395, 1395, 838, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 836, 1395, 1395, 834, 832, 1395, 830, 828, 1395, 826, 824, 1395, 1395, 822, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 820, 1395, 1395, 818, 1395, 816, 814, 812, 1395, 810, 808, 1395, 806, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 804, 802, 1395, 800, 798, 1395, 796, 794, 1395, 1395, 792, 1395, 1395, 790, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 788, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 786, 1395, 1395, 784, 782, 1395, 780, 778, 1395, 776, 774, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 772, 1395, 1395, 770, 1395, 1395, 768, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 766, 1395, 1395, 764, 762, 1395, 760, 1395, 1395, 758, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 756, 1395, 1395, 754, 1395, 1395, 752, 1395, 750, 748, 1395, 1395, 746, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 744, 1395, 1395, 742, 1395, 1395, 740, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 738, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 736, 1395, 734, 732, 1395, 730, 728, 1395, 1395, 726, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 724, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 722, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 720, 1395, 1395, 718, 716, 1395, 714, 712, 1395, 710, 708, 1395, 1395, 1395, 1395, 1395, 706, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 704, 1395, 702, 1395, 1395, 700, 1395, 1395, 1395, 1395, 1395, 698, 1395, 1395, 696, 694, 1395, 692, 1395, 1395, 690, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 688, 1395, 686, 684, 1395, 682, 680, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 678, 1395, 1395, 676, 1395, 1395, 674, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 672, 1395, 1395, 670, 1395, 1395, 668, 1395, 1395, 666, 1395, 1395, 664, 1395, 662, 660, 1395, 1395, 658, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 656, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 654, 1395, 1395, 652, 1395, 1395, 650, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 648, 1395, 646, 644, 1395, 642, 640, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 630, 1395, 630, 1395, 1395, 638, 1395, 1395, 1395, 1395, 1395, 634, 1395, 1395, 633, 632, 1395, 630, 1395, 1395, 629, 1395, 1395, 1395, 1395, 1395, 1395, 628, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 627, 1395, 1395, 625, 624, 1395, 623, 1395, 1395, 622, 1395, 1395, 1395, 1395, 1395, 616, 1395, 1395, 612, 1395, 1395, 610, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 609, 1395, 1395, 607, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 606, 1395, 604, 603, 1395, 601, 600, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 598, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 597, 1395, 1395, 596, 1395, 1395, 595, 1395, 1395, 594, 1395, 1395, 592, 1395, 1395, 591, 1395, 1395, 590, 1395, 589, 588, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 586, 1395, 585, 584, 1395, 583, 582, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 581, 1395, 580, 1395, 1395, 579, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 578, 1395, 1395, 577, 575, 1395, 574, 1395, 1395, 573, 1395, 1395, 1395, 1395, 1395, 572, 1395, 1395, 571, 1395, 1395, 570, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 569, 568, 1395, 1395, 567, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 566, 1395, 1395, 565, 564, 1395, 561, 1395, 1395, 559, 1395, 1395, 1395, 1395, 1395, 558, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 557, 1395, 1395, 556, 1395, 1395, 555, 1395, 1395, 554, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 553, 1395, 552, 551, 1395, 550, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 549, 1395, 548, 547, 1395, 546, 545, 1395, 1395, 544, 1395, 543, 542, 1395, 1395, 541, 536, 535, 533, 1395, 531, 1395, 530, 1395, 529, 1395, 1395, 528, 527, 1395, 526, 1395, 525, 524, 523, 522, 521, 520, 519, 518, 517, 516, 515, 514, 513, 512, 511, 510, 509, 508, 505, 504, 503, 1395, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 109, 111, 111, 111, 111, 111, 111, 111, 111, 111, 111, 401, 111, 117, 117, 117, 117, 502, 117, 117, 117, 117, 117, 117, 117, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 164, 499, 453, 164, 208, 208, 208, 498, 208, 208, 208, 496, 208, 208, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 218, 495, 494, 218, 221, 221, 221, 221, 221, 221, 493, 221, 221, 221, 221, 221, 231, 492, 491, 490, 489, 488, 231, 231, 487, 231, 233, 486, 485, 233, 234, 484, 483, 234, 235, 235, 235, 235, 235, 235, 235, 482, 235, 235, 235, 235, 238, 238, 481, 238, 238, 480, 238, 238, 238, 238, 238, 238, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 247, 479, 478, 247, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 338, 477, 476, 475, 474, 473, 472, 471, 470, 469, 338, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 407, 468, 405, 467, 466, 465, 407, 462, 461, 407, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 497, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 532, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 560, 576, 576, 576, 576, 576, 576, 576, 576, 576, 576, 576, 576, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, 593, 593, 593, 593, 593, 593, 593, 593, 593, 593, 593, 593, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 599, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 608, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 611, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 621, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 626, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 631, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 639, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 641, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 647, 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, 649, 651, 651, 651, 651, 651, 651, 651, 651, 651, 651, 651, 651, 653, 653, 653, 653, 653, 653, 653, 653, 653, 653, 653, 653, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 655, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 659, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 661, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 665, 665, 665, 665, 665, 665, 665, 665, 665, 665, 665, 665, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 667, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 671, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 673, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 675, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 677, 679, 679, 679, 679, 679, 679, 679, 679, 679, 679, 679, 679, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 681, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 683, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 687, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 689, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 691, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 693, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 697, 697, 697, 697, 697, 697, 697, 697, 697, 697, 697, 697, 699, 699, 699, 699, 699, 699, 699, 699, 699, 699, 699, 699, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 703, 705, 705, 705, 705, 705, 705, 705, 705, 705, 705, 705, 705, 707, 707, 707, 707, 707, 707, 707, 707, 707, 707, 707, 707, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 709, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, 715, 715, 715, 715, 715, 715, 715, 715, 715, 715, 715, 715, 717, 717, 717, 717, 717, 717, 717, 717, 717, 717, 717, 717, 719, 719, 719, 719, 719, 719, 719, 719, 719, 719, 719, 719, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 729, 729, 729, 729, 729, 729, 729, 729, 729, 729, 729, 729, 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 737, 737, 737, 737, 737, 737, 737, 737, 737, 737, 737, 737, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 745, 745, 745, 745, 745, 745, 745, 745, 745, 745, 745, 745, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 753, 753, 753, 753, 753, 753, 753, 753, 753, 753, 753, 753, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, 785, 785, 785, 785, 785, 785, 785, 785, 785, 785, 785, 785, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 793, 793, 793, 793, 793, 793, 793, 793, 793, 793, 793, 793, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, 803, 803, 803, 803, 803, 803, 803, 803, 803, 803, 803, 803, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 807, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 809, 811, 811, 811, 811, 811, 811, 811, 811, 811, 811, 811, 811, 813, 813, 813, 813, 813, 813, 813, 813, 813, 813, 813, 813, 815, 815, 815, 815, 815, 815, 815, 815, 815, 815, 815, 815, 817, 817, 817, 817, 817, 817, 817, 817, 817, 817, 817, 817, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 819, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 821, 823, 823, 823, 823, 823, 823, 823, 823, 823, 823, 823, 823, 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, 825, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 827, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 829, 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 833, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 835, 837, 837, 837, 837, 837, 837, 837, 837, 837, 837, 837, 837, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 839, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 845, 845, 845, 845, 845, 845, 845, 845, 845, 845, 845, 845, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 847, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 883, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 887, 887, 887, 887, 887, 887, 887, 887, 887, 887, 887, 887, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 889, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 891, 893, 893, 893, 893, 893, 893, 893, 893, 893, 893, 893, 893, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 895, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 903, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 905, 907, 907, 907, 907, 907, 907, 907, 907, 907, 907, 907, 907, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 909, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 911, 913, 913, 913, 913, 913, 913, 913, 913, 913, 913, 913, 913, 915, 915, 915, 915, 915, 915, 915, 915, 915, 915, 915, 915, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 917, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 919, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 925, 927, 927, 927, 927, 927, 927, 927, 927, 927, 927, 927, 927, 929, 929, 929, 929, 929, 929, 929, 929, 929, 929, 929, 929, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 931, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 933, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 937, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 939, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 941, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 943, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 975, 975, 975, 975, 975, 975, 975, 975, 975, 975, 975, 975, 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, 977, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 979, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 981, 983, 983, 983, 983, 983, 983, 983, 983, 983, 983, 983, 983, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 987, 989, 989, 989, 989, 989, 989, 989, 989, 989, 989, 989, 989, 991, 991, 991, 991, 991, 991, 991, 991, 991, 991, 991, 991, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 993, 995, 995, 995, 995, 995, 995, 995, 995, 995, 995, 995, 995, 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1003, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1005, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1009, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1011, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1013, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1019, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1027, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1029, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1037, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1043, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1049, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1051, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1061, 1061, 1061, 1061, 1061, 1061, 1061, 1061, 1061, 1061, 1061, 1061, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1063, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1065, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1067, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1079, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 1239, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1341, 1343, 1343, 1343, 1343, 1343, 1343, 1343, 1343, 1343, 1343, 1343, 1343, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 1347, 1347, 1347, 1347, 1347, 1347, 1347, 1347, 1347, 1347, 1347, 1347, 1349, 1349, 1349, 1349, 1349, 1349, 1349, 1349, 1349, 1349, 1349, 1349, 1351, 1351, 1351, 1351, 1351, 1351, 1351, 1351, 1351, 1351, 1351, 1351, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1361, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 401, 460, 456, 455, 452, 450, 449, 448, 447, 446, 445, 444, 443, 442, 441, 440, 439, 438, 437, 436, 435, 434, 433, 432, 431, 430, 429, 428, 427, 426, 425, 424, 423, 422, 421, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 409, 408, 337, 404, 403, 402, 401, 400, 396, 395, 394, 393, 392, 391, 390, 386, 385, 384, 383, 382, 381, 380, 379, 378, 375, 374, 373, 372, 371, 370, 369, 368, 367, 366, 365, 364, 363, 357, 356, 355, 354, 353, 350, 349, 348, 347, 346, 345, 344, 343, 342, 339, 269, 337, 336, 334, 333, 332, 331, 330, 329, 328, 327, 326, 248, 325, 324, 323, 229, 225, 1395, 222, 219, 318, 317, 316, 315, 314, 313, 312, 311, 310, 307, 304, 303, 302, 298, 297, 296, 295, 294, 291, 290, 289, 288, 287, 286, 283, 278, 277, 276, 275, 268, 267, 264, 259, 258, 257, 256, 255, 254, 253, 252, 251, 250, 1395, 246, 245, 243, 110, 242, 240, 240, 239, 237, 236, 225, 222, 220, 219, 211, 205, 204, 203, 196, 193, 192, 191, 186, 170, 165, 163, 162, 153, 138, 116, 110, 1395, 102, 102, 101, 101, 25, 25, 23, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395 } ; static yyconst short int yy_chk[8045] = { 0, 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, 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, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 8, 9, 10, 11, 25, 27, 27, 27, 11, 21, 21, 29, 32, 32, 67, 21, 22, 22, 7, 8, 34, 33, 22, 25, 67, 9, 10, 11, 9, 10, 11, 12, 38, 21, 21, 29, 12, 33, 943, 34, 22, 22, 39, 38, 40, 40, 40, 25, 46, 46, 40, 39, 39, 47, 47, 12, 945, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 35, 41, 947, 52, 45, 42, 41, 42, 42, 42, 45, 45, 45, 41, 43, 52, 43, 43, 43, 52, 52, 64, 73, 88, 64, 42, 55, 54, 66, 949, 55, 66, 35, 35, 43, 35, 55, 35, 54, 125, 35, 54, 88, 68, 42, 56, 35, 57, 68, 35, 35, 172, 35, 57, 56, 56, 56, 73, 125, 57, 60, 80, 80, 80, 56, 172, 56, 60, 60, 115, 115, 115, 951, 60, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 79, 79, 79, 82, 92, 93, 90, 90, 110, 92, 93, 94, 94, 95, 95, 113, 117, 82, 82, 90, 119, 122, 122, 174, 110, 119, 174, 110, 144, 144, 144, 92, 93, 953, 95, 155, 155, 79, 113, 182, 117, 162, 162, 90, 171, 171, 144, 194, 94, 196, 182, 110, 196, 194, 82, 149, 149, 149, 150, 305, 150, 150, 150, 151, 955, 151, 189, 305, 151, 151, 151, 216, 216, 149, 152, 152, 152, 165, 150, 227, 165, 957, 189, 189, 227, 959, 165, 165, 152, 152, 152, 152, 152, 152, 212, 212, 212, 213, 213, 213, 232, 232, 228, 217, 217, 217, 227, 228, 242, 231, 231, 213, 213, 213, 213, 213, 213, 217, 217, 217, 217, 217, 217, 961, 242, 283, 283, 242, 963, 228, 231, 259, 259, 259, 260, 260, 260, 261, 261, 261, 262, 262, 262, 263, 263, 263, 320, 320, 335, 335, 335, 242, 260, 272, 338, 338, 397, 263, 263, 263, 263, 263, 263, 965, 290, 272, 290, 397, 967, 290, 319, 319, 319, 391, 391, 391, 321, 321, 321, 290, 323, 969, 390, 290, 319, 319, 319, 319, 319, 319, 321, 321, 321, 321, 321, 321, 323, 330, 390, 323, 394, 390, 401, 407, 407, 452, 456, 457, 330, 463, 971, 394, 498, 401, 973, 466, 500, 456, 457, 504, 463, 452, 975, 323, 452, 390, 466, 500, 498, 505, 504, 498, 506, 330, 533, 977, 394, 499, 499, 499, 505, 535, 979, 506, 534, 534, 534, 536, 452, 537, 533, 539, 535, 533, 561, 498, 577, 981, 536, 983, 537, 985, 539, 541, 541, 541, 563, 563, 563, 987, 561, 989, 577, 561, 588, 577, 594, 533, 991, 630, 630, 630, 600, 993, 603, 995, 606, 534, 541, 997, 588, 563, 594, 588, 609, 594, 612, 561, 600, 577, 603, 600, 606, 603, 630, 606, 610, 610, 610, 999, 609, 1001, 612, 609, 1003, 612, 1005, 588, 1007, 594, 613, 613, 613, 1009, 1011, 600, 616, 603, 1013, 606, 610, 614, 614, 614, 1015, 614, 1017, 609, 622, 612, 614, 1019, 616, 627, 613, 616, 617, 617, 617, 632, 617, 635, 635, 635, 622, 617, 638, 622, 640, 627, 1021, 1023, 627, 642, 644, 632, 1025, 1027, 632, 616, 1029, 646, 638, 1031, 640, 638, 635, 640, 614, 642, 644, 622, 642, 644, 648, 1033, 627, 646, 1035, 650, 646, 1037, 632, 617, 652, 1039, 654, 1041, 1043, 638, 648, 640, 656, 648, 658, 650, 642, 644, 650, 660, 652, 1045, 654, 652, 646, 654, 1047, 662, 656, 664, 658, 656, 1049, 658, 666, 660, 1051, 648, 660, 1053, 668, 1055, 650, 662, 670, 664, 662, 652, 664, 654, 666, 1057, 672, 666, 1059, 656, 668, 658, 1061, 668, 670, 1063, 660, 670, 1065, 674, 676, 1067, 672, 1069, 662, 672, 664, 678, 680, 682, 1071, 666, 1073, 1075, 684, 674, 676, 668, 674, 676, 686, 670, 688, 678, 680, 682, 678, 680, 682, 672, 684, 1077, 1079, 684, 1081, 1083, 686, 690, 688, 686, 1085, 688, 674, 676, 1087, 692, 1089, 1091, 1093, 1095, 678, 680, 682, 690, 694, 696, 690, 684, 1097, 698, 700, 692, 1099, 686, 692, 688, 702, 704, 706, 1101, 694, 696, 1103, 694, 696, 698, 700, 708, 698, 700, 690, 1105, 702, 704, 706, 702, 704, 706, 692, 710, 1107, 1109, 1111, 708, 1113, 1115, 708, 694, 696, 712, 714, 1117, 698, 700, 1119, 710, 716, 718, 710, 702, 704, 706, 720, 1121, 722, 712, 714, 1123, 712, 714, 708, 724, 716, 718, 1125, 716, 718, 1127, 720, 726, 722, 720, 710, 722, 1129, 728, 1131, 724, 1133, 1135, 724, 1137, 712, 714, 730, 726, 732, 1139, 726, 716, 718, 728, 734, 1141, 728, 720, 1143, 722, 736, 1145, 730, 1147, 732, 730, 724, 732, 738, 740, 734, 1149, 1151, 734, 726, 1153, 736, 742, 1155, 736, 728, 1157, 744, 746, 738, 740, 1159, 738, 740, 730, 748, 732, 1161, 742, 750, 1163, 742, 734, 744, 746, 752, 744, 746, 736, 1165, 754, 748, 1167, 1169, 748, 750, 738, 740, 750, 1171, 756, 752, 1173, 1175, 752, 742, 754, 758, 760, 754, 744, 746, 1177, 762, 1179, 764, 756, 1181, 748, 756, 766, 768, 750, 758, 760, 770, 758, 760, 752, 762, 772, 764, 762, 754, 764, 1183, 766, 768, 774, 766, 768, 770, 1185, 756, 770, 1187, 772, 1189, 1191, 772, 758, 760, 1193, 776, 774, 778, 762, 774, 764, 780, 782, 784, 1195, 766, 768, 1197, 786, 788, 770, 776, 1199, 778, 776, 772, 778, 780, 782, 784, 780, 782, 784, 774, 786, 788, 1201, 786, 788, 1203, 1205, 790, 1207, 1209, 1211, 1213, 1215, 792, 776, 794, 778, 796, 1217, 798, 780, 782, 784, 790, 800, 802, 790, 786, 788, 792, 804, 794, 792, 796, 794, 798, 796, 1219, 798, 1221, 800, 802, 1223, 800, 802, 806, 804, 808, 1225, 804, 790, 1227, 1229, 810, 1231, 812, 792, 1233, 794, 814, 796, 806, 798, 808, 806, 816, 808, 800, 802, 810, 818, 812, 810, 804, 812, 814, 820, 1235, 814, 1237, 1239, 816, 1241, 1243, 816, 822, 818, 824, 806, 818, 808, 826, 820, 828, 1245, 820, 810, 1247, 812, 830, 1249, 822, 814, 824, 822, 832, 824, 826, 816, 828, 826, 1251, 828, 818, 1253, 830, 834, 1255, 830, 820, 1257, 832, 836, 1259, 832, 1261, 1263, 838, 822, 1265, 824, 840, 834, 842, 826, 834, 828, 844, 836, 846, 1267, 836, 830, 838, 848, 850, 838, 840, 832, 842, 840, 1269, 842, 844, 1271, 846, 844, 1273, 846, 834, 848, 850, 852, 848, 850, 836, 1275, 854, 1277, 1279, 838, 1281, 1283, 856, 840, 858, 842, 860, 852, 862, 844, 852, 846, 854, 864, 866, 854, 848, 850, 856, 868, 858, 856, 860, 858, 862, 860, 1285, 862, 1287, 864, 866, 1289, 864, 866, 852, 868, 870, 1291, 868, 854, 1293, 1295, 872, 1297, 874, 856, 1299, 858, 876, 860, 878, 862, 870, 1301, 880, 870, 864, 866, 872, 882, 874, 872, 868, 874, 876, 884, 878, 876, 1303, 878, 880, 1305, 1307, 880, 1309, 882, 886, 1311, 882, 870, 888, 884, 890, 1313, 884, 872, 1315, 874, 892, 1317, 894, 876, 886, 878, 896, 886, 888, 880, 890, 888, 1319, 890, 882, 1321, 892, 898, 894, 892, 884, 894, 896, 900, 1323, 896, 1325, 1327, 902, 1329, 1331, 886, 904, 898, 906, 888, 898, 890, 908, 900, 910, 1333, 900, 892, 902, 894, 912, 902, 904, 896, 906, 904, 1335, 906, 908, 1337, 910, 908, 1339, 910, 898, 1341, 912, 914, 1343, 912, 900, 1345, 916, 918, 1347, 902, 1349, 1351, 920, 904, 922, 906, 924, 914, 926, 908, 914, 910, 916, 918, 928, 916, 918, 912, 920, 930, 922, 920, 924, 922, 926, 924, 1353, 926, 1355, 1357, 928, 1359, 1361, 928, 914, 930, 932, 934, 930, 916, 918, 1363, 936, 1365, 938, 920, 1367, 922, 940, 924, 942, 926, 932, 934, 944, 932, 934, 928, 936, 946, 938, 936, 930, 938, 940, 948, 942, 940, 1369, 942, 944, 1371, 1373, 944, 1375, 946, 950, 1377, 946, 932, 934, 948, 952, 1379, 948, 936, 1381, 938, 954, 1383, 956, 940, 950, 942, 958, 950, 960, 944, 952, 1385, 1387, 952, 946, 1389, 954, 962, 956, 954, 948, 956, 958, 964, 960, 958, 1391, 960, 966, 1403, 941, 950, 939, 962, 968, 937, 962, 952, 970, 964, 972, 935, 964, 954, 966, 956, 974, 966, 976, 958, 968, 960, 933, 968, 970, 931, 972, 970, 929, 972, 962, 927, 974, 978, 976, 974, 964, 976, 980, 982, 925, 966, 923, 921, 984, 919, 986, 968, 988, 978, 990, 970, 978, 972, 980, 982, 992, 980, 982, 974, 984, 976, 986, 984, 988, 986, 990, 988, 917, 990, 915, 913, 992, 911, 909, 992, 978, 907, 994, 996, 905, 980, 982, 903, 998, 1000, 1002, 984, 901, 986, 1004, 988, 1006, 990, 994, 996, 1008, 994, 996, 992, 998, 1000, 1002, 998, 1000, 1002, 1004, 1010, 1006, 1004, 899, 1006, 1008, 897, 895, 1008, 893, 891, 1012, 889, 887, 994, 996, 1010, 1014, 1016, 1010, 998, 1000, 1002, 1018, 885, 1020, 1004, 1012, 1006, 1022, 1012, 1024, 1008, 1014, 1016, 883, 1014, 1016, 881, 1018, 1026, 1020, 1018, 1010, 1020, 1022, 1028, 1024, 1022, 879, 1024, 1030, 877, 875, 1012, 873, 1026, 1032, 871, 1026, 1014, 1016, 1028, 1034, 869, 1028, 1018, 1030, 1020, 1036, 1030, 1038, 1022, 1032, 1024, 867, 1032, 1040, 865, 1034, 863, 861, 1034, 1026, 859, 1036, 1042, 1038, 1036, 1028, 1038, 1044, 1046, 1040, 1030, 857, 1040, 1048, 855, 1050, 1032, 853, 1042, 1052, 851, 1042, 1034, 1044, 1046, 1054, 1044, 1046, 1036, 1048, 1038, 1050, 1048, 1056, 1050, 1052, 1040, 849, 1052, 847, 845, 1054, 843, 841, 1054, 1042, 839, 1058, 1060, 1056, 1044, 1046, 1056, 1062, 1064, 1066, 1048, 837, 1050, 1068, 835, 1070, 1052, 1058, 1060, 1072, 1058, 1060, 1054, 1062, 1064, 1066, 1062, 1064, 1066, 1068, 1056, 1070, 1068, 833, 1070, 1072, 831, 829, 1072, 827, 825, 1074, 823, 821, 1058, 1060, 819, 1076, 1078, 1080, 1062, 1064, 1066, 1082, 1084, 1086, 1068, 1074, 1070, 1088, 1074, 1090, 1072, 1076, 1078, 1080, 1076, 1078, 1080, 1082, 1084, 1086, 1082, 1084, 1086, 1088, 817, 1090, 1088, 815, 1090, 813, 811, 809, 1074, 807, 805, 1092, 803, 1094, 1076, 1078, 1080, 1096, 1098, 1100, 1082, 1084, 1086, 1102, 1104, 1106, 1088, 1092, 1090, 1094, 1092, 1108, 1094, 1096, 1098, 1100, 1096, 1098, 1100, 1102, 1104, 1106, 1102, 1104, 1106, 801, 799, 1108, 797, 795, 1108, 793, 791, 1110, 1092, 789, 1094, 1112, 787, 1114, 1096, 1098, 1100, 1116, 1118, 1120, 1102, 1104, 1106, 1110, 1122, 1124, 1110, 1112, 1108, 1114, 1112, 785, 1114, 1116, 1118, 1120, 1116, 1118, 1120, 1126, 1122, 1124, 783, 1122, 1124, 781, 779, 1128, 777, 775, 1110, 773, 771, 1130, 1112, 1126, 1114, 1132, 1126, 1134, 1116, 1118, 1120, 1128, 1136, 1138, 1128, 1122, 1124, 1130, 1140, 769, 1130, 1132, 767, 1134, 1132, 765, 1134, 1142, 1136, 1138, 1126, 1136, 1138, 1144, 1140, 1146, 763, 1140, 1128, 761, 759, 1148, 757, 1142, 1130, 755, 1142, 1150, 1132, 1144, 1134, 1146, 1144, 1152, 1146, 1136, 1138, 1148, 1154, 753, 1148, 1140, 751, 1150, 1156, 749, 1150, 747, 745, 1152, 1142, 743, 1152, 1158, 1154, 1160, 1144, 1154, 1146, 1162, 1156, 1164, 741, 1156, 1148, 739, 1166, 1168, 737, 1158, 1150, 1160, 1158, 1170, 1160, 1162, 1152, 1164, 1162, 735, 1164, 1154, 1166, 1168, 1172, 1166, 1168, 1156, 733, 1170, 731, 729, 1170, 727, 725, 1174, 1158, 723, 1160, 1176, 1172, 1178, 1162, 1172, 1164, 1180, 1182, 1184, 721, 1166, 1168, 1174, 1186, 1188, 1174, 1176, 1170, 1178, 1176, 719, 1178, 1180, 1182, 1184, 1180, 1182, 1184, 1172, 1186, 1188, 717, 1186, 1188, 715, 713, 1190, 711, 709, 1174, 707, 705, 1192, 1176, 1194, 1178, 1196, 703, 1198, 1180, 1182, 1184, 1190, 1200, 1202, 1190, 1186, 1188, 1192, 1204, 1194, 1192, 1196, 1194, 1198, 1196, 701, 1198, 699, 1200, 1202, 697, 1200, 1202, 1206, 1204, 1208, 695, 1204, 1190, 693, 691, 1210, 689, 1212, 1192, 687, 1194, 1214, 1196, 1206, 1198, 1208, 1206, 1216, 1208, 1200, 1202, 1210, 1218, 1212, 1210, 1204, 1212, 1214, 1220, 685, 1214, 683, 681, 1216, 679, 677, 1216, 1222, 1218, 1224, 1206, 1218, 1208, 1226, 1220, 1228, 675, 1220, 1210, 673, 1212, 1230, 671, 1222, 1214, 1224, 1222, 1232, 1224, 1226, 1216, 1228, 1226, 669, 1228, 1218, 667, 1230, 1234, 665, 1230, 1220, 663, 1232, 1236, 661, 1232, 659, 657, 1238, 1222, 655, 1224, 1240, 1234, 1242, 1226, 1234, 1228, 1244, 1236, 1246, 653, 1236, 1230, 1238, 1248, 1250, 1238, 1240, 1232, 1242, 1240, 651, 1242, 1244, 649, 1246, 1244, 647, 1246, 1234, 1248, 1250, 1252, 1248, 1250, 1236, 645, 1254, 643, 641, 1238, 639, 637, 1256, 1240, 1258, 1242, 1260, 1252, 1262, 1244, 1252, 1246, 1254, 1264, 1266, 1254, 1248, 1250, 1256, 1268, 1258, 1256, 1260, 1258, 1262, 1260, 634, 1262, 633, 1264, 1266, 631, 1264, 1266, 1252, 1268, 1270, 629, 1268, 1254, 628, 626, 1272, 625, 1274, 1256, 624, 1258, 1276, 1260, 1278, 1262, 1270, 623, 1280, 1270, 1264, 1266, 1272, 1282, 1274, 1272, 1268, 1274, 1276, 1284, 1278, 1276, 621, 1278, 1280, 620, 619, 1280, 618, 1282, 1286, 615, 1282, 1270, 1288, 1284, 1290, 611, 1284, 1272, 608, 1274, 1292, 607, 1294, 1276, 1286, 1278, 1296, 1286, 1288, 1280, 1290, 1288, 605, 1290, 1282, 604, 1292, 1298, 1294, 1292, 1284, 1294, 1296, 1300, 602, 1296, 601, 599, 1302, 595, 593, 1286, 1304, 1298, 1306, 1288, 1298, 1290, 1308, 1300, 1310, 592, 1300, 1292, 1302, 1294, 1312, 1302, 1304, 1296, 1306, 1304, 591, 1306, 1308, 590, 1310, 1308, 589, 1310, 1298, 587, 1312, 1314, 586, 1312, 1300, 584, 1316, 1318, 579, 1302, 578, 576, 1320, 1304, 1322, 1306, 1324, 1314, 1326, 1308, 1314, 1310, 1316, 1318, 1328, 1316, 1318, 1312, 1320, 1330, 1322, 1320, 1324, 1322, 1326, 1324, 575, 1326, 572, 571, 1328, 570, 568, 1328, 1314, 1330, 1332, 1334, 1330, 1316, 1318, 567, 1336, 566, 1338, 1320, 565, 1322, 1340, 1324, 1342, 1326, 1332, 1334, 1344, 1332, 1334, 1328, 1336, 1346, 1338, 1336, 1330, 1338, 1340, 1348, 1342, 1340, 562, 1342, 1344, 560, 559, 1344, 558, 1346, 1350, 557, 1346, 1332, 1334, 1348, 1352, 556, 1348, 1336, 555, 1338, 1354, 554, 1356, 1340, 1350, 1342, 1358, 1350, 1360, 1344, 1352, 551, 550, 1352, 1346, 549, 1354, 1362, 1356, 1354, 1348, 1356, 1358, 1364, 1360, 1358, 546, 1360, 1366, 544, 542, 1350, 532, 1362, 1368, 531, 1362, 1352, 1370, 1364, 1372, 530, 1364, 1354, 1366, 1356, 1374, 1366, 1376, 1358, 1368, 1360, 528, 1368, 1370, 527, 1372, 1370, 526, 1372, 1362, 525, 1374, 1378, 1376, 1374, 1364, 1376, 1380, 1382, 524, 1366, 521, 520, 1384, 519, 1386, 1368, 1388, 1378, 1390, 1370, 1378, 1372, 1380, 1382, 1392, 1380, 1382, 1374, 1384, 1376, 1386, 1384, 1388, 1386, 1390, 1388, 518, 1390, 515, 514, 1392, 513, 512, 1392, 1378, 511, 1394, 510, 509, 1380, 1382, 508, 503, 502, 497, 1384, 493, 1386, 491, 1388, 490, 1390, 1394, 489, 488, 1394, 487, 1392, 486, 484, 483, 482, 481, 480, 479, 478, 476, 475, 474, 473, 472, 471, 470, 469, 468, 467, 465, 462, 461, 1394, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 460, 1401, 1402, 1402, 1402, 1402, 459, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1405, 455, 454, 1405, 1406, 1406, 1406, 451, 1406, 1406, 1406, 447, 1406, 1406, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1408, 446, 445, 1408, 1409, 1409, 1409, 1409, 1409, 1409, 444, 1409, 1409, 1409, 1409, 1409, 1410, 443, 442, 441, 438, 437, 1410, 1410, 436, 1410, 1411, 435, 434, 1411, 1412, 433, 432, 1412, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 430, 1413, 1413, 1413, 1413, 1414, 1414, 429, 1414, 1414, 428, 1414, 1414, 1414, 1414, 1414, 1414, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1416, 426, 425, 1416, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1418, 423, 422, 421, 420, 413, 412, 411, 410, 409, 1418, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1420, 408, 406, 404, 403, 402, 1420, 400, 399, 1420, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 396, 395, 393, 392, 389, 386, 385, 384, 383, 382, 381, 380, 379, 378, 377, 376, 374, 373, 372, 371, 370, 369, 368, 367, 366, 365, 362, 361, 360, 359, 358, 357, 356, 354, 353, 352, 351, 350, 349, 348, 346, 345, 344, 343, 342, 341, 340, 339, 337, 336, 334, 333, 332, 331, 329, 328, 327, 326, 325, 324, 322, 317, 314, 312, 311, 310, 309, 308, 307, 306, 303, 302, 301, 300, 299, 298, 297, 296, 295, 294, 293, 292, 291, 289, 288, 287, 285, 284, 282, 281, 280, 279, 278, 277, 275, 274, 273, 271, 270, 265, 264, 258, 257, 256, 255, 254, 253, 252, 251, 250, 249, 245, 244, 241, 230, 225, 222, 221, 219, 205, 204, 203, 202, 201, 200, 199, 198, 197, 195, 192, 191, 190, 188, 186, 185, 184, 183, 181, 180, 179, 178, 177, 175, 173, 170, 168, 167, 166, 161, 158, 154, 146, 137, 136, 135, 134, 133, 132, 131, 130, 129, 127, 116, 114, 112, 111, 109, 108, 106, 105, 102, 101, 89, 86, 85, 84, 78, 71, 70, 69, 65, 63, 62, 61, 58, 53, 50, 49, 48, 44, 37, 28, 24, 23, 20, 19, 18, 17, 2, 1, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395 } ; 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 static int yy_more_flag = 0; static int yy_more_len = 0; #define yymore() (yy_more_flag = 1) #define YY_MORE_ADJ yy_more_len #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #define INITIAL 0 /* +----------------------------------------------------------------------+ | Zend Engine | +----------------------------------------------------------------------+ | Copyright (c) 1998-2004 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ | This source file is subject to version 2.00 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.zend.com/license/2_00.txt. | | If you did not receive a copy of the Zend license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@zend.com so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Andi Gutmans | | Zeev Suraski | +----------------------------------------------------------------------+ */ /* $Id: zend_language_scanner.l,v 1.111.2.10 2005/06/09 08:54:24 dmitry Exp $ */ #define yyleng SCNG(yy_leng) #define yytext SCNG(yy_text) #define yytext_ptr SCNG(yy_text) #define yyin SCNG(yy_in) #define yyout SCNG(yy_out) #define yy_last_accepting_state SCNG(_yy_last_accepting_state) #define yy_last_accepting_cpos SCNG(_yy_last_accepting_cpos) #define yy_more_flag SCNG(_yy_more_flag) #define yy_more_len SCNG(_yy_more_len) #define ST_IN_SCRIPTING 1 #define ST_DOUBLE_QUOTES 2 #define ST_SINGLE_QUOTE 3 #define ST_BACKQUOTE 4 #define ST_HEREDOC 5 #define ST_LOOKING_FOR_PROPERTY 6 #define ST_LOOKING_FOR_VARNAME 7 #define ST_COMMENT 8 #define ST_DOC_COMMENT 9 #define ST_ONE_LINE_COMMENT 10 #define YY_STACK_USED 1 #include #include "zend.h" #include "zend_alloc.h" #include #include "zend_compile.h" #include "zend_language_scanner.h" #include "zend_highlight.h" #include "zend_constants.h" #include "zend_variables.h" #include "zend_operators.h" #include "zend_strtod.h" #ifdef HAVE_STDARG_H # include #endif #ifdef HAVE_UNISTD_H # include #endif #define YY_DECL int lex_scan(zval *zendlval TSRMLS_DC) #define ECHO { ZEND_WRITE( yytext, yyleng ); } #ifdef ZTS # define MY_INPUT yyinput #else # define MY_INPUT input #endif /* Globals Macros */ #define SCNG LANG_SCNG #ifdef ZTS ZEND_API ts_rsrc_id language_scanner_globals_id; #else ZEND_API zend_scanner_globals language_scanner_globals; #endif #define YY_FATAL_ERROR zend_fatal_scanner_error #define HANDLE_NEWLINES(s, l) \ do { \ char *p = (s), *boundary = p+(l); \ \ while (p='0' && (c)<='7') #define ZEND_IS_HEX(c) (((c)>='0' && (c)<='9') || ((c)>='a' && (c)<='f') || ((c)>='A' && (c)<='F')) void zend_fatal_scanner_error(char *message) { zend_error(E_COMPILE_ERROR, "%s", message); } BEGIN_EXTERN_C() void startup_scanner(TSRMLS_D) { CG(heredoc) = NULL; CG(heredoc_len)=0; CG(doc_comment) = NULL; CG(doc_comment_len) = 0; SCNG(yy_start_stack_ptr) = 0; SCNG(yy_start_stack_depth) = 0; SCNG(current_buffer) = NULL; #ifdef ZEND_MULTIBYTE SCNG(script_org) = NULL; SCNG(script_org_size) = 0; SCNG(script_filtered) = NULL; SCNG(script_filtered_size) = 0; SCNG(input_filter) = NULL; SCNG(output_filter) = NULL; SCNG(script_encoding) = NULL; SCNG(internal_encoding) = NULL; #endif /* ZEND_MULTIBYTE */ } void shutdown_scanner(TSRMLS_D) { if (CG(heredoc)) { efree(CG(heredoc)); CG(heredoc_len)=0; } if (SCNG(yy_start_stack)) { yy_flex_free(SCNG(yy_start_stack)); SCNG(yy_start_stack) = NULL; } RESET_DOC_COMMENT(); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } SCNG(script_org_size) = 0; SCNG(script_filtered_size) = 0; SCNG(input_filter) = NULL; SCNG(output_filter) = NULL; SCNG(script_encoding) = NULL; SCNG(internal_encoding) = NULL; #endif /* ZEND_MULTIBYTE */ } END_EXTERN_C() ZEND_API void zend_save_lexical_state(zend_lex_state *lex_state TSRMLS_DC) { memcpy(&lex_state->buffer_state, &YY_CURRENT_BUFFER, sizeof(YY_BUFFER_STATE)); lex_state->in = SCNG(yy_in); lex_state->state = YYSTATE; lex_state->filename = zend_get_compiled_filename(TSRMLS_C); lex_state->lineno = CG(zend_lineno); #ifdef ZEND_MULTIBYTE lex_state->script_org = SCNG(script_org); lex_state->script_org_size = SCNG(script_org_size); lex_state->script_filtered = SCNG(script_filtered); lex_state->script_filtered_size = SCNG(script_filtered_size); lex_state->input_filter = SCNG(input_filter); lex_state->output_filter = SCNG(output_filter); lex_state->script_encoding = SCNG(script_encoding); lex_state->internal_encoding = SCNG(internal_encoding); #endif /* ZEND_MULTIBYTE */ } ZEND_API void zend_restore_lexical_state(zend_lex_state *lex_state TSRMLS_DC) { YY_BUFFER_STATE original_buffer_state = YY_CURRENT_BUFFER; if (lex_state->buffer_state) { yy_switch_to_buffer(lex_state->buffer_state TSRMLS_CC); } else { YY_CURRENT_BUFFER = NULL; } yy_delete_buffer(original_buffer_state TSRMLS_CC); SCNG(yy_in) = lex_state->in; BEGIN(lex_state->state); CG(zend_lineno) = lex_state->lineno; zend_restore_compiled_filename(lex_state->filename TSRMLS_CC); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } SCNG(script_org) = lex_state->script_org; SCNG(script_org_size) = lex_state->script_org_size; SCNG(script_filtered) = lex_state->script_filtered; SCNG(script_filtered_size) = lex_state->script_filtered_size; SCNG(input_filter) = lex_state->input_filter; SCNG(output_filter) = lex_state->output_filter; SCNG(script_encoding) = lex_state->script_encoding; SCNG(internal_encoding) = lex_state->internal_encoding; #endif /* ZEND_MULTIBYTE */ } BEGIN_EXTERN_C() ZEND_API void zend_file_handle_dtor(zend_file_handle *fh) { TSRMLS_FETCH(); switch (fh->type) { case ZEND_HANDLE_FP: fclose(fh->handle.fp); break; case ZEND_HANDLE_STREAM: fh->handle.stream.closer(fh->handle.stream.handle TSRMLS_CC); break; case ZEND_HANDLE_FILENAME: /* We're only supposed to get here when destructing the used_files hash, * which doesn't really contain open files, but references to their names/paths */ break; } if (fh->opened_path) { efree(fh->opened_path); fh->opened_path = NULL; } if (fh->free_filename && fh->filename) { efree(fh->filename); fh->filename = NULL; } } int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2) { if (fh1->type != fh2->type) { return 0; } switch (fh1->type) { case ZEND_HANDLE_FP: return fh1->handle.fp==fh2->handle.fp; break; case ZEND_HANDLE_STREAM: return fh1->handle.stream.handle == fh2->handle.stream.handle; break; } return 0; } ZEND_API void zend_destroy_file_handle(zend_file_handle *file_handle TSRMLS_DC) { zend_llist_del_element(&CG(open_files), file_handle, (int (*)(void *, void *)) zend_compare_file_handles); } ZEND_API int open_file_for_scanning(zend_file_handle *file_handle TSRMLS_DC) { char *file_path=NULL; if (FAILURE == zend_stream_fixup(file_handle TSRMLS_CC)) { return FAILURE; } zend_llist_add_element(&CG(open_files), file_handle); /* Reset the scanner for scanning the new file */ SCNG(yy_in) = file_handle; #ifdef ZEND_MULTIBYTE if (file_handle->handle.stream.interactive == 0) { if (zend_multibyte_read_script(TSRMLS_C) != 0) { return FAILURE; } /* force flex to use buffer only */ SCNG(yy_in) = NULL; SCNG(init) = 0; SCNG(start) = 1; zend_multibyte_set_filter(NULL TSRMLS_CC); if (!SCNG(input_filter)) { SCNG(script_filtered) = (char*)emalloc(SCNG(script_org_size)+1); memcpy(SCNG(script_filtered), SCNG(script_org), SCNG(script_org_size)+1); SCNG(script_filtered_size) = SCNG(script_org_size); } else { SCNG(input_filter)(&SCNG(script_filtered), &SCNG(script_filtered_size), SCNG(script_org), SCNG(script_org_size) TSRMLS_CC); } /* flex requires doubled null */ SCNG(script_filtered) = (char*)erealloc(SCNG(script_filtered), SCNG(script_filtered_size)+2); *(SCNG(script_filtered)+SCNG(script_filtered_size)) = (char)NULL; *(SCNG(script_filtered)+SCNG(script_filtered_size)+1) = (char)NULL; yy_scan_buffer(SCNG(script_filtered), SCNG(script_filtered_size)+2 TSRMLS_CC); } else { yy_switch_to_buffer(yy_create_buffer(SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC) TSRMLS_CC); } #else /* !ZEND_MULTIBYTE */ yy_switch_to_buffer(yy_create_buffer(SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC) TSRMLS_CC); #endif /* ZEND_MULTIBYTE */ BEGIN(INITIAL); if (file_handle->opened_path) { file_path = file_handle->opened_path; } else { file_path = file_handle->filename; } zend_set_compiled_filename(file_path TSRMLS_CC); if (CG(start_lineno)) { CG(zend_lineno) = CG(start_lineno); CG(start_lineno) = 0; } else { CG(zend_lineno) = 1; } CG(increment_lineno) = 0; return SUCCESS; } END_EXTERN_C() ZEND_API zend_op_array *compile_file(zend_file_handle *file_handle, int type TSRMLS_DC) { zend_lex_state original_lex_state; zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array)); zend_op_array *original_active_op_array = CG(active_op_array); zend_op_array *retval=NULL; int compiler_result; zend_bool compilation_successful=0; znode retval_znode; zend_bool original_in_compilation = CG(in_compilation); retval_znode.op_type = IS_CONST; retval_znode.u.constant.type = IS_LONG; retval_znode.u.constant.value.lval = 1; retval_znode.u.constant.is_ref = 0; retval_znode.u.constant.refcount = 1; zend_save_lexical_state(&original_lex_state TSRMLS_CC); retval = op_array; /* success oriented */ if (open_file_for_scanning(file_handle TSRMLS_CC)==FAILURE) { if (type==ZEND_REQUIRE) { zend_message_dispatcher(ZMSG_FAILED_REQUIRE_FOPEN, file_handle->filename); zend_bailout(); } else { zend_message_dispatcher(ZMSG_FAILED_INCLUDE_FOPEN, file_handle->filename); } compilation_successful=0; } else { init_op_array(op_array, ZEND_USER_FUNCTION, INITIAL_OP_ARRAY_SIZE TSRMLS_CC); CG(in_compilation) = 1; CG(active_op_array) = op_array; compiler_result = zendparse(TSRMLS_C); zend_do_return(&retval_znode, 0 TSRMLS_CC); zend_do_handle_exception(TSRMLS_C); CG(in_compilation) = original_in_compilation; if (compiler_result==1) { /* parser error */ zend_bailout(); } compilation_successful=1; } if (retval) { CG(active_op_array) = original_active_op_array; if (compilation_successful) { pass_two(op_array TSRMLS_CC); } else { efree(op_array); retval = NULL; } } if (compilation_successful) { zend_restore_lexical_state(&original_lex_state TSRMLS_CC); } return retval; } zend_op_array *compile_filename(int type, zval *filename TSRMLS_DC) { zend_file_handle file_handle; zval tmp; zend_op_array *retval; char *opened_path = NULL; if (filename->type != IS_STRING) { tmp = *filename; zval_copy_ctor(&tmp); convert_to_string(&tmp); filename = &tmp; } file_handle.filename = filename->value.str.val; file_handle.free_filename = 0; file_handle.type = ZEND_HANDLE_FILENAME; file_handle.opened_path = NULL; retval = zend_compile_file(&file_handle, type TSRMLS_CC); if (retval && file_handle.handle.stream.handle) { int dummy = 1; if (!file_handle.opened_path) { file_handle.opened_path = opened_path = estrndup(filename->value.str.val, filename->value.str.len); } zend_hash_add(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1, (void *)&dummy, sizeof(int), NULL); if (opened_path) { efree(opened_path); } } zend_destroy_file_handle(&file_handle TSRMLS_CC); if (filename==&tmp) { zval_dtor(&tmp); } return retval; } ZEND_API int zend_prepare_string_for_scanning(zval *str, char *filename TSRMLS_DC) { /* enforce two trailing NULLs for flex... */ STR_REALLOC(str->value.str.val, str->value.str.len+2); str->value.str.val[str->value.str.len+1]=0; SCNG(yy_in)=NULL; #ifdef ZEND_MULTIBYTE SCNG(script_org) = estrdup(str->value.str.val); SCNG(script_org_size) = str->value.str.len; zend_multibyte_set_filter(CG(internal_encoding) TSRMLS_CC); if (!SCNG(input_filter)) { SCNG(script_filtered) = (char*)emalloc(SCNG(script_org_size)+1); memcpy(SCNG(script_filtered), SCNG(script_org), SCNG(script_org_size)+1); SCNG(script_filtered_size) = SCNG(script_org_size); } else { SCNG(input_filter)(&SCNG(script_filtered), &SCNG(script_filtered_size), SCNG(script_org), SCNG(script_org_size) TSRMLS_CC); } /* flex requires doubled null */ SCNG(script_filtered) = (char*)erealloc(SCNG(script_filtered), SCNG(script_filtered_size)+2); *(SCNG(script_filtered)+SCNG(script_filtered_size)) = (char)NULL; *(SCNG(script_filtered)+SCNG(script_filtered_size)+1) = (char)NULL; yy_scan_buffer(SCNG(script_filtered), SCNG(script_filtered_size)+2 TSRMLS_CC); #else /* !ZEND_MULTIBYTE */ yy_scan_buffer(str->value.str.val, str->value.str.len+2 TSRMLS_CC); #endif /* ZEND_MULTIBYTE */ zend_set_compiled_filename(filename TSRMLS_CC); CG(zend_lineno) = 1; CG(increment_lineno) = 0; return SUCCESS; } zend_op_array *compile_string(zval *source_string, char *filename TSRMLS_DC) { zend_lex_state original_lex_state; zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array)); zend_op_array *original_active_op_array = CG(active_op_array); zend_op_array *retval; zval tmp; int compiler_result; zend_bool original_in_compilation = CG(in_compilation); if (source_string->value.str.len==0) { efree(op_array); return NULL; } CG(in_compilation) = 1; tmp = *source_string; zval_copy_ctor(&tmp); convert_to_string(&tmp); source_string = &tmp; zend_save_lexical_state(&original_lex_state TSRMLS_CC); if (zend_prepare_string_for_scanning(source_string, filename TSRMLS_CC)==FAILURE) { efree(op_array); retval = NULL; } else { init_op_array(op_array, ZEND_EVAL_CODE, INITIAL_OP_ARRAY_SIZE TSRMLS_CC); CG(active_op_array) = op_array; BEGIN(ST_IN_SCRIPTING); compiler_result = zendparse(TSRMLS_C); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } #endif /* ZEND_MULTIBYTE */ if (compiler_result==1) { CG(active_op_array) = original_active_op_array; CG(unclean_shutdown)=1; retval = NULL; } else { zend_do_return(NULL, 0 TSRMLS_CC); zend_do_handle_exception(TSRMLS_C); CG(active_op_array) = original_active_op_array; pass_two(op_array TSRMLS_CC); retval = op_array; } zend_restore_lexical_state(&original_lex_state TSRMLS_CC); } zval_dtor(&tmp); CG(in_compilation) = original_in_compilation; return retval; } BEGIN_EXTERN_C() int highlight_file(char *filename, zend_syntax_highlighter_ini *syntax_highlighter_ini TSRMLS_DC) { zend_lex_state original_lex_state; zend_file_handle file_handle; file_handle.type = ZEND_HANDLE_FILENAME; file_handle.filename = filename; file_handle.free_filename = 0; file_handle.opened_path = NULL; zend_save_lexical_state(&original_lex_state TSRMLS_CC); if (open_file_for_scanning(&file_handle TSRMLS_CC)==FAILURE) { zend_message_dispatcher(ZMSG_FAILED_HIGHLIGHT_FOPEN, filename); return FAILURE; } zend_highlight(syntax_highlighter_ini TSRMLS_CC); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } #endif /* ZEND_MULTIBYTE */ zend_destroy_file_handle(&file_handle TSRMLS_CC); zend_restore_lexical_state(&original_lex_state TSRMLS_CC); return SUCCESS; } int highlight_string(zval *str, zend_syntax_highlighter_ini *syntax_highlighter_ini, char *str_name TSRMLS_DC) { zend_lex_state original_lex_state; zval tmp = *str; str = &tmp; zval_copy_ctor(str); zend_save_lexical_state(&original_lex_state TSRMLS_CC); if (zend_prepare_string_for_scanning(str, str_name TSRMLS_CC)==FAILURE) { return FAILURE; } zend_highlight(syntax_highlighter_ini TSRMLS_CC); #ifdef ZEND_MULTIBYTE if (SCNG(script_org)) { efree(SCNG(script_org)); SCNG(script_org) = NULL; } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); SCNG(script_filtered) = NULL; } #endif /* ZEND_MULTIBYTE */ zend_restore_lexical_state(&original_lex_state TSRMLS_CC); zval_dtor(str); return SUCCESS; } END_EXTERN_C() #ifdef ZEND_MULTIBYTE BEGIN_EXTERN_C() ZEND_API void zend_multibyte_yyinput_again(zend_encoding_filter old_input_filter, zend_encoding *old_encoding TSRMLS_DC) { YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int offset, original_offset, length, free_flag; char *p; zend_encoding *new_encoding; /* calculate current position */ offset = original_offset = yy_c_buf_p - b->yy_ch_buf; if (old_input_filter && original_offset > 0) { new_encoding = SCNG(script_encoding); SCNG(script_encoding) = old_encoding; do { (old_input_filter)(&p, &length, SCNG(script_org), offset TSRMLS_CC); if (!p) { SCNG(script_encoding) = new_encoding; return; } efree(p); if (length > original_offset) { offset--; } else if (length < original_offset) { offset++; } } while (original_offset != length); SCNG(script_encoding) = new_encoding; } /* convert and set */ if (!SCNG(input_filter)) { length = SCNG(script_org_size)-offset-1; p = SCNG(script_org)+offset+1; free_flag = 0; } else { SCNG(input_filter)(&p, &length, SCNG(script_org)+offset+1, SCNG(script_org_size)-offset-1 TSRMLS_CC); free_flag = 1; } if (original_offset+length+1 > (int)b->yy_buf_size) { b->yy_buf_size = original_offset+length+1; b->yy_ch_buf = (char*)erealloc(b->yy_ch_buf, b->yy_buf_size+2); SCNG(script_filtered) = b->yy_ch_buf; SCNG(script_filtered_size) = b->yy_buf_size; } yy_c_buf_p = b->yy_ch_buf + original_offset; strncpy(yy_c_buf_p+1, p, length); b->yy_n_chars = original_offset + length + 1; SCNG(yy_n_chars) = b->yy_n_chars; b->yy_ch_buf[SCNG(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[SCNG(yy_n_chars)+1] = YY_END_OF_BUFFER_CHAR; if (free_flag) { efree(p); } } ZEND_API int zend_multibyte_yyinput(zend_file_handle *file_handle, char *buf, size_t len TSRMLS_DC) { int c = '*', n; if (file_handle->handle.stream.interactive == 0) { return zend_stream_read(file_handle, buf, len TSRMLS_CC); } /* interactive */ if (SCNG(script_org)) { efree(SCNG(script_org)); } if (SCNG(script_filtered)) { efree(SCNG(script_filtered)); } SCNG(script_org) = NULL; SCNG(script_org_size) = 0; /* TODO: support widechars */ for (n = 0; n < sizeof(buf) && (c = zend_stream_getc(yyin TSRMLS_CC)) != EOF && c != '\n'; ++n) { buf[n] = (char)c; } if (c == '\n') { buf[n++] = (char) c; } SCNG(script_org_size) = n; SCNG(script_org) = (char*)emalloc(SCNG(script_org_size)+1); memcpy(SCNG(script_org)+SCNG(script_org_size)-n, buf, n); return n; } ZEND_API int zend_multibyte_read_script(TSRMLS_D) { char buf[8192]; int n; if (SCNG(script_org)) { efree(SCNG(script_org)); } SCNG(script_org) = NULL; SCNG(script_org_size) = 0; for (;;) { n = zend_stream_read(yyin, buf, sizeof(buf) TSRMLS_CC); if (n <= 0) { break; } SCNG(script_org_size) += n; if (SCNG(script_org)) { SCNG(script_org) = (char*)erealloc(SCNG(script_org), SCNG(script_org_size)+1); } else { SCNG(script_org) = (char*)emalloc(SCNG(script_org_size)+1); } memcpy(SCNG(script_org)+SCNG(script_org_size)-n, buf, n); } if (n < 0) { return -1; } if (!SCNG(script_org)) { SCNG(script_org) = emalloc(SCNG(script_org_size)+1); } *(SCNG(script_org)+SCNG(script_org_size)) = (char)NULL; return 0; } # define zend_copy_value(zendlval, yytext, yyleng) \ if (SCNG(output_filter)) { \ SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), yytext, yyleng TSRMLS_CC); \ } else { \ zendlval->value.str.val = (char *) estrndup(yytext, yyleng); \ zendlval->value.str.len = yyleng; \ } #else /* ZEND_MULTIBYTE */ # define zend_copy_value(zendlval, yytext, yyleng) \ zendlval->value.str.val = (char *)estrndup(yytext, yyleng); \ zendlval->value.str.len = yyleng; #endif /* ZEND_MULTIBYTE */ /* 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 TSRMLS_DC )); #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 3 YY_PROTO(( TSRMLS_D )); #else static int input YY_PROTO(( TSRMLS_D )); #endif #endif #if YY_STACK_USED #define yy_start_stack_ptr SCNG(yy_start_stack_ptr) #define yy_start_stack_depth SCNG(yy_start_stack_depth) #define yy_start_stack SCNG(yy_start_stack) /* 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 TSRMLS_DC )); #endif #ifndef YY_NO_POP_STATE static void yy_pop_state YY_PROTO(( TSRMLS_D )); #endif #ifndef YY_NO_TOP_STATE static int yy_top_state YY_PROTO(( TSRMLS_D )); #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. */ /* Zend file handle reading */ #ifndef ECHO #define ECHO /* There is no output */ #endif #ifdef ZEND_MULTIBYTE # define YY_INPUT(buf, result, max_size) \ if ( ((result = zend_multibyte_yyinput(yyin, buf, max_size TSRMLS_CC)) == 0) \ && zend_stream_ferror( yyin TSRMLS_CC) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #else # define YY_INPUT(buf, result, max_size) \ if ( ((result = zend_stream_read(yyin, buf, max_size TSRMLS_CC)) == 0) \ && zend_stream_ferror( yyin TSRMLS_CC) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); #endif #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, SCNG(yy_out) ) #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 \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ } #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #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 \ if ( yyleng > 0 ) \ yy_current_buffer->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; if ( yy_init ) { yy_init = 0; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yy_start ) yy_start = 1; /* first start state */ #if 0 if ( ! SCNG(yy_in) ) SCNG(yy_in) = stdin; if ( ! SCNG(yy_out) ) SCNG(yy_out) = stdout; #endif if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); yy_load_buffer_state(TSRMLS_C); } while ( 1 ) /* loops until end-of-file is reached */ { yy_more_len = 0; if ( yy_more_flag ) { yy_more_len = yy_c_buf_p - yytext_ptr; yy_more_flag = 0; } 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_current_state += YY_AT_BOL(); 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 >= 1396 ) 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] != 7982 ); 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 { return T_EXIT; } YY_BREAK case 2: YY_RULE_SETUP { return T_EXIT; } YY_BREAK case 3: YY_RULE_SETUP { return T_FUNCTION; } YY_BREAK case 4: YY_RULE_SETUP { return T_CONST; } YY_BREAK case 5: YY_RULE_SETUP { return T_RETURN; } YY_BREAK case 6: YY_RULE_SETUP { return T_TRY; } YY_BREAK case 7: YY_RULE_SETUP { return T_CATCH; } YY_BREAK case 8: YY_RULE_SETUP { return T_THROW; } YY_BREAK case 9: YY_RULE_SETUP { return T_IF; } YY_BREAK case 10: YY_RULE_SETUP { return T_ELSEIF; } YY_BREAK case 11: YY_RULE_SETUP { return T_ENDIF; } YY_BREAK case 12: YY_RULE_SETUP { return T_ELSE; } YY_BREAK case 13: YY_RULE_SETUP { return T_WHILE; } YY_BREAK case 14: YY_RULE_SETUP { return T_ENDWHILE; } YY_BREAK case 15: YY_RULE_SETUP { return T_DO; } YY_BREAK case 16: YY_RULE_SETUP { return T_FOR; } YY_BREAK case 17: YY_RULE_SETUP { return T_ENDFOR; } YY_BREAK case 18: YY_RULE_SETUP { return T_FOREACH; } YY_BREAK case 19: YY_RULE_SETUP { return T_ENDFOREACH; } YY_BREAK case 20: YY_RULE_SETUP { return T_DECLARE; } YY_BREAK case 21: YY_RULE_SETUP { return T_ENDDECLARE; } YY_BREAK case 22: YY_RULE_SETUP { return T_INSTANCEOF; } YY_BREAK case 23: YY_RULE_SETUP { return T_AS; } YY_BREAK case 24: YY_RULE_SETUP { return T_SWITCH; } YY_BREAK case 25: YY_RULE_SETUP { return T_ENDSWITCH; } YY_BREAK case 26: YY_RULE_SETUP { return T_CASE; } YY_BREAK case 27: YY_RULE_SETUP { return T_DEFAULT; } YY_BREAK case 28: YY_RULE_SETUP { return T_BREAK; } YY_BREAK case 29: YY_RULE_SETUP { return T_CONTINUE; } YY_BREAK case 30: YY_RULE_SETUP { return T_ECHO; } YY_BREAK case 31: YY_RULE_SETUP { return T_PRINT; } YY_BREAK case 32: YY_RULE_SETUP { return T_CLASS; } YY_BREAK case 33: YY_RULE_SETUP { return T_INTERFACE; } YY_BREAK case 34: YY_RULE_SETUP { return T_EXTENDS; } YY_BREAK case 35: YY_RULE_SETUP { return T_IMPLEMENTS; } YY_BREAK case 36: YY_RULE_SETUP { yy_push_state(ST_LOOKING_FOR_PROPERTY TSRMLS_CC); return T_OBJECT_OPERATOR; } YY_BREAK case 37: YY_RULE_SETUP { yy_pop_state(TSRMLS_C); zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_STRING; } YY_BREAK case 38: YY_RULE_SETUP { yyless(0); yy_pop_state(TSRMLS_C); } YY_BREAK case 39: YY_RULE_SETUP { return T_PAAMAYIM_NEKUDOTAYIM; } YY_BREAK case 40: YY_RULE_SETUP { return T_NEW; } YY_BREAK case 41: YY_RULE_SETUP { return T_CLONE; } YY_BREAK case 42: YY_RULE_SETUP { return T_VAR; } YY_BREAK case 43: YY_RULE_SETUP { return T_INT_CAST; } YY_BREAK case 44: YY_RULE_SETUP { return T_DOUBLE_CAST; } YY_BREAK case 45: YY_RULE_SETUP { return T_STRING_CAST; } YY_BREAK case 46: YY_RULE_SETUP { return T_ARRAY_CAST; } YY_BREAK case 47: YY_RULE_SETUP { return T_OBJECT_CAST; } YY_BREAK case 48: YY_RULE_SETUP { return T_BOOL_CAST; } YY_BREAK case 49: YY_RULE_SETUP { return T_UNSET_CAST; } YY_BREAK case 50: YY_RULE_SETUP { return T_EVAL; } YY_BREAK case 51: YY_RULE_SETUP { return T_INCLUDE; } YY_BREAK case 52: YY_RULE_SETUP { return T_INCLUDE_ONCE; } YY_BREAK case 53: YY_RULE_SETUP { return T_REQUIRE; } YY_BREAK case 54: YY_RULE_SETUP { return T_REQUIRE_ONCE; } YY_BREAK case 55: YY_RULE_SETUP { return T_USE; } YY_BREAK case 56: YY_RULE_SETUP { return T_GLOBAL; } YY_BREAK case 57: YY_RULE_SETUP { return T_ISSET; } YY_BREAK case 58: YY_RULE_SETUP { return T_EMPTY; } YY_BREAK case 59: YY_RULE_SETUP { return T_STATIC; } YY_BREAK case 60: YY_RULE_SETUP { return T_ABSTRACT; } YY_BREAK case 61: YY_RULE_SETUP { return T_FINAL; } YY_BREAK case 62: YY_RULE_SETUP { return T_PRIVATE; } YY_BREAK case 63: YY_RULE_SETUP { return T_PROTECTED; } YY_BREAK case 64: YY_RULE_SETUP { return T_PUBLIC; } YY_BREAK case 65: YY_RULE_SETUP { return T_UNSET; } YY_BREAK case 66: YY_RULE_SETUP { return T_DOUBLE_ARROW; } YY_BREAK case 67: YY_RULE_SETUP { return T_LIST; } YY_BREAK case 68: YY_RULE_SETUP { return T_ARRAY; } YY_BREAK case 69: YY_RULE_SETUP { return T_INC; } YY_BREAK case 70: YY_RULE_SETUP { return T_DEC; } YY_BREAK case 71: YY_RULE_SETUP { return T_IS_IDENTICAL; } YY_BREAK case 72: YY_RULE_SETUP { return T_IS_NOT_IDENTICAL; } YY_BREAK case 73: YY_RULE_SETUP { return T_IS_EQUAL; } YY_BREAK case 74: YY_RULE_SETUP { return T_IS_NOT_EQUAL; } YY_BREAK case 75: YY_RULE_SETUP { return T_IS_SMALLER_OR_EQUAL; } YY_BREAK case 76: YY_RULE_SETUP { return T_IS_GREATER_OR_EQUAL; } YY_BREAK case 77: YY_RULE_SETUP { return T_PLUS_EQUAL; } YY_BREAK case 78: YY_RULE_SETUP { return T_MINUS_EQUAL; } YY_BREAK case 79: YY_RULE_SETUP { return T_MUL_EQUAL; } YY_BREAK case 80: YY_RULE_SETUP { return T_DIV_EQUAL; } YY_BREAK case 81: YY_RULE_SETUP { return T_CONCAT_EQUAL; } YY_BREAK case 82: YY_RULE_SETUP { return T_MOD_EQUAL; } YY_BREAK case 83: YY_RULE_SETUP { return T_SL_EQUAL; } YY_BREAK case 84: YY_RULE_SETUP { return T_SR_EQUAL; } YY_BREAK case 85: YY_RULE_SETUP { return T_AND_EQUAL; } YY_BREAK case 86: YY_RULE_SETUP { return T_OR_EQUAL; } YY_BREAK case 87: YY_RULE_SETUP { return T_XOR_EQUAL; } YY_BREAK case 88: YY_RULE_SETUP { return T_BOOLEAN_OR; } YY_BREAK case 89: YY_RULE_SETUP { return T_BOOLEAN_AND; } YY_BREAK case 90: YY_RULE_SETUP { return T_LOGICAL_OR; } YY_BREAK case 91: YY_RULE_SETUP { return T_LOGICAL_AND; } YY_BREAK case 92: YY_RULE_SETUP { return T_LOGICAL_XOR; } YY_BREAK case 93: YY_RULE_SETUP { return T_SL; } YY_BREAK case 94: YY_RULE_SETUP { return T_SR; } YY_BREAK case 95: YY_RULE_SETUP { return yytext[0]; } YY_BREAK case 96: YY_RULE_SETUP { yy_push_state(ST_IN_SCRIPTING TSRMLS_CC); return '{'; } YY_BREAK case 97: YY_RULE_SETUP { yy_push_state(ST_LOOKING_FOR_VARNAME TSRMLS_CC); return T_DOLLAR_OPEN_CURLY_BRACES; } YY_BREAK case 98: YY_RULE_SETUP { RESET_DOC_COMMENT(); /* This is a temporary fix which is dependant on flex and it's implementation */ if (yy_start_stack_ptr) { yy_pop_state(TSRMLS_C); } return '}'; } YY_BREAK case 99: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; yy_pop_state(TSRMLS_C); yy_push_state(ST_IN_SCRIPTING TSRMLS_CC); return T_STRING_VARNAME; } YY_BREAK case 100: YY_RULE_SETUP { yyless(0); yy_pop_state(TSRMLS_C); yy_push_state(ST_IN_SCRIPTING TSRMLS_CC); } YY_BREAK case 101: YY_RULE_SETUP { errno = 0; zendlval->value.lval = strtol(yytext, NULL, 0); if (errno == ERANGE) { /* overflow */ zendlval->value.dval = zend_strtod(yytext, NULL); zendlval->type = IS_DOUBLE; return T_DNUMBER; } else { zendlval->type = IS_LONG; return T_LNUMBER; } } YY_BREAK case 102: YY_RULE_SETUP { errno = 0; zendlval->value.lval = strtoul(yytext, NULL, 16); if (errno == ERANGE) { /* overflow */ /* not trying strtod - it returns trash on 0x-es */ zendlval->value.lval = LONG_MAX; /* maximal long */ zend_error(E_NOTICE,"Hex number is too big: %s", yytext); } else { if (zendlval->value.lval < 0) { /* maintain consistency with the old way */ zendlval->value.dval = (unsigned long) zendlval->value.lval; zendlval->type = IS_DOUBLE; return T_DNUMBER; } zendlval->type = IS_LONG; } zendlval->type = IS_LONG; return T_LNUMBER; } YY_BREAK case 103: YY_RULE_SETUP { /* treat numbers (almost) as strings inside encapsulated strings */ zendlval->value.str.val = (char *)estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_NUM_STRING; } YY_BREAK case 104: YY_RULE_SETUP { zendlval->value.dval = zend_strtod(yytext, NULL); zendlval->type = IS_DOUBLE; return T_DNUMBER; } YY_BREAK case 105: YY_RULE_SETUP { char *class_name = NULL; if (CG(active_class_entry)) { class_name = CG(active_class_entry)->name; } if (!class_name) { class_name = ""; } zendlval->value.str.len = strlen(class_name); zendlval->value.str.val = estrndup(class_name, zendlval->value.str.len); zendlval->type = IS_STRING; return T_CLASS_C; } YY_BREAK case 106: YY_RULE_SETUP { char *func_name = NULL; if (CG(active_op_array)) { func_name = CG(active_op_array)->function_name; } if (!func_name) { func_name = ""; } zendlval->value.str.len = strlen(func_name); zendlval->value.str.val = estrndup(func_name, zendlval->value.str.len); zendlval->type = IS_STRING; return T_FUNC_C; } YY_BREAK case 107: YY_RULE_SETUP { char *class_name = CG(active_class_entry) ? CG(active_class_entry)->name : NULL; char *func_name = CG(active_op_array)? CG(active_op_array)->function_name : NULL; size_t len = 0; if (class_name) { len += strlen(class_name) + 2; } if (func_name) { len += strlen(func_name); } zendlval->value.str.val = emalloc(len+1); zendlval->value.str.len = sprintf(zendlval->value.str.val, "%s%s%s", class_name ? class_name : "", class_name && func_name ? "::" : "", func_name ? func_name : "" ); zendlval->value.str.len = strlen(zendlval->value.str.val); zendlval->type = IS_STRING; return T_METHOD_C; } YY_BREAK case 108: YY_RULE_SETUP { zendlval->value.lval = CG(zend_lineno); zendlval->type = IS_LONG; return T_LINE; } YY_BREAK case 109: YY_RULE_SETUP { char *filename = zend_get_compiled_filename(TSRMLS_C); if (!filename) { filename = ""; } zendlval->value.str.len = strlen(filename); zendlval->value.str.val = estrndup(filename, zendlval->value.str.len); zendlval->type = IS_STRING; return T_FILE; } YY_BREAK case 110: YY_RULE_SETUP { #ifdef ZEND_MULTIBYTE if (SCNG(output_filter)) { int readsize; readsize = SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), yytext, yyleng TSRMLS_CC); if (readsize < yyleng) { yyless(readsize); } } else { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; } #else /* !ZEND_MULTIBYTE */ zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; #endif /* ZEND_MULTIBYTE */ zendlval->type = IS_STRING; HANDLE_NEWLINES(yytext, yyleng); return T_INLINE_HTML; } YY_BREAK case 111: YY_RULE_SETUP { HANDLE_NEWLINES(yytext, yyleng); if (CG(short_tags) || yyleng>2) { /* yyleng>2 means it's not */ zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); return T_OPEN_TAG; } else { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_INLINE_HTML; } } YY_BREAK case 112: YY_RULE_SETUP { if ((yytext[1]=='%' && CG(asp_tags)) || (yytext[1]=='?' && CG(short_tags))) { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); return T_OPEN_TAG_WITH_ECHO; } else { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_INLINE_HTML; } } YY_BREAK case 113: YY_RULE_SETUP { if (CG(asp_tags)) { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); return T_OPEN_TAG; } else { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_INLINE_HTML; } } YY_BREAK case 114: YY_RULE_SETUP { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; HANDLE_NEWLINE(yytext[yyleng-1]); BEGIN(ST_IN_SCRIPTING); return T_OPEN_TAG; } YY_BREAK case 115: YY_RULE_SETUP { zend_copy_value(zendlval, (yytext+1), (yyleng-1)); zendlval->type = IS_STRING; return T_VARIABLE; } YY_BREAK case 116: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_STRING; } YY_BREAK case 117: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_STRING; } YY_BREAK case 118: YY_RULE_SETUP { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; HANDLE_NEWLINES(yytext, yyleng); return T_WHITESPACE; } YY_BREAK case 119: YY_RULE_SETUP { BEGIN(ST_ONE_LINE_COMMENT); yymore(); } YY_BREAK case 120: YY_RULE_SETUP { yymore(); } YY_BREAK case 121: YY_RULE_SETUP { yymore(); } YY_BREAK case 122: YY_RULE_SETUP { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(ST_IN_SCRIPTING); CG(zend_lineno)++; return T_COMMENT; } YY_BREAK case 123: YY_RULE_SETUP { if (CG(asp_tags) || yytext[yyleng-2] != '%') { /* asp comment? */ zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; yyless(yyleng-2); BEGIN(ST_IN_SCRIPTING); return T_COMMENT; } else { yymore(); } } YY_BREAK case 124: YY_RULE_SETUP { CG(comment_start_line) = CG(zend_lineno); RESET_DOC_COMMENT(); BEGIN(ST_DOC_COMMENT); yymore(); } YY_BREAK case 125: YY_RULE_SETUP { CG(comment_start_line) = CG(zend_lineno); BEGIN(ST_COMMENT); yymore(); } YY_BREAK case 126: YY_RULE_SETUP { yymore(); } YY_BREAK case 127: YY_RULE_SETUP { CG(doc_comment) = estrndup(yytext, yyleng); CG(doc_comment_len) = yyleng; HANDLE_NEWLINES(yytext, yyleng); BEGIN(ST_IN_SCRIPTING); return T_DOC_COMMENT; } YY_BREAK case 128: YY_RULE_SETUP { HANDLE_NEWLINES(yytext, yyleng); BEGIN(ST_IN_SCRIPTING); return T_COMMENT; } YY_BREAK case 129: YY_RULE_SETUP { yymore(); } YY_BREAK case 130: YY_RULE_SETUP { zendlval->value.str.val = yytext; /* no copying - intentional */ zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; BEGIN(INITIAL); return T_CLOSE_TAG; /* implicit ';' at php-end tag */ } YY_BREAK case 131: YY_RULE_SETUP { if (CG(asp_tags)) { BEGIN(INITIAL); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; zendlval->value.str.val = yytext; /* no copying - intentional */ return T_CLOSE_TAG; /* implicit ';' at php-end tag */ } else { yyless(1); return yytext[0]; } } YY_BREAK case 132: YY_RULE_SETUP { register char *s, *t; char *end; zendlval->value.str.val = estrndup(yytext+1, yyleng-2); zendlval->value.str.len = yyleng-2; zendlval->type = IS_STRING; HANDLE_NEWLINES(yytext, yyleng); /* convert escape sequences */ s = t = zendlval->value.str.val; end = s+zendlval->value.str.len; while (s=end) { continue; } switch(*s) { case 'n': *t++ = '\n'; zendlval->value.str.len--; break; case 'r': *t++ = '\r'; zendlval->value.str.len--; break; case 't': *t++ = '\t'; zendlval->value.str.len--; break; case '\\': case '$': case '"': *t++ = *s; zendlval->value.str.len--; break; default: /* check for an octal */ if (ZEND_IS_OCT(*s)) { char octal_buf[4] = { 0, 0, 0, 0 }; octal_buf[0] = *s; zendlval->value.str.len--; if ((s+1)value.str.len--; if ((s+1)value.str.len--; } } *t++ = (char) strtol(octal_buf, NULL, 8); } else if (*s=='x' && (s+1)value.str.len--; /* for the 'x' */ hex_buf[0] = *(++s); zendlval->value.str.len--; if ((s+1)value.str.len--; } *t++ = (char) strtol(hex_buf, NULL, 16); } else { *t++ = '\\'; *t++ = *s; } break; } s++; } else { *t++ = *s++; } } *t = 0; #ifdef ZEND_MULTIBYTE if (SCNG(output_filter)) { s = zendlval->value.str.val; SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), s, zendlval->value.str.len TSRMLS_CC); efree(s); } #endif /* ZEND_MULTIBYTE */ return T_CONSTANT_ENCAPSED_STRING; } YY_BREAK case 133: YY_RULE_SETUP { register char *s, *t; char *end; zendlval->value.str.val = estrndup(yytext+1, yyleng-2); zendlval->value.str.len = yyleng-2; zendlval->type = IS_STRING; HANDLE_NEWLINES(yytext, yyleng); /* convert escape sequences */ s = t = zendlval->value.str.val; end = s+zendlval->value.str.len; while (s=end) { continue; } switch(*s) { case '\\': case '\'': *t++ = *s; zendlval->value.str.len--; break; default: *t++ = '\\'; *t++ = *s; break; } s++; } else { *t++ = *s++; } } *t = 0; #ifdef ZEND_MULTIBYTE if (SCNG(output_filter)) { s = zendlval->value.str.val; SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), s, zendlval->value.str.len TSRMLS_CC); efree(s); } #endif /* ZEND_MULTIBYTE */ return T_CONSTANT_ENCAPSED_STRING; } YY_BREAK case 134: YY_RULE_SETUP { BEGIN(ST_DOUBLE_QUOTES); return '\"'; } YY_BREAK case 135: YY_RULE_SETUP { char *s; CG(zend_lineno)++; CG(heredoc_len) = yyleng-3-1-(yytext[yyleng-2]=='\r'?1:0); s = yytext+3; while ((*s == ' ') || (*s == '\t')) { s++; CG(heredoc_len)--; } CG(heredoc) = estrndup(s, CG(heredoc_len)); BEGIN(ST_HEREDOC); return T_START_HEREDOC; } YY_BREAK case 136: YY_RULE_SETUP { BEGIN(ST_BACKQUOTE); return '`'; } YY_BREAK case 137: YY_RULE_SETUP { BEGIN(ST_SINGLE_QUOTE); return '\''; } YY_BREAK case 138: YY_RULE_SETUP { int label_len; unsigned char unput_semicolon; CG(zend_lineno)++; if (yytext[yyleng-2]=='\r') { label_len = yyleng-2; } else { label_len = yyleng-1; } if (yytext[label_len-1]==';') { label_len--; unput_semicolon=1; } else{ unput_semicolon=0; } if (label_len==CG(heredoc_len) && !memcmp(yytext, CG(heredoc), label_len)) { zendlval->value.str.val = estrndup(yytext, label_len); /* unput destroys yytext */ zendlval->value.str.len = label_len; if (unput_semicolon) { unput(';'); } efree(CG(heredoc)); CG(heredoc)=NULL; CG(heredoc_len)=0; BEGIN(ST_IN_SCRIPTING); return T_END_HEREDOC; } else { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_STRING; } } YY_BREAK case 139: YY_RULE_SETUP { HANDLE_NEWLINES(yytext, yyleng); zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 140: YY_RULE_SETUP { HANDLE_NEWLINES(yytext, yyleng); zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 141: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 142: YY_RULE_SETUP { zend_copy_value(zendlval, yytext, yyleng); zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 143: YY_RULE_SETUP { zendlval->value.lval = (long) yytext[0]; if (yyleng == 2) { yyless(1); } return T_CHARACTER; } YY_BREAK case 144: YY_RULE_SETUP { zendlval->value.lval = (long) yytext[0]; return yytext[0]; } YY_BREAK case 145: YY_RULE_SETUP { zendlval->value.lval = (long) yytext[0]; yy_push_state(ST_IN_SCRIPTING TSRMLS_CC); yyless(1); return T_CURLY_OPEN; } YY_BREAK case 146: YY_RULE_SETUP { zendlval->value.lval = (long) '\''; return T_CHARACTER; } YY_BREAK case 147: YY_RULE_SETUP { zendlval->value.lval = (long)'\\'; return T_CHARACTER; } YY_BREAK case 148: YY_RULE_SETUP { zendlval->value.lval = (long) '"'; return T_CHARACTER; } YY_BREAK case 149: YY_RULE_SETUP { zendlval->value.lval = (long) '`'; return T_CHARACTER; } YY_BREAK case 150: YY_RULE_SETUP { zendlval->value.lval = strtol(yytext+1, NULL, 8); return T_CHARACTER; } YY_BREAK case 151: YY_RULE_SETUP { zendlval->value.lval = strtol (yytext+2, NULL, 16); return T_CHARACTER; } YY_BREAK case 152: YY_RULE_SETUP { switch (yytext[1]) { case 'n': zendlval->value.lval = (long) '\n'; break; case 't': zendlval->value.lval = (long) '\t'; break; case 'r': zendlval->value.lval = (long) '\r'; break; case '\\': zendlval->value.lval = (long) '\\'; break; case '$': zendlval->value.lval = (long) yytext[1]; break; case '{': zendlval->value.lval = (long) yytext[1]; break; default: zendlval->value.str.val = estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_BAD_CHARACTER; break; } return T_CHARACTER; } YY_BREAK case 153: YY_RULE_SETUP { zendlval->value.str.val = (char *) estrndup(yytext, yyleng); zendlval->value.str.len = yyleng; zendlval->type = IS_STRING; return T_ENCAPSED_AND_WHITESPACE; } YY_BREAK case 154: YY_RULE_SETUP { BEGIN(ST_IN_SCRIPTING); return '\"'; } YY_BREAK case 155: YY_RULE_SETUP { BEGIN(ST_IN_SCRIPTING); return '`'; } YY_BREAK case 156: YY_RULE_SETUP { BEGIN(ST_IN_SCRIPTING); return '\''; } YY_BREAK case YY_STATE_EOF(ST_DOUBLE_QUOTES): case YY_STATE_EOF(ST_BACKQUOTE): case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(ST_IN_SCRIPTING): case YY_STATE_EOF(ST_LOOKING_FOR_PROPERTY): { return 0; } YY_BREAK case YY_STATE_EOF(ST_COMMENT): case YY_STATE_EOF(ST_DOC_COMMENT): { zend_error(E_COMPILE_WARNING,"Unterminated comment starting line %d", CG(comment_start_line)); return 0; } YY_BREAK case 157: YY_RULE_SETUP { zend_error(E_COMPILE_WARNING,"Unexpected character in input: '%c' (ASCII=%d) state=%d", yytext[0], yytext[0], YYSTATE); } YY_BREAK case 158: YY_RULE_SETUP ECHO; YY_BREAK case YY_STATE_EOF(ST_SINGLE_QUOTE): case YY_STATE_EOF(ST_HEREDOC): case YY_STATE_EOF(ST_LOOKING_FOR_VARNAME): case YY_STATE_EOF(ST_ONE_LINE_COMMENT): 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; 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. */ SCNG(yy_n_chars) = yy_current_buffer->yy_n_chars; yy_current_buffer->yy_input_file = SCNG(yy_in); 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[SCNG(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(TSRMLS_C); /* 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 TSRMLS_CC ); 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(TSRMLS_C) ) { 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(TSRMLS_C); 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[SCNG(yy_n_chars)]; yy_current_state = yy_get_previous_state(TSRMLS_C); 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(TSRMLS_D) { 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[SCNG(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 = SCNG(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]), SCNG(yy_n_chars), num_to_read ); yy_current_buffer->yy_n_chars = SCNG(yy_n_chars); } if ( SCNG(yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( SCNG(yy_in) TSRMLS_CC ); } else { ret_val = EOB_ACT_LAST_MATCH; yy_current_buffer->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; SCNG(yy_n_chars) += number_to_move; yy_current_buffer->yy_ch_buf[SCNG(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; yy_current_buffer->yy_ch_buf[SCNG(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(TSRMLS_D) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = yy_start; yy_current_state += YY_AT_BOL(); for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1396 ) 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 TSRMLS_DC ) #else static yy_state_type yy_try_NUL_trans( yy_current_state TSRMLS_CC ) yy_state_type yy_current_state; #ifdef ZTS void ***tsrm_ls; #endif #endif { register int yy_is_jam; register char *yy_cp = yy_c_buf_p; register YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { yy_last_accepting_state = yy_current_state; yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 1396 ) 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 == 1395); 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 TSRMLS_DC ) #else static void yyunput( c, yy_bp TSRMLS_CC ) int c; register char *yy_bp; #ifdef ZTS void ***tsrm_ls; #endif #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 = SCNG(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 = SCNG(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(TSRMLS_D) #else static int input(TSRMLS_C) #ifdef ZTS void ***tsrm_ls; #endif #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[SCNG(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(TSRMLS_C) ) { 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( SCNG(yy_in) TSRMLS_CC ); /* 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(TSRMLS_C); #else return input(TSRMLS_C); #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; yy_current_buffer->yy_at_bol = (c == '\n'); return c; } #ifdef YY_USE_PROTOS void yyrestart( struct _zend_file_handle *input_file TSRMLS_DC ) #else void yyrestart( input_file TSRMLS_CC ) struct _zend_file_handle *input_file; #endif { if ( ! yy_current_buffer ) yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); yy_init_buffer( yy_current_buffer, input_file TSRMLS_CC ); yy_load_buffer_state(TSRMLS_C); } #ifdef YY_USE_PROTOS void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer TSRMLS_DC) #else void yy_switch_to_buffer( new_buffer TSRMLS_CC) YY_BUFFER_STATE new_buffer; #ifdef ZTS void ***tsrm_ls; #endif #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 = SCNG(yy_n_chars); } yy_current_buffer = new_buffer; yy_load_buffer_state(TSRMLS_C); /* 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( TSRMLS_D ) #else void yy_load_buffer_state(TSRMLS_C) #ifdef ZTS void ***tsrm_ls; #endif #endif { SCNG(yy_n_chars) = yy_current_buffer->yy_n_chars; yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; SCNG(yy_in) = yy_current_buffer->yy_input_file; yy_hold_char = *yy_c_buf_p; } #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_create_buffer( struct _zend_file_handle *file, int size TSRMLS_DC ) #else YY_BUFFER_STATE yy_create_buffer( file, size TSRMLS_CC ) struct _zend_file_handle *file; int size; #ifdef ZTS void ***tsrm_ls; #endif #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 TSRMLS_CC ); return b; } #ifdef YY_USE_PROTOS void yy_delete_buffer( YY_BUFFER_STATE b TSRMLS_DC ) #else void yy_delete_buffer( b TSRMLS_CC ) YY_BUFFER_STATE b; #ifdef ZTS void ***tsrm_ls; #endif #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 ); } #ifdef YY_USE_PROTOS void yy_init_buffer( YY_BUFFER_STATE b, struct _zend_file_handle *file TSRMLS_DC ) #else void yy_init_buffer( b, file TSRMLS_CC ) YY_BUFFER_STATE b; struct _zend_file_handle *file; #ifdef ZTS void ***tsrm_ls; #endif #endif { yy_flush_buffer( b TSRMLS_CC ); 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->handle.stream.interactive; #endif #endif } #ifdef YY_USE_PROTOS void yy_flush_buffer( YY_BUFFER_STATE b TSRMLS_DC ) #else void yy_flush_buffer( b TSRMLS_CC ) YY_BUFFER_STATE b; #ifdef ZTS void ***tsrm_ls; #endif #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(TSRMLS_C); } #ifndef YY_NO_SCAN_BUFFER #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size TSRMLS_DC ) #else YY_BUFFER_STATE yy_scan_buffer( base, size TSRMLS_CC ) char *base; yy_size_t size; #ifdef ZTS void ***tsrm_ls; #endif #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 TSRMLS_CC ); return b; } #endif #ifndef YY_NO_SCAN_STRING #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str TSRMLS_DC ) #else YY_BUFFER_STATE yy_scan_string( yy_str TSRMLS_CC ) yyconst char *yy_str; #ifdef ZTS void ***tsrm_ls; #endif #endif { int len; for ( len = 0; yy_str[len]; ++len ) ; return yy_scan_bytes( yy_str, len TSRMLS_CC ); } #endif #ifndef YY_NO_SCAN_BYTES #ifdef YY_USE_PROTOS YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len TSRMLS_DC ) #else YY_BUFFER_STATE yy_scan_bytes( bytes, len TSRMLS_CC ) yyconst char *bytes; int len; #ifdef ZTS void ***tsrm_ls; #endif #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 TSRMLS_CC); 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 TSRMLS_DC ) #else static void yy_push_state( new_state TSRMLS_CC ) int new_state; #ifdef ZTS void ***tsrm_ls; #endif #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(TSRMLS_D) { 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(TSRMLS_D) { 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