Difference for common/loader.c from version 1.88 to 1.89


version 1.88 version 1.89
Line 1
 
Line 1
 /* A lexical scanner generated by flex*/  
   
 /* Scanner skeleton version:  #line 3 "loader.c"
  * $Header: /cvsroot/crossfire/crossfire/common/loader.c,v 1.88 2006/06/06 22:16:24 ryo_saeba Exp $  
  */  #define  YY_INT_ALIGNED short int
   
   /* A lexical scanner generated by flex */
   
 #define FLEX_SCANNER  #define FLEX_SCANNER
 #define YY_FLEX_MAJOR_VERSION 2  #define YY_FLEX_MAJOR_VERSION 2
 #define YY_FLEX_MINOR_VERSION 5  #define YY_FLEX_MINOR_VERSION 5
   #define YY_FLEX_SUBMINOR_VERSION 33
   #if YY_FLEX_SUBMINOR_VERSION > 0
   #define FLEX_BETA
   #endif
   
   /* First, we deal with  platform-specific or compiler-specific issues. */
   
   /* begin standard C headers. */
 #include <stdio.h>  #include <stdio.h>
 #ifndef WIN32  #include <string.h>
 #include <unistd.h>  #include <errno.h>
   #include <stdlib.h>
   
   /* end standard C headers. */
   
   /* flex integer type definitions */
   
   #ifndef FLEXINT_H
   #define FLEXINT_H
   
   /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
   
   #if __STDC_VERSION__ >= 199901L
   
   /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
    * if you want the limit (max/min) macros for int types.
    */
   #ifndef __STDC_LIMIT_MACROS
   #define __STDC_LIMIT_MACROS 1
 #endif  #endif
   
   #include <inttypes.h>
   typedef int8_t flex_int8_t;
   typedef uint8_t flex_uint8_t;
   typedef int16_t flex_int16_t;
   typedef uint16_t flex_uint16_t;
   typedef int32_t flex_int32_t;
   typedef uint32_t flex_uint32_t;
   #else
   typedef signed char flex_int8_t;
   typedef short int flex_int16_t;
   typedef int flex_int32_t;
   typedef unsigned char flex_uint8_t;
   typedef unsigned short int flex_uint16_t;
   typedef unsigned int flex_uint32_t;
   #endif /* ! C99 */
   
 /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */  /* Limits of integral types. */
 #ifdef c_plusplus  #ifndef INT8_MIN
 #ifndef __cplusplus  #define INT8_MIN               (-128)
 #define __cplusplus  #endif
   #ifndef INT16_MIN
   #define INT16_MIN              (-32767-1)
   #endif
   #ifndef INT32_MIN
   #define INT32_MIN              (-2147483647-1)
   #endif
   #ifndef INT8_MAX
   #define INT8_MAX               (127)
   #endif
   #ifndef INT16_MAX
   #define INT16_MAX              (32767)
   #endif
   #ifndef INT32_MAX
   #define INT32_MAX              (2147483647)
   #endif
   #ifndef UINT8_MAX
   #define UINT8_MAX              (255U)
   #endif
   #ifndef UINT16_MAX
   #define UINT16_MAX             (65535U)
 #endif  #endif
   #ifndef UINT32_MAX
   #define UINT32_MAX             (4294967295U)
 #endif  #endif
   
   #endif /* ! FLEXINT_H */
   
 #ifdef __cplusplus  #ifdef __cplusplus
   
 #include <stdlib.h>  
   
 /* Use prototypes in function declarations. */  
 #define YY_USE_PROTOS  
   
 /* The "const" storage-class-modifier is valid. */  /* The "const" storage-class-modifier is valid. */
 #define YY_USE_CONST  #define YY_USE_CONST
   
Line 36
 
Line 95
   
 #if __STDC__  #if __STDC__
   
 #define YY_USE_PROTOS  
 #define YY_USE_CONST  #define YY_USE_CONST
   
 #endif /* __STDC__ */  #endif /* __STDC__ */
 #endif /* ! __cplusplus */  #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  #ifdef YY_USE_CONST
 #define yyconst const  #define yyconst const
 #else  #else
 #define yyconst  #define yyconst
 #endif  #endif
   
   
 #ifdef YY_USE_PROTOS  
 #define YY_PROTO(proto) proto  
 #else  
 #define YY_PROTO(proto) ()  
 #endif  
   
 /* Returned upon end-of-file. */  /* Returned upon end-of-file. */
 #define YY_NULL 0  #define YY_NULL 0
   
Line 78
 
Line 120
  * but we do it the disgusting crufty way forced on us by the ()-less   * but we do it the disgusting crufty way forced on us by the ()-less
  * definition of BEGIN.   * definition of BEGIN.
  */   */
 #define BEGIN yy_start = 1 + 2 *  #define BEGIN (yy_start) = 1 + 2 *
   
 /* Translate the current start state into a value that can be later handed  /* 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   * to BEGIN to return to the state.  The YYSTATE alias is for lex
  * compatibility.   * compatibility.
  */   */
 #define YY_START ((yy_start - 1) / 2)  #define YY_START (((yy_start) - 1) / 2)
 #define YYSTATE YY_START  #define YYSTATE YY_START
   
 /* Action number for EOF rule of a given start state. */  /* Action number for EOF rule of a given start state. */
Line 96
 
