3246 lines
124 KiB
C
Executable File
3246 lines
124 KiB
C
Executable File
/* A lexical scanner generated by flex */
|
|
|
|
/* Scanner skeleton version:
|
|
* $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $
|
|
*/
|
|
|
|
#define FLEX_SCANNER
|
|
#define YY_FLEX_MAJOR_VERSION 2
|
|
#define YY_FLEX_MINOR_VERSION 5
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
|
|
/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
|
|
#ifdef c_plusplus
|
|
#ifndef __cplusplus
|
|
#define __cplusplus
|
|
#endif
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <stdlib.h>
|
|
|
|
/* 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 <io.h>
|
|
#include <stdlib.h>
|
|
#define YY_USE_CONST
|
|
#define YY_USE_PROTOS
|
|
#endif
|
|
|
|
#ifdef YY_USE_CONST
|
|
#define yyconst const
|
|
#else
|
|
#define yyconst
|
|
#endif
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
#define YY_PROTO(proto) proto
|
|
#else
|
|
#define YY_PROTO(proto) ()
|
|
#endif
|
|
|
|
/* Returned upon end-of-file. */
|
|
#define YY_NULL 0
|
|
|
|
/* Promotes a possibly negative, possibly signed char to an unsigned
|
|
* integer for use as an array index. If the signed char is negative,
|
|
* we want to instead treat it as an 8-bit unsigned char, hence the
|
|
* double cast.
|
|
*/
|
|
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
|
|
|
|
/* Enter a start condition. This macro really ought to take a parameter,
|
|
* but we do it the disgusting crufty way forced on us by the ()-less
|
|
* definition of BEGIN.
|
|
*/
|
|
#define BEGIN yy_start = 1 + 2 *
|
|
|
|
/* Translate the current start state into a value that can be later handed
|
|
* to BEGIN to return to the state. The YYSTATE alias is for lex
|
|
* compatibility.
|
|
*/
|
|
#define YY_START ((yy_start - 1) / 2)
|
|
#define YYSTATE YY_START
|
|
|
|
/* Action number for EOF rule of a given start state. */
|
|
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
|
|
|
|
/* Special action meaning "start processing a new file". */
|
|
#define YY_NEW_FILE yyrestart( yyin )
|
|
|
|
#define YY_END_OF_BUFFER_CHAR 0
|
|
|
|
/* Size of default input buffer. */
|
|
#define YY_BUF_SIZE 16384
|
|
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
|
|
|
extern int yyleng;
|
|
extern FILE *yyin, *yyout;
|
|
|
|
#define EOB_ACT_CONTINUE_SCAN 0
|
|
#define EOB_ACT_END_OF_FILE 1
|
|
#define EOB_ACT_LAST_MATCH 2
|
|
|
|
/* The funky do-while in the following #define is used to turn the definition
|
|
* int a single C statement (which needs a semi-colon terminator). This
|
|
* avoids problems with code like:
|
|
*
|
|
* if ( condition_holds )
|
|
* yyless( 5 );
|
|
* else
|
|
* do_something_else();
|
|
*
|
|
* Prior to using the do-while the compiler would get upset at the
|
|
* "else" because it interpreted the "if" statement as being all
|
|
* done when it reached the ';' after the yyless() call.
|
|
*/
|
|
|
|
/* Return all but the first 'n' matched characters back to the input stream. */
|
|
|
|
#define yyless(n) \
|
|
do \
|
|
{ \
|
|
/* Undo effects of setting up yytext. */ \
|
|
*yy_cp = yy_hold_char; \
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
|
yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
|
|
} \
|
|
while ( 0 )
|
|
|
|
#define unput(c) yyunput( c, yytext_ptr )
|
|
|
|
/* The following is because we cannot portably get our hands on size_t
|
|
* (without autoconf's help, which isn't available because we want
|
|
* flex-generated scanners to compile on their own).
|
|
*/
|
|
typedef unsigned int yy_size_t;
|
|
|
|
|
|
struct yy_buffer_state
|
|
{
|
|
FILE *yy_input_file;
|
|
|
|
char *yy_ch_buf; /* input buffer */
|
|
char *yy_buf_pos; /* current position in input buffer */
|
|
|
|
/* Size of input buffer in bytes, not including room for EOB
|
|
* characters.
|
|
*/
|
|
yy_size_t yy_buf_size;
|
|
|
|
/* Number of characters read into yy_ch_buf, not including EOB
|
|
* characters.
|
|
*/
|
|
int yy_n_chars;
|
|
|
|
/* Whether we "own" the buffer - i.e., we know we created it,
|
|
* and can realloc() it to grow it, and should free() it to
|
|
* delete it.
|
|
*/
|
|
int yy_is_our_buffer;
|
|
|
|
/* Whether this is an "interactive" input source; if so, and
|
|
* if we're using stdio for input, then we want to use getc()
|
|
* instead of fread(), to make sure we stop fetching input after
|
|
* each newline.
|
|
*/
|
|
int yy_is_interactive;
|
|
|
|
/* Whether we're considered to be at the beginning of a line.
|
|
* If so, '^' rules will be active on the next match, otherwise
|
|
* not.
|
|
*/
|
|
int yy_at_bol;
|
|
|
|
/* Whether to try to fill the input buffer when we reach the
|
|
* end of it.
|
|
*/
|
|
int yy_fill_buffer;
|
|
|
|
int yy_buffer_status;
|
|
#define YY_BUFFER_NEW 0
|
|
#define YY_BUFFER_NORMAL 1
|
|
/* When an EOF's been seen but there's still some text to process
|
|
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
|
|
* shouldn't try reading from the input source any more. We might
|
|
* still have a bunch of tokens to match, though, because of
|
|
* possible backing-up.
|
|
*
|
|
* When we actually see the EOF, we change the status to "new"
|
|
* (via yyrestart()), so that the user can continue scanning by
|
|
* just pointing yyin at a new input file.
|
|
*/
|
|
#define YY_BUFFER_EOF_PENDING 2
|
|
};
|
|
|
|
static YY_BUFFER_STATE yy_current_buffer = 0;
|
|
|
|
/* We provide macros for accessing buffer states in case in the
|
|
* future we want to put the buffer states in a more general
|
|
* "scanner state".
|
|
*/
|
|
#define YY_CURRENT_BUFFER yy_current_buffer
|
|
|
|
|
|
/* yy_hold_char holds the character lost when yytext is formed. */
|
|
static char yy_hold_char;
|
|
|
|
static int yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
|
|
|
|
int yyleng;
|
|
|
|
/* Points to current character in buffer. */
|
|
static char *yy_c_buf_p = (char *) 0;
|
|
static int yy_init = 1; /* whether we need to initialize */
|
|
static int yy_start = 0; /* start state number */
|
|
|
|
/* Flag which is used to allow yywrap()'s to do buffer switches
|
|
* instead of setting up a fresh yyin. A bit of a hack ...
|
|
*/
|
|
static int yy_did_buffer_switch_on_eof;
|
|
|
|
void yyrestart YY_PROTO(( FILE *input_file ));
|
|
|
|
void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
|
|
void yy_load_buffer_state YY_PROTO(( void ));
|
|
YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
|
|
void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
|
void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
|
|
void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
|
|
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
|
|
|
|
YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
|
|
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str ));
|
|
YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
|
|
|
|
static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
|
|
static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
|
|
static void yy_flex_free YY_PROTO(( void * ));
|
|
|
|
#define yy_new_buffer yy_create_buffer
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
{ \
|
|
if ( ! yy_current_buffer ) \
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
|
yy_current_buffer->yy_is_interactive = is_interactive; \
|
|
}
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
{ \
|
|
if ( ! yy_current_buffer ) \
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
|
yy_current_buffer->yy_at_bol = at_bol; \
|
|
}
|
|
|
|
#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
|
|
|
|
typedef unsigned char YY_CHAR;
|
|
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
|
|
typedef int yy_state_type;
|
|
extern char *yytext;
|
|
#define yytext_ptr yytext
|
|
|
|
static yy_state_type yy_get_previous_state YY_PROTO(( void ));
|
|
static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
|
|
static int yy_get_next_buffer YY_PROTO(( void ));
|
|
static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
* corresponding action - sets up yytext.
|
|
*/
|
|
#define YY_DO_BEFORE_ACTION \
|
|
yytext_ptr = yy_bp; \
|
|
yyleng = (int) (yy_cp - yy_bp); \
|
|
yy_hold_char = *yy_cp; \
|
|
*yy_cp = '\0'; \
|
|
yy_c_buf_p = yy_cp;
|
|
|
|
#define YY_NUM_RULES 54
|
|
#define YY_END_OF_BUFFER 55
|
|
static yyconst short int yy_accept[802] =
|
|
{ 0,
|
|
0, 0, 55, 53, 3, 2, 51, 51, 51, 52,
|
|
42, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 3, 51,
|
|
0, 1, 51, 43, 51, 42, 51, 51, 41, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 46, 51, 51, 51, 51, 43, 44,
|
|
51, 42, 51, 51, 51, 41, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 48, 51,
|
|
47, 51, 51, 51, 51, 43, 44, 51, 42, 51,
|
|
51, 51, 41, 51, 51, 41, 51, 51, 51, 51,
|
|
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 50, 51, 51,
|
|
51, 51, 51, 51, 51, 43, 44, 51, 42, 51,
|
|
51, 41, 51, 51, 41, 51, 51, 41, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 7, 51, 51, 51, 51, 51, 51, 6,
|
|
51, 51, 43, 44, 51, 42, 51, 41, 51, 51,
|
|
41, 51, 51, 41, 51, 51, 51, 51, 41, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 49, 5, 51,
|
|
51, 43, 44, 51, 42, 51, 51, 41, 51, 51,
|
|
41, 41, 51, 51, 51, 51, 41, 51, 51, 41,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 8, 51, 51, 51, 51,
|
|
43, 44, 51, 42, 51, 51, 51, 41, 41, 51,
|
|
51, 51, 51, 41, 41, 51, 51, 41, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 45, 51, 51, 51,
|
|
43, 44, 51, 42, 51, 51, 51, 41, 51, 51,
|
|
41, 41, 51, 51, 51, 41, 41, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
22, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 4, 51, 51, 43, 44, 51, 42, 51, 51,
|
|
41, 51, 51, 41, 51, 51, 41, 51, 41, 51,
|
|
51, 51, 41, 51, 51, 51, 51, 51, 51, 51,
|
|
|
|
51, 51, 51, 15, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 43,
|
|
44, 51, 42, 51, 41, 51, 51, 41, 51, 51,
|
|
41, 51, 51, 51, 51, 41, 51, 51, 41, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 30, 51, 51, 43, 44, 51, 42, 51,
|
|
51, 41, 51, 51, 41, 41, 51, 51, 51, 51,
|
|
|
|
41, 51, 51, 41, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 37, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 43, 44, 51, 42, 51, 51, 51, 41,
|
|
41, 51, 51, 51, 51, 41, 41, 51, 51, 41,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
23, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 26, 10, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
|
|
43, 44, 51, 42, 51, 51, 51, 41, 51, 51,
|
|
41, 41, 51, 51, 51, 41, 41, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
18, 51, 51, 51, 51, 28, 13, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 43, 44, 51,
|
|
42, 51, 51, 41, 51, 51, 41, 51, 51, 41,
|
|
51, 41, 51, 51, 51, 41, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 41, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 17, 51,
|
|
|
|
51, 51, 51, 51, 51, 51, 9, 51, 51, 51,
|
|
43, 44, 0, 42, 0, 41, 0, 0, 41, 0,
|
|
0, 41, 0, 0, 0, 0, 41, 0, 0, 41,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 41,
|
|
0, 41, 0, 0, 0, 27, 29, 0, 0, 0,
|
|
38, 0, 16, 35, 0, 0, 24, 0, 0, 0,
|
|
0, 0, 0, 41, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 31, 33, 0, 11, 0, 12, 41,
|
|
0, 19, 0, 0, 14, 0, 36, 34, 21, 0,
|
|
39, 0, 0, 0, 0, 32, 0, 20, 40, 25,
|
|
|
|
0
|
|
} ;
|
|
|
|
static yyconst int yy_ec[256] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 2, 4, 1, 5, 4, 4, 4, 1, 4,
|
|
4, 4, 4, 4, 6, 7, 8, 9, 9, 9,
|
|
9, 10, 9, 11, 9, 9, 9, 12, 13, 4,
|
|
4, 4, 4, 4, 14, 15, 16, 17, 18, 19,
|
|
4, 20, 21, 4, 4, 22, 23, 24, 25, 26,
|
|
4, 27, 28, 29, 30, 31, 4, 4, 4, 4,
|
|
4, 4, 4, 4, 4, 4, 32, 33, 34, 35,
|
|
|
|
36, 37, 38, 39, 40, 4, 41, 42, 43, 44,
|
|
45, 46, 4, 47, 48, 49, 50, 51, 52, 53,
|
|
54, 4, 55, 1, 56, 4, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1
|
|
} ;
|
|
|
|
static yyconst int yy_meta[57] =
|
|
{ 0,
|
|
1, 1, 1, 2, 2, 2, 2, 1, 3, 3,
|
|
3, 4, 1, 3, 3, 3, 3, 3, 3, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 3, 3, 3, 3, 3, 3, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 1, 1
|
|
} ;
|
|
|
|
static yyconst short int yy_base[860] =
|
|
{ 0,
|
|
0, 0, 1546, 5225, 1543, 5225, 0, 56, 51, 5225,
|
|
106, 1532, 56, 61, 66, 1498, 1504, 42, 1518, 1480,
|
|
77, 1483, 1478, 1476, 1484, 41, 1472, 1473, 1515, 0,
|
|
1513, 5225, 93, 70, 88, 143, 172, 93, 0, 119,
|
|
98, 1472, 1470, 1460, 1462, 1481, 1455, 1454, 1455, 95,
|
|
1440, 1456, 1453, 0, 1453, 1438, 0, 209, 124, 154,
|
|
157, 259, 288, 162, 317, 346, 370, 1451, 1450, 1440,
|
|
1457, 110, 1449, 1442, 1430, 1426, 1424, 1427, 0, 1422,
|
|
0, 1424, 1411, 0, 224, 183, 186, 189, 209, 393,
|
|
1447, 422, 451, 480, 509, 538, 1408, 1407, 1420, 1410,
|
|
|
|
1404, 1407, 169, 87, 1390, 198, 47, 1404, 1424, 1420,
|
|
1386, 1383, 1395, 1381, 1401, 1396, 1383, 0, 1382, 1372,
|
|
1368, 1368, 1371, 0, 227, 235, 238, 241, 246, 567,
|
|
596, 625, 654, 683, 712, 741, 770, 799, 0, 1357,
|
|
1358, 1367, 1360, 1353, 1357, 1356, 1366, 1376, 1358, 1354,
|
|
1365, 153, 1329, 1334, 1327, 1334, 1326, 1336, 1337, 1325,
|
|
1329, 1323, 0, 1321, 1319, 1321, 1323, 1307, 1296, 0,
|
|
0, 259, 275, 278, 299, 330, 828, 857, 886, 915,
|
|
944, 973, 1002, 1031, 0, 1336, 1060, 1089, 1118, 1302,
|
|
1326, 1313, 1308, 1307, 1301, 1309, 1313, 1299, 1296, 1284,
|
|
|
|
1292, 1285, 1271, 1268, 1281, 1268, 1274, 1268, 1276, 1290,
|
|
1296, 1271, 1288, 1243, 1243, 1241, 1257, 0, 0, 0,
|
|
1155, 302, 307, 333, 359, 1203, 1232, 1261, 1290, 1319,
|
|
1348, 1377, 0, 1276, 1406, 1435, 1464, 1493, 1522, 1275,
|
|
1242, 1240, 1234, 1269, 1235, 1258, 1236, 1214, 1218, 1214,
|
|
1224, 1231, 1219, 1225, 1220, 1241, 1220, 1218, 1242, 1201,
|
|
1197, 1198, 1178, 1196, 1205, 0, 1175, 1194, 0, 1168,
|
|
336, 362, 365, 406, 1551, 1580, 1609, 1638, 1667, 0,
|
|
1213, 1696, 1725, 1754, 1783, 1812, 1841, 1204, 1197, 1870,
|
|
1899, 1163, 1161, 1164, 1167, 1153, 1174, 1166, 1154, 1159,
|
|
|
|
1183, 1151, 216, 1165, 1152, 396, 1160, 1158, 1171, 1171,
|
|
1142, 1167, 1138, 1173, 1136, 1142, 0, 1149, 0, 1171,
|
|
410, 435, 438, 464, 1171, 1928, 1957, 1986, 2015, 2044,
|
|
2073, 2102, 0, 2131, 2160, 2189, 1170, 1168, 2218, 2247,
|
|
2276, 2305, 1135, 1155, 1126, 1131, 1134, 1135, 1129, 1134,
|
|
0, 1116, 1113, 1119, 1103, 1101, 1114, 1098, 1105, 1097,
|
|
1129, 1091, 1119, 1100, 1095, 88, 1098, 1110, 1094, 1099,
|
|
1077, 0, 0, 2342, 441, 467, 470, 493, 2390, 2419,
|
|
2448, 2477, 2506, 2535, 2564, 2593, 2622, 0, 1106, 1105,
|
|
2651, 2680, 2709, 2738, 2767, 1104, 2796, 2825, 1070, 1074,
|
|
|
|
125, 1069, 1070, 0, 1092, 1060, 1065, 1066, 1064, 1055,
|
|
1054, 1047, 1059, 1050, 1050, 1050, 1048, 1061, 1045, 1032,
|
|
1040, 1026, 1024, 1018, 1012, 1016, 1005, 0, 2355, 496,
|
|
499, 520, 525, 2854, 2883, 2912, 2941, 2970, 2999, 3028,
|
|
3057, 0, 1046, 3086, 3115, 3144, 3173, 3202, 1045, 1044,
|
|
3231, 3260, 3289, 3318, 1005, 1011, 1013, 1005, 1002, 1019,
|
|
1001, 987, 995, 996, 994, 985, 991, 991, 986, 989,
|
|
987, 988, 975, 1001, 968, 967, 965, 965, 952, 950,
|
|
946, 948, 0, 0, 2358, 528, 549, 552, 557, 3347,
|
|
3376, 3405, 3434, 3463, 3492, 3521, 0, 984, 3550, 3579,
|
|
|
|
3608, 3637, 3666, 983, 982, 3695, 3724, 3753, 3782, 981,
|
|
3811, 3840, 938, 945, 938, 938, 212, 927, 940, 925,
|
|
930, 947, 919, 0, 931, 937, 922, 915, 921, 899,
|
|
896, 909, 894, 895, 905, 903, 899, 902, 901, 900,
|
|
0, 3877, 578, 581, 584, 609, 3925, 3954, 3983, 4012,
|
|
4041, 0, 923, 4070, 4099, 4128, 4157, 4186, 4215, 916,
|
|
905, 4244, 4273, 4302, 4331, 904, 4360, 4389, 4418, 4447,
|
|
0, 866, 878, 876, 870, 867, 861, 871, 863, 869,
|
|
866, 859, 851, 848, 851, 846, 838, 0, 0, 849,
|
|
843, 845, 832, 844, 835, 831, 841, 823, 0, 3890,
|
|
|
|
587, 612, 615, 638, 857, 4476, 4505, 4534, 4563, 4592,
|
|
4621, 4650, 0, 4679, 4708, 4737, 847, 846, 4766, 4795,
|
|
4824, 4853, 845, 4882, 4911, 4940, 4969, 844, 4998, 5027,
|
|
0, 806, 818, 821, 815, 0, 0, 804, 831, 812,
|
|
805, 805, 787, 782, 785, 791, 779, 782, 792, 783,
|
|
775, 783, 769, 775, 761, 5225, 808, 641, 644, 665,
|
|
670, 789, 788, 0, 787, 786, 785, 784, 783, 782,
|
|
0, 781, 780, 779, 778, 771, 760, 759, 758, 757,
|
|
756, 755, 754, 753, 752, 751, 750, 749, 714, 706,
|
|
705, 697, 692, 698, 703, 702, 693, 700, 5225, 699,
|
|
|
|
690, 697, 696, 691, 671, 674, 5225, 664, 668, 653,
|
|
673, 694, 697, 702, 666, 0, 655, 654, 644, 634,
|
|
626, 625, 0, 615, 605, 597, 568, 557, 553, 539,
|
|
528, 521, 510, 509, 499, 489, 481, 480, 470, 460,
|
|
452, 451, 441, 399, 399, 5225, 5225, 405, 391, 365,
|
|
5225, 372, 5225, 5225, 366, 351, 5225, 358, 353, 344,
|
|
343, 363, 325, 347, 346, 312, 294, 288, 281, 261,
|
|
254, 245, 215, 5225, 5225, 225, 5225, 210, 5225, 242,
|
|
227, 5225, 202, 192, 5225, 180, 5225, 5225, 5225, 177,
|
|
5225, 191, 138, 118, 109, 5225, 78, 5225, 5225, 5225,
|
|
|
|
5225, 5063, 5067, 5070, 5074, 5078, 5081, 5085, 5088, 5092,
|
|
5095, 5099, 5102, 5106, 5109, 5113, 5116, 5120, 5123, 5127,
|
|
5130, 5134, 5137, 5141, 5144, 5148, 5151, 5155, 5158, 5162,
|
|
5166, 5168, 5170, 86, 5172, 5174, 5176, 5178, 5180, 5182,
|
|
5184, 5186, 5188, 5190, 5192, 5194, 5196, 5198, 5200, 5202,
|
|
5204, 5206, 5208, 5210, 5212, 5214, 5216, 5218, 5220
|
|
} ;
|
|
|
|
static yyconst short int yy_def[860] =
|
|
{ 0,
|
|
801, 1, 801, 801, 801, 801, 802, 803, 802, 801,
|
|
802, 802, 11, 11, 11, 802, 802, 802, 802, 802,
|
|
11, 802, 802, 802, 802, 802, 802, 802, 801, 804,
|
|
805, 801, 806, 804, 804, 804, 804, 36, 804, 36,
|
|
36, 804, 804, 804, 804, 804, 804, 804, 804, 804,
|
|
804, 804, 804, 804, 804, 804, 807, 808, 807, 807,
|
|
807, 807, 807, 62, 807, 807, 807, 807, 807, 807,
|
|
807, 807, 807, 807, 807, 807, 807, 807, 807, 807,
|
|
807, 807, 807, 809, 810, 809, 809, 809, 809, 809,
|
|
809, 809, 809, 92, 90, 90, 809, 809, 809, 809,
|
|
|
|
809, 809, 809, 809, 809, 809, 809, 809, 809, 809,
|
|
809, 809, 809, 809, 809, 809, 809, 809, 809, 809,
|
|
809, 809, 809, 811, 812, 811, 811, 811, 811, 811,
|
|
811, 811, 131, 130, 130, 131, 131, 135, 132, 811,
|
|
811, 811, 811, 811, 811, 811, 811, 811, 811, 811,
|
|
811, 811, 811, 811, 811, 811, 811, 811, 811, 811,
|
|
811, 811, 811, 811, 811, 811, 811, 811, 811, 811,
|
|
813, 814, 813, 813, 813, 813, 813, 813, 177, 177,
|
|
177, 177, 177, 181, 178, 813, 183, 180, 181, 813,
|
|
813, 813, 813, 813, 813, 813, 813, 813, 813, 813,
|
|
|
|
813, 813, 813, 813, 813, 813, 813, 813, 813, 813,
|
|
813, 813, 813, 813, 813, 813, 813, 813, 813, 815,
|
|
816, 815, 815, 815, 815, 815, 815, 815, 226, 226,
|
|
815, 228, 231, 815, 230, 227, 228, 230, 230, 815,
|
|
815, 815, 815, 815, 815, 815, 815, 815, 815, 815,
|
|
815, 815, 815, 815, 815, 815, 815, 815, 815, 815,
|
|
815, 815, 815, 815, 815, 815, 815, 815, 817, 818,
|
|
817, 817, 817, 817, 817, 817, 817, 817, 817, 278,
|
|
817, 277, 276, 279, 279, 277, 277, 817, 817, 287,
|
|
276, 817, 817, 817, 817, 817, 817, 817, 817, 817,
|
|
|
|
817, 817, 817, 817, 817, 817, 817, 817, 817, 817,
|
|
817, 817, 817, 817, 817, 817, 817, 817, 819, 820,
|
|
819, 819, 819, 819, 819, 819, 819, 819, 327, 326,
|
|
326, 331, 328, 327, 327, 331, 819, 819, 335, 326,
|
|
335, 335, 819, 819, 819, 819, 819, 819, 819, 819,
|
|
819, 819, 819, 819, 819, 819, 819, 819, 819, 819,
|
|
819, 819, 819, 819, 819, 819, 819, 819, 819, 819,
|
|
819, 819, 821, 822, 821, 821, 821, 821, 821, 821,
|
|
821, 380, 379, 379, 380, 380, 384, 381, 821, 821,
|
|
386, 379, 384, 386, 386, 821, 395, 379, 821, 821,
|
|
|
|
821, 821, 821, 821, 821, 821, 821, 821, 821, 821,
|
|
821, 821, 821, 821, 821, 821, 821, 821, 821, 821,
|
|
821, 821, 821, 821, 821, 821, 821, 823, 824, 823,
|
|
823, 823, 823, 823, 823, 434, 434, 434, 434, 434,
|
|
438, 435, 823, 440, 437, 438, 440, 440, 823, 823,
|
|
448, 437, 448, 448, 823, 823, 823, 823, 823, 823,
|
|
823, 823, 823, 823, 823, 823, 823, 823, 823, 823,
|
|
823, 823, 823, 823, 823, 823, 823, 823, 823, 823,
|
|
823, 823, 823, 825, 826, 825, 825, 825, 825, 825,
|
|
825, 825, 490, 490, 825, 492, 495, 825, 494, 491,
|
|
|
|
492, 494, 494, 825, 825, 503, 491, 503, 503, 825,
|
|
509, 491, 825, 825, 825, 825, 825, 825, 825, 825,
|
|
825, 825, 825, 825, 825, 825, 825, 825, 825, 825,
|
|
825, 825, 825, 825, 825, 825, 825, 825, 825, 825,
|
|
827, 828, 827, 827, 827, 827, 827, 827, 827, 827,
|
|
827, 550, 827, 549, 548, 551, 551, 549, 549, 827,
|
|
827, 559, 548, 559, 559, 827, 565, 548, 565, 565,
|
|
827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
|
|
827, 827, 827, 827, 827, 827, 827, 827, 827, 827,
|
|
827, 827, 827, 827, 827, 827, 827, 827, 829, 830,
|
|
|
|
829, 829, 829, 829, 829, 829, 829, 829, 607, 606,
|
|
606, 611, 608, 607, 607, 611, 829, 829, 615, 606,
|
|
615, 615, 829, 622, 606, 622, 622, 829, 627, 606,
|
|
829, 829, 829, 829, 829, 829, 829, 829, 829, 829,
|
|
829, 829, 829, 829, 829, 829, 829, 829, 829, 829,
|
|
829, 829, 829, 829, 829, 801, 831, 801, 801, 801,
|
|
801, 832, 833, 834, 835, 836, 837, 838, 839, 840,
|
|
834, 801, 801, 841, 842, 843, 844, 845, 801, 846,
|
|
847, 848, 849, 801, 850, 851, 852, 853, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 833, 834, 835, 836, 837, 838,
|
|
839, 840, 834, 801, 841, 842, 843, 844, 845, 801,
|
|
801, 846, 847, 848, 849, 801, 850, 851, 852, 853,
|
|
801, 854, 855, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 856, 857, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
858, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 859, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
0, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801
|
|
} ;
|
|
|
|
static yyconst short int yy_nxt[5282] =
|
|
{ 0,
|
|
4, 5, 6, 7, 8, 9, 7, 10, 11, 11,
|
|
11, 12, 10, 13, 14, 15, 15, 15, 15, 16,
|
|
17, 7, 18, 7, 7, 7, 19, 7, 7, 20,
|
|
7, 15, 15, 21, 15, 15, 15, 7, 22, 23,
|
|
7, 24, 25, 7, 26, 27, 28, 7, 7, 7,
|
|
7, 7, 7, 7, 10, 10, 31, 31, 32, 34,
|
|
34, 34, 30, 31, 38, 38, 38, 30, 31, 38,
|
|
38, 38, 30, 44, 38, 38, 38, 53, 59, 59,
|
|
59, 45, 154, 30, 54, 38, 38, 38, 719, 743,
|
|
40, 155, 41, 31, 31, 32, 60, 60, 60, 57,
|
|
|
|
31, 64, 64, 64, 57, 31, 64, 64, 64, 421,
|
|
31, 31, 35, 422, 36, 36, 36, 37, 48, 38,
|
|
38, 38, 38, 38, 38, 57, 113, 64, 64, 64,
|
|
148, 77, 86, 86, 86, 149, 114, 38, 38, 38,
|
|
38, 38, 38, 78, 800, 68, 457, 31, 31, 61,
|
|
458, 62, 62, 62, 63, 799, 64, 64, 64, 64,
|
|
64, 64, 87, 87, 87, 87, 87, 87, 84, 67,
|
|
91, 91, 91, 798, 64, 64, 64, 64, 64, 64,
|
|
65, 65, 65, 66, 202, 65, 65, 65, 65, 65,
|
|
65, 126, 126, 126, 127, 127, 127, 127, 127, 127,
|
|
|
|
146, 203, 743, 65, 65, 65, 65, 65, 65, 31,
|
|
31, 32, 796, 147, 151, 128, 31, 129, 129, 129,
|
|
130, 31, 795, 794, 31, 31, 32, 31, 31, 32,
|
|
575, 31, 576, 152, 31, 793, 31, 354, 743, 31,
|
|
355, 356, 153, 173, 173, 173, 174, 174, 174, 174,
|
|
174, 174, 175, 743, 176, 176, 176, 791, 790, 31,
|
|
31, 32, 789, 31, 31, 88, 31, 89, 89, 89,
|
|
90, 31, 91, 91, 91, 91, 91, 91, 31, 31,
|
|
788, 31, 31, 222, 222, 222, 223, 223, 223, 787,
|
|
91, 91, 91, 91, 91, 91, 92, 92, 92, 93,
|
|
|
|
786, 92, 92, 92, 92, 92, 92, 223, 223, 223,
|
|
271, 271, 271, 31, 31, 272, 272, 272, 785, 92,
|
|
92, 92, 92, 92, 92, 94, 94, 94, 95, 784,
|
|
94, 94, 94, 94, 94, 94, 224, 783, 225, 225,
|
|
225, 272, 272, 272, 321, 321, 321, 782, 94, 94,
|
|
94, 94, 94, 94, 96, 96, 96, 743, 743, 96,
|
|
96, 96, 96, 96, 96, 273, 779, 274, 274, 274,
|
|
322, 322, 322, 322, 322, 322, 778, 96, 96, 96,
|
|
96, 96, 96, 97, 777, 98, 99, 776, 775, 100,
|
|
101, 102, 103, 774, 104, 105, 106, 107, 773, 772,
|
|
|
|
108, 131, 131, 131, 132, 771, 131, 131, 131, 131,
|
|
131, 131, 323, 770, 324, 324, 324, 359, 375, 375,
|
|
375, 360, 769, 768, 131, 131, 131, 131, 131, 131,
|
|
133, 133, 133, 134, 767, 133, 133, 133, 133, 133,
|
|
133, 766, 361, 376, 376, 376, 376, 376, 376, 430,
|
|
430, 430, 716, 133, 133, 133, 133, 133, 133, 135,
|
|
135, 135, 743, 738, 135, 135, 135, 135, 135, 135,
|
|
377, 743, 378, 378, 378, 431, 431, 431, 431, 431,
|
|
431, 738, 135, 135, 135, 135, 135, 135, 136, 136,
|
|
136, 716, 738, 136, 136, 136, 136, 136, 136, 432,
|
|
|
|
733, 433, 433, 433, 486, 486, 486, 487, 487, 487,
|
|
738, 136, 136, 136, 136, 136, 136, 137, 137, 137,
|
|
733, 716, 137, 137, 137, 137, 137, 137, 487, 487,
|
|
487, 488, 733, 489, 489, 489, 543, 543, 543, 726,
|
|
137, 137, 137, 137, 137, 137, 138, 138, 138, 139,
|
|
723, 138, 138, 138, 138, 138, 138, 544, 544, 544,
|
|
544, 544, 544, 545, 733, 546, 546, 546, 726, 138,
|
|
138, 138, 138, 138, 138, 177, 177, 177, 178, 723,
|
|
177, 177, 177, 177, 177, 177, 601, 601, 601, 602,
|
|
602, 602, 602, 602, 602, 658, 658, 658, 177, 177,
|
|
|
|
177, 177, 177, 177, 179, 179, 179, 180, 716, 179,
|
|
179, 179, 179, 179, 179, 603, 726, 604, 604, 604,
|
|
659, 659, 659, 659, 659, 659, 718, 179, 179, 179,
|
|
179, 179, 179, 181, 181, 181, 723, 726, 181, 181,
|
|
181, 181, 181, 181, 660, 718, 661, 661, 661, 711,
|
|
711, 711, 712, 712, 712, 723, 181, 181, 181, 181,
|
|
181, 181, 182, 182, 182, 716, 718, 182, 182, 182,
|
|
182, 182, 182, 712, 712, 712, 713, 718, 714, 714,
|
|
714, 711, 711, 711, 763, 182, 182, 182, 182, 182,
|
|
182, 183, 183, 183, 762, 761, 183, 183, 183, 183,
|
|
|
|
183, 183, 712, 712, 712, 712, 712, 712, 713, 760,
|
|
714, 714, 714, 759, 183, 183, 183, 183, 183, 183,
|
|
184, 184, 184, 185, 758, 184, 184, 184, 184, 184,
|
|
184, 757, 756, 755, 754, 753, 752, 751, 750, 749,
|
|
748, 747, 746, 184, 184, 184, 184, 184, 184, 186,
|
|
186, 186, 745, 744, 186, 186, 186, 186, 186, 186,
|
|
743, 738, 716, 738, 733, 738, 733, 716, 733, 726,
|
|
733, 726, 186, 186, 186, 186, 186, 186, 187, 187,
|
|
187, 188, 723, 187, 187, 187, 187, 187, 187, 716,
|
|
726, 718, 723, 723, 726, 718, 723, 716, 718, 718,
|
|
|
|
716, 187, 187, 187, 187, 187, 187, 189, 189, 189,
|
|
32, 710, 189, 189, 189, 189, 189, 189, 709, 708,
|
|
707, 706, 705, 704, 703, 702, 701, 700, 699, 698,
|
|
189, 189, 189, 189, 189, 189, 226, 226, 226, 227,
|
|
697, 226, 226, 226, 226, 226, 226, 696, 695, 694,
|
|
693, 692, 691, 690, 689, 681, 675, 666, 671, 226,
|
|
226, 226, 226, 226, 226, 228, 228, 228, 662, 655,
|
|
228, 228, 228, 228, 228, 228, 654, 653, 652, 651,
|
|
650, 649, 648, 647, 646, 645, 644, 643, 228, 228,
|
|
228, 228, 228, 228, 229, 229, 229, 642, 641, 229,
|
|
|
|
229, 229, 229, 229, 229, 640, 639, 638, 637, 636,
|
|
635, 634, 633, 632, 631, 620, 610, 229, 229, 229,
|
|
229, 229, 229, 230, 230, 230, 231, 613, 230, 230,
|
|
230, 230, 230, 230, 606, 598, 597, 596, 595, 594,
|
|
593, 592, 591, 590, 589, 588, 230, 230, 230, 230,
|
|
230, 230, 232, 232, 232, 233, 587, 232, 232, 232,
|
|
232, 232, 232, 586, 585, 584, 583, 582, 581, 580,
|
|
579, 578, 577, 574, 573, 232, 232, 232, 232, 232,
|
|
232, 234, 234, 234, 572, 571, 234, 234, 234, 234,
|
|
234, 234, 563, 555, 552, 548, 540, 539, 538, 537,
|
|
|
|
536, 535, 534, 533, 234, 234, 234, 234, 234, 234,
|
|
235, 235, 235, 236, 532, 235, 235, 235, 235, 235,
|
|
235, 531, 530, 529, 528, 527, 526, 525, 524, 523,
|
|
522, 521, 520, 235, 235, 235, 235, 235, 235, 237,
|
|
237, 237, 519, 518, 237, 237, 237, 237, 237, 237,
|
|
517, 516, 515, 514, 513, 500, 497, 491, 483, 482,
|
|
481, 480, 237, 237, 237, 237, 237, 237, 238, 238,
|
|
238, 479, 478, 238, 238, 238, 238, 238, 238, 477,
|
|
476, 475, 474, 473, 472, 471, 470, 469, 468, 467,
|
|
466, 238, 238, 238, 238, 238, 238, 239, 239, 239,
|
|
|
|
465, 464, 239, 239, 239, 239, 239, 239, 463, 462,
|
|
461, 460, 459, 456, 455, 445, 437, 442, 427, 426,
|
|
239, 239, 239, 239, 239, 239, 240, 240, 240, 425,
|
|
424, 240, 240, 240, 240, 240, 240, 423, 420, 419,
|
|
418, 417, 416, 415, 414, 413, 412, 411, 410, 240,
|
|
240, 240, 240, 240, 240, 31, 31, 32, 409, 408,
|
|
407, 406, 31, 405, 404, 403, 402, 31, 31, 31,
|
|
32, 31, 31, 32, 401, 31, 400, 399, 31, 383,
|
|
31, 388, 379, 31, 372, 371, 370, 369, 368, 367,
|
|
366, 365, 364, 363, 362, 358, 357, 353, 352, 351,
|
|
|
|
350, 349, 348, 347, 346, 345, 344, 343, 330, 31,
|
|
31, 275, 275, 275, 276, 333, 275, 275, 275, 275,
|
|
275, 275, 31, 31, 326, 31, 31, 318, 317, 316,
|
|
315, 314, 313, 312, 275, 275, 275, 275, 275, 275,
|
|
277, 277, 277, 278, 311, 277, 277, 277, 277, 277,
|
|
277, 310, 309, 308, 307, 306, 305, 304, 303, 302,
|
|
301, 300, 299, 277, 277, 277, 277, 277, 277, 279,
|
|
279, 279, 280, 298, 279, 279, 279, 279, 279, 279,
|
|
297, 296, 295, 294, 293, 292, 280, 276, 268, 267,
|
|
266, 265, 279, 279, 279, 279, 279, 279, 281, 281,
|
|
|
|
281, 264, 263, 281, 281, 281, 281, 281, 281, 262,
|
|
261, 260, 259, 258, 257, 256, 255, 254, 253, 252,
|
|
251, 281, 281, 281, 281, 281, 281, 282, 282, 282,
|
|
283, 250, 282, 282, 282, 282, 282, 282, 249, 248,
|
|
247, 246, 245, 244, 243, 242, 241, 227, 219, 218,
|
|
282, 282, 282, 282, 282, 282, 284, 284, 284, 217,
|
|
216, 284, 284, 284, 284, 284, 284, 215, 214, 213,
|
|
212, 211, 210, 209, 208, 207, 206, 205, 204, 284,
|
|
284, 284, 284, 284, 284, 285, 285, 285, 201, 200,
|
|
285, 285, 285, 285, 285, 285, 199, 198, 197, 196,
|
|
|
|
195, 194, 193, 192, 191, 190, 170, 169, 285, 285,
|
|
285, 285, 285, 285, 286, 286, 286, 168, 167, 286,
|
|
286, 286, 286, 286, 286, 166, 165, 164, 163, 162,
|
|
161, 160, 159, 158, 157, 156, 150, 286, 286, 286,
|
|
286, 286, 286, 287, 287, 287, 145, 144, 287, 287,
|
|
287, 287, 287, 287, 143, 142, 141, 140, 130, 123,
|
|
122, 121, 120, 119, 118, 117, 287, 287, 287, 287,
|
|
287, 287, 288, 288, 288, 116, 115, 288, 288, 288,
|
|
288, 288, 288, 112, 111, 110, 109, 83, 82, 81,
|
|
80, 79, 76, 75, 74, 288, 288, 288, 288, 288,
|
|
|
|
288, 289, 289, 289, 73, 72, 289, 289, 289, 289,
|
|
289, 289, 71, 70, 69, 32, 29, 56, 55, 52,
|
|
51, 50, 49, 47, 289, 289, 289, 289, 289, 289,
|
|
290, 290, 290, 291, 46, 290, 290, 290, 290, 290,
|
|
290, 43, 42, 39, 29, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 290, 290, 290, 290, 290, 290, 325,
|
|
325, 325, 326, 801, 325, 325, 325, 325, 325, 325,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 325, 325, 325, 325, 325, 325, 327, 327,
|
|
327, 328, 801, 327, 327, 327, 327, 327, 327, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 327, 327, 327, 327, 327, 327, 329, 329, 329,
|
|
330, 801, 329, 329, 329, 329, 329, 329, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
329, 329, 329, 329, 329, 329, 331, 331, 331, 801,
|
|
801, 331, 331, 331, 331, 331, 331, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 331,
|
|
331, 331, 331, 331, 331, 332, 332, 332, 333, 801,
|
|
332, 332, 332, 332, 332, 332, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 332, 332,
|
|
|
|
332, 332, 332, 332, 334, 334, 334, 801, 801, 334,
|
|
334, 334, 334, 334, 334, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 334, 334, 334,
|
|
334, 334, 334, 335, 335, 335, 801, 801, 335, 335,
|
|
335, 335, 335, 335, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 335, 335, 335, 335,
|
|
335, 335, 336, 336, 336, 801, 801, 336, 336, 336,
|
|
336, 336, 336, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 336, 336, 336, 336, 336,
|
|
336, 337, 337, 337, 801, 801, 337, 337, 337, 337,
|
|
|
|
337, 337, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 337, 337, 337, 337, 337, 337,
|
|
338, 338, 338, 801, 801, 338, 338, 338, 338, 338,
|
|
338, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 338, 338, 338, 338, 338, 338, 339,
|
|
339, 339, 340, 801, 339, 339, 339, 339, 339, 339,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 339, 339, 339, 339, 339, 339, 341, 341,
|
|
341, 801, 801, 341, 341, 341, 341, 341, 341, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
801, 341, 341, 341, 341, 341, 341, 342, 342, 342,
|
|
801, 801, 342, 342, 342, 342, 342, 342, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
342, 342, 342, 342, 342, 342, 380, 380, 380, 381,
|
|
801, 380, 380, 380, 380, 380, 380, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 380,
|
|
380, 380, 380, 380, 380, 382, 382, 382, 383, 801,
|
|
382, 382, 382, 382, 382, 382, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 382, 382,
|
|
382, 382, 382, 382, 384, 384, 384, 801, 801, 384,
|
|
|
|
384, 384, 384, 384, 384, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 384, 384, 384,
|
|
384, 384, 384, 385, 385, 385, 801, 801, 385, 385,
|
|
385, 385, 385, 385, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 385, 385, 385, 385,
|
|
385, 385, 386, 386, 386, 801, 801, 386, 386, 386,
|
|
386, 386, 386, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 386, 386, 386, 386, 386,
|
|
386, 387, 387, 387, 388, 801, 387, 387, 387, 387,
|
|
387, 387, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
801, 801, 801, 801, 387, 387, 387, 387, 387, 387,
|
|
389, 389, 389, 801, 801, 389, 389, 389, 389, 389,
|
|
389, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 389, 389, 389, 389, 389, 389, 390,
|
|
390, 390, 801, 801, 390, 390, 390, 390, 390, 390,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 390, 390, 390, 390, 390, 390, 391, 391,
|
|
391, 392, 801, 391, 391, 391, 391, 391, 391, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 391, 391, 391, 391, 391, 391, 393, 393, 393,
|
|
|
|
801, 801, 393, 393, 393, 393, 393, 393, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
393, 393, 393, 393, 393, 393, 394, 394, 394, 801,
|
|
801, 394, 394, 394, 394, 394, 394, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 394,
|
|
394, 394, 394, 394, 394, 395, 395, 395, 801, 801,
|
|
395, 395, 395, 395, 395, 395, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 395, 395,
|
|
395, 395, 395, 395, 396, 396, 396, 801, 801, 396,
|
|
396, 396, 396, 396, 396, 801, 801, 801, 801, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 396, 396, 396,
|
|
396, 396, 396, 397, 397, 397, 398, 801, 397, 397,
|
|
397, 397, 397, 397, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 397, 397, 397, 397,
|
|
397, 397, 31, 31, 32, 801, 801, 801, 801, 31,
|
|
801, 801, 801, 801, 31, 31, 31, 32, 31, 31,
|
|
32, 801, 31, 801, 801, 31, 801, 31, 801, 801,
|
|
31, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 31, 31, 434, 434,
|
|
|
|
434, 435, 801, 434, 434, 434, 434, 434, 434, 31,
|
|
31, 801, 31, 31, 801, 801, 801, 801, 801, 801,
|
|
801, 434, 434, 434, 434, 434, 434, 436, 436, 436,
|
|
437, 801, 436, 436, 436, 436, 436, 436, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
436, 436, 436, 436, 436, 436, 438, 438, 438, 801,
|
|
801, 438, 438, 438, 438, 438, 438, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 438,
|
|
438, 438, 438, 438, 438, 439, 439, 439, 801, 801,
|
|
439, 439, 439, 439, 439, 439, 801, 801, 801, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 801, 439, 439,
|
|
439, 439, 439, 439, 440, 440, 440, 801, 801, 440,
|
|
440, 440, 440, 440, 440, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 440, 440, 440,
|
|
440, 440, 440, 441, 441, 441, 442, 801, 441, 441,
|
|
441, 441, 441, 441, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 441, 441, 441, 441,
|
|
441, 441, 443, 443, 443, 801, 801, 443, 443, 443,
|
|
443, 443, 443, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 443, 443, 443, 443, 443,
|
|
|
|
443, 444, 444, 444, 445, 801, 444, 444, 444, 444,
|
|
444, 444, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 444, 444, 444, 444, 444, 444,
|
|
446, 446, 446, 801, 801, 446, 446, 446, 446, 446,
|
|
446, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 446, 446, 446, 446, 446, 446, 447,
|
|
447, 447, 801, 801, 447, 447, 447, 447, 447, 447,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 447, 447, 447, 447, 447, 447, 448, 448,
|
|
448, 801, 801, 448, 448, 448, 448, 448, 448, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 448, 448, 448, 448, 448, 448, 449, 449, 449,
|
|
801, 801, 449, 449, 449, 449, 449, 449, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
449, 449, 449, 449, 449, 449, 450, 450, 450, 801,
|
|
801, 450, 450, 450, 450, 450, 450, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 450,
|
|
450, 450, 450, 450, 450, 451, 451, 451, 452, 801,
|
|
451, 451, 451, 451, 451, 451, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 451, 451,
|
|
|
|
451, 451, 451, 451, 453, 453, 453, 801, 801, 453,
|
|
453, 453, 453, 453, 453, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 453, 453, 453,
|
|
453, 453, 453, 454, 454, 454, 801, 801, 454, 454,
|
|
454, 454, 454, 454, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 454, 454, 454, 454,
|
|
454, 454, 490, 490, 490, 491, 801, 490, 490, 490,
|
|
490, 490, 490, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 490, 490, 490, 490, 490,
|
|
490, 492, 492, 492, 801, 801, 492, 492, 492, 492,
|
|
|
|
492, 492, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 492, 492, 492, 492, 492, 492,
|
|
493, 493, 493, 801, 801, 493, 493, 493, 493, 493,
|
|
493, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 493, 493, 493, 493, 493, 493, 494,
|
|
494, 494, 495, 801, 494, 494, 494, 494, 494, 494,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 494, 494, 494, 494, 494, 494, 496, 496,
|
|
496, 497, 801, 496, 496, 496, 496, 496, 496, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
801, 496, 496, 496, 496, 496, 496, 498, 498, 498,
|
|
801, 801, 498, 498, 498, 498, 498, 498, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
498, 498, 498, 498, 498, 498, 499, 499, 499, 500,
|
|
801, 499, 499, 499, 499, 499, 499, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 499,
|
|
499, 499, 499, 499, 499, 501, 501, 501, 801, 801,
|
|
501, 501, 501, 501, 501, 501, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 501, 501,
|
|
501, 501, 501, 501, 502, 502, 502, 801, 801, 502,
|
|
|
|
502, 502, 502, 502, 502, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 502, 502, 502,
|
|
502, 502, 502, 503, 503, 503, 801, 801, 503, 503,
|
|
503, 503, 503, 503, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 503, 503, 503, 503,
|
|
503, 503, 504, 504, 504, 801, 801, 504, 504, 504,
|
|
504, 504, 504, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 504, 504, 504, 504, 504,
|
|
504, 505, 505, 505, 801, 801, 505, 505, 505, 505,
|
|
505, 505, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
801, 801, 801, 801, 505, 505, 505, 505, 505, 505,
|
|
506, 506, 506, 507, 801, 506, 506, 506, 506, 506,
|
|
506, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 506, 506, 506, 506, 506, 506, 508,
|
|
508, 508, 801, 801, 508, 508, 508, 508, 508, 508,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 508, 508, 508, 508, 508, 508, 509, 509,
|
|
509, 801, 801, 509, 509, 509, 509, 509, 509, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 509, 509, 509, 509, 509, 509, 510, 510, 510,
|
|
|
|
801, 801, 510, 510, 510, 510, 510, 510, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
510, 510, 510, 510, 510, 510, 511, 511, 511, 512,
|
|
801, 511, 511, 511, 511, 511, 511, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 511,
|
|
511, 511, 511, 511, 511, 547, 547, 547, 548, 801,
|
|
547, 547, 547, 547, 547, 547, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 547, 547,
|
|
547, 547, 547, 547, 549, 549, 549, 550, 801, 549,
|
|
549, 549, 549, 549, 549, 801, 801, 801, 801, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 549, 549, 549,
|
|
549, 549, 549, 551, 551, 551, 552, 801, 551, 551,
|
|
551, 551, 551, 551, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 551, 551, 551, 551,
|
|
551, 551, 553, 553, 553, 801, 801, 553, 553, 553,
|
|
553, 553, 553, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 553, 553, 553, 553, 553,
|
|
553, 554, 554, 554, 555, 801, 554, 554, 554, 554,
|
|
554, 554, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 554, 554, 554, 554, 554, 554,
|
|
|
|
556, 556, 556, 801, 801, 556, 556, 556, 556, 556,
|
|
556, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 556, 556, 556, 556, 556, 556, 557,
|
|
557, 557, 801, 801, 557, 557, 557, 557, 557, 557,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 557, 557, 557, 557, 557, 557, 558, 558,
|
|
558, 801, 801, 558, 558, 558, 558, 558, 558, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 558, 558, 558, 558, 558, 558, 559, 559, 559,
|
|
801, 801, 559, 559, 559, 559, 559, 559, 801, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
559, 559, 559, 559, 559, 559, 560, 560, 560, 801,
|
|
801, 560, 560, 560, 560, 560, 560, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 560,
|
|
560, 560, 560, 560, 560, 561, 561, 561, 801, 801,
|
|
561, 561, 561, 561, 561, 561, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 561, 561,
|
|
561, 561, 561, 561, 562, 562, 562, 563, 801, 562,
|
|
562, 562, 562, 562, 562, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 562, 562, 562,
|
|
|
|
562, 562, 562, 564, 564, 564, 801, 801, 564, 564,
|
|
564, 564, 564, 564, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 564, 564, 564, 564,
|
|
564, 564, 565, 565, 565, 801, 801, 565, 565, 565,
|
|
565, 565, 565, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 565, 565, 565, 565, 565,
|
|
565, 566, 566, 566, 801, 801, 566, 566, 566, 566,
|
|
566, 566, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 566, 566, 566, 566, 566, 566,
|
|
567, 567, 567, 568, 801, 567, 567, 567, 567, 567,
|
|
|
|
567, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 567, 567, 567, 567, 567, 567, 569,
|
|
569, 569, 801, 801, 569, 569, 569, 569, 569, 569,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 569, 569, 569, 569, 569, 569, 570, 570,
|
|
570, 801, 801, 570, 570, 570, 570, 570, 570, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 570, 570, 570, 570, 570, 570, 31, 31, 32,
|
|
801, 801, 801, 801, 31, 801, 801, 801, 801, 31,
|
|
31, 31, 32, 801, 801, 801, 801, 31, 801, 801,
|
|
|
|
801, 801, 31, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 31, 31, 605, 605, 605, 606, 801, 605, 605,
|
|
605, 605, 605, 605, 31, 31, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 605, 605, 605, 605,
|
|
605, 605, 607, 607, 607, 608, 801, 607, 607, 607,
|
|
607, 607, 607, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 607, 607, 607, 607, 607,
|
|
607, 609, 609, 609, 610, 801, 609, 609, 609, 609,
|
|
|
|
609, 609, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 609, 609, 609, 609, 609, 609,
|
|
611, 611, 611, 801, 801, 611, 611, 611, 611, 611,
|
|
611, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 611, 611, 611, 611, 611, 611, 612,
|
|
612, 612, 613, 801, 612, 612, 612, 612, 612, 612,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 612, 612, 612, 612, 612, 612, 614, 614,
|
|
614, 801, 801, 614, 614, 614, 614, 614, 614, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
801, 614, 614, 614, 614, 614, 614, 615, 615, 615,
|
|
801, 801, 615, 615, 615, 615, 615, 615, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
615, 615, 615, 615, 615, 615, 616, 616, 616, 801,
|
|
801, 616, 616, 616, 616, 616, 616, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 616,
|
|
616, 616, 616, 616, 616, 617, 617, 617, 801, 801,
|
|
617, 617, 617, 617, 617, 617, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 617, 617,
|
|
617, 617, 617, 617, 618, 618, 618, 801, 801, 618,
|
|
|
|
618, 618, 618, 618, 618, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 618, 618, 618,
|
|
618, 618, 618, 619, 619, 619, 620, 801, 619, 619,
|
|
619, 619, 619, 619, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 619, 619, 619, 619,
|
|
619, 619, 621, 621, 621, 801, 801, 621, 621, 621,
|
|
621, 621, 621, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 621, 621, 621, 621, 621,
|
|
621, 622, 622, 622, 801, 801, 622, 622, 622, 622,
|
|
622, 622, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
801, 801, 801, 801, 622, 622, 622, 622, 622, 622,
|
|
623, 623, 623, 801, 801, 623, 623, 623, 623, 623,
|
|
623, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 623, 623, 623, 623, 623, 623, 624,
|
|
624, 624, 625, 801, 624, 624, 624, 624, 624, 624,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 624, 624, 624, 624, 624, 624, 626, 626,
|
|
626, 801, 801, 626, 626, 626, 626, 626, 626, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 626, 626, 626, 626, 626, 626, 627, 627, 627,
|
|
|
|
801, 801, 627, 627, 627, 627, 627, 627, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
627, 627, 627, 627, 627, 627, 628, 628, 628, 801,
|
|
801, 628, 628, 628, 628, 628, 628, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 628,
|
|
628, 628, 628, 628, 628, 629, 629, 629, 630, 801,
|
|
629, 629, 629, 629, 629, 629, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 629, 629,
|
|
629, 629, 629, 629, 663, 663, 663, 664, 801, 663,
|
|
663, 663, 663, 663, 663, 801, 801, 801, 801, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 663, 663, 663,
|
|
663, 663, 663, 665, 665, 665, 666, 801, 665, 665,
|
|
665, 665, 665, 665, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 665, 665, 665, 665,
|
|
665, 665, 667, 667, 667, 801, 801, 667, 667, 667,
|
|
667, 667, 667, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 667, 667, 667, 667, 667,
|
|
667, 668, 668, 668, 801, 801, 668, 668, 668, 668,
|
|
668, 668, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 668, 668, 668, 668, 668, 668,
|
|
|
|
669, 669, 669, 801, 801, 669, 669, 669, 669, 669,
|
|
669, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 669, 669, 669, 669, 669, 669, 670,
|
|
670, 670, 671, 801, 670, 670, 670, 670, 670, 670,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 670, 670, 670, 670, 670, 670, 672, 672,
|
|
672, 801, 801, 672, 672, 672, 672, 672, 672, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 672, 672, 672, 672, 672, 672, 673, 673, 673,
|
|
801, 801, 673, 673, 673, 673, 673, 673, 801, 801,
|
|
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
673, 673, 673, 673, 673, 673, 674, 674, 674, 675,
|
|
801, 674, 674, 674, 674, 674, 674, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 674,
|
|
674, 674, 674, 674, 674, 676, 676, 676, 801, 801,
|
|
676, 676, 676, 676, 676, 676, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 676, 676,
|
|
676, 676, 676, 676, 677, 677, 677, 801, 801, 677,
|
|
677, 677, 677, 677, 677, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 677, 677, 677,
|
|
|
|
677, 677, 677, 678, 678, 678, 801, 801, 678, 678,
|
|
678, 678, 678, 678, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 678, 678, 678, 678,
|
|
678, 678, 679, 679, 679, 801, 801, 679, 679, 679,
|
|
679, 679, 679, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 679, 679, 679, 679, 679,
|
|
679, 680, 680, 680, 681, 801, 680, 680, 680, 680,
|
|
680, 680, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 680, 680, 680, 680, 680, 680,
|
|
682, 682, 682, 801, 801, 682, 682, 682, 682, 682,
|
|
|
|
682, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 682, 682, 682, 682, 682, 682, 683,
|
|
683, 683, 801, 801, 683, 683, 683, 683, 683, 683,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 683, 683, 683, 683, 683, 683, 684, 684,
|
|
684, 801, 801, 684, 684, 684, 684, 684, 684, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 684, 684, 684, 684, 684, 684, 685, 685, 685,
|
|
686, 801, 685, 685, 685, 685, 685, 685, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
|
|
685, 685, 685, 685, 685, 685, 687, 687, 687, 801,
|
|
801, 687, 687, 687, 687, 687, 687, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 687,
|
|
687, 687, 687, 687, 687, 688, 688, 688, 801, 801,
|
|
688, 688, 688, 688, 688, 688, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 688, 688,
|
|
688, 688, 688, 688, 30, 30, 30, 33, 33, 33,
|
|
33, 57, 57, 57, 31, 31, 31, 31, 58, 58,
|
|
58, 58, 84, 84, 84, 85, 85, 85, 85, 124,
|
|
124, 124, 125, 125, 125, 125, 171, 171, 171, 172,
|
|
|
|
172, 172, 172, 220, 220, 220, 221, 221, 221, 221,
|
|
269, 269, 269, 270, 270, 270, 270, 319, 319, 319,
|
|
320, 320, 320, 320, 373, 373, 373, 374, 374, 374,
|
|
374, 428, 428, 428, 429, 429, 429, 429, 484, 484,
|
|
484, 485, 485, 485, 485, 541, 541, 541, 542, 542,
|
|
542, 542, 599, 599, 599, 600, 600, 600, 600, 656,
|
|
656, 656, 657, 657, 657, 657, 31, 31, 31, 31,
|
|
715, 715, 717, 717, 720, 720, 721, 721, 722, 722,
|
|
724, 724, 725, 725, 727, 727, 728, 728, 729, 729,
|
|
730, 730, 731, 731, 732, 732, 734, 734, 735, 735,
|
|
|
|
736, 736, 737, 737, 739, 739, 740, 740, 741, 741,
|
|
742, 742, 764, 764, 765, 765, 780, 780, 781, 781,
|
|
792, 792, 797, 797, 3, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801
|
|
} ;
|
|
|
|
static yyconst short int yy_chk[5282] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 8, 8, 8, 9,
|
|
9, 9, 13, 8, 13, 13, 13, 14, 8, 14,
|
|
14, 14, 15, 18, 15, 15, 15, 26, 34, 34,
|
|
34, 18, 107, 21, 26, 21, 21, 21, 834, 797,
|
|
13, 107, 14, 33, 33, 33, 35, 35, 35, 38,
|
|
|
|
33, 38, 38, 38, 41, 33, 41, 41, 41, 366,
|
|
8, 8, 11, 366, 11, 11, 11, 11, 21, 11,
|
|
11, 11, 11, 11, 11, 40, 72, 40, 40, 40,
|
|
104, 50, 59, 59, 59, 104, 72, 11, 11, 11,
|
|
11, 11, 11, 50, 795, 41, 401, 33, 33, 36,
|
|
401, 36, 36, 36, 36, 794, 36, 36, 36, 36,
|
|
36, 36, 60, 60, 60, 61, 61, 61, 64, 40,
|
|
64, 64, 64, 793, 36, 36, 36, 36, 36, 36,
|
|
37, 37, 37, 37, 152, 37, 37, 37, 37, 37,
|
|
37, 86, 86, 86, 87, 87, 87, 88, 88, 88,
|
|
|
|
103, 152, 792, 37, 37, 37, 37, 37, 37, 58,
|
|
58, 58, 790, 103, 106, 89, 58, 89, 89, 89,
|
|
89, 58, 786, 784, 85, 85, 85, 125, 125, 125,
|
|
517, 85, 517, 106, 125, 783, 85, 303, 781, 125,
|
|
303, 303, 106, 126, 126, 126, 127, 127, 127, 128,
|
|
128, 128, 129, 780, 129, 129, 129, 778, 776, 172,
|
|
172, 172, 773, 58, 58, 62, 172, 62, 62, 62,
|
|
62, 172, 62, 62, 62, 62, 62, 62, 85, 85,
|
|
772, 125, 125, 173, 173, 173, 174, 174, 174, 771,
|
|
62, 62, 62, 62, 62, 62, 63, 63, 63, 63,
|
|
|
|
770, 63, 63, 63, 63, 63, 63, 175, 175, 175,
|
|
222, 222, 222, 172, 172, 223, 223, 223, 769, 63,
|
|
63, 63, 63, 63, 63, 65, 65, 65, 65, 768,
|
|
65, 65, 65, 65, 65, 65, 176, 767, 176, 176,
|
|
176, 224, 224, 224, 271, 271, 271, 766, 65, 65,
|
|
65, 65, 65, 65, 66, 66, 66, 765, 764, 66,
|
|
66, 66, 66, 66, 66, 225, 763, 225, 225, 225,
|
|
272, 272, 272, 273, 273, 273, 762, 66, 66, 66,
|
|
66, 66, 66, 67, 761, 67, 67, 760, 759, 67,
|
|
67, 67, 67, 758, 67, 67, 67, 67, 756, 755,
|
|
|
|
67, 90, 90, 90, 90, 752, 90, 90, 90, 90,
|
|
90, 90, 274, 750, 274, 274, 274, 306, 321, 321,
|
|
321, 306, 749, 748, 90, 90, 90, 90, 90, 90,
|
|
92, 92, 92, 92, 745, 92, 92, 92, 92, 92,
|
|
92, 744, 306, 322, 322, 322, 323, 323, 323, 375,
|
|
375, 375, 743, 92, 92, 92, 92, 92, 92, 93,
|
|
93, 93, 742, 741, 93, 93, 93, 93, 93, 93,
|
|
324, 740, 324, 324, 324, 376, 376, 376, 377, 377,
|
|
377, 739, 93, 93, 93, 93, 93, 93, 94, 94,
|
|
94, 738, 737, 94, 94, 94, 94, 94, 94, 378,
|
|
|
|
736, 378, 378, 378, 430, 430, 430, 431, 431, 431,
|
|
735, 94, 94, 94, 94, 94, 94, 95, 95, 95,
|
|
734, 733, 95, 95, 95, 95, 95, 95, 432, 432,
|
|
432, 433, 732, 433, 433, 433, 486, 486, 486, 731,
|
|
95, 95, 95, 95, 95, 95, 96, 96, 96, 96,
|
|
730, 96, 96, 96, 96, 96, 96, 487, 487, 487,
|
|
488, 488, 488, 489, 729, 489, 489, 489, 728, 96,
|
|
96, 96, 96, 96, 96, 130, 130, 130, 130, 727,
|
|
130, 130, 130, 130, 130, 130, 543, 543, 543, 544,
|
|
544, 544, 545, 545, 545, 601, 601, 601, 130, 130,
|
|
|
|
130, 130, 130, 130, 131, 131, 131, 131, 726, 131,
|
|
131, 131, 131, 131, 131, 546, 725, 546, 546, 546,
|
|
602, 602, 602, 603, 603, 603, 724, 131, 131, 131,
|
|
131, 131, 131, 132, 132, 132, 722, 721, 132, 132,
|
|
132, 132, 132, 132, 604, 720, 604, 604, 604, 658,
|
|
658, 658, 659, 659, 659, 719, 132, 132, 132, 132,
|
|
132, 132, 133, 133, 133, 718, 717, 133, 133, 133,
|
|
133, 133, 133, 660, 660, 660, 661, 715, 661, 661,
|
|
661, 711, 711, 711, 710, 133, 133, 133, 133, 133,
|
|
133, 134, 134, 134, 709, 708, 134, 134, 134, 134,
|
|
|
|
134, 134, 712, 712, 712, 713, 713, 713, 714, 706,
|
|
714, 714, 714, 705, 134, 134, 134, 134, 134, 134,
|
|
135, 135, 135, 135, 704, 135, 135, 135, 135, 135,
|
|
135, 703, 702, 701, 700, 698, 697, 696, 695, 694,
|
|
693, 692, 691, 135, 135, 135, 135, 135, 135, 136,
|
|
136, 136, 690, 689, 136, 136, 136, 136, 136, 136,
|
|
688, 687, 686, 685, 684, 683, 682, 681, 680, 679,
|
|
678, 677, 136, 136, 136, 136, 136, 136, 137, 137,
|
|
137, 137, 676, 137, 137, 137, 137, 137, 137, 675,
|
|
674, 673, 672, 670, 669, 668, 667, 666, 665, 663,
|
|
|
|
662, 137, 137, 137, 137, 137, 137, 138, 138, 138,
|
|
657, 655, 138, 138, 138, 138, 138, 138, 654, 653,
|
|
652, 651, 650, 649, 648, 647, 646, 645, 644, 643,
|
|
138, 138, 138, 138, 138, 138, 177, 177, 177, 177,
|
|
642, 177, 177, 177, 177, 177, 177, 641, 640, 639,
|
|
638, 635, 634, 633, 632, 628, 623, 618, 617, 177,
|
|
177, 177, 177, 177, 177, 178, 178, 178, 605, 598,
|
|
178, 178, 178, 178, 178, 178, 597, 596, 595, 594,
|
|
593, 592, 591, 590, 587, 586, 585, 584, 178, 178,
|
|
178, 178, 178, 178, 179, 179, 179, 583, 582, 179,
|
|
|
|
179, 179, 179, 179, 179, 581, 580, 579, 578, 577,
|
|
576, 575, 574, 573, 572, 566, 561, 179, 179, 179,
|
|
179, 179, 179, 180, 180, 180, 180, 560, 180, 180,
|
|
180, 180, 180, 180, 553, 540, 539, 538, 537, 536,
|
|
535, 534, 533, 532, 531, 530, 180, 180, 180, 180,
|
|
180, 180, 181, 181, 181, 181, 529, 181, 181, 181,
|
|
181, 181, 181, 528, 527, 526, 525, 523, 522, 521,
|
|
520, 519, 518, 516, 515, 181, 181, 181, 181, 181,
|
|
181, 182, 182, 182, 514, 513, 182, 182, 182, 182,
|
|
182, 182, 510, 505, 504, 498, 482, 481, 480, 479,
|
|
|
|
478, 477, 476, 475, 182, 182, 182, 182, 182, 182,
|
|
183, 183, 183, 183, 474, 183, 183, 183, 183, 183,
|
|
183, 473, 472, 471, 470, 469, 468, 467, 466, 465,
|
|
464, 463, 462, 183, 183, 183, 183, 183, 183, 184,
|
|
184, 184, 461, 460, 184, 184, 184, 184, 184, 184,
|
|
459, 458, 457, 456, 455, 450, 449, 443, 427, 426,
|
|
425, 424, 184, 184, 184, 184, 184, 184, 187, 187,
|
|
187, 423, 422, 187, 187, 187, 187, 187, 187, 421,
|
|
420, 419, 418, 417, 416, 415, 414, 413, 412, 411,
|
|
410, 187, 187, 187, 187, 187, 187, 188, 188, 188,
|
|
|
|
409, 408, 188, 188, 188, 188, 188, 188, 407, 406,
|
|
405, 403, 402, 400, 399, 396, 390, 389, 371, 370,
|
|
188, 188, 188, 188, 188, 188, 189, 189, 189, 369,
|
|
368, 189, 189, 189, 189, 189, 189, 367, 365, 364,
|
|
363, 362, 361, 360, 359, 358, 357, 356, 355, 189,
|
|
189, 189, 189, 189, 189, 221, 221, 221, 354, 353,
|
|
352, 350, 221, 349, 348, 347, 346, 221, 270, 270,
|
|
270, 320, 320, 320, 345, 270, 344, 343, 320, 338,
|
|
270, 337, 325, 320, 318, 316, 315, 314, 313, 312,
|
|
311, 310, 309, 308, 307, 305, 304, 302, 301, 300,
|
|
|
|
299, 298, 297, 296, 295, 294, 293, 292, 289, 221,
|
|
221, 226, 226, 226, 226, 288, 226, 226, 226, 226,
|
|
226, 226, 270, 270, 281, 320, 320, 268, 267, 265,
|
|
264, 263, 262, 261, 226, 226, 226, 226, 226, 226,
|
|
227, 227, 227, 227, 260, 227, 227, 227, 227, 227,
|
|
227, 259, 258, 257, 256, 255, 254, 253, 252, 251,
|
|
250, 249, 248, 227, 227, 227, 227, 227, 227, 228,
|
|
228, 228, 228, 247, 228, 228, 228, 228, 228, 228,
|
|
246, 245, 244, 243, 242, 241, 240, 234, 217, 216,
|
|
215, 214, 228, 228, 228, 228, 228, 228, 229, 229,
|
|
|
|
229, 213, 212, 229, 229, 229, 229, 229, 229, 211,
|
|
210, 209, 208, 207, 206, 205, 204, 203, 202, 201,
|
|
200, 229, 229, 229, 229, 229, 229, 230, 230, 230,
|
|
230, 199, 230, 230, 230, 230, 230, 230, 198, 197,
|
|
196, 195, 194, 193, 192, 191, 190, 186, 169, 168,
|
|
230, 230, 230, 230, 230, 230, 231, 231, 231, 167,
|
|
166, 231, 231, 231, 231, 231, 231, 165, 164, 162,
|
|
161, 160, 159, 158, 157, 156, 155, 154, 153, 231,
|
|
231, 231, 231, 231, 231, 232, 232, 232, 151, 150,
|
|
232, 232, 232, 232, 232, 232, 149, 148, 147, 146,
|
|
|
|
145, 144, 143, 142, 141, 140, 123, 122, 232, 232,
|
|
232, 232, 232, 232, 235, 235, 235, 121, 120, 235,
|
|
235, 235, 235, 235, 235, 119, 117, 116, 115, 114,
|
|
113, 112, 111, 110, 109, 108, 105, 235, 235, 235,
|
|
235, 235, 235, 236, 236, 236, 102, 101, 236, 236,
|
|
236, 236, 236, 236, 100, 99, 98, 97, 91, 83,
|
|
82, 80, 78, 77, 76, 75, 236, 236, 236, 236,
|
|
236, 236, 237, 237, 237, 74, 73, 237, 237, 237,
|
|
237, 237, 237, 71, 70, 69, 68, 56, 55, 53,
|
|
52, 51, 49, 48, 47, 237, 237, 237, 237, 237,
|
|
|
|
237, 238, 238, 238, 46, 45, 238, 238, 238, 238,
|
|
238, 238, 44, 43, 42, 31, 29, 28, 27, 25,
|
|
24, 23, 22, 20, 238, 238, 238, 238, 238, 238,
|
|
239, 239, 239, 239, 19, 239, 239, 239, 239, 239,
|
|
239, 17, 16, 12, 5, 3, 0, 0, 0, 0,
|
|
0, 0, 0, 239, 239, 239, 239, 239, 239, 275,
|
|
275, 275, 275, 0, 275, 275, 275, 275, 275, 275,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 275, 275, 275, 275, 275, 275, 276, 276,
|
|
276, 276, 0, 276, 276, 276, 276, 276, 276, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 276, 276, 276, 276, 276, 276, 277, 277, 277,
|
|
277, 0, 277, 277, 277, 277, 277, 277, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
277, 277, 277, 277, 277, 277, 278, 278, 278, 0,
|
|
0, 278, 278, 278, 278, 278, 278, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 278,
|
|
278, 278, 278, 278, 278, 279, 279, 279, 279, 0,
|
|
279, 279, 279, 279, 279, 279, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 279, 279,
|
|
|
|
279, 279, 279, 279, 282, 282, 282, 0, 0, 282,
|
|
282, 282, 282, 282, 282, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 282, 282, 282,
|
|
282, 282, 282, 283, 283, 283, 0, 0, 283, 283,
|
|
283, 283, 283, 283, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 283, 283, 283, 283,
|
|
283, 283, 284, 284, 284, 0, 0, 284, 284, 284,
|
|
284, 284, 284, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 284, 284, 284, 284, 284,
|
|
284, 285, 285, 285, 0, 0, 285, 285, 285, 285,
|
|
|
|
285, 285, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 285, 285, 285, 285, 285, 285,
|
|
286, 286, 286, 0, 0, 286, 286, 286, 286, 286,
|
|
286, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 286, 286, 286, 286, 286, 286, 287,
|
|
287, 287, 287, 0, 287, 287, 287, 287, 287, 287,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 287, 287, 287, 287, 287, 287, 290, 290,
|
|
290, 0, 0, 290, 290, 290, 290, 290, 290, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 290, 290, 290, 290, 290, 290, 291, 291, 291,
|
|
0, 0, 291, 291, 291, 291, 291, 291, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
291, 291, 291, 291, 291, 291, 326, 326, 326, 326,
|
|
0, 326, 326, 326, 326, 326, 326, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 326,
|
|
326, 326, 326, 326, 326, 327, 327, 327, 327, 0,
|
|
327, 327, 327, 327, 327, 327, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 327, 327,
|
|
327, 327, 327, 327, 328, 328, 328, 0, 0, 328,
|
|
|
|
328, 328, 328, 328, 328, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 328, 328, 328,
|
|
328, 328, 328, 329, 329, 329, 0, 0, 329, 329,
|
|
329, 329, 329, 329, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 329, 329, 329, 329,
|
|
329, 329, 330, 330, 330, 0, 0, 330, 330, 330,
|
|
330, 330, 330, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 330, 330, 330, 330, 330,
|
|
330, 331, 331, 331, 331, 0, 331, 331, 331, 331,
|
|
331, 331, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 331, 331, 331, 331, 331, 331,
|
|
332, 332, 332, 0, 0, 332, 332, 332, 332, 332,
|
|
332, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 332, 332, 332, 332, 332, 332, 334,
|
|
334, 334, 0, 0, 334, 334, 334, 334, 334, 334,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 334, 334, 334, 334, 334, 334, 335, 335,
|
|
335, 335, 0, 335, 335, 335, 335, 335, 335, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 335, 335, 335, 335, 335, 335, 336, 336, 336,
|
|
|
|
0, 0, 336, 336, 336, 336, 336, 336, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
336, 336, 336, 336, 336, 336, 339, 339, 339, 0,
|
|
0, 339, 339, 339, 339, 339, 339, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 339,
|
|
339, 339, 339, 339, 339, 340, 340, 340, 0, 0,
|
|
340, 340, 340, 340, 340, 340, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 340, 340,
|
|
340, 340, 340, 340, 341, 341, 341, 0, 0, 341,
|
|
341, 341, 341, 341, 341, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 341, 341, 341,
|
|
341, 341, 341, 342, 342, 342, 342, 0, 342, 342,
|
|
342, 342, 342, 342, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 342, 342, 342, 342,
|
|
342, 342, 374, 374, 374, 0, 0, 0, 0, 374,
|
|
0, 0, 0, 0, 374, 429, 429, 429, 485, 485,
|
|
485, 0, 429, 0, 0, 485, 0, 429, 0, 0,
|
|
485, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 374, 374, 379, 379,
|
|
|
|
379, 379, 0, 379, 379, 379, 379, 379, 379, 429,
|
|
429, 0, 485, 485, 0, 0, 0, 0, 0, 0,
|
|
0, 379, 379, 379, 379, 379, 379, 380, 380, 380,
|
|
380, 0, 380, 380, 380, 380, 380, 380, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
380, 380, 380, 380, 380, 380, 381, 381, 381, 0,
|
|
0, 381, 381, 381, 381, 381, 381, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 381,
|
|
381, 381, 381, 381, 381, 382, 382, 382, 0, 0,
|
|
382, 382, 382, 382, 382, 382, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 382, 382,
|
|
382, 382, 382, 382, 383, 383, 383, 0, 0, 383,
|
|
383, 383, 383, 383, 383, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 383, 383, 383,
|
|
383, 383, 383, 384, 384, 384, 384, 0, 384, 384,
|
|
384, 384, 384, 384, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 384, 384, 384, 384,
|
|
384, 384, 385, 385, 385, 0, 0, 385, 385, 385,
|
|
385, 385, 385, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 385, 385, 385, 385, 385,
|
|
|
|
385, 386, 386, 386, 386, 0, 386, 386, 386, 386,
|
|
386, 386, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 386, 386, 386, 386, 386, 386,
|
|
387, 387, 387, 0, 0, 387, 387, 387, 387, 387,
|
|
387, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 387, 387, 387, 387, 387, 387, 391,
|
|
391, 391, 0, 0, 391, 391, 391, 391, 391, 391,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 391, 391, 391, 391, 391, 391, 392, 392,
|
|
392, 0, 0, 392, 392, 392, 392, 392, 392, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 392, 392, 392, 392, 392, 392, 393, 393, 393,
|
|
0, 0, 393, 393, 393, 393, 393, 393, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
393, 393, 393, 393, 393, 393, 394, 394, 394, 0,
|
|
0, 394, 394, 394, 394, 394, 394, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 394,
|
|
394, 394, 394, 394, 394, 395, 395, 395, 395, 0,
|
|
395, 395, 395, 395, 395, 395, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 395, 395,
|
|
|
|
395, 395, 395, 395, 397, 397, 397, 0, 0, 397,
|
|
397, 397, 397, 397, 397, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 397, 397, 397,
|
|
397, 397, 397, 398, 398, 398, 0, 0, 398, 398,
|
|
398, 398, 398, 398, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 398, 398, 398, 398,
|
|
398, 398, 434, 434, 434, 434, 0, 434, 434, 434,
|
|
434, 434, 434, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 434, 434, 434, 434, 434,
|
|
434, 435, 435, 435, 0, 0, 435, 435, 435, 435,
|
|
|
|
435, 435, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 435, 435, 435, 435, 435, 435,
|
|
436, 436, 436, 0, 0, 436, 436, 436, 436, 436,
|
|
436, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 436, 436, 436, 436, 436, 436, 437,
|
|
437, 437, 437, 0, 437, 437, 437, 437, 437, 437,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 437, 437, 437, 437, 437, 437, 438, 438,
|
|
438, 438, 0, 438, 438, 438, 438, 438, 438, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 438, 438, 438, 438, 438, 438, 439, 439, 439,
|
|
0, 0, 439, 439, 439, 439, 439, 439, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
439, 439, 439, 439, 439, 439, 440, 440, 440, 440,
|
|
0, 440, 440, 440, 440, 440, 440, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 440,
|
|
440, 440, 440, 440, 440, 441, 441, 441, 0, 0,
|
|
441, 441, 441, 441, 441, 441, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 441, 441,
|
|
441, 441, 441, 441, 444, 444, 444, 0, 0, 444,
|
|
|
|
444, 444, 444, 444, 444, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 444, 444, 444,
|
|
444, 444, 444, 445, 445, 445, 0, 0, 445, 445,
|
|
445, 445, 445, 445, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 445, 445, 445, 445,
|
|
445, 445, 446, 446, 446, 0, 0, 446, 446, 446,
|
|
446, 446, 446, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 446, 446, 446, 446, 446,
|
|
446, 447, 447, 447, 0, 0, 447, 447, 447, 447,
|
|
447, 447, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 447, 447, 447, 447, 447, 447,
|
|
448, 448, 448, 448, 0, 448, 448, 448, 448, 448,
|
|
448, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 448, 448, 448, 448, 448, 448, 451,
|
|
451, 451, 0, 0, 451, 451, 451, 451, 451, 451,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 451, 451, 451, 451, 451, 451, 452, 452,
|
|
452, 0, 0, 452, 452, 452, 452, 452, 452, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 452, 452, 452, 452, 452, 452, 453, 453, 453,
|
|
|
|
0, 0, 453, 453, 453, 453, 453, 453, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
453, 453, 453, 453, 453, 453, 454, 454, 454, 454,
|
|
0, 454, 454, 454, 454, 454, 454, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 454,
|
|
454, 454, 454, 454, 454, 490, 490, 490, 490, 0,
|
|
490, 490, 490, 490, 490, 490, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 490, 490,
|
|
490, 490, 490, 490, 491, 491, 491, 491, 0, 491,
|
|
491, 491, 491, 491, 491, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 491, 491, 491,
|
|
491, 491, 491, 492, 492, 492, 492, 0, 492, 492,
|
|
492, 492, 492, 492, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 492, 492, 492, 492,
|
|
492, 492, 493, 493, 493, 0, 0, 493, 493, 493,
|
|
493, 493, 493, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 493, 493, 493, 493, 493,
|
|
493, 494, 494, 494, 494, 0, 494, 494, 494, 494,
|
|
494, 494, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 494, 494, 494, 494, 494, 494,
|
|
|
|
495, 495, 495, 0, 0, 495, 495, 495, 495, 495,
|
|
495, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 495, 495, 495, 495, 495, 495, 496,
|
|
496, 496, 0, 0, 496, 496, 496, 496, 496, 496,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 496, 496, 496, 496, 496, 496, 499, 499,
|
|
499, 0, 0, 499, 499, 499, 499, 499, 499, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 499, 499, 499, 499, 499, 499, 500, 500, 500,
|
|
0, 0, 500, 500, 500, 500, 500, 500, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
500, 500, 500, 500, 500, 500, 501, 501, 501, 0,
|
|
0, 501, 501, 501, 501, 501, 501, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 501,
|
|
501, 501, 501, 501, 501, 502, 502, 502, 0, 0,
|
|
502, 502, 502, 502, 502, 502, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 502, 502,
|
|
502, 502, 502, 502, 503, 503, 503, 503, 0, 503,
|
|
503, 503, 503, 503, 503, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 503, 503, 503,
|
|
|
|
503, 503, 503, 506, 506, 506, 0, 0, 506, 506,
|
|
506, 506, 506, 506, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 506, 506, 506, 506,
|
|
506, 506, 507, 507, 507, 0, 0, 507, 507, 507,
|
|
507, 507, 507, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 507, 507, 507, 507, 507,
|
|
507, 508, 508, 508, 0, 0, 508, 508, 508, 508,
|
|
508, 508, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 508, 508, 508, 508, 508, 508,
|
|
509, 509, 509, 509, 0, 509, 509, 509, 509, 509,
|
|
|
|
509, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 509, 509, 509, 509, 509, 509, 511,
|
|
511, 511, 0, 0, 511, 511, 511, 511, 511, 511,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 511, 511, 511, 511, 511, 511, 512, 512,
|
|
512, 0, 0, 512, 512, 512, 512, 512, 512, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 512, 512, 512, 512, 512, 512, 542, 542, 542,
|
|
0, 0, 0, 0, 542, 0, 0, 0, 0, 542,
|
|
600, 600, 600, 0, 0, 0, 0, 600, 0, 0,
|
|
|
|
0, 0, 600, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 542, 542, 547, 547, 547, 547, 0, 547, 547,
|
|
547, 547, 547, 547, 600, 600, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 547, 547, 547, 547,
|
|
547, 547, 548, 548, 548, 548, 0, 548, 548, 548,
|
|
548, 548, 548, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 548, 548, 548, 548, 548,
|
|
548, 549, 549, 549, 549, 0, 549, 549, 549, 549,
|
|
|
|
549, 549, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 549, 549, 549, 549, 549, 549,
|
|
550, 550, 550, 0, 0, 550, 550, 550, 550, 550,
|
|
550, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 550, 550, 550, 550, 550, 550, 551,
|
|
551, 551, 551, 0, 551, 551, 551, 551, 551, 551,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 551, 551, 551, 551, 551, 551, 554, 554,
|
|
554, 0, 0, 554, 554, 554, 554, 554, 554, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 554, 554, 554, 554, 554, 554, 555, 555, 555,
|
|
0, 0, 555, 555, 555, 555, 555, 555, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
555, 555, 555, 555, 555, 555, 556, 556, 556, 0,
|
|
0, 556, 556, 556, 556, 556, 556, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 556,
|
|
556, 556, 556, 556, 556, 557, 557, 557, 0, 0,
|
|
557, 557, 557, 557, 557, 557, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 557, 557,
|
|
557, 557, 557, 557, 558, 558, 558, 0, 0, 558,
|
|
|
|
558, 558, 558, 558, 558, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 558, 558, 558,
|
|
558, 558, 558, 559, 559, 559, 559, 0, 559, 559,
|
|
559, 559, 559, 559, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 559, 559, 559, 559,
|
|
559, 559, 562, 562, 562, 0, 0, 562, 562, 562,
|
|
562, 562, 562, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 562, 562, 562, 562, 562,
|
|
562, 563, 563, 563, 0, 0, 563, 563, 563, 563,
|
|
563, 563, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 563, 563, 563, 563, 563, 563,
|
|
564, 564, 564, 0, 0, 564, 564, 564, 564, 564,
|
|
564, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 564, 564, 564, 564, 564, 564, 565,
|
|
565, 565, 565, 0, 565, 565, 565, 565, 565, 565,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 565, 565, 565, 565, 565, 565, 567, 567,
|
|
567, 0, 0, 567, 567, 567, 567, 567, 567, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 567, 567, 567, 567, 567, 567, 568, 568, 568,
|
|
|
|
0, 0, 568, 568, 568, 568, 568, 568, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
568, 568, 568, 568, 568, 568, 569, 569, 569, 0,
|
|
0, 569, 569, 569, 569, 569, 569, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 569,
|
|
569, 569, 569, 569, 569, 570, 570, 570, 570, 0,
|
|
570, 570, 570, 570, 570, 570, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 570, 570,
|
|
570, 570, 570, 570, 606, 606, 606, 606, 0, 606,
|
|
606, 606, 606, 606, 606, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 606, 606, 606,
|
|
606, 606, 606, 607, 607, 607, 607, 0, 607, 607,
|
|
607, 607, 607, 607, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 607, 607, 607, 607,
|
|
607, 607, 608, 608, 608, 0, 0, 608, 608, 608,
|
|
608, 608, 608, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 608, 608, 608, 608, 608,
|
|
608, 609, 609, 609, 0, 0, 609, 609, 609, 609,
|
|
609, 609, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 609, 609, 609, 609, 609, 609,
|
|
|
|
610, 610, 610, 0, 0, 610, 610, 610, 610, 610,
|
|
610, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 610, 610, 610, 610, 610, 610, 611,
|
|
611, 611, 611, 0, 611, 611, 611, 611, 611, 611,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 611, 611, 611, 611, 611, 611, 612, 612,
|
|
612, 0, 0, 612, 612, 612, 612, 612, 612, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 612, 612, 612, 612, 612, 612, 614, 614, 614,
|
|
0, 0, 614, 614, 614, 614, 614, 614, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
614, 614, 614, 614, 614, 614, 615, 615, 615, 615,
|
|
0, 615, 615, 615, 615, 615, 615, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 615,
|
|
615, 615, 615, 615, 615, 616, 616, 616, 0, 0,
|
|
616, 616, 616, 616, 616, 616, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 616, 616,
|
|
616, 616, 616, 616, 619, 619, 619, 0, 0, 619,
|
|
619, 619, 619, 619, 619, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 619, 619, 619,
|
|
|
|
619, 619, 619, 620, 620, 620, 0, 0, 620, 620,
|
|
620, 620, 620, 620, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 620, 620, 620, 620,
|
|
620, 620, 621, 621, 621, 0, 0, 621, 621, 621,
|
|
621, 621, 621, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 621, 621, 621, 621, 621,
|
|
621, 622, 622, 622, 622, 0, 622, 622, 622, 622,
|
|
622, 622, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 622, 622, 622, 622, 622, 622,
|
|
624, 624, 624, 0, 0, 624, 624, 624, 624, 624,
|
|
|
|
624, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 624, 624, 624, 624, 624, 624, 625,
|
|
625, 625, 0, 0, 625, 625, 625, 625, 625, 625,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 625, 625, 625, 625, 625, 625, 626, 626,
|
|
626, 0, 0, 626, 626, 626, 626, 626, 626, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 626, 626, 626, 626, 626, 626, 627, 627, 627,
|
|
627, 0, 627, 627, 627, 627, 627, 627, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
627, 627, 627, 627, 627, 627, 629, 629, 629, 0,
|
|
0, 629, 629, 629, 629, 629, 629, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 629,
|
|
629, 629, 629, 629, 629, 630, 630, 630, 0, 0,
|
|
630, 630, 630, 630, 630, 630, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 630, 630,
|
|
630, 630, 630, 630, 802, 802, 802, 803, 803, 803,
|
|
803, 804, 804, 804, 805, 805, 805, 805, 806, 806,
|
|
806, 806, 807, 807, 807, 808, 808, 808, 808, 809,
|
|
809, 809, 810, 810, 810, 810, 811, 811, 811, 812,
|
|
|
|
812, 812, 812, 813, 813, 813, 814, 814, 814, 814,
|
|
815, 815, 815, 816, 816, 816, 816, 817, 817, 817,
|
|
818, 818, 818, 818, 819, 819, 819, 820, 820, 820,
|
|
820, 821, 821, 821, 822, 822, 822, 822, 823, 823,
|
|
823, 824, 824, 824, 824, 825, 825, 825, 826, 826,
|
|
826, 826, 827, 827, 827, 828, 828, 828, 828, 829,
|
|
829, 829, 830, 830, 830, 830, 831, 831, 831, 831,
|
|
832, 832, 833, 833, 835, 835, 836, 836, 837, 837,
|
|
838, 838, 839, 839, 840, 840, 841, 841, 842, 842,
|
|
843, 843, 844, 844, 845, 845, 846, 846, 847, 847,
|
|
|
|
848, 848, 849, 849, 850, 850, 851, 851, 852, 852,
|
|
853, 853, 854, 854, 855, 855, 856, 856, 857, 857,
|
|
858, 858, 859, 859, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801, 801, 801, 801, 801, 801, 801, 801, 801, 801,
|
|
801
|
|
} ;
|
|
|
|
static yy_state_type yy_last_accepting_state;
|
|
static char *yy_last_accepting_cpos;
|
|
|
|
/* The intent behind this definition is that it'll catch
|
|
* any uses of REJECT which flex missed.
|
|
*/
|
|
#define REJECT reject_used_but_not_detected
|
|
#define yymore() yymore_used_but_not_detected
|
|
#define YY_MORE_ADJ 0
|
|
#define YY_RESTORE_YY_MORE_OFFSET
|
|
char *yytext;
|
|
#line 1 "scanner.l"
|
|
#define INITIAL 0
|
|
/*
|
|
* $Id: //BBN_Linux/Branch/Branch_for_Rel_TP_ASEAN_20161216/tclinux_phoenix/apps/public/radvd-1.5/scanner.l#1 $
|
|
*
|
|
* Authors:
|
|
* Pedro Roque <roque@di.fc.ul.pt>
|
|
* Lars Fenneberg <lf@elemental.net>
|
|
*
|
|
* This software is Copyright 1996-2000 by the above mentioned author(s),
|
|
* All Rights Reserved.
|
|
*
|
|
* The license which is distributed with this software in the file COPYRIGHT
|
|
* applies to this software. If your distribution is missing this file, you
|
|
* may request it from <pekkas@netcore.fi>.
|
|
*
|
|
*/
|
|
#line 17 "scanner.l"
|
|
#include <config.h>
|
|
#include <includes.h>
|
|
#include <radvd.h>
|
|
#include <gram.h>
|
|
|
|
extern char *conf_file;
|
|
|
|
int num_lines = 1;
|
|
#line 1826 "scanner.c"
|
|
|
|
/* Macros after this point can all be overridden by user definitions in
|
|
* section 1.
|
|
*/
|
|
|
|
#ifndef YY_SKIP_YYWRAP
|
|
#ifdef __cplusplus
|
|
extern "C" int yywrap YY_PROTO(( void ));
|
|
#else
|
|
extern int yywrap YY_PROTO(( void ));
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef YY_NO_UNPUT
|
|
static void yyunput YY_PROTO(( int c, char *buf_ptr ));
|
|
#endif
|
|
|
|
#ifndef yytext_ptr
|
|
static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
|
|
#endif
|
|
|
|
#ifdef YY_NEED_STRLEN
|
|
static int yy_flex_strlen YY_PROTO(( yyconst char * ));
|
|
#endif
|
|
|
|
#ifndef YY_NO_INPUT
|
|
#ifdef __cplusplus
|
|
static int yyinput YY_PROTO(( void ));
|
|
#else
|
|
static int input YY_PROTO(( void ));
|
|
#endif
|
|
#endif
|
|
|
|
#if YY_STACK_USED
|
|
static int yy_start_stack_ptr = 0;
|
|
static int yy_start_stack_depth = 0;
|
|
static int *yy_start_stack = 0;
|
|
#ifndef YY_NO_PUSH_STATE
|
|
static void yy_push_state YY_PROTO(( int new_state ));
|
|
#endif
|
|
#ifndef YY_NO_POP_STATE
|
|
static void yy_pop_state YY_PROTO(( void ));
|
|
#endif
|
|
#ifndef YY_NO_TOP_STATE
|
|
static int yy_top_state YY_PROTO(( void ));
|
|
#endif
|
|
|
|
#else
|
|
#define YY_NO_PUSH_STATE 1
|
|
#define YY_NO_POP_STATE 1
|
|
#define YY_NO_TOP_STATE 1
|
|
#endif
|
|
|
|
#ifdef YY_MALLOC_DECL
|
|
YY_MALLOC_DECL
|
|
#else
|
|
#if __STDC__
|
|
#ifndef __cplusplus
|
|
#include <stdlib.h>
|
|
#endif
|
|
#else
|
|
/* Just try to get by without declaring the routines. This will fail
|
|
* miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
|
|
* or sizeof(void*) != sizeof(int).
|
|
*/
|
|
#endif
|
|
#endif
|
|
|
|
/* Amount of stuff to slurp up with each read. */
|
|
#ifndef YY_READ_BUF_SIZE
|
|
#define YY_READ_BUF_SIZE 8192
|
|
#endif
|
|
|
|
/* Copy whatever the last rule matched to the standard output. */
|
|
|
|
#ifndef ECHO
|
|
/* This used to be an fputs(), but since the string might contain NUL's,
|
|
* we now use fwrite().
|
|
*/
|
|
#define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
|
|
#endif
|
|
|
|
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
|
|
* is returned in "result".
|
|
*/
|
|
#ifndef YY_INPUT
|
|
#define YY_INPUT(buf,result,max_size) \
|
|
if ( yy_current_buffer->yy_is_interactive ) \
|
|
{ \
|
|
int c = '*', n; \
|
|
for ( n = 0; n < max_size && \
|
|
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
|
|
buf[n] = (char) c; \
|
|
if ( c == '\n' ) \
|
|
buf[n++] = (char) c; \
|
|
if ( c == EOF && ferror( yyin ) ) \
|
|
YY_FATAL_ERROR( "input in flex scanner failed" ); \
|
|
result = n; \
|
|
} \
|
|
else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
|
|
&& ferror( yyin ) ) \
|
|
YY_FATAL_ERROR( "input in flex scanner failed" );
|
|
#endif
|
|
|
|
/* No semi-colon after return; correct usage is to write "yyterminate();" -
|
|
* we don't want an extra ';' after the "return" because that will cause
|
|
* some compilers to complain about unreachable statements.
|
|
*/
|
|
#ifndef yyterminate
|
|
#define yyterminate() return YY_NULL
|
|
#endif
|
|
|
|
/* Number of entries by which start-condition stack grows. */
|
|
#ifndef YY_START_STACK_INCR
|
|
#define YY_START_STACK_INCR 25
|
|
#endif
|
|
|
|
/* Report a fatal error. */
|
|
#ifndef YY_FATAL_ERROR
|
|
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
|
|
#endif
|
|
|
|
/* Default declaration of generated scanner - a define so the user can
|
|
* easily add parameters.
|
|
*/
|
|
#ifndef YY_DECL
|
|
#define YY_DECL int yylex YY_PROTO(( void ))
|
|
#endif
|
|
|
|
/* Code executed at the beginning of each rule, after yytext and yyleng
|
|
* have been set up.
|
|
*/
|
|
#ifndef YY_USER_ACTION
|
|
#define YY_USER_ACTION
|
|
#endif
|
|
|
|
/* Code executed at the end of each rule. */
|
|
#ifndef YY_BREAK
|
|
#define YY_BREAK break;
|
|
#endif
|
|
|
|
#define YY_RULE_SETUP \
|
|
YY_USER_ACTION
|
|
|
|
YY_DECL
|
|
{
|
|
register yy_state_type yy_current_state;
|
|
register char *yy_cp = NULL, *yy_bp = NULL;
|
|
register int yy_act;
|
|
|
|
#line 38 "scanner.l"
|
|
|
|
|
|
#line 1980 "scanner.c"
|
|
|
|
if ( yy_init )
|
|
{
|
|
yy_init = 0;
|
|
|
|
#ifdef YY_USER_INIT
|
|
YY_USER_INIT;
|
|
#endif
|
|
|
|
if ( ! yy_start )
|
|
yy_start = 1; /* first start state */
|
|
|
|
if ( ! yyin )
|
|
yyin = stdin;
|
|
|
|
if ( ! yyout )
|
|
yyout = stdout;
|
|
|
|
if ( ! yy_current_buffer )
|
|
yy_current_buffer =
|
|
yy_create_buffer( yyin, YY_BUF_SIZE );
|
|
|
|
yy_load_buffer_state();
|
|
}
|
|
|
|
while ( 1 ) /* loops until end-of-file is reached */
|
|
{
|
|
yy_cp = yy_c_buf_p;
|
|
|
|
/* Support of yytext. */
|
|
*yy_cp = yy_hold_char;
|
|
|
|
/* yy_bp points to the position in yy_ch_buf of the start of
|
|
* the current run.
|
|
*/
|
|
yy_bp = yy_cp;
|
|
|
|
yy_current_state = yy_start;
|
|
yy_match:
|
|
do
|
|
{
|
|
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
|
|
if ( yy_accept[yy_current_state] )
|
|
{
|
|
yy_last_accepting_state = yy_current_state;
|
|
yy_last_accepting_cpos = yy_cp;
|
|
}
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
{
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
|
if ( yy_current_state >= 802 )
|
|
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] != 5225 );
|
|
|
|
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_cp = yy_hold_char; /* undo effects of setting up yytext */
|
|
yy_c_buf_p = yy_cp -= 1;
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */
|
|
YY_RULE_SETUP
|
|
#line 40 "scanner.l"
|
|
{/* ignore comments */}
|
|
YY_BREAK
|
|
case 2:
|
|
YY_RULE_SETUP
|
|
#line 41 "scanner.l"
|
|
{num_lines++;}
|
|
YY_BREAK
|
|
case 3:
|
|
YY_RULE_SETUP
|
|
#line 42 "scanner.l"
|
|
{}
|
|
YY_BREAK
|
|
case 4:
|
|
YY_RULE_SETUP
|
|
#line 44 "scanner.l"
|
|
{ return T_INTERFACE; }
|
|
YY_BREAK
|
|
case 5:
|
|
YY_RULE_SETUP
|
|
#line 45 "scanner.l"
|
|
{ return T_PREFIX; }
|
|
YY_BREAK
|
|
case 6:
|
|
YY_RULE_SETUP
|
|
#line 46 "scanner.l"
|
|
{ return T_ROUTE; }
|
|
YY_BREAK
|
|
case 7:
|
|
YY_RULE_SETUP
|
|
#line 47 "scanner.l"
|
|
{ return T_RDNSS; }
|
|
YY_BREAK
|
|
case 8:
|
|
YY_RULE_SETUP
|
|
#line 48 "scanner.l"
|
|
{ return T_CLIENTS; }
|
|
YY_BREAK
|
|
case 9:
|
|
YY_RULE_SETUP
|
|
#line 50 "scanner.l"
|
|
{ return T_IgnoreIfMissing; }
|
|
YY_BREAK
|
|
case 10:
|
|
YY_RULE_SETUP
|
|
#line 51 "scanner.l"
|
|
{ return T_AdvSendAdvert; }
|
|
YY_BREAK
|
|
case 11:
|
|
YY_RULE_SETUP
|
|
#line 52 "scanner.l"
|
|
{ return T_MaxRtrAdvInterval; }
|
|
YY_BREAK
|
|
case 12:
|
|
YY_RULE_SETUP
|
|
#line 53 "scanner.l"
|
|
{ return T_MinRtrAdvInterval; }
|
|
YY_BREAK
|
|
case 13:
|
|
YY_RULE_SETUP
|
|
#line 54 "scanner.l"
|
|
{ return T_AdvManagedFlag; }
|
|
YY_BREAK
|
|
case 14:
|
|
YY_RULE_SETUP
|
|
#line 55 "scanner.l"
|
|
{ return T_AdvOtherConfigFlag; }
|
|
YY_BREAK
|
|
case 15:
|
|
YY_RULE_SETUP
|
|
#line 56 "scanner.l"
|
|
{ return T_AdvLinkMTU; }
|
|
YY_BREAK
|
|
case 16:
|
|
YY_RULE_SETUP
|
|
#line 57 "scanner.l"
|
|
{ return T_AdvReachableTime; }
|
|
YY_BREAK
|
|
case 17:
|
|
YY_RULE_SETUP
|
|
#line 58 "scanner.l"
|
|
{ return T_AdvRetransTimer; }
|
|
YY_BREAK
|
|
case 18:
|
|
YY_RULE_SETUP
|
|
#line 59 "scanner.l"
|
|
{ return T_AdvCurHopLimit; }
|
|
YY_BREAK
|
|
case 19:
|
|
YY_RULE_SETUP
|
|
#line 60 "scanner.l"
|
|
{ return T_AdvDefaultLifetime; }
|
|
YY_BREAK
|
|
case 20:
|
|
YY_RULE_SETUP
|
|
#line 61 "scanner.l"
|
|
{ return T_AdvDefaultPreference; }
|
|
YY_BREAK
|
|
case 21:
|
|
YY_RULE_SETUP
|
|
#line 62 "scanner.l"
|
|
{ return T_AdvSourceLLAddress; }
|
|
YY_BREAK
|
|
case 22:
|
|
YY_RULE_SETUP
|
|
#line 64 "scanner.l"
|
|
{ return T_AdvOnLink; }
|
|
YY_BREAK
|
|
case 23:
|
|
YY_RULE_SETUP
|
|
#line 65 "scanner.l"
|
|
{ return T_AdvAutonomous; }
|
|
YY_BREAK
|
|
case 24:
|
|
YY_RULE_SETUP
|
|
#line 66 "scanner.l"
|
|
{ return T_AdvValidLifetime; }
|
|
YY_BREAK
|
|
case 25:
|
|
YY_RULE_SETUP
|
|
#line 67 "scanner.l"
|
|
{ return T_AdvPreferredLifetime; }
|
|
YY_BREAK
|
|
case 26:
|
|
YY_RULE_SETUP
|
|
#line 69 "scanner.l"
|
|
{ return T_AdvRouterAddr; }
|
|
YY_BREAK
|
|
case 27:
|
|
YY_RULE_SETUP
|
|
#line 70 "scanner.l"
|
|
{ return T_AdvHomeAgentFlag; }
|
|
YY_BREAK
|
|
case 28:
|
|
YY_RULE_SETUP
|
|
#line 71 "scanner.l"
|
|
{ return T_AdvIntervalOpt; }
|
|
YY_BREAK
|
|
case 29:
|
|
YY_RULE_SETUP
|
|
#line 72 "scanner.l"
|
|
{ return T_AdvHomeAgentInfo; }
|
|
YY_BREAK
|
|
case 30:
|
|
YY_RULE_SETUP
|
|
#line 73 "scanner.l"
|
|
{ return T_UnicastOnly; }
|
|
YY_BREAK
|
|
case 31:
|
|
YY_RULE_SETUP
|
|
#line 75 "scanner.l"
|
|
{ return T_Base6to4Interface; }
|
|
YY_BREAK
|
|
case 32:
|
|
YY_RULE_SETUP
|
|
#line 77 "scanner.l"
|
|
{ return T_HomeAgentPreference; }
|
|
YY_BREAK
|
|
case 33:
|
|
YY_RULE_SETUP
|
|
#line 78 "scanner.l"
|
|
{ return T_HomeAgentLifetime; }
|
|
YY_BREAK
|
|
case 34:
|
|
YY_RULE_SETUP
|
|
#line 80 "scanner.l"
|
|
{ return T_AdvRoutePreference; }
|
|
YY_BREAK
|
|
case 35:
|
|
YY_RULE_SETUP
|
|
#line 81 "scanner.l"
|
|
{ return T_AdvRouteLifetime; }
|
|
YY_BREAK
|
|
case 36:
|
|
YY_RULE_SETUP
|
|
#line 83 "scanner.l"
|
|
{ return T_AdvRDNSSPreference; }
|
|
YY_BREAK
|
|
case 37:
|
|
YY_RULE_SETUP
|
|
#line 84 "scanner.l"
|
|
{ return T_AdvRDNSSOpenFlag; }
|
|
YY_BREAK
|
|
case 38:
|
|
YY_RULE_SETUP
|
|
#line 85 "scanner.l"
|
|
{ return T_AdvRDNSSLifetime; }
|
|
YY_BREAK
|
|
case 39:
|
|
YY_RULE_SETUP
|
|
#line 87 "scanner.l"
|
|
{ return T_MinDelayBetweenRAs; }
|
|
YY_BREAK
|
|
case 40:
|
|
YY_RULE_SETUP
|
|
#line 89 "scanner.l"
|
|
{ return T_AdvMobRtrSupportFlag; }
|
|
YY_BREAK
|
|
case 41:
|
|
YY_RULE_SETUP
|
|
#line 91 "scanner.l"
|
|
{
|
|
static struct in6_addr addr;
|
|
if (inet_pton(AF_INET6, yytext, &addr) < 1) {
|
|
flog(LOG_ERR, "invalid address in %s, line %d", conf_file,
|
|
num_lines);
|
|
return T_BAD_TOKEN;
|
|
}
|
|
|
|
yylval.addr = &addr;
|
|
return IPV6ADDR;
|
|
}
|
|
YY_BREAK
|
|
case 42:
|
|
YY_RULE_SETUP
|
|
#line 103 "scanner.l"
|
|
{
|
|
unsigned long lnum;
|
|
char *endp;
|
|
lnum = strtoul(yytext, &endp, 10);
|
|
if (*yytext == '\0' || *endp != '\0')
|
|
return T_BAD_TOKEN;
|
|
if (lnum > 0xFFFFFFFFUL)
|
|
return T_BAD_TOKEN; /* XXX */
|
|
yylval.num = lnum;
|
|
return NUMBER;
|
|
}
|
|
YY_BREAK
|
|
case 43:
|
|
YY_RULE_SETUP
|
|
#line 115 "scanner.l"
|
|
{ yylval.snum = atoi(yytext); return SIGNEDNUMBER; }
|
|
YY_BREAK
|
|
case 44:
|
|
YY_RULE_SETUP
|
|
#line 117 "scanner.l"
|
|
{ yylval.dec = atof(yytext); return DECIMAL; }
|
|
YY_BREAK
|
|
case 45:
|
|
YY_RULE_SETUP
|
|
#line 119 "scanner.l"
|
|
{ return INFINITY; }
|
|
YY_BREAK
|
|
case 46:
|
|
YY_RULE_SETUP
|
|
#line 121 "scanner.l"
|
|
{ yylval.num = 1; return SWITCH; }
|
|
YY_BREAK
|
|
case 47:
|
|
YY_RULE_SETUP
|
|
#line 123 "scanner.l"
|
|
{ yylval.num = 0; return SWITCH; }
|
|
YY_BREAK
|
|
case 48:
|
|
YY_RULE_SETUP
|
|
#line 125 "scanner.l"
|
|
{ yylval.snum = -1; return SIGNEDNUMBER; }
|
|
YY_BREAK
|
|
case 49:
|
|
YY_RULE_SETUP
|
|
#line 127 "scanner.l"
|
|
{ yylval.snum = 0; return SIGNEDNUMBER; }
|
|
YY_BREAK
|
|
case 50:
|
|
YY_RULE_SETUP
|
|
#line 129 "scanner.l"
|
|
{ yylval.snum = 1; return SIGNEDNUMBER; }
|
|
YY_BREAK
|
|
case 51:
|
|
YY_RULE_SETUP
|
|
#line 131 "scanner.l"
|
|
{
|
|
static char name[IFNAMSIZ];
|
|
|
|
strncpy(name, yytext, IFNAMSIZ-1);
|
|
name[IFNAMSIZ-1] = '\0';
|
|
yylval.str = name;
|
|
return STRING;
|
|
}
|
|
YY_BREAK
|
|
case 52:
|
|
YY_RULE_SETUP
|
|
#line 140 "scanner.l"
|
|
{ return *yytext; }
|
|
YY_BREAK
|
|
case 53:
|
|
YY_RULE_SETUP
|
|
#line 142 "scanner.l"
|
|
{ return T_BAD_TOKEN; }
|
|
YY_BREAK
|
|
case 54:
|
|
YY_RULE_SETUP
|
|
#line 143 "scanner.l"
|
|
ECHO;
|
|
YY_BREAK
|
|
#line 2363 "scanner.c"
|
|
case YY_STATE_EOF(INITIAL):
|
|
yyterminate();
|
|
|
|
case YY_END_OF_BUFFER:
|
|
{
|
|
/* Amount of text matched not including the EOB char. */
|
|
int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;
|
|
|
|
/* Undo the effects of YY_DO_BEFORE_ACTION. */
|
|
*yy_cp = yy_hold_char;
|
|
YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
|
|
{
|
|
/* We're scanning a new file or input source. It's
|
|
* possible that this happened because the user
|
|
* just pointed yyin at a new source and called
|
|
* yylex(). If so, then we have to assure
|
|
* consistency between yy_current_buffer and our
|
|
* globals. Here is the right place to do so, because
|
|
* this is the first action (other than possibly a
|
|
* back-up) that will match for the new input source.
|
|
*/
|
|
yy_n_chars = yy_current_buffer->yy_n_chars;
|
|
yy_current_buffer->yy_input_file = yyin;
|
|
yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
|
|
}
|
|
|
|
/* Note that here we test for yy_c_buf_p "<=" to the position
|
|
* of the first EOB in the buffer, since yy_c_buf_p will
|
|
* already have been incremented past the NUL character
|
|
* (since all states make transitions on EOB to the
|
|
* end-of-buffer state). Contrast this with the test
|
|
* in input().
|
|
*/
|
|
if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
|
|
{ /* This was really a NUL. */
|
|
yy_state_type yy_next_state;
|
|
|
|
yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;
|
|
|
|
yy_current_state = yy_get_previous_state();
|
|
|
|
/* Okay, we're now positioned to make the NUL
|
|
* transition. We couldn't have
|
|
* yy_get_previous_state() go ahead and do it
|
|
* for us because it doesn't know how to deal
|
|
* with the possibility of jamming (and we don't
|
|
* want to build jamming into it because then it
|
|
* will run more slowly).
|
|
*/
|
|
|
|
yy_next_state = yy_try_NUL_trans( yy_current_state );
|
|
|
|
yy_bp = yytext_ptr + YY_MORE_ADJ;
|
|
|
|
if ( yy_next_state )
|
|
{
|
|
/* Consume the NUL. */
|
|
yy_cp = ++yy_c_buf_p;
|
|
yy_current_state = yy_next_state;
|
|
goto yy_match;
|
|
}
|
|
|
|
else
|
|
{
|
|
yy_cp = yy_c_buf_p;
|
|
goto yy_find_action;
|
|
}
|
|
}
|
|
|
|
else switch ( yy_get_next_buffer() )
|
|
{
|
|
case EOB_ACT_END_OF_FILE:
|
|
{
|
|
yy_did_buffer_switch_on_eof = 0;
|
|
|
|
if ( yywrap() )
|
|
{
|
|
/* Note: because we've taken care in
|
|
* yy_get_next_buffer() to have set up
|
|
* yytext, we can now set up
|
|
* yy_c_buf_p so that if some total
|
|
* hoser (like flex itself) wants to
|
|
* call the scanner after we return the
|
|
* YY_NULL, it'll still work - another
|
|
* YY_NULL will get returned.
|
|
*/
|
|
yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
|
|
|
|
yy_act = YY_STATE_EOF(YY_START);
|
|
goto do_action;
|
|
}
|
|
|
|
else
|
|
{
|
|
if ( ! yy_did_buffer_switch_on_eof )
|
|
YY_NEW_FILE;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
|
yy_c_buf_p =
|
|
yytext_ptr + yy_amount_of_matched_text;
|
|
|
|
yy_current_state = yy_get_previous_state();
|
|
|
|
yy_cp = yy_c_buf_p;
|
|
yy_bp = yytext_ptr + YY_MORE_ADJ;
|
|
goto yy_match;
|
|
|
|
case EOB_ACT_LAST_MATCH:
|
|
yy_c_buf_p =
|
|
&yy_current_buffer->yy_ch_buf[yy_n_chars];
|
|
|
|
yy_current_state = yy_get_previous_state();
|
|
|
|
yy_cp = yy_c_buf_p;
|
|
yy_bp = yytext_ptr + YY_MORE_ADJ;
|
|
goto yy_find_action;
|
|
}
|
|
break;
|
|
}
|
|
|
|
default:
|
|
YY_FATAL_ERROR(
|
|
"fatal flex scanner internal error--no action found" );
|
|
} /* end of action switch */
|
|
} /* end of scanning one token */
|
|
} /* end of yylex */
|
|
|
|
|
|
/* yy_get_next_buffer - try to read in a new buffer
|
|
*
|
|
* Returns a code representing an action:
|
|
* EOB_ACT_LAST_MATCH -
|
|
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
|
|
* EOB_ACT_END_OF_FILE - end of file
|
|
*/
|
|
|
|
static int yy_get_next_buffer()
|
|
{
|
|
register char *dest = yy_current_buffer->yy_ch_buf;
|
|
register char *source = yytext_ptr;
|
|
register int number_to_move, i;
|
|
int ret_val;
|
|
|
|
if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
|
|
YY_FATAL_ERROR(
|
|
"fatal flex scanner internal error--end of buffer missed" );
|
|
|
|
if ( yy_current_buffer->yy_fill_buffer == 0 )
|
|
{ /* Don't try to fill the buffer, so this is an EOF. */
|
|
if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
|
|
{
|
|
/* We matched a single character, the EOB, so
|
|
* treat this as a final EOF.
|
|
*/
|
|
return EOB_ACT_END_OF_FILE;
|
|
}
|
|
|
|
else
|
|
{
|
|
/* We matched some text prior to the EOB, first
|
|
* process it.
|
|
*/
|
|
return EOB_ACT_LAST_MATCH;
|
|
}
|
|
}
|
|
|
|
/* Try to read more data. */
|
|
|
|
/* First move last chars to start of buffer. */
|
|
number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;
|
|
|
|
for ( i = 0; i < number_to_move; ++i )
|
|
*(dest++) = *(source++);
|
|
|
|
if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
|
|
/* don't do the read, it's not guaranteed to return an EOF,
|
|
* just force an EOF
|
|
*/
|
|
yy_current_buffer->yy_n_chars = yy_n_chars = 0;
|
|
|
|
else
|
|
{
|
|
int num_to_read =
|
|
yy_current_buffer->yy_buf_size - number_to_move - 1;
|
|
|
|
while ( num_to_read <= 0 )
|
|
{ /* Not enough room in the buffer - grow it. */
|
|
#ifdef YY_USES_REJECT
|
|
YY_FATAL_ERROR(
|
|
"input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
|
|
#else
|
|
|
|
/* just a shorter name for the current buffer */
|
|
YY_BUFFER_STATE b = yy_current_buffer;
|
|
|
|
int yy_c_buf_p_offset =
|
|
(int) (yy_c_buf_p - b->yy_ch_buf);
|
|
|
|
if ( b->yy_is_our_buffer )
|
|
{
|
|
int new_size = b->yy_buf_size * 2;
|
|
|
|
if ( new_size <= 0 )
|
|
b->yy_buf_size += b->yy_buf_size / 8;
|
|
else
|
|
b->yy_buf_size *= 2;
|
|
|
|
b->yy_ch_buf = (char *)
|
|
/* Include room in for 2 EOB chars. */
|
|
yy_flex_realloc( (void *) b->yy_ch_buf,
|
|
b->yy_buf_size + 2 );
|
|
}
|
|
else
|
|
/* Can't grow it, we don't own it. */
|
|
b->yy_ch_buf = 0;
|
|
|
|
if ( ! b->yy_ch_buf )
|
|
YY_FATAL_ERROR(
|
|
"fatal error - scanner input buffer overflow" );
|
|
|
|
yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
|
|
|
|
num_to_read = yy_current_buffer->yy_buf_size -
|
|
number_to_move - 1;
|
|
#endif
|
|
}
|
|
|
|
if ( num_to_read > YY_READ_BUF_SIZE )
|
|
num_to_read = YY_READ_BUF_SIZE;
|
|
|
|
/* Read in more data. */
|
|
YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
|
|
yy_n_chars, num_to_read );
|
|
|
|
yy_current_buffer->yy_n_chars = yy_n_chars;
|
|
}
|
|
|
|
if ( yy_n_chars == 0 )
|
|
{
|
|
if ( number_to_move == YY_MORE_ADJ )
|
|
{
|
|
ret_val = EOB_ACT_END_OF_FILE;
|
|
yyrestart( yyin );
|
|
}
|
|
|
|
else
|
|
{
|
|
ret_val = EOB_ACT_LAST_MATCH;
|
|
yy_current_buffer->yy_buffer_status =
|
|
YY_BUFFER_EOF_PENDING;
|
|
}
|
|
}
|
|
|
|
else
|
|
ret_val = EOB_ACT_CONTINUE_SCAN;
|
|
|
|
yy_n_chars += number_to_move;
|
|
yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
|
|
yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
yytext_ptr = &yy_current_buffer->yy_ch_buf[0];
|
|
|
|
return ret_val;
|
|
}
|
|
|
|
|
|
/* yy_get_previous_state - get the state just before the EOB char was reached */
|
|
|
|
static yy_state_type yy_get_previous_state()
|
|
{
|
|
register yy_state_type yy_current_state;
|
|
register char *yy_cp;
|
|
|
|
yy_current_state = yy_start;
|
|
|
|
for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
|
|
{
|
|
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 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 >= 802 )
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
}
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
}
|
|
|
|
return yy_current_state;
|
|
}
|
|
|
|
|
|
/* yy_try_NUL_trans - try to make a transition on the NUL character
|
|
*
|
|
* synopsis
|
|
* next_state = yy_try_NUL_trans( current_state );
|
|
*/
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )
|
|
#else
|
|
static yy_state_type yy_try_NUL_trans( yy_current_state )
|
|
yy_state_type yy_current_state;
|
|
#endif
|
|
{
|
|
register int yy_is_jam;
|
|
register char *yy_cp = yy_c_buf_p;
|
|
|
|
register YY_CHAR yy_c = 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 >= 802 )
|
|
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 == 801);
|
|
|
|
return yy_is_jam ? 0 : yy_current_state;
|
|
}
|
|
|
|
|
|
#ifndef YY_NO_UNPUT
|
|
#ifdef YY_USE_PROTOS
|
|
static void yyunput( int c, register char *yy_bp )
|
|
#else
|
|
static void yyunput( c, yy_bp )
|
|
int c;
|
|
register char *yy_bp;
|
|
#endif
|
|
{
|
|
register char *yy_cp = yy_c_buf_p;
|
|
|
|
/* undo effects of setting up yytext */
|
|
*yy_cp = yy_hold_char;
|
|
|
|
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
|
|
{ /* need to shift things up to make room */
|
|
/* +2 for EOB chars. */
|
|
register int number_to_move = yy_n_chars + 2;
|
|
register char *dest = &yy_current_buffer->yy_ch_buf[
|
|
yy_current_buffer->yy_buf_size + 2];
|
|
register char *source =
|
|
&yy_current_buffer->yy_ch_buf[number_to_move];
|
|
|
|
while ( source > yy_current_buffer->yy_ch_buf )
|
|
*--dest = *--source;
|
|
|
|
yy_cp += (int) (dest - source);
|
|
yy_bp += (int) (dest - source);
|
|
yy_current_buffer->yy_n_chars =
|
|
yy_n_chars = yy_current_buffer->yy_buf_size;
|
|
|
|
if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
|
|
YY_FATAL_ERROR( "flex scanner push-back overflow" );
|
|
}
|
|
|
|
*--yy_cp = (char) c;
|
|
|
|
|
|
yytext_ptr = yy_bp;
|
|
yy_hold_char = *yy_cp;
|
|
yy_c_buf_p = yy_cp;
|
|
}
|
|
#endif /* ifndef YY_NO_UNPUT */
|
|
|
|
|
|
#ifndef YY_NO_INPUT
|
|
#ifdef __cplusplus
|
|
static int yyinput()
|
|
#else
|
|
static int input()
|
|
#endif
|
|
{
|
|
int c;
|
|
|
|
*yy_c_buf_p = yy_hold_char;
|
|
|
|
if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
|
|
{
|
|
/* yy_c_buf_p now points to the character we want to return.
|
|
* If this occurs *before* the EOB characters, then it's a
|
|
* valid NUL; if not, then we've hit the end of the buffer.
|
|
*/
|
|
if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
|
|
/* This was really a NUL. */
|
|
*yy_c_buf_p = '\0';
|
|
|
|
else
|
|
{ /* need more input */
|
|
int offset = yy_c_buf_p - yytext_ptr;
|
|
++yy_c_buf_p;
|
|
|
|
switch ( yy_get_next_buffer() )
|
|
{
|
|
case EOB_ACT_LAST_MATCH:
|
|
/* This happens because yy_g_n_b()
|
|
* sees that we've accumulated a
|
|
* token and flags that we need to
|
|
* try matching the token before
|
|
* proceeding. But for input(),
|
|
* there's no matching to consider.
|
|
* So convert the EOB_ACT_LAST_MATCH
|
|
* to EOB_ACT_END_OF_FILE.
|
|
*/
|
|
|
|
/* Reset buffer status. */
|
|
yyrestart( yyin );
|
|
|
|
/* fall through */
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
{
|
|
if ( yywrap() )
|
|
return EOF;
|
|
|
|
if ( ! yy_did_buffer_switch_on_eof )
|
|
YY_NEW_FILE;
|
|
#ifdef __cplusplus
|
|
return yyinput();
|
|
#else
|
|
return input();
|
|
#endif
|
|
}
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
|
yy_c_buf_p = yytext_ptr + offset;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */
|
|
*yy_c_buf_p = '\0'; /* preserve yytext */
|
|
yy_hold_char = *++yy_c_buf_p;
|
|
|
|
|
|
return c;
|
|
}
|
|
#endif /* YY_NO_INPUT */
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
void yyrestart( FILE *input_file )
|
|
#else
|
|
void yyrestart( input_file )
|
|
FILE *input_file;
|
|
#endif
|
|
{
|
|
if ( ! yy_current_buffer )
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
|
|
|
|
yy_init_buffer( yy_current_buffer, input_file );
|
|
yy_load_buffer_state();
|
|
}
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
|
|
#else
|
|
void yy_switch_to_buffer( new_buffer )
|
|
YY_BUFFER_STATE new_buffer;
|
|
#endif
|
|
{
|
|
if ( yy_current_buffer == new_buffer )
|
|
return;
|
|
|
|
if ( yy_current_buffer )
|
|
{
|
|
/* Flush out information for old buffer. */
|
|
*yy_c_buf_p = yy_hold_char;
|
|
yy_current_buffer->yy_buf_pos = yy_c_buf_p;
|
|
yy_current_buffer->yy_n_chars = yy_n_chars;
|
|
}
|
|
|
|
yy_current_buffer = new_buffer;
|
|
yy_load_buffer_state();
|
|
|
|
/* We don't actually know whether we did this switch during
|
|
* EOF (yywrap()) processing, but the only time this flag
|
|
* is looked at is after yywrap() is called, so it's safe
|
|
* to go ahead and always set it.
|
|
*/
|
|
yy_did_buffer_switch_on_eof = 1;
|
|
}
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
void yy_load_buffer_state( void )
|
|
#else
|
|
void yy_load_buffer_state()
|
|
#endif
|
|
{
|
|
yy_n_chars = yy_current_buffer->yy_n_chars;
|
|
yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
|
|
yyin = yy_current_buffer->yy_input_file;
|
|
yy_hold_char = *yy_c_buf_p;
|
|
}
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
|
|
#else
|
|
YY_BUFFER_STATE yy_create_buffer( file, size )
|
|
FILE *file;
|
|
int size;
|
|
#endif
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
|
|
b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
|
|
|
|
b->yy_buf_size = size;
|
|
|
|
/* yy_ch_buf has to be 2 characters longer than the size given because
|
|
* we need to put in 2 end-of-buffer characters.
|
|
*/
|
|
b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
|
|
if ( ! b->yy_ch_buf )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
|
|
|
|
b->yy_is_our_buffer = 1;
|
|
|
|
yy_init_buffer( b, file );
|
|
|
|
return b;
|
|
}
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
void yy_delete_buffer( YY_BUFFER_STATE b )
|
|
#else
|
|
void yy_delete_buffer( b )
|
|
YY_BUFFER_STATE b;
|
|
#endif
|
|
{
|
|
if ( ! b )
|
|
return;
|
|
|
|
if ( b == yy_current_buffer )
|
|
yy_current_buffer = (YY_BUFFER_STATE) 0;
|
|
|
|
if ( b->yy_is_our_buffer )
|
|
yy_flex_free( (void *) b->yy_ch_buf );
|
|
|
|
yy_flex_free( (void *) b );
|
|
}
|
|
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
|
|
#else
|
|
void yy_init_buffer( b, file )
|
|
YY_BUFFER_STATE b;
|
|
FILE *file;
|
|
#endif
|
|
|
|
|
|
{
|
|
yy_flush_buffer( b );
|
|
|
|
b->yy_input_file = file;
|
|
b->yy_fill_buffer = 1;
|
|
|
|
#if YY_ALWAYS_INTERACTIVE
|
|
b->yy_is_interactive = 1;
|
|
#else
|
|
#if YY_NEVER_INTERACTIVE
|
|
b->yy_is_interactive = 0;
|
|
#else
|
|
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
void yy_flush_buffer( YY_BUFFER_STATE b )
|
|
#else
|
|
void yy_flush_buffer( b )
|
|
YY_BUFFER_STATE b;
|
|
#endif
|
|
|
|
{
|
|
if ( ! b )
|
|
return;
|
|
|
|
b->yy_n_chars = 0;
|
|
|
|
/* We always need two end-of-buffer characters. The first causes
|
|
* a transition to the end-of-buffer state. The second causes
|
|
* a jam in that state.
|
|
*/
|
|
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
|
|
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
b->yy_buf_pos = &b->yy_ch_buf[0];
|
|
|
|
b->yy_at_bol = 1;
|
|
b->yy_buffer_status = YY_BUFFER_NEW;
|
|
|
|
if ( b == yy_current_buffer )
|
|
yy_load_buffer_state();
|
|
}
|
|
|
|
|
|
#ifndef YY_NO_SCAN_BUFFER
|
|
#ifdef YY_USE_PROTOS
|
|
YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )
|
|
#else
|
|
YY_BUFFER_STATE yy_scan_buffer( base, size )
|
|
char *base;
|
|
yy_size_t size;
|
|
#endif
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
|
|
if ( size < 2 ||
|
|
base[size-2] != YY_END_OF_BUFFER_CHAR ||
|
|
base[size-1] != YY_END_OF_BUFFER_CHAR )
|
|
/* They forgot to leave room for the EOB's. */
|
|
return 0;
|
|
|
|
b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
|
|
|
|
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
|
|
b->yy_buf_pos = b->yy_ch_buf = base;
|
|
b->yy_is_our_buffer = 0;
|
|
b->yy_input_file = 0;
|
|
b->yy_n_chars = b->yy_buf_size;
|
|
b->yy_is_interactive = 0;
|
|
b->yy_at_bol = 1;
|
|
b->yy_fill_buffer = 0;
|
|
b->yy_buffer_status = YY_BUFFER_NEW;
|
|
|
|
yy_switch_to_buffer( b );
|
|
|
|
return b;
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifndef YY_NO_SCAN_STRING
|
|
#ifdef YY_USE_PROTOS
|
|
YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )
|
|
#else
|
|
YY_BUFFER_STATE yy_scan_string( yy_str )
|
|
yyconst char *yy_str;
|
|
#endif
|
|
{
|
|
int len;
|
|
for ( len = 0; yy_str[len]; ++len )
|
|
;
|
|
|
|
return yy_scan_bytes( yy_str, len );
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifndef YY_NO_SCAN_BYTES
|
|
#ifdef YY_USE_PROTOS
|
|
YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )
|
|
#else
|
|
YY_BUFFER_STATE yy_scan_bytes( bytes, len )
|
|
yyconst char *bytes;
|
|
int len;
|
|
#endif
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
char *buf;
|
|
yy_size_t n;
|
|
int i;
|
|
|
|
/* Get memory for full buffer, including space for trailing EOB's. */
|
|
n = len + 2;
|
|
buf = (char *) yy_flex_alloc( n );
|
|
if ( ! buf )
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
|
|
|
|
for ( i = 0; i < len; ++i )
|
|
buf[i] = bytes[i];
|
|
|
|
buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
b = yy_scan_buffer( buf, n );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
|
|
|
|
/* It's okay to grow etc. this buffer, and we should throw it
|
|
* away when we're done.
|
|
*/
|
|
b->yy_is_our_buffer = 1;
|
|
|
|
return b;
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifndef YY_NO_PUSH_STATE
|
|
#ifdef YY_USE_PROTOS
|
|
static void yy_push_state( int new_state )
|
|
#else
|
|
static void yy_push_state( new_state )
|
|
int new_state;
|
|
#endif
|
|
{
|
|
if ( yy_start_stack_ptr >= yy_start_stack_depth )
|
|
{
|
|
yy_size_t new_size;
|
|
|
|
yy_start_stack_depth += YY_START_STACK_INCR;
|
|
new_size = yy_start_stack_depth * sizeof( int );
|
|
|
|
if ( ! yy_start_stack )
|
|
yy_start_stack = (int *) yy_flex_alloc( new_size );
|
|
|
|
else
|
|
yy_start_stack = (int *) yy_flex_realloc(
|
|
(void *) yy_start_stack, new_size );
|
|
|
|
if ( ! yy_start_stack )
|
|
YY_FATAL_ERROR(
|
|
"out of memory expanding start-condition stack" );
|
|
}
|
|
|
|
yy_start_stack[yy_start_stack_ptr++] = YY_START;
|
|
|
|
BEGIN(new_state);
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifndef YY_NO_POP_STATE
|
|
static void yy_pop_state()
|
|
{
|
|
if ( --yy_start_stack_ptr < 0 )
|
|
YY_FATAL_ERROR( "start-condition stack underflow" );
|
|
|
|
BEGIN(yy_start_stack[yy_start_stack_ptr]);
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifndef YY_NO_TOP_STATE
|
|
static int yy_top_state()
|
|
{
|
|
return yy_start_stack[yy_start_stack_ptr - 1];
|
|
}
|
|
#endif
|
|
|
|
#ifndef YY_EXIT_FAILURE
|
|
#define YY_EXIT_FAILURE 2
|
|
#endif
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
static void yy_fatal_error( yyconst char msg[] )
|
|
#else
|
|
static void yy_fatal_error( msg )
|
|
char msg[];
|
|
#endif
|
|
{
|
|
(void) fprintf( stderr, "%s\n", msg );
|
|
exit( YY_EXIT_FAILURE );
|
|
}
|
|
|
|
|
|
|
|
/* Redefine yyless() so it works in section 3 code. */
|
|
|
|
#undef yyless
|
|
#define yyless(n) \
|
|
do \
|
|
{ \
|
|
/* Undo effects of setting up yytext. */ \
|
|
yytext[yyleng] = yy_hold_char; \
|
|
yy_c_buf_p = yytext + n; \
|
|
yy_hold_char = *yy_c_buf_p; \
|
|
*yy_c_buf_p = '\0'; \
|
|
yyleng = n; \
|
|
} \
|
|
while ( 0 )
|
|
|
|
|
|
/* Internal utility routines. */
|
|
|
|
#ifndef yytext_ptr
|
|
#ifdef YY_USE_PROTOS
|
|
static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )
|
|
#else
|
|
static void yy_flex_strncpy( s1, s2, n )
|
|
char *s1;
|
|
yyconst char *s2;
|
|
int n;
|
|
#endif
|
|
{
|
|
register int i;
|
|
for ( i = 0; i < n; ++i )
|
|
s1[i] = s2[i];
|
|
}
|
|
#endif
|
|
|
|
#ifdef YY_NEED_STRLEN
|
|
#ifdef YY_USE_PROTOS
|
|
static int yy_flex_strlen( yyconst char *s )
|
|
#else
|
|
static int yy_flex_strlen( s )
|
|
yyconst char *s;
|
|
#endif
|
|
{
|
|
register int n;
|
|
for ( n = 0; s[n]; ++n )
|
|
;
|
|
|
|
return n;
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
static void *yy_flex_alloc( yy_size_t size )
|
|
#else
|
|
static void *yy_flex_alloc( size )
|
|
yy_size_t size;
|
|
#endif
|
|
{
|
|
return (void *) malloc( size );
|
|
}
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
static void *yy_flex_realloc( void *ptr, yy_size_t size )
|
|
#else
|
|
static void *yy_flex_realloc( ptr, size )
|
|
void *ptr;
|
|
yy_size_t size;
|
|
#endif
|
|
{
|
|
/* The cast to (char *) in the following accommodates both
|
|
* implementations that use char* generic pointers, and those
|
|
* that use void* generic pointers. It works with the latter
|
|
* because both ANSI C and C++ allow castless assignment from
|
|
* any pointer type to void*, and deal with argument conversions
|
|
* as though doing an assignment.
|
|
*/
|
|
return (void *) realloc( (char *) ptr, size );
|
|
}
|
|
|
|
#ifdef YY_USE_PROTOS
|
|
static void yy_flex_free( void *ptr )
|
|
#else
|
|
static void yy_flex_free( ptr )
|
|
void *ptr;
|
|
#endif
|
|
{
|
|
free( ptr );
|
|
}
|
|
|
|
#if YY_MAIN
|
|
int main()
|
|
{
|
|
yylex();
|
|
return 0;
|
|
}
|
|
#endif
|
|
#line 143 "scanner.l"
|
|
|