Line 138
 #define YY_END_OF_BUFFER_CHAR 0  #define YY_END_OF_BUFFER_CHAR 0
   
 /* Size of default input buffer. */  /* Size of default input buffer. */
   #ifndef YY_BUF_SIZE
 #define YY_BUF_SIZE 16384  #define YY_BUF_SIZE 16384
   #endif
   
   /* The state buf must be large enough to hold one state per character in the main buffer.
    */
   #define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
   
   #ifndef YY_TYPEDEF_YY_BUFFER_STATE
   #define YY_TYPEDEF_YY_BUFFER_STATE
 typedef struct yy_buffer_state *YY_BUFFER_STATE;  typedef struct yy_buffer_state *YY_BUFFER_STATE;
   #endif
   
 extern int yyleng;  extern int yyleng;
   
 extern FILE *yyin, *yyout;  extern FILE *yyin, *yyout;
   
 #define EOB_ACT_CONTINUE_SCAN 0  #define EOB_ACT_CONTINUE_SCAN 0
 #define EOB_ACT_END_OF_FILE 1  #define EOB_ACT_END_OF_FILE 1
 #define EOB_ACT_LAST_MATCH 2  #define EOB_ACT_LAST_MATCH 2
   
 /* The funky do-while in the following #define is used to turn the definition      #define YY_LESS_LINENO(n)
  * 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. */  
   
   /* Return all but the first "n" matched characters back to the input stream. */
 #define yyless(n) \  #define yyless(n) \
  do \   do \
  { \   { \
  /* Undo effects of setting up yytext. */ \   /* Undo effects of setting up yytext. */ \
  *yy_cp = yy_hold_char; \          int yyless_macro_arg = (n); \
           YY_LESS_LINENO(yyless_macro_arg);\
    *yy_cp = (yy_hold_char); \
  YY_RESTORE_YY_MORE_OFFSET \   YY_RESTORE_YY_MORE_OFFSET \
  yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \   (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
  YY_DO_BEFORE_ACTION; /* set up yytext again */ \   YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  } \   } \
  while ( 0 )   while ( 0 )
   
 #define unput(c) yyunput( c, yytext_ptr )  #define unput(c) yyunput( c, (yytext_ptr)  )
   
 /* Some routines like yy_flex_realloc() are emitted as static but are  
    not called by all lexers. This generates warnings in some compilers,  
    notably GCC. Arrange to suppress these. */  
 #ifdef __GNUC__  
 #define YY_MAY_BE_UNUSED __attribute__((unused))  
 #else  
 #define YY_MAY_BE_UNUSED  
 #endif  
   
 /* The following is because we cannot portably get our hands on size_t  /* The following is because we cannot portably get our hands on size_t
  * (without autoconf's help, which isn't available because we want   * (without autoconf's help, which isn't available because we want
  * flex-generated scanners to compile on their own).   * flex-generated scanners to compile on their own).
  */   */
 typedef unsigned int yy_size_t;  
   
   #ifndef YY_TYPEDEF_YY_SIZE_T
   #define YY_TYPEDEF_YY_SIZE_T
   typedef unsigned int yy_size_t;
   #endif
   
   #ifndef YY_STRUCT_YY_BUFFER_STATE
   #define YY_STRUCT_YY_BUFFER_STATE
 struct yy_buffer_state  struct yy_buffer_state
  {   {
  FILE *yy_input_file;   FILE *yy_input_file;
Line 188
 
Line 225
  */   */
  int yy_at_bol;   int yy_at_bol;
   
       int yy_bs_lineno; /**< The line count. */
       int yy_bs_column; /**< The column count. */
      
  /* Whether to try to fill the input buffer when we reach the   /* Whether to try to fill the input buffer when we reach the
  * end of it.   * end of it.
  */   */
  int yy_fill_buffer;   int yy_fill_buffer;
   
  int yy_buffer_status;   int yy_buffer_status;
   
 #define YY_BUFFER_NEW 0  #define YY_BUFFER_NEW 0
 #define YY_BUFFER_NORMAL 1  #define YY_BUFFER_NORMAL 1
  /* When an EOF's been seen but there's still some text to process   /* When an EOF's been seen but there's still some text to process
Line 207
 
Line 248
  * just pointing yyin at a new input file.   * just pointing yyin at a new input file.
  */   */
 #define YY_BUFFER_EOF_PENDING 2  #define YY_BUFFER_EOF_PENDING 2
   
  };   };
   #endif /* !YY_STRUCT_YY_BUFFER_STATE */
   
 static YY_BUFFER_STATE yy_current_buffer = 0;  /* Stack of input buffers. */
   static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
   static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
   static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
   
 /* We provide macros for accessing buffer states in case in the  /* We provide macros for accessing buffer states in case in the
  * future we want to put the buffer states in a more general   * future we want to put the buffer states in a more general
  * "scanner state".   * "scanner state".
    *
    * Returns the top of the stack, or NULL.
  */   */
 #define YY_CURRENT_BUFFER yy_current_buffer  #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
                             ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
                             : NULL)
   
   /* Same as previous macro, but useful when we know that the buffer stack is not
    * NULL or when we need an lvalue. For internal use only.
    */
   #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
   
 /* yy_hold_char holds the character lost when yytext is formed. */  /* yy_hold_char holds the character lost when yytext is formed. */
 static char yy_hold_char;  static char yy_hold_char;
   
 static int yy_n_chars; /* number of characters read into yy_ch_buf */  static int yy_n_chars; /* number of characters read into yy_ch_buf */
   
   
 int yyleng;  int yyleng;
   
 /* Points to current character in buffer. */  /* Points to current character in buffer. */
 static char *yy_c_buf_p = (char *) 0;  static char *yy_c_buf_p = (char *) 0;
 static int yy_init = 1; /* whether we need to initialize */  static int yy_init = 0; /* whether we need to initialize */
 static int yy_start = 0; /* start state number */  static int yy_start = 0; /* start state number */
   
 /* Flag which is used to allow yywrap()'s to do buffer switches  /* Flag which is used to allow yywrap()'s to do buffer switches
Line 236
 
Line 287
  */   */
 static int yy_did_buffer_switch_on_eof;  static int yy_did_buffer_switch_on_eof;
   
 void yyrestart YY_PROTO(( FILE *input_file ));  void yyrestart (FILE *input_file  );
   void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
 void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));  YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
 void yy_load_buffer_state YY_PROTO(( void ));  void yy_delete_buffer (YY_BUFFER_STATE b  );
 YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));  void yy_flush_buffer (YY_BUFFER_STATE b  );
 void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));  void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
 void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));  void yypop_buffer_state (void );
 void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));  
 #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )  static void yyensure_buffer_stack (void );
   static void yy_load_buffer_state (void );
 YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));  static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );
 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 ));  #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
   
 static void *yy_flex_alloc YY_PROTO(( yy_size_t ));  YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
 static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )) YY_MAY_BE_UNUSED;  YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
 static void yy_flex_free YY_PROTO(( void * ));  YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );
   
   void *yyalloc (yy_size_t  );
   void *yyrealloc (void *,yy_size_t  );
   void yyfree (void *  );
   
 #define yy_new_buffer yy_create_buffer  #define yy_new_buffer yy_create_buffer
   
 #define yy_set_interactive(is_interactive) \  #define yy_set_interactive(is_interactive) \
  { \   { \
  if ( ! yy_current_buffer ) \   if ( ! YY_CURRENT_BUFFER ){ \
  yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \          yyensure_buffer_stack (); \
  yy_current_buffer->yy_is_interactive = is_interactive; \   YY_CURRENT_BUFFER_LVALUE =    \
               yy_create_buffer(yyin,YY_BUF_SIZE ); \
    } \
    YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
  }   }
   
 #define yy_set_bol(at_bol) \  #define yy_set_bol(at_bol) \
  { \   { \
  if ( ! yy_current_buffer ) \   if ( ! YY_CURRENT_BUFFER ){\
  yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \          yyensure_buffer_stack (); \
  yy_current_buffer->yy_at_bol = at_bol; \   YY_CURRENT_BUFFER_LVALUE =    \
               yy_create_buffer(yyin,YY_BUF_SIZE ); \
    } \
    YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
  }   }
   
 #define YY_AT_BOL() (yy_current_buffer->yy_at_bol)  #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
   
   /* Begin user sect3 */
   
 #define yywrap() 1  #define yywrap(n) 1
 #define YY_SKIP_YYWRAP  #define YY_SKIP_YYWRAP
   
 typedef unsigned char YY_CHAR;  typedef unsigned char YY_CHAR;
   
 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;  FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
   
 typedef int yy_state_type;  typedef int yy_state_type;
   
   extern int yylineno;
   
   int yylineno = 1;
   
 extern char *yytext;  extern char *yytext;
 #define yytext_ptr yytext  #define yytext_ptr yytext
   
 static yy_state_type yy_get_previous_state YY_PROTO(( void ));  static yy_state_type yy_get_previous_state (void );
 static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));  static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
 static int yy_get_next_buffer YY_PROTO(( void ));  static int yy_get_next_buffer (void );
 static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));  static void yy_fatal_error (yyconst char msg[]  );
   
 /* Done after the current pattern has been matched and before the  /* Done after the current pattern has been matched and before the
  * corresponding action - sets up yytext.   * corresponding action - sets up yytext.
  */   */
 #define YY_DO_BEFORE_ACTION \  #define YY_DO_BEFORE_ACTION \
  yytext_ptr = yy_bp; \   (yytext_ptr) = yy_bp; \
  yyleng = (int) (yy_cp - yy_bp); \   yyleng = (size_t) (yy_cp - yy_bp); \
  yy_hold_char = *yy_cp; \   (yy_hold_char) = *yy_cp; \
  *yy_cp = '\0'; \   *yy_cp = '\0'; \
  yy_c_buf_p = yy_cp;   (yy_c_buf_p) = yy_cp;
   
 #define YY_NUM_RULES 280  #define YY_NUM_RULES 244
 #define YY_END_OF_BUFFER 281  #define YY_END_OF_BUFFER 245
 static yyconst short int yy_accept[2510] =  /* This struct is not used in this scanner,
      but its presence is necessary. */
   struct yy_trans_info
    {
    flex_int32_t yy_verify;
    flex_int32_t yy_nxt;
    };
   static yyconst flex_int16_t yy_accept[2179] =
     {   0,      {   0,
       279,  279,    3,    3,    6,    6,    0,    0,  281,  279,        243,  243,    3,    3,    6,    6,    0,    0,  245,  243,
       277,  279,  279,  279,  279,  279,  279,  279,  279,  279,        241,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,    3,    3,    3,    6,        243,  243,  243,  243,  243,  243,    3,    3,    3,    6,
         6,    6,  280,  280,  279,  279,  278,  279,  277,  279,          6,    6,  244,  244,  243,  243,  242,  243,  241,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,    3,    3,    3,        243,  243,  243,  243,  243,  243,    3,    3,    3,    3,
         3,    6,    6,    6,    6,    0,  277,  279,  279,  279,          6,    6,    6,    6,    0,  241,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,   48,   48,  279,   49,   49,    3,    6,   47,         48,   48,  243,   49,   49,    3,    6,   47,   47,  243,
        47,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,  279,  279,  279,  279,   19,  279,  279,  279,  279,        243,  243,  243,   19,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,   36,   36,  243,
        36,   36,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,    1,  279,  279,  279,  279,        243,  243,    1,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,   38,        243,  243,  243,  243,  243,  243,   38,   38,  243,  243,
        38,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,   46,   46,  279,  279,  279,  279,  279,         46,   46,  243,  243,  243,  243,  243,  243,    3,    6,
       279,    3,    6,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,   33,   33,  279,        243,  243,  243,  243,   33,   33,  243,  243,   31,   31,
       279,   31,   31,  279,  279,  279,  279,  279,  279,   45,        243,  243,  243,  243,  243,  243,   45,   45,  243,  243,
        45,  279,  279,   30,   30,  279,  279,  279,  279,  279,         30,   30,  243,  243,  243,  243,  243,   42,   42,  243,
       279,   42,   42,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,   34,   34,  279,        243,  243,  243,   34,   34,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,    4,  243,  243,  243,
         4,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,   18,  243,  243,
       279,   18,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,   35,   35,  279,  279,  279,        243,   35,   35,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,   29,   29,        243,  243,  243,  243,   29,   29,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,   32,   32,        243,  243,  243,  243,   32,   32,  119,  119,  243,    3,
       119,  119,  279,    3,    6,  279,  279,  279,  279,  279,          6,  243,  243,  243,  243,  243,   15,   15,  243,  243,
   
        15,   15,  279,  279,  279,  279,  279,  279,  233,  279,        243,  243,  243,  243,  233,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,   28,   28,        243,  243,  243,   28,   28,  243,  243,  243,   44,   44,
       279,  279,  279,   44,   44,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  124,  124,  279,        243,  243,  124,  124,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,    8,    8,  243,
       279,  279,    8,    8,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,   50,   50,        243,  243,  243,   50,   50,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,   12,   12,  243,  243,
       279,   12,   12,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,   53,        243,  243,  243,  243,   53,   53,  243,  243,  243,  243,
        53,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,    3,
       279,  279,  279,  279,    3,    6,  279,   67,   67,  279,          6,  243,   67,   67,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,   40,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,         40,  243,  243,  243,  243,  243,  243,  243,  243,  243,
        40,   40,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,   51,   51,  243,
       279,  279,  279,  279,  279,  279,  279,  279,   51,   51,         65,   65,  243,  243,  243,  243,   37,   37,   39,   39,
       279,   65,   65,  279,  279,  279,  279,   37,   37,   39,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
        39,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  235,  235,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  235,  235,  279,  279,        243,  243,  243,  243,   10,   10,  243,  148,  148,  243,
   
       279,  279,  279,  279,  279,   10,   10,  279,  148,  148,        243,   24,   24,  243,  243,  243,  243,   66,   66,  243,
       279,  279,   24,   24,  279,  279,  279,  279,   66,   66,        243,  243,   27,   27,  243,  243,  243,  243,  243,  243,
       279,  279,  279,   27,   27,  279,  279,  279,  279,  279,        243,   57,   57,  243,  243,  243,  243,  243,  243,  243,
       279,  279,   57,   57,  279,  279,  279,  279,  279,  279,        144,  144,    3,    2,    6,  243,  243,  243,  243,  154,
       279,  144,  144,    3,    2,    6,  279,  279,  279,  279,        154,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       154,  154,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  193,  193,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  193,  193,  279,        194,  194,  243,  243,  243,  243,  243,  203,  203,  243,
       279,  194,  194,  279,  279,  279,  279,  279,  279,  279,         79,   79,   81,   81,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  203,        243,  181,  181,  243,  243,  243,  243,  243,  243,  243,
   
       203,  279,   79,   79,   81,   81,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  181,  181,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,    7,    7,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,    7,    7,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  114,  114,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  114,  114,  279,        243,  243,  113,  113,  204,  204,   69,   69,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,   58,   58,  243,    6,    5,  243,
       279,  279,  279,  279,  113,  113,  204,  204,   69,   69,        243,  243,   68,   68,  243,  243,  243,  243,  220,  220,
       279,  279,  279,  279,  279,  279,   58,   58,  279,    6,        243,  243,  243,  224,  224,  243,  243,  243,  243,  243,
         5,  279,  279,  279,   68,   68,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       220,  220,  279,  279,  279,  224,  224,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,   80,   80,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  108,  108,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,   80,   80,  279,        243,  243,  243,  243,  243,   21,   21,  243,  243,  243,
       279,  279,  279,  279,  108,  108,  279,  279,  279,  279,        243,  243,  243,   89,   89,  243,  243,  243,   85,   85,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,    9,    9,   70,   70,   71,   71,   90,
       279,  279,  279,  279,  279,  279,  279,  279,   21,   21,         90,  243,  243,  131,  131,  243,  243,   76,   76,   73,
       279,  279,  279,  279,  279,  279,   89,   89,  279,  279,         73,  243,  243,  243,  219,  219,  243,  243,  243,  243,
       279,   85,   85,  279,  279,  279,    9,    9,   70,   70,        243,  243,  243,  126,  126,  243,  243,  243,  243,  243,
        71,   71,   90,   90,  279,  279,  131,  131,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
        76,   76,   73,   73,  279,  279,  279,  219,  219,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  126,  126,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,   13,   13,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  191,  191,   54,   54,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,   77,   77,  120,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        120,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,   13,   13,  279,  279,  279,  279,  279,  279,  191,        243,  243,  243,  243,  243,  243,  243,  100,  100,  243,
       191,   54,   54,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
        77,   77,  120,  120,  279,  279,  279,  279,  279,  279,        243,   59,   59,  243,  106,  106,  243,  243,  190,  190,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  234,  234,  243,  111,
       100,  100,  279,  279,  279,  279,  279,  279,  279,  279,        111,  243,  243,   93,   93,  243,  243,  243,  243,  243,
       279,  279,  279,  279,   59,   59,  279,  106,  106,  279,        243,  243,   14,  243,  243,  214,  214,  243,  243,  145,
       279,  190,  190,  279,  279,  279,  279,  279,  279,  234,        145,  208,  208,  243,  243,  243,  243,  209,  209,  243,
       234,  279,  111,  111,  279,  279,  279,  279,  279,  279,        243,  243,  243,   23,   23,  243,  243,  146,  146,  243,
       279,  279,  279,  279,  279,  279,  279,  279,   93,   93,        243,   55,   55,  243,   41,   41,  243,  243,   86,   86,
       279,  279,  279,  279,  279,  279,  279,   14,  279,  279,        243,  243,  243,  243,  243,  243,  243,  118,  118,  243,
   
       214,  214,  279,  279,  145,  145,  208,  208,  279,  279,        218,  218,  243,  243,  243,  243,  243,  243,  243,   43,
       279,  279,  209,  209,  279,  279,  279,  279,   23,   23,         43,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  146,  146,  279,  279,   55,   55,  279,   41,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
        41,  279,  279,   86,   86,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  118,  118,  279,  218,  218,  279,  279,  279,        243,  243,  243,  243,  125,  125,  243,  243,  243,  243,
       279,  279,  279,  279,   43,   43,  279,  279,  279,  279,        243,  243,  243,  243,  243,  227,  227,   98,   98,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,   78,   78,  243,  243,  243,  243,   17,   17,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  134,  134,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  125,        243,  222,  222,  243,  243,  243,  243,  243,  243,  243,
       125,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  192,  192,
   
       227,  227,   98,   98,  279,  279,  279,   78,   78,  279,        130,  130,  243,  243,  243,   52,   52,  243,  243,  229,
       279,  279,  279,   17,   17,  279,  279,  279,  279,  279,        229,  243,   94,   94,  243,  243,  243,  243,  243,  243,
       134,  134,  279,  279,  279,  279,  222,  222,  279,  279,        243,  243,   64,   64,  243,  243,  243,  243,   96,   96,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  207,  207,  243,  243,  243,  243,   20,   20,
       279,  279,  279,  192,  192,  130,  130,  279,  279,  279,        243,  231,  231,  243,  243,  243,   87,   87,  243,  243,
        52,   52,  279,  279,  229,  229,  279,  279,  279,  279,         84,   84,   91,   91,   92,   92,  243,  243,  243,  243,
       279,  279,  279,  255,  255,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  182,  182,  243,  243,  243,
       279,  279,  279,  279,  279,   94,   94,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,   64,   64,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,   96,   96,  279,  279,  207,  207,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
   
       279,   20,   20,  279,  231,  231,  279,  279,  279,   87,        243,   26,   26,  243,  243,  107,  107,  243,  243,  123,
        87,  279,  279,   84,   84,   91,   91,   92,   92,  279,        123,  243,  243,  243,  243,  243,  243,  129,  129,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  182,  182,         60,   60,   97,   97,  243,  110,  110,  243,  243,  223,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        223,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  279,  279,   26,   26,  279,  279,  107,  107,        243,  104,  104,  206,  206,  243,  243,  243,  243,  243,
       279,  279,  123,  123,  279,  279,  279,  279,  279,  279,        103,  103,  127,  127,  243,  243,   22,   22,  243,  243,
       129,  129,  279,   60,   60,   97,   97,  279,  110,  110,         83,   83,   82,   82,  243,  189,  189,  243,  243,  243,
       279,  279,  223,  223,  279,  279,  279,  279,  279,  279,        243,   16,   16,  243,  243,  243,  243,  243,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  105,  105,  243,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       279,  279,  249,  249,  279,  279,  279,  279,  279,  258,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       258,  279,  279,  279,  279,  261,  261,  279,  279,  279,        243,  243,  243,  243,   25,   25,  243,  109,  109,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  183,  183,  226,  226,  132,  132,  243,  243,  243,
       279,  104,  104,  206,  206,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  139,  139,  243,  243,
       103,  103,  127,  127,  279,  279,   22,   22,  279,  279,        243,  201,  201,  243,  243,  243,  243,  243,  243,  243,
        83,   83,   82,   82,  279,  189,  189,  279,  279,  279,        243,  232,  232,  243,   11,   11,  243,  243,  243,  243,
       279,   16,   16,  279,  279,  279,  279,  279,  279,  279,        213,  213,  243,  243,  243,  243,  243,  243,  243,   72,
       279,  279,  279,  105,  105,  279,  279,  279,  279,  279,         72,  243,  216,  216,  243,  102,  102,  243,  243,  243,
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  147,  147,  151,  151,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,         63,   63,  243,  150,  150,  243,  217,  217,  243,  243,
       279,  279,  279,  279,   25,   25,  279,  109,  109,  279,        243,  161,  161,  243,  243,  243,  159,  159,  243,  243,
       279,  183,  183,  226,  226,  132,  132,  279,  279,  279,        243,  243,  243,  243,  243,  169,  169,  157,  157,  243,
       279,  279,  279,  279,  279,  279,  139,  139,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  166,  166,
       279,  201,  201,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  230,  230,  149,  149,  243,  243,
       279,  232,  232,  279,   11,   11,  279,  279,  279,  240,        243,  243,  243,  199,  199,  243,  243,  243,  243,  243,
       240,  279,  279,  279,  279,  270,  270,  279,  279,  246,        202,  202,  243,  142,  142,  243,  243,  243,  187,  187,
       246,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  228,  228,  243,  243,  243,  237,  237,  243,  243,
       279,  264,  264,  279,  279,  279,  279,  273,  273,  279,        243,  243,  243,  243,  243,  243,  243,  243,  239,  239,
   
       279,  279,  279,  213,  213,  279,  279,  279,  279,  279,        122,  122,  197,  197,  243,  243,   56,   56,  243,  243,
       279,  279,   72,   72,  279,  216,  216,  279,  102,  102,        243,  243,   61,   61,  243,  243,  243,  243,  243,  177,
       279,  279,  279,  279,  279,  279,  279,  147,  147,  151,        177,  243,  173,  173,  243,  243,  172,  172,  243,  243,
       151,  279,  279,   63,   63,  279,  150,  150,  279,  217,        162,  162,  243,  243,  243,  243,  243,  243,  156,  156,
       217,  279,  279,  279,  161,  161,  279,  279,  279,  159,        243,  243,  243,  243,  243,  195,  195,  243,  115,  115,
       159,  279,  279,  279,  279,  279,  279,  279,  169,  169,        243,  243,  243,  243,  243,  243,  221,  221,  243,  243,
       157,  157,  279,  279,  279,  279,  279,  279,  279,  279,        138,  138,  243,  243,  198,  198,  243,  243,  243,  243,
       279,  166,  166,  279,  279,  279,  279,  230,  230,  149,        243,  112,  112,  128,  128,  143,  143,  243,  184,  184,
       149,  279,  279,  279,  279,  279,  199,  199,  279,  279,        243,  243,  243,  243,  196,  196,  243,  243,  121,  121,
       279,  279,  279,  202,  202,  279,  142,  142,  279,  279,        243,  101,  101,   62,   62,  243,  243,  243,  117,  117,
   
       279,  187,  187,  279,  228,  228,  279,  279,  279,  237,        243,  243,  243,  243,  243,  243,  243,  243,  243,  243,
       237,  279,  279,  279,  279,  243,  243,  279,  279,  279,        243,  243,  243,  165,  165,  243,  243,   99,   99,  243,
       279,  279,  279,  279,  279,  252,  252,  279,  279,  279,        243,  243,  243,  136,  136,  225,  225,  243,  140,  140,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        137,  137,  135,  135,  141,  141,  243,  243,  243,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  239,        185,  185,  243,  243,  186,  186,  243,  205,  205,  243,
       239,  122,  122,  197,  197,  279,  279,   56,   56,  279,        212,  212,  243,  236,  236,  243,  243,  243,  243,  171,
       279,  279,  279,   61,   61,  279,  279,  279,  279,  279,        171,  180,  180,  243,  243,  243,  243,  243,  243,  243,
       177,  177,  279,  173,  173,  279,  279,  172,  172,  279,        243,  243,  243,  243,  243,  243,  188,  188,  215,  215,
       279,  162,  162,  279,  279,  279,  279,  279,  279,  156,        243,  243,  243,  243,  243,  210,  210,  243,  243,  133,
       156,  279,  279,  279,  279,  279,  195,  195,  279,  115,        133,  116,  116,  243,  243,  243,  243,  164,  164,  175,
   
       115,  279,  279,  279,  279,  279,  279,  221,  221,  279,        175,  176,  176,  178,  178,  243,  167,  167,  155,  155,
       279,  138,  138,  279,  279,  198,  198,  279,  279,  279,        243,  243,  243,  152,  152,  243,  243,   74,   74,  243,
       279,  279,  112,  112,  279,  279,  279,  279,  279,  279,        243,  200,  200,  211,  211,  243,  243,  160,  160,  243,
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,        243,  243,  243,  243,  243,  243,  243,  243,  238,  238,
       279,  279,  279,  279,  279,  279,  267,  267,  279,  279,         88,   88,  243,  243,  243,  243,  243,  243,  243,  243,
       128,  128,  143,  143,  279,  184,  184,  279,  279,  279,         75,   75,  243,  243,  243,  158,  158,  243,  168,  168,
       279,  196,  196,  279,  279,  121,  121,  279,  101,  101,        163,  163,   95,   95,  153,  153,  243,  170,  170,  174,
        62,   62,  279,  279,  279,  117,  117,  279,  279,  279,        174,  243,  243,  179,  179,  240,  240,    0
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,  
       165,  165,  279,  279,   99,   99,  279,  279,  279,  279,  
   
       136,  136,  225,  225,  279,  140,  140,  137,  137,  135,  
       135,  141,  141,  279,  279,  279,  279,  279,  279,  279,  
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,  
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,  
       279,  185,  185,  279,  279,  186,  186,  279,  205,  205,  
       279,  212,  212,  279,  236,  236,  279,  279,  279,  279,  
       171,  171,  180,  180,  279,  279,  279,  279,  279,  279,  
       279,  279,  279,  279,  279,  279,  279,  188,  188,  215,  
       215,  279,  279,  279,  279,  279,  279,  279,  279,  279,  
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,  
   
       279,  279,  279,  279,  279,  279,  279,  279,  279,  279,  
       210,  210,  279,  279,  133,  133,  116,  116,  279,  279,  
       279,  279,  164,  164,  175,  175,  176,  176,  178,  178,  
       279,  167,  167,  155,  155,  279,  279,  279,  152,  152,  
       279,  279,   74,   74,  279,  279,  279,  279,  279,  279,  
       279,  279,  279,  279,  279,  279,  279,  279,  279,  256,  
       256,  279,  279,  279,  279,  279,  279,  279,  279,  279,  
       279,  200,  200,  211,  211,  279,  279,  160,  160,  279,  
       279,  279,  279,  279,  279,  279,  279,  279,  238,  238,  
       279,  279,  279,  279,  279,  279,  279,  279,  279,  250,  
   
       250,  279,  279,  257,  257,  279,  259,  259,  279,  279,  
       279,  262,  262,  279,  279,  279,  279,   88,   88,  279,  
       279,  279,  279,  279,  279,  279,  279,   75,   75,  279,  
       279,  241,  241,  279,  279,  279,  271,  271,  279,  247,  
       247,  251,  251,  279,  279,  260,  260,  279,  265,  265,  
       263,  263,  279,  274,  274,  279,  279,  279,  279,  158,  
       158,  279,  168,  168,  163,  163,   95,   95,  153,  153,  
       279,  242,  242,  279,  244,  244,  272,  272,  248,  248,  
       279,  253,  253,  266,  266,  275,  275,  279,  279,  170,  
       170,  174,  174,  279,  279,  245,  245,  254,  254,  279,  
   
       268,  268,  179,  179,  276,  276,  269,  269,    0  
     } ;      } ;
   
 static yyconst int yy_ec[256] =  static yyconst flex_int32_t yy_ec[256] =
     {   0,      {   0,
         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,          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,
Line 610
 
Line 650
         1,    1,    1,    1,    1          1,    1,    1,    1,    1
     } ;      } ;
   
 static yyconst int yy_meta[34] =  static yyconst flex_int32_t yy_meta[34] =
     {   0,      {   0,
         1,    1,    2,    1,    1,    1,    1,    1,    1,    1,          1,    1,    2,    1,    1,    1,    1,    1,    1,    1,
         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,          1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
Line 618
 
Line 658
         1,    1,    1          1,    1,    1
     } ;      } ;
   
 static yyconst short int yy_base[2810] =  static yyconst flex_int16_t yy_base[2435] =
     {   0,      {   0,
         0,    6,   37,   38,   39,   43,   45,   50, 2839,    0,          0,    6,   37,   38,   39,   43,   45,   50, 2464,    0,
      2840, 2835,    0,   47,   40,   68,   53,   86,   63,   35,       2465, 2460,    0,   47,   40,   68,   53,   67,   72,   35,
        70,  107, 2816,  127,   69,   86,   83,  148,   72,  164,         69,   88, 2441,  108,   81,  109,   84,  129,   94,  145,
       181,   37,   71,  113,   99, 2834,    0,   62, 2814,    0,        162,   37,   56,  117,   93, 2459,    0,   77, 2439,    0,
       101, 2813, 2840,  111,    0, 2830, 2840,  117,    0,   87,         99, 2438, 2465,  121,    0, 2455, 2465,  130,    0,  117,
      2816, 2815, 2807,  110, 2802, 2801,  119, 2805, 2815,  111,       2441, 2440, 2432,   90, 2427, 2426,  127, 2430, 2440,  117,
      2817, 2808, 2802,  115, 2802, 2790, 2795, 2794, 2802, 2805,       2442, 2433, 2427,  121, 2427, 2415, 2420, 2419, 2427, 2430,
      2805, 2803, 2791, 2803, 2780, 2789, 2794, 2788, 2786, 2799,       2430, 2417, 2429, 2406, 2415, 2420, 2414, 2412, 2425, 2406,
      2780, 2778, 2802, 2791, 2782,  118, 2794, 2788, 2777, 2772,       2404, 2428, 2417, 2408,   44, 2420, 2414, 2403, 2398, 2394,
      2768, 2783, 2770, 2784,  200,  117, 2779, 2772,  138, 2784,       2409, 2396, 2410,  181,  137, 2405, 2398,  100, 2410, 2394,
   
      2768, 2772,   90, 2773, 2775, 2759, 2760, 2774, 2753, 2760,       2398,  137, 2399, 2401, 2385, 2386, 2400, 2379, 2386,  138,
       138,  139, 2760, 2772, 2767, 2762,  145, 2755,  149,  146,        127, 2386, 2398, 2393, 2388,  159, 2381,  158,  167, 2393,
      2767, 2767, 2747, 2751, 2760, 2748,  178, 2758, 2750, 2749,       2393, 2373, 2377, 2386, 2374,  174, 2384, 2376, 2375,  150,
       143, 2765,  164,  162, 2764, 2757, 2762,    0,  173,    0,       2391,  172,  167, 2390, 2383, 2388,    0,  196,    0, 2378,
      2752,    0,  194,    0, 2751,  200, 2840, 2759, 2744, 2730,          0,  200,    0, 2377,  201, 2465, 2385, 2370, 2356, 2364,
      2738, 2738, 2741, 2733, 2746, 2731, 2731, 2725, 2740, 2717,       2364, 2367, 2359, 2372, 2357, 2357, 2351, 2366, 2343, 2367,
      2741, 2722, 2719,  177, 2733,  198,  182, 2717,  183, 2741,       2348, 2345,  189, 2359,  194,  188, 2343,  209, 2367, 2356,
      2730, 2733, 2713, 2710,  207, 2717,  210, 2725,  208, 2725,       2359, 2339, 2336,  215,  207, 2352,  212, 2352, 2350,  213,
      2723,  209, 2704, 2723, 2725, 2722, 2728, 2708, 2700, 2725,       2331, 2350, 2352, 2349, 2355, 2335, 2327, 2352,  217,  226,
       210,  224, 2706, 2695, 2697, 2711, 2710, 2709, 2702, 2703,       2333, 2322, 2324, 2338, 2337, 2336, 2329, 2330, 2333, 2337,
   
      2706, 2710, 2704,  214, 2689, 2702, 2701,  233, 2700, 2700,       2331,  217, 2316, 2329, 2328,  220, 2327, 2327, 2310,  249,
      2683,  247, 2696, 2696, 2700, 2674, 2693, 2679, 2688, 2682,       2323, 2323, 2327, 2301, 2320, 2306, 2315, 2309, 2310, 2325,
      2683, 2698, 2672, 2686,  227, 2678, 2680, 2688, 2669, 2686,       2299, 2313,  226, 2305, 2307, 2315, 2296, 2313, 2300, 2286,
      2673, 2659, 2678, 2659, 2666, 2685, 2674, 2669,  221, 2676,       2305, 2286, 2293, 2312, 2301, 2296,  217, 2303, 2308, 2282,
      2681, 2655, 2656, 2661, 2660, 2670, 2665, 2662, 2663, 2650,       2283, 2288, 2287, 2297, 2292, 2289, 2290, 2277, 2292, 2292,
      2665, 2665, 2643, 2649, 2651, 2661, 2665, 2643, 2651, 2645,       2270, 2276, 2278, 2288, 2292, 2270, 2278, 2272, 2288, 2287,
      2661, 2660,    0, 2659, 2628,    0, 2657, 2638, 2638,    0,          0, 2286, 2255,    0, 2284, 2265, 2265,    0, 2281, 2253,
      2654, 2626, 2642,  237, 2637, 2650, 2623, 2640, 2642, 2641,       2269,  239, 2264, 2277, 2250, 2267, 2269, 2268, 2262, 2255,
      2635, 2628, 2638,  266, 2612, 2627, 2640, 2627, 2619, 2637,       2265,  268, 2239, 2254, 2267, 2254, 2246, 2264, 2237, 2252,
      2610, 2625, 2628, 2623, 2622, 2611, 2630, 2611, 2618, 2627,       2255, 2250, 2249, 2238, 2257, 2238, 2245, 2254, 2245, 2227,
   
      2618, 2600,  155, 2618,  247, 2840, 2598, 2622, 2595, 2620,        241, 2245,  248, 2465, 2250, 2223, 2248, 2227, 2227, 2245,
      2599, 2599, 2617, 2597, 2591, 2591, 2608, 2602, 2588, 2604,       2225, 2219, 2219, 2236, 2230, 2216, 2232,    0, 2237, 2211,
         0, 2609, 2583, 2588, 2606, 2588, 2585, 2579, 2583,  228,       2216, 2234, 2216, 2213, 2207, 2211,  233, 2223, 2211, 2213,
      2595, 2583, 2585, 2584,  238, 2573,  249, 2591, 2576, 2589,       2212,  240, 2201,  251, 2219, 2204, 2217, 2204, 2196,  262,
      2576, 2568,  259, 2591, 2582, 2584, 2571, 2564, 2563, 2564,       2219, 2210, 2212, 2199, 2192, 2191, 2192, 2191, 2186,  264,
      2563, 2558,  261, 2577,  266, 2840,  273, 2576, 2557, 2554,       2205,  268, 2465,  275, 2204, 2185, 2182,  272, 2192, 2199,
       270, 2564, 2571,  271,  254, 2576, 2567, 2561, 2568, 2549,        273,  256, 2204, 2195, 2189, 2196, 2177, 2182, 2193, 2192,
      2554, 2565, 2564, 2563, 2567, 2556, 2565, 2544, 2553, 2552,       2191, 2195, 2184, 2193, 2172, 2181, 2180, 2165, 2182, 2177,
      2537, 2554, 2549,  277, 2541, 2543, 2535, 2550, 2529,    0,        279, 2169, 2171, 2163, 2178, 2157,    0, 2181, 2171, 2154,
      2553, 2543, 2526, 2541, 2524, 2538, 2530, 2546, 2515, 2539,       2169, 2152, 2166, 2158, 2174, 2143, 2167, 2161, 2145, 2145,
   
      2533, 2517, 2517, 2540, 2527, 2532, 2511, 2522, 2527, 2524,       2168, 2155, 2160, 2139, 2150, 2155, 2152, 2151, 2155, 2131,
      2523, 2527, 2503,    0, 2530, 2509, 2515, 2522, 2526, 2525,          0, 2158, 2137, 2143, 2150, 2154, 2153, 2128, 2127, 2130,
      2500, 2499, 2502, 2515, 2520, 2495, 2493, 2507, 2516, 2492,       2143, 2148, 2123, 2121, 2135, 2144, 2120, 2126, 2135, 2134,
      2498, 2507, 2506, 2488, 2486,    0, 2488,  275, 2502, 2489,       2116, 2114,    0, 2116,  277, 2130, 2117, 2115, 2127, 2112,
      2487, 2499, 2484, 2493, 2478, 2487, 2481,    0, 2499, 2484,       2121, 2106, 2115, 2109,    0, 2127, 2112, 2100,    0, 2124,
      2472,    0, 2496, 2471, 2486, 2479, 2473, 2482, 2472,    0,       2099, 2114, 2107, 2101, 2110, 2100,    0, 2117, 2096, 2106,
      2489, 2468, 2478,    0, 2486, 2460, 2470, 2476, 2459, 2456,          0, 2114, 2088, 2098, 2104, 2087, 2084,    0, 2108, 2090,
      2475,    0, 2479, 2461, 2477,  275, 2464, 2475, 2465, 2452,       2106,  277, 2093, 2104, 2094, 2081, 2095, 2077, 2099, 2088,
      2466, 2448, 2470, 2459, 2460, 2453, 2456,    0, 2465, 2444,       2089, 2082, 2085,    0, 2094, 2073, 2067, 2077, 2076, 2075,
      2438, 2448, 2447, 2446, 2445, 2432, 2437, 2439, 2443, 2431,       2074, 2061, 2066, 2068, 2072, 2060, 2059, 2071, 2055, 2059,
   
      2430, 2442, 2426, 2430, 2428, 2443,  285, 2447, 2440,  299,       2057, 2072,  287, 2076, 2069,  301, 2465, 2074, 2073, 2058,
      2840, 2445, 2444, 2429, 2436, 2427, 2434, 2439, 2438, 2427,       2065, 2056, 2063, 2068, 2067, 2056,  304, 2465,  306, 2065,
       302, 2840,  304, 2436, 2414,  282, 2428, 2408, 2414, 2411,       2043,  284, 2057, 2037, 2043, 2040, 2030, 2046, 2033, 2048,
      2401, 2417, 2404, 2419, 2412,  294, 2425, 2399, 2409, 2416,       2041,  296, 2054, 2028, 2038, 2045, 2045, 2043,  301, 2038,
      2416, 2414,  299, 2409, 2392,    0, 2417, 2408, 2415, 2396,       2021,    0, 2046, 2037, 2044, 2025,  309, 2034, 2016, 2012,
       307, 2405, 2387, 2383, 2401, 2390, 2389, 2407, 2387, 2405,       2030, 2019, 2018, 2036, 2016, 2034, 2015, 2019,  315, 2006,
      2386, 2390,  313, 2377, 2396, 2390, 2399, 2373,    0, 2397,       2025, 2019, 2028, 2002,    0, 2026, 2004, 2015, 2023, 1992,
      2375, 2386, 2394, 2363, 2366, 2391, 2367, 2380, 2378, 2378,       1995, 2020, 1996, 2009, 2007, 2007, 1995, 2014, 1990, 1992,
      2366, 2385, 2361, 2363, 2368, 2362, 2355, 2373,    0, 2378,       1997, 1991, 1984, 2002,    0, 2007,    0, 2006, 2005, 1992,
         0, 2377, 2376, 2363, 2351, 2348, 2372, 2350, 2356, 2360,       1980, 1977, 2001, 1979, 1985, 1989,    0, 1997, 1996,  303,
   
         0, 2368, 2367,  301, 2345, 2344, 2348, 2336,    0, 2341,       1974, 1973, 1977, 1965,    0, 1970, 1966, 1964, 1970, 1966,
      2337, 2335, 2341, 2337, 2337, 2333, 2338, 2344, 2343, 2333,       1966, 1962, 1967, 1973, 1972, 1962, 1968, 1960, 1973, 1967,
      2339, 2331, 2344, 2338, 2322, 2327, 2320, 2344, 2338, 2333,       1951, 1956, 1949, 1973, 1967, 1962, 1970, 1955, 1948, 1950,
      2341, 2326, 2319,   54,  119,  204,  324,  257,    0,  263,       1961, 1951, 1964,    0,   65,  137,  159,  181,    0,  187,
       273,  314,  315,    0,  316,  302,  315,  296,  317,  325,        207,  241,  231,  280,  316,  311,  302,  310,  322,  315,
       321,  315,  323,  335,  328,  317,  331,  321,  321,  324,        305,  320,  311,  313,  316,  317,  315,  319,  324,  318,
       325,  323,  327,  333,  327,  331,  342,  342,  344,  334,        320,  331,  331,  333,  323,  336,  339,  323,  337,  327,
       347,  350,  334,  348,  338,  360,  334,    0,  362,  363,        349,  323,    0,  351,  352,  334,  325,  350,  349,  358,
       345,  336,  361,  360,  369,  370,  348,  355,  356,  363,        359,  337,  344,  345,  352,  347,  335,    0,  366,  350,
       358,  346,    0,  377,  361,  360,  370,  364,  378,  379,        349,  359,  353,  367,  368,  354,  371,  363,  354,  363,
   
       365,  382,  374,  365,  374,  374,  386,  383,    0,  394,        363,  375,  372,    0,  383,  384,  360,  361,  381,  358,
       395,  371,  372,  392,  369,  375,  391,  392,  374,  383,        364,  380,  381,  363,  372,  369,    0,  395,  391,  397,
       380,    0,  406,  402,  408,  391,  385,  406,  406,  413,        380,  374,  395,  395,  402,  373,  377,  406,  395,  408,
       384,  388,  417,  406,  419,  400,  404,  422,  406,  410,        389,  393,  411,  395,  399,  390,  393,  416,  404,  408,
       401,  404,  427,  415,  419,  410,  431,  411,  410,    0,        399,  420,  400,  399,    0,  423,  414,  425,  426,  427,
       434,  425,  436,  437,  438,  420,  440,  435,  431,  412,        409,  429,  424,  420,  401,  408,  434,  414,  436,  437,
       419,  445,  425,  447,  448,  441,  442,    0,  453,  444,        430,  431,    0,  442,  433,  424,  445,  446,  429,  418,
       435,  456,  457,  440,  429,  439,  440,  462,  449,  447,        428,  429,  451,  438,  436,  429,  455,  451,  451,  450,
       440,  466,  462,  462,  461,  447,  454,  467,  468,  462,        436,  443,  456,  457,  451,  459,  453,  460,  458,  458,
       470,  464,  471,  469,  469,  470,  476,  482,  464,  470,        459,  465,  471,  453,  459,  474,  455,  457,  467,  467,
   
       485,  466,  468,  478,  478,  470,  470,  475,  483,  480,        459,  480,  481,  482,  483,  454,  480,  467,  479,    0,
       491,  485,  500,  501,  502,  503,  474,  499,  487,  500,        489,  481,  491,  478,  493,  478,  472,  479,  491,  489,
         0,  510,  502,  512,  499,  514,  499,  494,  501,  513,        490,  491,  478,  472,  478,  476,  499,  501,  484,  498,
       511,  512,  513,  500,  494,  500,  498,  521,  523,  506,        481,  484,  505,  487,  507,  508,  515,    0,  516,  507,
       520,  503,  506,  527,  509,  529,  530,  537,    0,  538,          0,  518,  492,  510,  504,  512,    0,  523,    0,  524,
       529,    0,  540,  514,  532,  526,  534,    0,  545,    0,        525,  509,  507,  517,  529,  510,  525,  511,  533,  534,
       546,  547,  531,  529,  539,  551,  532,  547,  533,  555,        535,  536,  529,  526,  539,  519,  533,  542,  543,  527,
       556,  557,  558,  551,  548,  561,  541,  555,  564,  565,        528,  527,  547,  548,  524,  527,  546,  527,  534,  533,
       549,  550,  549,  569,  570,  546,  549,  568,  549,  556,        534,  556,  547,  540,  534,    0,  560,  541,  557,  566,
       555,  556,  578,  569,  562,  556,    0,  582,  563,  579,        533,  564,  537,  552,    0,  567,  568,    0,  569,  543,
   
       588,  555,  586,  559,  574,    0,  589,  590,    0,  591,        571,    0,  582,  575,  567,  563,  563,    0,  592,  593,
       565,  593,    0,  604,  597,  589,  585,  585,    0,  614,        595,  568,    0,  597,  588,  589,  576,  601,  602,  603,
       615,  617,  590,    0,  619,  610,  611,  598,  623,  624,        579,    0,  605,  599,  596,  608,  609,  580,  611,  591,
       625,  601,    0,  627,  621,  618,  630,  631,  602,  633,          0,  613,  614, 2465,  616,  613,  609,  601,  621,    0,
       613,    0,  635,  636, 2840,  638,  635,  631,  623,  643,        622,  603,  603,  608,  609,  627,  618,  599,  625,  631,
         0,  644,  625,  625,  630,  631,  649,  640,  621,  647,        626,  616,  618,  605,  636,  623,  632,  640,  616,  642,
       653,  648,  638,  640,  627,  658,  645,  654,  662,  638,        624,  614,  646,  638,  625,  621,    0,  650,  645,  641,
       664,  646,  636,  668,  660,  647,  643,    0,  672,  667,          0,  653,  635,  657,  658,  639,  642,    0,  663,  664,
       663,    0,  675,  657,  679,  680,  661,  664,  664,  661,          0,  665,    0,  666,  667,  645,  646,  656,  641,  672,
       667,  682,  669,  682,  661,  672,  670,  676,  681,    0,        663,    0,  674,  665,  646,  667,  653,  679,  674,  658,
   
       696,  697,    0,  698,    0,  699,  700,  678,  679,  689,        682,  683,  678,  666,  679,  661,  688,  680,  680,  668,
       674,  705,  696,    0,  707,  698,  679,  700,  686,  712,        680,  693,  686,  678,  696,  697,  684,  676,  700,  701,
       707,  691,  715,  716,  711,  699,  712,  694,  721,  713,        702,  683,  696,  705,  706,  679,  683,  699,  710,  711,
       713,  701,  713,  726,  719,  711,  729,  730,  717,  709,        712,  713,  698,  705,  716,  700,  718,  720,  721,  717,
       733,  734,  735,  716,  729,  738,  739,  712,  716,  732,        723,  712,    0,  725,  726,  721,  720,  718,  704,  717,
       743,  744,  745,  746,  731,  738,  749,  733,  751,  753,        722,  733,  734,  726,  716,  727,  729,  721,  721,  733,
       754,  750,  756,  745,    0,  758,  759,  754,  753,  751,        725,  737,  737,  727,  738,  733,  729,  735,  741,  750,
       737,  750,  755,  766,  767,  759,  749,  760,  762,  754,        752,  742,  735,  752,  763,    0,  764,  753,  743,  768,
       754,  766,  758,  770,  770,  760,  771,  766,  762,  768,        759,  743,  760,  761,  760,  761,  776,  777,  759,  779,
       774,  783,  785,  775,  768,  785,  796,    0,  797,  786,        780,  757,    0,  782,    0,  783,    0,  784,  775,  769,
   
       776,  801,  792,  776,  793,  794,  793,  794,  809,  810,        787,  788,  789,  769,    0,  791,  775,  793, 2465,  775,
       792,  812,  813,  790,    0,  815,    0,  816,    0,  817,        787,  797,    0,  798,  772,  790,  771,  788,    0,  803,
       808,  802,  820,  821,  822,  802,    0,  824,  808,  826,        776,  805,  782,    0,  807,  785,  799,  803,  811,  812,
      2840,  808,  820,  830,    0,  831,  805,  823,  804,  821,        794,  791,  795,  796,  811,  810,  814,  819,  807,  822,
         0,  836,  809,  838,  815,    0,  840,  818,  832,  836,        813,  807,  829,  830,  832,  823,  816,  821,  836,  837,
       844,  845,  827,  824,  828,  829,  844,  843,  847,  852,        820,  839,  823,  841,    0,  842,  843,  826,  845,  820,
       840,  855,  846,  840,  862,  863,  865,  856,  849,  854,        842,    0,  848,  840,  841,  850,  852,  843,  854,  848,
       869,  870,  853,  872,  856,  874,  858,  870,  853,  853,        836,  857,  858,  852,  860,  844,  841,  863,  864,  842,
       858,  864,  881,  861,  863,  874,  873,    0,  887,  888,        842,  853,  868,  859,  870,    0,  871,  872,  849,  874,
       871,  890,  865,  887,    0,  893,  885,  886,  895,  897,        875,  870,  877,    0,  878,  851,  864,  881,    0,  882,
   
       888,  899,  893,  881,  902,  903,  897,  905,  889,  886,        883,  874,  885,    0,  886,    0,  887,    0,  889,    0,
       908,  909,  887,  887,  898,  913,  904,  915,    0,  916,        890,  891,  892,    0,  893,  888,  895,    0,  896,    0,
       917,  894,  919,  920,  915,  922,    0,  923,  896,  909,        897,  884,  899,  875,    0,  901,  894,  890,  887,  886,
       926,    0,  927,  928,  919,  930,    0,  931,    0,  932,        896,  890,  908,    0,  909,  910,  884,  894,  899,  900,
         0,  934,    0,  935,  936,  937,    0,  938,  933,  940,        894,  904,  903,  904,  900,  914,  904,  916,  900,  919,
         0,  941,    0,  942,  929,  944,  920,    0,  946,  939,        916,  921,  905,  909,  922,  915,  908,  923,  923,  913,
       935,  932,  931,  941,  935,  953,    0,  954,  955,  929,        908,  925,  920,  918,  936,  943,  934,  931,    0,  946,
       939,  944,  945,  939,  949,  948,  949,  945,  959,  949,        947,  938,  924,  950,  934,  931,    0,  953,    0,  954,
       961,  945,  964,  961,  966,  950,  954,  967,  960,  953,        955,  956,  957,  944,  940,  950,  961,    0,  962,    0,
       968,  968,  958,  953,  970,  965,  963,  981,  988,  979,        963,  954,  935,  947,  967,  968,  959,  970,  971,  962,
   
       976,    0,  991,  992,  983,  969,  995,  979,  976,    0,        973,  974,  954,  958,  977,  972,  979,    0,  980,  976,
       998,    0,  999, 1000, 1001, 1002,  989,  985,  995, 1006,        964,  955,  961,  966,  967,  978,  965,  975,  976,  972,
         0, 1007,    0, 1008,  999,  980,  992, 1012, 1013, 1004,        986,    0,  993,  976,    0,  995,  978,  987,    0,  998,
      1015, 1016, 1007, 1018, 1019,  999, 1003, 1022, 1017, 1024,        999, 1000,  995,  992,  993, 1004,    0, 1005,  986,    0,
         0, 1025, 1021, 1009, 1000, 1006, 1011, 1012, 1023, 1010,       1007,  999, 1009,    0, 1010,  991, 1012,  989, 1007, 1015,
      1020, 1021, 1017, 1031,    0, 1038, 1021,    0, 1040, 1023,       1016, 1016, 2465, 1018, 1010,    0, 1021, 1005, 1004,    0,
      1032,    0, 1043, 1044, 1045, 1040, 1037, 1038, 1049,    0,       1024,    0, 1025, 1009, 1027, 1018, 1029,    0, 1032, 1033,
      1050, 1031,    0, 1052, 1044, 1054, 1025, 1048, 1047, 1045,       1034, 1026, 1029,    0, 1038, 1039, 1040,    0, 1041, 1028,
      1059, 1034, 1061, 1042, 1065, 1038, 1067, 1056,    0, 1069,       1043,    0, 1044, 1027,    0, 1046, 1047, 1048,    0, 1049,
      1051, 1073, 1050, 1084, 1075, 1076, 1076, 2840, 1078, 1070,       1050, 1030, 1052, 1053, 1054, 1055, 1026,    0, 1057, 1049,
   
         0, 1080, 1064, 1063,    0, 1083,    0, 1084, 1068, 1086,          0, 1059, 1047, 1045, 1062, 1043, 1054, 1056, 1049,    0,
      1077, 1088,    0, 1089, 1092, 1093, 1084, 1087,    0, 1096,       1067, 1068, 1059, 1046, 1060, 1048, 1063, 1074, 1066, 1057,
      1098, 1099,    0, 1100, 1087, 1102,    0, 1103, 1086,    0,       1069, 1058, 1070, 1069, 1062, 1057, 1066, 1074, 1071, 1078,
      1105, 1106, 1109,    0, 1110, 1111, 1092, 1114, 1115, 1116,       1064, 1078, 1065, 1069, 1061, 1082, 1083, 1080, 1089, 1072,
      1117, 1088,    0, 1119, 1111,    0, 1121, 1109, 1107, 1124,       1073, 1070, 1080, 1079,    0, 1101, 1079, 1096, 1104, 1088,
      1105, 1116, 1118, 1111,    0, 1129, 1130, 1121, 1108, 1122,       1106, 1107, 1091, 1109, 1110,    0, 1111,    0, 1112, 1086,
      1110, 1125, 1136, 1128, 1119, 1131, 1120, 1132, 1131, 1124,       1089, 1115,    0, 1116, 1117, 1118, 1114, 1120,    0, 1121,
      1119, 1128, 1136, 1133, 1140, 1126, 1140, 1127, 1131, 1123,       1104, 1123, 1124, 1116, 1126,    0, 1127, 1118, 1109, 1130,
      1144, 1145, 1142, 1151, 1134, 1135, 1132, 1142, 1141,    0,       1123,    0, 1132, 1124, 1114, 1135, 1117, 1125, 1126, 1139,
      1163, 1141, 1158, 1166, 1150, 1168, 1169, 1153, 1171, 1172,       1120, 1131, 1125, 1134, 1123, 1135, 1141, 1147,    0, 1148,
   
         0, 1173,    0, 1174, 1148, 1151, 1177,    0, 1178, 1179,          0, 1149, 1129, 1151, 1129,    0, 1153, 1145, 1145,    0,
      1180, 1176, 1182,    0, 1183, 1166, 1185, 1186, 1178, 1188,       1156, 1131,    0, 1158, 1159, 1140, 1141, 1142, 1155, 1158,
         0, 1189, 1180, 1171, 1192, 1185,    0, 1194, 1186, 1176,       1165, 1166,    0, 1167, 1169, 1160, 1172, 1163,    0, 1174,
      1197, 1179, 1187, 1188, 1201, 1182, 1193, 1187, 1196, 1185,       1175, 1176,    0, 1177, 1178, 1170, 1174, 1181,    0, 1182,
      1197, 1203, 1209,    0, 1210,    0, 1211, 1191, 1213, 1191,       1176,    0, 1184, 1175, 1186, 1187,    0, 1188, 1179, 1190,
         0, 1215, 1207, 1207,    0, 1218, 1219, 1204, 1221, 1222,          0, 1191,    0, 1192,    0, 1193, 1184, 1185, 1196, 1197,
      1223, 1208, 1204,    0, 1230, 1210, 1215, 1233, 1214, 1236,       1198, 1179, 1191, 1201, 1192,    0, 1203, 1204, 1205, 1192,
      1237, 1218, 1240, 1232, 1217,    0, 1244, 1246, 1227, 1228,       1183, 1191, 1209, 1210, 1202, 1202, 1189, 1214, 1189, 1191,
      1229, 1242, 1245, 1252, 1253,    0, 1254, 1256, 1247, 1259,       1204, 1208, 1213, 1201, 1196, 1223, 1224, 1200, 1206, 1199,
      1250,    0, 1261, 1262, 1263,    0, 1264, 1265, 1257, 1261,       1205, 1224, 1222, 1214, 1218, 1213, 1234, 1230, 1216, 1227,
   
      1268,    0, 1269, 1263,    0, 1271, 1262, 1273, 1274,    0,       1221,    0, 1239, 1240, 1241,    0, 1242, 1243, 1244,    0,
      1275, 1266, 1277,    0, 1278,    0, 1279,    0, 1280, 1271,       1245, 1236, 1242, 1248, 1249, 1250, 1230,    0, 1252, 1244,
      1272, 1283, 1284, 1285, 1266, 1278, 1288, 1279,    0, 1290,          0, 1255,    0, 1256, 1257,    0, 1258, 1242, 1234,    0,
      1291, 1292, 1279, 1270, 1278, 1296, 1297, 1289, 1289, 1276,       1261, 1246, 1257, 1238, 1265, 1266, 1257, 1268, 1269, 1253,
      1301, 1276, 1278, 1291, 1295, 1300, 1288, 1283, 1310, 1311,       1254, 1255, 1273, 1254, 1275, 1253, 1278, 1259, 1280, 1281,
      1287, 1293, 1286, 1292, 1311, 1309, 1301, 1305, 1300, 1321,       1268, 1260, 1261, 1285, 1258, 1264, 1279, 1266, 1276, 1272,
      1317, 1303, 1314, 1308,    0, 1326, 1327, 1328,    0, 1329,       1286,    0, 1293,    0, 1294, 1295, 1296, 1297, 1298, 1299,
      1330, 1331,    0, 1332, 1323, 1329, 1335, 1336, 1337, 1317,          0, 1300,    0, 1301, 1302, 1286,    0, 1304, 1288, 1306,
         0, 1339, 1331,    0, 1342,    0, 1343, 1344,    0, 1345,          0, 1307,    0, 1308, 1290,    0, 1310, 1288, 1293, 1313,
      1329, 1321,    0, 1348, 1333, 1344, 1325, 1352, 1353, 1344,       1314,    0, 1315, 1293, 1317, 1318, 1310, 1320, 1311, 1322,
   
      1355, 1356, 1340, 1341, 1342, 1360, 1341, 1362, 1340, 1365,       1313, 1310, 1308,    0, 1326, 1327, 1328, 1312, 1330, 1331,
      1346, 1367, 1368, 1355, 1347, 1371, 1352, 1374, 1375, 1356,       1308, 1323, 1334, 1310, 1312, 1337, 1315, 1339, 1340, 1328,
      1378, 1360,    0, 1382, 1362, 1367, 1385, 1361, 1361,    0,       1314, 1323, 1325, 1321, 1346, 1317, 1340, 1330, 1350, 1325,
      1388, 1368, 1374, 1392, 1373,    0, 1395, 1375, 1380, 1398,       1333, 1353, 1344, 1355,    0, 1356, 1357,    0, 1358, 1359,
      1379, 1378, 1379, 1403, 1376, 1382, 1397, 1384, 1394, 1390,       1340,    0, 1361,    0, 1362,    0, 1363, 1338, 1355, 1347,
      1404,    0, 1411,    0, 1412, 1413, 1414, 1415, 1416, 1417,       1367, 1351, 1346, 1370, 1348, 1349,    0, 1373, 1374, 1375,
         0, 1418,    0, 1419, 1420, 1404,    0, 1422, 1406, 1424,       1376,    0, 1377, 1361, 1370, 1380, 1381, 1363, 1383, 1378,
         0, 1425,    0, 1426, 1408,    0, 1428, 1406, 1411, 1431,       1355,    0, 1386, 1368,    0, 1388, 1389, 1379, 1391, 1392,
      1432,    0, 1433, 1411, 1435, 1436, 1428, 1438, 1429, 1440,          0, 1393, 1394, 1376, 1396, 1377, 1381, 1390, 1379,    0,
      1431, 1428, 1426,    0, 1444, 1445, 1446, 1430, 1448, 1449,       1401, 1402,    0, 1403, 1404,    0, 1405, 1406, 1407, 1398,
   
      1426, 1441, 1452, 1428, 1430, 1455, 1433, 1457, 1458, 1446,       1409, 1404, 1411, 1387,    0, 1413,    0, 1414, 1415, 1416,
      1432, 1441, 1443, 1439, 1464, 1435, 1458, 1448, 1468, 1443,          0, 1417, 1418,    0, 1419, 1401,    0, 1421, 1399, 1406,
      1451, 1471, 1462, 1473,    0, 1474, 1475,    0, 1476, 1477,       1424,    0, 1425, 1426, 1410, 1428,    0, 1429, 1416, 1408,
      1458,    0, 1479,    0, 1480,    0, 1481, 1456, 1473, 1465,       1432, 1423, 1424, 1435, 1422,    0, 1437,    0, 1438, 1425,
      1485, 1469, 1464, 1488, 1466, 1467,    0, 1491, 1492, 1493,       1430, 1418, 1436, 1418, 1444, 1414, 1440, 1447,    0, 1448,
      1494,    0, 1495, 1479, 1488, 1498, 1499, 1481, 1501, 1496,       1430, 1432, 1451, 1452,    0, 1453,    0, 1454, 1455, 1437,
      1473,    0, 1504, 1486,    0, 1506, 1507, 1497, 1509,    0,       1433, 1441, 1434,    0, 1460, 1461, 1462, 1463, 1448, 1465,
      1510, 1490, 1495, 1513, 1494,    0, 1516, 1496, 1501,    0,          0, 1466, 1467,    0, 1468, 1469, 1470, 1471,    0, 1472,
      1519, 1499, 1504, 1497, 1497, 1524, 1505, 1513, 1516, 1504,       1473,    0, 1474, 1456, 1457, 1472,    0, 1478, 1465, 1480,
      1504,    0, 1531, 1511, 1516, 1509, 1509,    0, 1536, 1516,       1481, 1482, 1483, 1484, 1468, 1469, 1487, 1468,    0, 1489,
   
      1521, 1539, 1540,    0, 1541, 1542, 1524, 1545, 1526, 1530,          0, 1490,    0, 1491, 1492, 1493,    0, 1494, 1478, 1496,
      1539, 1528,    0, 1550, 1551,    0, 1552, 1553,    0, 1554,       1497, 1498,    0, 1499, 1500, 1476, 1502, 1493, 1504,    0,
      1555, 1556, 1547, 1558, 1553, 1560, 1536,    0, 1562,    0,       1505, 1500,    0, 1507, 1488, 1485,    0, 1510, 1511, 1512,
      1563, 1564, 1565,    0, 1566, 1567,    0, 1568, 1550,    0,          0, 1513, 1506, 1490, 1493, 1508, 1501, 1509,    0, 1520,
      1570, 1548, 1555, 1573,    0, 1574, 1575, 1559, 1577,    0,       1511, 1505, 1523, 1515, 1519,    0, 1526, 1527,    0, 1528,
      1578, 1565, 1557, 1581, 1572, 1573, 1584, 1571,    0, 1586,       1524, 1517, 1521, 1532, 1533, 1534,    0, 1535, 1536, 1537,
         0, 1587, 1574, 1579, 1567, 1585, 1567, 1593, 1563, 1589,          0, 1538, 1539, 1540,    0, 1541, 1542, 1534, 1536, 1521,
      1596,    0, 1597, 1579, 1581, 1600, 1601,    0, 1602,    0,       1536,    0, 1547,    0, 1548,    0, 1549, 1550,    0, 1551,
      1603, 1604, 1586, 1582, 1590, 1583,    0, 1609, 1610, 1611,       1535, 1553, 1554, 1536,    0, 1556, 1557, 1533,    0, 1559,
      1612, 1597, 1614,    0, 1615, 1616,    0, 1617, 1618, 1619,       1560,    0, 1561,    0, 1562, 1563, 1564, 1565,    0, 1566,
   
      1620,    0, 1621, 1622,    0, 1623, 1605, 1606, 1621,    0,       1542, 1549, 1548, 1570, 1571, 1558, 1573, 1574, 1575, 1576,
      1627, 1614, 1629, 1605, 1605,    0, 1632, 1612, 1617, 1610,       1571, 1578, 1579,    0, 1580, 1571, 1570,    0, 1583, 1572,
      1610, 1612, 1612, 1625, 1628,    0, 1641, 1621, 1626, 1624,       1585, 1580, 1587,    0, 1588,    0, 1589, 1590,    0, 1591,
      1631, 1632, 1635, 1623, 1623, 1636, 1639, 1627, 1627, 1654,          0, 1592,    0, 1593,    0, 1594, 1575, 1596, 1589, 1575,
      1635, 1657, 1658, 1659, 1660, 1644, 1645, 1663, 1644,    0,          0, 1599, 1600, 1601,    0, 1602, 1603,    0, 1604, 1575,
      1665,    0, 1666,    0, 1667, 1668, 1669,    0, 1670, 1654,          0, 1606, 1607,    0, 1608, 1609, 1596, 1611, 1602,    0,
      1672, 1673, 1674,    0, 1675, 1676, 1652, 1678, 1669, 1680,       1613,    0, 1614, 1590, 1616, 1617, 1618, 1619, 1603, 1621,
         0, 1681, 1676,    0, 1683, 1664, 1661,    0, 1686, 1687,       1622, 1617, 1610, 1615, 1626, 1603,    0, 1628,    0, 1629,
      1688,    0, 1689, 1682, 1666, 1669, 1684, 1677, 1685,    0,       1612, 1631, 1609, 1633, 1634,    0, 1635, 1636, 1637,    0,
      1696, 1687, 1681, 1699, 1691, 1695,    0, 1702, 1703,    0,       1638,    0, 1639, 1620, 1641, 1625, 1613,    0, 1644,    0,
   
      1704, 1700, 1693, 1697, 1708, 1709, 1710,    0, 1711, 1712,       1645,    0, 1646,    0, 1647, 1634,    0, 1649,    0, 1650,
      1713,    0, 1714, 1715, 1716,    0, 1717, 1718, 1710, 1712,       1642, 1644, 1634,    0, 1654, 1645, 1656,    0, 1657, 1644,
      1697, 1712,    0, 1723, 1710, 1713, 1701, 1701, 1714, 1717,       1659,    0, 1660,    0, 1661, 1662, 1644,    0, 1664, 1648,
      1716, 1719, 1712, 1719, 1709, 1709, 1717, 1718, 1718, 1725,       1666, 1648, 1668, 1669, 1670, 1671, 1672, 1652,    0, 1674,
      1726, 1729, 1722, 1729, 1730, 1733,    0, 1746, 1726, 1731,          0, 1675, 1676, 1677, 1678, 1667, 1680, 1681, 1682, 1683,
         0, 1749,    0, 1750, 1751,    0, 1752, 1736, 1754, 1755,          0, 1684, 1660, 1686, 1687,    0, 1688, 1689,    0, 1690,
      1737,    0, 1757, 1758, 1734,    0, 1760, 1761,    0, 1762,          0, 1691,    0, 1692,    0, 1693, 1694,    0, 1695,    0,
         0, 1763, 1764, 1765, 1766,    0, 1767, 1743, 1750, 1749,       1696, 1697, 1698,    0, 1699,    0, 1700, 2465, 1702, 1704,
      1771, 1772, 1759, 1774, 1775, 1776, 1777, 1772, 1779, 1780,       1706, 1708, 1710, 1711, 1713, 1714, 1715, 1716, 1717, 1718,
         0, 1781, 1772, 1771,    0, 1784, 1773, 1786, 1781, 1788,       1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728,
   
         0, 1789,    0, 1790, 1791,    0, 1792,    0, 1793,    0,       1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738,
      1794,    0, 1795, 1776, 1797, 1790, 1776, 1780, 1787, 1788,       1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748,
      1791, 1784, 1791, 1786, 1793, 1789, 1790, 1796, 1799, 1788,       1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756, 1757, 1758,
      1813, 1795, 1796, 1796, 1803, 1799, 1800, 1800, 1807, 1797,       1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768,
      1797,    0, 1824, 1825, 1826,    0, 1827, 1828,    0, 1829,       1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778,
      1800,    0, 1831, 1832,    0, 1833, 1834, 1821, 1836, 1827,       1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787, 1788,
         0, 1838,    0, 1839, 1815, 1841, 1842, 1843, 1844, 1828,       1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796, 1798, 1799,
      1846, 1847, 1842, 1835, 1840, 1851, 1828,    0, 1853,    0,       1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809,
      1854, 1837, 1856, 1834, 1858, 1840, 1841, 1841, 1848, 1844,       1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819,
      1845, 1846, 1847, 1843, 1868, 1849, 1856, 1871, 1872, 1849,       1820, 1821, 1822, 1823, 1824, 1825, 1827, 1828, 1829, 1830,
   
      1874, 1856, 1857, 1853, 1878, 1860, 1861, 1867, 1870, 1883,  
         0, 1884, 1885, 1886,    0, 1887,    0, 1888, 1869, 1890,  
      1874, 1862,    0, 1893,    0, 1894,    0, 1895,    0, 1896,  
      1883,    0, 1898,    0, 1899, 1891, 1893, 1883,    0, 1903,  
      1894, 1905,    0, 1906, 1893, 1908, 1885, 1910, 1892, 1893,  
      1889, 1914, 1891, 1916, 1917, 1918, 1900, 1901, 1921,    0,  
      1922, 1923, 1924, 1901, 1926, 1927, 1928, 1905, 1930, 1911,  
      1918,    0, 1933,    0, 1934, 1935, 1917,    0, 1937, 1921,  
      1939, 1921, 1941, 1942, 1943, 1944, 1945, 1925,    0, 1947,  
      1948, 1949, 1926, 1951, 1952, 1953, 1954, 1955, 1956,    0,  
   
      1957, 1934, 1959,    0, 1960, 1961,    0, 1962, 1963, 1964,  
      1965,    0, 1966, 1967, 1968, 1950, 1951,    0, 1971, 1972,  
      1973, 1974, 1963, 1976, 1977, 1978, 1979,    0, 1980, 1956,  
      1982,    0, 1983, 1984, 1985, 1986,    0, 1987, 1988,    0,  
      1989,    0, 1990, 1991, 1992,    0, 1993, 1994,    0, 1995,  
         0, 1996, 1997,    0, 1998, 1975, 2000, 2001, 2002,    0,  
      2003, 2004,    0, 2005,    0, 2006,    0, 2007,    0, 2008,  
      2009,    0, 2010, 2011,    0, 2012,    0, 2013,    0, 2014,  
      2015,    0, 2016,    0, 2017,    0, 2018, 2019, 2020,    0,  
      2021,    0, 2022, 2023, 2024,    0, 2025,    0, 2026, 2027,  
   
         0, 2028,    0, 2029,    0, 2030,    0, 2031, 2840, 2033,  
      2035, 2037, 2039, 2041, 2042, 2044, 2045, 2046, 2047, 2048,  
      2049, 2050, 2051, 2052, 2053, 2054, 2055, 2056, 2057, 2058,  
      2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068,  
      2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078,  
      2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088,  
      2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098,  
      2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108,  
      2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118,  
      2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2129,  
   
      2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139,  
      2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149,  
      2150, 2151, 2152, 2153, 2154, 2155, 2156, 2157, 2159, 2160,  
      2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2170,  
      2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180,  
      2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188, 2189, 2190,  
      2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200,  
      2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210,  
      2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220,  
      2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230,  
   
      2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240,  
      2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250,  
      2251, 2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260,  
      2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270,  
      2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280,  
      2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290,  
      2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300,  
      2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, 2310,  
      2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, 2320,  
      2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330,  
   
      2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339       1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, 1840,
        1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1850,
        1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860,
        1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870,
        1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880,
        1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890,
        1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900,
        1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910,
        1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920,
        1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930,
   
        1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940,
        1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950,
        1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960,
        1961, 1962, 1963, 1964
     } ;      } ;
   
 static yyconst short int yy_def[2810] =  static yyconst flex_int16_t yy_def[2435] =
     {   0,      {   0,
      2510, 2509, 2511, 2511, 2512, 2512, 2513, 2513, 2509, 2514,       2179, 2178, 2180, 2180, 2181, 2181, 2182, 2182, 2178, 2183,
      2509, 2515, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2178, 2184, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2516, 2516, 2516, 2517,       2183, 2183, 2183, 2183, 2183, 2183, 2185, 2185, 2185, 2186,
      2517, 2517, 2509, 2509, 2514, 2515, 2509, 2514, 2514, 2514,       2186, 2186, 2178, 2178, 2183, 2184, 2178, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
   
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2518, 2514, 2519, 2516, 2516, 2516,       2183, 2183, 2183, 2187, 2183, 2188, 2185, 2185, 2185, 2185,
      2516, 2517, 2517, 2517, 2517, 2509, 2509, 2520, 2514, 2514,       2186, 2186, 2186, 2186, 2178, 2178, 2189, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2521, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2190, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
   
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2522, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2191, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2523, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2192, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2518, 2518, 2514, 2519, 2519, 2516, 2517, 2520,       2187, 2187, 2183, 2188, 2188, 2185, 2186, 2189, 2189, 2183,
      2520, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2524, 2514, 2514, 2525,       2183, 2183, 2183, 2183, 2193, 2183, 2183, 2194, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2526, 2514, 2514, 2527,       2183, 2183, 2183, 2183, 2195, 2183, 2183, 2196, 2183, 2183,
   
      2514, 2514, 2514, 2514, 2514, 2509, 2514, 2528, 2514, 2514,       2183, 2183, 2183, 2178, 2197, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2190, 2190, 2183,
      2521, 2521, 2514, 2514, 2529, 2514, 2514, 2514, 2514, 2514,       2183, 2198, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2509, 2514, 2514, 2514, 2514,       2183, 2183, 2178, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2530, 2514, 2514, 2514, 2514, 2514,       2183, 2199, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2522,       2183, 2183, 2183, 2183, 2183, 2183, 2191, 2191, 2183, 2183,
      2522, 2514, 2514, 2514, 2514, 2514, 2514, 2531, 2514, 2514,       2183, 2183, 2183, 2183, 2200, 2183, 2183, 2183, 2183, 2183,
   
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2523, 2523, 2514, 2514, 2514, 2532, 2533,       2192, 2192, 2183, 2183, 2183, 2201, 2202, 2183, 2185, 2186,
      2514, 2516, 2517, 2514, 2514, 2514, 2514, 2514, 2534, 2514,       2183, 2183, 2183, 2183, 2183, 2203, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2535, 2514, 2514, 2514, 2514,       2183, 2183, 2204, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2524, 2524, 2514,       2183, 2183, 2183, 2183, 2193, 2193, 2183, 2183, 2194, 2194,
      2514, 2525, 2525, 2514, 2514, 2514, 2514, 2514, 2514, 2526,       2183, 2183, 2183, 2183, 2183, 2183, 2195, 2195, 2183, 2183,
      2526, 2514, 2514, 2527, 2527, 2514, 2514, 2514, 2514, 2514,       2196, 2196, 2183, 2183, 2183, 2183, 2183, 2197, 2197, 2183,
      2514, 2528, 2528, 2514, 2536, 2514, 2514, 2537, 2514, 2514,       2205, 2183, 2183, 2206, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2529, 2529, 2514,       2183, 2183, 2183, 2198, 2198, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
   
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2178, 2207, 2183, 2183,
      2509, 2538, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2178, 2183, 2208,
      2514, 2509, 2514, 2539, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2540, 2514, 2514, 2514,       2183, 2183, 2209, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2530, 2530, 2514, 2541, 2514,       2183, 2199, 2199, 2183, 2210, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2531, 2531,       2183, 2183, 2183, 2183, 2200, 2200, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2542, 2514, 2514, 2514, 2514,       2183, 2211, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2532, 2532,       2183, 2183, 2183, 2183, 2201, 2201, 2202, 2202, 2183, 2185,
      2533, 2533, 2514, 2516, 2517, 2514, 2543, 2514, 2514, 2514,       2186, 2183, 2212, 2183, 2183, 2183, 2203, 2203, 2183, 2183,
   
      2534, 2534, 2514, 2514, 2514, 2514, 2514, 2514, 2535, 2514,       2183, 2183, 2183, 2183, 2204, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2536, 2536,       2183, 2183, 2183, 2205, 2205, 2183, 2183, 2183, 2206, 2206,
      2514, 2514, 2514, 2537, 2537, 2514, 2514, 2514, 2514, 2544,       2183, 2183, 2183, 2183, 2213, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2545, 2514, 2538, 2538, 2546,       2214, 2183, 2207, 2207, 2215, 2183, 2183, 2183, 2183, 2216,
      2514, 2514, 2514, 2514, 2547, 2548, 2514, 2514, 2514, 2514,       2217, 2183, 2183, 2183, 2183, 2183, 2183, 2208, 2208, 2183,
      2514, 2514, 2539, 2539, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
   
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2540, 2540,       2183, 2183, 2183, 2209, 2209, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2210, 2210, 2183, 2218,
      2514, 2541, 2541, 2514, 2549, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2219, 2183, 2220,
      2514, 2514, 2550, 2514, 2551, 2514, 2514, 2552, 2514, 2514,       2183, 2183, 2221, 2183, 2183, 2183, 2183, 2222, 2183, 2183,
      2514, 2514, 2553, 2514, 2514, 2514, 2554, 2514, 2514, 2542,       2183, 2223, 2183, 2183, 2211, 2211, 2183, 2183, 2183, 2183,
      2542, 2514, 2514, 2514, 2514, 2514, 2555, 2514, 2514, 2514,       2183, 2224, 2183, 2183, 2183, 2183, 2183, 2183, 2225, 2185,
      2514, 2514, 2514, 2556, 2516, 2517, 2514, 2543, 2543, 2514,       2186, 2183, 2212, 2212, 2183, 2183, 2183, 2226, 2183, 2183,
      2514, 2514, 2557, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2558, 2514, 2514,       2183, 2183, 2227, 2183, 2183, 2228, 2183, 2183, 2183, 2183,
   
      2559, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2229, 2183, 2230, 2231, 2183, 2183, 2183, 2183, 2213,
      2514, 2514, 2560, 2514, 2561, 2562, 2514, 2514, 2514, 2514,       2213, 2183, 2183, 2183, 2232, 2183, 2183, 2183, 2183, 2183,
      2544, 2544, 2514, 2514, 2514, 2563, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2214, 2214, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2545, 2545,       2215, 2215, 2183, 2183, 2183, 2183, 2216, 2216, 2217, 2217,
      2514, 2546, 2546, 2514, 2514, 2514, 2514, 2547, 2547, 2548,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2548, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2233, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2564, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2218, 2218, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2549, 2549, 2514, 2514,       2183, 2234, 2183, 2183, 2219, 2219, 2183, 2220, 2220, 2183,
   
      2514, 2514, 2565, 2514, 2514, 2550, 2550, 2514, 2551, 2551,       2183, 2221, 2221, 2183, 2183, 2183, 2183, 2222, 2222, 2183,
      2514, 2514, 2552, 2552, 2514, 2514, 2514, 2514, 2553, 2553,       2183, 2183, 2223, 2223, 2183, 2183, 2183, 2235, 2236, 2237,
      2514, 2514, 2514, 2554, 2554, 2514, 2514, 2514, 2566, 2567,       2183, 2224, 2224, 2183, 2183, 2183, 2183, 2183, 2238, 2183,
      2568, 2514, 2555, 2555, 2514, 2514, 2514, 2514, 2514, 2569,       2225, 2225, 2185, 2178, 2186, 2183, 2183, 2183, 2239, 2226,
      2514, 2556, 2556, 2516, 2509, 2517, 2514, 2514, 2514, 2570,       2226, 2183, 2183, 2183, 2183, 2240, 2183, 2183, 2183, 2241,
      2557, 2557, 2514, 2514, 2514, 2514, 2571, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2572, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2227, 2227, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2558, 2558, 2514,       2228, 2228, 2183, 2183, 2183, 2183, 2183, 2229, 2229, 2242,
      2514, 2559, 2559, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2230, 2230, 2231, 2231, 2183, 2183, 2183, 2183, 2183, 2243,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2560,       2183, 2232, 2232, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
   
      2560, 2573, 2561, 2561, 2562, 2562, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2574, 2514, 2563, 2563, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2244, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2245, 2183, 2183, 2183, 2246, 2183, 2183, 2183, 2247, 2248,
      2514, 2514, 2514, 2514, 2514, 2514, 2575, 2514, 2514, 2514,       2249, 2250, 2183, 2183, 2251, 2183, 2183, 2252, 2253, 2183,
      2514, 2514, 2576, 2514, 2514, 2514, 2577, 2514, 2514, 2514,       2183, 2183, 2233, 2233, 2254, 2183, 2183, 2183, 2183, 2183,
      2578, 2579, 2580, 2581, 2514, 2514, 2582, 2514, 2514, 2583,       2183, 2183, 2255, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2584, 2514, 2514, 2514, 2564, 2564, 2585, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2586, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2234, 2234, 2183, 2183, 2256,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2257, 2258, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2565, 2565, 2514,       2183, 2183, 2235, 2235, 2236, 2236, 2237, 2237, 2183, 2183,
   
      2514, 2587, 2514, 2514, 2514, 2514, 2514, 2514, 2588, 2589,       2183, 2259, 2260, 2183, 2238, 2238, 2183, 2186, 2178, 2183,
      2514, 2514, 2514, 2514, 2566, 2566, 2567, 2567, 2568, 2568,       2183, 2183, 2239, 2239, 2183, 2183, 2183, 2183, 2240, 2240,
      2514, 2514, 2514, 2590, 2591, 2514, 2569, 2569, 2514, 2517,       2183, 2183, 2183, 2241, 2241, 2183, 2183, 2183, 2183, 2261,
      2509, 2514, 2514, 2514, 2570, 2570, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2262, 2183, 2263,
      2571, 2571, 2514, 2514, 2514, 2572, 2572, 2514, 2514, 2514,       2183, 2183, 2264, 2183, 2183, 2183, 2183, 2183, 2183, 2265,
      2514, 2592, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2593,       2183, 2266, 2183, 2183, 2242, 2242, 2267, 2183, 2183, 2183,
      2514, 2594, 2514, 2514, 2595, 2514, 2514, 2514, 2514, 2514,       2183, 2243, 2243, 2183, 2183, 2268, 2183, 2183, 2269, 2183,
      2514, 2596, 2514, 2597, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2270, 2271, 2183, 2183, 2183, 2183, 2272, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2573, 2573, 2598,       2183, 2183, 2273, 2183, 2183, 2244, 2244, 2274, 2183, 2183,
      2514, 2514, 2514, 2514, 2574, 2574, 2514, 2514, 2599, 2514,       2275, 2183, 2276, 2245, 2245, 2183, 2183, 2277, 2246, 2246,
   
      2514, 2600, 2514, 2514, 2601, 2602, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2247, 2247, 2248, 2248, 2249, 2249, 2250,
      2603, 2514, 2514, 2514, 2514, 2604, 2514, 2514, 2575, 2575,       2250, 2183, 2183, 2251, 2251, 2183, 2278, 2252, 2252, 2253,
      2605, 2514, 2514, 2606, 2514, 2607, 2576, 2576, 2514, 2514,       2253, 2183, 2279, 2183, 2254, 2254, 2183, 2183, 2183, 2183,
      2608, 2577, 2577, 2514, 2514, 2514, 2578, 2578, 2579, 2579,       2183, 2183, 2280, 2255, 2255, 2183, 2183, 2183, 2183, 2183,
      2580, 2580, 2581, 2581, 2514, 2514, 2582, 2582, 2514, 2609,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2583, 2583, 2584, 2584, 2514, 2610, 2514, 2585, 2585, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2514, 2611, 2586, 2586, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2281, 2183, 2183, 2256, 2256,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2257, 2257, 2258, 2258,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2282, 2283, 2183, 2183, 2183, 2284, 2259, 2259, 2260,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2612, 2514,       2260, 2183, 2183, 2183, 2183, 2285, 2183, 2183, 2183, 2183,
   
      2514, 2587, 2587, 2514, 2514, 2514, 2514, 2514, 2514, 2588,       2183, 2286, 2183, 2183, 2183, 2183, 2287, 2261, 2261, 2183,
      2588, 2589, 2589, 2514, 2613, 2614, 2514, 2514, 2514, 2615,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2590, 2590, 2591, 2591, 2514, 2514, 2514, 2514, 2616, 2514,       2183, 2262, 2262, 2183, 2263, 2263, 2183, 2183, 2264, 2264,
      2514, 2514, 2514, 2514, 2617, 2514, 2514, 2514, 2514, 2618,       2288, 2289, 2183, 2183, 2183, 2290, 2291, 2291, 2183, 2292,
      2592, 2592, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2292, 2183, 2293, 2294, 2294, 2183, 2295, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2593, 2593, 2514, 2594, 2594, 2514,       2183, 2296, 2178, 2297, 2183, 2298, 2298, 2183, 2183, 2299,
      2514, 2595, 2595, 2619, 2620, 2514, 2514, 2514, 2621, 2622,       2299, 2300, 2300, 2183, 2301, 2183, 2183, 2302, 2302, 2303,
      2622, 2514, 2623, 2623, 2514, 2624, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2304, 2304, 2183, 2305, 2306, 2306, 2183,
      2514, 2514, 2625, 2514, 2514, 2514, 2514, 2514, 2626, 2626,       2307, 2308, 2308, 2183, 2309, 2309, 2183, 2183, 2310, 2310,
      2514, 2627, 2514, 2514, 2514, 2514, 2628, 2509, 2629, 2514,       2311, 2183, 2183, 2312, 2313, 2314, 2183, 2315, 2315, 2183,
   
      2630, 2630, 2514, 2514, 2631, 2631, 2632, 2632, 2514, 2633,       2279, 2279, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2280,
      2514, 2514, 2634, 2634, 2635, 2514, 2514, 2514, 2636, 2636,       2280, 2316, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2637, 2638, 2638, 2514, 2639, 2640, 2640, 2514, 2641,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2641, 2514, 2514, 2642, 2642, 2643, 2514, 2514, 2644, 2645,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2646, 2514, 2647, 2647, 2514, 2648, 2648, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2281, 2281, 2183, 2183, 2317, 2183,
      2514, 2514, 2514, 2514, 2611, 2611, 2649, 2514, 2514, 2514,       2183, 2318, 2183, 2183, 2319, 2282, 2282, 2283, 2283, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2284, 2284, 2183, 2183, 2183, 2320, 2285, 2285,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2321, 2322, 2183, 2323, 2324, 2324, 2183, 2183, 2325,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2612,       2183, 2326, 2326, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2612, 2514, 2514, 2650, 2514, 2514, 2651, 2514, 2514, 2652,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2288, 2288,
   
      2613, 2613, 2614, 2614, 2514, 2514, 2514, 2615, 2615, 2514,       2289, 2289, 2183, 2183, 2183, 2290, 2290, 2183, 2183, 2293,
      2514, 2514, 2653, 2616, 2616, 2514, 2654, 2655, 2514, 2656,       2293, 2183, 2295, 2295, 2183, 2183, 2183, 2183, 2183, 2183,
      2657, 2657, 2514, 2514, 2658, 2514, 2659, 2659, 2514, 2514,       2327, 2328, 2297, 2297, 2183, 2183, 2183, 2183, 2301, 2301,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2329, 2303, 2303, 2330, 2183, 2183, 2331, 2305, 2305,
      2514, 2514, 2514, 2619, 2619, 2620, 2620, 2514, 2514, 2514,       2183, 2307, 2307, 2183, 2332, 2333, 2311, 2311, 2183, 2334,
      2621, 2621, 2514, 2514, 2624, 2624, 2514, 2514, 2514, 2514,       2312, 2312, 2313, 2313, 2314, 2314, 2183, 2183, 2183, 2183,
      2660, 2514, 2514, 2625, 2625, 2514, 2514, 2661, 2514, 2514,       2335, 2183, 2183, 2183, 2183, 2316, 2316, 2183, 2183, 2183,
      2662, 2514, 2514, 2514, 2514, 2627, 2627, 2514, 2514, 2514,       2183, 2183, 2336, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2663, 2664, 2629, 2629, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2633, 2633, 2514, 2665, 2635, 2635, 2666, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183,
   
      2667, 2637, 2637, 2514, 2639, 2639, 2514, 2668, 2669, 2643,       2183, 2317, 2317, 2183, 2337, 2318, 2318, 2183, 2338, 2319,
      2643, 2514, 2670, 2644, 2644, 2645, 2645, 2646, 2646, 2514,       2319, 2183, 2183, 2339, 2340, 2341, 2183, 2320, 2320, 2183,
      2514, 2514, 2514, 2671, 2514, 2514, 2514, 2514, 2649, 2649,       2321, 2321, 2322, 2322, 2183, 2323, 2323, 2183, 2183, 2325,
      2514, 2514, 2514, 2514, 2514, 2672, 2514, 2514, 2514, 2514,       2325, 2183, 2183, 2183, 2342, 2183, 2183, 2183, 2343, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2344, 2183, 2345, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2346, 2183, 2183, 2183, 2183, 2183, 2183,
      2514, 2514, 2514, 2514, 2650, 2650, 2514, 2673, 2651, 2651,       2183, 2327, 2327, 2328, 2328, 2347, 2183, 2348, 2183, 2349,
      2514, 2674, 2652, 2652, 2514, 2514, 2675, 2676, 2677, 2514,       2329, 2329, 2330, 2330, 2183, 2183, 2331, 2331, 2183, 2183,
      2653, 2653, 2514, 2654, 2654, 2655, 2655, 2514, 2656, 2656,       2332, 2332, 2333, 2333, 2183, 2334, 2334, 2183, 2183, 2350,
      2514, 2514, 2658, 2658, 2514, 2514, 2514, 2678, 2514, 2514,       2351, 2335, 2335, 2183, 2183, 2352, 2183, 2353, 2183, 2354,
   
      2514, 2679, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2680,       2183, 2183, 2183, 2336, 2336, 2355, 2183, 2183, 2183, 2356,
      2514, 2681, 2514, 2514, 2514, 2682, 2514, 2514, 2683, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2357, 2358, 2183,
      2684, 2514, 2660, 2660, 2514, 2514, 2514, 2514, 2514, 2661,       2183, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2359, 2183,
      2661, 2514, 2514, 2685, 2514, 2662, 2662, 2514, 2514, 2686,       2183, 2183, 2183, 2360, 2337, 2337, 2361, 2338, 2338, 2183,
      2514, 2514, 2514, 2687, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2339, 2339, 2340, 2340, 2341, 2341, 2183, 2183, 2183,
      2514, 2663, 2663, 2664, 2664, 2688, 2514, 2689, 2514, 2690,       2362, 2183, 2183, 2183, 2183, 2183, 2342, 2342, 2363, 2183,
      2665, 2665, 2666, 2666, 2514, 2514, 2667, 2667, 2514, 2514,       2364, 2343, 2343, 2183, 2183, 2183, 2365, 2183, 2366, 2183,
      2668, 2668, 2669, 2669, 2514, 2670, 2670, 2514, 2514, 2691,       2183, 2344, 2344, 2183, 2345, 2345, 2367, 2183, 2183, 2183,
      2692, 2671, 2671, 2514, 2514, 2693, 2514, 2694, 2514, 2695,       2346, 2346, 2183, 2183, 2183, 2183, 2183, 2183, 2183, 2347,
      2514, 2514, 2514, 2672, 2672, 2696, 2514, 2514, 2514, 2697,       2347, 2368, 2348, 2348, 2369, 2349, 2349, 2370, 2183, 2183,
   
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2698, 2699, 2514,       2371, 2183, 2183, 2183, 2350, 2350, 2351, 2351, 2183, 2372,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2700, 2514,       2352, 2352, 2183, 2353, 2353, 2183, 2354, 2354, 2183, 2183,
      2514, 2514, 2514, 2701, 2702, 2702, 2703, 2704, 2704, 2514,       2183, 2355, 2355, 2373, 2183, 2374, 2356, 2356, 2183, 2183,
      2514, 2675, 2675, 2676, 2676, 2677, 2677, 2514, 2514, 2514,       2375, 2183, 2183, 2376, 2183, 2357, 2357, 2358, 2358, 2183,
      2705, 2514, 2514, 2514, 2514, 2514, 2678, 2678, 2706, 2514,       2183, 2183, 2183, 2183, 2377, 2183, 2183, 2183, 2359, 2359,
      2707, 2679, 2679, 2514, 2514, 2514, 2708, 2514, 2709, 2514,       2183, 2183, 2378, 2183, 2360, 2360, 2361, 2361, 2379, 2183,
      2514, 2680, 2680, 2514, 2681, 2681, 2710, 2514, 2514, 2711,       2183, 2183, 2183, 2362, 2362, 2183, 2183, 2380, 2183, 2183,
      2711, 2514, 2514, 2712, 2514, 2713, 2713, 2514, 2514, 2714,       2363, 2363, 2381, 2364, 2364, 2183, 2183, 2382, 2365, 2365,
      2714, 2514, 2514, 2514, 2514, 2715, 2514, 2514, 2514, 2514,       2183, 2366, 2366, 2183, 2183, 2183, 2367, 2367, 2183, 2383,
      2514, 2716, 2716, 2514, 2514, 2514, 2514, 2686, 2686, 2514,       2384, 2385, 2183, 2386, 2183, 2183, 2183, 2183, 2368, 2368,
   
      2514, 2514, 2514, 2687, 2687, 2514, 2514, 2514, 2514, 2514,       2369, 2369, 2370, 2370, 2387, 2183, 2371, 2371, 2183, 2388,
      2514, 2514, 2688, 2688, 2717, 2689, 2689, 2718, 2690, 2690,       2183, 2389, 2372, 2372, 2390, 2183, 2183, 2183, 2391, 2373,
      2719, 2514, 2514, 2720, 2514, 2514, 2514, 2691, 2691, 2692,       2373, 2183, 2374, 2374, 2183, 2183, 2375, 2375, 2183, 2183,
      2692, 2514, 2721, 2693, 2693, 2514, 2694, 2694, 2514, 2695,       2376, 2376, 2183, 2183, 2183, 2183, 2183, 2183, 2377, 2377,
      2695, 2514, 2514, 2514, 2696, 2696, 2722, 2514, 2723, 2697,       2183, 2183, 2392, 2183, 2183, 2378, 2378, 2393, 2379, 2379,
      2697, 2514, 2514, 2724, 2514, 2514, 2725, 2514, 2698, 2698,       2183, 2183, 2183, 2183, 2394, 2395, 2380, 2380, 2183, 2396,
      2699, 2699, 2514, 2514, 2514, 2514, 2514, 2726, 2514, 2514,       2381, 2381, 2397, 2398, 2382, 2382, 2399, 2183, 2183, 2183,
      2514, 2700, 2700, 2514, 2514, 2727, 2514, 2728, 2728, 2703,       2183, 2383, 2383, 2384, 2384, 2385, 2385, 2400, 2386, 2386,
      2703, 2729, 2514, 2514, 2514, 2514, 2705, 2705, 2514, 2514,       2183, 2183, 2401, 2183, 2387, 2387, 2402, 2183, 2388, 2388,
      2730, 2514, 2514, 2706, 2706, 2731, 2707, 2707, 2514, 2514,       2403, 2389, 2389, 2390, 2390, 2183, 2404, 2183, 2391, 2391,
   
      2732, 2708, 2708, 2514, 2709, 2709, 2514, 2514, 2514, 2710,       2183, 2183, 2183, 2405, 2406, 2183, 2183, 2183, 2183, 2183,
      2710, 2514, 2733, 2514, 2514, 2712, 2712, 2514, 2514, 2514,       2183, 2183, 2183, 2392, 2392, 2183, 2183, 2393, 2393, 2183,
      2514, 2514, 2514, 2514, 2514, 2715, 2715, 2514, 2514, 2514,       2183, 2183, 2407, 2394, 2394, 2395, 2395, 2408, 2396, 2396,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2734,       2397, 2397, 2398, 2398, 2399, 2399, 2183, 2183, 2183, 2183,
      2514, 2735, 2736, 2514, 2737, 2514, 2514, 2514, 2514, 2717,       2400, 2400, 2183, 2409, 2401, 2401, 2183, 2402, 2402, 2183,
      2717, 2718, 2718, 2719, 2719, 2738, 2514, 2720, 2720, 2514,       2403, 2403, 2410, 2404, 2404, 2411, 2183, 2183, 2183, 2405,
      2739, 2514, 2740, 2721, 2721, 2741, 2514, 2514, 2514, 2742,       2405, 2406, 2406, 2183, 2412, 2413, 2414, 2415, 2183, 2416,
      2722, 2722, 2514, 2723, 2723, 2514, 2514, 2724, 2724, 2514,       2417, 2183, 2183, 2183, 2418, 2183, 2407, 2407, 2408, 2408,
      2514, 2725, 2725, 2514, 2514, 2514, 2514, 2514, 2514, 2726,       2183, 2419, 2183, 2183, 2420, 2409, 2409, 2421, 2183, 2410,
      2726, 2514, 2514, 2743, 2514, 2514, 2727, 2727, 2744, 2729,       2410, 2411, 2411, 2183, 2422, 2183, 2183, 2412, 2412, 2413,
   
      2729, 2514, 2514, 2514, 2514, 2745, 2746, 2730, 2730, 2514,       2413, 2414, 2414, 2415, 2415, 2183, 2416, 2416, 2417, 2417,
      2747, 2731, 2731, 2748, 2749, 2732, 2732, 2750, 2514, 2514,       2183, 2183, 2183, 2418, 2418, 2183, 2183, 2419, 2419, 2183,
      2514, 2514, 2733, 2733, 2514, 2514, 2514, 2514, 2514, 2514,       2423, 2420, 2420, 2421, 2421, 2424, 2183, 2422, 2422, 2183,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2183, 2183, 2183, 2183, 2183, 2183, 2425, 2183, 2423, 2423,
      2514, 2514, 2514, 2514, 2514, 2514, 2734, 2734, 2514, 2514,       2424, 2424, 2183, 2183, 2426, 2183, 2427, 2428, 2429, 2430,
      2735, 2735, 2736, 2736, 2751, 2737, 2737, 2514, 2514, 2752,       2425, 2425, 2183, 2431, 2432, 2426, 2426, 2183, 2427, 2427,
      2514, 2738, 2738, 2753, 2514, 2739, 2739, 2754, 2740, 2740,       2428, 2428, 2429, 2429, 2430, 2430, 2183, 2431, 2431, 2432,
      2741, 2741, 2514, 2755, 2514, 2742, 2742, 2514, 2514, 2514,       2432, 2433, 2434, 2433, 2433, 2434, 2434,    0, 2178, 2178,
      2756, 2757, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2743, 2743, 2514, 2514, 2744, 2744, 2514, 2514, 2514, 2758,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
   
      2745, 2745, 2746, 2746, 2759, 2747, 2747, 2748, 2748, 2749,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2749, 2750, 2750, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2751, 2751, 2514, 2760, 2752, 2752, 2514, 2753, 2753,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2754, 2754, 2761, 2755, 2755, 2762, 2514, 2514, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2756, 2756, 2757, 2757, 2514, 2763, 2764, 2765, 2766, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2767, 2768, 2514, 2514, 2514, 2769, 2514, 2758, 2758, 2759,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2759, 2514, 2770, 2514, 2514, 2514, 2514, 2514, 2514, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2771, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
   
      2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2772,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2760, 2760, 2773, 2514, 2761, 2761, 2762, 2762, 2514, 2774,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2514, 2763, 2763, 2764, 2764, 2765, 2765, 2766, 2766,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2767, 2767, 2768, 2768, 2514, 2514, 2514, 2769, 2769,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2514, 2770, 2770, 2514, 2775, 2514, 2514, 2514, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2514, 2514, 2514, 2514, 2776, 2514, 2514, 2777, 2771,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2771, 2514, 2778, 2514, 2514, 2514, 2779, 2514, 2514, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2772, 2772, 2773, 2773, 2780, 2514, 2774, 2774, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2514, 2514, 2514, 2514, 2514, 2781, 2514, 2775, 2775,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2782, 2514, 2514, 2514, 2783, 2514, 2784, 2785, 2776,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
   
      2776, 2514, 2514, 2777, 2777, 2786, 2778, 2778, 2514, 2787,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2788, 2779, 2779, 2514, 2789, 2514, 2514, 2780, 2780, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2514, 2790, 2514, 2791, 2792, 2793, 2794, 2781, 2781, 2514,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
      2795, 2782, 2782, 2514, 2796, 2797, 2783, 2783, 2798, 2784,       2178, 2178, 2178, 2178
      2784, 2785, 2785, 2514, 2799, 2786, 2786, 2800, 2787, 2787,  
      2788, 2788, 2801, 2789, 2789, 2514, 2514, 2802, 2803, 2790,  
      2790, 2514, 2791, 2791, 2792, 2792, 2793, 2793, 2794, 2794,  
      2514, 2795, 2795, 2804, 2796, 2796, 2797, 2797, 2798, 2798,  
      2805, 2799, 2799, 2800, 2800, 2801, 2801, 2514, 2806, 2802,  
      2802, 2803, 2803, 2807, 2808, 2804, 2804, 2805, 2805, 2809,  
   
      2806, 2806, 2807, 2807, 2808, 2808, 2809, 2809,    0, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
   
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
   
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
   
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509  
     } ;      } ;
   
 static yyconst short int yy_nxt[2874] =  static yyconst flex_int16_t yy_nxt[2499] =
     {   0,      {   0,
      2509,   48,   11,   12,   49,   13,   10,   10,   11,   12,       2178,   48,   11,   12,   49,   13,   10,   10,   11,   12,
        10,   13,   10,   14,   15,   16,   17,   18,   19,   20,         10,   13,   10,   14,   15,   16,   17,   18,   19,   20,
        21,   22,   10,   23,   24,   25,   26,   27,   28,   10,         21,   22,   10,   23,   24,   25,   26,   27,   28,   10,
        29,   30,   31,   32,   33,   34,   35,   36,   10,   11,         29,   30,   31,   32,   33,   34,   35,   36,   10,   11,
        11,   11,   38,   38,   41,   11,   78,   11,   41,   39,         11,   11,   38,   38,   41,   11,   77,   11,   41,   39,
        44,   57,   11,   79,   42,   44,   50,  127,   58,   80,         44,   57,   11,   78,   42,   44,   50,  126,   58,   79,
        65,   59,  128,  139,   66,   51,  140,   52,   67,   53,         65,   59,  127,  128,   66,   51,  635,   52,   67,   53,
        74,   54,  804,   55,   56,   60,   95,   81,  129,  111,        188,   54,  189,   55,   56,   60,   80,   69,  138,   73,
        68,   75,   61,  112,   76,   82,   62,   77,  148,   63,         68,  139,   61,  129,   81,   70,   62,   71,   94,   63,
        96,  102,   83,   98,   97,   64,   69,   99,  130,  113,         74,   82,  101,   75,  134,   64,   76,   72,   83,  152,
   
       135,  215,  143,  103,   70,  144,   71,  100,  216,  104,        142,  110,   95,  143,  102,  111,   96,   84,   85,  153,
       101,  105,  146,  149,   72,  147,   73,   84,   48,  153,        103,  208,  104,   86,   87,   89,   97,  135,  147,   90,
       131,   49,  132,  136,  133,  805,   85,   86,  134,  154,         98,  112,  145,   91,  130,  146,  131,  209,  132,   92,
       157,  161,   87,   88,   90,  162,  163,  205,   91,  167,         99,   48,  133,  100,   49,   93,  105,  160,  156,  224,
       168,  206,   92,  158,  190,  207,  191,  224,   93,  210,        106,  161,  162,  148,  107,  166,  167,  222,  213,  803,
       236,  226,  232,  239,   94,  106,  233,  240,  225,  107,        108,  157,  225,  109,  113,  214,  114,  203,  223,  234,
       237,  255,  468,  108,  227,  211,  234,  238,  256,  109,        804,  204,  115,  116,  117,  205,  230,  118,  253,  235,
       241,  258,  110,  114,  139,  115,  469,  140,  287,  259,        231,  119,  120,  121,  237,  254,  236,  122,  238,  256,
       260,  116,  117,  118,  297,  248,  119,  261,  249,  298,        232,  246,  805,  123,  247,  258,  124,  257,  640,  248,
       120,  121,  122,  250,  262,  143,  123,  288,  144,  290,        285,  239,  259,  125,  198,  288,  249,  138,  199,  260,
   
       251,  146,  124,  299,  147,  125,  294,  295,  305,  306,        139,  142,  145,  200,  143,  146,  289,  201,  305,  286,
       291,  308,  126,  200,  311,  315,  326,  201,  292,  806,        295,  202,  292,  293,  290,  296,  303,  304,  308,  312,
       316,  327,  202,  312,  293,  328,  203,  349,  350,  309,        291,  352,  353,  323,  313,  806,  306,  309,  324,  297,
       204,  329,  330,  331,  355,  356,  332,  378,  333,  351,        346,  347,  325,  326,  327,  328,  375,  391,  329,  376,
       379,  394,  334,  426,  427,  395,  494,  396,  305,  306,        330,  392,  348,  393,  331,  423,  424,  807,  465,  303,
       335,  336,  500,  337,  360,  495,  503,  361,  813,  362,        304,  490,  332,  333,  496,  334,  357,  808,  499,  358,
       510,  511,  521,  522,  640,  501,  363,  355,  356,  364,        491,  359,  466,  506,  507,  517,  518,  497,  360,  352,
       504,  535,  365,  437,  524,  438,  439,  529,  533,  525,        353,  361,  500,  531,  362,  434,  520,  435,  436,  525,
       536,  440,  611,  441,  556,  814,  534,  641,  442,  696,        529,  521,  532,  437,  607,  438,  552,  809,  530,  636,
       443,  444,  557,  445,  530,  642,  672,  697,  673,  674,        439,  691,  440,  441,  553,  442,  526,  637,  667,  692,
   
       510,  511,  612,  521,  522,  707,  716,  774,  725,  717,        668,  669,  506,  507,  608,  517,  518,  702,  711,  769,
       675,  688,  689,  726,  738,  815,  816,  645,  708,  739,        720,  712,  670,  683,  684,  721,  733,  811,  812,  813,
       817,  818,  819,  718,  820,  690,  822,  775,  823,  691,        703,  734,  814,  815,  816,  713,  817,  685,  818,  770,
       692,  807,  824,  808,  809,  825,  826,  827,  828,  829,        819,  686,  687,  820,  821,  822,  823,  824,  825,  826,
       830,  831,  832,  833,  834,  835,  810,  836,  837,  811,        827,  828,  829,  830,  831,  832,  834,  835,  836,  837,
       812,  838,  839,  840,  841,  842,  843,  845,  846,  847,        839,  840,  674,  842,  843,  833,  844,  845,  846,  848,
       848,  850,  851,  679,  853,  854,  844,  855,  856,  857,        850,  851,  852,  853,  854,  856,  858,  689,  859,  860,
       859,  861,  862,  863,  864,  865,  867,  869,  694,  870,        861,  862,  855,  857,  863,  864,  865,  866,  867,  868,
       871,  872,  873,  866,  868,  874,  875,  876,  877,  878,        869,  870,  871,  872,  705,  873,  874,  875,  876,  877,
       879,  880,  881,  882,  883,  710,  884,  885,  886,  887,        878,  879,  880,  881,  882,  883,  718,  884,  887,  888,
   
       888,  889,  890,  891,  892,  893,  894,  723,  895,  898,        889,  890,  891,  892,  893,  894,  885,  896,  897,  899,
       899,  900,  901,  902,  903,  904,  905,  896,  907,  908,        900,  901,  903,  904,  905,  906,  907,  909,  910,  911,
       910,  911,  912,  914,  915,  916,  917,  918,  920,  921,        912,  914,  915,  916,  746,  917,  918,  919,  920,  921,
       922,  923,  925,  926,  927,  751,  928,  929,  930,  931,        923,  924,  925,  927,  928,  929,  930,  932,  933,  934,
       932,  934,  935,  936,  938,  939,  940,  941,  943,  944,        926,  935,  936,  764,  937,  938,  939,  941,  942,  943,
       945,  937,  946,  947,  769,  948,  949,  950,  952,  953,        944,  945,  946,  947,  948,  949,  950,  951,  952,  953,
       954,  955,  956,  957,  958,  959,  960,  961,  962,  963,        954,  955,  956,  957,  958,  959,  960,  961,  963,  964,
       964,  965,  966,  967,  968,  969,  970,  971,  972,  974,        965,  966,  968,  969,  970,  972,  973,  974,  975,  976,
       975,  976,  977,  979,  980,  981,  983,  984,  985,  986,        977,  979,  980,  982,  984,  985,  962,  986,  987,  988,
       987,  988,  989,  991,  992,  994,  990,  973,  995,  997,        811,  989,  990,  991,  993,  994,  995,  996,  997,  998,
   
       998, 1001, 1002, 1004, 1006, 1007, 1008,  993, 1009,  999,        999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008,
      1010,  822, 1011, 1012, 1013, 1015, 1016,  996, 1017, 1018,       1009, 1010, 1011, 1012, 1013, 1014, 1015,  839, 1016,  842,
      1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028,       1017, 1018, 1019, 1020,  848,  850, 1021, 1022, 1023, 1024,
      1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037,  850,       1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034,
      1038,  853, 1039, 1040, 1041, 1042,  859,  861, 1043, 1044,       1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1044, 1045,
      1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054,       1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055,
      1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064,       1056,  887, 1057, 1058, 1075, 1077, 1078, 1079,  896, 1080,
      1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075,        899, 1081, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066,
      1076, 1077, 1078,  898, 1079, 1080, 1097, 1099, 1100, 1101,       1067, 1068, 1082,  903, 1069, 1070, 1083, 1084, 1071, 1085,
       907, 1102,  910, 1103, 1081, 1082, 1083, 1084, 1085, 1086,       1086, 1072, 1073,  909, 1087, 1074, 1088, 1089,  914, 1090,
   
      1087, 1088, 1089, 1090, 1104,  914, 1091, 1092, 1105, 1106,       1091, 1092, 1094, 1096, 1098, 1099,  923, 1100, 1101, 1102,
      1093, 1107, 1108, 1094, 1095,  920, 1109, 1096, 1110, 1111,       1103, 1104, 1106, 1107,  932,  933,  934, 1108, 1109, 1110,
       925, 1112, 1113, 1114, 1116, 1118, 1120, 1121,  934, 1122,       1111, 1112, 1114,  941, 1115, 1116, 1117, 1118, 1120, 1121,
      1123, 1124, 1125, 1126, 1128, 1129,  943,  944,  945, 1130,       1122, 1123, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132,
      1131, 1132, 1133, 1134, 1136,  952, 1137, 1138, 1139, 1140,       1133, 1138, 1139, 1140, 1141, 1142, 1134, 1143, 1144, 1145,
      1142, 1143, 1144, 1145, 1147, 1148, 1149, 1150, 1151, 1152,       1146,  968, 1147, 1148,  972, 1149, 1135, 1136, 1150, 1152,
      1153, 1154, 1155, 1160, 1161, 1162, 1163, 1164, 1156, 1165,       1153, 1137, 1154, 1151,  979, 1156,  982,  984, 1157, 1158,
      1166, 1167, 1168,  979, 1169, 1170,  983, 1171, 1157, 1158,       1159, 1160, 1161, 1163, 1164,  993, 1165, 1166, 1167, 1168,
      1172, 1174, 1175, 1159, 1176, 1173, 1177, 1178, 1179, 1180,       1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178,
      1181, 1182, 1183, 1184, 1185, 1186, 1187, 1001, 1189, 1004,       1179, 1180, 1181, 1182, 1183, 1184, 1185, 1187, 1188, 1189,
   
      1006, 1190, 1191, 1192, 1193, 1194, 1196, 1197, 1015, 1198,       1190, 1191, 1193, 1195, 1196, 1197, 1198, 1200, 1201, 1202,
      1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208,       1203, 1205, 1207, 1209, 1211, 1212, 1213, 1215, 1216, 1217,
      1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218,       1192, 1219, 1221, 1222, 1223, 1224, 1044, 1226, 1227, 1228,
      1220, 1221, 1222, 1223, 1224, 1226, 1228, 1229, 1230, 1231,       1229, 1230, 1231, 1232, 1233, 1235, 1236, 1237, 1238, 1239,
      1233, 1234, 1235, 1236, 1238, 1240, 1242, 1244, 1245, 1246,       1240, 1242, 1243, 1244, 1245, 1251, 1241, 1254, 1248, 1252,
      1248, 1249, 1250, 1225, 1252, 1254, 1255, 1256, 1257, 1066,       1256, 1246, 1249, 1253, 1255, 1257, 1258, 1259, 1247, 1260,
      1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1268, 1269,       1263, 1250, 1264, 1265, 1266, 1077, 1261, 1267, 1268, 1270,
      1270, 1271, 1272, 1273, 1275, 1276, 1277, 1278, 1284, 1274,       1271, 1272, 1273, 1262, 1274, 1275, 1276, 1278, 1280, 1281,
      1287, 1281, 1285, 1289, 1279, 1282, 1286, 1288, 1290, 1291,       1282, 1283, 1284, 1094, 1096, 1098, 1285, 1286, 1287, 1289,
      1292, 1280, 1293, 1296, 1283, 1297, 1298, 1299, 1099, 1294,       1291, 1292, 1106, 1293, 1108, 1109, 1294, 1295, 1296, 1114,
   
      1300, 1301, 1303, 1304, 1305, 1306, 1295, 1307, 1308, 1309,       1297, 1298, 1299, 1300, 1120, 1301, 1302, 1303, 1125, 1304,
      1311, 1313, 1314, 1315, 1316, 1317, 1116, 1118, 1120, 1318,       1305, 1306, 1307, 1309, 1310, 1311, 1312, 1313, 1314, 1317,
      1319, 1320, 1322, 1324, 1325, 1128, 1326, 1130, 1131, 1327,       1323, 1320, 1324, 1326, 1318, 1321, 1315, 1319, 1327, 1328,
      1328, 1329, 1136, 1330, 1331, 1332, 1333, 1142, 1334, 1335,       1330, 1331, 1316, 1332, 1333, 1334, 1335, 1336, 1338, 1339,
      1336, 1147, 1337, 1338, 1339, 1340, 1342, 1343, 1344, 1345,       1341, 1342, 1343, 1156, 1345, 1346, 1347, 1348, 1349, 1163,
      1346, 1347, 1350, 1356, 1353, 1357, 1359, 1351, 1354, 1348,       1350, 1351, 1353, 1354, 1355, 1357, 1358, 1359, 1361, 1363,
      1352, 1360, 1361, 1363, 1364, 1349, 1365, 1366, 1367, 1368,       1364, 1365, 1366, 1367, 1369, 1370, 1371, 1372, 1373, 1375,
      1369, 1371, 1372, 1374, 1375, 1376, 1377, 1378, 1379, 1380,       1376, 1377, 1187, 1379, 1380, 1381, 1383, 1384, 1386, 1195,
      1381, 1382, 1383, 1385, 1386, 1387, 1388, 1384, 1189, 1390,       1387, 1388, 1390, 1200, 1391, 1393, 1394, 1205, 1207, 1392,
      1391, 1392, 1393, 1394, 1196, 1395, 1396, 1398, 1399, 1400,       1209, 1211, 1395, 1396, 1215, 1397, 1399, 1219, 1221, 1400,
   
      1402, 1403, 1404, 1406, 1408, 1409, 1410, 1411, 1412, 1414,       1402, 1403, 1226, 1404, 1405, 1406, 1407, 1408, 1409, 1411,
      1415, 1416, 1417, 1418, 1420, 1421, 1422, 1220, 1424, 1425,       1235, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420,
      1426, 1428, 1429, 1431, 1228, 1432, 1433, 1435, 1233, 1436,       1421, 1422, 1423, 1426, 1424, 1428, 1429, 1430, 1431, 1432,
      1438, 1439, 1238, 1240, 1437, 1242, 1244, 1440, 1441, 1248,       1433, 1425, 1434, 1435, 1436, 1437, 1438, 1439, 1427, 1440,
      1442, 1444, 1252, 1254, 1445, 1447, 1448, 1259, 1449, 1450,       1441, 1442, 1443, 1444, 1446, 1447, 1448, 1270, 1449, 1450,
      1451, 1452, 1453, 1454, 1456, 1268, 1457, 1458, 1459, 1460,       1451, 1452, 1453, 1454, 1278, 1280, 1455, 1457, 1459, 1460,
      1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1471, 1469,       1461, 1462, 1464, 1289, 1291, 1465, 1466, 1467, 1468, 1470,
      1473, 1474, 1475, 1476, 1477, 1478, 1470, 1479, 1480, 1481,       1471, 1472, 1473, 1474, 1475, 1477, 1478, 1479, 1480, 1481,
      1482, 1483, 1484, 1472, 1485, 1486, 1487, 1488, 1489, 1491,       1483, 1309, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491,
      1492, 1493, 1303, 1494, 1495, 1496, 1497, 1498, 1499, 1311,       1492, 1493, 1494, 1495, 1323, 1496, 1326, 1497, 1498, 1330,
   
      1313, 1500, 1502, 1504, 1505, 1506, 1507, 1509, 1322, 1324,       1500, 1502, 1503, 1504, 1505, 1507, 1338, 1508, 1341, 1509,
      1510, 1511, 1512, 1513, 1515, 1516, 1517, 1518, 1519, 1520,       1511, 1345, 1512, 1514, 1515, 1516, 1521, 1522, 1353, 1524,
      1522, 1523, 1524, 1525, 1526, 1528, 1342, 1529, 1530, 1531,       1525, 1517, 1357, 1526, 1527, 1361, 1363, 1528, 1530, 1531,
      1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1356,       1532, 1518, 1519, 1369, 1534, 1535, 1520, 1536, 1537, 1375,
      1541, 1359, 1542, 1543, 1363, 1545, 1547, 1548, 1549, 1550,       1538, 1540, 1379, 1541, 1543, 1383, 1544, 1386, 1545, 1546,
      1552, 1371, 1553, 1374, 1554, 1556, 1557, 1558, 1559, 1560,       1390, 1548, 1549, 1550, 1552, 1554, 1556, 1557, 1399, 1558,
      1561, 1563, 1565, 1566, 1567, 1562, 1568, 1570, 1571, 1574,       1402, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1411, 1567,
      1390, 1569, 1575, 1572, 1577, 1578, 1584, 1585, 1398, 1587,       1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577,
      1588, 1402, 1589, 1590, 1406, 1408, 1591, 1593, 1594, 1595,       1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587,
      1414, 1573, 1579, 1597, 1598, 1599, 1600, 1420, 1580, 1601,       1588, 1589, 1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597,
   
      1603, 1424, 1604, 1606, 1428, 1607, 1431, 1608, 1581, 1582,       1598, 1599, 1446, 1600, 1601, 1603, 1604, 1605, 1607, 1608,
      1609, 1435, 1611, 1583, 1612, 1613, 1615, 1617, 1619, 1620,       1609, 1611, 1457, 1459, 1612, 1613, 1614, 1464, 1615, 1616,
      1444, 1621, 1447, 1622, 1623, 1624, 1625, 1626, 1627, 1628,       1617, 1619, 1470, 1620, 1622, 1624, 1625, 1627, 1477, 1628,
      1456, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638,       1629, 1631, 1632, 1483, 1633, 1634, 1635, 1636, 1637, 1638,
      1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648,       1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1500,
      1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657, 1658,       1502, 1648, 1649, 1650, 1507, 1651, 1652, 1511, 1653, 1514,
      1659, 1660, 1661, 1662, 1491, 1663, 1664, 1666, 1667, 1668,       1654, 1655, 1656, 1657, 1658, 1660, 1663, 1665, 1524, 1661,
      1670, 1671, 1672, 1674, 1502, 1504, 1675, 1676, 1677, 1509,       1666, 1667, 1659, 1668, 1669, 1530, 1670, 1672, 1534, 1674,
      1678, 1679, 1680, 1682, 1515, 1683, 1685, 1687, 1688, 1690,       1675, 1676, 1678, 1540, 1679, 1543, 1680, 1682, 1684, 1548,
      1522, 1691, 1692, 1694, 1695, 1528, 1696, 1697, 1698, 1699,       1685, 1687, 1552, 1554, 1556, 1688, 1689, 1690, 1691, 1693,
   
      1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709,       1694, 1695, 1696, 1697, 1567, 1698, 1700, 1701, 1702, 1703,
      1710, 1545, 1547, 1711, 1712, 1713, 1552, 1714, 1715, 1556,       1705, 1706, 1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714,
      1716, 1718, 1719, 1721, 1724, 1717, 1727, 1720, 1722, 1725,       1715, 1716, 1717, 1699, 1718, 1719, 1720, 1721, 1722, 1723,
      1726, 1565, 1728, 1729, 1731, 1732, 1733, 1734, 1737, 1738,       1724, 1725, 1726, 1727, 1728, 1729, 1730, 1731, 1732, 1733,
      1739, 1740, 1735, 1742, 1743, 1577, 1741, 1744, 1745, 1746,       1603, 1734, 1736, 1607, 1737, 1739, 1611, 1740, 1741, 1743,
      1747, 1748, 1750, 1753, 1755, 1587, 1751, 1756, 1757, 1749,       1745, 1747, 1748, 1619, 1749, 1750, 1622, 1624, 1751, 1627,
      1758, 1759, 1593, 1760, 1762, 1597, 1764, 1765, 1766, 1768,       1752, 1753, 1631, 1754, 1755, 1756, 1758, 1759, 1760, 1761,
      1603, 1769, 1606, 1770, 1772, 1774, 1611, 1775, 1777, 1615,       1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770, 1771, 1773,
      1617, 1619, 1778, 1779, 1780, 1781, 1783, 1784, 1785, 1786,       1774, 1776, 1777, 1778, 1779, 1780, 1782, 1783, 1784, 1785,
      1787, 1630, 1788, 1790, 1791, 1792, 1793, 1795, 1796, 1797,       1786, 1787, 1788, 1789, 1663, 1665, 1791, 1792, 1794, 1795,
   
      1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807,       1797, 1672, 1674, 1798, 1799, 1678, 1800, 1801, 1682, 1684,
      1789, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816,       1802, 1687, 1803, 1804, 1806, 1808, 1693, 1809, 1810, 1812,
      1817, 1818, 1819, 1820, 1821, 1822, 1823, 1666, 1824, 1826,       1813, 1815, 1816, 1818, 1819, 1820, 1821, 1705, 1823, 1824,
      1670, 1827, 1829, 1674, 1830, 1831, 1833, 1835, 1837, 1838,       1825, 1826, 1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835,
      1682, 1839, 1840, 1685, 1687, 1841, 1690, 1842, 1843, 1694,       1837, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847,
      1844, 1845, 1846, 1848, 1849, 1850, 1851, 1853, 1854, 1855,       1848, 1850, 1851, 1852, 1853, 1854, 1856, 1736, 1858, 1739,
      1856, 1857, 1858, 1859, 1860, 1861, 1863, 1864, 1866, 1867,       1859, 1860, 1743, 1745, 1747, 1861, 1862, 1863, 1865, 1866,
      1868, 1869, 1871, 1872, 1873, 1874, 1877, 1878, 1879, 1881,       1867, 1868, 1869, 1870, 1758, 1872, 1873, 1875, 1763, 1876,
      1875, 1882, 1883, 1724, 1884, 1885, 1886, 1888, 1889, 1731,       1877, 1878, 1880, 1881, 1883, 1884, 1885, 1773, 1886, 1776,
      1890, 1887, 1891, 1893, 1894, 1895, 1737, 1896, 1897, 1899,       1888, 1889, 1890, 1891, 1782, 1892, 1893, 1894, 1895, 1896,
   
      1900, 1901, 1902, 1903, 1905, 1906, 1907, 1908, 1909, 1910,       1897, 1898, 1791, 1900, 1794, 1902, 1797, 1904, 1905, 1906,
      1911, 1912, 1753, 1755, 1914, 1915, 1917, 1918, 1920, 1762,       1908, 1909, 1910, 1911, 1806, 1808, 1912, 1914, 1812, 1915,
      1764, 1921, 1922, 1768, 1923, 1924, 1772, 1774, 1925, 1777,       1815, 1916, 1818, 1917, 1918, 1919, 1823, 1921, 1922, 1924,
      1926, 1927, 1929, 1931, 1783, 1932, 1933, 1935, 1936, 1938,       1828, 1925, 1926, 1928, 1929, 1930, 1932, 1933, 1837, 1839,
      1939, 1941, 1942, 1943, 1944, 1795, 1946, 1947, 1948, 1949,       1934, 1935, 1936, 1937, 1938, 1940, 1941, 1942, 1943, 1850,
      1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1960, 1962,       1944, 1945, 1947, 1948, 1856, 1858, 1950, 1951, 1952, 1953,
      1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1973,       1954, 1865, 1955, 1956, 1958, 1959, 1960, 1872, 1962, 1875,
      1974, 1975, 1976, 1977, 1979, 1826, 1981, 1829, 1982, 1983,       1963, 1964, 1966, 1880, 1967, 1883, 1968, 1969, 1970, 1888,
      1833, 1835, 1837, 1984, 1985, 1986, 1988, 1989, 1990, 1991,       1971, 1973, 1975, 1977, 1978, 1980, 1981, 1982, 1983, 1984,
      1992, 1993, 1848, 1995, 1996, 1998, 1853, 1999, 2000, 2001,       1900, 1902, 1904, 1986, 1987, 1908, 1988, 1990, 1991, 1993,
   
      2003, 2004, 2006, 2007, 2008, 1863, 2009, 1866, 2011, 2012,       1914, 1995, 1996, 1997, 1998, 2000, 1921, 2001, 1924, 2002,
      2013, 1871, 2014, 2015, 2017, 2018, 2019, 1877, 2020, 2021,       2003, 1928, 2004, 2005, 1932, 2006, 2007, 2008, 2009, 2010,
      1881, 2022, 2023, 2024, 2025, 2027, 2028, 2029, 2030, 2031,       2011, 1940, 2012, 2013, 2015, 2016, 2017, 1947, 2019, 1950,
      2032, 2033, 1893, 2034, 2035, 2036, 2037, 1899, 2038, 2039,       2020, 2021, 2022, 2023, 2025, 2027, 1958, 2028, 2030, 1962,
      2040, 2042, 1905, 2043, 2044, 2041, 2045, 2046, 2047, 2048,       2032, 2034, 1966, 2036, 2037, 2038, 2039, 2040, 1973, 1975,
      2049, 1914, 2051, 1917, 2053, 1920, 2055, 2056, 2057, 2059,       1977, 2042, 1980, 2043, 2044, 2046, 2047, 1986, 2049, 2050,
      2060, 2061, 2062, 1929, 1931, 2063, 2065, 1935, 2066, 1938,       1990, 2052, 1993, 1995, 2053, 2055, 2056, 2000, 2057, 2058,
      2067, 1941, 2068, 2069, 2070, 1946, 2072, 2073, 2075, 1951,       2059, 2061, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070,
      2076, 2077, 2079, 2080, 2081, 2083, 2084, 1960, 1962, 2085,       2071, 2015, 2072, 2073, 2019, 2074, 2075, 2076, 2078, 2025,
      2086, 2087, 2088, 2089, 2091, 2092, 2093, 2094, 1973, 2095,       2027, 2080, 2030, 2032, 2034, 2036, 2081, 2082, 2083, 2084,
   
      2096, 2098, 2099, 1979, 1981, 2101, 2102, 2103, 2104, 2105,       2042, 2085, 2087, 2046, 2088, 2049, 2089, 2052, 2091, 2055,
      1988, 2106, 2107, 2109, 2110, 2111, 1995, 2113, 1998, 2114,       2093, 2094, 2095, 2096, 2061, 2063, 2097, 2099, 2101, 2103,
      2115, 2117, 2003, 2118, 2006, 2119, 2120, 2121, 2011, 2122,       2105, 2106, 2108, 2110, 2111, 2112, 2113, 2115, 2116, 2078,
      2124, 2125, 2126, 2017, 2127, 2128, 2129, 2130, 2131, 2132,       2080, 2117, 2119, 2120, 2121, 2123, 2087, 2125, 2126, 2091,
      2133, 2134, 2027, 2135, 2136, 2137, 2138, 2139, 2140, 2141,       2093, 2127, 2129, 2130, 2131, 2099, 2101, 2103, 2105, 2132,
      2142, 2143, 2144, 2145, 2146, 2148, 2149, 2150, 2152, 2154,       2108, 2110, 2133, 2134, 2135, 2115, 2136, 2137, 2119, 2138,
      2155, 2157, 2158, 2159, 2160, 2161, 2051, 2053, 2055, 2163,       2140, 2123, 2125, 2142, 2143, 2129, 2144, 2145, 2146, 2147,
      2164, 2059, 2165, 2167, 2168, 2170, 2065, 2172, 2173, 2174,       2148, 2149, 2150, 2152, 2153, 2140, 2142, 2154, 2155, 2157,
      2175, 2177, 2072, 2178, 2075, 2179, 2180, 2079, 2181, 2182,       2158, 2160, 2162, 2164, 2166, 2152, 2167, 2169, 2171, 2157,
      2083, 2183, 2184, 2185, 2186, 2187, 2188, 2091, 2189, 2190,       2172, 2160, 2162, 2164, 2166, 2173, 2169, 2171, 2175, 2177,
   
      2192, 2193, 2194, 2098, 2196, 2101, 2197, 2198, 2199, 2200,       2175, 2177,   10,   10,   37,   37,   40,   40,   43,   43,
      2202, 2204, 2109, 2205, 2207, 2113, 2209, 2211, 2117, 2213,         45,   46,   46,  137,  141,  261,  264,  268,  318,  387,
      2214, 2215, 2216, 2217, 2124, 2218, 2219, 2220, 2221, 2222,        411,  445,  449,  457,  461,  468,  484,  542,  565,  585,
      2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231, 2232,        587,  597,  605,  634,  639,  673,  688,  704,  717,  745,
      2233, 2234, 2235, 2236, 2237, 2238, 2239, 2148, 2240, 2241,        763,  810,  838,  841,  847,  849,  886,  895,  898,  902,
      2152, 2154, 2243, 2157, 2244, 2245, 2247, 2248, 2163, 2250,        908,  913,  922,  931,  940,  967,  971,  978,  981,  983,
      2251, 2167, 2253, 2170, 2172, 2254, 2256, 2257, 2177, 2258,        992, 1043, 1076, 1093, 1095, 1097, 1105, 1113, 1119, 1124,
      2259, 2260, 2262, 2264, 2265, 2266, 2267, 2268, 2269, 2270,       1155, 1162, 1186, 1194, 1199, 1204, 1206, 1208, 1210, 1214,
      2271, 2272, 2192, 2273, 2274, 2196, 2275, 2276, 2277, 2279,       1218, 1220, 1225, 1234, 1269, 1277, 1279, 1288, 1290, 1308,
      2202, 2204, 2281, 2207, 2209, 2211, 2213, 2282, 2283, 2284,       1322, 1325, 1329, 1337, 1340, 1344, 1352, 1352, 1356, 1360,
   
      2285, 2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294,       1362, 1368, 1374, 1378, 1382, 1385, 1389, 1398, 1401, 1410,
      2295, 2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304,       1445, 1456, 1458, 1463, 1469, 1476, 1482, 1499, 1501, 1506,
      2305, 2306, 2307, 2308, 2309, 2243, 2310, 2312, 2247, 2313,       1337, 1340, 1510, 1344, 1513, 1352, 1352, 1523, 1356, 1360,
      2250, 2314, 2253, 2316, 2256, 2318, 2319, 2320, 2321, 2262,       1362, 1529, 1368, 1533, 1374, 1539, 1378, 1542, 1382, 1385,
      2264, 2322, 2324, 2326, 2328, 2330, 2331, 2333, 2335, 2336,       1389, 1547, 1551, 1553, 1555, 1398, 1566, 1602, 1606, 1610,
      2337, 2338, 2340, 2341, 2279, 2281, 2342, 2344, 2345, 2346,       1618, 1621, 1623, 1626, 1476, 1630, 1482, 1662, 1664, 1671,
      2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356,       1673, 1677, 1681, 1683, 1686, 1692, 1704, 1735, 1738, 1742,
      2357, 2358, 2359, 2361, 2362, 2363, 2364, 2365, 2366, 2367,       1744, 1746, 1757, 1762, 1772, 1775, 1781, 1790, 1793, 1796,
      2368, 2369, 2370, 2371, 2373, 2312, 2375, 2376, 2316, 2318,       1805, 1807, 1811, 1814, 1817, 1822, 1827, 1836, 1838, 1849,
      2377, 2379, 2380, 2381, 2324, 2326, 2328, 2330, 2382, 2333,       1855, 1857, 1864, 1871, 1874, 1879, 1882, 1887, 1899, 1901,
   
      2335, 2383, 2384, 2385, 2340, 2386, 2387, 2344, 2388, 2390,       1903, 1907, 1913, 1920, 1923, 1927, 1931, 1939, 1946, 1949,
      2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2401,       1957, 1961, 1965, 1972, 1974, 1976, 1979, 1985, 1989, 1992,
      2402, 2403, 2405, 2361, 2406, 2408, 2409, 2410, 2411, 2413,       1994, 1999, 2014, 2018, 2024, 2026, 2029, 2031, 2033, 2035,
      2414, 2415, 2416, 2417, 2373, 2375, 2419, 2420, 2379, 2421,       2041, 2045, 2048, 2051, 2054, 2060, 2062, 2077, 2079, 2086,
      2422, 2423, 2424, 2425, 2426, 2427, 2429, 2430, 2390, 2431,       2090, 2092, 2098, 2100, 2102, 2104, 2107, 2109, 2114, 2118,
      2433, 2434, 2435, 2436, 2438, 2439, 2441, 2443, 2401, 2444,       2122, 2124, 2128, 2139, 2141, 2151, 2156, 2159, 2161, 2163,
      2445, 2405, 2447, 2408, 2448, 2450, 2452, 2413, 2453, 2455,       2165, 2168, 2170, 2174, 2176,  802,  801,  800,  799,  798,
      2456, 2457, 2419, 2458, 2459, 2461, 2462, 2464, 2466, 2468,        797,  796,  795,  794,  793,  792,  791,  790,  789,  788,
      2470, 2429, 2471, 2473, 2433, 2474, 2476, 2478, 2438, 2480,        787,  786,  785,  784,  783,  782,  781,  780,  779,  778,
      2441, 2443, 2481, 2483, 2447, 2485, 2450, 2452, 2487, 2455,        777,  776,  775,  774,  773,  772,  771,  768,  598,  767,
   
      2488, 2489, 2491, 2493, 2461, 2494, 2464, 2466, 2468, 2470,        766,  765,  764,  762,  761,  760,  759,  588,  586,  758,
      2495, 2473, 2497, 2476, 2478, 2480, 2499, 2483, 2485, 2487,        757,  756,  755,  754,  753,  752,  751,  750,  749,  748,
      2500, 2502, 2491, 2493, 2504, 2506, 2497, 2499, 2508, 2502,        747,  746,  744,  743,  742,  741,  740,  566,  739,  738,
      2504, 2506, 2508,   10,   10,   37,   37,   40,   40,   43,        737,  736,  735,  732,  731,  730,  729,  728,  727,  726,
        43,   45,   46,   46,  138,  142,  263,  266,  270,  321,        725,  724,  723,  722,  719,  718,  716,  543,  715,  714,
       390,  414,  448,  452,  460,  464,  472,  488,  546,  569,        710,  709,  708,  707,  706,  705,  701,  700,  699,  698,
       589,  591,  601,  609,  639,  644,  678,  693,  709,  722,        697,  696,  695,  694,  693,  690,  689,  682,  681,  680,
       750,  768,  821,  849,  852,  858,  860,  897,  906,  909,        679,  678,  677,  676,  675,  674,  672,  671,  666,  665,
       913,  919,  924,  933,  942,  951,  978,  982, 1000, 1003,        664,  663,  662,  661,  660,  659,  658,  657,  656,  655,
      1005, 1014, 1065, 1098, 1115, 1117, 1119, 1127, 1135, 1141,        654,  653,  652,  651,  650,  485,  649,  648,  647,  646,
   
      1146, 1188, 1195, 1219, 1227, 1232, 1237, 1239, 1241, 1243,        645,  644,  643,  642,  641,  640,  638,  635,  633,  469,
      1247, 1251, 1253, 1258, 1267, 1302, 1310, 1312, 1321, 1323,        632,  631,  630,  629,  628,  462,  627,  626,  458,  625,
      1341, 1355, 1358, 1362, 1370, 1373, 1389, 1397, 1397, 1401,        624,  623,  622,  621,  620,  450,  619,  618,  446,  617,
      1405, 1407, 1413, 1419, 1423, 1427, 1430, 1434, 1443, 1446,        616,  615,  614,  613,  612,  611,  610,  609,  606,  604,
      1455, 1490, 1501, 1503, 1508, 1514, 1521, 1527, 1544, 1546,        603,  602,  601,  600,  599,  598,  596,  595,  594,  593,
      1551, 1370, 1373, 1555, 1564, 1389, 1576, 1397, 1397, 1586,        592,  591,  590,  589,  588,  586,  584,  583,  582,  412,
      1401, 1405, 1407, 1592, 1413, 1596, 1419, 1602, 1423, 1605,        581,  580,  579,  578,  577,  576,  575,  574,  573,  572,
      1427, 1430, 1434, 1610, 1614, 1616, 1618, 1443, 1446, 1629,        571,  570,  569,  568,  567,  566,  564,  563,  562,  561,
      1665, 1669, 1673, 1681, 1684, 1686, 1689, 1521, 1693, 1527,        560,  559,  388,  558,  557,  556,  555,  554,  551,  550,
      1723, 1730, 1736, 1752, 1754, 1761, 1763, 1767, 1771, 1773,        549,  548,  547,  546,  545,  544,  543,  541,  540,  539,
   
      1776, 1782, 1794, 1825, 1828, 1832, 1834, 1836, 1847, 1852,        538,  537,  536,  535,  534,  533,  528,  527,  524,  523,
      1862, 1865, 1870, 1876, 1880, 1892, 1898, 1904, 1913, 1916,        522,  519,  516,  515,  514,  513,  512,  511,  510,  509,
      1919, 1928, 1930, 1934, 1937, 1940, 1945, 1950, 1959, 1961,        508,  505,  504,  503,  502,  501,  498,  495,  494,  493,
      1972, 1978, 1825, 1980, 1828, 1987, 1994, 1997, 2002, 2005,        492,  489,  488,  487,  486,  485,  483,  482,  319,  481,
      2010, 1870, 2016, 1876, 1880, 2026, 1892, 2050, 2052, 2054,        480,  479,  478,  477,  476,  475,  474,  473,  472,  471,
      2058, 2064, 2071, 2074, 2078, 2082, 2090, 2097, 1978, 2100,        470,  469,  467,  464,  463,  462,  460,  459,  458,  456,
      2108, 2112, 2116, 2123, 2147, 2151, 2153, 2156, 2162, 2166,        455,  454,  453,  452,  451,  450,  448,  447,  446,  444,
      2169, 2171, 2176, 2191, 2195, 2201, 2203, 2206, 2208, 2210,        443,  433,  432,  431,  430,  429,  428,  427,  426,  425,
      2212, 2242, 2246, 2249, 2252, 2255, 2261, 2263, 2278, 2280,        422,  421,  269,  420,  419,  265,  418,  262,  417,  416,
      2311, 2315, 2317, 2323, 2325, 2327, 2329, 2332, 2334, 2339,        415,  414,  413,  412,  410,  409,  408,  407,  406,  405,
   
      2343, 2360, 2372, 2374, 2378, 2389, 2400, 2404, 2407, 2412,        404,  403,  402,  401,  400,  399,  398,  397,  396,  395,
      2418, 2428, 2432, 2437, 2440, 2442, 2446, 2449, 2451, 2454,        394,  390,  389,  388,  386,  385,  384,  383,  382,  381,
      2460, 2463, 2465, 2467, 2469, 2472, 2475, 2477, 2479, 2482,        380,  379,  378,  377,  374,  373,  372,  371,  370,  369,
      2484, 2486, 2490, 2492, 2496, 2498, 2501, 2503, 2505, 2507,        368,  367,  366,  365,  364,  363,  356,  355,  354,  351,
       803,  802,  801,  800,  799,  798,  797,  796,  795,  794,        350,  349,  345,  344,  343,  342,  341,  340,  339,  338,
       793,  792,  791,  790,  789,  788,  787,  786,  785,  784,        337,  336,  335,  322,  321,  320,  319,  317,  316,  315,
       783,  782,  781,  780,  779,  778,  777,  776,  773,  602,        314,  311,  310,  307,  302,  301,  300,  299,  298,  294,
       772,  771,  770,  769,  767,  766,  765,  764,  592,  590,        287,  284,  283,  282,  281,  280,  279,  278,  277,  276,
       763,  762,  761,  760,  759,  758,  757,  756,  755,  754,        275,  274,  273,  272,  271,  270,  269,  267,  266,  265,
       753,  752,  751,  749,  748,  747,  746,  745,  570,  744,        263,  262,  255,  252,  251,  250,  245,  244,  243,  242,
   
       743,  742,  741,  740,  737,  736,  735,  734,  733,  732,        241,  240,  233,  229,  228,  227,  226,  221,  220,  219,
       731,  730,  729,  728,  727,  724,  723,  721,  547,  720,        218,  217,  216,  215,  212,  211,  210,  207,  206,  197,
       719,  715,  714,  713,  712,  711,  710,  706,  705,  704,        196,  195,  194,  193,  192,  191,  190,  187,  186,  185,
       703,  702,  701,  700,  699,  698,  695,  694,  687,  686,        184,  183,  182,  181,  180,  179,  178,  177,  176,  175,
       685,  684,  683,  682,  681,  680,  679,  677,  676,  671,        174,  173,  172,  171,  170,  169,  168,  165,  164,  163,
       670,  669,  668,  667,  666,  665,  664,  663,  662,  661,        159,  158,  155,  154,  151,  150,  149,   47,  144,  140,
       660,  659,  658,  657,  656,  655,  489,  654,  653,  652,        136,   88,   47, 2178,    9, 2178, 2178, 2178, 2178, 2178,
       651,  650,  649,  648,  647,  646,  645,  643,  640,  638,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
       473,  637,  636,  635,  634,  633,  632,  465,  631,  630,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
       461,  629,  628,  627,  626,  625,  624,  453,  623,  622,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178
   
       449,  621,  620,  619,  618,  617,  616,  615,  614,  613,  
       610,  608,  607,  606,  605,  604,  603,  602,  600,  599,  
       598,  597,  596,  595,  594,  593,  592,  590,  588,  587,  
       586,  415,  585,  584,  583,  582,  581,  580,  579,  578,  
       577,  576,  575,  574,  573,  572,  571,  570,  568,  567,  
       566,  565,  564,  563,  391,  562,  561,  560,  559,  558,  
       555,  554,  553,  552,  551,  550,  549,  548,  547,  545,  
       544,  543,  542,  541,  540,  539,  538,  537,  532,  531,  
       528,  527,  526,  523,  520,  519,  518,  517,  516,  515,  
       514,  513,  512,  509,  508,  507,  506,  505,  502,  499,  
   
       498,  497,  496,  493,  492,  491,  490,  489,  487,  486,  
       322,  485,  484,  483,  482,  481,  480,  479,  478,  477,  
       476,  475,  474,  473,  471,  470,  467,  466,  465,  463,  
       462,  461,  459,  458,  457,  456,  455,  454,  453,  451,  
       450,  449,  447,  446,  436,  435,  434,  433,  432,  431,  
       430,  429,  428,  425,  424,  271,  423,  422,  267,  421,  
       264,  420,  419,  418,  417,  416,  415,  413,  412,  411,  
       410,  409,  408,  407,  406,  405,  404,  403,  402,  401,  
       400,  399,  398,  397,  393,  392,  391,  389,  388,  387,  
       386,  385,  384,  383,  382,  381,  380,  377,  376,  375,  
   
       374,  373,  372,  371,  370,  369,  368,  367,  366,  359,  
       358,  357,  354,  353,  352,  348,  347,  346,  345,  344,  
       343,  342,  341,  340,  339,  338,  325,  324,  323,  322,  
       320,  319,  318,  317,  314,  313,  310,  307,  304,  303,  
       302,  301,  300,  296,  289,  286,  285,  284,  283,  282,  
       281,  280,  279,  278,  277,  276,  275,  274,  273,  272,  
       271,  269,  268,  267,  265,  264,  257,  254,  253,  252,  
       247,  246,  245,  244,  243,  242,  235,  231,  230,  229,  
       228,  223,  222,  221,  220,  219,  218,  217,  214,  213,  
       212,  209,  208,  199,  198,  197,  196,  195,  194,  193,  
   
       192,  189,  188,  187,  186,  185,  184,  183,  182,  181,  
       180,  179,  178,  177,  176,  175,  174,  173,  172,  171,  
       170,  169,  166,  165,  164,  160,  159,  156,  155,  152,  
       151,  150,   47,  145,  141,  137,   89,   47, 2509,    9,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509  
     } ;      } ;
   
 static yyconst short int yy_chk[2874] =  static yyconst flex_int16_t yy_chk[2499] =
     {   0,      {   0,
         0,   13,    1,    1,   13,    1,    2,    2,    2,    2,          0,   13,    1,    1,   13,    1,    2,    2,    2,    2,
         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,          2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
Line 1572
 
Line 1489
         2,    2,    2,    2,    2,    2,    2,    2,    2,    3,          2,    2,    2,    2,    2,    2,    2,    2,    2,    3,
         4,    5,    3,    4,    5,    6,   20,    7,    6,    4,          4,    5,    3,    4,    5,    6,   20,    7,    6,    4,
         7,   15,    8,   20,    6,    8,   14,   32,   15,   20,          7,   15,    8,   20,    6,    8,   14,   32,   15,   20,
        17,   15,   32,   38,   17,   14,   38,   14,   17,   14,         17,   15,   32,   33,   17,   14,  635,   14,   17,   14,
        19,   14,  634,   14,   14,   16,   25,   21,   33,   29,         85,   14,   85,   14,   14,   16,   21,   18,   38,   19,
        17,   19,   16,   29,   19,   21,   16,   19,   50,   16,         17,   38,   16,   33,   21,   18,   16,   18,   25,   16,
        25,   27,   21,   26,   25,   16,   18,   26,   33,   29,         19,   21,   27,   19,   35,   16,   19,   18,   22,   54,
   
        35,  103,   41,   27,   18,   41,   18,   26,  103,   27,         41,   29,   25,   41,   27,   29,   25,   22,   22,   54,
        26,   27,   44,   50,   18,   44,   18,   22,   48,   54,         27,   98,   27,   22,   22,   24,   26,   35,   50,   24,
        34,   48,   34,   35,   34,  635,   22,   22,   34,   54,         26,   29,   44,   24,   34,   44,   34,   98,   34,   24,
        57,   60,   22,   22,   24,   60,   60,   96,   24,   64,         26,   48,   34,   26,   48,   24,   28,   60,   57,  111,
        64,   96,   24,   57,   86,   96,   86,  111,   24,   99,         28,   60,   60,   50,   28,   64,   64,  110,  102,  636,
       119,  112,  117,  120,   24,   28,  117,  120,  111,   28,         28,   57,  111,   28,   30,  102,   30,   95,  110,  118,
       119,  131,  303,   28,  112,   99,  117,  119,  131,   28,        637,   95,   30,   30,   30,   95,  116,   30,  130,  118,
       120,  133,   28,   30,  139,   30,  303,  139,  164,  133,        116,   30,   30,   31,  119,  130,  118,   31,  119,  132,
       134,   30,   30,   30,  169,  127,   30,  134,  127,  169,        116,  126,  638,   31,  126,  133,   31,  132,  640,  126,
        30,   30,   31,  127,  134,  143,   31,  164,  143,  166,        163,  119,  133,   31,   94,  165,  126,  138,   94,  133,
   
       127,  146,   31,  169,  146,   31,  167,  167,  175,  175,        138,  142,  145,   94,  142,  145,  165,   94,  175,  163,
       166,  177,   31,   95,  179,  182,  191,   95,  166,  636,        168,   94,  166,  166,  165,  168,  174,  174,  177,  180,
       182,  191,   95,  179,  166,  191,   95,  204,  204,  177,        165,  206,  206,  189,  180,  641,  175,  177,  189,  168,
        95,  192,  192,  192,  208,  208,  192,  225,  192,  204,        202,  202,  189,  190,  190,  190,  223,  237,  190,  223,
       225,  239,  192,  274,  274,  239,  330,  239,  305,  305,        190,  237,  202,  237,  190,  272,  272,  642,  301,  303,
       192,  192,  335,  192,  212,  330,  337,  212,  638,  212,        303,  327,  190,  190,  332,  190,  210,  643,  334,  210,
       343,  343,  353,  353,  640,  335,  212,  355,  355,  212,        327,  210,  301,  340,  340,  350,  350,  332,  210,  352,
       337,  365,  212,  284,  357,  284,  284,  361,  364,  357,        352,  210,  334,  362,  210,  282,  354,  282,  282,  358,
       365,  284,  438,  284,  384,  641,  364,  476,  284,  526,        361,  354,  362,  282,  435,  282,  381,  644,  361,  472,
       284,  284,  384,  284,  361,  476,  507,  526,  507,  507,        282,  522,  282,  282,  381,  282,  358,  472,  503,  522,
   
       510,  510,  438,  521,  521,  536,  543,  604,  551,  543,        503,  503,  506,  506,  435,  517,  517,  532,  539,  600,
       507,  523,  523,  551,  563,  642,  643,  645,  536,  563,        547,  539,  503,  519,  519,  547,  559,  645,  646,  647,
       646,  647,  648,  543,  649,  523,  650,  604,  651,  523,        532,  559,  648,  649,  650,  539,  651,  519,  652,  600,
       523,  637,  652,  637,  637,  653,  654,  655,  656,  657,        653,  519,  519,  654,  655,  656,  657,  658,  659,  660,
       658,  659,  660,  661,  662,  663,  637,  664,  665,  637,        661,  662,  663,  664,  665,  666,  667,  668,  669,  670,
       637,  666,  667,  668,  669,  670,  671,  672,  673,  674,        671,  672,  674,  675,  676,  666,  677,  678,  679,  680,
       675,  676,  677,  679,  680,  681,  671,  682,  683,  684,        681,  682,  683,  684,  685,  686,  687,  689,  690,  691,
       685,  686,  687,  688,  689,  690,  691,  692,  694,  695,        692,  693,  685,  686,  694,  695,  696,  697,  698,  699,
       696,  697,  698,  690,  691,  699,  700,  701,  702,  703,        700,  701,  702,  703,  705,  706,  707,  708,  709,  710,
       704,  705,  706,  707,  708,  710,  711,  712,  713,  714,        711,  712,  713,  714,  715,  716,  718,  719,  720,  721,
   
       715,  716,  717,  718,  719,  720,  721,  723,  724,  725,        722,  723,  724,  725,  726,  727,  719,  728,  729,  730,
       726,  727,  728,  729,  730,  731,  732,  724,  733,  734,        731,  732,  733,  734,  735,  736,  737,  738,  739,  740,
       735,  736,  737,  738,  739,  740,  741,  742,  743,  744,        741,  742,  743,  744,  746,  747,  748,  749,  750,  751,
       745,  746,  747,  748,  749,  751,  752,  753,  754,  755,        752,  753,  754,  755,  756,  757,  758,  759,  760,  760,
       756,  757,  758,  759,  760,  761,  762,  763,  764,  765,        754,  761,  762,  764,  765,  766,  767,  768,  769,  770,
       765,  759,  766,  767,  769,  770,  771,  772,  773,  774,        771,  772,  773,  774,  775,  776,  777,  778,  779,  780,
       775,  776,  777,  778,  779,  780,  781,  782,  783,  784,        781,  782,  783,  784,  785,  786,  787,  788,  789,  790,
       785,  786,  787,  788,  789,  790,  791,  792,  793,  794,        791,  792,  793,  794,  795,  796,  797,  798,  799,  800,
       795,  796,  797,  798,  799,  800,  801,  802,  803,  804,        801,  802,  803,  804,  805,  806,  788,  807,  808,  809,
       805,  806,  807,  808,  809,  810,  807,  793,  811,  812,        811,  812,  813,  814,  815,  816,  817,  818,  819,  820,
   
       812,  813,  814,  815,  816,  817,  818,  809,  819,  812,        821,  822,  823,  824,  825,  826,  827,  828,  829,  830,
       820,  822,  823,  824,  825,  826,  827,  811,  828,  829,        831,  832,  833,  834,  835,  836,  837,  839,  840,  842,
       830,  831,  832,  833,  834,  835,  836,  837,  838,  839,        843,  844,  845,  846,  848,  850,  851,  852,  853,  854,
       840,  841,  842,  843,  844,  845,  846,  847,  848,  850,        855,  856,  857,  858,  859,  860,  861,  862,  863,  864,
       851,  853,  854,  855,  856,  857,  859,  861,  862,  863,        865,  866,  867,  868,  869,  870,  871,  872,  873,  874,
       864,  865,  866,  867,  868,  869,  870,  871,  872,  873,        875,  876,  877,  878,  879,  880,  881,  882,  883,  884,
       874,  875,  876,  877,  878,  879,  880,  881,  882,  883,        885,  887,  888,  889,  891,  892,  893,  894,  896,  897,
       884,  885,  886,  887,  888,  889,  890,  891,  892,  893,        899,  900,  889,  890,  890,  890,  890,  890,  890,  890,
       894,  895,  896,  898,  899,  900,  902,  903,  904,  905,        890,  890,  901,  903,  890,  890,  904,  905,  890,  906,
       907,  908,  910,  911,  900,  901,  901,  901,  901,  901,        907,  890,  890,  909,  910,  890,  911,  912,  914,  915,
   
       901,  901,  901,  901,  912,  914,  901,  901,  915,  916,        916,  917,  918,  919,  920,  921,  923,  924,  925,  926,
       901,  917,  918,  901,  901,  920,  921,  901,  922,  923,        927,  928,  929,  930,  932,  933,  933,  935,  935,  936,
       925,  926,  927,  928,  929,  930,  931,  932,  934,  935,        937,  938,  939,  941,  942,  943,  944,  945,  946,  947,
       936,  937,  938,  939,  940,  941,  943,  944,  944,  946,        948,  949,  950,  951,  952,  953,  954,  955,  956,  957,
       946,  947,  948,  949,  950,  952,  953,  954,  955,  956,        957,  958,  959,  960,  961,  962,  957,  963,  964,  965,
       957,  958,  959,  960,  961,  962,  963,  964,  965,  966,        966,  968,  969,  970,  972,  973,  957,  957,  974,  975,
       967,  968,  968,  969,  970,  971,  972,  973,  968,  974,        976,  957,  977,  974,  979,  980,  982,  984,  985,  986,
       975,  976,  977,  979,  980,  981,  983,  984,  968,  968,        987,  988,  989,  990,  991,  993,  994,  995,  996,  997,
       985,  986,  987,  968,  988,  985,  989,  990,  991,  992,        998,  999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007,
       993,  994,  995,  996,  997,  998,  999, 1001, 1002, 1004,       1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017,
   
      1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1015, 1016,       1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027,
      1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026,       1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037,
      1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036,       1019, 1038, 1039, 1040, 1041, 1042, 1044, 1045, 1046, 1047,
      1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046,       1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057,
      1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056,       1058, 1059, 1060, 1061, 1062, 1064, 1058, 1066, 1063, 1065,
      1057, 1058, 1059, 1041, 1060, 1061, 1062, 1063, 1064, 1066,       1067, 1062, 1063, 1065, 1066, 1068, 1069, 1070, 1062, 1071,
      1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076,       1072, 1063, 1073, 1074, 1075, 1077, 1071, 1078, 1079, 1080,
      1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1086, 1080,       1081, 1082, 1083, 1071, 1084, 1085, 1086, 1087, 1088, 1089,
      1088, 1085, 1087, 1089, 1084, 1085, 1087, 1088, 1090, 1091,       1090, 1091, 1092, 1094, 1096, 1098, 1099, 1100, 1101, 1102,
      1092, 1084, 1093, 1094, 1085, 1095, 1096, 1097, 1099, 1093,       1103, 1104, 1106, 1107, 1108, 1108, 1110, 1111, 1112, 1114,
   
      1100, 1101, 1102, 1103, 1104, 1105, 1093, 1106, 1107, 1108,       1115, 1116, 1117, 1118, 1120, 1121, 1122, 1123, 1125, 1126,
      1109, 1110, 1111, 1112, 1113, 1114, 1116, 1118, 1120, 1121,       1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136,
      1122, 1123, 1124, 1125, 1126, 1128, 1129, 1130, 1130, 1132,       1138, 1137, 1139, 1140, 1136, 1137, 1135, 1136, 1141, 1142,
      1133, 1134, 1136, 1137, 1138, 1139, 1140, 1142, 1143, 1144,       1143, 1144, 1135, 1145, 1146, 1147, 1148, 1149, 1150, 1151,
      1145, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155,       1152, 1153, 1154, 1156, 1157, 1158, 1159, 1160, 1161, 1163,
      1156, 1157, 1158, 1160, 1159, 1161, 1162, 1158, 1159, 1157,       1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173,
      1158, 1163, 1164, 1165, 1166, 1157, 1167, 1168, 1169, 1170,       1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183,
      1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180,       1184, 1185, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1195,
      1181, 1182, 1183, 1184, 1185, 1186, 1187, 1183, 1189, 1190,       1196, 1197, 1198, 1200, 1201, 1202, 1203, 1205, 1207, 1201,
      1191, 1192, 1193, 1194, 1196, 1197, 1198, 1199, 1200, 1201,       1209, 1211, 1212, 1213, 1215, 1216, 1217, 1219, 1221, 1222,
   
      1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211,       1223, 1224, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233,
      1212, 1213, 1214, 1215, 1216, 1217, 1218, 1220, 1221, 1222,       1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244,
      1223, 1224, 1225, 1226, 1228, 1229, 1230, 1231, 1233, 1234,       1245, 1246, 1247, 1248, 1247, 1249, 1250, 1251, 1252, 1253,
      1235, 1236, 1238, 1240, 1234, 1242, 1244, 1245, 1246, 1248,       1254, 1247, 1255, 1256, 1257, 1258, 1259, 1260, 1248, 1261,
      1249, 1250, 1252, 1254, 1255, 1256, 1257, 1259, 1260, 1261,       1262, 1263, 1264, 1265, 1266, 1267, 1268, 1270, 1271, 1272,
      1262, 1263, 1264, 1265, 1266, 1268, 1269, 1270, 1271, 1272,       1273, 1274, 1275, 1276, 1278, 1280, 1281, 1282, 1283, 1284,
      1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1280,       1285, 1286, 1287, 1289, 1291, 1292, 1293, 1294, 1295, 1296,
      1282, 1283, 1284, 1285, 1286, 1287, 1280, 1288, 1289, 1290,       1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306,
      1291, 1292, 1293, 1281, 1294, 1295, 1296, 1297, 1298, 1299,       1307, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317,
      1300, 1301, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1311,       1318, 1319, 1320, 1321, 1323, 1324, 1326, 1327, 1328, 1330,
   
      1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320, 1322, 1324,       1331, 1332, 1333, 1334, 1335, 1336, 1338, 1339, 1341, 1342,
      1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334,       1343, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1354,
      1335, 1336, 1337, 1338, 1339, 1340, 1342, 1343, 1344, 1345,       1355, 1349, 1357, 1358, 1359, 1361, 1363, 1364, 1365, 1366,
      1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1356,       1367, 1349, 1349, 1369, 1370, 1371, 1349, 1372, 1373, 1375,
      1357, 1359, 1360, 1361, 1363, 1364, 1365, 1366, 1367, 1368,       1376, 1377, 1379, 1380, 1381, 1383, 1384, 1386, 1387, 1388,
      1369, 1371, 1372, 1374, 1375, 1376, 1377, 1378, 1379, 1380,       1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1399, 1400,
      1381, 1382, 1383, 1384, 1384, 1381, 1385, 1386, 1387, 1388,       1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1411, 1412,
      1390, 1385, 1391, 1387, 1392, 1393, 1395, 1396, 1397, 1399,       1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, 1422,
      1400, 1402, 1403, 1404, 1406, 1408, 1409, 1410, 1411, 1412,       1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432,
      1414, 1387, 1394, 1415, 1416, 1417, 1418, 1420, 1394, 1421,       1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442,
   
      1422, 1424, 1425, 1426, 1428, 1429, 1431, 1432, 1394, 1394,       1443, 1444, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453,
      1433, 1435, 1436, 1394, 1437, 1438, 1439, 1440, 1441, 1442,       1454, 1455, 1457, 1459, 1460, 1461, 1462, 1464, 1465, 1466,
      1444, 1445, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454,       1467, 1468, 1470, 1471, 1472, 1473, 1474, 1475, 1477, 1478,
      1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465,       1479, 1480, 1481, 1483, 1484, 1485, 1486, 1487, 1488, 1489,
      1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475,       1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1500,
      1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485,       1502, 1503, 1504, 1505, 1507, 1508, 1509, 1511, 1512, 1514,
      1486, 1487, 1488, 1489, 1491, 1492, 1493, 1494, 1495, 1496,       1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1524, 1520,
      1497, 1498, 1499, 1500, 1502, 1504, 1505, 1506, 1507, 1509,       1525, 1526, 1519, 1527, 1528, 1530, 1531, 1532, 1534, 1535,
      1510, 1511, 1512, 1513, 1515, 1516, 1517, 1518, 1519, 1520,       1536, 1537, 1538, 1540, 1541, 1543, 1544, 1545, 1546, 1548,
      1522, 1523, 1524, 1525, 1526, 1528, 1529, 1530, 1531, 1532,       1549, 1550, 1552, 1554, 1556, 1557, 1558, 1559, 1560, 1561,
   
      1533, 1534, 1535, 1536, 1537, 1538, 1539, 1540, 1541, 1542,       1562, 1563, 1564, 1565, 1567, 1568, 1569, 1570, 1571, 1572,
      1543, 1545, 1547, 1548, 1549, 1550, 1552, 1553, 1554, 1556,       1573, 1574, 1575, 1576, 1577, 1578, 1579, 1580, 1581, 1582,
      1557, 1558, 1559, 1560, 1561, 1557, 1563, 1559, 1560, 1562,       1583, 1584, 1585, 1568, 1586, 1587, 1588, 1589, 1590, 1591,
      1562, 1565, 1566, 1567, 1568, 1569, 1569, 1570, 1571, 1572,       1592, 1593, 1594, 1595, 1596, 1597, 1598, 1599, 1600, 1601,
      1572, 1573, 1570, 1574, 1575, 1577, 1573, 1578, 1579, 1580,       1603, 1604, 1605, 1607, 1608, 1609, 1611, 1612, 1613, 1614,
      1581, 1582, 1583, 1584, 1585, 1587, 1583, 1588, 1589, 1582,       1615, 1616, 1617, 1619, 1617, 1620, 1622, 1624, 1625, 1627,
      1590, 1591, 1593, 1594, 1595, 1597, 1598, 1599, 1600, 1601,       1628, 1629, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638,
      1603, 1604, 1606, 1607, 1608, 1609, 1611, 1612, 1613, 1615,       1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1646, 1647,
      1617, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627,       1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657,
      1628, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638,       1658, 1659, 1660, 1661, 1663, 1665, 1666, 1667, 1668, 1669,
   
      1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648,       1670, 1672, 1674, 1675, 1676, 1678, 1679, 1680, 1682, 1684,
      1631, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656, 1657,       1685, 1687, 1688, 1689, 1690, 1691, 1693, 1694, 1695, 1696,
      1658, 1659, 1660, 1661, 1662, 1663, 1664, 1666, 1667, 1668,       1697, 1698, 1699, 1700, 1701, 1702, 1703, 1705, 1706, 1707,
      1670, 1671, 1672, 1674, 1675, 1676, 1677, 1678, 1679, 1680,       1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717,
      1682, 1680, 1683, 1685, 1687, 1688, 1690, 1691, 1692, 1694,       1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727,
      1695, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704,       1728, 1729, 1730, 1731, 1732, 1733, 1734, 1736, 1737, 1739,
      1705, 1706, 1707, 1708, 1709, 1709, 1710, 1711, 1712, 1713,       1740, 1741, 1743, 1745, 1747, 1748, 1749, 1750, 1751, 1752,
      1714, 1715, 1716, 1717, 1717, 1718, 1719, 1720, 1720, 1721,       1753, 1754, 1755, 1756, 1758, 1759, 1760, 1761, 1763, 1764,
      1718, 1722, 1722, 1724, 1725, 1726, 1727, 1728, 1729, 1731,       1765, 1766, 1767, 1768, 1769, 1770, 1771, 1773, 1774, 1776,
      1732, 1727, 1733, 1734, 1735, 1735, 1737, 1738, 1739, 1740,       1777, 1778, 1779, 1780, 1782, 1783, 1784, 1785, 1786, 1787,
   
      1741, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749,       1788, 1789, 1791, 1792, 1794, 1795, 1797, 1798, 1799, 1800,
      1750, 1751, 1753, 1755, 1756, 1757, 1758, 1759, 1760, 1762,       1801, 1802, 1803, 1804, 1806, 1808, 1809, 1810, 1812, 1813,
      1764, 1765, 1766, 1768, 1769, 1770, 1772, 1774, 1775, 1777,       1815, 1816, 1818, 1819, 1820, 1821, 1823, 1824, 1825, 1826,
      1778, 1779, 1780, 1781, 1783, 1784, 1785, 1786, 1787, 1788,       1828, 1829, 1830, 1831, 1832, 1833, 1834, 1835, 1837, 1839,
      1789, 1790, 1791, 1792, 1793, 1795, 1796, 1797, 1798, 1799,       1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1850,
      1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809,       1851, 1852, 1853, 1854, 1856, 1858, 1859, 1860, 1861, 1862,
      1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819,       1863, 1865, 1866, 1867, 1868, 1869, 1870, 1872, 1873, 1875,
      1820, 1821, 1822, 1823, 1824, 1826, 1827, 1829, 1830, 1831,       1876, 1877, 1878, 1880, 1881, 1883, 1884, 1885, 1886, 1888,
      1833, 1835, 1837, 1838, 1839, 1840, 1841, 1842, 1843, 1844,       1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898,
      1845, 1846, 1848, 1849, 1850, 1851, 1853, 1854, 1855, 1856,       1900, 1902, 1904, 1905, 1906, 1908, 1909, 1910, 1911, 1912,
   
      1857, 1858, 1859, 1860, 1861, 1863, 1864, 1866, 1867, 1868,       1914, 1915, 1916, 1917, 1918, 1919, 1921, 1922, 1924, 1925,
      1869, 1871, 1872, 1873, 1874, 1875, 1875, 1877, 1878, 1879,       1926, 1928, 1929, 1930, 1932, 1933, 1934, 1935, 1936, 1937,
      1881, 1882, 1883, 1884, 1885, 1886, 1887, 1887, 1888, 1889,       1938, 1940, 1941, 1942, 1943, 1944, 1945, 1947, 1948, 1950,
      1890, 1891, 1893, 1894, 1895, 1896, 1897, 1899, 1900, 1901,       1951, 1952, 1953, 1954, 1955, 1956, 1958, 1959, 1960, 1962,
      1902, 1903, 1905, 1906, 1907, 1902, 1908, 1909, 1910, 1911,       1963, 1964, 1966, 1967, 1968, 1969, 1970, 1971, 1973, 1975,
      1912, 1914, 1915, 1917, 1918, 1920, 1921, 1922, 1923, 1924,       1977, 1978, 1980, 1981, 1982, 1983, 1984, 1986, 1987, 1988,
      1925, 1926, 1927, 1929, 1931, 1932, 1933, 1935, 1936, 1938,       1990, 1991, 1993, 1995, 1996, 1997, 1998, 2000, 2001, 2002,
      1939, 1941, 1942, 1943, 1944, 1946, 1947, 1948, 1949, 1951,       2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
      1952, 1953, 1954, 1955, 1956, 1957, 1958, 1960, 1962, 1963,       2013, 2015, 2016, 2017, 2019, 2020, 2021, 2022, 2023, 2025,
      1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1973, 1974,       2027, 2028, 2030, 2032, 2034, 2036, 2037, 2038, 2039, 2040,
   
      1975, 1976, 1977, 1979, 1981, 1982, 1983, 1984, 1985, 1986,       2042, 2043, 2044, 2046, 2047, 2049, 2050, 2052, 2053, 2055,
      1988, 1989, 1990, 1991, 1992, 1993, 1995, 1996, 1998, 1999,       2056, 2057, 2058, 2059, 2061, 2063, 2064, 2065, 2066, 2067,
      2000, 2001, 2003, 2004, 2006, 2007, 2008, 2009, 2011, 2012,       2068, 2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2078,
      2013, 2014, 2015, 2017, 2018, 2019, 2020, 2021, 2022, 2023,       2080, 2081, 2082, 2083, 2084, 2085, 2087, 2088, 2089, 2091,
      2024, 2025, 2027, 2028, 2029, 2030, 2031, 2032, 2033, 2034,       2093, 2094, 2095, 2096, 2097, 2099, 2101, 2103, 2105, 2106,
      2035, 2036, 2037, 2038, 2039, 2040, 2041, 2041, 2042, 2043,       2108, 2110, 2111, 2112, 2113, 2115, 2116, 2117, 2119, 2120,
      2044, 2045, 2046, 2047, 2048, 2049, 2051, 2053, 2055, 2056,       2121, 2123, 2125, 2126, 2127, 2129, 2130, 2131, 2132, 2133,
      2057, 2059, 2060, 2061, 2062, 2063, 2065, 2066, 2067, 2068,       2134, 2135, 2136, 2137, 2138, 2140, 2142, 2143, 2144, 2145,
      2069, 2070, 2072, 2073, 2075, 2076, 2077, 2079, 2080, 2081,       2146, 2147, 2148, 2149, 2150, 2152, 2153, 2154, 2155, 2157,
      2083, 2084, 2085, 2086, 2087, 2088, 2089, 2091, 2092, 2093,       2158, 2160, 2162, 2164, 2166, 2167, 2169, 2171, 2172, 2173,
   
      2094, 2095, 2096, 2098, 2099, 2101, 2102, 2103, 2104, 2105,       2175, 2177, 2179, 2179, 2180, 2180, 2181, 2181, 2182, 2182,
      2106, 2107, 2109, 2110, 2111, 2113, 2114, 2115, 2117, 2118,       2183, 2184, 2184, 2185, 2186, 2187, 2188, 2189, 2190, 2191,
      2119, 2120, 2121, 2122, 2124, 2125, 2126, 2127, 2128, 2129,       2192, 2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201,
      2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139,       2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211,
      2140, 2141, 2142, 2143, 2144, 2145, 2146, 2148, 2149, 2150,       2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, 2220, 2221,
      2152, 2154, 2155, 2157, 2158, 2159, 2160, 2161, 2163, 2164,       2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, 2230, 2231,
      2165, 2167, 2168, 2170, 2172, 2173, 2174, 2175, 2177, 2178,       2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240, 2241,
      2179, 2180, 2181, 2182, 2183, 2184, 2185, 2186, 2187, 2188,       2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2250, 2251,
      2189, 2190, 2192, 2193, 2194, 2196, 2197, 2198, 2199, 2200,       2252, 2253, 2254, 2255, 2256, 2257, 2258, 2259, 2260, 2261,
      2202, 2204, 2205, 2207, 2209, 2211, 2213, 2214, 2215, 2216,       2262, 2263, 2264, 2265, 2266, 2267, 2268, 2268, 2269, 2270,
   
      2217, 2218, 2219, 2220, 2221, 2222, 2223, 2224, 2225, 2226,       2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280,
      2227, 2228, 2229, 2230, 2231, 2232, 2233, 2234, 2235, 2236,       2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290,
      2237, 2238, 2239, 2240, 2241, 2243, 2244, 2245, 2247, 2248,       2291, 2292, 2293, 2294, 2295, 2296, 2296, 2297, 2298, 2299,
      2250, 2251, 2253, 2254, 2256, 2257, 2258, 2259, 2260, 2262,       2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309,
      2264, 2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273,       2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319,
      2274, 2275, 2276, 2277, 2279, 2281, 2282, 2283, 2284, 2285,       2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329,
      2286, 2287, 2288, 2289, 2290, 2291, 2292, 2293, 2294, 2295,       2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339,
      2296, 2297, 2298, 2299, 2300, 2301, 2302, 2303, 2304, 2305,       2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349,
      2306, 2307, 2308, 2309, 2310, 2312, 2313, 2314, 2316, 2318,       2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359,
      2319, 2320, 2321, 2322, 2324, 2326, 2328, 2330, 2331, 2333,       2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369,
   
      2335, 2336, 2337, 2338, 2340, 2341, 2342, 2344, 2345, 2346,       2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379,
      2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356,       2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389,
      2357, 2358, 2359, 2361, 2362, 2363, 2364, 2365, 2366, 2367,       2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399,
      2368, 2369, 2370, 2371, 2373, 2375, 2376, 2377, 2379, 2380,       2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409,
      2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2390, 2391,       2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419,
      2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2401, 2402,       2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429,
      2403, 2405, 2406, 2408, 2409, 2410, 2411, 2413, 2414, 2415,       2430, 2431, 2432, 2433, 2434,  633,  632,  631,  630,  629,
      2416, 2417, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426,        628,  627,  626,  625,  624,  623,  622,  621,  620,  619,
      2427, 2429, 2430, 2431, 2433, 2434, 2435, 2436, 2438, 2439,        618,  617,  616,  615,  614,  613,  612,  611,  610,  609,
      2441, 2443, 2444, 2445, 2447, 2448, 2450, 2452, 2453, 2455,        608,  607,  606,  604,  603,  602,  601,  599,  598,  596,
   
      2456, 2457, 2458, 2459, 2461, 2462, 2464, 2466, 2468, 2470,        595,  594,  593,  592,  591,  590,  589,  588,  586,  584,
      2471, 2473, 2474, 2476, 2478, 2480, 2481, 2483, 2485, 2487,        583,  582,  581,  580,  579,  578,  577,  576,  575,  574,
      2488, 2489, 2491, 2493, 2494, 2495, 2497, 2499, 2500, 2502,        573,  572,  571,  570,  569,  568,  567,  566,  564,  563,
      2504, 2506, 2508, 2510, 2510, 2511, 2511, 2512, 2512, 2513,        562,  561,  560,  558,  557,  556,  555,  554,  553,  552,
      2513, 2514, 2515, 2515, 2516, 2517, 2518, 2519, 2520, 2521,        551,  550,  549,  548,  546,  545,  544,  543,  541,  540,
      2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531,        538,  537,  536,  535,  534,  533,  531,  530,  529,  528,
      2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541,        527,  526,  525,  524,  523,  521,  520,  516,  515,  514,
      2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551,        513,  512,  511,  510,  509,  508,  505,  504,  502,  501,
      2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561,        500,  499,  498,  497,  496,  495,  494,  493,  492,  491,
      2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571,        490,  489,  488,  487,  486,  485,  483,  482,  481,  480,
   
      2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, 2581,        479,  478,  477,  476,  475,  474,  473,  471,  470,  469,
      2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591,        467,  466,  465,  464,  463,  462,  460,  459,  458,  456,
      2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2599, 2600,        455,  454,  453,  452,  451,  450,  448,  447,  446,  444,
      2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610,        443,  442,  441,  440,  439,  438,  437,  436,  434,  432,
      2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620,        431,  430,  429,  428,  427,  426,  425,  424,  423,  422,
      2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2628, 2629,        421,  420,  419,  418,  417,  416,  415,  414,  413,  412,
      2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639,        410,  409,  408,  407,  406,  405,  404,  403,  402,  401,
      2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649,        400,  399,  398,  397,  396,  395,  394,  393,  392,  391,
      2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659,        390,  389,  388,  386,  385,  384,  383,  382,  380,  379,
      2660, 2661, 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669,        378,  377,  376,  375,  374,  373,  372,  371,  370,  369,
   
      2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679,        368,  367,  366,  365,  364,  363,  360,  359,  357,  356,
      2680, 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689,        355,  351,  349,  348,  347,  346,  345,  344,  343,  342,
      2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699,        341,  339,  338,  337,  336,  335,  333,  331,  330,  329,
      2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709,        328,  326,  325,  324,  323,  322,  321,  320,  319,  317,
      2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719,        316,  315,  314,  313,  312,  311,  310,  309,  308,  307,
      2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729,        306,  305,  302,  300,  299,  298,  297,  296,  295,  294,
      2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739,        293,  292,  291,  290,  289,  288,  287,  286,  285,  284,
      2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749,        283,  281,  280,  279,  278,  277,  276,  275,  274,  273,
      2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759,        271,  270,  269,  267,  266,  265,  263,  262,  260,  259,
      2760, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768, 2769,        258,  257,  256,  255,  254,  253,  252,  251,  250,  249,
   
      2770, 2771, 2772, 2773, 2774, 2775, 2776, 2777, 2778, 2779,        248,  247,  246,  245,  244,  243,  242,  241,  240,  239,
      2780, 2781, 2782, 2783, 2784, 2785, 2786, 2787, 2788, 2789,        238,  236,  235,  234,  233,  232,  231,  230,  229,  228,
      2790, 2791, 2792, 2793, 2794, 2795, 2796, 2797, 2798, 2799,        227,  226,  225,  224,  222,  221,  220,  219,  218,  217,
      2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809,        216,  215,  214,  213,  212,  211,  209,  208,  207,  205,
       633,  632,  631,  630,  629,  628,  627,  626,  625,  624,        204,  203,  201,  200,  199,  198,  197,  196,  195,  194,
       623,  622,  621,  620,  619,  618,  617,  616,  615,  614,        193,  192,  191,  188,  187,  186,  185,  184,  183,  182,
       613,  612,  611,  610,  608,  607,  606,  605,  603,  602,        181,  179,  178,  176,  173,  172,  171,  170,  169,  167,
       600,  599,  598,  597,  596,  595,  594,  593,  592,  590,        164,  162,  161,  160,  159,  158,  157,  156,  155,  154,
       588,  587,  586,  585,  584,  583,  582,  581,  580,  579,        153,  152,  151,  150,  149,  148,  147,  144,  140,  136,
       578,  577,  576,  575,  574,  573,  572,  571,  570,  568,        135,  134,  131,  129,  128,  127,  125,  124,  123,  122,
   
       567,  566,  565,  564,  562,  561,  560,  559,  558,  557,        121,  120,  117,  115,  114,  113,  112,  109,  108,  107,
       556,  555,  554,  553,  552,  550,  549,  548,  547,  545,        106,  105,  104,  103,  101,  100,   99,   97,   96,   93,
       544,  542,  541,  540,  539,  538,  537,  535,  534,  533,         92,   91,   90,   89,   88,   87,   86,   84,   83,   82,
       532,  531,  530,  529,  528,  527,  525,  524,  520,  519,         81,   80,   79,   78,   77,   76,   75,   74,   73,   72,
       518,  517,  516,  515,  514,  513,  512,  509,  508,  506,         71,   70,   69,   68,   67,   66,   65,   63,   62,   61,
       505,  504,  503,  502,  501,  500,  499,  498,  497,  496,         59,   58,   56,   55,   53,   52,   51,   46,   42,   39,
       495,  494,  493,  492,  491,  490,  489,  487,  486,  485,         36,   23,   12,    9, 2178, 2178, 2178, 2178, 2178, 2178,
       484,  483,  482,  481,  480,  479,  478,  477,  475,  474,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
       473,  471,  470,  469,  468,  467,  466,  465,  463,  462,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178,
       461,  459,  458,  457,  456,  455,  454,  453,  451,  450,       2178, 2178, 2178, 2178, 2178, 2178, 2178, 2178
   
       449,  447,  446,  445,  444,  443,  442,  441,  440,  439,  
       437,  435,  434,  433,  432,  431,  430,  429,  428,  427,  
       426,  425,  424,  423,  422,  421,  420,  419,  418,  417,  
       416,  415,  413,  412,  411,  410,  409,  408,  407,  406,  
       405,  404,  403,  402,  401,  400,  399,  398,  397,  396,  
       395,  394,  393,  392,  391,  389,  388,  387,  386,  385,  
       383,  382,  381,  380,  379,  378,  377,  376,  375,  374,  
       373,  372,  371,  370,  369,  368,  367,  366,  363,  362,  
       360,  359,  358,  354,  352,  351,  350,  349,  348,  347,  
       346,  345,  344,  342,  341,  340,  339,  338,  336,  334,  
   
       333,  332,  331,  329,  328,  327,  326,  325,  324,  323,  
       322,  320,  319,  318,  317,  316,  315,  314,  313,  312,  
       311,  310,  309,  308,  307,  304,  302,  301,  300,  299,  
       298,  297,  296,  295,  294,  293,  292,  291,  290,  289,  
       288,  287,  286,  285,  283,  282,  281,  280,  279,  278,  
       277,  276,  275,  273,  272,  271,  269,  268,  267,  265,  
       264,  262,  261,  260,  259,  258,  257,  256,  255,  254,  
       253,  252,  251,  250,  249,  248,  247,  246,  245,  244,  
       243,  242,  241,  240,  238,  237,  236,  235,  234,  233,  
       232,  231,  230,  229,  228,  227,  226,  224,  223,  222,  
   
       221,  220,  219,  218,  217,  216,  215,  214,  213,  211,  
       210,  209,  207,  206,  205,  203,  202,  201,  200,  199,  
       198,  197,  196,  195,  194,  193,  190,  189,  188,  187,  
       186,  185,  184,  183,  181,  180,  178,  176,  174,  173,  
       172,  171,  170,  168,  165,  163,  162,  161,  160,  159,  
       158,  157,  156,  155,  154,  153,  152,  151,  150,  149,  
       148,  145,  141,  137,  136,  135,  132,  130,  129,  128,  
       126,  125,  124,  123,  122,  121,  118,  116,  115,  114,  
       113,  110,  109,  108,  107,  106,  105,  104,  102,  101,  
       100,   98,   97,   94,   93,   92,   91,   90,   89,   88,  
   
        87,   85,   84,   83,   82,   81,   80,   79,   78,   77,  
        76,   75,   74,   73,   72,   71,   70,   69,   68,   67,  
        66,   65,   63,   62,   61,   59,   58,   56,   55,   53,  
        52,   51,   46,   42,   39,   36,   23,   12,    9, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509, 2509,  
      2509, 2509, 2509  
     } ;      } ;
   
 static yy_state_type yy_last_accepting_state;  static yy_state_type yy_last_accepting_state;
 static char *yy_last_accepting_cpos;  static char *yy_last_accepting_cpos;
   
   extern int yy_flex_debug;
   int yy_flex_debug = 0;
   
 /* The intent behind this definition is that it'll catch  /* The intent behind this definition is that it'll catch
  * any uses of REJECT which flex missed.   * any uses of REJECT which flex missed.
  */   */
Line 1896
 
Line 1775
 #define YY_RESTORE_YY_MORE_OFFSET  #define YY_RESTORE_YY_MORE_OFFSET
 char *yytext;  char *yytext;
 #line 1 "loader.l"  #line 1 "loader.l"
 #define INITIAL 0  
 #line 2 "loader.l"  #line 2 "loader.l"
 /*  /*
  * static char *rcsid_object_c =   * static char *rcsid_object_c =
  *   "$Id: loader.c,v 1.88 2006/06/06 22:16:24 ryo_saeba Exp $";   *   "$Id: loader.c,v 1.89 2006/08/26 17:56:20 ryo_saeba Exp $";
  */   */
   
 /*  /*
Line 2487
 
Line 2365
     } /* Else not a numeric value */      } /* Else not a numeric value */
 }  }
   
 #define MESSAGE 1  
   
 #define LORE 2  
   
 #define SCRIPT 3  
   
 /* Don't have to link with -lfl with this */  /* Don't have to link with -lfl with this */
 /* need yy_push_state, yy_pop_state */  /* need yy_push_state, yy_pop_state */
 #define YY_STACK_USED 1  #line 2374 "loader.c"
 #line 2498 "loader.c"  
   #define INITIAL 0
   #define MESSAGE 1
   #define LORE 2
   #define SCRIPT 3
   
   #ifndef YY_NO_UNISTD_H
   /* Special case for "unistd.h", since it is non-ANSI. We include it way
    * down here because we want the user's section 1 to have been scanned first.
    * The user has a chance to override it with an option.
    */
   #include <unistd.h>
   #endif
   
   #ifndef YY_EXTRA_TYPE
   #define YY_EXTRA_TYPE void *
   #endif
   
   static int yy_init_globals (void );
   
 /* Macros after this point can all be overridden by user definitions in  /* Macros after this point can all be overridden by user definitions in
  * section 1.   * section 1.
Line 2504
 
Line 2397
   
 #ifndef YY_SKIP_YYWRAP  #ifndef YY_SKIP_YYWRAP
 #ifdef __cplusplus  #ifdef __cplusplus
 extern "C" int yywrap YY_PROTO(( void ));  extern "C" int yywrap (void );
 #else  #else
 extern int yywrap YY_PROTO(( void ));  extern int yywrap (void );
 #endif  #endif
 #endif  #endif
   
 #ifndef YY_NO_UNPUT      static void yyunput (int c,char *buf_ptr  );
 static void yyunput YY_PROTO(( int c, char *buf_ptr ));  
 #endif  
   
 #ifndef yytext_ptr  #ifndef yytext_ptr
 static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));  static void yy_flex_strncpy (char *,yyconst char *,int );
 #endif  #endif
   
 #ifdef YY_NEED_STRLEN  #ifdef YY_NEED_STRLEN
 static int yy_flex_strlen YY_PROTO(( yyconst char * ));  static int yy_flex_strlen (yyconst char * );
 #endif  #endif
   
 #ifndef YY_NO_INPUT  #ifndef YY_NO_INPUT
   
 #ifdef __cplusplus  #ifdef __cplusplus
 static int yyinput YY_PROTO(( void ));  static int yyinput (void );
 #else  #else
 static int input YY_PROTO(( void ));  static int input (void );
 #endif  #endif
   
 #endif  #endif
   
 #if YY_STACK_USED  
 static int yy_start_stack_ptr = 0;  static int yy_start_stack_ptr = 0;
 static int yy_start_stack_depth = 0;  static int yy_start_stack_depth = 0;
 static int *yy_start_stack = 0;          static int *yy_start_stack = NULL;
 #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      static void yy_push_state (int new_state );
 #define YY_NO_PUSH_STATE 1  
 #define YY_NO_POP_STATE 1  
 #define YY_NO_TOP_STATE 1  
 #endif  
   
 #ifdef YY_MALLOC_DECL      static void yy_pop_state (void );
 YY_MALLOC_DECL     
 #else      static int yy_top_state (void );
 #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. */  /* Amount of stuff to slurp up with each read. */
 #ifndef YY_READ_BUF_SIZE  #ifndef YY_READ_BUF_SIZE
Line 2571
 
Line 2439
 #endif  #endif
   
 /* Copy whatever the last rule matched to the standard output. */  /* Copy whatever the last rule matched to the standard output. */
   
 #ifndef ECHO  #ifndef ECHO
 /* This used to be an fputs(), but since the string might contain NUL's,  /* This used to be an fputs(), but since the string might contain NUL's,
  * we now use fwrite().   * we now use fwrite().
Line 2584
 
Line 2451
  */   */
 #ifndef YY_INPUT  #ifndef YY_INPUT
 #define YY_INPUT(buf,result,max_size) \  #define YY_INPUT(buf,result,max_size) \
  if ( yy_current_buffer->yy_is_interactive ) \   if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
  { \   { \
  int c = '*', n; \   int c = '*'; \
    size_t n; \
  for ( n = 0; n < max_size && \   for ( n = 0; n < max_size && \
       (c = getc( yyin )) != EOF && c != '\n'; ++n ) \        (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
  buf[n] = (char) c; \   buf[n] = (char) c; \
Line 2596
 
Line 2464
  YY_FATAL_ERROR( "input in flex scanner failed" ); \   YY_FATAL_ERROR( "input in flex scanner failed" ); \
  result = n; \   result = n; \
  } \   } \
  else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \   else \
    && ferror( yyin ) ) \   { \
  YY_FATAL_ERROR( "input in flex scanner failed" );   errno=0; \
    while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
    { \
    if( errno != EINTR) \
    { \
    YY_FATAL_ERROR( "input in flex scanner failed" ); \
    break; \
    } \
    errno=0; \
    clearerr(yyin); \
    } \
    }\
   \
   
 #endif  #endif
   
 /* No semi-colon after return; correct usage is to write "yyterminate();" -  /* No semi-colon after return; correct usage is to write "yyterminate();" -
Line 2619
 
Line 2500
 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )  #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
 #endif  #endif
   
   /* end tables serialization structures and prototypes */
   
 /* Default declaration of generated scanner - a define so the user can  /* Default declaration of generated scanner - a define so the user can
  * easily add parameters.   * easily add parameters.
  */   */
 #ifndef YY_DECL  #ifndef YY_DECL
 #define YY_DECL int yylex YY_PROTO(( void ))  #define YY_DECL_IS_OURS 1
 #endif  
   extern int yylex (void);
   
   #define YY_DECL int yylex (void)
   #endif /* !YY_DECL */
   
 /* Code executed at the beginning of each rule, after yytext and yyleng  /* Code executed at the beginning of each rule, after yytext and yyleng
  * have been set up.   * have been set up.
Line 2640
 
Line 2527
   
 #define YY_RULE_SETUP \  #define YY_RULE_SETUP \
  if ( yyleng > 0 ) \   if ( yyleng > 0 ) \
  yy_current_buffer->yy_at_bol = \   YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \
  (yytext[yyleng - 1] == '\n'); \   (yytext[yyleng - 1] == '\n'); \
  YY_USER_ACTION   YY_USER_ACTION
   
   /** The main scanner function which does all the work.
    */
 YY_DECL  YY_DECL
  {   {
  register yy_state_type yy_current_state;   register yy_state_type yy_current_state;
  register char *yy_cp = NULL, *yy_bp = NULL;   register char *yy_cp, *yy_bp;
  register int yy_act;   register int yy_act;
   
 #line 609 "loader.l"  #line 609 "loader.l"
Line 2661
 
Line 2550
   
   
   
 #line 2663 "loader.c"  #line 2554 "loader.c"
   
  if ( yy_init )   if ( !(yy_init) )
  {   {
  yy_init = 0;   (yy_init) = 1;
   
 #ifdef YY_USER_INIT  #ifdef YY_USER_INIT
  YY_USER_INIT;   YY_USER_INIT;
 #endif  #endif
   
  if ( ! yy_start )   if ( ! (yy_start) )
  yy_start = 1; /* first start state */   (yy_start) = 1; /* first start state */
   
  if ( ! yyin )   if ( ! yyin )
  yyin = stdin;   yyin = stdin;
Line 2680
 
Line 2569
  if ( ! yyout )   if ( ! yyout )
  yyout = stdout;   yyout = stdout;
   
  if ( ! yy_current_buffer )   if ( ! YY_CURRENT_BUFFER ) {
  yy_current_buffer =   yyensure_buffer_stack ();
    YY_CURRENT_BUFFER_LVALUE =
  yy_create_buffer( yyin, YY_BUF_SIZE );   yy_create_buffer( yyin, YY_BUF_SIZE );
    }
   
  yy_load_buffer_state();   yy_load_buffer_state();
  }   }
   
  while ( 1 ) /* loops until end-of-file is reached */   while ( 1 ) /* loops until end-of-file is reached */
  {   {
  yy_cp = yy_c_buf_p;   yy_cp = (yy_c_buf_p);
   
  /* Support of yytext. */   /* Support of yytext. */
  *yy_cp = yy_hold_char;   *yy_cp = (yy_hold_char);
   
  /* yy_bp points to the position in yy_ch_buf of the start of   /* yy_bp points to the position in yy_ch_buf of the start of
  * the current run.   * the current run.
  */   */
  yy_bp = yy_cp;   yy_bp = yy_cp;
   
  yy_current_state = yy_start;   yy_current_state = (yy_start);
  yy_current_state += YY_AT_BOL();   yy_current_state += YY_AT_BOL();
 yy_match:  yy_match:
  do   do
Line 2707
 
Line 2598
  register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];   register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  yy_last_accepting_state = yy_current_state;   (yy_last_accepting_state) = yy_current_state;
  yy_last_accepting_cpos = yy_cp;   (yy_last_accepting_cpos) = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2510 )   if ( yy_current_state >= 2179 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  ++yy_cp;   ++yy_cp;
  }   }
  while ( yy_base[yy_current_state] != 2840 );   while ( yy_base[yy_current_state] != 2465 );
   
 yy_find_action:  yy_find_action:
  yy_act = yy_accept[yy_current_state];   yy_act = yy_accept[yy_current_state];
  if ( yy_act == 0 )   if ( yy_act == 0 )
  { /* have to back up */   { /* have to back up */
  yy_cp = yy_last_accepting_cpos;   yy_cp = (yy_last_accepting_cpos);
  yy_current_state = yy_last_accepting_state;   yy_current_state = (yy_last_accepting_state);
  yy_act = yy_accept[yy_current_state];   yy_act = yy_accept[yy_current_state];
  }   }
   
  YY_DO_BEFORE_ACTION;   YY_DO_BEFORE_ACTION;
   
   
 do_action: /* This label is used only to access EOF actions. */  do_action: /* This label is used only to access EOF actions. */
   
   
  switch ( yy_act )   switch ( yy_act )
  { /* beginning of action switch */   { /* beginning of action switch */
  case 0: /* must back up */   case 0: /* must back up */
  /* undo the effects of YY_DO_BEFORE_ACTION */   /* undo the effects of YY_DO_BEFORE_ACTION */
  *yy_cp = yy_hold_char;   *yy_cp = (yy_hold_char);
  yy_cp = yy_last_accepting_cpos;   yy_cp = (yy_last_accepting_cpos);
  yy_current_state = yy_last_accepting_state;   yy_current_state = (yy_last_accepting_state);
  goto yy_find_action;   goto yy_find_action;
   
 case 1:  case 1:
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */  *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
 yy_c_buf_p = yy_cp -= 1;  (yy_c_buf_p) = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 619 "loader.l"  #line 619 "loader.l"
 { BEGIN( MESSAGE ); msgbuf[0]='\0'; }  { BEGIN( MESSAGE ); msgbuf[0]='\0'; }
  YY_BREAK   YY_BREAK
 case 2:  case 2:
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */  *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
 yy_c_buf_p = yy_cp -= 1;  (yy_c_buf_p) = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 620 "loader.l"  #line 620 "loader.l"
Line 2775
 
Line 2664
 {strcat(msgbuf, yytext); strcat(msgbuf,"\n"); }  {strcat(msgbuf, yytext); strcat(msgbuf,"\n"); }
  YY_BREAK   YY_BREAK
 case 4:  case 4:
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */  *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
 yy_c_buf_p = yy_cp -= 1;  (yy_c_buf_p) = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 631 "loader.l"  #line 631 "loader.l"
 { BEGIN( LORE ); lorebuf[0]='\0'; }  { BEGIN( LORE ); lorebuf[0]='\0'; }
  YY_BREAK   YY_BREAK
 case 5:  case 5:
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */  *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
 yy_c_buf_p = yy_cp -= 1;  (yy_c_buf_p) = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 632 "loader.l"  #line 632 "loader.l"
Line 2863
 
Line 2752
 FREE_AND_COPY(op->slaying, yval());  FREE_AND_COPY(op->slaying, yval());
  YY_BREAK   YY_BREAK
 case 14:  case 14:
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */  *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
 yy_c_buf_p = yy_cp -= 1;  (yy_c_buf_p) = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 675 "loader.l"  #line 675 "loader.l"
Line 2934
 
Line 2823
      }       }
  YY_BREAK   YY_BREAK
 case 18:  case 18:
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */  *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
 yy_c_buf_p = yy_cp -= 1;  (yy_c_buf_p) = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 731 "loader.l"  #line 731 "loader.l"
Line 2946
 
Line 2835
      }       }
  YY_BREAK   YY_BREAK
 case 19:  case 19:
 *yy_cp = yy_hold_char; /* undo effects of setting up yytext */  *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */
 yy_c_buf_p = yy_cp -= 1;  (yy_c_buf_p) = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 737 "loader.l"  #line 737 "loader.l"
Line 4124
 
Line 4013
  YY_BREAK   YY_BREAK
 case 240:  case 240:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1040 "loader.l"  #line 1039 "loader.l"
 {  { char *yv=yval();
     char *yv=yval();  
     if (*yv=='\0')   if (*yv=='\0') LOG(llevError,"Script (current weapon) without val\n");
         LOG(llevError,"Event (apply) without val\n");  
     else      else
         insert_event(op,EVENT_APPLY,yv,NULL,NULL);                                                  {
                                                           FREE_AND_COPY(op->current_weapon_script, yv);
                                                   };
 }  }
  YY_BREAK   YY_BREAK
 case 241:  case 241:
   /* rule 241 can match eol */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1048 "loader.l"  #line 1048 "loader.l"
 {  {/* ignore empty lines, newlines we don't do above */}
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (apply) without plugin\n");  
     else  
         insert_event(op,EVENT_APPLY,NULL,yv,NULL);  
 }  
  YY_BREAK   YY_BREAK
 case 242:  case 242:
   /* rule 242 can match eol */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1056 "loader.l"  #line 1049 "loader.l"
 {  {}
     char *yv=yval();   YY_BREAK
     if (*yv=='\0')  case YY_STATE_EOF(INITIAL):
         LOG(llevError,"Event (apply) without options\n");  case YY_STATE_EOF(MESSAGE):
     else  case YY_STATE_EOF(LORE):
         insert_event(op,EVENT_APPLY,NULL,NULL,yv);  case YY_STATE_EOF(SCRIPT):
 }  #line 1051 "loader.l"
   {/* If we got an error, return the error.  Otherwise, return that we got EOF */
        if (lex_error!=0) return lex_error; else return LL_EOF;}
  YY_BREAK   YY_BREAK
 case 243:  case 243:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1064 "loader.l"  #line 1053 "loader.l"
 {  { add_key_value(op); }
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (attack) without val\n");  
     else  
         insert_event(op,EVENT_ATTACK,yv,NULL,NULL);  
 }  
  YY_BREAK   YY_BREAK
 case 244:  case 244:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1072 "loader.l"  #line 1054 "loader.l"
 {  ECHO;
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (attack) without plugin\n");  
     else  
         insert_event(op,EVENT_ATTACK,NULL,yv,NULL);  
 }  
  YY_BREAK   YY_BREAK
 case 245:  #line 4057 "loader.c"
 YY_RULE_SETUP  
 #line 1080 "loader.l"   case YY_END_OF_BUFFER:
 {  {
     char *yv=yval();   /* Amount of text matched not including the EOB char. */
     if (*yv=='\0')   int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
         LOG(llevError,"Event (attack) without options\n");  
     else   /* Undo the effects of YY_DO_BEFORE_ACTION. */
         insert_event(op,EVENT_ATTACK,NULL,NULL,yv);   *yy_cp = (yy_hold_char);
 }   YY_RESTORE_YY_MORE_OFFSET
  YY_BREAK  
 case 246:   if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
 YY_RULE_SETUP  
 #line 1087 "loader.l"  
 {  {
     char *yv=yval();   /* We're scanning a new file or input source.  It's
     if (*yv=='\0')   * possible that this happened because the user
         LOG(llevError,"Event (death) without val\n");   * just pointed yyin at a new source and called
     else   * yylex().  If so, then we have to assure
         insert_event(op,EVENT_DEATH,yv,NULL,NULL);   * consistency between YY_CURRENT_BUFFER and our
    * globals.  Here is the right place to do so, because
    * this is the first action (other than possibly a
    * back-up) that will match for the new input source.
    */
    (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
    YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
    YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
 }  }
  YY_BREAK  
 case 247:   /* Note that here we test for yy_c_buf_p "<=" to the position
 YY_RULE_SETUP   * of the first EOB in the buffer, since yy_c_buf_p will
 #line 1095 "loader.l"   * already have been incremented past the NUL character
    * (since all states make transitions on EOB to the
    * end-of-buffer state).  Contrast this with the test
    * in input().
    */
    if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
    { /* This was really a NUL. */
    yy_state_type yy_next_state;
   
    (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
   
    yy_current_state = yy_get_previous_state(  );
   
    /* Okay, we're now positioned to make the NUL
    * transition.  We couldn't have
    * yy_get_previous_state() go ahead and do it
    * for us because it doesn't know how to deal
    * with the possibility of jamming (and we don't
    * want to build jamming into it because then it
    * will run more slowly).
    */
   
    yy_next_state = yy_try_NUL_trans( yy_current_state );
   
    yy_bp = (yytext_ptr) + YY_MORE_ADJ;
   
    if ( yy_next_state )
 {  {
     char *yv=yval();   /* Consume the NUL. */
     if (*yv=='\0')   yy_cp = ++(yy_c_buf_p);
         LOG(llevError,"Event (death) without plugin\n");   yy_current_state = yy_next_state;
     else   goto yy_match;
         insert_event(op,EVENT_DEATH,NULL,yv,NULL);  
 }  }
  YY_BREAK  
 case 248:  
 YY_RULE_SETUP  
 #line 1103 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (death) without options\n");  
     else      else
         insert_event(op,EVENT_DEATH,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 249:  
 YY_RULE_SETUP  
 #line 1110 "loader.l"  
 {  {
     char *yv=yval();   yy_cp = (yy_c_buf_p);
     if (*yv=='\0')   goto yy_find_action;
         LOG(llevError,"Event (drop) without val\n");  
     else  
         insert_event(op,EVENT_DROP,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 250:  
 YY_RULE_SETUP  
 #line 1118 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (drop) without plugin\n");  
     else  
         insert_event(op,EVENT_DROP,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 251:  
 YY_RULE_SETUP  
 #line 1126 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (drop) without options\n");  
     else  
         insert_event(op,EVENT_DROP,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 252:  
 YY_RULE_SETUP  
 #line 1133 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (pickup) without val\n");  
     else  
         insert_event(op,EVENT_PICKUP,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 253:  
 YY_RULE_SETUP  
 #line 1141 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (pickup) without plugin\n");  
     else  
         insert_event(op,EVENT_PICKUP,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 254:  
 YY_RULE_SETUP  
 #line 1149 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (pickup) without options\n");  
     else  
         insert_event(op,EVENT_PICKUP,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 255:  
 YY_RULE_SETUP  
 #line 1156 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (say) without val\n");  
     else  
         insert_event(op,EVENT_SAY,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 256:  
 YY_RULE_SETUP  
 #line 1164 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (say) without plugin\n");  
     else  
         insert_event(op,EVENT_SAY,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 257:  
 YY_RULE_SETUP  
 #line 1172 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (say) without options\n");  
     else  
         insert_event(op,EVENT_SAY,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 258:  
 YY_RULE_SETUP  
 #line 1179 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (stop) without val\n");  
     else  
         insert_event(op,EVENT_STOP,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 259:  
 YY_RULE_SETUP  
 #line 1187 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (stop) without plugin\n");  
     else  
         insert_event(op,EVENT_STOP,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 260:  
 YY_RULE_SETUP  
 #line 1195 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (stop) without options\n");  
     else  
         insert_event(op,EVENT_STOP,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 261:  
 YY_RULE_SETUP  
 #line 1202 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (time) without val\n");  
     else  
         insert_event(op,EVENT_TIME,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 262:  
 YY_RULE_SETUP  
 #line 1210 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (time) without plugin\n");  
     else  
         insert_event(op,EVENT_TIME,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 263:  
 YY_RULE_SETUP  
 #line 1218 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (time) without options\n");  
     else  
         insert_event(op,EVENT_TIME,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 264:  
 YY_RULE_SETUP  
 #line 1225 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (throw) without val\n");  
     else  
         insert_event(op,EVENT_THROW,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 265:  
 YY_RULE_SETUP  
 #line 1233 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (throw) without plugin\n");  
     else  
         insert_event(op,EVENT_THROW,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 266:  
 YY_RULE_SETUP  
 #line 1241 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (apply) without options\n");  
     else  
         insert_event(op,EVENT_THROW,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 267:  
 YY_RULE_SETUP  
 #line 1248 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (trigger) without val\n");  
     else  
         insert_event(op,EVENT_TRIGGER,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 268:  
 YY_RULE_SETUP  
 #line 1256 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (trigger) without plugin\n");  
     else  
         insert_event(op,EVENT_TRIGGER,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 269:  
 YY_RULE_SETUP  
 #line 1264 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (trigger) without options\n");  
     else  
         insert_event(op,EVENT_TRIGGER,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 270:  
 YY_RULE_SETUP  
 #line 1271 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (close) without val\n");  
     else  
         insert_event(op,EVENT_CLOSE,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 271:  
 YY_RULE_SETUP  
 #line 1279 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (close) without plugin\n");  
     else  
         insert_event(op,EVENT_CLOSE,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 272:  
 YY_RULE_SETUP  
 #line 1287 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (close) without options\n");  
     else  
         insert_event(op,EVENT_CLOSE,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 273:  
 YY_RULE_SETUP  
 #line 1294 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (timer) without val\n");  
     else  
         insert_event(op,EVENT_TIMER,yv,NULL,NULL);  
 }  
  YY_BREAK  
 case 274:  
 YY_RULE_SETUP  
 #line 1302 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (timer) without plugin\n");  
     else  
         insert_event(op,EVENT_TIMER,NULL,yv,NULL);  
 }  
  YY_BREAK  
 case 275:  
 YY_RULE_SETUP  
 #line 1310 "loader.l"  
 {  
     char *yv=yval();  
     if (*yv=='\0')  
         LOG(llevError,"Event (timer) without options\n");  
     else  
         insert_event(op,EVENT_TIMER,NULL,NULL,yv);  
 }  
  YY_BREAK  
 case 276:  
 YY_RULE_SETUP  
 #line 1318 "loader.l"  
 { char *yv=yval();  
   
  if (*yv=='\0') LOG(llevError,"Script (current weapon) without val\n");  
  else  
                                                 {  
                                                         FREE_AND_COPY(op->current_weapon_script, yv);  
                                                 };  
      }  
  YY_BREAK  
 case 277:  
 YY_RULE_SETUP  
 #line 1327 "loader.l"  
 {/* ignore empty lines, newlines we don't do above */}  
  YY_BREAK  
 case 278:  
 YY_RULE_SETUP  
 #line 1328 "loader.l"  
 {}  
  YY_BREAK  
 case YY_STATE_EOF(INITIAL):  
 case YY_STATE_EOF(MESSAGE):  
 case YY_STATE_EOF(LORE):  
 case YY_STATE_EOF(SCRIPT):  
 #line 1330 "loader.l"  
 {/* If we got an error, return the error.  Otherwise, return that we got EOF */  
      if (lex_error!=0) return lex_error; else return LL_EOF;}  
  YY_BREAK  
 case 279:  
 YY_RULE_SETUP  
 #line 1332 "loader.l"  
 { add_key_value(op); }  
  YY_BREAK  
 case 280:  
 YY_RULE_SETUP  
 #line 1333 "loader.l"  
 ECHO;  
  YY_BREAK  
 #line 4560 "loader.c"  
   
  case YY_END_OF_BUFFER:  
  {  
  /* Amount of text matched not including the EOB char. */  
  int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;  
   
  /* Undo the effects of YY_DO_BEFORE_ACTION. */  
  *yy_cp = yy_hold_char;  
  YY_RESTORE_YY_MORE_OFFSET  
   
  if ( yy_current_buffer->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;  
  }   }
  }   }
   
Line 4632
 
Line 4127
  {   {
  case EOB_ACT_END_OF_FILE:   case EOB_ACT_END_OF_FILE:
  {   {
  yy_did_buffer_switch_on_eof = 0;   (yy_did_buffer_switch_on_eof) = 0;
   
  if ( yywrap() )   if ( yywrap() )
  {   {
Line 4645
 
Line 4140
  * YY_NULL, it'll still work - another   * YY_NULL, it'll still work - another
  * YY_NULL will get returned.   * YY_NULL will get returned.
  */   */
  yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;   (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
   
  yy_act = YY_STATE_EOF(YY_START);   yy_act = YY_STATE_EOF(YY_START);
  goto do_action;   goto do_action;
Line 4653
 
Line 4148
   
  else   else
  {   {
  if ( ! yy_did_buffer_switch_on_eof )   if ( ! (yy_did_buffer_switch_on_eof) )
  YY_NEW_FILE;   YY_NEW_FILE;
  }   }
  break;   break;
  }   }
   
  case EOB_ACT_CONTINUE_SCAN:   case EOB_ACT_CONTINUE_SCAN:
  yy_c_buf_p =   (yy_c_buf_p) =
  yytext_ptr + yy_amount_of_matched_text;   (yytext_ptr) + yy_amount_of_matched_text;
   
  yy_current_state = yy_get_previous_state();   yy_current_state = yy_get_previous_state();
   
  yy_cp = yy_c_buf_p;   yy_cp = (yy_c_buf_p);
  yy_bp = yytext_ptr + YY_MORE_ADJ;   yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  goto yy_match;   goto yy_match;
   
  case EOB_ACT_LAST_MATCH:   case EOB_ACT_LAST_MATCH:
  yy_c_buf_p =   (yy_c_buf_p) =
  &yy_current_buffer->yy_ch_buf[yy_n_chars];   &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
   
  yy_current_state = yy_get_previous_state();   yy_current_state = yy_get_previous_state();
   
  yy_cp = yy_c_buf_p;   yy_cp = (yy_c_buf_p);
  yy_bp = yytext_ptr + YY_MORE_ADJ;   yy_bp = (yytext_ptr) + YY_MORE_ADJ;
  goto yy_find_action;   goto yy_find_action;
  }   }
  break;   break;
Line 4689
 
Line 4184
  } /* end of scanning one token */   } /* end of scanning one token */
  } /* end of yylex */   } /* end of yylex */
   
   
 /* yy_get_next_buffer - try to read in a new buffer  /* yy_get_next_buffer - try to read in a new buffer
  *   *
  * Returns a code representing an action:   * Returns a code representing an action:
Line 4697
 
Line 4191
  * EOB_ACT_CONTINUE_SCAN - continue scanning from current position   * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  * EOB_ACT_END_OF_FILE - end of file   * EOB_ACT_END_OF_FILE - end of file
  */   */
   static int yy_get_next_buffer (void)
 static int yy_get_next_buffer()  
  {   {
  register char *dest = yy_current_buffer->yy_ch_buf;      register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
  register char *source = yytext_ptr;   register char *source = (yytext_ptr);
  register int number_to_move, i;   register int number_to_move, i;
  int ret_val;   int ret_val;
   
  if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )   if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "fatal flex scanner internal error--end of buffer missed" );   "fatal flex scanner internal error--end of buffer missed" );
   
  if ( yy_current_buffer->yy_fill_buffer == 0 )   if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
  { /* Don't try to fill the buffer, so this is an EOF. */   { /* Don't try to fill the buffer, so this is an EOF. */
  if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )   if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
  {   {
  /* We matched a single character, the EOB, so   /* We matched a single character, the EOB, so
  * treat this as a final EOF.   * treat this as a final EOF.
Line 4731
 
Line 4224
  /* Try to read more data. */   /* Try to read more data. */
   
  /* First move last chars to start of buffer. */   /* First move last chars to start of buffer. */
  number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;   number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
   
  for ( i = 0; i < number_to_move; ++i )   for ( i = 0; i < number_to_move; ++i )
  *(dest++) = *(source++);   *(dest++) = *(source++);
   
  if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )   if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  /* don't do the read, it's not guaranteed to return an EOF,   /* don't do the read, it's not guaranteed to return an EOF,
  * just force an EOF   * just force an EOF
  */   */
  yy_current_buffer->yy_n_chars = yy_n_chars = 0;   YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
   
  else   else
  {   {
  int num_to_read =   int num_to_read =
  yy_current_buffer->yy_buf_size - number_to_move - 1;   YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
   
  while ( num_to_read <= 0 )   while ( num_to_read <= 0 )
  { /* Not enough room in the buffer - grow it. */   { /* 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 */   /* just a shorter name for the current buffer */
  YY_BUFFER_STATE b = yy_current_buffer;   YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
   
  int yy_c_buf_p_offset =   int yy_c_buf_p_offset =
  (int) (yy_c_buf_p - b->yy_ch_buf);   (int) ((yy_c_buf_p) - b->yy_ch_buf);
   
  if ( b->yy_is_our_buffer )   if ( b->yy_is_our_buffer )
  {   {
Line 4771
 
Line 4260
   
  b->yy_ch_buf = (char *)   b->yy_ch_buf = (char *)
  /* Include room in for 2 EOB chars. */   /* Include room in for 2 EOB chars. */
  yy_flex_realloc( (void *) b->yy_ch_buf,   yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );
  b->yy_buf_size + 2 );  
  }   }
  else   else
  /* Can't grow it, we don't own it. */   /* Can't grow it, we don't own it. */
Line 4782
 
Line 4270
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "fatal error - scanner input buffer overflow" );   "fatal error - scanner input buffer overflow" );
   
  yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];   (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
   
  num_to_read = yy_current_buffer->yy_buf_size -   num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
  number_to_move - 1;   number_to_move - 1;
 #endif  
  }   }
   
  if ( num_to_read > YY_READ_BUF_SIZE )   if ( num_to_read > YY_READ_BUF_SIZE )
  num_to_read = YY_READ_BUF_SIZE;   num_to_read = YY_READ_BUF_SIZE;
   
  /* Read in more data. */   /* Read in more data. */
  YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),   YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
  yy_n_chars, num_to_read );   (yy_n_chars), num_to_read );
   
  yy_current_buffer->yy_n_chars = yy_n_chars;   YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  }   }
   
  if ( yy_n_chars == 0 )   if ( (yy_n_chars) == 0 )
  {   {
  if ( number_to_move == YY_MORE_ADJ )   if ( number_to_move == YY_MORE_ADJ )
  {   {
Line 4810
 
Line 4298
  else   else
  {   {
  ret_val = EOB_ACT_LAST_MATCH;   ret_val = EOB_ACT_LAST_MATCH;
  yy_current_buffer->yy_buffer_status =   YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
  YY_BUFFER_EOF_PENDING;   YY_BUFFER_EOF_PENDING;
  }   }
  }   }
Line 4818
 
Line 4306
  else   else
  ret_val = EOB_ACT_CONTINUE_SCAN;   ret_val = EOB_ACT_CONTINUE_SCAN;
   
  yy_n_chars += number_to_move;   (yy_n_chars) += number_to_move;
  yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;   YY_CURRENT_BUFFER_LVALUE->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;   YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
   
  yytext_ptr = &yy_current_buffer->yy_ch_buf[0];   (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
   
  return ret_val;   return ret_val;
  }   }
   
   
 /* yy_get_previous_state - get the state just before the EOB char was reached */  /* yy_get_previous_state - get the state just before the EOB char was reached */
   
 static yy_state_type yy_get_previous_state()      static yy_state_type yy_get_previous_state (void)
  {   {
  register yy_state_type yy_current_state;   register yy_state_type yy_current_state;
  register char *yy_cp;   register char *yy_cp;
   
  yy_current_state = yy_start;   yy_current_state = (yy_start);
  yy_current_state += YY_AT_BOL();   yy_current_state += YY_AT_BOL();
   
  for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )   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);   register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  yy_last_accepting_state = yy_current_state;   (yy_last_accepting_state) = yy_current_state;
  yy_last_accepting_cpos = yy_cp;   (yy_last_accepting_cpos) = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2510 )   if ( yy_current_state >= 2179 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
Line 4858
 
Line 4345
  return yy_current_state;   return yy_current_state;
  }   }
   
   
 /* yy_try_NUL_trans - try to make a transition on the NUL character  /* yy_try_NUL_trans - try to make a transition on the NUL character
  *   *
  * synopsis   * synopsis
  * next_state = yy_try_NUL_trans( current_state );   * 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 )  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 int yy_is_jam;
  register char *yy_cp = yy_c_buf_p;      register char *yy_cp = (yy_c_buf_p);
   
  register YY_CHAR yy_c = 1;   register YY_CHAR yy_c = 1;
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  yy_last_accepting_state = yy_current_state;   (yy_last_accepting_state) = yy_current_state;
  yy_last_accepting_cpos = yy_cp;   (yy_last_accepting_cpos) = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2510 )   if ( yy_current_state >= 2179 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  yy_is_jam = (yy_current_state == 2509);   yy_is_jam = (yy_current_state == 2178);
   
  return yy_is_jam ? 0 : yy_current_state;   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 )  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;   register char *yy_cp;
      
       yy_cp = (yy_c_buf_p);
   
  /* undo effects of setting up yytext */   /* undo effects of setting up yytext */
  *yy_cp = yy_hold_char;   *yy_cp = (yy_hold_char);
   
  if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )   if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
  { /* need to shift things up to make room */   { /* need to shift things up to make room */
  /* +2 for EOB chars. */   /* +2 for EOB chars. */
  register int number_to_move = yy_n_chars + 2;   register int number_to_move = (yy_n_chars) + 2;
  register char *dest = &yy_current_buffer->yy_ch_buf[   register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
  yy_current_buffer->yy_buf_size + 2];   YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
  register char *source =   register char *source =
  &yy_current_buffer->yy_ch_buf[number_to_move];   &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
   
  while ( source > yy_current_buffer->yy_ch_buf )   while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
  *--dest = *--source;   *--dest = *--source;
   
  yy_cp += (int) (dest - source);   yy_cp += (int) (dest - source);
  yy_bp += (int) (dest - source);   yy_bp += (int) (dest - source);
  yy_current_buffer->yy_n_chars =   YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
  yy_n_chars = yy_current_buffer->yy_buf_size;   (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
   
  if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )   if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
  YY_FATAL_ERROR( "flex scanner push-back overflow" );   YY_FATAL_ERROR( "flex scanner push-back overflow" );
  }   }
   
  *--yy_cp = (char) c;   *--yy_cp = (char) c;
   
    (yytext_ptr) = yy_bp;
  yytext_ptr = yy_bp;   (yy_hold_char) = *yy_cp;
  yy_hold_char = *yy_cp;   (yy_c_buf_p) = yy_cp;
  yy_c_buf_p = yy_cp;  
  }   }
 #endif /* ifndef YY_NO_UNPUT */  
   
   
 #ifndef YY_NO_INPUT  #ifndef YY_NO_INPUT
 #ifdef __cplusplus  #ifdef __cplusplus
 static int yyinput()      static int yyinput (void)
 #else  #else
 static int input()      static int input  (void)
 #endif  #endif
   
  {   {
  int c;   int c;
   
  *yy_c_buf_p = yy_hold_char;   *(yy_c_buf_p) = (yy_hold_char);
   
  if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )   if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
  {   {
  /* yy_c_buf_p now points to the character we want to return.   /* yy_c_buf_p now points to the character we want to return.
  * If this occurs *before* the EOB characters, then it's a   * If this occurs *before* the EOB characters, then it's a
  * valid NUL; if not, then we've hit the end of the buffer.   * 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] )   if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
  /* This was really a NUL. */   /* This was really a NUL. */
  *yy_c_buf_p = '\0';   *(yy_c_buf_p) = '\0';
   
  else   else
  { /* need more input */   { /* need more input */
  int offset = yy_c_buf_p - yytext_ptr;   int offset = (yy_c_buf_p) - (yytext_ptr);
  ++yy_c_buf_p;   ++(yy_c_buf_p);
   
  switch ( yy_get_next_buffer() )   switch ( yy_get_next_buffer() )
  {   {
Line 4981
 
Line 4453
  /* Reset buffer status. */   /* Reset buffer status. */
  yyrestart( yyin );   yyrestart( yyin );
   
  /* fall through */   /*FALLTHROUGH*/
   
  case EOB_ACT_END_OF_FILE:   case EOB_ACT_END_OF_FILE:
  {   {
  if ( yywrap() )   if ( yywrap() )
  return EOF;   return EOF;
   
  if ( ! yy_did_buffer_switch_on_eof )   if ( ! (yy_did_buffer_switch_on_eof) )
  YY_NEW_FILE;   YY_NEW_FILE;
 #ifdef __cplusplus  #ifdef __cplusplus
  return yyinput();   return yyinput();
Line 4998
 
Line 4470
  }   }
   
  case EOB_ACT_CONTINUE_SCAN:   case EOB_ACT_CONTINUE_SCAN:
  yy_c_buf_p = yytext_ptr + offset;   (yy_c_buf_p) = (yytext_ptr) + offset;
  break;   break;
  }   }
  }   }
  }   }
   
  c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */   c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
  *yy_c_buf_p = '\0'; /* preserve yytext */   *(yy_c_buf_p) = '\0'; /* preserve yytext */
  yy_hold_char = *++yy_c_buf_p;   (yy_hold_char) = *++(yy_c_buf_p);
   
  yy_current_buffer->yy_at_bol = (c == '\n');   YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n');
   
  return c;   return c;
  }   }
 #endif /* YY_NO_INPUT */  #endif /* ifndef YY_NO_INPUT */
   
 #ifdef YY_USE_PROTOS  /** Immediately switch to a different input stream.
    * @param input_file A readable stream.
    *
    * @note This function does not reset the start condition to @c INITIAL .
    */
 void yyrestart( FILE *input_file )  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 );   if ( ! YY_CURRENT_BUFFER ){
  yy_load_buffer_state();          yyensure_buffer_stack ();
    YY_CURRENT_BUFFER_LVALUE =
               yy_create_buffer(yyin,YY_BUF_SIZE );
  }   }
   
    yy_init_buffer(YY_CURRENT_BUFFER,input_file );
    yy_load_buffer_state( );
   }
   
 #ifdef YY_USE_PROTOS  /** Switch to a different input buffer.
    * @param new_buffer The new input buffer.
    *
    */
 void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )  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 )     
    /* TODO. We should be able to replace this entire function body
    * with
    * yypop_buffer_state();
    * yypush_buffer_state(new_buffer);
        */
    yyensure_buffer_stack ();
    if ( YY_CURRENT_BUFFER == new_buffer )
  return;   return;
   
  if ( yy_current_buffer )   if ( YY_CURRENT_BUFFER )
  {   {
  /* Flush out information for old buffer. */   /* Flush out information for old buffer. */
  *yy_c_buf_p = yy_hold_char;   *(yy_c_buf_p) = (yy_hold_char);
  yy_current_buffer->yy_buf_pos = yy_c_buf_p;   YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
  yy_current_buffer->yy_n_chars = yy_n_chars;   YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
  }   }
   
  yy_current_buffer = new_buffer;   YY_CURRENT_BUFFER_LVALUE = new_buffer;
  yy_load_buffer_state();   yy_load_buffer_state();
   
  /* We don't actually know whether we did this switch during   /* We don't actually know whether we did this switch during
Line 5055
 
Line 4536
  * is looked at is after yywrap() is called, so it's safe   * is looked at is after yywrap() is called, so it's safe
  * to go ahead and always set it.   * to go ahead and always set it.
  */   */
  yy_did_buffer_switch_on_eof = 1;   (yy_did_buffer_switch_on_eof) = 1;
  }   }
   
   static void yy_load_buffer_state  (void)
 #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;      (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
  yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;   (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
  yyin = yy_current_buffer->yy_input_file;   yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
  yy_hold_char = *yy_c_buf_p;   (yy_hold_char) = *(yy_c_buf_p);
  }   }
   
   /** Allocate and initialize an input buffer state.
 #ifdef YY_USE_PROTOS   * @param file A readable stream.
    * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
    *
    * @return the allocated buffer state.
    */
 YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )  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;   YY_BUFFER_STATE b;
   
  b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );   b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
  if ( ! b )   if ( ! b )
  YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
   
Line 5091
 
Line 4566
  /* yy_ch_buf has to be 2 characters longer than the size given because   /* yy_ch_buf has to be 2 characters longer than the size given because
  * we need to put in 2 end-of-buffer characters.   * we need to put in 2 end-of-buffer characters.
  */   */
  b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );   b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );
  if ( ! b->yy_ch_buf )   if ( ! b->yy_ch_buf )
  YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
   
Line 5102
 
Line 4577
  return b;   return b;
  }   }
   
   /** Destroy the buffer.
 #ifdef YY_USE_PROTOS   * @param b a buffer created with yy_create_buffer()
    *
    */
 void yy_delete_buffer( YY_BUFFER_STATE b )  void yy_delete_buffer( YY_BUFFER_STATE b )
 #else  
 void yy_delete_buffer( b )  
 YY_BUFFER_STATE b;  
 #endif  
  {   {
      
  if ( ! b )   if ( ! b )
  return;   return;
   
  if ( b == yy_current_buffer )   if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
  yy_current_buffer = (YY_BUFFER_STATE) 0;   YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
   
  if ( b->yy_is_our_buffer )   if ( b->yy_is_our_buffer )
  yy_flex_free( (void *) b->yy_ch_buf );   yyfree((void *) b->yy_ch_buf  );
   
  yy_flex_free( (void *) b );   yyfree((void *) b  );
  }   }
   
   #ifndef _UNISTD_H /* assume unistd.h has isatty() for us */
   #ifdef __cplusplus
 #ifdef YY_USE_PROTOS  extern "C" {
 void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )  #endif
   #ifdef __THROW /* this is a gnuism */
   extern int isatty (int ) __THROW;
 #else  #else
 void yy_init_buffer( b, file )  extern int isatty (int );
 YY_BUFFER_STATE b;  #endif
 FILE *file;  #ifdef __cplusplus
   }
   #endif
 #endif  #endif
   
   /* Initializes or reinitializes a buffer.
    * This function is sometimes called more than once on the same buffer,
    * such as during a yyrestart() or at EOF.
    */
       static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )
   
  {   {
    int oerrno = errno;
      
  yy_flush_buffer( b );   yy_flush_buffer( b );
   
  b->yy_input_file = file;   b->yy_input_file = file;
  b->yy_fill_buffer = 1;   b->yy_fill_buffer = 1;
   
 #if YY_ALWAYS_INTERACTIVE      /* If b is the current buffer, then yy_init_buffer was _probably_
  b->yy_is_interactive = 1;       * called from yyrestart() or through yy_get_next_buffer.
 #else       * In that case, we don't want to reset the lineno or column.
 #if YY_NEVER_INTERACTIVE       */
  b->yy_is_interactive = 0;      if (b != YY_CURRENT_BUFFER){
 #else          b->yy_bs_lineno = 1;
  b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;          b->yy_bs_column = 0;
 #endif  
 #endif  
  }   }
   
           b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
   
 #ifdef YY_USE_PROTOS   errno = oerrno;
 void yy_flush_buffer( YY_BUFFER_STATE b )  }
 #else  
 void yy_flush_buffer( b )  
 YY_BUFFER_STATE b;  
 #endif  
   
   /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
    * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
    *
    */
       void yy_flush_buffer (YY_BUFFER_STATE  b )
  {   {
  if ( ! b )   if ( ! b )
  return;   return;
Line 5176
 
Line 4661
  b->yy_at_bol = 1;   b->yy_at_bol = 1;
  b->yy_buffer_status = YY_BUFFER_NEW;   b->yy_buffer_status = YY_BUFFER_NEW;
   
  if ( b == yy_current_buffer )   if ( b == YY_CURRENT_BUFFER )
    yy_load_buffer_state( );
   }
   
   /** Pushes the new state onto the stack. The new state becomes
    *  the current state. This function will allocate the stack
    *  if necessary.
    *  @param new_buffer The new state.
    * 
    */
   void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
   {
       if (new_buffer == NULL)
    return;
   
    yyensure_buffer_stack();
   
    /* This block is copied from yy_switch_to_buffer. */
    if ( YY_CURRENT_BUFFER )
    {
    /* Flush out information for old buffer. */
    *(yy_c_buf_p) = (yy_hold_char);
    YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
    YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
    }
   
    /* Only push if top exists. Otherwise, replace top. */
    if (YY_CURRENT_BUFFER)
    (yy_buffer_stack_top)++;
    YY_CURRENT_BUFFER_LVALUE = new_buffer;
   
    /* copied from yy_switch_to_buffer. */
    yy_load_buffer_state( );
    (yy_did_buffer_switch_on_eof) = 1;
   }
   
   /** Removes and deletes the top of the stack, if present.
    *  The next element becomes the new top.
    * 
    */
   void yypop_buffer_state (void)
   {
       if (!YY_CURRENT_BUFFER)
    return;
   
    yy_delete_buffer(YY_CURRENT_BUFFER );
    YY_CURRENT_BUFFER_LVALUE = NULL;
    if ((yy_buffer_stack_top) > 0)
    --(yy_buffer_stack_top);
   
    if (YY_CURRENT_BUFFER) {
  yy_load_buffer_state();   yy_load_buffer_state();
    (yy_did_buffer_switch_on_eof) = 1;
    }
   }
   
   /* Allocates the stack if it does not exist.
    *  Guarantees space for at least one push.
    */
   static void yyensure_buffer_stack (void)
   {
    int num_to_alloc;
      
    if (!(yy_buffer_stack)) {
   
    /* First allocation is just for 2 elements, since we don't know if this
    * scanner will even need a stack. We use 2 instead of 1 to avoid an
    * immediate realloc on the next call.
            */
    num_to_alloc = 1;
    (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
    (num_to_alloc * sizeof(struct yy_buffer_state*)
    );
   
    memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
   
    (yy_buffer_stack_max) = num_to_alloc;
    (yy_buffer_stack_top) = 0;
    return;
  }   }
   
    if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
   
 #ifndef YY_NO_SCAN_BUFFER   /* Increase the buffer to prepare for a possible push. */
 #ifdef YY_USE_PROTOS   int grow_size = 8 /* arbitrary grow size */;
   
    num_to_alloc = (yy_buffer_stack_max) + grow_size;
    (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
    ((yy_buffer_stack),
    num_to_alloc * sizeof(struct yy_buffer_state*)
    );
   
    /* zero only the new slots.*/
    memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
    (yy_buffer_stack_max) = num_to_alloc;
    }
   }
   
   /** Setup the input buffer state to scan directly from a user-specified character buffer.
    * @param base the character buffer
    * @param size the size in bytes of the character buffer
    *
    * @return the newly allocated buffer state object.
    */
 YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )  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;   YY_BUFFER_STATE b;
   
Line 5198
 
Line 4775
  /* They forgot to leave room for the EOB's. */   /* They forgot to leave room for the EOB's. */
  return 0;   return 0;
   
  b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );   b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
  if ( ! b )   if ( ! b )
  YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
   
Line 5216
 
Line 4793
   
  return b;   return b;
  }   }
 #endif  
   
   /** Setup the input buffer state to scan a string. The next call to yylex() will
 #ifndef YY_NO_SCAN_STRING   * scan from a @e copy of @a str.
 #ifdef YY_USE_PROTOS   * @param str a NUL-terminated string to scan
 YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str )   *
 #else   * @return the newly allocated buffer state object.
 YY_BUFFER_STATE yy_scan_string( yy_str )   * @note If you want to scan bytes that may contain NUL values, then use
 yyconst char *yy_str;   *       yy_scan_bytes() instead.
 #endif   */
   YY_BUFFER_STATE yy_scan_string (yyconst char * __yystr )
  {   {
  int len;  
  for ( len = 0; yy_str[len]; ++len )  
  ;  
   
  return yy_scan_bytes( yy_str, len );   return yy_scan_bytes(__yystr,strlen(__yystr) );
  }   }
 #endif  
   
   
 #ifndef YY_NO_SCAN_BYTES  /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
 #ifdef YY_USE_PROTOS   * scan from a @e copy of @a bytes.
 YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )   * @param bytes the byte buffer to scan
 #else   * @param len the number of bytes in the buffer pointed to by @a bytes.
 YY_BUFFER_STATE yy_scan_bytes( bytes, len )   *
 yyconst char *bytes;   * @return the newly allocated buffer state object.
 int len;   */
 #endif  YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, int  _yybytes_len )
  {   {
  YY_BUFFER_STATE b;   YY_BUFFER_STATE b;
  char *buf;   char *buf;
Line 5251
 
Line 4823
  int i;   int i;
   
  /* Get memory for full buffer, including space for trailing EOB's. */   /* Get memory for full buffer, including space for trailing EOB's. */
  n = len + 2;   n = _yybytes_len + 2;
  buf = (char *) yy_flex_alloc( n );   buf = (char *) yyalloc(n  );
  if ( ! buf )   if ( ! buf )
  YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
   
  for ( i = 0; i < len; ++i )   for ( i = 0; i < _yybytes_len; ++i )
  buf[i] = bytes[i];   buf[i] = yybytes[i];
   
  buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;   buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
   
  b = yy_scan_buffer( buf, n );   b = yy_scan_buffer( buf, n );
  if ( ! b )   if ( ! b )
Line 5272
 
Line 4844
   
  return b;   return b;
  }   }
 #endif  
   
   
 #ifndef YY_NO_PUSH_STATE  
 #ifdef YY_USE_PROTOS  
 static void yy_push_state( int new_state )  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 )      if ( (yy_start_stack_ptr) >= (yy_start_stack_depth) )
  {   {
  yy_size_t new_size;   yy_size_t new_size;
   
  yy_start_stack_depth += YY_START_STACK_INCR;   (yy_start_stack_depth) += YY_START_STACK_INCR;
  new_size = yy_start_stack_depth * sizeof( int );   new_size = (yy_start_stack_depth) * sizeof( int );
   
  if ( ! yy_start_stack )   if ( ! (yy_start_stack) )
  yy_start_stack = (int *) yy_flex_alloc( new_size );   (yy_start_stack) = (int *) yyalloc(new_size  );
   
  else   else
  yy_start_stack = (int *) yy_flex_realloc(   (yy_start_stack) = (int *) yyrealloc((void *) (yy_start_stack),new_size  );
  (void *) yy_start_stack, new_size );  
   
  if ( ! yy_start_stack )   if ( ! (yy_start_stack) )
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "out of memory expanding start-condition stack" );   "out of memory expanding start-condition stack" );
  }   }
   
  yy_start_stack[yy_start_stack_ptr++] = YY_START;   (yy_start_stack)[(yy_start_stack_ptr)++] = YY_START;
   
  BEGIN(new_state);   BEGIN(new_state);
  }   }
 #endif  
   
   
 #ifndef YY_NO_POP_STATE      static void yy_pop_state  (void)
 static void yy_pop_state()  
  {   {
  if ( --yy_start_stack_ptr < 0 )      if ( --(yy_start_stack_ptr) < 0 )
  YY_FATAL_ERROR( "start-condition stack underflow" );   YY_FATAL_ERROR( "start-condition stack underflow" );
   
  BEGIN(yy_start_stack[yy_start_stack_ptr]);   BEGIN((yy_start_stack)[(yy_start_stack_ptr)]);
  }   }
 #endif  
   
   
 #ifndef YY_NO_TOP_STATE      static int yy_top_state  (void)
 static int yy_top_state()  
  {   {
  return yy_start_stack[yy_start_stack_ptr - 1];      return (yy_start_stack)[(yy_start_stack_ptr) - 1];
  }   }
 #endif  
   
 #ifndef YY_EXIT_FAILURE  #ifndef YY_EXIT_FAILURE
 #define YY_EXIT_FAILURE 2  #define YY_EXIT_FAILURE 2
 #endif  #endif
   
 #ifdef YY_USE_PROTOS  static void yy_fatal_error (yyconst char* msg )
 static void yy_fatal_error( yyconst char msg[] )  
 #else  
 static void yy_fatal_error( msg )  
 char msg[];  
 #endif  
  {   {
  (void) fprintf( stderr, "%s\n", msg );   (void) fprintf( stderr, "%s\n", msg );
  exit( YY_EXIT_FAILURE );   exit( YY_EXIT_FAILURE );
  }   }
   
   
   
 /* Redefine yyless() so it works in section 3 code. */  /* Redefine yyless() so it works in section 3 code. */
   
 #undef yyless  #undef yyless
Line 5351
 
Line 4900
  do \   do \
  { \   { \
  /* Undo effects of setting up yytext. */ \   /* Undo effects of setting up yytext. */ \
  yytext[yyleng] = yy_hold_char; \          int yyless_macro_arg = (n); \
  yy_c_buf_p = yytext + n; \          YY_LESS_LINENO(yyless_macro_arg);\
  yy_hold_char = *yy_c_buf_p; \   yytext[yyleng] = (yy_hold_char); \
  *yy_c_buf_p = '\0'; \   (yy_c_buf_p) = yytext + yyless_macro_arg; \
  yyleng = n; \   (yy_hold_char) = *(yy_c_buf_p); \
    *(yy_c_buf_p) = '\0'; \
    yyleng = yyless_macro_arg; \
  } \   } \
  while ( 0 )   while ( 0 )
   
   /* Accessor  methods (get/set functions) to struct members. */
   
 /* Internal utility routines. */  /** Get the current line number.
    *
    */
   int yyget_lineno  (void)
   {
   
 #ifndef yytext_ptr      return yylineno;
 #ifdef YY_USE_PROTOS  }
 static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )  
   /** Get the input stream.
    *
    */
   FILE *yyget_in  (void)
   {
           return yyin;
   }
   
   /** Get the output stream.
    *
    */
   FILE *yyget_out  (void)
   {
           return yyout;
   }
   
   /** Get the length of the current token.
    *
    */
   int yyget_leng  (void)
   {
           return yyleng;
   }
   
   /** Get the current token.
    *
    */
   
   char *yyget_text  (void)
   {
           return yytext;
   }
   
   /** Set the current line number.
    * @param line_number
    *
    */
   void yyset_lineno (int  line_number )
   {
      
       yylineno = line_number;
   }
   
   /** Set the input stream. This does not discard the current
    * input buffer.
    * @param in_str A readable stream.
    *
    * @see yy_switch_to_buffer
    */
   void yyset_in (FILE *  in_str )
   {
           yyin = in_str ;
   }
   
   void yyset_out (FILE *  out_str )
   {
           yyout = out_str ;
   }
   
   int yyget_debug  (void)
   {
           return yy_flex_debug;
   }
   
   void yyset_debug (int  bdebug )
   {
           yy_flex_debug = bdebug ;
   }
   
   static int yy_init_globals (void)
   {
           /* Initialization is the same as for the non-reentrant scanner.
        * This function is called from yylex_destroy(), so don't allocate here.
        */
   
       (yy_buffer_stack) = 0;
       (yy_buffer_stack_top) = 0;
       (yy_buffer_stack_max) = 0;
       (yy_c_buf_p) = (char *) 0;
       (yy_init) = 0;
       (yy_start) = 0;
   
       (yy_start_stack_ptr) = 0;
       (yy_start_stack_depth) = 0;
       (yy_start_stack) =  NULL;
   
   /* Defined in main.c */
   #ifdef YY_STDINIT
       yyin = stdin;
       yyout = stdout;
 #else  #else
 static void yy_flex_strncpy( s1, s2, n )      yyin = (FILE *) 0;
 char *s1;      yyout = (FILE *) 0;
 yyconst char *s2;  
 int n;  
 #endif  #endif
   
       /* For future reference: Set errno on error, since we are called by
        * yylex_init()
        */
       return 0;
   }
   
   /* yylex_destroy is for both reentrant and non-reentrant scanners. */
   int yylex_destroy  (void)
   {
      
       /* Pop the buffer stack, destroying each element. */
    while(YY_CURRENT_BUFFER){
    yy_delete_buffer(YY_CURRENT_BUFFER  );
    YY_CURRENT_BUFFER_LVALUE = NULL;
    yypop_buffer_state();
    }
   
    /* Destroy the stack itself. */
    yyfree((yy_buffer_stack) );
    (yy_buffer_stack) = NULL;
   
       /* Destroy the start condition stack. */
           yyfree((yy_start_stack)  );
           (yy_start_stack) = NULL;
   
       /* Reset the globals. This is important in a non-reentrant scanner so the next time
        * yylex() is called, initialization will occur. */
       yy_init_globals( );
   
       return 0;
   }
   
   /*
    * Internal utility routines.
    */
   
   #ifndef yytext_ptr
   static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
  {   {
  register int i;   register int i;
  for ( i = 0; i < n; ++i )   for ( i = 0; i < n; ++i )
Line 5379
 
Line 5062
 #endif  #endif
   
 #ifdef YY_NEED_STRLEN  #ifdef YY_NEED_STRLEN
 #ifdef YY_USE_PROTOS  
 static int yy_flex_strlen( yyconst char *s )  static int yy_flex_strlen( yyconst char *s )
 #else  
 static int yy_flex_strlen( s )  
 yyconst char *s;  
 #endif  
  {   {
  register int n;   register int n;
  for ( n = 0; s[n]; ++n )   for ( n = 0; s[n]; ++n )
Line 5394
 
Line 5072
  }   }
 #endif  #endif
   
   void *yyalloc (yy_size_t  size )
 #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 );   return (void *) malloc( size );
  }   }
   
 #ifdef YY_USE_PROTOS  void *yyrealloc  (void * ptr, yy_size_t  size )
 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   /* The cast to (char *) in the following accommodates both
  * implementations that use char* generic pointers, and those   * implementations that use char* generic pointers, and those
Line 5423
 
Line 5089
  return (void *) realloc( (char *) ptr, size );   return (void *) realloc( (char *) ptr, size );
  }   }
   
 #ifdef YY_USE_PROTOS  void yyfree (void * ptr )
 static void yy_flex_free( void *ptr )  
 #else  
 static void yy_flex_free( ptr )  
 void *ptr;  
 #endif  
  {   {
  free( ptr );   free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
  }   }
   
 #if YY_MAIN  #define YYTABLES_NAME "yytables"
 int main()  
  {  #line 1054 "loader.l"
  yylex();  
  return 0;  
  }  
 #endif  
 #line 1333 "loader.l"  
   
   
   
Line 5616
 
Line 5273
     const char *name;      const char *name;
     int   length;      int   length;
 }genericname;  }genericname;
 static genericname evtnames[13]=  
 {  
     {"event_none ",11},  
     {"event_apply ",12},  
     {"event_attack ",13},  
     {"event_death ",12},  
     {"event_drop ",11},  
     {"event_pickup ",13},  
     {"event_say ",10},  
     {"event_stop ",11},  
     {"event_time ",11},  
     {"event_throw ",12},  
     {"event_trigger ",14},  
     {"event_close ",12},  
     {"event_timer ",12}  
 } ;  
   
 static genericname plgnames[13]=  
 {  
     {"event_none_plugin ",18},  
     {"event_apply_plugin ",19},  
     {"event_attack_plugin ",20},  
     {"event_death_plugin ",19},  
     {"event_drop_plugin ",18},  
     {"event_pickup_plugin ",20},  
     {"event_say_plugin ",17},  
     {"event_stop_plugin ",18},  
     {"event_time_plugin ",18},  
     {"event_throw_plugin ",19},  
     {"event_trigger_plugin ",21},  
     {"event_close_plugin ",19},  
     {"event_timer_plugin ",19}  
 };  
   
 static genericname plgoptions[13]=  
 {  
     {"event_none_options ",19},  
     {"event_apply_options ",20},  
     {"event_attack_options ",21},  
     {"event_death_options ",20},  
     {"event_drop_options ",19},  
     {"event_pickup_options ",21},  
     {"event_say_options ",18},  
     {"event_stop_options ",19},  
     {"event_time_options ",19},  
     {"event_throw_options ",20},  
     {"event_trigger_options ",22},  
     {"event_close_options ",20},  
     {"event_timer_options ",20}  
 };  
   
 /* This returns a string of the integer movement type */  /* This returns a string of the integer movement type */
 static char* get_string_move_type(MoveType mt)  static char* get_string_move_type(MoveType mt)
Line 5761
 
Line 5368
     buf[i]='a'+(unsigned short)(i%25);      buf[i]='a'+(unsigned short)(i%25);
   }    }
 #endif  #endif
   event *etmp;  
   event *etmp2;  
   key_value * my_field;    key_value * my_field;
   key_value * arch_field;    key_value * arch_field;
   
Line 5838
 
Line 5443
     ADD_STRINGLINE_ENTRY(fastbuf,"face ",op->face->name,5);      ADD_STRINGLINE_ENTRY(fastbuf,"face ",op->face->name,5);
   }    }
   
   for(etmp=op->events;etmp!=NULL;etmp=etmp->next)  
   {  
       /* First we find the event for the reference object */  
       etmp2=find_event(op2,etmp->type);  
       if ((etmp->hook != NULL) && ((etmp2 == NULL) || (etmp2->hook == NULL) || (strcmp(etmp2->hook,etmp->hook))))  
       /* Either there's no matching event in the reference object,  
        * or the hook is different */  
       {  
           ADD_STRINGLINE_ENTRY(fastbuf,evtnames[etmp->type].name,etmp->hook,evtnames[etmp->type].length);  
       }  
       if ((etmp->plugin != NULL) && ((etmp2 == NULL) || (etmp2->plugin == NULL) || (strcmp(etmp2->plugin,etmp->plugin))))  
       {  
   
           ADD_STRINGLINE_ENTRY(fastbuf,plgnames[etmp->type].name,etmp->plugin,plgnames[etmp->type].length);  
       }  
       if ((etmp->options != NULL) && ((etmp2 == NULL) || (etmp2->options == NULL) || (strcmp(etmp2->options,etmp->options))))  
       {  
           ADD_STRINGLINE_ENTRY(fastbuf,plgoptions[etmp->type].name,etmp->options,plgoptions[etmp->type].length);  
       }  
   
   }  
   
   if (op->animation_id != op2->animation_id) {    if (op->animation_id != op2->animation_id) {
     if (op->animation_id) {      if (op->animation_id) {
       ADD_STRINGLINE_ENTRY(fastbuf,"animation ",animations[GET_ANIM_ID(op)].name,10);        ADD_STRINGLINE_ENTRY(fastbuf,"animation ",animations[GET_ANIM_ID(op)].name,10);
Line 6145
 
Line 5728
  return;   return;
     }      }
   
       /* If the object has no_save set, just return */
       if(op->no_save)
           return;
   
     if((at=op->arch)==NULL) at=empty_archetype;      if((at=op->arch)==NULL) at=empty_archetype;
     fprintf(fp,"arch %s\n",at->name);      fprintf(fp,"arch %s\n",at->name);
   
Line 6181
 
Line 5768
     fprintf(fp,"end\n");      fprintf(fp,"end\n");
 }  }
   
 void insert_event(object* op, int etype, char *ehook, char *eplug, char *eoptions)  
 {  
     event *evt;  
     event *tmp;  
   
     evt = find_event(op,etype);  
     if (evt == NULL)  
     {  
         evt = (event *)malloc(sizeof(event));  
         evt->next = NULL;  
         evt->type = etype;  
         evt->hook = NULL;  
         evt->plugin = NULL;  
         evt->options = NULL;  
         if (op->events==NULL)  
         {  
             op->events=evt;  
         }  
         else  
         {  
             for(tmp=op->events;;tmp=tmp->next)  
             {  
                 if (tmp->next == NULL)  
                 {  
                     tmp->next = evt;  
                     break;  
                 }  
             }  
         }  
     }  
     if (ehook != NULL)  
         FREE_AND_COPY(evt->hook,ehook);  
     if (eplug != NULL)  
         FREE_AND_COPY(evt->plugin,eplug);  
     if (eoptions != NULL)  
         FREE_AND_COPY(evt->options,eoptions);  
 }  
   
 event* find_event(object* op, int etype)  
 {  
     event *found;  
     for(found=op->events;found!=NULL;found=found->next)  
     {  
         if (found->type == etype)  
             return found;  
     }  
     return NULL;  
 }  


Legend:
line(s) removed in v.1.88 
line(s) changed
 line(s) added in v.1.89

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:09