diff --git a/.github/workflows/start.sh b/.github/workflows/start.sh index 54e73c4447..0ec7893dd8 100755 --- a/.github/workflows/start.sh +++ b/.github/workflows/start.sh @@ -69,6 +69,9 @@ cat </etc/apache2/sites-available/001-mapserver.conf ErrorLog \${APACHE_LOG_DIR}/mapserv-error.log CustomLog \${APACHE_LOG_DIR}/mapserv-access.log combined + SetEnv MAPSERVER_CONFIG_FILE ${WORK_DIR}/msautotest/etc/mapserv.conf + FcgidInitialEnv MAPSERVER_CONFIG_FILE ${WORK_DIR}/msautotest/etc/mapserv.conf + ScriptAlias /cgi-bin/ "/tmp/install-mapserver/bin/" AddHandler fcgid-script .fcgi @@ -107,28 +110,74 @@ cd msautotest/wxs export PATH=/tmp/install-mapserver/bin:$PATH +# Demonstrate that mapserv will error out if cannot find config file +mapserv 2>&1 | grep "msLoadConfig(): Unable to access file" >/dev/null && echo yes +mapserv QUERY_STRING="MAP=wfs_simple.map&REQUEST=GetCapabilities" 2>&1 | grep "msLoadConfig(): Unable to access file" >/dev/null && echo yes + echo "Check that MS_MAP_NO_PATH works" -MS_MAP_NO_PATH=1 MYMAPFILE=wfs_simple.map mapserv QUERY_STRING="MAP=MYMAPFILE&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt +cat </tmp/mapserver.conf +CONFIG + ENV + "MS_MAP_NO_PATH" "1" + END + MAPS + "MYMAPFILE" "wfs_simple.map" + END +END +EOF +# Also demonstrate that mapserv can find config file in ${CMAKE_INSTALL_FULL_SYSCONFDIR}/etc/mapserver.conf by default +ln -s /tmp/mapserver.conf /tmp/install-mapserver/etc +mapserv QUERY_STRING="MAP=MYMAPFILE&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt +rm /tmp/install-mapserver/etc/mapserver.conf cat /tmp/res.txt | grep wfs:WFS_Capabilities >/dev/null || (cat /tmp/res.txt && /bin/false) -echo "Check that MS_MAP_NO_PATH cannot be abused with client-controlled env variables" -MS_MAP_NO_PATH=1 CONTENT_TYPE=wfs_simple.map mapserv QUERY_STRING="MAP=CONTENT_TYPE&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt +echo "Check that MS_MAP_NO_PATH works (rejecting a value not defined in the MAPS section)" +MAPSERVER_CONFIG_FILE=/tmp/mapserver.conf mapserv QUERY_STRING="MAP=FOO&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt cat /tmp/res.txt | grep "Web application error" >/dev/null || (cat /tmp/res.txt && /bin/false) echo "Check that MS_MAP_PATTERN works (accepting valid MAP)" -MS_MAP_PATTERN="^wfs_simple\.map$" mapserv QUERY_STRING="MAP=wfs_simple.map&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt +cat </tmp/mapserver.conf +CONFIG + ENV + "MS_MAP_PATTERN" "^wfs_simple\.map$" + END +END +EOF +MAPSERVER_CONFIG_FILE=/tmp/mapserver.conf mapserv QUERY_STRING="MAP=wfs_simple.map&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt cat /tmp/res.txt | grep wfs:WFS_Capabilities >/dev/null || (cat /tmp/res.txt && /bin/false) echo "Check that MS_MAP_PATTERN works (rejecting invalid MAP)" -MS_MAP_PATTERN=mypatternmapserv mapserv QUERY_STRING="MAP=wfs_simple.map&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt +cat </tmp/mapserver.conf +CONFIG + ENV + "MS_MAP_PATTERN" "mypatternmapserv" + END +END +EOF +MAPSERVER_CONFIG_FILE=/tmp/mapserver.conf mapserv QUERY_STRING="MAP=wfs_simple.map&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt cat /tmp/res.txt | grep "Web application error" >/dev/null || (cat /tmp/res.txt && /bin/false) echo "Check that MS_MAPFILE works alone" -MS_MAPFILE=wfs_simple.map mapserv QUERY_STRING="SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt +cat </tmp/mapserver.conf +CONFIG + ENV + "MS_MAPFILE" "wfs_simple.map" + END +END +EOF +MAPSERVER_CONFIG_FILE=/tmp/mapserver.conf mapserv QUERY_STRING="SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt cat /tmp/res.txt | grep wfs:WFS_Capabilities >/dev/null || (cat /tmp/res.txt && /bin/false) echo "Check that a MAP query parameter isn't accepted when MS_MAPFILE and MS_MAP_NO_PATH are specified" -MS_MAP_NO_PATH=1 MS_MAPFILE=wfs_simple.map mapserv QUERY_STRING="MAP=wfs_simple.map&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt +cat </tmp/mapserver.conf +CONFIG + ENV + "MS_MAPFILE" "wfs_simple.map" + "MS_MAP_NO_PATH" "1" + END +END +EOF +MAPSERVER_CONFIG_FILE=/tmp/mapserver.conf mapserv QUERY_STRING="MAP=wfs_simple.map&SERVICE=WFS&REQUEST=GetCapabilities" > /tmp/res.txt cat /tmp/res.txt | grep "Web application error" >/dev/null || (cat /tmp/res.txt && /bin/false) echo "Done !" diff --git a/CMakeLists.txt b/CMakeLists.txt index 1614dffa5f..c68ea94e89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -291,7 +291,7 @@ mapgeomtransform.c mapogroutput.cpp mapwfslayer.c mapagg.cpp mapkml.cpp mapgeomutil.cpp mapkmlrenderer.cpp fontcache.c textlayout.c maputfgrid.cpp mapogr.cpp mapcontour.c mapsmoothing.c mapv8.cpp ${REGEX_SOURCES} kerneldensity.c idw.c interpolation.c -mapcompositingfilter.c mapmvt.c mapiconv.c mapgraph.cpp) +mapcompositingfilter.c mapmvt.c mapiconv.c mapgraph.cpp mapserv-config.cpp) set(mapserver_HEADERS cgiutil.h dejavu-sans-condensed.h dxfcolor.h fontcache.h hittest.h mapagg.h @@ -300,7 +300,7 @@ maphttp.h mapio.h mapkmlrenderer.h maplibxml2.h mapogcfilter.h mapogcsld.h mapoglcontext.h mapoglrenderer.h mapowscommon.h mapows.h mapparser.h mapogcapi.h mappostgis.h mapprimitive.h mapproject.h mapraster.h mapregex.h mapresample.h mapserver-api.h mapserver.h mapserv.h mapshape.h mapsymbol.h maptemplate.h -mapthread.h maptile.h maptime.h maptree.h maputfgrid.h mapwcs.h uthash.h mapiconv.h mapgraph.h) +mapthread.h maptile.h maptime.h maptree.h maputfgrid.h mapwcs.h uthash.h mapiconv.h mapgraph.h mapserv-config.h) if(WIN32) configure_file( @@ -1049,16 +1049,22 @@ if(UNIX) else() set(DEFAULT_DATA_SUBDIR share/mapserver) endif() +set(DEFAULT_CONFIG_FILE ${CMAKE_INSTALL_FULL_SYSCONFDIR}/mapserver.conf) # Locations are changeable by user to customize layout of MapServer installation # (default values are platform-specific) set(MAPSERVER_DATA_SUBDIR ${DEFAULT_DATA_SUBDIR} CACHE STRING "Subdirectory where data will be installed") +set(MAPSERVER_CONFIG_FILE "${DEFAULT_CONFIG_FILE}" CACHE STRING + "Full file name for default configuration file (mapserver.conf)") + # Mark *DIR variables as advanced and dedicated to use by power-users only. mark_as_advanced( MAPSERVER_DATA_SUBDIR + MAPSERVER_CONFIG_FILE ) +add_definitions(-DMAPSERVER_CONFIG_FILE="${MAPSERVER_CONFIG_FILE}") install( FILES ${PROJECT_SOURCE_DIR}/share/ogcapi/templates/html-plain/collection.html @@ -1073,3 +1079,8 @@ install( ${PROJECT_SOURCE_DIR}/share/ogcapi/templates/html-plain/openapi.html DESTINATION ${MAPSERVER_DATA_SUBDIR}/ogcapi/templates/html-plain/ ) + +install( + FILES ${PROJECT_SOURCE_DIR}/etc/mapserver-sample.conf + DESTINATION ${CMAKE_INSTALL_FULL_SYSCONFDIR}/ +) diff --git a/cgiutil.c b/cgiutil.c index 03acf449c2..7d9895399e 100644 --- a/cgiutil.c +++ b/cgiutil.c @@ -36,6 +36,8 @@ #include "mapserver.h" #include "cgiutil.h" +#include "cpl_conv.h" + #define LF 10 #define CR 13 @@ -142,7 +144,7 @@ int loadParams(cgiRequestObj *request, debuglevel = (int)msGetGlobalDebugLevel(); - if(strcmp(getenv2("REQUEST_METHOD", thread_context),"POST") == 0) { /* we've got a post from a form */ + if(strcmp(getenv2("REQUEST_METHOD", thread_context),"POST") == 0 && CPLGetConfigOption("MS_NO_POST", NULL) == NULL) { /* we've got a post from a form */ char *post_data; int data_len; request->type = MS_POST_REQUEST; diff --git a/etc/mapserver-sample.conf b/etc/mapserver-sample.conf new file mode 100644 index 0000000000..32548eed9f --- /dev/null +++ b/etc/mapserver-sample.conf @@ -0,0 +1,64 @@ +# +# Sample MapServer 8.0 Config File +# +CONFIG + + # + # Environment variables (see https://mapserver.org/environment_variables.html) + # + ENV + # + # Limit Mapfile Access + # + # MS_MAP_NO_PATH "1" + MS_MAP_PATTERN "^/opt/mapserver" ## required + + # + # Global Log/Debug Setup + # + # MS_DEBUGLEVEL "5" + # MS_ERRORFILE "/opt/mapserver/logs/mapserver.log" + + # + # Default Map + # + # MS_MAPFILE "/opt/mapserver/test/test.map" + + # + # Proj Library + # + # PROJ_LIB "" + + # + # Request Control + # + # disable POST requests (allowed by default, any value will do) + # MS_NO_POST "1" + + # + # Other Options + # + # MS_ENCRYPTION_KEY + # MS_USE_GLOBAL_FT_CACHE + # MS_PDF_CREATION_DATE + # MS_MAPFILE_PATTERN "\.map$" + # MS_XMLMAPFILE_XSLT + # MS_MODE + # MS_OPENLAYERS_JS_URL + # MS_TEMPPATH + # MS_MAX_OPEN_FILES + + # + # OGC API + # + # OGCAPI_HTML_TEMPLATE_DIRECTORY "/usr/local/mapserver/share/ogcapi/templates/html-bootstrap4/" + END + + # + # Map Aliases + # + MAPS + # TEST_MAPFILE "/opt/mapserver/test/test.map" + END + +END diff --git a/fontcache.c b/fontcache.c index e730dfd046..434665bfbc 100644 --- a/fontcache.c +++ b/fontcache.c @@ -32,6 +32,8 @@ #include "fontcache.h" #include "dejavu-sans-condensed.h" +#include "cpl_conv.h" + typedef struct { FT_Library library; face_element *face_cache; @@ -160,7 +162,7 @@ void msFontCacheSetup() { ft_cache *c = msGetFontCache(); msInitFontCache(c); #else - char* use_global_cache = getenv("MS_USE_GLOBAL_FT_CACHE"); + const char *use_global_cache = CPLGetConfigOption("MS_USE_GLOBAL_FT_CACHE", NULL); if (use_global_cache) use_global_ft_cache = atoi(use_global_cache); else diff --git a/legend.c b/legend.c index 86151caae1..4b1bed2445 100644 --- a/legend.c +++ b/legend.c @@ -47,7 +47,7 @@ int main(int argc, char *argv[]) exit(0); } - map = msLoadMap(argv[1], NULL); + map = msLoadMap(argv[1], NULL, NULL); if(!map) { msWriteError(stderr); exit(0); diff --git a/map2img.c b/map2img.c index 7064e3a6d4..aa1c67dff4 100644 --- a/map2img.c +++ b/map2img.c @@ -38,6 +38,7 @@ int main(int argc, char *argv[]) mapObj *map=NULL; imageObj *image = NULL; + configObj* config = NULL; char **layers=NULL; int num_layers=0; @@ -49,13 +50,45 @@ int main(int argc, char *argv[]) int iterations = 1; int draws = 0; + /* ---- output version info and exit --- */ + if(argc > 1 && strcmp(argv[1], "-v") == 0) { + printf("%s\n", msGetVersion()); + exit(0); + } + + /* ---- check the number of arguments, return syntax if not correct ---- */ + if( argc < 3 ) { + fprintf(stdout, "\nPurpose: convert a mapfile to an image\n\n"); + fprintf(stdout, + "Syntax: map2img -m mapfile [-o image] [-e minx miny maxx maxy] [-s sizex sizey]\n" + " [-l \"layer1 [layers2...]\"] [-i format]\n" + " [-all_debug n] [-map_debug n] [-layer_debug n] [-p n] [-c n] [-d layername datavalue]\n"); + fprintf(stdout," -m mapfile: Map file to operate on - required\n" ); + fprintf(stdout," -i format: Override the IMAGETYPE value to pick output format\n" ); + fprintf(stdout," -o image: output filename (stdout if not provided)\n"); + fprintf(stdout," -e minx miny maxx maxy: extents to render\n"); + fprintf(stdout," -s sizex sizey: output image size\n"); + fprintf(stdout," -l layers: layers / groups to enable - make sure they are quoted and space separated if more than one listed\n" ); + fprintf(stdout," -all_debug n: Set debug level for map and all layers\n" ); + fprintf(stdout," -map_debug n: Set map debug level\n" ); + fprintf(stdout," -layer_debug layer_name n: Set layer debug level\n" ); + fprintf(stdout," -c n: draw map n number of times\n" ); + fprintf(stdout," -p n: pause for n seconds after reading the map\n" ); + fprintf(stdout," -d layername datavalue: change DATA value for layer\n" ); + exit(0); + } + + if ( msSetup() != MS_SUCCESS ) { + msWriteError(stderr); + exit(1); + } + for(i=1; i INT_MAX - 1 ) - { - printf("Invalid number of iterations"); - return 1; + if( iterations < 0 || iterations > INT_MAX - 1 ) { + printf("Invalid number of iterations"); + return 1; } printf("We will draw %d times...\n", iterations); continue; @@ -72,9 +105,10 @@ int main(int argc, char *argv[]) continue; } - } + config = msLoadConfig(NULL); + for(draws=0; draws= MS_DEBUGLEVEL_TUNING) msGettimeofday(&requeststarttime, NULL); - if(argc > 1 && strcmp(argv[1], "-v") == 0) { - printf("%s\n", msGetVersion()); - exit(0); - } - - /* ---- check the number of arguments, return syntax if not correct ---- */ - if( argc < 3 ) { - fprintf(stdout, "\nPurpose: convert a mapfile to an image\n\n"); - fprintf(stdout, - "Syntax: map2img -m mapfile [-o image] [-e minx miny maxx maxy] [-s sizex sizey]\n" - " [-l \"layer1 [layers2...]\"] [-i format]\n" - " [-all_debug n] [-map_debug n] [-layer_debug n] [-p n] [-c n] [-d layername datavalue]\n"); - - - fprintf(stdout," -m mapfile: Map file to operate on - required\n" ); - fprintf(stdout," -i format: Override the IMAGETYPE value to pick output format\n" ); - fprintf(stdout," -o image: output filename (stdout if not provided)\n"); - fprintf(stdout," -e minx miny maxx maxy: extents to render\n"); - fprintf(stdout," -s sizex sizey: output image size\n"); - fprintf(stdout," -l layers: layers / groups to enable - make sure they are quoted and space separated if more than one listed\n" ); - fprintf(stdout," -all_debug n: Set debug level for map and all layers\n" ); - fprintf(stdout," -map_debug n: Set map debug level\n" ); - fprintf(stdout," -layer_debug layer_name n: Set layer debug level\n" ); - fprintf(stdout," -c n: draw map n number of times\n" ); - fprintf(stdout," -p n: pause for n seconds after reading the map\n" ); - fprintf(stdout," -d layername datavalue: change DATA value for layer\n" ); - - - exit(0); - } - - if ( msSetup() != MS_SUCCESS ) { - msWriteError(stderr); - exit(1); - } - /* Use PROJ_LIB env vars if set */ msProjLibInitFromEnv(); @@ -125,16 +123,20 @@ int main(int argc, char *argv[]) if ( msDebugInitFromEnv() != MS_SUCCESS ) { msWriteError(stderr); msCleanup(); + msFreeConfig(config); exit(1); } + + for(i=1; iextent.minx = atof(argv[i+1]); @@ -271,6 +275,7 @@ int main(int argc, char *argv[]) if (layer_found==0) { fprintf(stderr, "Layer (-l) \"%s\" not found\n", layers[j]); msCleanup(); + msFreeConfig(config); exit(1); } } @@ -303,6 +308,7 @@ int main(int argc, char *argv[]) msFreeMap(map); msCleanup(); + msFreeConfig(config); exit(1); } @@ -320,8 +326,8 @@ int main(int argc, char *argv[]) (requeststarttime.tv_sec+requeststarttime.tv_usec/1.0e6) ); } - msCleanup(); - } /* for(draws=0; draws +#include "cpl_conv.h" #include #include "fontcache.h" @@ -479,7 +480,7 @@ imageObj* createImageCairo(int width, int height, outputFormatObj *format,colorO width,height); #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(1,15,10) { - const char* msPDFCreationDate = getenv("MS_PDF_CREATION_DATE"); + const char *msPDFCreationDate = CPLGetConfigOption("MS_PDF_CREATION_DATE", NULL); if( msPDFCreationDate ) { cairo_pdf_surface_set_metadata (r->surface, diff --git a/mapcrypto.c b/mapcrypto.c index cc7dd308dc..2f72da180e 100644 --- a/mapcrypto.c +++ b/mapcrypto.c @@ -34,7 +34,7 @@ #include "mapserver.h" - +#include "cpl_conv.h" /********************************************************************** @@ -270,9 +270,7 @@ static int msLoadEncryptionKey(mapObj *map) return MS_SUCCESS; /* Already loaded */ keyfile = msGetConfigOption(map, "MS_ENCRYPTION_KEY"); - - if (keyfile == NULL) - keyfile = getenv("MS_ENCRYPTION_KEY"); + if(!keyfile) keyfile = CPLGetConfigOption("MS_ENCRYPTION_KEY", NULL); if (keyfile && msReadEncryptionKeyFromFile(keyfile,map->encryption_key) == MS_SUCCESS) { diff --git a/mapdebug.c b/mapdebug.c index b4bd189d10..75261808ba 100644 --- a/mapdebug.c +++ b/mapdebug.c @@ -33,6 +33,8 @@ #include "mapthread.h" #include "maptime.h" +#include "cpl_conv.h" + #include #ifndef _WIN32 #include @@ -262,12 +264,12 @@ int msDebugInitFromEnv() { const char *val; - if( (val=getenv( "MS_ERRORFILE" )) != NULL ) { + if( (val=CPLGetConfigOption("MS_ERRORFILE", NULL)) != NULL ) { if ( msSetErrorFile(val, NULL) != MS_SUCCESS ) return MS_FAILURE; } - if( (val=getenv( "MS_DEBUGLEVEL" )) != NULL ) + if( (val=CPLGetConfigOption("MS_DEBUGLEVEL", NULL)) != NULL ) msSetGlobalDebugLevel(atoi(val)); return MS_SUCCESS; diff --git a/mapfile.c b/mapfile.c index edb518b982..26b5399f0f 100755 --- a/mapfile.c +++ b/mapfile.c @@ -41,6 +41,8 @@ #include "mapthread.h" #include "maptime.h" +#include "cpl_conv.h" + extern int msyylex(void); extern void msyyrestart(FILE *); extern int msyylex_destroy(void); @@ -4273,10 +4275,22 @@ int loadLayer(layerObj *layer, mapObj *map) break; case(MS_PLUGIN): { int rv; - if(getString(&layer->plugin_library_original) == MS_FAILURE) return(-1); - rv = msBuildPluginLibraryPath(&layer->plugin_library, - layer->plugin_library_original, - map); + if(map->config) { // value *must* represent a config key + char *value = NULL; + const char *plugin_library = NULL; + + if(getString(&value) == MS_FAILURE) return(-1); + plugin_library = msConfigGetPlugin(map->config, value); + msFree(value); + if(!plugin_library) { + msSetError(MS_MISCERR, "Plugin value not found in config file. See mapserver.org/config_file.html for more information." , "loadLayer()"); + return(-1); + } + layer->plugin_library_original = strdup(plugin_library); + } else { + if(getString(&layer->plugin_library_original) == MS_FAILURE) return(-1); + } + rv = msBuildPluginLibraryPath(&layer->plugin_library, layer->plugin_library_original, map); if (rv == MS_FAILURE) return(-1); } break; @@ -5842,6 +5856,8 @@ int initMap(mapObj *map) map->v8context = NULL; #endif + map->config = NULL; + return(0); } @@ -6367,7 +6383,7 @@ mapObj *msLoadMapFromString(char *buffer, char *new_mappath) /* ** Sets up file-based mapfile loading and calls loadMapInternal to do the work. */ -mapObj *msLoadMap(const char *filename, const char *new_mappath) +mapObj *msLoadMap(const char *filename, const char *new_mappath, const configObj *config) { mapObj *map; struct mstimeval starttime={0}, endtime={0}; @@ -6386,16 +6402,10 @@ mapObj *msLoadMap(const char *filename, const char *new_mappath) return(NULL); } - if(getenv("MS_MAPFILE_PATTERN")) { /* user override */ - if(msEvalRegex(getenv("MS_MAPFILE_PATTERN"), filename) != MS_TRUE) { - msSetError(MS_REGEXERR, "MS_MAPFILE_PATTERN validation failed." , "msLoadMap()"); - return(NULL); - } - } else { /* check the default */ - if(msEvalRegex(MS_DEFAULT_MAPFILE_PATTERN, filename) != MS_TRUE) { - msSetError(MS_REGEXERR, "MS_DEFAULT_MAPFILE_PATTERN validation failed." , "msLoadMap()"); - return(NULL); - } + const char *ms_mapfile_pattern = CPLGetConfigOption("MS_MAPFILE_PATTERN", MS_DEFAULT_MAPFILE_PATTERN); + if(msEvalRegex(ms_mapfile_pattern, filename) != MS_TRUE) { + msSetError(MS_REGEXERR, "Filename validation failed." , "msLoadMap()"); + return(NULL); } /* @@ -6409,11 +6419,14 @@ mapObj *msLoadMap(const char *filename, const char *new_mappath) return(NULL); } + map->config = config; // create a read-only reference + msAcquireLock( TLOCK_PARSER ); /* Steve: might need to move this lock a bit higher; Umberto: done */ #ifdef USE_XMLMAPFILE /* If the mapfile is an xml mapfile, transform it */ - if ((getenv("MS_XMLMAPFILE_XSLT")) && + const char *ms_xmlmapfile_xslt = CPLGetConfigOption("MS_XMLMAPFILE_XSLT", NULL); + if (ms_xmlmapfile_xslt && (msEvalRegex(MS_DEFAULT_XMLMAPFILE_PATTERN, filename) == MS_TRUE)) { msyyin = tmpfile(); @@ -6422,7 +6435,7 @@ mapObj *msLoadMap(const char *filename, const char *new_mappath) msReleaseLock( TLOCK_PARSER ); } - if (msTransformXmlMapfile(getenv("MS_XMLMAPFILE_XSLT"), filename, msyyin) != MS_SUCCESS) { + if (msTransformXmlMapfile(ms_xmlmapfile_xslt, filename, msyyin) != MS_SUCCESS) { fclose(msyyin); return NULL; } @@ -6963,16 +6976,10 @@ static char **tokenizeMapInternal(char *filename, int *ret_numtokens) /* ** Check map filename to make sure it's legal */ - if(getenv("MS_MAPFILE_PATTERN")) { /* user override */ - if(msEvalRegex(getenv("MS_MAPFILE_PATTERN"), filename) != MS_TRUE) { - msSetError(MS_REGEXERR, "MS_MAPFILE_PATTERN validation failed." , "msLoadMap()"); - return(NULL); - } - } else { /* check the default */ - if(msEvalRegex(MS_DEFAULT_MAPFILE_PATTERN, filename) != MS_TRUE) { - msSetError(MS_REGEXERR, "MS_DEFAULT_MAPFILE_PATTERN validation failed." , "msLoadMap()"); - return(NULL); - } + const char *ms_mapfile_pattern = CPLGetConfigOption("MS_MAPFILE_PATTERN", MS_DEFAULT_MAPFILE_PATTERN); + if(msEvalRegex(ms_mapfile_pattern, filename) != MS_TRUE) { + msSetError(MS_REGEXERR, "Filename validation failed." , "msLoadMap()"); + return(NULL); } if((msyyin = fopen(filename,"r")) == NULL) { diff --git a/mapfile.h b/mapfile.h index f8be30dc68..3b274660df 100644 --- a/mapfile.h +++ b/mapfile.h @@ -31,7 +31,7 @@ #ifndef MAPFILE_H #define MAPFILE_H -enum MS_LEXER_STATES {MS_TOKENIZE_DEFAULT=0, MS_TOKENIZE_FILE, MS_TOKENIZE_STRING, MS_TOKENIZE_EXPRESSION, MS_TOKENIZE_URL_VARIABLE, MS_TOKENIZE_URL_STRING, MS_TOKENIZE_VALUE, MS_TOKENIZE_NAME}; +enum MS_LEXER_STATES {MS_TOKENIZE_DEFAULT=0, MS_TOKENIZE_FILE, MS_TOKENIZE_STRING, MS_TOKENIZE_EXPRESSION, MS_TOKENIZE_URL_VARIABLE, MS_TOKENIZE_URL_STRING, MS_TOKENIZE_VALUE, MS_TOKENIZE_NAME, MS_TOKENIZE_CONFIG}; enum MS_TOKEN_SOURCES {MS_FILE_TOKENS=0, MS_STRING_TOKENS, MS_URL_TOKENS}; /* diff --git a/maplexer.c b/maplexer.c index d8ce095da0..24ce88fde5 100644 --- a/maplexer.c +++ b/maplexer.c @@ -611,8 +611,8 @@ static void yynoreturn yy_fatal_error ( const char* msg ); (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 345 -#define YY_END_OF_BUFFER 346 +#define YY_NUM_RULES 349 +#define YY_END_OF_BUFFER 350 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -620,225 +620,228 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static const flex_int16_t yy_accept[1975] = +static const flex_int16_t yy_accept[1999] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 346, 343, 1, 341, 334, 2, - 343, 343, 327, 340, 327, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 343, - 343, 343, 342, 342, 8, 343, 343, 343, 343, 343, - 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, - 1, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 344, 1, 1, 11, 339, 344, 339, 344, - - 328, 328, 15, 12, 14, 344, 344, 344, 344, 344, + 0, 0, 0, 0, 0, 0, 350, 347, 1, 345, + 338, 2, 347, 347, 331, 344, 331, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, - 344, 344, 344, 344, 342, 18, 342, 345, 1, 345, - 345, 337, 335, 335, 336, 5, 7, 6, 1, 2, - 0, 332, 327, 327, 340, 327, 340, 0, 3, 340, - 2, 327, 0, 340, 340, 340, 340, 340, 340, 340, - 340, 244, 340, 340, 340, 248, 340, 249, 340, 340, - 254, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 268, 340, - - 340, 271, 272, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 283, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 223, - 340, 340, 309, 310, 340, 311, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 0, 320, 0, 333, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 347, 347, 347, 346, 346, 8, 347, 347, 347, + 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, + 347, 347, 1, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 348, 1, 1, 15, 343, 348, + + 343, 348, 332, 332, 19, 16, 18, 348, 348, 348, + 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, + 348, 348, 348, 348, 348, 348, 346, 22, 346, 349, + 1, 349, 349, 341, 339, 339, 340, 5, 7, 6, + 344, 344, 344, 344, 344, 1, 2, 0, 336, 331, + 331, 344, 331, 344, 0, 3, 344, 2, 331, 0, + 344, 344, 344, 344, 344, 344, 344, 344, 248, 344, + 344, 344, 252, 344, 253, 344, 344, 258, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + + 344, 344, 344, 344, 344, 272, 344, 344, 275, 276, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 287, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 227, 344, 344, 313, + 314, 344, 315, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 0, 324, 0, 337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 323, 344, 344, + 252, 344, 344, 344, 344, 344, 344, 344, 344, 344, + + 344, 344, 344, 344, 344, 344, 344, 344, 344, 287, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 17, 0, 14, 0, 332, + 332, 332, 0, 332, 0, 21, 23, 16, 20, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 0, 20, 18, 25, 0, 21, 0, 19, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 328, 0, 0, 333, 24, + 0, 342, 0, 341, 339, 339, 340, 5, 4, 2, + 344, 344, 344, 344, 331, 0, 0, 344, 331, 0, + + 335, 344, 335, 2, 2, 2, 331, 0, 0, 331, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 254, 344, 344, 344, 344, 344, 344, 344, + 344, 90, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 105, 344, 344, 344, 344, 344, + 344, 344, 344, 267, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 144, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 285, 286, + + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 307, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 238, 320, 344, 240, 321, 344, 69, + 0, 0, 0, 0, 0, 0, 0, 0, 144, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 238, 0, + 322, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 285, 344, 344, 344, 344, 344, + + 344, 344, 344, 344, 344, 0, 0, 0, 0, 0, + 332, 332, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 319, 340, 340, 248, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - - 340, 340, 283, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 13, 0, - 10, 0, 328, 328, 328, 0, 328, 0, 17, 19, - 12, 16, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 12, 0, 0, 0, 16, 14, 21, 0, - 17, 0, 15, 0, 9, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 324, 0, - 0, 329, 20, 0, 338, 0, 337, 335, 335, 336, - 5, 4, 327, 0, 0, 340, 327, 0, 331, 340, - 331, 2, 2, 2, 327, 0, 0, 327, 340, 340, - - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 250, 340, 340, 340, 340, 340, 340, 340, 340, 86, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 101, 340, 340, 340, 340, 340, 340, 340, - 340, 263, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 140, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 281, 282, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 303, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 234, 316, 340, 236, 317, 340, 65, 0, 0, - 0, 0, 0, 0, 0, 0, 140, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 234, 0, 318, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 281, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 0, 0, 0, 0, 0, 328, 328, - - 0, 0, 328, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, + 0, 0, 0, 2, 344, 10, 344, 344, 331, 334, + 334, 2, 2, 0, 331, 344, 344, 344, 344, 344, + 243, 344, 344, 344, 344, 344, 344, 344, 247, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 84, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + + 344, 344, 344, 262, 344, 344, 344, 100, 344, 344, + 344, 104, 344, 344, 344, 107, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 123, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 273, 344, 274, + 344, 147, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 178, 344, 283, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 210, 344, 344, 344, 344, 344, 344, 344, + 222, 344, 309, 344, 344, 344, 344, 311, 232, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 327, 330, 330, 2, 2, 2, 0, 327, 340, - 340, 340, 340, 340, 239, 340, 340, 340, 340, 340, - 340, 340, 243, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 80, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 258, 340, 340, - 340, 96, 340, 340, 340, 100, 340, 340, 340, 103, - - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 119, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 269, 340, 270, 340, 143, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 174, 340, 279, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 206, 340, 340, 340, - - 340, 340, 340, 340, 218, 340, 305, 340, 340, 340, - 340, 307, 228, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 237, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 206, 0, 0, 0, - 340, 340, 340, 80, 340, 96, 340, 340, 340, 340, - 340, 206, 340, 340, 307, 325, 0, 328, 22, 0, + 0, 0, 210, 0, 0, 0, 344, 344, 344, 84, + 344, 100, 344, 344, 344, 344, 344, 210, 344, 344, + 311, 329, 0, 332, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, - 0, 0, 0, 326, 2, 58, 340, 60, 340, 340, - - 240, 340, 340, 241, 340, 340, 340, 340, 340, 340, - 246, 340, 69, 340, 73, 340, 340, 340, 340, 340, - 340, 340, 82, 340, 340, 340, 340, 256, 84, 340, - 87, 340, 340, 257, 340, 340, 340, 340, 340, 340, - 98, 340, 340, 260, 340, 340, 106, 261, 340, 340, - 108, 340, 340, 116, 340, 340, 185, 340, 340, 340, - 340, 340, 123, 267, 340, 133, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 276, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - - 340, 277, 340, 252, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 290, - 340, 340, 340, 340, 340, 340, 340, 340, 294, 340, - 340, 340, 340, 340, 340, 340, 340, 296, 297, 199, - 340, 340, 340, 340, 340, 340, 301, 340, 340, 209, - 340, 215, 340, 340, 340, 340, 222, 340, 340, 340, - 340, 312, 229, 340, 340, 340, 340, 340, 340, 235, - 60, 69, 0, 0, 0, 123, 133, 0, 0, 0, - 0, 0, 0, 209, 0, 229, 340, 73, 340, 340, - 340, 340, 340, 340, 340, 0, 0, 0, 0, 0, - - 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, - 0, 40, 0, 0, 0, 28, 39, 0, 26, 0, - 0, 0, 0, 27, 0, 0, 0, 0, 340, 340, - 340, 340, 340, 340, 242, 340, 67, 245, 340, 247, - 340, 340, 340, 340, 340, 76, 340, 77, 340, 340, - 340, 340, 340, 340, 83, 340, 340, 340, 340, 89, - 340, 92, 93, 259, 340, 95, 340, 340, 340, 340, - 107, 264, 340, 340, 340, 340, 340, 265, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 132, 134, 135, 340, 340, 141, 340, 340, 340, - - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 273, 340, 274, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 280, 175, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 289, - 288, 293, 184, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 295, 340, 194, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 299, 300, - 340, 302, 208, 340, 211, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 233, - 315, 0, 89, 0, 0, 135, 0, 0, 0, 0, - - 0, 0, 340, 211, 340, 50, 31, 0, 0, 0, - 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, - 0, 0, 23, 0, 0, 0, 0, 0, 47, 0, - 0, 0, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 72, 340, 340, 340, 340, 314, 340, 340, - 253, 340, 255, 340, 340, 340, 91, 340, 97, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 115, 340, - 340, 340, 340, 121, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 137, 340, 340, 144, 340, 340, 340, - 340, 340, 340, 340, 340, 153, 340, 340, 340, 340, - - 340, 159, 340, 340, 340, 340, 340, 340, 340, 170, - 340, 340, 340, 340, 340, 176, 340, 177, 340, 340, - 340, 340, 183, 340, 340, 291, 340, 292, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 221, 340, 340, 340, 340, - 340, 230, 231, 340, 340, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 340, 340, 0, 25, 0, 46, - 38, 0, 0, 51, 0, 0, 0, 29, 0, 0, - 0, 0, 0, 0, 44, 0, 0, 321, 340, 340, - - 340, 340, 340, 64, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 85, 340, 340, 340, 340, - 340, 340, 104, 340, 340, 340, 340, 114, 340, 340, - 340, 120, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 138, 340, 340, 340, 340, 340, 340, 340, 340, - 149, 340, 340, 156, 157, 158, 340, 340, 340, 340, - 340, 340, 166, 340, 340, 173, 278, 340, 340, 340, - 340, 340, 340, 340, 182, 340, 340, 186, 340, 340, - 188, 340, 340, 340, 192, 340, 340, 340, 340, 196, - 340, 201, 340, 340, 298, 340, 340, 340, 340, 340, - - 340, 340, 216, 113, 340, 220, 340, 340, 340, 306, - 308, 313, 340, 0, 0, 0, 0, 192, 0, 0, - 201, 0, 340, 216, 0, 48, 0, 43, 30, 52, - 0, 0, 0, 45, 33, 0, 24, 0, 0, 340, - 340, 61, 340, 63, 340, 68, 340, 70, 340, 340, - 75, 340, 340, 56, 340, 340, 90, 340, 340, 340, - 105, 340, 111, 112, 110, 340, 118, 340, 340, 340, - 340, 340, 126, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 152, 340, 340, 340, 340, 340, - 340, 340, 340, 340, 169, 340, 340, 340, 340, 340, - - 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, - 340, 340, 57, 193, 340, 340, 340, 340, 340, 340, - 340, 205, 207, 210, 340, 214, 340, 219, 224, 227, - 340, 340, 0, 0, 110, 0, 193, 0, 0, 340, - 0, 0, 0, 0, 0, 0, 36, 0, 0, 340, - 238, 340, 340, 71, 55, 74, 78, 340, 340, 88, - 94, 340, 340, 109, 117, 340, 122, 266, 124, 340, - 340, 340, 340, 340, 340, 142, 145, 340, 340, 340, - 340, 340, 340, 340, 340, 160, 340, 340, 340, 340, - 340, 340, 340, 340, 340, 284, 340, 340, 340, 340, - - 340, 340, 251, 340, 189, 190, 340, 195, 340, 197, - 200, 202, 340, 204, 340, 340, 340, 340, 232, 0, - 109, 190, 197, 0, 78, 37, 32, 35, 42, 41, - 34, 0, 0, 59, 340, 340, 340, 340, 81, 340, - 340, 340, 340, 125, 340, 340, 340, 340, 340, 146, - 147, 151, 148, 340, 340, 340, 155, 161, 340, 168, - 165, 340, 340, 172, 340, 285, 340, 340, 340, 340, - 287, 304, 340, 191, 340, 203, 212, 340, 340, 226, - 0, 226, 0, 0, 340, 66, 340, 340, 340, 99, - 340, 340, 340, 340, 340, 136, 340, 340, 340, 154, - - 340, 340, 171, 340, 340, 179, 180, 181, 340, 340, - 340, 340, 340, 0, 0, 0, 340, 340, 340, 198, - 102, 262, 127, 129, 131, 340, 340, 150, 340, 167, - 275, 286, 340, 340, 340, 340, 340, 198, 0, 0, - 340, 340, 79, 340, 340, 340, 340, 164, 187, 162, - 340, 340, 225, 0, 322, 62, 340, 340, 340, 139, - 163, 340, 217, 323, 340, 340, 340, 213, 178, 340, - 340, 128, 130, 0 + + 0, 0, 0, 57, 0, 0, 0, 0, 0, 330, + 344, 11, 344, 2, 62, 344, 64, 344, 344, 244, + 344, 344, 245, 344, 344, 344, 344, 344, 344, 250, + 344, 73, 344, 77, 344, 344, 344, 344, 344, 344, + 344, 86, 344, 344, 344, 344, 260, 88, 344, 91, + 344, 344, 261, 344, 344, 344, 344, 344, 344, 102, + 344, 344, 264, 344, 344, 110, 265, 344, 344, 112, + 344, 344, 120, 344, 344, 189, 344, 344, 344, 344, + 344, 127, 271, 344, 137, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + + 344, 344, 344, 344, 344, 344, 280, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 281, 344, 256, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 294, 344, + 344, 344, 344, 344, 344, 344, 344, 298, 344, 344, + 344, 344, 344, 344, 344, 344, 300, 301, 203, 344, + 344, 344, 344, 344, 344, 305, 344, 344, 213, 344, + 219, 344, 344, 344, 344, 226, 344, 344, 344, 344, + 316, 233, 344, 344, 344, 344, 344, 344, 239, 64, + 73, 0, 0, 0, 127, 137, 0, 0, 0, 0, + + 0, 0, 213, 0, 233, 344, 77, 344, 344, 344, + 344, 344, 344, 344, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, + 44, 0, 0, 0, 32, 43, 0, 30, 0, 0, + 0, 0, 31, 0, 0, 0, 0, 344, 344, 344, + 344, 344, 344, 344, 344, 246, 344, 71, 249, 344, + 251, 344, 344, 344, 344, 344, 80, 344, 81, 344, + 344, 344, 344, 344, 344, 87, 344, 344, 344, 344, + 93, 344, 96, 97, 263, 344, 99, 344, 344, 344, + 344, 111, 268, 344, 344, 344, 344, 344, 269, 344, + + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 136, 138, 139, 344, 344, 145, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 277, 344, 278, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 284, + 179, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 293, 292, 297, 188, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 299, 344, 198, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 303, + 304, 344, 306, 212, 344, 215, 344, 344, 344, 344, + + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 237, 319, 0, 93, 0, 0, 139, 0, 0, 0, + 0, 0, 0, 344, 215, 344, 54, 35, 0, 0, + 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, + 0, 0, 0, 27, 0, 0, 0, 0, 0, 51, + 0, 0, 0, 9, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 76, 344, 344, 344, 344, + 318, 344, 344, 257, 344, 259, 344, 344, 344, 95, + 344, 101, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 119, 344, 344, 344, 344, 125, 344, 344, 344, + + 344, 344, 344, 344, 344, 344, 141, 344, 344, 148, + 344, 344, 344, 344, 344, 344, 344, 344, 157, 344, + 344, 344, 344, 344, 163, 344, 344, 344, 344, 344, + 344, 344, 174, 344, 344, 344, 344, 344, 180, 344, + 181, 344, 344, 344, 344, 187, 344, 344, 295, 344, + 296, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 225, 344, + 344, 344, 344, 344, 234, 235, 344, 344, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 344, 344, 0, + + 29, 0, 50, 42, 0, 0, 55, 0, 0, 0, + 33, 0, 0, 0, 0, 0, 0, 48, 0, 0, + 325, 12, 344, 344, 344, 344, 344, 68, 344, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 89, + 344, 344, 344, 344, 344, 344, 108, 344, 344, 344, + 344, 118, 344, 344, 344, 124, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 142, 344, 344, 344, 344, + 344, 344, 344, 344, 153, 344, 344, 160, 161, 162, + 344, 344, 344, 344, 344, 344, 170, 344, 344, 177, + 282, 344, 344, 344, 344, 344, 344, 344, 186, 344, + + 344, 190, 344, 344, 192, 344, 344, 344, 196, 344, + 344, 344, 344, 200, 344, 205, 344, 344, 302, 344, + 344, 344, 344, 344, 344, 344, 220, 117, 344, 224, + 344, 344, 344, 310, 312, 317, 344, 0, 0, 0, + 0, 196, 0, 0, 205, 0, 344, 220, 0, 52, + 0, 47, 34, 56, 0, 0, 0, 49, 37, 0, + 28, 0, 0, 344, 344, 65, 344, 67, 344, 72, + 344, 74, 344, 344, 79, 344, 344, 60, 344, 344, + 94, 344, 344, 344, 109, 344, 115, 116, 114, 344, + 122, 344, 344, 344, 344, 344, 130, 344, 344, 344, + + 344, 344, 344, 344, 344, 344, 344, 344, 156, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 173, 344, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 344, 344, 344, 61, 197, 344, 344, + 344, 344, 344, 344, 344, 209, 211, 214, 344, 218, + 344, 223, 228, 231, 344, 344, 0, 0, 114, 0, + 197, 0, 0, 344, 0, 0, 0, 0, 0, 0, + 40, 0, 0, 344, 242, 344, 344, 75, 59, 78, + 82, 344, 344, 92, 98, 344, 344, 113, 121, 344, + 126, 270, 128, 344, 344, 344, 344, 344, 344, 146, + + 149, 344, 344, 344, 344, 344, 344, 344, 344, 164, + 344, 344, 344, 344, 344, 344, 344, 344, 344, 288, + 344, 344, 344, 344, 344, 344, 255, 344, 193, 194, + 344, 199, 344, 201, 204, 206, 344, 208, 344, 344, + 344, 344, 236, 0, 113, 194, 201, 0, 82, 41, + 36, 39, 46, 45, 38, 0, 0, 63, 344, 344, + 344, 344, 85, 344, 344, 344, 344, 129, 344, 344, + 344, 344, 344, 150, 151, 155, 152, 344, 344, 344, + 159, 165, 344, 172, 169, 344, 344, 176, 344, 289, + 344, 344, 344, 344, 291, 308, 344, 195, 344, 207, + + 216, 344, 344, 230, 0, 230, 0, 0, 344, 70, + 344, 344, 344, 103, 344, 344, 344, 344, 344, 140, + 344, 344, 344, 158, 344, 344, 175, 344, 344, 183, + 184, 185, 344, 344, 344, 344, 344, 0, 0, 0, + 344, 344, 344, 202, 106, 266, 131, 133, 135, 344, + 344, 154, 344, 171, 279, 290, 344, 344, 344, 344, + 344, 202, 0, 0, 344, 344, 83, 344, 344, 344, + 344, 168, 191, 166, 344, 344, 229, 0, 326, 66, + 344, 344, 344, 143, 167, 344, 221, 327, 344, 344, + 344, 217, 182, 344, 344, 132, 134, 0 + } ; static const YY_CHAR yy_ec[256] = @@ -886,993 +889,1010 @@ static const YY_CHAR yy_meta[89] = 1, 1, 1, 1, 1, 1, 1, 1 } ; -static const flex_int16_t yy_base[2002] = +static const flex_int16_t yy_base[2026] = { 0, 0, 0, 86, 172, 260, 0, 348, 0, 89, 93, - 97, 99, 98, 102, 996, 4748, 115, 4748, 4748, 0, - 978, 115, 119, 436, 151, 127, 430, 499, 162, 428, - 504, 511, 173, 424, 54, 114, 553, 554, 168, 560, - 599, 80, 614, 658, 664, 650, 442, 710, 0, 934, - 900, 883, 4748, 4748, 4748, 98, 116, 126, 162, 183, - 444, 200, 185, 408, 445, 709, 435, 440, 450, 461, - 179, 783, 604, 457, 772, 623, 479, 777, 581, 501, - 775, 521, 792, 586, 509, 819, 821, 717, 829, 868, - 837, 561, 4748, 254, 546, 942, 907, 909, 851, 641, - - 681, 740, 866, 574, 856, 782, 703, 845, 853, 498, - 878, 879, 507, 619, 896, 887, 891, 606, 911, 857, - 627, 648, 933, 137, 793, 817, 4748, 4748, 659, 815, - 807, 0, 698, 716, 504, 0, 4748, 797, 823, 0, - 762, 748, 930, 943, 0, 954, 962, 740, 4748, 1013, - 1101, 969, 980, 718, 1005, 728, 975, 763, 1001, 783, - 1008, 0, 789, 873, 879, 985, 1010, 0, 876, 880, - 0, 1024, 947, 973, 1016, 1030, 1009, 1015, 1017, 1095, - 1024, 1090, 1023, 1077, 1079, 1102, 1105, 1087, 1108, 1098, - 1088, 1111, 1149, 1108, 1106, 1098, 1105, 1153, 0, 1169, - - 1104, 0, 0, 1161, 1152, 1178, 1107, 1107, 1161, 1179, - 1162, 1163, 1183, 1193, 1194, 1176, 1197, 1196, 1194, 1199, - 1221, 1222, 1227, 1220, 1260, 1231, 1221, 1242, 1232, 1246, - 1267, 1251, 1232, 1257, 1247, 1242, 1254, 1275, 1280, 1247, - 1295, 1244, 0, 0, 1286, 0, 1295, 1284, 1293, 1303, - 1307, 1295, 1311, 1297, 1299, 1319, 676, 4748, 625, 621, - 581, 1314, 1321, 1322, 1309, 1333, 1336, 1332, 1325, 1327, - 1338, 1338, 1349, 1328, 1330, 1355, 1349, 1360, 563, 1368, - 4748, 1364, 1364, 1367, 1365, 1356, 1374, 1380, 1379, 1374, - 1379, 1389, 1380, 1395, 1397, 1380, 1410, 1410, 1398, 1407, - - 1399, 1417, 0, 1404, 1408, 1405, 1421, 1418, 1421, 1438, - 1415, 1441, 1431, 1432, 1445, 1434, 1431, 1444, 4748, 559, - 4748, 551, 1484, 1497, 1486, 1471, 1490, 1508, 4748, 4748, - 4748, 4748, 1470, 1473, 1469, 1491, 1484, 1493, 1486, 1494, - 1504, 1502, 1491, 1501, 1496, 1500, 1502, 4748, 1510, 1495, - 1504, 1498, 4748, 1507, 4748, 1511, 1529, 1514, 1523, 1525, - 1532, 1535, 1541, 1539, 548, 1562, 1563, 1560, 4748, 500, - 199, 4748, 4748, 503, 4748, 474, 0, 4748, 4748, 4748, - 0, 4748, 1574, 1581, 573, 588, 637, 438, 1565, 1633, - 1566, 177, 1721, 1809, 1602, 1644, 695, 735, 1571, 1593, - - 1591, 1610, 1617, 1613, 1626, 1637, 1637, 1639, 1631, 1622, - 1640, 1627, 1628, 1631, 1647, 1632, 1633, 1638, 1638, 1708, - 0, 1654, 1637, 1712, 1694, 1711, 1718, 1704, 1710, 0, - 1711, 1709, 1724, 1712, 1712, 1713, 1722, 1723, 1716, 1717, - 1798, 1725, 0, 1726, 1726, 1721, 1739, 1725, 1786, 1798, - 1794, 0, 1797, 1800, 1805, 1793, 1809, 1802, 1802, 1803, - 1810, 1806, 1817, 1816, 1812, 1820, 1822, 1807, 1823, 1825, - 0, 1820, 1840, 1882, 1855, 1874, 1860, 1871, 1936, 1872, - 1858, 1863, 1876, 1865, 1882, 1877, 1873, 0, 237, 1890, - 1895, 1887, 1880, 1884, 1910, 1934, 1919, 1913, 1940, 1940, - - 1931, 1951, 1932, 1944, 1932, 1948, 1953, 1962, 1959, 1945, - 1952, 1967, 1974, 1977, 1994, 1996, 1985, 1995, 1998, 1992, - 2004, 1987, 1996, 0, 2007, 1998, 1995, 1993, 2009, 1990, - 2004, 2012, 2004, 2020, 2017, 2018, 2009, 2047, 2025, 2041, - 2007, 0, 0, 2008, 0, 0, 2021, 4748, 2049, 2044, - 2046, 2060, 2059, 2062, 2064, 2065, 4748, 2061, 2054, 2068, - 2059, 2063, 2071, 2065, 2064, 2059, 4748, 196, 4748, 2061, - 2068, 2070, 2084, 2085, 2083, 2069, 2070, 2084, 2091, 2104, - 2107, 2113, 2105, 2113, 2121, 2113, 2119, 2125, 2126, 2130, - 2117, 2129, 2115, 189, 703, 181, 932, 745, 926, 2141, - - 1674, 974, 985, 2137, 2124, 2134, 2121, 2129, 2125, 2128, - 2129, 2144, 2141, 2132, 2152, 2142, 2148, 2155, 2169, 2155, - 2175, 2180, 2185, 2180, 2183, 4748, 2184, 2172, 2177, 2177, - 2179, 2175, 2193, 2192, 2195, 2193, 2183, 2186, 2206, 713, - 953, 1052, 4748, 0, 2199, 2262, 0, 1126, 1240, 2209, - 2215, 2231, 2217, 2241, 153, 2248, 2237, 2245, 2241, 2263, - 2246, 2261, 0, 2264, 2278, 2258, 2252, 2252, 2256, 2269, - 2267, 2272, 2263, 2264, 2274, 2262, 2280, 2294, 2288, 2313, - 2293, 2315, 2310, 2326, 2318, 2328, 2313, 0, 2331, 2332, - 2323, 2320, 2335, 2336, 2341, 0, 2323, 2324, 2336, 2327, - - 2331, 2343, 2347, 2333, 2349, 2350, 2335, 2333, 2349, 2342, - 2342, 0, 2361, 2366, 2384, 2367, 2369, 2385, 2379, 2377, - 2391, 0, 2384, 2396, 2396, 0, 2384, 2388, 2395, 2400, - 2402, 2394, 2404, 2391, 2438, 2409, 2406, 2396, 2414, 2401, - 2401, 2402, 2405, 2427, 2434, 2447, 2450, 2442, 2452, 2455, - 2455, 2452, 2444, 2454, 2453, 0, 2457, 0, 2466, 2466, - 2448, 2460, 2458, 2468, 2458, 2471, 2476, 2477, 2472, 2484, - 2494, 2484, 2487, 2502, 2494, 2510, 2500, 2514, 2515, 2496, - 2518, 2519, 2507, 2511, 2507, 2527, 2520, 2518, 2511, 2528, - 2528, 2534, 2523, 2534, 2529, 2530, 2522, 2532, 2528, 2526, - - 2560, 2551, 2562, 2564, 0, 2562, 0, 2574, 2564, 2564, - 2570, 2565, 0, 2572, 2568, 2587, 2569, 2571, 2587, 2587, - 2578, 2586, 0, 2590, 2580, 2595, 2587, 2598, 2592, 2587, - 2592, 2603, 2584, 2609, 2616, 2624, 4748, 2628, 2619, 2622, - 2623, 2625, 2639, 0, 2631, 0, 2641, 2638, 2636, 2644, - 2630, 0, 2636, 2640, 0, 4748, 1585, 1590, 4748, 2639, - 2649, 2650, 2647, 2656, 2642, 2653, 2658, 2650, 2658, 2655, - 2663, 2650, 2651, 2671, 2687, 2673, 2677, 2681, 2683, 2686, - 2687, 2694, 2703, 2696, 2689, 2692, 2703, 4748, 2694, 2704, - 2716, 1658, 2699, 4748, 0, 0, 2698, 0, 2717, 2707, - - 0, 2705, 2715, 0, 2724, 2711, 2724, 2712, 2714, 2730, - 0, 2746, 2750, 2747, 2735, 2753, 2749, 2759, 2764, 2748, - 2769, 2770, 0, 2760, 2754, 2756, 2756, 0, 0, 2767, - 0, 2758, 2759, 0, 2762, 2777, 2767, 2763, 2782, 2771, - 0, 2771, 2774, 0, 2791, 2775, 0, 0, 2795, 2809, - 2816, 2796, 2817, 0, 2823, 2805, 0, 2816, 2829, 2805, - 2832, 2829, 2863, 0, 2825, 0, 2822, 2838, 2842, 2832, - 2830, 2846, 2827, 2834, 2853, 2841, 2837, 2861, 2872, 2882, - 2860, 2887, 2877, 2887, 2879, 2892, 2875, 0, 2870, 2893, - 2874, 2880, 2900, 2887, 2884, 2891, 2908, 2884, 2909, 2900, - - 2911, 0, 2900, 0, 2915, 2907, 2908, 2911, 2919, 2917, - 2933, 2925, 2923, 2944, 2930, 2937, 2933, 2937, 2940, 2936, - 2941, 2942, 2949, 2954, 2959, 2952, 2945, 2963, 2965, 2958, - 2955, 2970, 2963, 2971, 2961, 2972, 2972, 0, 0, 2997, - 2976, 2977, 2989, 3002, 3005, 2999, 0, 3009, 2996, 3007, - 3006, 0, 3018, 3019, 3008, 3005, 0, 3024, 3023, 3019, - 3008, 0, 0, 3014, 3030, 3017, 3039, 3023, 3025, 0, - 4748, 4748, 3033, 3035, 3055, 4748, 4748, 3057, 3059, 3050, - 3062, 3048, 3070, 4748, 3060, 4748, 3070, 0, 3075, 3060, - 3078, 3073, 3065, 3073, 3086, 3084, 3072, 3077, 3090, 3088, - - 3094, 3095, 3084, 3095, 3096, 3095, 4748, 3114, 3115, 3122, - 3123, 4748, 3106, 3126, 3123, 4748, 4748, 3133, 4748, 3128, - 3130, 3130, 3135, 4748, 3127, 1746, 3144, 3138, 3128, 3126, - 3140, 3135, 3132, 3141, 0, 3151, 0, 0, 3138, 0, - 3141, 3141, 3145, 3163, 3154, 0, 3167, 0, 3159, 3164, - 3165, 3172, 3167, 3176, 0, 3188, 3182, 3179, 3190, 0, - 3195, 0, 3192, 0, 3182, 0, 3188, 3203, 3184, 3201, - 0, 0, 3193, 3194, 3210, 3187, 3196, 0, 3210, 3207, - 3219, 3217, 3216, 3220, 3223, 3208, 3237, 3226, 3224, 3246, - 3243, 0, 0, 3243, 3237, 3249, 3241, 3242, 3243, 3243, - - 3244, 3242, 3261, 3260, 3250, 3258, 3266, 3269, 3258, 3256, - 0, 3257, 0, 3265, 3263, 3264, 3265, 3267, 3265, 3285, - 3293, 3291, 3301, 3305, 3294, 3291, 3303, 3316, 0, 0, - 3315, 150, 3297, 3304, 3319, 3319, 3314, 3313, 3308, 0, - 0, 0, 0, 3323, 3316, 3317, 3314, 3330, 3334, 3318, - 3320, 3323, 3329, 3344, 3327, 0, 3335, 0, 3328, 3348, - 3357, 3345, 3367, 3366, 3357, 3368, 3376, 3376, 0, 0, - 3373, 0, 0, 3364, 3366, 3366, 3367, 3384, 3384, 3371, - 3377, 3377, 3393, 3385, 3382, 3399, 3388, 3400, 3386, 0, - 0, 3392, 4748, 3394, 3386, 4748, 3392, 3413, 3410, 3407, - - 3429, 3432, 3414, 0, 3415, 4748, 4748, 3427, 3416, 3430, - 3427, 3422, 3443, 3435, 3436, 4748, 3450, 3428, 3441, 3438, - 3451, 3439, 4748, 3443, 3454, 3443, 3449, 3448, 4748, 3466, - 3463, 88, 3456, 3464, 3473, 3455, 3481, 3470, 3481, 3492, - 3486, 3498, 0, 3492, 3488, 3489, 3501, 0, 3491, 3505, - 0, 3501, 0, 3507, 3506, 3501, 0, 3498, 0, 3503, - 3507, 3510, 3507, 3512, 3521, 3506, 3513, 3518, 0, 3524, - 3521, 3530, 3531, 0, 3529, 3543, 3548, 3540, 3554, 3539, - 3551, 3551, 3555, 0, 3557, 3563, 0, 3564, 3573, 3554, - 3567, 3559, 3558, 3568, 3576, 0, 3574, 3572, 3577, 3585, - - 3582, 0, 3579, 3590, 3571, 3584, 3577, 3577, 3593, 0, - 3591, 3598, 3605, 3615, 3609, 0, 3612, 0, 3614, 3630, - 3617, 3615, 0, 3634, 3630, 0, 3623, 0, 3619, 3634, - 3615, 3633, 3634, 3627, 3630, 3642, 3645, 3644, 3641, 3635, - 3646, 3639, 3645, 3649, 3658, 3657, 3666, 3662, 3663, 3682, - 3689, 3684, 3687, 3691, 3684, 0, 3695, 3681, 3682, 3696, - 3697, 0, 0, 3686, 3696, 3695, 3696, 3693, 3701, 3695, - 3709, 3706, 3698, 3699, 3710, 3716, 3713, 4748, 3705, 4748, - 4748, 3720, 3717, 4748, 3728, 3725, 3740, 4748, 3748, 3745, - 3737, 3732, 3749, 3752, 4748, 3755, 3749, 4748, 3753, 3748, - - 3745, 3752, 3754, 0, 3751, 3752, 3750, 3759, 3766, 3769, - 3772, 3764, 3776, 3778, 3765, 0, 3781, 3785, 3801, 3787, - 3790, 3806, 0, 3798, 3810, 3808, 3813, 0, 3818, 3801, - 3807, 0, 3808, 3805, 3816, 3812, 3813, 3809, 3810, 3810, - 3814, 3820, 3808, 3809, 3822, 3821, 3837, 3821, 3837, 3847, - 3854, 3839, 3867, 0, 0, 0, 3843, 3857, 3855, 3871, - 3855, 3870, 3876, 3859, 3881, 0, 0, 3870, 3883, 3871, - 3885, 3872, 3879, 3872, 0, 3884, 3874, 0, 3877, 3883, - 0, 3882, 3882, 3885, 0, 3888, 3898, 3885, 3888, 0, - 3895, 0, 3905, 3918, 0, 3918, 3905, 3925, 3916, 3924, - - 3938, 3920, 3926, 0, 3919, 0, 3939, 3932, 3941, 0, - 0, 0, 3932, 3927, 3934, 3945, 3937, 4748, 3948, 3940, - 4748, 3951, 3942, 0, 3944, 4748, 3956, 4748, 4748, 4748, - 3934, 3943, 3949, 4748, 3951, 3968, 4748, 3970, 3973, 3958, - 3978, 0, 3989, 0, 3982, 0, 3981, 0, 3996, 3986, - 0, 3991, 3988, 0, 3987, 3994, 0, 3996, 4001, 4005, - 0, 3994, 0, 0, 0, 3998, 0, 3996, 4010, 3999, - 4014, 4019, 0, 4018, 4019, 4016, 4014, 4028, 4025, 4026, - 4030, 4029, 4024, 4046, 0, 4038, 4050, 4048, 4039, 4058, - 4063, 4062, 4048, 4068, 0, 4065, 4062, 4052, 4064, 4060, - - 4071, 4057, 4067, 4076, 4068, 4077, 4078, 4072, 4084, 4082, - 4077, 4091, 0, 0, 4078, 4075, 4082, 4093, 4095, 4101, - 4112, 0, 0, 0, 4107, 0, 4120, 0, 4104, 0, - 4114, 4115, 4110, 4113, 4748, 4118, 4748, 4119, 4120, 4121, - 4131, 4133, 4134, 4122, 4122, 4123, 4748, 4139, 4125, 4125, - 0, 4143, 4148, 0, 0, 0, 4138, 4141, 4148, 0, - 0, 4156, 4163, 0, 0, 4170, 0, 0, 0, 4161, - 4182, 4184, 4169, 4189, 4167, 0, 0, 4187, 4174, 4186, - 4183, 4195, 4183, 4194, 4194, 0, 4195, 4182, 4195, 4192, - 4191, 4202, 4202, 4196, 4186, 0, 4204, 4200, 4197, 4218, - - 4201, 4213, 0, 4239, 0, 0, 4221, 0, 4242, 0, - 0, 0, 4227, 0, 4242, 4229, 4238, 4233, 0, 4245, - 4748, 4748, 4748, 4235, 4236, 4748, 4748, 4748, 4748, 4748, - 4748, 4238, 4250, 0, 4243, 4240, 4245, 4237, 0, 4248, - 4251, 4248, 4248, 0, 4257, 4258, 4268, 4255, 4258, 0, - 0, 0, 0, 4267, 4267, 4290, 0, 0, 4289, 0, - 0, 4287, 4298, 0, 4300, 0, 4306, 4291, 4302, 4291, - 0, 0, 4311, 0, 4301, 0, 4312, 4297, 4309, 0, - 4304, 4748, 4314, 4295, 4308, 0, 4302, 4309, 4313, 0, - 4315, 4305, 4326, 4327, 4316, 0, 4328, 4332, 4331, 0, - - 4329, 4344, 0, 4341, 4352, 0, 0, 0, 4357, 4364, - 4364, 4366, 4352, 4359, 4348, 4377, 4361, 4369, 4374, 0, - 0, 0, 4376, 4377, 0, 4357, 4372, 0, 4380, 0, - 0, 0, 4382, 4384, 4376, 4374, 4374, 4748, 4396, 64, - 4379, 4384, 0, 4403, 4412, 4414, 4417, 0, 0, 0, - 4411, 4413, 0, 56, 4748, 0, 4415, 4417, 4419, 0, - 0, 4421, 0, 4748, 4416, 4421, 4422, 0, 0, 4425, - 4427, 0, 0, 4748, 4494, 4504, 4514, 4524, 4534, 4544, - 4548, 4556, 4566, 4576, 4579, 4589, 4599, 4609, 4619, 4629, - 4639, 4649, 4659, 4669, 4677, 4687, 4697, 4707, 4717, 4727, - - 4737 + 97, 99, 98, 102, 436, 0, 1099, 4863, 115, 4863, + 4863, 0, 1072, 115, 119, 524, 151, 127, 518, 587, + 162, 516, 592, 599, 173, 512, 54, 114, 641, 642, + 168, 648, 687, 80, 702, 746, 752, 738, 530, 798, + 0, 1026, 991, 986, 4863, 4863, 4863, 98, 116, 126, + 162, 183, 532, 200, 185, 496, 533, 797, 523, 528, + 538, 549, 179, 871, 692, 545, 860, 711, 567, 865, + 669, 589, 863, 609, 880, 674, 597, 907, 909, 805, + 917, 956, 925, 649, 4863, 254, 634, 1034, 1002, 1036, + + 956, 729, 769, 828, 967, 662, 954, 870, 791, 933, + 941, 586, 966, 967, 595, 707, 984, 975, 979, 694, + 999, 945, 715, 736, 1021, 137, 884, 950, 4863, 4863, + 747, 911, 900, 0, 786, 804, 592, 0, 4863, 888, + 885, 800, 822, 872, 874, 911, 0, 850, 836, 1018, + 1031, 0, 1042, 1050, 828, 4863, 1101, 1189, 1057, 1068, + 882, 1093, 942, 1063, 963, 1089, 971, 1096, 0, 974, + 1043, 1055, 1073, 1098, 0, 1084, 1094, 0, 1113, 1108, + 1106, 1179, 1117, 1104, 1168, 1111, 1189, 1112, 1184, 1111, + 1166, 1176, 1191, 1192, 1177, 1199, 1191, 1181, 1204, 1236, + + 1201, 1201, 1237, 1199, 1241, 0, 1257, 1230, 0, 0, + 1249, 1265, 1268, 1234, 1241, 1288, 1265, 1266, 1266, 1297, + 1304, 1305, 1287, 1300, 1290, 1293, 1300, 1315, 1313, 1318, + 1311, 1356, 1319, 1308, 1334, 1331, 1344, 1356, 1345, 1326, + 1363, 1343, 1354, 1369, 1366, 1371, 1368, 1388, 1368, 0, + 0, 1377, 0, 1381, 1374, 1384, 1402, 1405, 1389, 1408, + 1404, 1406, 1425, 764, 4863, 713, 709, 669, 1422, 1429, + 1425, 1412, 1432, 1433, 1427, 1421, 1426, 1437, 1440, 1443, + 1419, 1422, 1447, 1440, 1448, 651, 1456, 4863, 1477, 1464, + 1468, 1474, 1450, 1465, 1472, 1478, 1467, 1480, 1481, 1479, + + 1498, 1500, 1479, 1504, 1501, 1488, 1498, 1490, 1506, 0, + 1496, 1501, 1505, 1527, 1516, 1515, 1532, 1518, 1544, 1535, + 1537, 1537, 1541, 1533, 1546, 4863, 647, 4863, 639, 1563, + 1577, 1595, 1602, 1600, 1611, 4863, 4863, 4863, 4863, 1552, + 1573, 1558, 1583, 1587, 1597, 1589, 1594, 1606, 1606, 1595, + 1605, 1600, 1604, 1607, 4863, 1613, 1601, 1610, 1603, 4863, + 1608, 4863, 1609, 1625, 1613, 1624, 1623, 1651, 1619, 1628, + 1625, 636, 1650, 1661, 1655, 4863, 588, 199, 4863, 4863, + 591, 4863, 562, 0, 4863, 4863, 4863, 0, 4863, 1726, + 1652, 1684, 1651, 1666, 1725, 1682, 661, 676, 725, 526, + + 1682, 1814, 1687, 177, 1902, 1990, 1733, 1740, 783, 823, + 1695, 1717, 1722, 1724, 1731, 1726, 1731, 1739, 1739, 1741, + 1733, 1724, 1742, 1729, 1730, 1733, 1749, 1787, 1788, 1794, + 1797, 1809, 0, 1815, 1796, 1817, 1797, 1811, 1816, 1802, + 1809, 0, 1810, 1808, 1822, 1809, 1810, 1811, 1883, 1820, + 1813, 1814, 1891, 1823, 0, 1826, 1883, 1881, 1901, 1885, + 1904, 1904, 1900, 0, 1903, 1903, 1907, 1893, 1909, 1903, + 1903, 1904, 1973, 1904, 1915, 1914, 1910, 1918, 1920, 1907, + 1965, 1978, 0, 1973, 1974, 2055, 1980, 1990, 1988, 1989, + 2109, 1991, 1977, 1981, 1995, 1982, 1998, 1991, 1986, 0, + + 237, 2003, 2004, 1996, 1989, 1990, 2008, 2053, 2025, 2031, + 2071, 2051, 2031, 2097, 2050, 2066, 2061, 2078, 2077, 2093, + 2103, 2098, 2105, 2114, 2109, 2112, 2121, 2129, 2114, 2127, + 2130, 2124, 2136, 2120, 2131, 0, 2146, 2144, 2142, 2142, + 2164, 2145, 2160, 2168, 2161, 2176, 2173, 2175, 2166, 2179, + 2181, 2175, 2165, 0, 0, 2170, 0, 0, 2175, 4863, + 2180, 2175, 2177, 2192, 2191, 2194, 2197, 2200, 4863, 2197, + 2192, 2213, 2205, 2212, 2226, 2220, 2220, 2215, 4863, 196, + 4863, 2218, 2224, 2226, 2241, 2242, 2239, 2225, 2226, 2240, + 2240, 2241, 2247, 2248, 2235, 2244, 2252, 2244, 2250, 2257, + + 2259, 2265, 2253, 2267, 2260, 189, 791, 181, 1020, 833, + 1014, 2301, 1767, 1062, 1073, 2281, 2271, 2287, 2274, 2286, + 2281, 2283, 2285, 2299, 2297, 2288, 2308, 2291, 2293, 2301, + 2310, 2296, 2313, 2314, 2319, 2314, 2317, 4863, 2318, 2308, + 2313, 2312, 2314, 2311, 2331, 2337, 2339, 2340, 2335, 2340, + 2360, 801, 1041, 2354, 2360, 0, 2348, 2361, 1140, 4863, + 0, 2361, 2362, 1213, 1346, 2358, 2359, 2371, 2357, 2377, + 153, 2373, 2362, 2370, 2361, 2383, 2366, 2383, 0, 2385, + 2390, 2381, 2376, 2376, 2382, 2414, 2395, 2401, 2402, 2407, + 2411, 2407, 2425, 2427, 2417, 2430, 2411, 2434, 2421, 2435, + + 2428, 2438, 2423, 0, 2440, 2441, 2432, 2431, 2447, 2448, + 2454, 0, 2437, 2438, 2453, 2447, 2452, 2464, 2474, 2460, + 2477, 2480, 2466, 2466, 2482, 2474, 2475, 0, 2490, 2483, + 2489, 2487, 2489, 2497, 2489, 2488, 2502, 0, 2494, 2509, + 2504, 0, 2496, 2500, 2508, 2515, 2519, 2514, 2525, 2512, + 2549, 2536, 2533, 2523, 2543, 2531, 2534, 2534, 2538, 2542, + 2551, 2557, 2558, 2550, 2561, 2565, 2562, 2560, 2553, 2567, + 2565, 0, 2570, 0, 2580, 2587, 2562, 2581, 2591, 2595, + 2585, 2600, 2606, 2609, 2603, 2615, 2609, 2599, 2602, 2615, + 2604, 2618, 2608, 2623, 2624, 2606, 2627, 2628, 2618, 2623, + + 2619, 2640, 2634, 2632, 2628, 2648, 2649, 2655, 2650, 2661, + 2656, 2659, 2652, 2664, 2659, 2657, 2675, 2666, 2677, 2672, + 0, 2681, 0, 2681, 2669, 2672, 2678, 2673, 0, 2680, + 2676, 2697, 2681, 2684, 2701, 2701, 2695, 2706, 0, 2711, + 2701, 2722, 2714, 2725, 2721, 2717, 2724, 2734, 2715, 2724, + 2731, 2739, 4863, 2741, 2729, 2730, 2731, 2734, 2748, 0, + 2740, 0, 2750, 2747, 2745, 2755, 2742, 0, 2748, 2753, + 0, 4863, 1458, 1570, 4863, 2753, 2763, 2767, 2767, 2777, + 2763, 2780, 2785, 2777, 2787, 2785, 2795, 2781, 2782, 2786, + 2802, 2788, 2790, 2791, 2791, 2794, 2796, 2803, 2812, 2805, + + 2798, 2801, 2814, 4863, 2806, 2816, 2828, 1651, 2811, 4863, + 2821, 0, 2825, 0, 0, 2820, 0, 2843, 2839, 0, + 2834, 2845, 0, 2858, 2846, 2858, 2846, 2848, 2864, 0, + 2863, 2863, 2866, 2855, 2865, 2860, 2870, 2875, 2859, 2880, + 2883, 0, 2874, 2868, 2870, 2870, 0, 0, 2882, 0, + 2873, 2894, 0, 2878, 2896, 2888, 2893, 2916, 2906, 0, + 2905, 2908, 0, 2925, 2909, 0, 0, 2912, 2927, 2930, + 2915, 2931, 0, 2935, 2916, 0, 2927, 2939, 2915, 2941, + 2943, 2977, 0, 2939, 0, 2936, 2954, 2961, 2953, 2957, + 2973, 2954, 2968, 2987, 2976, 2972, 2980, 2991, 2996, 2972, + + 2998, 2988, 2998, 2990, 3003, 2986, 0, 2983, 3007, 2988, + 2994, 3014, 3001, 3000, 3010, 3029, 3011, 3036, 3027, 3038, + 0, 3029, 0, 3045, 3037, 3030, 3032, 3038, 3034, 3051, + 3043, 3038, 3058, 3042, 3048, 3044, 3048, 3051, 3047, 3052, + 3055, 3063, 3068, 3073, 3066, 3059, 3079, 3086, 3091, 3084, + 3099, 3093, 3101, 3091, 3094, 3093, 0, 0, 3114, 3095, + 3096, 3104, 3116, 3117, 3110, 0, 3120, 3107, 3118, 3116, + 0, 3128, 3131, 3134, 3118, 0, 3136, 3155, 3132, 3119, + 0, 0, 3142, 3159, 3146, 3168, 3153, 3155, 0, 4863, + 4863, 3155, 3156, 3174, 4863, 4863, 3174, 3177, 3168, 3177, + + 3162, 3182, 4863, 3170, 4863, 3180, 0, 3185, 3170, 3188, + 3192, 3177, 3186, 3198, 3202, 3198, 3205, 3218, 3217, 3223, + 3225, 3215, 3225, 3226, 3217, 4863, 3235, 3234, 3239, 3241, + 4863, 3224, 3241, 3237, 4863, 4863, 3245, 4863, 3239, 3241, + 3241, 3246, 4863, 3238, 1656, 3255, 3256, 3249, 3246, 3247, + 3248, 3263, 3263, 3266, 3276, 0, 3284, 0, 0, 3273, + 0, 3277, 3276, 3279, 3297, 3288, 0, 3292, 0, 3282, + 3286, 3285, 3292, 3287, 3293, 0, 3305, 3297, 3293, 3304, + 0, 3309, 0, 3306, 0, 3296, 0, 3303, 3319, 3301, + 3318, 0, 0, 3310, 3315, 3333, 3315, 3330, 0, 3345, + + 3340, 3354, 3353, 3351, 3354, 3357, 3342, 3362, 3349, 3346, + 3366, 3363, 0, 0, 3363, 3354, 3363, 3354, 3355, 3357, + 3357, 3358, 3357, 3377, 3377, 3367, 3375, 3387, 3392, 3386, + 3390, 0, 3392, 0, 3398, 3398, 3400, 3400, 3401, 3399, + 3419, 3418, 3414, 3423, 3425, 3414, 3411, 3420, 3433, 0, + 0, 3430, 150, 3411, 3418, 3433, 3433, 3428, 3428, 3424, + 0, 0, 0, 0, 3440, 3433, 3434, 3435, 3453, 3462, + 3452, 3455, 3456, 3464, 3480, 3462, 0, 3469, 0, 3462, + 3482, 3482, 3468, 3489, 3486, 3477, 3488, 3497, 3493, 0, + 0, 3487, 0, 0, 3477, 3479, 3479, 3481, 3498, 3499, + + 3487, 3494, 3494, 3510, 3508, 3510, 3533, 3523, 3533, 3521, + 0, 0, 3528, 4863, 3529, 3520, 4863, 3526, 3547, 3535, + 3530, 3551, 3552, 3534, 0, 3535, 4863, 4863, 3544, 3533, + 3545, 3541, 3536, 3557, 3549, 3550, 4863, 3565, 3544, 3558, + 3555, 3568, 3560, 4863, 3566, 3582, 3577, 3584, 3581, 4863, + 3603, 3605, 88, 0, 3586, 3592, 3599, 3610, 3591, 3609, + 3596, 3601, 3612, 3603, 3615, 0, 3607, 3602, 3603, 3615, + 0, 3605, 3619, 0, 3616, 0, 3623, 3624, 3620, 0, + 3620, 0, 3628, 3636, 3646, 3644, 3650, 3659, 3645, 3651, + 3656, 0, 3662, 3658, 3667, 3668, 0, 3665, 3671, 3674, + + 3660, 3674, 3656, 3668, 3666, 3669, 0, 3671, 3677, 0, + 3678, 3687, 3669, 3683, 3677, 3677, 3690, 3701, 0, 3703, + 3708, 3714, 3723, 3720, 0, 3718, 3728, 3709, 3722, 3714, + 3714, 3730, 0, 3727, 3726, 3731, 3735, 3729, 0, 3729, + 0, 3729, 3745, 3731, 3728, 0, 3748, 3744, 0, 3738, + 0, 3735, 3752, 3734, 3755, 3765, 3764, 3768, 3781, 3784, + 3784, 3782, 3773, 3784, 3776, 3782, 3786, 3794, 3785, 3792, + 3782, 3783, 3799, 3803, 3802, 3801, 3805, 3798, 0, 3809, + 3796, 3798, 3814, 3816, 0, 0, 3808, 3821, 3824, 3832, + 3830, 3839, 3833, 3848, 3844, 3836, 3837, 3847, 3853, 3850, + + 4863, 3841, 4863, 4863, 3848, 3843, 4863, 3848, 3845, 3857, + 4863, 3865, 3860, 3851, 3846, 3863, 3866, 4863, 3869, 3880, + 4863, 0, 3867, 3866, 3864, 3874, 3893, 0, 3890, 3892, + 3890, 3900, 3908, 3911, 3912, 3903, 3915, 3916, 3901, 0, + 3909, 3911, 3921, 3907, 3909, 3924, 0, 3915, 3926, 3924, + 3928, 0, 3933, 3916, 3922, 0, 3924, 3922, 3935, 3932, + 3937, 3935, 3949, 3949, 3954, 3960, 3949, 3951, 3964, 3961, + 3976, 3960, 3975, 3983, 3982, 3965, 3987, 0, 0, 0, + 3963, 3976, 3973, 3988, 3971, 3986, 3991, 3974, 3996, 0, + 0, 3985, 3999, 3988, 4004, 3992, 4003, 3998, 0, 4023, + + 4013, 0, 4017, 4023, 0, 4023, 4024, 4027, 0, 4028, + 4037, 4024, 4026, 0, 4031, 0, 4033, 4044, 0, 4038, + 4025, 4044, 4034, 4041, 4054, 4036, 4041, 0, 4034, 0, + 4054, 4047, 4057, 0, 0, 0, 4049, 4046, 4054, 4069, + 4063, 4863, 4087, 4079, 4863, 4091, 4082, 0, 4085, 4863, + 4098, 4863, 4863, 4863, 4076, 4083, 4088, 4863, 4090, 4106, + 4863, 4100, 4102, 4094, 4096, 0, 4107, 0, 4100, 0, + 4099, 0, 4111, 4099, 0, 4104, 4101, 0, 4100, 4107, + 0, 4109, 4115, 4120, 0, 4118, 0, 0, 0, 4124, + 0, 4135, 4149, 4139, 4154, 4159, 0, 4158, 4159, 4154, + + 4151, 4164, 4161, 4163, 4166, 4165, 4152, 4172, 0, 4158, + 4170, 4167, 4157, 4173, 4176, 4175, 4161, 4181, 0, 4178, + 4175, 4166, 4179, 4184, 4197, 4196, 4206, 4216, 4208, 4217, + 4218, 4212, 4222, 4219, 4213, 4227, 0, 0, 4215, 4211, + 4218, 4221, 4221, 4221, 4232, 0, 0, 0, 4226, 0, + 4238, 0, 4219, 0, 4227, 4228, 4223, 4226, 4863, 4231, + 4863, 4232, 4234, 4236, 4255, 4259, 4273, 4261, 4262, 4263, + 4863, 4272, 4267, 4265, 0, 4284, 4287, 0, 0, 0, + 4274, 4276, 4283, 0, 0, 4278, 4282, 0, 0, 4289, + 0, 0, 0, 4279, 4299, 4301, 4285, 4303, 4281, 0, + + 0, 4301, 4288, 4300, 4298, 4311, 4308, 4322, 4322, 0, + 4327, 4321, 4334, 4332, 4331, 4342, 4342, 4336, 4324, 0, + 4341, 4336, 4332, 4353, 4336, 4336, 0, 4358, 0, 0, + 4340, 0, 4360, 0, 0, 0, 4344, 0, 4359, 4345, + 4352, 4347, 0, 4359, 4863, 4863, 4863, 4349, 4350, 4863, + 4863, 4863, 4863, 4863, 4863, 4355, 4379, 0, 4357, 4369, + 4378, 4377, 0, 4389, 4392, 4389, 4389, 0, 4398, 4399, + 4407, 4393, 4395, 0, 0, 0, 0, 4401, 4401, 4412, + 0, 0, 4409, 0, 0, 4406, 4417, 0, 4418, 0, + 4423, 4408, 4419, 4408, 0, 0, 4426, 0, 4416, 0, + + 4427, 4412, 4425, 0, 4421, 4863, 4441, 4440, 4439, 0, + 4436, 4448, 4454, 0, 4458, 4447, 4468, 4469, 4456, 0, + 4467, 4470, 4465, 0, 4453, 4467, 0, 4464, 4472, 0, + 0, 0, 4477, 4483, 4483, 4484, 4470, 4477, 4467, 4489, + 4477, 4489, 4495, 0, 0, 0, 4497, 4508, 0, 4487, + 4514, 0, 4522, 0, 0, 0, 4523, 4525, 4519, 4516, + 4516, 4863, 4531, 64, 4519, 4523, 0, 4534, 4535, 4536, + 4537, 0, 0, 0, 4530, 4532, 0, 56, 4863, 0, + 4533, 4534, 4535, 0, 0, 4537, 0, 4863, 4532, 4537, + 4538, 0, 0, 4541, 4542, 0, 0, 4863, 4609, 4619, + + 4629, 4639, 4649, 4659, 4663, 4671, 4681, 4691, 4694, 4704, + 4714, 4724, 4734, 4744, 4754, 4764, 4774, 4784, 4792, 4802, + 4812, 4822, 4832, 4842, 4852 } ; -static const flex_int16_t yy_def[2002] = +static const flex_int16_t yy_def[2026] = { 0, - 1974, 1, 1975, 1975, 1974, 5, 1974, 7, 1976, 1976, - 1977, 1977, 1978, 1978, 1974, 1974, 1974, 1974, 1974, 1979, - 1980, 1974, 1981, 1982, 1974, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1983, - 1984, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1985, - 1974, 1982, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 37, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 46, 1981, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1986, 1987, 1974, 1974, 1974, 1974, 1974, 1988, - 1989, 1990, 1974, 1974, 1974, 1991, 1974, 1974, 1974, 1979, - 1980, 1980, 1974, 1974, 1981, 1981, 1981, 1992, 1974, 1993, - 1994, 1974, 1974, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1983, 1974, 1984, 1984, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1995, 1974, - 1974, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1974, 1996, - 1974, 1997, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1986, 1986, 1986, 1986, 1974, 1987, - 1998, 1974, 1974, 1988, 1974, 1989, 1990, 1974, 1974, 1974, - 1991, 1974, 1974, 1974, 1974, 1981, 1981, 1992, 1974, 1993, - 1981, 1999, 1994, 2000, 1974, 1974, 1974, 1974, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1995, 1974, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1996, 1996, 1997, 1997, 1974, 1974, 1974, - - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1986, 1986, 1986, 1998, - 1998, 1974, 1974, 1981, 2001, 2000, 646, 1974, 1974, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1986, 1986, 1986, 1974, 2001, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1974, 1974, 1974, 1974, 1974, - - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1986, 1986, 1986, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - - 1974, 1974, 1981, 1981, 1981, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1986, - 1986, 1986, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1981, 1981, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1986, 1986, 1974, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1981, 1981, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1986, 1986, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1981, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1986, 1986, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1974, - 1974, 1974, 1974, 1974, 1981, 1974, 1974, 1974, 1974, 1974, - 1974, 1986, 1986, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1974, 1974, 1986, 1986, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1974, 1986, 1986, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1974, 1986, 1986, - 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1986, 1974, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 1974, 1981, 1981, 1981, 1981, 1981, 1981, - 1981, 1981, 1981, 0, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - - 1974 + 1998, 1, 1999, 1999, 1998, 5, 1998, 7, 2000, 2000, + 2001, 2001, 2002, 2002, 1998, 15, 1998, 1998, 1998, 1998, + 1998, 2003, 2004, 1998, 2005, 2006, 1998, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2007, 2008, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 2009, 1998, 2006, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 39, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 48, 2005, 1998, 1998, 1998, 1998, 1998, 1998, + + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 2010, 2011, 1998, 1998, 1998, 1998, + 1998, 2012, 2013, 2014, 1998, 1998, 1998, 2015, 1998, 1998, + 2005, 2005, 2005, 2005, 2005, 1998, 2003, 2004, 2004, 1998, + 1998, 2005, 2005, 2005, 2016, 1998, 2017, 2018, 1998, 1998, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2007, 1998, 2008, 2008, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 2019, 1998, 1998, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 1998, 2020, 1998, 2021, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 2010, 2010, 2010, 2010, 1998, 2011, 2022, 1998, 1998, + 2012, 1998, 2013, 2014, 1998, 1998, 1998, 2015, 1998, 2023, + 2005, 2005, 2005, 2005, 1998, 1998, 1998, 2005, 2005, 2016, + + 1998, 2017, 2005, 2024, 2018, 2023, 1998, 1998, 1998, 1998, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 2019, + 1998, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2020, 2020, 2021, 2021, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 2010, 2010, + 2010, 2022, 2022, 406, 2005, 2005, 2005, 2005, 1998, 1998, + 2005, 2025, 406, 1998, 1998, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + + 1998, 1998, 1998, 1998, 1998, 1998, 2010, 2010, 2010, 1998, + 2005, 2005, 2005, 2025, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + + 1998, 1998, 1998, 1998, 1998, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 2010, 2010, 2010, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 2005, 2005, 2005, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 2010, 2010, 2010, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 2005, 2005, 1998, + + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 2010, 2010, + 1998, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 2005, 2005, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 2010, 2010, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 2005, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 2010, 2010, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 1998, 1998, 1998, 1998, 1998, 2005, 1998, + 1998, 1998, 1998, 1998, 1998, 2010, 2010, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + + 2005, 2005, 2005, 2005, 1998, 1998, 2010, 2010, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 1998, 2010, 2010, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 1998, 2010, 2010, 2005, 2005, 2005, 2005, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2010, 1998, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 1998, 2005, 2005, + 2005, 2005, 2005, 2005, 2005, 2005, 2005, 0, 1998, 1998, + + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998 } ; -static const flex_int16_t yy_nxt[4837] = +static const flex_int16_t yy_nxt[4952] = { 0, - 16, 17, 18, 17, 17, 16, 19, 20, 16, 19, - 21, 16, 16, 16, 22, 23, 24, 25, 25, 16, - 16, 16, 16, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - 43, 44, 45, 46, 47, 48, 49, 49, 49, 50, - 16, 16, 16, 16, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 45, 46, 47, 48, 49, 49, 49, - 51, 16, 16, 16, 16, 16, 52, 16, 53, 54, - 129, 195, 129, 129, 129, 130, 129, 129, 131, 130, - - 137, 55, 131, 133, 137, 133, 134, 1964, 134, 56, - 138, 57, 58, 59, 138, 1955, 139, 60, 139, 139, - 61, 62, 195, 223, 63, 64, 65, 66, 67, 68, - 143, 69, 144, 144, 262, 70, 146, 146, 55, 1498, - 56, 196, 57, 58, 59, 197, 147, 135, 60, 135, - 263, 61, 62, 264, 223, 63, 64, 65, 66, 67, - 68, 154, 69, 155, 1417, 262, 152, 54, 144, 144, - 156, 901, 196, 54, 53, 54, 197, 147, 153, 388, - 139, 263, 139, 139, 264, 170, 371, 55, 171, 172, - 372, 209, 154, 645, 155, 56, 188, 57, 58, 59, - - 189, 156, 173, 60, 190, 210, 61, 62, 265, 153, - 63, 64, 65, 66, 67, 68, 170, 69, 266, 171, - 172, 70, 209, 269, 55, 270, 56, 188, 57, 58, - 59, 189, 597, 173, 60, 190, 210, 61, 62, 265, - 595, 63, 64, 65, 66, 67, 68, 569, 69, 266, - 641, 761, 372, 54, 269, 139, 270, 139, 139, 54, - 16, 17, 53, 71, 17, 16, 19, 16, 16, 19, - 21, 16, 16, 16, 22, 23, 72, 25, 25, 16, - 16, 16, 16, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 49, 82, 83, 84, 85, 86, 87, 49, - - 88, 89, 90, 91, 49, 92, 49, 49, 49, 16, - 16, 16, 16, 16, 73, 74, 75, 76, 77, 78, - 79, 80, 81, 49, 82, 83, 84, 85, 86, 87, - 49, 88, 89, 90, 91, 49, 92, 49, 49, 49, - 51, 54, 16, 16, 16, 16, 16, 54, 93, 94, - 53, 95, 94, 96, 97, 93, 98, 99, 93, 93, - 93, 93, 100, 101, 93, 102, 102, 93, 103, 104, - 105, 106, 107, 108, 109, 110, 111, 112, 93, 113, - 114, 93, 115, 93, 116, 117, 93, 93, 118, 119, - 120, 121, 93, 122, 93, 93, 93, 123, 93, 93, - - 93, 124, 106, 107, 108, 109, 110, 111, 112, 93, - 113, 114, 93, 115, 93, 116, 117, 93, 93, 118, - 119, 120, 121, 93, 122, 93, 93, 93, 93, 125, - 93, 126, 93, 93, 93, 127, 148, 148, 148, 148, - 148, 148, 148, 148, 148, 148, 148, 148, 149, 148, - 191, 271, 151, 157, 389, 148, 148, 158, 148, 192, - 193, 159, 174, 175, 176, 249, 194, 267, 177, 250, - 160, 268, 272, 161, 178, 276, 277, 278, 280, 280, - 283, 191, 271, 375, 157, 148, 148, 148, 158, 148, - 192, 193, 159, 174, 175, 176, 249, 194, 267, 177, - - 250, 160, 268, 272, 161, 178, 276, 277, 278, 375, - 380, 283, 281, 380, 288, 289, 148, 148, 148, 148, - 148, 148, 148, 148, 162, 290, 163, 179, 189, 164, - 165, 180, 301, 166, 184, 181, 167, 343, 185, 168, - 169, 182, 186, 349, 183, 288, 289, 139, 296, 139, - 139, 187, 197, 372, 380, 162, 290, 163, 179, 189, - 164, 165, 180, 301, 166, 184, 181, 167, 343, 185, - 168, 169, 182, 186, 349, 183, 198, 204, 199, 296, - 200, 205, 187, 197, 201, 206, 330, 202, 211, 212, - 642, 642, 253, 203, 254, 331, 213, 207, 214, 369, - - 215, 208, 597, 216, 184, 387, 387, 198, 204, 199, - 595, 200, 205, 299, 569, 201, 206, 300, 202, 211, - 212, 293, 217, 253, 203, 254, 218, 213, 207, 214, - 219, 215, 208, 220, 216, 184, 221, 224, 154, 222, - 282, 225, 350, 358, 299, 226, 286, 156, 300, 171, - 287, 227, 293, 217, 387, 387, 323, 218, 324, 324, - 139, 219, 139, 139, 220, 363, 548, 221, 224, 154, - 222, 282, 225, 350, 358, 243, 226, 286, 156, 364, - 171, 287, 227, 228, 244, 229, 245, 237, 230, 231, - 246, 238, 247, 232, 248, 239, 363, 233, 325, 325, - - 234, 240, 235, 260, 241, 236, 243, 260, 326, 856, - 364, 242, 398, 398, 228, 244, 229, 245, 237, 230, - 231, 246, 238, 247, 232, 248, 239, 258, 233, 378, - 335, 234, 240, 235, 273, 241, 236, 251, 252, 326, - 274, 253, 242, 254, 309, 255, 336, 379, 226, 399, - 256, 275, 398, 398, 595, 327, 389, 324, 324, 142, - 378, 335, 599, 599, 641, 273, 372, 328, 251, 252, - 404, 274, 253, 142, 254, 309, 255, 336, 379, 226, - 399, 256, 275, 148, 148, 148, 148, 148, 148, 148, - 148, 148, 148, 148, 148, 1974, 148, 162, 328, 163, - - 179, 404, 148, 148, 180, 148, 284, 407, 291, 285, - 294, 295, 168, 382, 292, 297, 375, 194, 333, 298, - 410, 375, 334, 145, 139, 413, 139, 139, 162, 373, - 163, 179, 148, 148, 148, 180, 148, 284, 407, 291, - 285, 294, 295, 168, 305, 292, 297, 302, 194, 333, - 298, 410, 306, 334, 145, 303, 413, 214, 307, 310, - 311, 308, 304, 148, 148, 148, 148, 148, 148, 148, - 148, 312, 337, 318, 355, 305, 313, 332, 302, 145, - 340, 145, 338, 306, 341, 339, 303, 329, 214, 307, - 310, 311, 308, 304, 361, 314, 414, 362, 342, 315, - - 322, 344, 312, 337, 318, 316, 347, 313, 317, 345, - 145, 340, 145, 338, 319, 341, 339, 321, 346, 415, - 421, 348, 422, 351, 354, 361, 314, 414, 362, 342, - 315, 355, 344, 352, 356, 357, 316, 347, 353, 317, - 345, 856, 359, 599, 599, 319, 360, 383, 383, 346, - 415, 421, 348, 422, 351, 354, 320, 384, 152, 366, - 144, 144, 355, 319, 352, 356, 357, 261, 367, 353, - 153, 146, 146, 359, 368, 385, 386, 360, 425, 387, - 387, 147, 260, 597, 369, 258, 395, 395, 384, 142, - 366, 603, 603, 397, 397, 1974, 396, 398, 398, 367, - - 405, 153, 603, 603, 641, 368, 894, 426, 416, 425, - 1974, 406, 147, 388, 388, 388, 388, 388, 388, 388, - 388, 388, 388, 388, 388, 388, 388, 396, 417, 391, - 400, 405, 388, 388, 401, 388, 411, 408, 426, 416, - 427, 402, 406, 409, 418, 419, 420, 403, 423, 431, - 412, 434, 424, 432, 428, 429, 430, 433, 437, 417, - 442, 400, 388, 388, 388, 401, 388, 411, 408, 642, - 642, 427, 402, 1974, 409, 418, 419, 420, 403, 423, - 431, 412, 434, 424, 432, 428, 429, 430, 433, 437, - 1974, 442, 1974, 388, 388, 388, 388, 388, 388, 388, - - 388, 392, 392, 388, 392, 392, 392, 392, 392, 392, - 392, 392, 392, 392, 392, 443, 444, 394, 435, 1974, - 392, 392, 436, 392, 438, 445, 439, 440, 446, 449, - 441, 450, 451, 452, 453, 458, 447, 459, 460, 462, - 470, 481, 448, 649, 649, 461, 443, 444, 482, 435, - 392, 392, 392, 436, 392, 438, 445, 439, 440, 446, - 449, 441, 450, 451, 452, 453, 458, 447, 459, 460, - 462, 470, 481, 448, 454, 455, 461, 463, 475, 482, - 456, 392, 392, 392, 392, 392, 392, 392, 392, 1974, - 487, 457, 467, 464, 476, 465, 483, 468, 469, 471, - - 466, 472, 473, 488, 484, 454, 455, 474, 463, 475, - 489, 456, 477, 478, 479, 485, 490, 491, 492, 486, - 480, 487, 457, 467, 464, 476, 465, 483, 468, 469, - 471, 466, 472, 473, 488, 484, 495, 493, 474, 494, - 496, 489, 497, 477, 478, 479, 485, 490, 491, 492, - 486, 480, 498, 501, 503, 499, 504, 649, 649, 502, - 512, 505, 500, 1974, 513, 514, 515, 495, 493, 516, - 494, 496, 1974, 497, 520, 521, 524, 525, 526, 1974, - 522, 532, 536, 498, 501, 503, 499, 504, 506, 507, - 502, 512, 505, 500, 508, 513, 514, 515, 509, 510, - - 516, 511, 517, 518, 523, 520, 521, 524, 525, 526, - 527, 522, 532, 536, 529, 519, 530, 537, 533, 506, - 507, 528, 531, 538, 539, 508, 534, 540, 541, 509, - 510, 542, 511, 517, 518, 523, 543, 544, 535, 545, - 546, 527, 547, 549, 550, 529, 519, 530, 537, 533, - 551, 552, 528, 531, 538, 539, 553, 534, 540, 541, - 554, 556, 542, 557, 558, 559, 560, 543, 544, 535, - 545, 546, 562, 547, 549, 550, 563, 564, 565, 561, - 566, 551, 552, 555, 567, 280, 280, 553, 1974, 405, - 570, 554, 556, 401, 557, 558, 559, 560, 573, 571, - - 402, 572, 574, 562, 427, 430, 403, 563, 564, 565, - 561, 566, 432, 576, 555, 567, 575, 448, 578, 281, - 405, 570, 579, 438, 401, 577, 440, 580, 456, 573, - 571, 402, 572, 574, 581, 427, 430, 403, 468, 457, - 582, 477, 484, 432, 576, 583, 584, 575, 448, 578, - 494, 585, 586, 579, 438, 502, 577, 440, 580, 456, - 510, 588, 587, 589, 522, 581, 590, 591, 532, 468, - 457, 582, 477, 484, 592, 593, 583, 584, 528, 529, - 1974, 494, 585, 586, 598, 598, 502, 531, 599, 599, - 1974, 510, 588, 587, 589, 522, 321, 590, 591, 532, - - 604, 325, 325, 325, 325, 592, 593, 600, 600, 528, - 529, 326, 327, 326, 324, 324, 605, 601, 531, 606, - 607, 602, 602, 610, 328, 603, 603, 321, 608, 609, - 611, 604, 612, 614, 615, 616, 617, 618, 619, 623, - 624, 620, 326, 625, 326, 613, 621, 605, 601, 626, - 606, 607, 622, 627, 610, 328, 628, 629, 630, 608, - 609, 611, 631, 612, 614, 615, 616, 617, 618, 619, - 623, 624, 620, 632, 625, 633, 613, 621, 634, 635, - 626, 636, 1974, 622, 627, 637, 638, 628, 629, 630, - 639, 383, 383, 631, 385, 385, 643, 644, 642, 642, - - 650, 384, 858, 858, 632, 1974, 633, 858, 858, 634, - 635, 369, 636, 369, 369, 1974, 637, 638, 1974, 395, - 395, 639, 1974, 651, 1974, 652, 1974, 643, 644, 396, - 1974, 650, 384, 388, 388, 388, 388, 388, 388, 388, - 388, 388, 388, 388, 388, 388, 388, 653, 654, 391, - 655, 1974, 388, 388, 651, 388, 652, 648, 648, 656, - 396, 649, 649, 657, 658, 659, 660, 661, 662, 663, - 664, 665, 666, 667, 668, 669, 670, 674, 653, 654, - 675, 655, 388, 388, 388, 1974, 388, 857, 857, 1974, - 656, 858, 858, 1974, 657, 658, 659, 660, 661, 662, - - 663, 664, 665, 666, 667, 668, 669, 670, 674, 369, - 1127, 675, 1974, 388, 388, 388, 388, 388, 388, 388, - 388, 392, 392, 388, 392, 392, 392, 392, 392, 392, - 392, 392, 392, 392, 392, 676, 671, 394, 678, 1974, - 392, 392, 679, 392, 672, 680, 681, 682, 683, 684, - 673, 685, 677, 686, 687, 688, 689, 691, 692, 693, - 696, 697, 698, 699, 690, 700, 676, 671, 701, 678, - 392, 392, 392, 679, 392, 672, 680, 681, 682, 683, - 684, 673, 685, 677, 686, 687, 688, 689, 691, 692, - 693, 696, 697, 698, 699, 690, 700, 369, 1330, 701, - - 1974, 392, 392, 392, 392, 392, 392, 392, 392, 140, - 140, 702, 140, 140, 140, 140, 140, 140, 140, 140, - 140, 140, 140, 694, 703, 704, 705, 1974, 140, 140, - 706, 140, 708, 695, 707, 709, 710, 711, 712, 713, - 647, 714, 702, 716, 717, 718, 719, 720, 721, 722, - 723, 715, 724, 725, 694, 703, 704, 705, 140, 140, - 140, 706, 140, 708, 695, 707, 709, 710, 711, 712, - 713, 647, 714, 726, 716, 717, 718, 719, 720, 721, - 722, 723, 715, 724, 725, 1974, 738, 741, 1974, 140, - 140, 140, 140, 140, 140, 140, 140, 739, 742, 753, - - 754, 740, 755, 756, 726, 727, 728, 757, 729, 758, - 730, 731, 759, 732, 760, 762, 733, 738, 741, 734, - 763, 764, 766, 735, 736, 765, 767, 737, 739, 742, - 753, 754, 740, 755, 756, 768, 727, 728, 757, 729, - 758, 730, 731, 759, 732, 760, 762, 733, 771, 772, - 734, 763, 764, 766, 735, 736, 765, 767, 737, 743, - 744, 769, 745, 773, 746, 747, 768, 748, 777, 770, - 749, 775, 780, 781, 782, 783, 778, 750, 751, 771, - 772, 752, 776, 779, 784, 785, 786, 774, 787, 788, - 743, 744, 769, 745, 773, 746, 747, 789, 748, 777, - - 770, 749, 775, 780, 781, 782, 783, 778, 750, 751, - 790, 791, 752, 776, 779, 784, 785, 786, 774, 787, - 788, 792, 793, 795, 796, 797, 798, 799, 789, 800, - 801, 802, 803, 804, 794, 805, 806, 807, 808, 809, - 810, 790, 791, 811, 812, 813, 814, 1974, 818, 821, - 822, 815, 792, 793, 795, 796, 797, 798, 799, 823, - 800, 801, 802, 803, 804, 794, 805, 806, 807, 808, - 809, 810, 819, 816, 811, 812, 813, 814, 817, 818, - 821, 822, 815, 824, 820, 825, 826, 827, 828, 829, - 823, 830, 831, 832, 833, 834, 835, 836, 837, 838, - - 839, 840, 841, 819, 816, 842, 843, 844, 676, 817, - 845, 690, 846, 847, 824, 820, 825, 826, 827, 828, - 829, 706, 830, 831, 832, 833, 834, 835, 836, 837, - 838, 839, 840, 841, 849, 714, 842, 843, 844, 676, - 740, 845, 690, 846, 847, 848, 850, 764, 769, 851, - 775, 793, 706, 852, 853, 854, 855, 815, 600, 600, - 859, 860, 861, 862, 863, 849, 714, 864, 601, 865, - 866, 740, 867, 868, 869, 870, 848, 850, 764, 769, - 851, 775, 793, 871, 852, 853, 854, 855, 815, 872, - 873, 859, 860, 861, 862, 863, 874, 875, 864, 601, - - 865, 866, 876, 867, 868, 869, 870, 877, 878, 879, - 880, 881, 882, 883, 871, 884, 885, 886, 887, 888, - 872, 873, 889, 890, 892, 891, 1974, 874, 875, 893, - 895, 1974, 1974, 876, 369, 1974, 1974, 369, 877, 878, - 879, 880, 881, 882, 883, 896, 884, 885, 886, 887, - 888, 1974, 897, 889, 890, 892, 891, 369, 898, 899, - 893, 895, 140, 140, 900, 140, 140, 140, 140, 140, - 140, 140, 140, 140, 140, 140, 896, 902, 903, 904, - 1974, 140, 140, 897, 140, 905, 906, 907, 908, 898, - 899, 909, 912, 913, 914, 900, 915, 916, 918, 919, - - 920, 910, 921, 923, 922, 924, 917, 925, 902, 903, - 904, 140, 140, 140, 1974, 140, 905, 906, 907, 908, - 911, 926, 909, 912, 913, 914, 927, 915, 916, 918, - 919, 920, 910, 921, 923, 922, 924, 917, 925, 928, - 929, 930, 140, 140, 140, 140, 140, 140, 140, 140, - 931, 911, 926, 932, 933, 934, 935, 927, 936, 937, - 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, - 928, 929, 930, 948, 949, 950, 951, 952, 953, 954, - 955, 931, 956, 957, 932, 933, 934, 935, 958, 936, - 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, - - 947, 959, 962, 963, 948, 949, 950, 951, 952, 953, - 954, 955, 964, 956, 957, 960, 965, 966, 967, 958, - 968, 969, 961, 971, 972, 973, 974, 975, 970, 976, - 977, 978, 959, 962, 963, 979, 983, 984, 1974, 985, - 986, 987, 988, 964, 989, 990, 960, 965, 966, 967, - 1974, 968, 969, 961, 971, 972, 973, 974, 975, 970, - 976, 977, 978, 980, 991, 992, 979, 983, 984, 981, - 985, 986, 987, 988, 993, 989, 990, 994, 995, 996, - 997, 982, 1000, 1001, 1002, 1003, 998, 1004, 1005, 1006, - 1009, 1010, 1011, 1007, 980, 991, 992, 1008, 999, 1012, - - 981, 1013, 1014, 1015, 1016, 993, 1017, 1018, 994, 995, - 996, 997, 982, 1000, 1001, 1002, 1003, 998, 1004, 1005, - 1006, 1009, 1010, 1011, 1007, 1019, 1020, 1021, 1008, 999, - 1012, 1022, 1013, 1014, 1015, 1016, 1023, 1017, 1018, 1024, - 1026, 1027, 1028, 1029, 1025, 1030, 1031, 1032, 1033, 1034, - 1035, 1036, 1037, 1038, 1039, 1040, 1019, 1020, 1021, 1041, - 1042, 1043, 1022, 1044, 1045, 1046, 1047, 1023, 1048, 1049, - 1024, 1026, 1027, 1028, 1029, 1025, 1030, 1031, 1032, 1033, - 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1050, 1051, 1052, - 1041, 1042, 1043, 1055, 1044, 1045, 1046, 1047, 1053, 1048, - - 1049, 1057, 1054, 1056, 1058, 1059, 1060, 1061, 1062, 1063, - 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1050, 1051, - 1052, 1072, 1073, 1074, 1055, 1075, 1076, 1077, 1078, 1053, - 1079, 1080, 1057, 1054, 1056, 1058, 1059, 1060, 1061, 1062, - 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1081, - 1082, 1083, 1072, 1073, 1074, 1084, 1075, 1076, 1077, 1078, - 1085, 1079, 1080, 1086, 1087, 1088, 1089, 1090, 1091, 960, - 1092, 1007, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, - 1081, 1082, 1083, 1101, 1102, 1103, 1084, 1104, 1105, 1106, - 1107, 1085, 1108, 1109, 1086, 1087, 1088, 1089, 1090, 1091, - - 960, 1092, 1007, 1093, 1094, 1095, 1096, 1097, 1098, 1099, - 1100, 1110, 1111, 1112, 1101, 1102, 1103, 1113, 1104, 1105, - 1106, 1107, 1114, 1108, 1109, 1115, 1116, 1117, 1118, 1119, - 1120, 1121, 1122, 1123, 1124, 1125, 1974, 1128, 1129, 1126, - 1130, 1131, 1110, 1111, 1112, 1132, 1133, 1134, 1113, 1135, - 369, 1136, 1137, 1114, 1138, 1139, 1115, 1116, 1117, 1118, - 1119, 1120, 1121, 1122, 1123, 1124, 1125, 369, 1128, 1129, - 1126, 1130, 1131, 1140, 1143, 1144, 1132, 1133, 1134, 1141, - 1135, 1142, 1136, 1137, 1145, 1138, 1139, 1146, 1148, 1149, - 1147, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, - - 1159, 1160, 1161, 1162, 1140, 1143, 1144, 1163, 1164, 1165, - 1141, 1166, 1142, 1167, 1168, 1145, 1169, 1170, 1146, 1148, - 1149, 1147, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, - 1158, 1159, 1160, 1161, 1162, 1171, 1172, 1178, 1163, 1164, - 1165, 1173, 1166, 1179, 1167, 1168, 1180, 1169, 1170, 1181, - 1182, 1174, 1183, 1184, 1175, 1185, 1186, 1974, 1176, 1177, - 1974, 1192, 1193, 1974, 1194, 1195, 1171, 1172, 1178, 1196, - 1197, 1198, 1173, 1199, 1179, 1200, 1201, 1180, 1202, 1203, - 1181, 1182, 1174, 1183, 1184, 1175, 1185, 1186, 1187, 1176, - 1177, 1188, 1192, 1193, 1189, 1194, 1195, 1204, 1190, 1205, - - 1196, 1197, 1198, 1191, 1199, 1206, 1200, 1201, 1207, 1202, - 1203, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1187, - 1216, 1217, 1188, 1218, 1219, 1189, 1220, 1221, 1204, 1190, - 1205, 1222, 1223, 1224, 1191, 1225, 1206, 1226, 1227, 1207, - 1228, 1229, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, - 1230, 1216, 1217, 1231, 1218, 1219, 1232, 1220, 1221, 1233, - 1234, 1235, 1222, 1223, 1224, 1236, 1225, 1237, 1226, 1227, - 1238, 1228, 1229, 1239, 1240, 1241, 1242, 1243, 1244, 1245, - 1246, 1230, 1249, 1250, 1231, 1247, 1251, 1232, 1252, 1255, - 1233, 1234, 1235, 1253, 1248, 1256, 1236, 1257, 1237, 1258, - - 1254, 1238, 1259, 1260, 1239, 1240, 1241, 1242, 1243, 1244, - 1245, 1246, 1261, 1249, 1250, 1262, 1247, 1251, 1266, 1252, - 1255, 1263, 1267, 1264, 1253, 1248, 1256, 1268, 1257, 1269, - 1258, 1254, 1270, 1259, 1260, 1271, 1272, 1273, 1274, 1265, - 1275, 1276, 1277, 1261, 1278, 1280, 1262, 1281, 1284, 1266, - 1279, 1282, 1263, 1267, 1264, 1285, 1286, 1287, 1268, 1288, - 1269, 1283, 1289, 1270, 1290, 1291, 1271, 1272, 1273, 1274, - 1265, 1275, 1276, 1277, 1292, 1278, 1280, 1293, 1281, 1284, - 1294, 1279, 1282, 1296, 1297, 1298, 1285, 1286, 1287, 1299, - 1288, 1300, 1283, 1289, 1301, 1290, 1291, 1295, 1302, 1141, - - 1303, 1142, 1160, 1173, 1189, 1292, 1243, 1304, 1293, 1305, - 1306, 1294, 1307, 1191, 1296, 1297, 1298, 1308, 1309, 1310, - 1299, 1311, 1300, 1312, 1313, 1301, 1314, 1315, 1295, 1302, - 1141, 1303, 1142, 1160, 1173, 1189, 1316, 1243, 1304, 1317, - 1305, 1306, 1318, 1307, 1191, 1319, 1320, 1321, 1308, 1309, - 1310, 1322, 1311, 1323, 1312, 1313, 1324, 1314, 1315, 1325, - 1326, 1327, 1328, 1329, 1974, 1332, 1333, 1316, 1334, 1331, - 1317, 1335, 1336, 1318, 1337, 1338, 1319, 1320, 1321, 1339, - 1340, 1341, 1322, 1342, 1323, 1343, 1344, 1324, 1345, 369, - 1325, 1326, 1327, 1328, 1329, 369, 1332, 1333, 1346, 1334, - - 1331, 1347, 1335, 1336, 1348, 1337, 1338, 1349, 1350, 1351, - 1339, 1340, 1341, 1352, 1342, 1353, 1343, 1344, 1354, 1345, - 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1346, - 1364, 1365, 1347, 1366, 1367, 1348, 1368, 1369, 1349, 1350, - 1351, 1370, 1371, 1372, 1352, 1373, 1353, 1374, 1375, 1354, - 1376, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, - 1377, 1364, 1365, 1378, 1366, 1367, 1379, 1368, 1369, 1380, - 1382, 1383, 1370, 1371, 1372, 1384, 1373, 1381, 1374, 1375, - 1385, 1376, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, - 1394, 1377, 1395, 1396, 1378, 1397, 1398, 1379, 1399, 1400, - - 1380, 1382, 1383, 1401, 1402, 1403, 1384, 1404, 1381, 1405, - 1406, 1385, 1407, 1386, 1387, 1388, 1389, 1390, 1391, 1392, - 1393, 1394, 1408, 1395, 1396, 1409, 1397, 1398, 1410, 1399, - 1400, 1411, 1412, 1413, 1401, 1402, 1403, 1414, 1404, 1415, - 1405, 1406, 1416, 1407, 1418, 1419, 1420, 1421, 1422, 1423, - 1424, 1425, 1426, 1408, 1427, 1428, 1409, 1429, 1430, 1410, - 1431, 1432, 1411, 1412, 1413, 1433, 1434, 1435, 1414, 1436, - 1415, 1437, 1438, 1416, 1439, 1418, 1419, 1420, 1421, 1422, - 1423, 1424, 1425, 1426, 1440, 1427, 1428, 1441, 1429, 1430, - 1442, 1431, 1432, 1443, 1444, 1445, 1433, 1434, 1435, 1448, - - 1436, 1446, 1437, 1438, 1449, 1439, 1450, 1451, 1452, 1453, - 1454, 1455, 1456, 1457, 1458, 1440, 1459, 1447, 1441, 1460, - 1461, 1442, 1462, 1463, 1443, 1444, 1445, 1464, 1465, 1466, - 1448, 1467, 1446, 1468, 1469, 1449, 1470, 1450, 1451, 1452, - 1453, 1454, 1455, 1456, 1457, 1458, 1471, 1459, 1447, 1472, - 1460, 1461, 1473, 1462, 1463, 1474, 1475, 1476, 1464, 1465, - 1466, 1477, 1467, 1478, 1468, 1469, 1479, 1470, 1480, 1481, - 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1471, 1489, 1490, - 1472, 1491, 1492, 1473, 1493, 1494, 1474, 1475, 1476, 1495, - 1497, 1496, 1477, 1499, 1478, 1500, 1501, 1479, 1502, 1480, - - 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1503, 1489, - 1490, 1504, 1491, 1492, 369, 1493, 1494, 369, 1505, 1506, - 1495, 1497, 1496, 1507, 1499, 1508, 1500, 1501, 1509, 1502, - 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1503, - 1519, 1520, 1504, 1521, 1522, 1523, 1524, 1525, 1526, 1505, - 1506, 1527, 1528, 1529, 1507, 1530, 1508, 1531, 1532, 1509, - 1533, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, - 1534, 1519, 1520, 1535, 1521, 1522, 1523, 1524, 1525, 1526, - 1536, 1537, 1527, 1528, 1529, 1538, 1530, 1539, 1531, 1532, - 1540, 1533, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, - - 1549, 1534, 1550, 1551, 1535, 1552, 1553, 1554, 1555, 1556, - 1557, 1536, 1537, 1558, 1559, 1560, 1538, 1561, 1539, 1562, - 1563, 1540, 1564, 1541, 1542, 1543, 1544, 1545, 1546, 1547, - 1548, 1549, 1565, 1550, 1551, 1566, 1552, 1553, 1554, 1555, - 1556, 1557, 1567, 1568, 1558, 1559, 1560, 1569, 1561, 1570, - 1562, 1563, 1571, 1564, 1574, 1572, 1575, 1576, 1577, 1578, - 1579, 1580, 1581, 1565, 1582, 1583, 1566, 1584, 1585, 1586, - 1587, 1588, 1589, 1567, 1568, 1573, 1590, 1591, 1569, 1592, - 1570, 1593, 1594, 1571, 1595, 1574, 1572, 1575, 1576, 1577, - 1578, 1579, 1580, 1581, 1596, 1582, 1583, 1597, 1584, 1585, - - 1586, 1587, 1588, 1589, 1598, 1599, 1573, 1590, 1591, 1600, - 1592, 1603, 1593, 1594, 1601, 1595, 1602, 1604, 1605, 1606, - 1607, 1608, 1609, 1610, 1611, 1596, 1612, 1613, 1597, 1614, - 1615, 1616, 1617, 1618, 1619, 1598, 1599, 1620, 1621, 1622, - 1600, 1623, 1603, 1624, 1625, 1601, 1626, 1602, 1604, 1605, - 1606, 1607, 1608, 1609, 1610, 1611, 1627, 1612, 1613, 1628, - 1614, 1615, 1616, 1617, 1618, 1619, 1629, 1630, 1620, 1621, - 1622, 1631, 1623, 1632, 1624, 1625, 1633, 1626, 1634, 1635, - 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1627, 1643, 1644, - 1628, 1645, 1646, 1647, 1648, 1649, 1650, 1629, 1630, 1651, - - 369, 1652, 1631, 1653, 1632, 1654, 369, 1633, 1655, 1634, - 1635, 1636, 1637, 1638, 1639, 1640, 1641, 1642, 1656, 1643, - 1644, 1657, 1645, 1646, 1647, 1648, 1649, 1650, 1658, 1659, - 1651, 1660, 1652, 1661, 1653, 1662, 1654, 1663, 1664, 1655, - 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, 1656, - 1674, 1675, 1657, 1676, 1677, 1678, 1679, 1680, 1681, 1658, - 1659, 1682, 1660, 1683, 1661, 1684, 1662, 1685, 1663, 1664, - 1686, 1665, 1666, 1667, 1668, 1669, 1670, 1671, 1672, 1673, - 1687, 1674, 1675, 1688, 1676, 1677, 1678, 1679, 1680, 1681, - 1689, 1690, 1682, 1691, 1683, 1692, 1684, 1693, 1685, 1694, - - 1695, 1686, 1696, 1697, 1698, 1699, 1700, 1701, 1702, 1703, - 1704, 1687, 1705, 1706, 1688, 1707, 1708, 1709, 1710, 1711, - 1712, 1689, 1690, 1713, 1691, 1714, 1692, 1715, 1693, 1716, - 1694, 1695, 1717, 1696, 1697, 1698, 1699, 1700, 1701, 1702, - 1703, 1704, 1718, 1705, 1706, 1719, 1707, 1708, 1709, 1710, - 1711, 1712, 1720, 1721, 1713, 1722, 1714, 1723, 1715, 1724, - 1716, 1725, 1726, 1717, 1727, 1728, 1729, 1730, 1731, 1732, - 1733, 1734, 1735, 1718, 1736, 1737, 1719, 1738, 1739, 1740, - 1741, 1742, 1743, 1720, 1721, 1744, 1722, 1745, 1723, 1746, - 1724, 1747, 1725, 1726, 1750, 1727, 1728, 1729, 1730, 1731, - - 1732, 1733, 1734, 1735, 1748, 1736, 1737, 1749, 1738, 1739, - 1740, 1741, 1742, 1743, 1751, 1752, 1744, 1753, 1745, 1754, - 1746, 369, 1747, 1755, 369, 1750, 1756, 1757, 1758, 1759, - 1760, 1761, 1762, 1763, 1764, 1748, 1765, 1766, 1749, 1767, - 1768, 1769, 1770, 1771, 1772, 1751, 1752, 1773, 1753, 1774, - 1754, 1775, 1776, 1777, 1755, 1778, 1779, 1756, 1757, 1758, - 1759, 1760, 1761, 1762, 1763, 1764, 1780, 1765, 1766, 1781, - 1767, 1768, 1769, 1770, 1771, 1772, 1782, 1783, 1773, 1784, - 1774, 1785, 1775, 1776, 1777, 1786, 1778, 1779, 1787, 1788, - 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1780, 1796, 1797, - - 1781, 1798, 1799, 1800, 1801, 1802, 1803, 1782, 1783, 1804, - 1784, 1805, 1785, 1806, 1807, 1808, 1786, 1809, 1810, 1787, - 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1811, 1796, - 1797, 1812, 1798, 1799, 1800, 1801, 1802, 1803, 1813, 1814, - 1804, 1815, 1805, 1816, 1806, 1807, 1808, 1817, 1809, 1810, - 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1811, - 1827, 1828, 1812, 1829, 1830, 1831, 1833, 1834, 1835, 1813, - 1814, 1836, 1815, 1832, 1816, 1837, 369, 1839, 1817, 1840, - 1838, 1818, 1819, 1820, 1821, 1822, 1823, 1824, 1825, 1826, - 369, 1827, 1828, 1841, 1829, 1830, 1831, 1833, 1834, 1835, - - 1842, 1843, 1836, 1844, 1832, 1845, 1837, 1846, 1839, 1847, - 1840, 1838, 1848, 1849, 1850, 1851, 1852, 1853, 1854, 1855, - 1856, 1857, 1858, 1859, 1841, 1860, 1861, 1862, 1863, 1864, - 1865, 1842, 1843, 1866, 1844, 1867, 1845, 1868, 1846, 1869, - 1847, 1870, 1871, 1848, 1849, 1850, 1851, 1852, 1853, 1854, - 1855, 1856, 1857, 1858, 1859, 1872, 1860, 1861, 1862, 1863, - 1864, 1865, 1873, 1874, 1866, 1875, 1867, 1876, 1868, 1877, - 1869, 1878, 1870, 1871, 1879, 1880, 1881, 1882, 1838, 1883, - 1885, 1884, 1886, 1887, 1888, 1889, 1872, 1890, 1891, 369, - 1892, 1893, 1894, 1873, 1874, 1895, 1875, 1896, 1876, 1897, - - 1877, 369, 1878, 1898, 1899, 1879, 1880, 1881, 1882, 1838, - 1883, 1885, 1884, 1886, 1887, 1888, 1889, 1900, 1890, 1891, - 1901, 1892, 1893, 1894, 1902, 1903, 1895, 1904, 1896, 1905, - 1897, 1906, 1907, 1908, 1898, 1899, 1909, 1910, 1911, 1912, - 1913, 1914, 1917, 1916, 1918, 1915, 369, 1919, 1900, 1920, - 1921, 1901, 1922, 1923, 1924, 1902, 1903, 1925, 1904, 1926, - 1905, 1927, 1906, 1907, 1908, 369, 1928, 1909, 1910, 1911, - 1912, 1913, 1914, 1917, 1916, 1918, 1915, 1929, 1919, 1930, - 1920, 1921, 1931, 1922, 1923, 1924, 1932, 1933, 1925, 1934, - 1926, 1935, 1927, 1936, 1937, 1938, 1939, 1928, 1941, 369, - - 1942, 1943, 1944, 1945, 1940, 1946, 1947, 1948, 1929, 1949, - 1930, 1950, 1951, 1931, 1952, 1953, 1974, 1932, 1933, 1956, - 1934, 1957, 1935, 1954, 1936, 1937, 1938, 1939, 369, 1941, - 1958, 1942, 1943, 1944, 1945, 1940, 1946, 1947, 1948, 1959, - 1949, 1960, 1950, 1951, 1961, 1952, 1953, 369, 1962, 1963, - 1956, 1965, 1957, 1966, 1954, 1967, 1968, 1969, 1970, 1971, - 1972, 1958, 1973, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1959, 1974, 1960, 1974, 1974, 1961, 1974, 1974, 1974, 1962, - 1963, 1974, 1965, 1974, 1966, 1974, 1967, 1968, 1969, 1970, - 1971, 1972, 1974, 1973, 16, 16, 16, 16, 16, 16, - - 16, 16, 16, 16, 128, 128, 128, 128, 128, 128, - 128, 128, 128, 128, 132, 132, 132, 132, 132, 132, - 132, 132, 132, 132, 136, 136, 136, 136, 136, 136, - 136, 136, 136, 136, 140, 1974, 140, 140, 140, 140, - 140, 140, 140, 140, 141, 1974, 141, 141, 141, 141, - 141, 141, 141, 141, 145, 145, 150, 150, 150, 150, - 150, 150, 150, 150, 150, 150, 257, 257, 257, 257, - 257, 257, 257, 257, 257, 257, 259, 1974, 259, 259, - 259, 259, 259, 259, 259, 259, 279, 1974, 279, 365, - 365, 365, 365, 365, 365, 365, 365, 365, 365, 370, - - 370, 370, 370, 370, 370, 370, 370, 370, 370, 374, - 374, 374, 374, 374, 374, 374, 374, 374, 374, 376, - 376, 376, 376, 376, 376, 376, 376, 376, 376, 377, - 377, 377, 1974, 1974, 377, 377, 377, 1974, 377, 381, - 1974, 381, 381, 381, 1974, 381, 381, 381, 381, 388, - 388, 388, 388, 388, 388, 388, 388, 388, 388, 390, - 390, 390, 390, 390, 390, 390, 390, 390, 390, 393, - 393, 393, 393, 393, 393, 393, 393, 393, 393, 568, - 1974, 1974, 1974, 568, 568, 1974, 568, 594, 594, 594, - 1974, 594, 594, 594, 594, 594, 594, 596, 596, 596, - - 596, 1974, 596, 596, 596, 596, 596, 640, 640, 640, - 640, 640, 640, 640, 640, 640, 640, 392, 392, 392, - 392, 392, 392, 392, 392, 392, 392, 646, 1974, 646, - 646, 646, 646, 646, 646, 646, 646, 140, 1974, 140, - 140, 140, 140, 140, 140, 140, 140, 15, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974 + 18, 19, 20, 19, 19, 18, 21, 22, 18, 21, + 23, 18, 18, 18, 24, 25, 26, 27, 27, 18, + 18, 18, 18, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 51, 51, 52, + 18, 18, 18, 18, 28, 29, 30, 31, 32, 33, + 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, 48, 49, 50, 51, 51, 51, + 53, 18, 18, 18, 18, 18, 54, 18, 55, 56, + 131, 202, 131, 131, 131, 132, 131, 131, 133, 132, + + 139, 57, 133, 135, 139, 135, 136, 1988, 136, 58, + 140, 59, 60, 61, 140, 1979, 146, 62, 146, 146, + 63, 64, 202, 230, 65, 66, 67, 68, 69, 70, + 150, 71, 151, 151, 269, 72, 153, 153, 57, 1521, + 58, 203, 59, 60, 61, 204, 154, 137, 62, 137, + 270, 63, 64, 271, 230, 65, 66, 67, 68, 69, + 70, 161, 71, 162, 1440, 269, 159, 56, 151, 151, + 163, 920, 203, 56, 55, 56, 204, 154, 160, 400, + 146, 270, 146, 146, 271, 177, 378, 57, 178, 179, + 379, 216, 161, 662, 162, 58, 195, 59, 60, 61, + + 196, 163, 180, 62, 197, 217, 63, 64, 272, 160, + 65, 66, 67, 68, 69, 70, 177, 71, 273, 178, + 179, 72, 216, 276, 57, 277, 58, 195, 59, 60, + 61, 196, 609, 180, 62, 197, 217, 63, 64, 272, + 607, 65, 66, 67, 68, 69, 70, 581, 71, 273, + 653, 777, 379, 56, 276, 146, 277, 146, 146, 56, + 18, 19, 55, 73, 19, 18, 21, 18, 18, 21, + 23, 18, 18, 18, 24, 25, 74, 27, 27, 18, + 18, 18, 18, 75, 76, 77, 78, 79, 80, 81, + 82, 83, 51, 84, 85, 86, 87, 88, 89, 51, + + 90, 91, 92, 93, 51, 94, 51, 51, 51, 18, + 18, 18, 18, 18, 75, 76, 77, 78, 79, 80, + 81, 82, 83, 51, 84, 85, 86, 87, 88, 89, + 51, 90, 91, 92, 93, 51, 94, 51, 51, 51, + 53, 56, 18, 18, 18, 18, 18, 56, 95, 96, + 55, 97, 96, 98, 99, 95, 100, 101, 95, 95, + 95, 95, 102, 103, 95, 104, 104, 95, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 95, 115, + 116, 95, 117, 95, 118, 119, 95, 95, 120, 121, + 122, 123, 95, 124, 95, 95, 95, 125, 95, 95, + + 95, 126, 108, 109, 110, 111, 112, 113, 114, 95, + 115, 116, 95, 117, 95, 118, 119, 95, 95, 120, + 121, 122, 123, 95, 124, 95, 95, 95, 95, 127, + 95, 128, 95, 95, 95, 129, 18, 19, 20, 19, + 19, 18, 21, 22, 18, 21, 18, 18, 18, 18, + 18, 51, 141, 18, 18, 18, 18, 18, 18, 51, + 51, 142, 51, 143, 51, 51, 51, 51, 51, 51, + 51, 144, 51, 51, 145, 51, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 18, 18, 18, 18, 18, + 51, 51, 142, 51, 143, 51, 51, 51, 51, 51, + + 51, 51, 144, 51, 51, 145, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 51, 18, 18, 18, 18, + 18, 18, 18, 18, 155, 155, 155, 155, 155, 155, + 155, 155, 155, 155, 155, 155, 156, 155, 198, 278, + 158, 164, 401, 155, 155, 165, 155, 199, 200, 166, + 181, 182, 183, 256, 201, 274, 184, 257, 167, 275, + 279, 168, 185, 283, 284, 285, 287, 287, 290, 198, + 278, 382, 164, 155, 155, 155, 165, 155, 199, 200, + 166, 181, 182, 183, 256, 201, 274, 184, 257, 167, + 275, 279, 168, 185, 283, 284, 285, 382, 387, 290, + + 288, 387, 295, 296, 155, 155, 155, 155, 155, 155, + 155, 155, 169, 297, 170, 186, 196, 171, 172, 187, + 308, 173, 191, 188, 174, 350, 192, 175, 176, 189, + 193, 356, 190, 295, 296, 146, 303, 146, 146, 194, + 204, 379, 387, 169, 297, 170, 186, 196, 171, 172, + 187, 308, 173, 191, 188, 174, 350, 192, 175, 176, + 189, 193, 356, 190, 205, 211, 206, 303, 207, 212, + 194, 204, 208, 213, 337, 209, 218, 219, 659, 659, + 260, 210, 261, 338, 220, 214, 221, 376, 222, 215, + 609, 223, 191, 399, 399, 205, 211, 206, 607, 207, + + 212, 306, 581, 208, 213, 307, 209, 218, 219, 300, + 224, 260, 210, 261, 225, 220, 214, 221, 226, 222, + 215, 227, 223, 191, 228, 231, 161, 229, 289, 232, + 357, 365, 306, 233, 293, 163, 307, 178, 294, 234, + 300, 224, 399, 399, 330, 225, 331, 331, 146, 226, + 146, 146, 227, 370, 560, 228, 231, 161, 229, 289, + 232, 357, 365, 250, 233, 293, 163, 371, 178, 294, + 234, 235, 251, 236, 252, 244, 237, 238, 253, 245, + 254, 239, 255, 246, 370, 240, 332, 332, 241, 247, + 242, 267, 248, 243, 250, 267, 333, 872, 371, 249, + + 410, 410, 235, 251, 236, 252, 244, 237, 238, 253, + 245, 254, 239, 255, 246, 265, 240, 385, 342, 241, + 247, 242, 280, 248, 243, 258, 259, 333, 281, 260, + 249, 261, 316, 262, 343, 386, 233, 391, 263, 282, + 410, 410, 607, 334, 401, 331, 331, 149, 385, 342, + 611, 611, 653, 280, 379, 335, 258, 259, 392, 281, + 260, 149, 261, 316, 262, 343, 386, 233, 391, 263, + 282, 155, 155, 155, 155, 155, 155, 155, 155, 155, + 155, 155, 155, 1998, 155, 169, 335, 170, 186, 392, + 155, 155, 187, 155, 291, 393, 298, 292, 301, 302, + + 175, 390, 299, 304, 389, 201, 340, 305, 394, 382, + 341, 152, 146, 411, 146, 146, 169, 382, 170, 186, + 155, 155, 155, 187, 155, 291, 393, 298, 292, 301, + 302, 175, 312, 299, 304, 309, 201, 340, 305, 394, + 313, 341, 152, 310, 411, 221, 314, 317, 318, 315, + 311, 155, 155, 155, 155, 155, 155, 155, 155, 319, + 344, 325, 380, 312, 320, 362, 309, 152, 347, 152, + 345, 313, 348, 346, 310, 339, 221, 314, 317, 318, + 315, 311, 368, 321, 416, 369, 349, 322, 336, 351, + 319, 344, 325, 323, 354, 320, 324, 352, 152, 347, + + 152, 345, 326, 348, 346, 329, 353, 419, 422, 355, + 425, 358, 361, 368, 321, 416, 369, 349, 322, 362, + 351, 359, 363, 364, 323, 354, 360, 324, 352, 872, + 366, 611, 611, 326, 367, 395, 395, 353, 419, 422, + 355, 425, 358, 361, 328, 396, 159, 373, 151, 151, + 362, 327, 359, 363, 364, 326, 374, 360, 160, 153, + 153, 366, 375, 397, 398, 367, 426, 399, 399, 154, + 268, 609, 376, 267, 407, 407, 396, 265, 373, 615, + 615, 409, 409, 149, 408, 410, 410, 374, 417, 160, + 615, 615, 653, 375, 910, 427, 428, 426, 1998, 418, + + 154, 400, 400, 400, 400, 400, 400, 400, 400, 400, + 400, 400, 400, 400, 400, 408, 429, 403, 412, 417, + 400, 400, 413, 400, 423, 420, 427, 428, 433, 414, + 418, 421, 430, 431, 432, 415, 434, 435, 424, 437, + 438, 436, 441, 442, 443, 446, 449, 429, 454, 412, + 400, 400, 400, 413, 400, 423, 420, 659, 659, 433, + 414, 1998, 421, 430, 431, 432, 415, 434, 435, 424, + 437, 438, 436, 441, 442, 443, 446, 449, 1998, 454, + 1998, 400, 400, 400, 400, 400, 400, 400, 400, 404, + 404, 400, 404, 404, 404, 404, 404, 404, 404, 404, + + 404, 404, 404, 439, 455, 406, 444, 1998, 404, 404, + 445, 404, 447, 456, 457, 458, 448, 440, 450, 461, + 451, 452, 462, 459, 453, 463, 464, 465, 470, 460, + 665, 665, 471, 474, 439, 455, 1998, 444, 404, 404, + 404, 445, 404, 447, 456, 457, 458, 448, 440, 450, + 461, 451, 452, 462, 459, 453, 463, 464, 465, 470, + 460, 466, 467, 471, 474, 475, 482, 468, 493, 404, + 404, 404, 404, 404, 404, 404, 404, 472, 469, 1998, + 479, 476, 494, 477, 473, 480, 481, 483, 478, 484, + 485, 487, 466, 467, 499, 486, 475, 482, 468, 493, + + 1998, 497, 489, 490, 491, 498, 500, 488, 472, 469, + 492, 479, 476, 494, 477, 473, 480, 481, 483, 478, + 484, 485, 487, 495, 501, 499, 486, 502, 503, 504, + 507, 496, 497, 489, 490, 491, 498, 500, 488, 508, + 505, 492, 506, 509, 513, 515, 510, 516, 524, 511, + 514, 525, 517, 1998, 495, 501, 512, 526, 502, 503, + 504, 507, 496, 665, 665, 527, 1998, 528, 532, 533, + 508, 505, 536, 506, 509, 513, 515, 510, 516, 524, + 511, 514, 525, 517, 518, 519, 534, 512, 526, 537, + 520, 529, 530, 538, 521, 522, 527, 523, 528, 532, + + 533, 539, 544, 536, 531, 541, 548, 542, 549, 550, + 535, 545, 540, 543, 551, 518, 519, 534, 552, 546, + 537, 520, 529, 530, 538, 521, 522, 553, 523, 554, + 555, 547, 539, 544, 556, 531, 541, 548, 542, 549, + 550, 535, 545, 540, 543, 551, 557, 558, 559, 552, + 546, 561, 562, 563, 564, 565, 568, 566, 553, 569, + 554, 555, 547, 570, 571, 556, 574, 575, 572, 576, + 577, 578, 579, 287, 287, 874, 874, 557, 558, 559, + 567, 573, 561, 562, 563, 564, 565, 568, 566, 417, + 569, 582, 585, 586, 570, 571, 439, 574, 575, 572, + + 576, 577, 578, 579, 442, 444, 413, 288, 583, 587, + 584, 567, 573, 414, 588, 450, 460, 589, 452, 415, + 417, 590, 582, 585, 586, 591, 592, 439, 593, 480, + 594, 468, 489, 496, 595, 442, 444, 413, 596, 583, + 587, 584, 469, 506, 414, 588, 450, 460, 589, 452, + 415, 597, 590, 514, 522, 600, 591, 592, 598, 593, + 480, 594, 468, 489, 496, 595, 601, 534, 599, 596, + 602, 541, 603, 469, 506, 544, 604, 605, 328, 543, + 332, 332, 597, 540, 514, 522, 600, 874, 874, 598, + 333, 1998, 334, 1998, 331, 331, 1998, 601, 534, 599, + + 616, 602, 541, 603, 335, 617, 544, 604, 605, 328, + 543, 618, 332, 332, 540, 610, 610, 612, 612, 611, + 611, 333, 333, 619, 614, 614, 622, 613, 615, 615, + 623, 616, 620, 621, 624, 335, 617, 626, 627, 628, + 629, 630, 618, 631, 632, 635, 636, 625, 637, 633, + 638, 639, 640, 333, 619, 634, 641, 622, 613, 642, + 643, 623, 646, 620, 621, 624, 647, 648, 626, 627, + 628, 629, 630, 649, 631, 632, 635, 636, 625, 637, + 633, 638, 639, 640, 650, 651, 634, 641, 655, 657, + 642, 643, 644, 646, 645, 397, 397, 647, 648, 659, + + 659, 376, 376, 1146, 649, 1998, 376, 376, 1351, 658, + 442, 1998, 376, 660, 1998, 650, 651, 1998, 661, 655, + 657, 1998, 1998, 644, 666, 645, 147, 147, 656, 147, + 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, + 658, 442, 395, 395, 660, 147, 147, 667, 147, 661, + 407, 407, 396, 664, 664, 666, 668, 665, 665, 656, + 408, 669, 670, 671, 672, 673, 674, 675, 676, 677, + 678, 679, 680, 681, 682, 147, 147, 147, 667, 147, + 873, 873, 1998, 396, 874, 874, 1998, 668, 1998, 1998, + 1998, 408, 669, 670, 671, 672, 673, 674, 675, 676, + + 677, 678, 679, 680, 681, 682, 147, 147, 147, 147, + 147, 147, 147, 147, 400, 400, 400, 400, 400, 400, + 400, 400, 400, 400, 400, 400, 400, 400, 683, 684, + 403, 685, 1998, 400, 400, 686, 400, 687, 690, 691, + 692, 694, 695, 696, 697, 688, 698, 699, 700, 701, + 702, 689, 703, 704, 707, 708, 709, 693, 712, 683, + 684, 713, 685, 400, 400, 400, 686, 400, 687, 690, + 691, 692, 694, 695, 696, 697, 688, 698, 699, 700, + 701, 702, 689, 703, 704, 707, 708, 709, 693, 712, + 1998, 1998, 713, 1998, 400, 400, 400, 400, 400, 400, + + 400, 400, 404, 404, 400, 404, 404, 404, 404, 404, + 404, 404, 404, 404, 404, 404, 710, 705, 406, 714, + 1998, 404, 404, 715, 404, 706, 711, 716, 717, 718, + 719, 720, 721, 722, 724, 725, 726, 723, 727, 728, + 729, 732, 733, 734, 735, 736, 737, 710, 705, 738, + 714, 404, 404, 404, 715, 404, 706, 711, 716, 717, + 718, 719, 720, 721, 722, 724, 725, 726, 723, 727, + 728, 729, 732, 733, 734, 735, 736, 737, 1998, 1998, + 738, 1998, 404, 404, 404, 404, 404, 404, 404, 404, + 147, 147, 739, 147, 147, 147, 147, 147, 147, 147, + + 147, 147, 147, 147, 730, 740, 741, 742, 1998, 147, + 147, 754, 147, 755, 731, 757, 758, 756, 769, 770, + 771, 663, 772, 739, 773, 774, 775, 776, 778, 779, + 780, 782, 783, 784, 781, 730, 740, 741, 742, 147, + 147, 147, 754, 147, 755, 731, 757, 758, 756, 769, + 770, 771, 663, 772, 787, 773, 774, 775, 776, 778, + 779, 780, 782, 783, 784, 781, 1998, 788, 793, 1998, + 147, 147, 147, 147, 147, 147, 147, 147, 743, 744, + 785, 745, 791, 746, 747, 787, 748, 1998, 786, 749, + 796, 1998, 750, 792, 789, 797, 751, 752, 788, 793, + + 753, 1998, 1998, 798, 1998, 799, 1998, 1998, 800, 743, + 744, 785, 745, 791, 746, 747, 801, 748, 790, 786, + 749, 796, 794, 750, 792, 789, 797, 751, 752, 795, + 802, 753, 759, 760, 798, 761, 799, 762, 763, 800, + 764, 803, 804, 765, 805, 806, 807, 801, 808, 790, + 766, 767, 811, 794, 768, 809, 812, 813, 814, 815, + 795, 802, 816, 759, 760, 817, 761, 810, 762, 763, + 818, 764, 803, 804, 765, 805, 806, 807, 819, 808, + 820, 766, 767, 811, 821, 768, 809, 812, 813, 814, + 815, 822, 823, 816, 824, 825, 817, 826, 810, 827, + + 828, 818, 829, 830, 834, 832, 835, 837, 831, 819, + 833, 820, 838, 839, 840, 821, 841, 842, 836, 843, + 844, 845, 822, 823, 846, 824, 825, 847, 826, 848, + 827, 828, 849, 829, 830, 834, 832, 835, 837, 831, + 850, 833, 851, 838, 839, 840, 852, 841, 842, 836, + 843, 844, 845, 853, 854, 846, 855, 856, 847, 857, + 848, 858, 859, 849, 860, 692, 861, 706, 862, 863, + 722, 850, 730, 851, 865, 756, 866, 852, 780, 785, + 867, 791, 864, 809, 853, 854, 868, 855, 856, 869, + 857, 870, 858, 859, 871, 860, 692, 861, 706, 862, + + 863, 722, 831, 730, 875, 865, 756, 866, 876, 780, + 785, 867, 791, 864, 809, 877, 878, 868, 612, 612, + 869, 879, 870, 880, 881, 871, 882, 883, 613, 884, + 885, 886, 887, 831, 888, 875, 889, 890, 891, 876, + 892, 893, 894, 895, 896, 897, 877, 878, 898, 899, + 900, 901, 879, 902, 880, 881, 903, 882, 883, 613, + 884, 885, 886, 887, 904, 888, 905, 889, 890, 891, + 906, 892, 893, 894, 895, 896, 897, 907, 908, 898, + 899, 900, 901, 909, 902, 654, 376, 903, 911, 912, + 913, 376, 914, 654, 915, 904, 916, 905, 917, 918, + + 919, 906, 921, 922, 923, 924, 925, 926, 907, 908, + 927, 376, 928, 929, 909, 931, 654, 932, 933, 911, + 912, 913, 934, 914, 654, 915, 937, 916, 938, 917, + 918, 919, 930, 921, 922, 923, 924, 925, 926, 939, + 942, 927, 935, 928, 929, 940, 931, 941, 932, 933, + 943, 936, 944, 934, 945, 946, 947, 937, 948, 938, + 949, 950, 951, 930, 952, 953, 954, 955, 956, 957, + 939, 942, 958, 935, 959, 960, 940, 961, 941, 962, + 963, 943, 936, 944, 964, 945, 946, 947, 965, 948, + 966, 949, 950, 951, 967, 952, 953, 954, 955, 956, + + 957, 968, 969, 958, 970, 959, 960, 971, 961, 972, + 962, 963, 973, 974, 975, 964, 976, 977, 978, 965, + 979, 966, 981, 982, 983, 967, 984, 980, 985, 986, + 987, 990, 968, 969, 988, 970, 991, 992, 971, 993, + 972, 989, 994, 973, 974, 975, 995, 976, 977, 978, + 996, 979, 997, 981, 982, 983, 998, 984, 980, 985, + 986, 987, 990, 1002, 1003, 988, 1004, 991, 992, 1005, + 993, 1006, 989, 994, 999, 1007, 1008, 995, 1009, 1010, + 1000, 996, 1011, 997, 1012, 1013, 1014, 998, 1015, 1019, + 1016, 1020, 1001, 1021, 1002, 1003, 1017, 1004, 1022, 1023, + + 1005, 1024, 1006, 1025, 1028, 999, 1007, 1008, 1018, 1009, + 1010, 1000, 1029, 1011, 1026, 1012, 1013, 1014, 1027, 1015, + 1019, 1016, 1020, 1001, 1021, 1030, 1031, 1017, 1032, 1022, + 1023, 1033, 1024, 1034, 1025, 1028, 1035, 1036, 1037, 1018, + 1038, 1039, 1040, 1029, 1041, 1026, 1042, 1043, 1045, 1027, + 1046, 1047, 1044, 1048, 1049, 1050, 1030, 1031, 1051, 1032, + 1052, 1053, 1033, 1054, 1034, 1055, 1056, 1035, 1036, 1037, + 1057, 1038, 1039, 1040, 1058, 1041, 1059, 1042, 1043, 1045, + 1060, 1046, 1047, 1044, 1048, 1049, 1050, 1061, 1062, 1051, + 1063, 1052, 1053, 1064, 1054, 1065, 1055, 1056, 1066, 1067, + + 1068, 1057, 1069, 1070, 1071, 1058, 1072, 1059, 1076, 1077, + 1073, 1060, 1074, 1078, 1079, 1080, 1081, 1082, 1061, 1062, + 1083, 1063, 1075, 1084, 1064, 1085, 1065, 1086, 1087, 1066, + 1067, 1068, 1088, 1069, 1070, 1071, 1089, 1072, 1090, 1076, + 1077, 1073, 1091, 1074, 1078, 1079, 1080, 1081, 1082, 1092, + 1093, 1083, 1094, 1075, 1084, 1095, 1085, 1096, 1086, 1087, + 1097, 1098, 1099, 1088, 1100, 1101, 1102, 1089, 1103, 1090, + 1104, 1105, 1106, 1091, 1107, 1108, 1109, 1110, 979, 1111, + 1092, 1093, 1026, 1094, 1112, 1113, 1095, 1114, 1096, 1115, + 1116, 1097, 1098, 1099, 1117, 1100, 1101, 1102, 1118, 1103, + + 1119, 1104, 1105, 1106, 1120, 1107, 1108, 1109, 1110, 979, + 1111, 1121, 1122, 1026, 1123, 1112, 1113, 1124, 1114, 1125, + 1115, 1116, 1126, 1127, 1128, 1117, 1129, 1130, 1131, 1118, + 1132, 1119, 1133, 1134, 1135, 1120, 1136, 1137, 1138, 1139, + 1140, 1141, 1121, 1122, 1142, 1123, 1143, 1144, 1124, 1147, + 1125, 1145, 1148, 1126, 1127, 1128, 1149, 1129, 1130, 1131, + 1150, 1132, 376, 1133, 1134, 1135, 1151, 1136, 1137, 1138, + 1139, 1140, 1141, 1152, 1153, 1142, 1154, 1143, 1144, 376, + 1147, 1155, 1145, 1148, 1156, 1157, 1158, 1149, 1159, 1160, + 1161, 1150, 1162, 1164, 1163, 1165, 1166, 1151, 1167, 1169, + + 1170, 1168, 1171, 1172, 1152, 1153, 1173, 1154, 1174, 1175, + 1176, 1177, 1155, 1178, 1179, 1156, 1157, 1158, 1182, 1159, + 1160, 1161, 1183, 1162, 1164, 1163, 1165, 1166, 1184, 1167, + 1169, 1170, 1168, 1171, 1172, 1180, 1181, 1173, 1185, 1174, + 1175, 1176, 1177, 1186, 1178, 1179, 1187, 1188, 1189, 1182, + 1190, 1191, 1192, 1183, 1193, 1194, 1199, 1200, 1201, 1184, + 1202, 1203, 1204, 1205, 1206, 1195, 1180, 1181, 1196, 1185, + 1207, 1998, 1197, 1198, 1186, 1213, 1214, 1187, 1188, 1189, + 1215, 1190, 1191, 1192, 1216, 1193, 1194, 1199, 1200, 1201, + 1217, 1202, 1203, 1204, 1205, 1206, 1195, 1218, 1219, 1196, + + 1220, 1207, 1208, 1197, 1198, 1209, 1213, 1214, 1210, 1221, + 1222, 1215, 1211, 1223, 1224, 1216, 1225, 1212, 1226, 1227, + 1228, 1217, 1229, 1230, 1231, 1232, 1233, 1234, 1218, 1219, + 1235, 1220, 1236, 1208, 1237, 1238, 1209, 1239, 1240, 1210, + 1221, 1222, 1241, 1211, 1223, 1224, 1242, 1225, 1212, 1226, + 1227, 1228, 1243, 1229, 1230, 1231, 1232, 1233, 1234, 1244, + 1245, 1235, 1246, 1236, 1247, 1237, 1238, 1248, 1239, 1240, + 1249, 1250, 1251, 1241, 1252, 1253, 1254, 1242, 1255, 1256, + 1257, 1258, 1259, 1243, 1260, 1261, 1262, 1263, 1264, 1265, + 1244, 1245, 1266, 1246, 1267, 1247, 1270, 1271, 1248, 1268, + + 1272, 1249, 1250, 1251, 1273, 1252, 1253, 1254, 1269, 1255, + 1256, 1257, 1258, 1259, 1274, 1260, 1261, 1262, 1263, 1264, + 1265, 1275, 1276, 1266, 1277, 1267, 1278, 1270, 1271, 1279, + 1268, 1272, 1280, 1281, 1282, 1273, 1283, 1287, 1284, 1269, + 1285, 1288, 1289, 1290, 1291, 1274, 1292, 1293, 1294, 1295, + 1296, 1297, 1275, 1276, 1298, 1277, 1286, 1278, 1301, 1302, + 1279, 1305, 1998, 1280, 1281, 1282, 1306, 1283, 1287, 1284, + 1299, 1285, 1288, 1289, 1290, 1291, 1300, 1292, 1293, 1294, + 1295, 1296, 1297, 1303, 1307, 1298, 1308, 1286, 1309, 1301, + 1302, 1310, 1305, 1304, 1311, 1312, 1313, 1306, 1314, 1315, + + 1317, 1299, 1318, 1319, 1320, 1321, 1322, 1300, 1323, 1162, + 1324, 1163, 1181, 1194, 1303, 1307, 1316, 1308, 1264, 1309, + 1325, 1326, 1310, 1210, 1304, 1311, 1312, 1313, 1327, 1314, + 1315, 1317, 1212, 1318, 1319, 1320, 1321, 1322, 1328, 1323, + 1162, 1324, 1163, 1181, 1194, 1329, 1330, 1316, 1331, 1264, + 1332, 1325, 1326, 1333, 1210, 1334, 1335, 1336, 1337, 1327, + 1338, 1339, 1340, 1212, 1341, 1342, 1343, 1344, 1345, 1328, + 1346, 1347, 1348, 1349, 1350, 1998, 1329, 1330, 1354, 1331, + 1352, 1332, 1355, 1353, 1333, 1356, 1334, 1335, 1336, 1337, + 1357, 1338, 1339, 1340, 1358, 1341, 1342, 1343, 1344, 1345, + + 1359, 1346, 1347, 1348, 1349, 1350, 376, 376, 1360, 1354, + 1361, 1352, 1362, 1355, 1353, 1363, 1356, 1364, 1365, 1366, + 1367, 1357, 1368, 1369, 1370, 1358, 1371, 1372, 1373, 1374, + 1375, 1359, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1360, + 1383, 1361, 1384, 1362, 1385, 1386, 1363, 1387, 1364, 1365, + 1366, 1367, 1388, 1368, 1369, 1370, 1389, 1371, 1372, 1373, + 1374, 1375, 1390, 1376, 1377, 1378, 1379, 1380, 1381, 1382, + 1391, 1383, 1392, 1384, 1393, 1385, 1386, 1394, 1387, 1395, + 1396, 1397, 1398, 1388, 1399, 1400, 1401, 1389, 1402, 1403, + 1405, 1406, 1407, 1390, 1408, 1409, 1410, 1404, 1411, 1412, + + 1413, 1391, 1414, 1392, 1415, 1393, 1416, 1417, 1394, 1418, + 1395, 1396, 1397, 1398, 1419, 1399, 1400, 1401, 1420, 1402, + 1403, 1405, 1406, 1407, 1421, 1408, 1409, 1410, 1404, 1411, + 1412, 1413, 1422, 1414, 1423, 1415, 1424, 1416, 1417, 1425, + 1418, 1426, 1427, 1428, 1429, 1419, 1430, 1431, 1432, 1420, + 1433, 1434, 1435, 1436, 1437, 1421, 1438, 1439, 1441, 1442, + 1443, 1444, 1445, 1422, 1446, 1423, 1447, 1424, 1448, 1449, + 1425, 1450, 1426, 1427, 1428, 1429, 1451, 1430, 1431, 1432, + 1452, 1433, 1434, 1435, 1436, 1437, 1453, 1438, 1439, 1441, + 1442, 1443, 1444, 1445, 1454, 1446, 1455, 1447, 1456, 1448, + + 1449, 1457, 1450, 1458, 1459, 1460, 1461, 1451, 1462, 1463, + 1464, 1452, 1465, 1466, 1467, 1468, 1471, 1453, 1472, 1473, + 1474, 1475, 1469, 1476, 1477, 1454, 1478, 1455, 1479, 1456, + 1480, 1481, 1457, 1482, 1458, 1459, 1460, 1461, 1470, 1462, + 1463, 1464, 1483, 1465, 1466, 1467, 1468, 1471, 1484, 1472, + 1473, 1474, 1475, 1469, 1476, 1477, 1485, 1478, 1486, 1479, + 1487, 1480, 1481, 1488, 1482, 1489, 1490, 1491, 1492, 1470, + 1493, 1494, 1495, 1483, 1496, 1497, 1498, 1499, 1500, 1484, + 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1485, 1508, 1486, + 1509, 1487, 1510, 1511, 1488, 1512, 1489, 1490, 1491, 1492, + + 1513, 1493, 1494, 1495, 1514, 1496, 1497, 1498, 1499, 1500, + 1515, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1516, 1508, + 1517, 1509, 1518, 1510, 1511, 1998, 1512, 1522, 1519, 1523, + 1524, 1513, 1520, 1525, 1526, 1514, 1527, 1528, 1529, 1530, + 1531, 1515, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1516, + 1539, 1517, 1540, 1518, 376, 1541, 376, 1542, 1522, 1519, + 1523, 1524, 1543, 1520, 1525, 1526, 1544, 1527, 1528, 1529, + 1530, 1531, 1545, 1532, 1533, 1534, 1535, 1536, 1537, 1538, + 1546, 1539, 1547, 1540, 1548, 1549, 1541, 1550, 1542, 1551, + 1552, 1553, 1554, 1543, 1555, 1556, 1557, 1544, 1558, 1559, + + 1560, 1561, 1562, 1545, 1563, 1564, 1565, 1566, 1567, 1568, + 1569, 1546, 1570, 1547, 1571, 1548, 1549, 1572, 1550, 1573, + 1551, 1552, 1553, 1554, 1574, 1555, 1556, 1557, 1575, 1558, + 1559, 1560, 1561, 1562, 1576, 1563, 1564, 1565, 1566, 1567, + 1568, 1569, 1577, 1570, 1578, 1571, 1579, 1580, 1572, 1581, + 1573, 1582, 1583, 1584, 1585, 1574, 1586, 1587, 1588, 1575, + 1589, 1590, 1591, 1592, 1593, 1576, 1594, 1595, 1598, 1599, + 1596, 1600, 1601, 1577, 1602, 1578, 1603, 1579, 1580, 1604, + 1581, 1605, 1582, 1583, 1584, 1585, 1606, 1586, 1587, 1588, + 1597, 1589, 1590, 1591, 1592, 1593, 1607, 1594, 1595, 1598, + + 1599, 1596, 1600, 1601, 1608, 1602, 1609, 1603, 1610, 1611, + 1604, 1612, 1605, 1613, 1614, 1615, 1616, 1606, 1617, 1618, + 1619, 1597, 1620, 1621, 1622, 1623, 1624, 1607, 1625, 1627, + 1626, 1628, 1629, 1630, 1631, 1608, 1632, 1609, 1633, 1610, + 1611, 1634, 1612, 1635, 1613, 1614, 1615, 1616, 1636, 1617, + 1618, 1619, 1637, 1620, 1621, 1622, 1623, 1624, 1638, 1625, + 1627, 1626, 1628, 1629, 1630, 1631, 1639, 1632, 1640, 1633, + 1641, 1642, 1634, 1643, 1635, 1644, 1645, 1646, 1647, 1636, + 1648, 1649, 1650, 1637, 1651, 1652, 1653, 1654, 1655, 1638, + 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1639, 1664, 1640, + + 1998, 1641, 1642, 1665, 1643, 1666, 1644, 1645, 1646, 1647, + 1667, 1648, 1649, 1650, 1663, 1651, 1652, 1653, 1654, 1655, + 376, 1656, 1657, 1658, 1659, 1660, 1661, 1662, 1668, 1664, + 1669, 376, 1670, 1671, 1665, 1672, 1666, 1673, 1674, 1675, + 1676, 1667, 1677, 1678, 1679, 1663, 1680, 1681, 1682, 1683, + 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, 1668, + 1693, 1669, 1694, 1670, 1671, 1695, 1672, 1696, 1673, 1674, + 1675, 1676, 1697, 1677, 1678, 1679, 1698, 1680, 1681, 1682, + 1683, 1684, 1685, 1686, 1687, 1688, 1689, 1690, 1691, 1692, + 1699, 1693, 1700, 1694, 1701, 1702, 1695, 1703, 1696, 1704, + + 1705, 1706, 1707, 1697, 1708, 1709, 1710, 1698, 1711, 1712, + 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, 1722, + 1723, 1699, 1724, 1700, 1725, 1701, 1702, 1726, 1703, 1727, + 1704, 1705, 1706, 1707, 1728, 1708, 1709, 1710, 1729, 1711, + 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, 1720, 1721, + 1722, 1723, 1730, 1724, 1731, 1725, 1732, 1733, 1726, 1734, + 1727, 1735, 1736, 1737, 1738, 1728, 1739, 1740, 1741, 1729, + 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, 1751, + 1752, 1753, 1754, 1730, 1755, 1731, 1756, 1732, 1733, 1757, + 1734, 1758, 1735, 1736, 1737, 1738, 1759, 1739, 1740, 1741, + + 1760, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, 1750, + 1751, 1752, 1753, 1754, 1761, 1755, 1762, 1756, 1763, 1764, + 1757, 1765, 1758, 1766, 1767, 1768, 1769, 1759, 1770, 1771, + 1774, 1760, 1775, 1776, 1772, 1777, 1773, 1778, 1779, 1780, + 1781, 1782, 1783, 1784, 1785, 1761, 1786, 1762, 1787, 1763, + 1764, 376, 1765, 376, 1766, 1767, 1768, 1769, 1788, 1770, + 1771, 1774, 1789, 1775, 1776, 1772, 1777, 1773, 1778, 1779, + 1780, 1781, 1782, 1783, 1784, 1785, 1790, 1786, 1791, 1787, + 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1788, + 1801, 1802, 1803, 1789, 1804, 1805, 1806, 1807, 1808, 1809, + + 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1790, 1817, 1791, + 1818, 1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, + 1819, 1801, 1802, 1803, 1820, 1804, 1805, 1806, 1807, 1808, + 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1821, 1817, + 1822, 1818, 1823, 1824, 1825, 1826, 1827, 1828, 1829, 1830, + 1831, 1819, 1832, 1833, 1834, 1820, 1835, 1836, 1837, 1838, + 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1821, + 1848, 1822, 1849, 1823, 1824, 1825, 1826, 1827, 1828, 1829, + 1830, 1831, 1850, 1832, 1833, 1834, 1851, 1835, 1836, 1837, + 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, + + 1852, 1848, 1853, 1849, 1854, 1855, 1856, 1858, 1857, 1859, + 1860, 1861, 1863, 1850, 1864, 1865, 1862, 1851, 376, 1866, + 1867, 1868, 1869, 376, 1870, 1871, 1872, 1873, 1874, 1875, + 1876, 1852, 1877, 1853, 1878, 1854, 1855, 1856, 1858, 1857, + 1859, 1860, 1861, 1863, 1879, 1864, 1865, 1862, 1880, 1881, + 1866, 1867, 1868, 1869, 1882, 1870, 1871, 1872, 1873, 1874, + 1875, 1876, 1883, 1877, 1884, 1878, 1885, 1886, 1887, 1888, + 1889, 1890, 1891, 1892, 1893, 1879, 1894, 1895, 1896, 1880, + 1881, 1897, 1898, 1899, 1900, 1882, 1901, 1902, 1903, 1904, + 1905, 1906, 1862, 1883, 1909, 1884, 1907, 1885, 1886, 1887, + + 1888, 1889, 1890, 1891, 1892, 1893, 376, 1894, 1895, 1896, + 1908, 1910, 1897, 1898, 1899, 1900, 1911, 1901, 1902, 1903, + 1904, 1905, 1906, 1862, 1912, 1909, 1913, 1907, 1914, 1915, + 376, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, + 1925, 1908, 1910, 1926, 1927, 1928, 1929, 1911, 1930, 1931, + 1932, 1933, 1934, 1935, 1936, 1912, 1937, 1913, 1938, 1914, + 1915, 1998, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, + 1924, 1925, 1939, 1941, 1926, 1927, 1928, 1929, 1942, 1930, + 1931, 1932, 1933, 1934, 1935, 1936, 1943, 1937, 1940, 1938, + 1944, 376, 376, 1945, 1946, 1947, 1948, 1949, 1950, 1951, + + 1952, 1953, 1954, 1939, 1941, 1955, 1956, 1957, 1958, 1942, + 1959, 1960, 1961, 1962, 1965, 1963, 1964, 1943, 376, 1940, + 1966, 1944, 1967, 1968, 1945, 1946, 1947, 1948, 1949, 1950, + 1951, 1952, 1953, 1954, 1969, 1970, 1955, 1956, 1957, 1958, + 376, 1959, 1960, 1961, 1962, 1965, 1963, 1964, 1971, 1972, + 1973, 1966, 1974, 1967, 1968, 1975, 1976, 1977, 1978, 1980, + 1981, 1982, 1983, 1984, 1985, 1969, 1970, 1986, 1987, 1989, + 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1971, + 1972, 1973, 376, 1974, 1998, 1998, 1975, 1976, 1977, 1978, + 1980, 1981, 1982, 1983, 1984, 1985, 1998, 1998, 1986, 1987, + + 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 18, + 18, 18, 18, 18, 18, 18, 18, 18, 18, 130, + 130, 130, 130, 130, 130, 130, 130, 130, 130, 134, + 134, 134, 134, 134, 134, 134, 134, 134, 134, 138, + 138, 138, 138, 138, 138, 138, 138, 138, 138, 147, + 1998, 147, 147, 147, 147, 147, 147, 147, 147, 148, + 1998, 148, 148, 148, 148, 148, 148, 148, 148, 152, + 152, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 264, 264, 264, 264, 264, 264, 264, 264, 264, + 264, 266, 1998, 266, 266, 266, 266, 266, 266, 266, + + 266, 286, 1998, 286, 372, 372, 372, 372, 372, 372, + 372, 372, 372, 372, 377, 377, 377, 377, 377, 377, + 377, 377, 377, 377, 381, 381, 381, 381, 381, 381, + 381, 381, 381, 381, 383, 383, 383, 383, 383, 383, + 383, 383, 383, 383, 384, 384, 384, 1998, 1998, 384, + 384, 384, 1998, 384, 388, 1998, 388, 388, 388, 1998, + 388, 388, 388, 388, 400, 400, 400, 400, 400, 400, + 400, 400, 400, 400, 402, 402, 402, 402, 402, 402, + 402, 402, 402, 402, 405, 405, 405, 405, 405, 405, + 405, 405, 405, 405, 580, 1998, 1998, 1998, 580, 580, + + 1998, 580, 606, 606, 606, 1998, 606, 606, 606, 606, + 606, 606, 608, 608, 608, 608, 1998, 608, 608, 608, + 608, 608, 652, 652, 652, 652, 652, 652, 652, 652, + 652, 652, 654, 1998, 654, 654, 654, 654, 654, 654, + 654, 654, 404, 404, 404, 404, 404, 404, 404, 404, + 404, 404, 147, 1998, 147, 147, 147, 147, 147, 147, + 147, 147, 17, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998 } ; -static const flex_int16_t yy_chk[4837] = +static const flex_int16_t yy_chk[4952] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -1883,25 +1903,25 @@ static const flex_int16_t yy_chk[4837] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, - 9, 35, 9, 9, 10, 9, 10, 10, 9, 10, - - 13, 3, 10, 11, 14, 12, 11, 1954, 12, 3, - 13, 3, 3, 3, 14, 1940, 17, 3, 17, 17, - 3, 3, 35, 42, 3, 3, 3, 3, 3, 3, - 22, 3, 22, 22, 56, 3, 23, 23, 3, 1332, - 3, 36, 3, 3, 3, 36, 23, 11, 3, 12, - 57, 3, 3, 58, 42, 3, 3, 3, 3, 3, - 3, 26, 3, 26, 1232, 56, 25, 3, 25, 25, - 26, 655, 36, 3, 4, 4, 36, 23, 25, 392, - 71, 57, 71, 71, 58, 29, 124, 4, 29, 29, - 124, 39, 26, 392, 26, 4, 33, 4, 4, 4, - - 33, 26, 29, 4, 33, 39, 4, 4, 59, 25, - 4, 4, 4, 4, 4, 4, 29, 4, 60, 29, - 29, 4, 39, 62, 4, 63, 4, 33, 4, 4, - 4, 33, 596, 29, 4, 33, 39, 4, 4, 59, - 594, 4, 4, 4, 4, 4, 4, 568, 4, 60, - 371, 489, 371, 4, 62, 94, 63, 94, 94, 4, + 9, 37, 9, 9, 10, 9, 10, 10, 9, 10, + + 13, 3, 10, 11, 14, 12, 11, 1978, 12, 3, + 13, 3, 3, 3, 14, 1964, 19, 3, 19, 19, + 3, 3, 37, 44, 3, 3, 3, 3, 3, 3, + 24, 3, 24, 24, 58, 3, 25, 25, 3, 1353, + 3, 38, 3, 3, 3, 38, 25, 11, 3, 12, + 59, 3, 3, 60, 44, 3, 3, 3, 3, 3, + 3, 28, 3, 28, 1253, 58, 27, 3, 27, 27, + 28, 671, 38, 3, 4, 4, 38, 25, 27, 404, + 73, 59, 73, 73, 60, 31, 126, 4, 31, 31, + 126, 41, 28, 404, 28, 4, 35, 4, 4, 4, + + 35, 28, 31, 4, 35, 41, 4, 4, 61, 27, + 4, 4, 4, 4, 4, 4, 31, 4, 62, 31, + 31, 4, 41, 64, 4, 65, 4, 35, 4, 4, + 4, 35, 608, 31, 4, 35, 41, 4, 4, 61, + 606, 4, 4, 4, 4, 4, 4, 580, 4, 62, + 378, 501, 378, 4, 64, 96, 65, 96, 96, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, @@ -1921,491 +1941,504 @@ static const flex_int16_t yy_chk[4837] = 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, - 7, 7, 7, 7, 7, 7, 24, 24, 24, 24, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 34, 64, 24, 27, 388, 24, 24, 27, 24, 34, - 34, 27, 30, 30, 30, 47, 34, 61, 30, 47, - 27, 61, 65, 27, 30, 67, 68, 69, 70, 70, - 74, 34, 64, 376, 27, 24, 24, 24, 27, 24, - 34, 34, 27, 30, 30, 30, 47, 34, 61, 30, - - 47, 27, 61, 65, 27, 30, 67, 68, 69, 374, - 135, 74, 70, 135, 77, 77, 24, 24, 24, 24, - 24, 24, 24, 24, 28, 77, 28, 31, 80, 28, - 28, 31, 85, 28, 32, 31, 28, 110, 32, 28, - 28, 31, 32, 113, 31, 77, 77, 95, 82, 95, - 95, 32, 82, 370, 135, 28, 77, 28, 31, 80, - 28, 28, 31, 85, 28, 32, 31, 28, 110, 32, - 28, 28, 31, 32, 113, 31, 37, 38, 37, 82, - 37, 38, 32, 82, 37, 38, 104, 37, 40, 40, - 385, 385, 92, 37, 92, 104, 40, 38, 40, 365, - - 40, 38, 322, 40, 79, 386, 386, 37, 38, 37, - 320, 37, 38, 84, 279, 37, 38, 84, 37, 40, - 40, 79, 41, 92, 37, 92, 41, 40, 38, 40, - 41, 40, 38, 41, 40, 79, 41, 43, 73, 41, - 73, 43, 114, 118, 84, 43, 76, 73, 84, 76, - 76, 43, 79, 41, 387, 387, 100, 41, 100, 100, - 129, 41, 129, 129, 41, 121, 261, 41, 43, 73, - 41, 73, 43, 114, 118, 46, 43, 76, 73, 122, - 76, 76, 43, 44, 46, 44, 46, 45, 44, 44, - 46, 45, 46, 44, 46, 45, 121, 44, 101, 101, - - 44, 45, 44, 260, 45, 44, 46, 259, 101, 595, - 122, 45, 397, 397, 44, 46, 44, 46, 45, 44, - 44, 46, 45, 46, 44, 46, 45, 257, 44, 133, - 107, 44, 45, 44, 66, 45, 44, 48, 48, 101, - 66, 48, 45, 48, 88, 48, 107, 134, 88, 154, - 48, 66, 398, 398, 595, 102, 148, 102, 102, 142, - 133, 107, 598, 598, 640, 66, 640, 102, 48, 48, - 156, 66, 48, 141, 48, 88, 48, 107, 134, 88, - 154, 48, 66, 72, 72, 72, 72, 72, 72, 72, - 72, 72, 72, 72, 72, 72, 72, 75, 102, 75, - - 78, 156, 72, 72, 78, 72, 75, 158, 78, 75, - 81, 81, 75, 138, 78, 83, 131, 81, 106, 83, - 160, 130, 106, 83, 139, 163, 139, 139, 75, 126, - 75, 78, 72, 72, 72, 78, 72, 75, 158, 78, - 75, 81, 81, 75, 87, 78, 83, 86, 81, 106, - 83, 160, 87, 106, 83, 86, 163, 86, 87, 89, - 89, 87, 86, 72, 72, 72, 72, 72, 72, 72, - 72, 89, 108, 91, 125, 87, 89, 105, 86, 91, - 109, 91, 108, 87, 109, 108, 86, 103, 86, 87, - 89, 89, 87, 86, 120, 90, 164, 120, 109, 90, - - 99, 111, 89, 108, 91, 90, 112, 89, 90, 111, - 91, 109, 91, 108, 116, 109, 108, 98, 111, 165, - 169, 112, 170, 115, 116, 120, 90, 164, 120, 109, - 90, 117, 111, 115, 117, 117, 90, 112, 115, 90, - 111, 597, 119, 599, 599, 116, 119, 143, 143, 111, - 165, 169, 112, 170, 115, 116, 97, 143, 144, 123, - 144, 144, 117, 96, 115, 117, 117, 52, 123, 115, - 144, 146, 146, 119, 123, 147, 147, 119, 173, 147, - 147, 146, 51, 597, 123, 50, 152, 152, 143, 21, - 123, 602, 602, 153, 153, 15, 152, 153, 153, 123, - - 157, 144, 603, 603, 641, 123, 641, 174, 166, 173, - 0, 157, 146, 150, 150, 150, 150, 150, 150, 150, - 150, 150, 150, 150, 150, 150, 150, 152, 166, 150, - 155, 157, 150, 150, 155, 150, 161, 159, 174, 166, - 175, 155, 157, 159, 167, 167, 167, 155, 172, 177, - 161, 179, 172, 178, 175, 176, 176, 178, 181, 166, - 183, 155, 150, 150, 150, 155, 150, 161, 159, 642, - 642, 175, 155, 0, 159, 167, 167, 167, 155, 172, - 177, 161, 179, 172, 178, 175, 176, 176, 178, 181, - 0, 183, 0, 150, 150, 150, 150, 150, 150, 150, - - 150, 151, 151, 151, 151, 151, 151, 151, 151, 151, - 151, 151, 151, 151, 151, 184, 185, 151, 180, 0, - 151, 151, 180, 151, 182, 186, 182, 182, 187, 188, - 182, 189, 190, 191, 192, 194, 187, 195, 196, 197, - 201, 207, 187, 648, 648, 196, 184, 185, 208, 180, - 151, 151, 151, 180, 151, 182, 186, 182, 182, 187, - 188, 182, 189, 190, 191, 192, 194, 187, 195, 196, - 197, 201, 207, 187, 193, 193, 196, 198, 205, 208, - 193, 151, 151, 151, 151, 151, 151, 151, 151, 0, - 211, 193, 200, 198, 205, 198, 209, 200, 200, 204, - - 198, 204, 204, 212, 209, 193, 193, 204, 198, 205, - 213, 193, 206, 206, 206, 210, 214, 215, 216, 210, - 206, 211, 193, 200, 198, 205, 198, 209, 200, 200, - 204, 198, 204, 204, 212, 209, 218, 217, 204, 217, - 219, 213, 220, 206, 206, 206, 210, 214, 215, 216, - 210, 206, 221, 222, 223, 221, 224, 649, 649, 222, - 226, 224, 221, 0, 227, 228, 229, 218, 217, 230, - 217, 219, 0, 220, 232, 233, 235, 236, 237, 0, - 234, 240, 242, 221, 222, 223, 221, 224, 225, 225, - 222, 226, 224, 221, 225, 227, 228, 229, 225, 225, - - 230, 225, 231, 231, 234, 232, 233, 235, 236, 237, - 238, 234, 240, 242, 239, 231, 239, 245, 241, 225, - 225, 238, 239, 247, 248, 225, 241, 249, 250, 225, - 225, 251, 225, 231, 231, 234, 252, 253, 241, 254, - 255, 238, 256, 262, 263, 239, 231, 239, 245, 241, - 264, 265, 238, 239, 247, 248, 266, 241, 249, 250, - 267, 268, 251, 269, 270, 271, 272, 252, 253, 241, - 254, 255, 273, 256, 262, 263, 274, 275, 276, 272, - 277, 264, 265, 267, 278, 280, 280, 266, 0, 283, - 284, 267, 268, 282, 269, 270, 271, 272, 286, 285, - - 282, 285, 287, 273, 288, 289, 282, 274, 275, 276, - 272, 277, 290, 291, 267, 278, 290, 293, 294, 280, - 283, 284, 295, 292, 282, 292, 292, 296, 295, 286, - 285, 282, 285, 287, 297, 288, 289, 282, 298, 295, - 299, 300, 301, 290, 291, 302, 304, 290, 293, 294, - 305, 306, 307, 295, 292, 308, 292, 292, 296, 295, - 309, 310, 307, 311, 312, 297, 313, 314, 316, 298, - 295, 299, 300, 301, 317, 318, 302, 304, 314, 315, - 0, 305, 306, 307, 326, 326, 308, 315, 326, 326, - 0, 309, 310, 307, 311, 312, 333, 313, 314, 316, - - 334, 323, 323, 325, 325, 317, 318, 327, 327, 314, - 315, 323, 324, 325, 324, 324, 335, 327, 315, 336, - 337, 328, 328, 339, 324, 328, 328, 333, 338, 338, - 340, 334, 341, 342, 343, 344, 345, 346, 347, 350, - 351, 349, 323, 352, 325, 341, 349, 335, 327, 354, - 336, 337, 349, 356, 339, 324, 357, 358, 359, 338, - 338, 340, 360, 341, 342, 343, 344, 345, 346, 347, - 350, 351, 349, 361, 352, 361, 341, 349, 362, 363, - 354, 364, 0, 349, 356, 366, 367, 357, 358, 359, - 368, 383, 383, 360, 384, 384, 389, 391, 384, 384, - - 399, 383, 857, 857, 361, 0, 361, 858, 858, 362, - 363, 368, 364, 366, 367, 0, 366, 367, 0, 395, - 395, 368, 0, 400, 0, 401, 0, 389, 391, 395, - 0, 399, 383, 390, 390, 390, 390, 390, 390, 390, - 390, 390, 390, 390, 390, 390, 390, 402, 403, 390, - 404, 0, 390, 390, 400, 390, 401, 396, 396, 405, - 395, 396, 396, 406, 407, 408, 409, 410, 411, 412, - 413, 414, 415, 416, 417, 418, 419, 422, 402, 403, - 423, 404, 390, 390, 390, 0, 390, 601, 601, 0, - 405, 601, 601, 0, 406, 407, 408, 409, 410, 411, - - 412, 413, 414, 415, 416, 417, 418, 419, 422, 892, - 892, 423, 0, 390, 390, 390, 390, 390, 390, 390, - 390, 393, 393, 393, 393, 393, 393, 393, 393, 393, - 393, 393, 393, 393, 393, 424, 420, 393, 425, 0, - 393, 393, 426, 393, 420, 427, 428, 429, 431, 432, - 420, 433, 424, 434, 435, 436, 437, 438, 439, 440, - 442, 444, 445, 446, 437, 447, 424, 420, 448, 425, - 393, 393, 393, 426, 393, 420, 427, 428, 429, 431, - 432, 420, 433, 424, 434, 435, 436, 437, 438, 439, - 440, 442, 444, 445, 446, 437, 447, 1126, 1126, 448, - - 0, 393, 393, 393, 393, 393, 393, 393, 393, 394, - 394, 449, 394, 394, 394, 394, 394, 394, 394, 394, - 394, 394, 394, 441, 450, 451, 453, 0, 394, 394, - 454, 394, 455, 441, 454, 456, 457, 458, 459, 460, - 394, 461, 449, 462, 463, 464, 465, 466, 467, 468, - 469, 461, 470, 472, 441, 450, 451, 453, 394, 394, - 394, 454, 394, 455, 441, 454, 456, 457, 458, 459, - 460, 394, 461, 473, 462, 463, 464, 465, 466, 467, - 468, 469, 461, 470, 472, 0, 475, 477, 0, 394, - 394, 394, 394, 394, 394, 394, 394, 476, 478, 480, - - 481, 476, 482, 483, 473, 474, 474, 484, 474, 485, - 474, 474, 486, 474, 487, 490, 474, 475, 477, 474, - 491, 492, 493, 474, 474, 492, 494, 474, 476, 478, - 480, 481, 476, 482, 483, 495, 474, 474, 484, 474, - 485, 474, 474, 486, 474, 487, 490, 474, 497, 498, - 474, 491, 492, 493, 474, 474, 492, 494, 474, 479, - 479, 496, 479, 499, 479, 479, 495, 479, 501, 496, - 479, 500, 503, 504, 505, 506, 502, 479, 479, 497, - 498, 479, 500, 502, 507, 508, 509, 499, 510, 511, - 479, 479, 496, 479, 499, 479, 479, 512, 479, 501, - - 496, 479, 500, 503, 504, 505, 506, 502, 479, 479, - 513, 514, 479, 500, 502, 507, 508, 509, 499, 510, - 511, 515, 516, 517, 518, 519, 520, 521, 512, 522, - 523, 525, 526, 527, 516, 528, 529, 530, 531, 532, - 533, 513, 514, 534, 535, 536, 537, 0, 539, 541, - 544, 537, 515, 516, 517, 518, 519, 520, 521, 547, - 522, 523, 525, 526, 527, 516, 528, 529, 530, 531, - 532, 533, 540, 538, 534, 535, 536, 537, 538, 539, - 541, 544, 537, 549, 540, 550, 551, 552, 553, 554, - 547, 555, 556, 558, 559, 560, 561, 562, 563, 564, - - 565, 566, 570, 540, 538, 571, 572, 573, 574, 538, - 575, 576, 577, 578, 549, 540, 550, 551, 552, 553, - 554, 579, 555, 556, 558, 559, 560, 561, 562, 563, - 564, 565, 566, 570, 581, 580, 571, 572, 573, 574, - 582, 575, 576, 577, 578, 580, 583, 584, 585, 586, - 587, 588, 579, 589, 590, 591, 592, 593, 600, 600, - 604, 605, 606, 607, 608, 581, 580, 609, 600, 610, - 611, 582, 612, 613, 614, 615, 580, 583, 584, 585, - 586, 587, 588, 616, 589, 590, 591, 592, 593, 617, - 618, 604, 605, 606, 607, 608, 619, 620, 609, 600, - - 610, 611, 621, 612, 613, 614, 615, 622, 623, 624, - 625, 627, 628, 629, 616, 630, 631, 632, 633, 634, - 617, 618, 635, 636, 638, 637, 0, 619, 620, 639, - 645, 0, 0, 621, 637, 0, 0, 638, 622, 623, - 624, 625, 627, 628, 629, 650, 630, 631, 632, 633, - 634, 0, 651, 635, 636, 638, 637, 639, 652, 653, - 639, 645, 646, 646, 654, 646, 646, 646, 646, 646, - 646, 646, 646, 646, 646, 646, 650, 656, 657, 658, - 0, 646, 646, 651, 646, 659, 660, 661, 662, 652, - 653, 664, 666, 667, 668, 654, 669, 670, 671, 672, - - 673, 665, 674, 675, 674, 676, 670, 677, 656, 657, - 658, 646, 646, 646, 0, 646, 659, 660, 661, 662, - 665, 678, 664, 666, 667, 668, 679, 669, 670, 671, - 672, 673, 665, 674, 675, 674, 676, 670, 677, 680, - 681, 682, 646, 646, 646, 646, 646, 646, 646, 646, - 683, 665, 678, 684, 685, 686, 687, 679, 689, 690, - 691, 692, 693, 694, 695, 697, 698, 699, 700, 701, - 680, 681, 682, 702, 703, 704, 705, 706, 707, 708, - 709, 683, 710, 711, 684, 685, 686, 687, 713, 689, - 690, 691, 692, 693, 694, 695, 697, 698, 699, 700, - - 701, 714, 716, 717, 702, 703, 704, 705, 706, 707, - 708, 709, 718, 710, 711, 715, 719, 720, 721, 713, - 723, 724, 715, 725, 727, 728, 729, 730, 724, 731, - 732, 733, 714, 716, 717, 734, 736, 737, 0, 738, - 739, 740, 741, 718, 742, 743, 715, 719, 720, 721, - 0, 723, 724, 715, 725, 727, 728, 729, 730, 724, - 731, 732, 733, 735, 744, 745, 734, 736, 737, 735, - 738, 739, 740, 741, 746, 742, 743, 747, 748, 749, - 750, 735, 751, 752, 753, 754, 750, 755, 757, 759, - 761, 762, 763, 760, 735, 744, 745, 760, 750, 764, - - 735, 765, 766, 767, 768, 746, 769, 770, 747, 748, - 749, 750, 735, 751, 752, 753, 754, 750, 755, 757, - 759, 761, 762, 763, 760, 771, 772, 773, 760, 750, - 764, 774, 765, 766, 767, 768, 775, 769, 770, 776, - 777, 778, 779, 780, 776, 781, 782, 783, 784, 785, - 786, 787, 788, 789, 790, 791, 771, 772, 773, 792, - 793, 794, 774, 795, 796, 797, 798, 775, 799, 800, - 776, 777, 778, 779, 780, 776, 781, 782, 783, 784, - 785, 786, 787, 788, 789, 790, 791, 801, 802, 803, - 792, 793, 794, 806, 795, 796, 797, 798, 804, 799, - - 800, 808, 804, 806, 809, 810, 811, 812, 814, 815, - 816, 817, 818, 819, 820, 821, 822, 824, 801, 802, - 803, 825, 826, 827, 806, 828, 829, 830, 831, 804, - 832, 833, 808, 804, 806, 809, 810, 811, 812, 814, - 815, 816, 817, 818, 819, 820, 821, 822, 824, 834, - 835, 836, 825, 826, 827, 838, 828, 829, 830, 831, - 839, 832, 833, 840, 841, 842, 843, 845, 847, 848, - 849, 850, 851, 853, 854, 860, 861, 862, 863, 864, - 834, 835, 836, 865, 866, 867, 838, 868, 869, 870, - 871, 839, 872, 873, 840, 841, 842, 843, 845, 847, - - 848, 849, 850, 851, 853, 854, 860, 861, 862, 863, - 864, 874, 875, 876, 865, 866, 867, 877, 868, 869, - 870, 871, 878, 872, 873, 879, 880, 881, 882, 883, - 884, 885, 886, 887, 889, 890, 0, 893, 897, 891, - 899, 900, 874, 875, 876, 902, 903, 905, 877, 906, - 893, 907, 908, 878, 909, 910, 879, 880, 881, 882, - 883, 884, 885, 886, 887, 889, 890, 891, 893, 897, - 891, 899, 900, 912, 914, 915, 902, 903, 905, 913, - 906, 913, 907, 908, 916, 909, 910, 917, 918, 919, - 917, 920, 921, 922, 924, 925, 926, 927, 930, 932, - - 933, 933, 935, 936, 912, 914, 915, 937, 938, 939, - 913, 940, 913, 942, 943, 916, 945, 946, 917, 918, - 919, 917, 920, 921, 922, 924, 925, 926, 927, 930, - 932, 933, 933, 935, 936, 949, 950, 952, 937, 938, - 939, 951, 940, 953, 942, 943, 955, 945, 946, 956, - 958, 951, 959, 960, 951, 961, 962, 0, 951, 951, - 0, 965, 967, 0, 968, 969, 949, 950, 952, 970, - 971, 972, 951, 973, 953, 974, 975, 955, 976, 977, - 956, 958, 951, 959, 960, 951, 961, 962, 963, 951, - 951, 963, 965, 967, 963, 968, 969, 978, 963, 979, - - 970, 971, 972, 963, 973, 980, 974, 975, 981, 976, - 977, 982, 983, 984, 985, 986, 987, 989, 990, 963, - 991, 992, 963, 993, 994, 963, 995, 996, 978, 963, - 979, 997, 998, 999, 963, 1000, 980, 1001, 1003, 981, - 1005, 1006, 982, 983, 984, 985, 986, 987, 989, 990, - 1007, 991, 992, 1008, 993, 994, 1009, 995, 996, 1010, - 1011, 1012, 997, 998, 999, 1013, 1000, 1014, 1001, 1003, - 1015, 1005, 1006, 1016, 1017, 1018, 1019, 1020, 1021, 1022, - 1023, 1007, 1025, 1026, 1008, 1024, 1027, 1009, 1028, 1030, - 1010, 1011, 1012, 1029, 1024, 1031, 1013, 1032, 1014, 1033, - - 1029, 1015, 1034, 1035, 1016, 1017, 1018, 1019, 1020, 1021, - 1022, 1023, 1036, 1025, 1026, 1037, 1024, 1027, 1041, 1028, - 1030, 1040, 1042, 1040, 1029, 1024, 1031, 1043, 1032, 1044, - 1033, 1029, 1045, 1034, 1035, 1046, 1048, 1049, 1050, 1040, - 1051, 1053, 1054, 1036, 1055, 1056, 1037, 1058, 1060, 1041, - 1055, 1059, 1040, 1042, 1040, 1061, 1064, 1065, 1043, 1066, - 1044, 1059, 1067, 1045, 1068, 1069, 1046, 1048, 1049, 1050, - 1040, 1051, 1053, 1054, 1073, 1055, 1056, 1074, 1058, 1060, - 1075, 1055, 1059, 1078, 1079, 1080, 1061, 1064, 1065, 1081, - 1066, 1082, 1059, 1067, 1083, 1068, 1069, 1075, 1085, 1087, - - 1089, 1087, 1090, 1091, 1092, 1073, 1093, 1094, 1074, 1095, - 1096, 1075, 1097, 1092, 1078, 1079, 1080, 1098, 1099, 1100, - 1081, 1101, 1082, 1102, 1103, 1083, 1104, 1105, 1075, 1085, - 1087, 1089, 1087, 1090, 1091, 1092, 1106, 1093, 1094, 1108, - 1095, 1096, 1109, 1097, 1092, 1110, 1111, 1113, 1098, 1099, - 1100, 1114, 1101, 1115, 1102, 1103, 1118, 1104, 1105, 1120, - 1121, 1122, 1123, 1125, 0, 1128, 1129, 1106, 1130, 1127, - 1108, 1131, 1132, 1109, 1133, 1134, 1110, 1111, 1113, 1136, - 1139, 1141, 1114, 1142, 1115, 1143, 1144, 1118, 1145, 1128, - 1120, 1121, 1122, 1123, 1125, 1127, 1128, 1129, 1147, 1130, - - 1127, 1149, 1131, 1132, 1150, 1133, 1134, 1151, 1152, 1153, - 1136, 1139, 1141, 1154, 1142, 1156, 1143, 1144, 1157, 1145, - 1158, 1159, 1161, 1163, 1165, 1167, 1168, 1169, 1170, 1147, - 1173, 1174, 1149, 1175, 1176, 1150, 1177, 1179, 1151, 1152, - 1153, 1180, 1181, 1182, 1154, 1183, 1156, 1184, 1185, 1157, - 1186, 1158, 1159, 1161, 1163, 1165, 1167, 1168, 1169, 1170, - 1187, 1173, 1174, 1188, 1175, 1176, 1189, 1177, 1179, 1190, - 1191, 1194, 1180, 1181, 1182, 1195, 1183, 1190, 1184, 1185, - 1196, 1186, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204, - 1205, 1187, 1206, 1207, 1188, 1208, 1209, 1189, 1210, 1212, - - 1190, 1191, 1194, 1214, 1215, 1216, 1195, 1217, 1190, 1218, - 1219, 1196, 1220, 1197, 1198, 1199, 1200, 1201, 1202, 1203, - 1204, 1205, 1221, 1206, 1207, 1222, 1208, 1209, 1223, 1210, - 1212, 1224, 1225, 1226, 1214, 1215, 1216, 1227, 1217, 1228, - 1218, 1219, 1231, 1220, 1233, 1234, 1235, 1236, 1237, 1238, - 1239, 1244, 1245, 1221, 1246, 1247, 1222, 1248, 1249, 1223, - 1250, 1251, 1224, 1225, 1226, 1252, 1253, 1254, 1227, 1255, - 1228, 1257, 1259, 1231, 1260, 1233, 1234, 1235, 1236, 1237, - 1238, 1239, 1244, 1245, 1261, 1246, 1247, 1262, 1248, 1249, - 1263, 1250, 1251, 1264, 1265, 1266, 1252, 1253, 1254, 1268, - - 1255, 1267, 1257, 1259, 1271, 1260, 1274, 1275, 1276, 1277, - 1278, 1279, 1280, 1281, 1282, 1261, 1283, 1267, 1262, 1284, - 1285, 1263, 1286, 1287, 1264, 1265, 1266, 1288, 1289, 1292, - 1268, 1294, 1267, 1295, 1297, 1271, 1298, 1274, 1275, 1276, - 1277, 1278, 1279, 1280, 1281, 1282, 1299, 1283, 1267, 1300, - 1284, 1285, 1301, 1286, 1287, 1302, 1303, 1305, 1288, 1289, - 1292, 1308, 1294, 1309, 1295, 1297, 1310, 1298, 1311, 1312, - 1313, 1314, 1315, 1317, 1318, 1319, 1320, 1299, 1321, 1322, - 1300, 1324, 1325, 1301, 1326, 1327, 1302, 1303, 1305, 1328, - 1331, 1330, 1308, 1333, 1309, 1334, 1335, 1310, 1336, 1311, - - 1312, 1313, 1314, 1315, 1317, 1318, 1319, 1320, 1337, 1321, - 1322, 1338, 1324, 1325, 1331, 1326, 1327, 1330, 1339, 1340, - 1328, 1331, 1330, 1341, 1333, 1342, 1334, 1335, 1344, 1336, - 1345, 1346, 1347, 1349, 1350, 1352, 1354, 1355, 1356, 1337, - 1358, 1360, 1338, 1361, 1362, 1363, 1364, 1365, 1366, 1339, - 1340, 1367, 1368, 1370, 1341, 1371, 1342, 1372, 1373, 1344, - 1375, 1345, 1346, 1347, 1349, 1350, 1352, 1354, 1355, 1356, - 1376, 1358, 1360, 1377, 1361, 1362, 1363, 1364, 1365, 1366, - 1378, 1379, 1367, 1368, 1370, 1380, 1371, 1381, 1372, 1373, - 1382, 1375, 1383, 1385, 1386, 1388, 1389, 1390, 1391, 1392, - - 1393, 1376, 1394, 1395, 1377, 1397, 1398, 1399, 1400, 1401, - 1403, 1378, 1379, 1404, 1405, 1406, 1380, 1407, 1381, 1408, - 1409, 1382, 1411, 1383, 1385, 1386, 1388, 1389, 1390, 1391, - 1392, 1393, 1412, 1394, 1395, 1413, 1397, 1398, 1399, 1400, - 1401, 1403, 1414, 1415, 1404, 1405, 1406, 1417, 1407, 1417, - 1408, 1409, 1419, 1411, 1421, 1420, 1422, 1424, 1425, 1427, - 1429, 1430, 1431, 1412, 1432, 1433, 1413, 1434, 1435, 1436, - 1437, 1438, 1439, 1414, 1415, 1420, 1440, 1441, 1417, 1442, - 1417, 1443, 1444, 1419, 1445, 1421, 1420, 1422, 1424, 1425, - 1427, 1429, 1430, 1431, 1446, 1432, 1433, 1447, 1434, 1435, - - 1436, 1437, 1438, 1439, 1448, 1449, 1420, 1440, 1441, 1450, - 1442, 1452, 1443, 1444, 1451, 1445, 1451, 1453, 1454, 1455, - 1457, 1458, 1459, 1460, 1461, 1446, 1464, 1465, 1447, 1466, - 1467, 1468, 1469, 1470, 1471, 1448, 1449, 1472, 1473, 1474, - 1450, 1475, 1452, 1476, 1477, 1451, 1479, 1451, 1453, 1454, - 1455, 1457, 1458, 1459, 1460, 1461, 1482, 1464, 1465, 1483, - 1466, 1467, 1468, 1469, 1470, 1471, 1485, 1486, 1472, 1473, - 1474, 1487, 1475, 1489, 1476, 1477, 1490, 1479, 1491, 1492, - 1493, 1494, 1496, 1497, 1499, 1500, 1501, 1482, 1502, 1503, - 1483, 1505, 1506, 1507, 1508, 1509, 1510, 1485, 1486, 1511, - - 1497, 1512, 1487, 1513, 1489, 1514, 1496, 1490, 1515, 1491, - 1492, 1493, 1494, 1496, 1497, 1499, 1500, 1501, 1517, 1502, - 1503, 1518, 1505, 1506, 1507, 1508, 1509, 1510, 1519, 1520, - 1511, 1521, 1512, 1522, 1513, 1524, 1514, 1525, 1526, 1515, - 1527, 1529, 1530, 1531, 1533, 1534, 1535, 1536, 1537, 1517, - 1538, 1539, 1518, 1540, 1541, 1542, 1543, 1544, 1545, 1519, - 1520, 1546, 1521, 1547, 1522, 1548, 1524, 1549, 1525, 1526, - 1550, 1527, 1529, 1530, 1531, 1533, 1534, 1535, 1536, 1537, - 1551, 1538, 1539, 1552, 1540, 1541, 1542, 1543, 1544, 1545, - 1553, 1557, 1546, 1558, 1547, 1559, 1548, 1560, 1549, 1561, - - 1562, 1550, 1563, 1564, 1565, 1568, 1569, 1570, 1571, 1572, - 1573, 1551, 1574, 1576, 1552, 1577, 1579, 1580, 1582, 1583, - 1584, 1553, 1557, 1586, 1558, 1587, 1559, 1588, 1560, 1589, - 1561, 1562, 1591, 1563, 1564, 1565, 1568, 1569, 1570, 1571, - 1572, 1573, 1593, 1574, 1576, 1594, 1577, 1579, 1580, 1582, - 1583, 1584, 1596, 1597, 1586, 1598, 1587, 1599, 1588, 1600, - 1589, 1601, 1602, 1591, 1603, 1605, 1607, 1608, 1609, 1613, - 1614, 1615, 1616, 1593, 1617, 1619, 1594, 1620, 1622, 1623, - 1625, 1627, 1631, 1596, 1597, 1632, 1598, 1633, 1599, 1635, - 1600, 1636, 1601, 1602, 1640, 1603, 1605, 1607, 1608, 1609, - - 1613, 1614, 1615, 1616, 1638, 1617, 1619, 1639, 1620, 1622, - 1623, 1625, 1627, 1631, 1641, 1643, 1632, 1645, 1633, 1647, - 1635, 1638, 1636, 1649, 1639, 1640, 1650, 1652, 1653, 1655, - 1656, 1658, 1659, 1660, 1662, 1638, 1666, 1668, 1639, 1669, - 1670, 1671, 1672, 1674, 1675, 1641, 1643, 1676, 1645, 1677, - 1647, 1678, 1679, 1680, 1649, 1681, 1682, 1650, 1652, 1653, - 1655, 1656, 1658, 1659, 1660, 1662, 1683, 1666, 1668, 1684, - 1669, 1670, 1671, 1672, 1674, 1675, 1686, 1687, 1676, 1688, - 1677, 1689, 1678, 1679, 1680, 1690, 1681, 1682, 1691, 1692, - 1693, 1694, 1696, 1697, 1698, 1699, 1700, 1683, 1701, 1702, - - 1684, 1703, 1704, 1705, 1706, 1707, 1708, 1686, 1687, 1709, - 1688, 1710, 1689, 1711, 1712, 1715, 1690, 1716, 1717, 1691, - 1692, 1693, 1694, 1696, 1697, 1698, 1699, 1700, 1718, 1701, - 1702, 1719, 1703, 1704, 1705, 1706, 1707, 1708, 1720, 1721, - 1709, 1725, 1710, 1727, 1711, 1712, 1715, 1729, 1716, 1717, - 1731, 1732, 1733, 1734, 1736, 1738, 1739, 1740, 1741, 1718, - 1742, 1743, 1719, 1744, 1745, 1746, 1749, 1750, 1752, 1720, - 1721, 1753, 1725, 1748, 1727, 1757, 1749, 1758, 1729, 1759, - 1757, 1731, 1732, 1733, 1734, 1736, 1738, 1739, 1740, 1741, - 1748, 1742, 1743, 1762, 1744, 1745, 1746, 1749, 1750, 1752, - - 1763, 1766, 1753, 1770, 1748, 1771, 1757, 1772, 1758, 1773, - 1759, 1757, 1774, 1775, 1778, 1779, 1780, 1781, 1782, 1783, - 1784, 1785, 1787, 1788, 1762, 1789, 1790, 1791, 1792, 1793, - 1794, 1763, 1766, 1795, 1770, 1797, 1771, 1798, 1772, 1799, - 1773, 1800, 1801, 1774, 1775, 1778, 1779, 1780, 1781, 1782, - 1783, 1784, 1785, 1787, 1788, 1802, 1789, 1790, 1791, 1792, - 1793, 1794, 1804, 1807, 1795, 1809, 1797, 1813, 1798, 1815, - 1799, 1816, 1800, 1801, 1817, 1818, 1820, 1824, 1825, 1832, - 1835, 1833, 1836, 1837, 1838, 1840, 1802, 1841, 1842, 1832, - 1843, 1845, 1846, 1804, 1807, 1847, 1809, 1848, 1813, 1849, - - 1815, 1833, 1816, 1854, 1855, 1817, 1818, 1820, 1824, 1825, - 1832, 1835, 1833, 1836, 1837, 1838, 1840, 1856, 1841, 1842, - 1859, 1843, 1845, 1846, 1862, 1863, 1847, 1865, 1848, 1867, - 1849, 1868, 1869, 1870, 1854, 1855, 1873, 1875, 1877, 1878, - 1879, 1881, 1885, 1884, 1887, 1883, 1884, 1888, 1856, 1889, - 1891, 1859, 1892, 1893, 1894, 1862, 1863, 1895, 1865, 1897, - 1867, 1898, 1868, 1869, 1870, 1883, 1899, 1873, 1875, 1877, - 1878, 1879, 1881, 1885, 1884, 1887, 1883, 1901, 1888, 1902, - 1889, 1891, 1904, 1892, 1893, 1894, 1905, 1909, 1895, 1910, - 1897, 1911, 1898, 1912, 1913, 1914, 1915, 1899, 1917, 1915, - - 1918, 1919, 1923, 1924, 1916, 1926, 1927, 1929, 1901, 1933, - 1902, 1934, 1935, 1904, 1936, 1937, 0, 1905, 1909, 1941, - 1910, 1942, 1911, 1939, 1912, 1913, 1914, 1915, 1916, 1917, - 1944, 1918, 1919, 1923, 1924, 1916, 1926, 1927, 1929, 1945, - 1933, 1946, 1934, 1935, 1947, 1936, 1937, 1939, 1951, 1952, - 1941, 1957, 1942, 1958, 1939, 1959, 1962, 1965, 1966, 1967, - 1970, 1944, 1971, 0, 0, 0, 0, 0, 0, 0, - 1945, 0, 1946, 0, 0, 1947, 0, 0, 0, 1951, - 1952, 0, 1957, 0, 1958, 0, 1959, 1962, 1965, 1966, - 1967, 1970, 0, 1971, 1975, 1975, 1975, 1975, 1975, 1975, - - 1975, 1975, 1975, 1975, 1976, 1976, 1976, 1976, 1976, 1976, - 1976, 1976, 1976, 1976, 1977, 1977, 1977, 1977, 1977, 1977, - 1977, 1977, 1977, 1977, 1978, 1978, 1978, 1978, 1978, 1978, - 1978, 1978, 1978, 1978, 1979, 0, 1979, 1979, 1979, 1979, - 1979, 1979, 1979, 1979, 1980, 0, 1980, 1980, 1980, 1980, - 1980, 1980, 1980, 1980, 1981, 1981, 1982, 1982, 1982, 1982, - 1982, 1982, 1982, 1982, 1982, 1982, 1983, 1983, 1983, 1983, - 1983, 1983, 1983, 1983, 1983, 1983, 1984, 0, 1984, 1984, - 1984, 1984, 1984, 1984, 1984, 1984, 1985, 0, 1985, 1986, - 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1987, - - 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1988, - 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1989, - 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1990, - 1990, 1990, 0, 0, 1990, 1990, 1990, 0, 1990, 1991, - 0, 1991, 1991, 1991, 0, 1991, 1991, 1991, 1991, 1992, - 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1993, - 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1994, - 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1995, - 0, 0, 0, 1995, 1995, 0, 1995, 1996, 1996, 1996, - 0, 1996, 1996, 1996, 1996, 1996, 1996, 1997, 1997, 1997, - - 1997, 0, 1997, 1997, 1997, 1997, 1997, 1998, 1998, 1998, - 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1999, 1999, 1999, - 1999, 1999, 1999, 1999, 1999, 1999, 1999, 2000, 0, 2000, - 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2001, 0, 2001, - 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, - 1974, 1974, 1974, 1974, 1974, 1974 + 7, 7, 7, 7, 7, 7, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 26, 26, 26, 26, 26, 26, + 26, 26, 26, 26, 26, 26, 26, 26, 36, 66, + 26, 29, 400, 26, 26, 29, 26, 36, 36, 29, + 32, 32, 32, 49, 36, 63, 32, 49, 29, 63, + 67, 29, 32, 69, 70, 71, 72, 72, 76, 36, + 66, 383, 29, 26, 26, 26, 29, 26, 36, 36, + 29, 32, 32, 32, 49, 36, 63, 32, 49, 29, + 63, 67, 29, 32, 69, 70, 71, 381, 137, 76, + + 72, 137, 79, 79, 26, 26, 26, 26, 26, 26, + 26, 26, 30, 79, 30, 33, 82, 30, 30, 33, + 87, 30, 34, 33, 30, 112, 34, 30, 30, 33, + 34, 115, 33, 79, 79, 97, 84, 97, 97, 34, + 84, 377, 137, 30, 79, 30, 33, 82, 30, 30, + 33, 87, 30, 34, 33, 30, 112, 34, 30, 30, + 33, 34, 115, 33, 39, 40, 39, 84, 39, 40, + 34, 84, 39, 40, 106, 39, 42, 42, 397, 397, + 94, 39, 94, 106, 42, 40, 42, 372, 42, 40, + 329, 42, 81, 398, 398, 39, 40, 39, 327, 39, + + 40, 86, 286, 39, 40, 86, 39, 42, 42, 81, + 43, 94, 39, 94, 43, 42, 40, 42, 43, 42, + 40, 43, 42, 81, 43, 45, 75, 43, 75, 45, + 116, 120, 86, 45, 78, 75, 86, 78, 78, 45, + 81, 43, 399, 399, 102, 43, 102, 102, 131, 43, + 131, 131, 43, 123, 268, 43, 45, 75, 43, 75, + 45, 116, 120, 48, 45, 78, 75, 124, 78, 78, + 45, 46, 48, 46, 48, 47, 46, 46, 48, 47, + 48, 46, 48, 47, 123, 46, 103, 103, 46, 47, + 46, 267, 47, 46, 48, 266, 103, 607, 124, 47, + + 409, 409, 46, 48, 46, 48, 47, 46, 46, 48, + 47, 48, 46, 48, 47, 264, 46, 135, 109, 46, + 47, 46, 68, 47, 46, 50, 50, 103, 68, 50, + 47, 50, 90, 50, 109, 136, 90, 142, 50, 68, + 410, 410, 607, 104, 155, 104, 104, 149, 135, 109, + 610, 610, 652, 68, 652, 104, 50, 50, 143, 68, + 50, 148, 50, 90, 50, 109, 136, 90, 142, 50, + 68, 74, 74, 74, 74, 74, 74, 74, 74, 74, + 74, 74, 74, 74, 74, 77, 104, 77, 80, 143, + 74, 74, 80, 74, 77, 144, 80, 77, 83, 83, + + 77, 141, 80, 85, 140, 83, 108, 85, 145, 133, + 108, 85, 146, 161, 146, 146, 77, 132, 77, 80, + 74, 74, 74, 80, 74, 77, 144, 80, 77, 83, + 83, 77, 89, 80, 85, 88, 83, 108, 85, 145, + 89, 108, 85, 88, 161, 88, 89, 91, 91, 89, + 88, 74, 74, 74, 74, 74, 74, 74, 74, 91, + 110, 93, 128, 89, 91, 127, 88, 93, 111, 93, + 110, 89, 111, 110, 88, 107, 88, 89, 91, 91, + 89, 88, 122, 92, 163, 122, 111, 92, 105, 113, + 91, 110, 93, 92, 114, 91, 92, 113, 93, 111, + + 93, 110, 118, 111, 110, 101, 113, 165, 167, 114, + 170, 117, 118, 122, 92, 163, 122, 111, 92, 119, + 113, 117, 119, 119, 92, 114, 117, 92, 113, 609, + 121, 611, 611, 118, 121, 150, 150, 113, 165, 167, + 114, 170, 117, 118, 100, 150, 151, 125, 151, 151, + 119, 99, 117, 119, 119, 98, 125, 117, 151, 153, + 153, 121, 125, 154, 154, 121, 171, 154, 154, 153, + 54, 609, 125, 53, 159, 159, 150, 52, 125, 614, + 614, 160, 160, 23, 159, 160, 160, 125, 164, 151, + 615, 615, 653, 125, 653, 172, 173, 171, 17, 164, + + 153, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 157, 157, 157, 159, 173, 157, 162, 164, + 157, 157, 162, 157, 168, 166, 172, 173, 176, 162, + 164, 166, 174, 174, 174, 162, 177, 179, 168, 180, + 181, 179, 183, 183, 184, 186, 188, 173, 190, 162, + 157, 157, 157, 162, 157, 168, 166, 659, 659, 176, + 162, 0, 166, 174, 174, 174, 162, 177, 179, 168, + 180, 181, 179, 183, 183, 184, 186, 188, 0, 190, + 0, 157, 157, 157, 157, 157, 157, 157, 157, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, + + 158, 158, 158, 182, 191, 158, 185, 0, 158, 158, + 185, 158, 187, 192, 193, 194, 187, 182, 189, 195, + 189, 189, 196, 194, 189, 197, 198, 199, 201, 194, + 664, 664, 202, 204, 182, 191, 0, 185, 158, 158, + 158, 185, 158, 187, 192, 193, 194, 187, 182, 189, + 195, 189, 189, 196, 194, 189, 197, 198, 199, 201, + 194, 200, 200, 202, 204, 205, 208, 200, 214, 158, + 158, 158, 158, 158, 158, 158, 158, 203, 200, 0, + 207, 205, 215, 205, 203, 207, 207, 211, 205, 211, + 211, 212, 200, 200, 218, 211, 205, 208, 200, 214, + + 0, 217, 213, 213, 213, 217, 219, 212, 203, 200, + 213, 207, 205, 215, 205, 203, 207, 207, 211, 205, + 211, 211, 212, 216, 220, 218, 211, 221, 222, 223, + 225, 216, 217, 213, 213, 213, 217, 219, 212, 226, + 224, 213, 224, 227, 229, 230, 228, 231, 233, 228, + 229, 234, 231, 0, 216, 220, 228, 235, 221, 222, + 223, 225, 216, 665, 665, 236, 0, 237, 239, 240, + 226, 224, 242, 224, 227, 229, 230, 228, 231, 233, + 228, 229, 234, 231, 232, 232, 241, 228, 235, 243, + 232, 238, 238, 244, 232, 232, 236, 232, 237, 239, + + 240, 245, 247, 242, 238, 246, 249, 246, 252, 254, + 241, 248, 245, 246, 255, 232, 232, 241, 256, 248, + 243, 232, 238, 238, 244, 232, 232, 257, 232, 258, + 259, 248, 245, 247, 260, 238, 246, 249, 246, 252, + 254, 241, 248, 245, 246, 255, 261, 262, 263, 256, + 248, 269, 270, 271, 272, 273, 275, 274, 257, 276, + 258, 259, 248, 277, 278, 260, 280, 281, 279, 282, + 283, 284, 285, 287, 287, 873, 873, 261, 262, 263, + 274, 279, 269, 270, 271, 272, 273, 275, 274, 290, + 276, 291, 293, 294, 277, 278, 295, 280, 281, 279, + + 282, 283, 284, 285, 296, 297, 289, 287, 292, 297, + 292, 274, 279, 289, 298, 299, 300, 299, 299, 289, + 290, 301, 291, 293, 294, 302, 303, 295, 304, 305, + 306, 302, 307, 308, 309, 296, 297, 289, 311, 292, + 297, 292, 302, 312, 289, 298, 299, 300, 299, 299, + 289, 313, 301, 315, 316, 317, 302, 303, 314, 304, + 305, 306, 302, 307, 308, 309, 318, 319, 314, 311, + 320, 322, 321, 302, 312, 323, 324, 325, 340, 322, + 330, 330, 313, 321, 315, 316, 317, 874, 874, 314, + 330, 0, 331, 0, 331, 331, 0, 318, 319, 314, + + 341, 320, 322, 321, 331, 342, 323, 324, 325, 340, + 322, 343, 332, 332, 321, 333, 333, 334, 334, 333, + 333, 330, 332, 344, 335, 335, 346, 334, 335, 335, + 347, 341, 345, 345, 348, 331, 342, 349, 350, 351, + 352, 353, 343, 354, 356, 357, 358, 348, 359, 356, + 361, 363, 364, 332, 344, 356, 365, 346, 334, 366, + 367, 347, 369, 345, 345, 348, 370, 371, 349, 350, + 351, 352, 353, 373, 354, 356, 357, 358, 348, 359, + 356, 361, 363, 364, 374, 375, 356, 365, 391, 393, + 366, 367, 368, 369, 368, 396, 396, 370, 371, 396, + + 396, 373, 908, 908, 373, 0, 375, 1145, 1145, 394, + 392, 0, 374, 401, 0, 374, 375, 0, 403, 391, + 393, 0, 0, 368, 411, 368, 390, 390, 392, 390, + 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, + 394, 392, 395, 395, 401, 390, 390, 412, 390, 403, + 407, 407, 395, 408, 408, 411, 413, 408, 408, 392, + 407, 414, 415, 416, 417, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 390, 390, 390, 412, 390, + 613, 613, 0, 395, 613, 613, 0, 413, 0, 0, + 0, 407, 414, 415, 416, 417, 418, 419, 420, 421, + + 422, 423, 424, 425, 426, 427, 390, 390, 390, 390, + 390, 390, 390, 390, 402, 402, 402, 402, 402, 402, + 402, 402, 402, 402, 402, 402, 402, 402, 428, 429, + 402, 430, 0, 402, 402, 431, 402, 432, 434, 435, + 436, 437, 438, 439, 440, 432, 441, 443, 444, 445, + 446, 432, 447, 448, 450, 451, 452, 436, 454, 428, + 429, 456, 430, 402, 402, 402, 431, 402, 432, 434, + 435, 436, 437, 438, 439, 440, 432, 441, 443, 444, + 445, 446, 432, 447, 448, 450, 451, 452, 436, 454, + 0, 0, 456, 0, 402, 402, 402, 402, 402, 402, + + 402, 402, 405, 405, 405, 405, 405, 405, 405, 405, + 405, 405, 405, 405, 405, 405, 453, 449, 405, 457, + 0, 405, 405, 458, 405, 449, 453, 459, 460, 461, + 462, 463, 465, 466, 467, 468, 469, 466, 470, 471, + 472, 474, 475, 476, 477, 478, 479, 453, 449, 480, + 457, 405, 405, 405, 458, 405, 449, 453, 459, 460, + 461, 462, 463, 465, 466, 467, 468, 469, 466, 470, + 471, 472, 474, 475, 476, 477, 478, 479, 0, 0, + 480, 0, 405, 405, 405, 405, 405, 405, 405, 405, + 406, 406, 481, 406, 406, 406, 406, 406, 406, 406, + + 406, 406, 406, 406, 473, 482, 484, 485, 0, 406, + 406, 487, 406, 488, 473, 489, 490, 488, 492, 493, + 494, 406, 495, 481, 496, 497, 498, 499, 502, 503, + 504, 505, 506, 507, 504, 473, 482, 484, 485, 406, + 406, 406, 487, 406, 488, 473, 489, 490, 488, 492, + 493, 494, 406, 495, 509, 496, 497, 498, 499, 502, + 503, 504, 505, 506, 507, 504, 0, 510, 513, 0, + 406, 406, 406, 406, 406, 406, 406, 406, 486, 486, + 508, 486, 512, 486, 486, 509, 486, 0, 508, 486, + 515, 0, 486, 512, 511, 516, 486, 486, 510, 513, + + 486, 0, 0, 517, 0, 518, 0, 0, 519, 486, + 486, 508, 486, 512, 486, 486, 520, 486, 511, 508, + 486, 515, 514, 486, 512, 511, 516, 486, 486, 514, + 521, 486, 491, 491, 517, 491, 518, 491, 491, 519, + 491, 522, 523, 491, 524, 525, 526, 520, 527, 511, + 491, 491, 529, 514, 491, 528, 530, 531, 532, 533, + 514, 521, 534, 491, 491, 535, 491, 528, 491, 491, + 537, 491, 522, 523, 491, 524, 525, 526, 538, 527, + 539, 491, 491, 529, 540, 491, 528, 530, 531, 532, + 533, 541, 542, 534, 543, 544, 535, 545, 528, 546, + + 547, 537, 548, 549, 551, 550, 552, 553, 549, 538, + 550, 539, 556, 559, 561, 540, 562, 563, 552, 564, + 565, 566, 541, 542, 567, 543, 544, 568, 545, 570, + 546, 547, 571, 548, 549, 551, 550, 552, 553, 549, + 572, 550, 573, 556, 559, 561, 574, 562, 563, 552, + 564, 565, 566, 575, 576, 567, 577, 578, 568, 582, + 570, 583, 584, 571, 585, 586, 587, 588, 589, 590, + 591, 572, 592, 573, 593, 594, 595, 574, 596, 597, + 598, 599, 592, 600, 575, 576, 601, 577, 578, 602, + 582, 603, 583, 584, 604, 585, 586, 587, 588, 589, + + 590, 591, 605, 592, 616, 593, 594, 595, 617, 596, + 597, 598, 599, 592, 600, 618, 619, 601, 612, 612, + 602, 620, 603, 621, 622, 604, 623, 624, 612, 625, + 626, 627, 628, 605, 629, 616, 630, 631, 632, 617, + 633, 634, 635, 636, 637, 639, 618, 619, 640, 641, + 642, 643, 620, 644, 621, 622, 645, 623, 624, 612, + 625, 626, 627, 628, 646, 629, 647, 630, 631, 632, + 648, 633, 634, 635, 636, 637, 639, 649, 650, 640, + 641, 642, 643, 651, 644, 654, 649, 645, 655, 657, + 658, 650, 662, 663, 666, 646, 667, 647, 668, 669, + + 670, 648, 672, 673, 674, 675, 676, 677, 649, 650, + 678, 651, 680, 681, 651, 682, 654, 683, 684, 655, + 657, 658, 685, 662, 663, 666, 687, 667, 688, 668, + 669, 670, 681, 672, 673, 674, 675, 676, 677, 689, + 691, 678, 686, 680, 681, 690, 682, 690, 683, 684, + 692, 686, 693, 685, 694, 695, 696, 687, 697, 688, + 698, 699, 700, 681, 701, 702, 703, 705, 706, 707, + 689, 691, 708, 686, 709, 710, 690, 711, 690, 713, + 714, 692, 686, 693, 715, 694, 695, 696, 716, 697, + 717, 698, 699, 700, 718, 701, 702, 703, 705, 706, + + 707, 719, 720, 708, 721, 709, 710, 722, 711, 723, + 713, 714, 724, 725, 726, 715, 727, 729, 730, 716, + 731, 717, 732, 733, 734, 718, 735, 731, 736, 737, + 739, 741, 719, 720, 740, 721, 743, 744, 722, 745, + 723, 740, 746, 724, 725, 726, 747, 727, 729, 730, + 748, 731, 749, 732, 733, 734, 750, 735, 731, 736, + 737, 739, 741, 752, 753, 740, 754, 743, 744, 755, + 745, 756, 740, 746, 751, 757, 758, 747, 759, 760, + 751, 748, 761, 749, 762, 763, 764, 750, 765, 767, + 766, 768, 751, 769, 752, 753, 766, 754, 770, 771, + + 755, 773, 756, 775, 777, 751, 757, 758, 766, 759, + 760, 751, 778, 761, 776, 762, 763, 764, 776, 765, + 767, 766, 768, 751, 769, 779, 780, 766, 781, 770, + 771, 782, 773, 783, 775, 777, 784, 785, 786, 766, + 787, 788, 789, 778, 790, 776, 791, 792, 793, 776, + 794, 795, 792, 796, 797, 798, 779, 780, 799, 781, + 800, 801, 782, 802, 783, 803, 804, 784, 785, 786, + 805, 787, 788, 789, 806, 790, 807, 791, 792, 793, + 808, 794, 795, 792, 796, 797, 798, 809, 810, 799, + 811, 800, 801, 812, 802, 813, 803, 804, 814, 815, + + 816, 805, 817, 818, 819, 806, 820, 807, 824, 825, + 820, 808, 822, 826, 827, 828, 830, 831, 809, 810, + 832, 811, 822, 833, 812, 834, 813, 835, 836, 814, + 815, 816, 837, 817, 818, 819, 838, 820, 840, 824, + 825, 820, 841, 822, 826, 827, 828, 830, 831, 842, + 843, 832, 844, 822, 833, 845, 834, 846, 835, 836, + 847, 848, 849, 837, 850, 851, 852, 838, 854, 840, + 855, 856, 857, 841, 858, 859, 861, 863, 864, 865, + 842, 843, 866, 844, 867, 869, 845, 870, 846, 876, + 877, 847, 848, 849, 878, 850, 851, 852, 879, 854, + + 880, 855, 856, 857, 881, 858, 859, 861, 863, 864, + 865, 882, 883, 866, 884, 867, 869, 885, 870, 886, + 876, 877, 887, 888, 889, 878, 890, 891, 892, 879, + 893, 880, 894, 895, 896, 881, 897, 898, 899, 900, + 901, 902, 882, 883, 903, 884, 905, 906, 885, 909, + 886, 907, 911, 887, 888, 889, 913, 890, 891, 892, + 916, 893, 909, 894, 895, 896, 918, 897, 898, 899, + 900, 901, 902, 919, 921, 903, 922, 905, 906, 907, + 909, 924, 907, 911, 925, 926, 927, 913, 928, 929, + 931, 916, 932, 933, 932, 934, 935, 918, 936, 937, + + 938, 936, 939, 940, 919, 921, 941, 922, 943, 944, + 945, 946, 924, 949, 951, 925, 926, 927, 954, 928, + 929, 931, 955, 932, 933, 932, 934, 935, 956, 936, + 937, 938, 936, 939, 940, 952, 952, 941, 957, 943, + 944, 945, 946, 958, 949, 951, 959, 961, 962, 954, + 964, 965, 968, 955, 969, 970, 971, 972, 974, 956, + 975, 977, 978, 979, 980, 970, 952, 952, 970, 957, + 981, 0, 970, 970, 958, 984, 986, 959, 961, 962, + 987, 964, 965, 968, 988, 969, 970, 971, 972, 974, + 989, 975, 977, 978, 979, 980, 970, 990, 991, 970, + + 992, 981, 982, 970, 970, 982, 984, 986, 982, 993, + 994, 987, 982, 995, 996, 988, 997, 982, 998, 999, + 1000, 989, 1001, 1002, 1003, 1004, 1005, 1006, 990, 991, + 1008, 992, 1009, 982, 1010, 1011, 982, 1012, 1013, 982, + 993, 994, 1014, 982, 995, 996, 1015, 997, 982, 998, + 999, 1000, 1016, 1001, 1002, 1003, 1004, 1005, 1006, 1017, + 1018, 1008, 1019, 1009, 1020, 1010, 1011, 1022, 1012, 1013, + 1024, 1025, 1026, 1014, 1027, 1028, 1029, 1015, 1030, 1031, + 1032, 1033, 1034, 1016, 1035, 1036, 1037, 1038, 1039, 1040, + 1017, 1018, 1041, 1019, 1042, 1020, 1044, 1045, 1022, 1043, + + 1046, 1024, 1025, 1026, 1047, 1027, 1028, 1029, 1043, 1030, + 1031, 1032, 1033, 1034, 1048, 1035, 1036, 1037, 1038, 1039, + 1040, 1048, 1049, 1041, 1050, 1042, 1051, 1044, 1045, 1052, + 1043, 1046, 1053, 1054, 1055, 1047, 1056, 1060, 1059, 1043, + 1059, 1061, 1062, 1063, 1064, 1048, 1065, 1067, 1068, 1069, + 1070, 1072, 1048, 1049, 1073, 1050, 1059, 1051, 1075, 1077, + 1052, 1079, 0, 1053, 1054, 1055, 1080, 1056, 1060, 1059, + 1074, 1059, 1061, 1062, 1063, 1064, 1074, 1065, 1067, 1068, + 1069, 1070, 1072, 1078, 1083, 1073, 1084, 1059, 1085, 1075, + 1077, 1086, 1079, 1078, 1087, 1088, 1092, 1080, 1093, 1094, + + 1097, 1074, 1098, 1099, 1100, 1101, 1102, 1074, 1104, 1106, + 1108, 1106, 1109, 1110, 1078, 1083, 1094, 1084, 1112, 1085, + 1113, 1114, 1086, 1111, 1078, 1087, 1088, 1092, 1115, 1093, + 1094, 1097, 1111, 1098, 1099, 1100, 1101, 1102, 1116, 1104, + 1106, 1108, 1106, 1109, 1110, 1117, 1118, 1094, 1119, 1112, + 1120, 1113, 1114, 1121, 1111, 1122, 1123, 1124, 1125, 1115, + 1127, 1128, 1129, 1111, 1130, 1132, 1133, 1134, 1137, 1116, + 1139, 1140, 1141, 1142, 1144, 0, 1117, 1118, 1148, 1119, + 1146, 1120, 1149, 1147, 1121, 1150, 1122, 1123, 1124, 1125, + 1151, 1127, 1128, 1129, 1152, 1130, 1132, 1133, 1134, 1137, + + 1153, 1139, 1140, 1141, 1142, 1144, 1146, 1147, 1154, 1148, + 1155, 1146, 1157, 1149, 1147, 1160, 1150, 1162, 1163, 1164, + 1165, 1151, 1166, 1168, 1170, 1152, 1171, 1172, 1173, 1174, + 1175, 1153, 1177, 1178, 1179, 1180, 1182, 1184, 1186, 1154, + 1188, 1155, 1189, 1157, 1190, 1191, 1160, 1194, 1162, 1163, + 1164, 1165, 1195, 1166, 1168, 1170, 1196, 1171, 1172, 1173, + 1174, 1175, 1197, 1177, 1178, 1179, 1180, 1182, 1184, 1186, + 1198, 1188, 1200, 1189, 1201, 1190, 1191, 1202, 1194, 1203, + 1204, 1205, 1206, 1195, 1207, 1208, 1209, 1196, 1210, 1211, + 1212, 1215, 1216, 1197, 1217, 1218, 1219, 1211, 1220, 1221, + + 1222, 1198, 1223, 1200, 1224, 1201, 1225, 1226, 1202, 1227, + 1203, 1204, 1205, 1206, 1228, 1207, 1208, 1209, 1229, 1210, + 1211, 1212, 1215, 1216, 1230, 1217, 1218, 1219, 1211, 1220, + 1221, 1222, 1231, 1223, 1233, 1224, 1235, 1225, 1226, 1236, + 1227, 1237, 1238, 1239, 1240, 1228, 1241, 1242, 1243, 1229, + 1244, 1245, 1246, 1247, 1248, 1230, 1249, 1252, 1254, 1255, + 1256, 1257, 1258, 1231, 1259, 1233, 1260, 1235, 1265, 1266, + 1236, 1267, 1237, 1238, 1239, 1240, 1268, 1241, 1242, 1243, + 1269, 1244, 1245, 1246, 1247, 1248, 1270, 1249, 1252, 1254, + 1255, 1256, 1257, 1258, 1271, 1259, 1272, 1260, 1273, 1265, + + 1266, 1274, 1267, 1275, 1276, 1278, 1280, 1268, 1281, 1282, + 1283, 1269, 1284, 1285, 1286, 1287, 1289, 1270, 1292, 1295, + 1296, 1297, 1288, 1298, 1299, 1271, 1300, 1272, 1301, 1273, + 1302, 1303, 1274, 1304, 1275, 1276, 1278, 1280, 1288, 1281, + 1282, 1283, 1305, 1284, 1285, 1286, 1287, 1289, 1306, 1292, + 1295, 1296, 1297, 1288, 1298, 1299, 1307, 1300, 1308, 1301, + 1309, 1302, 1303, 1310, 1304, 1313, 1315, 1316, 1318, 1288, + 1319, 1320, 1321, 1305, 1322, 1323, 1324, 1326, 1329, 1306, + 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1307, 1338, 1308, + 1339, 1309, 1340, 1341, 1310, 1342, 1313, 1315, 1316, 1318, + + 1343, 1319, 1320, 1321, 1345, 1322, 1323, 1324, 1326, 1329, + 1346, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1347, 1338, + 1348, 1339, 1349, 1340, 1341, 0, 1342, 1355, 1351, 1356, + 1357, 1343, 1352, 1358, 1359, 1345, 1360, 1361, 1362, 1363, + 1364, 1346, 1365, 1367, 1368, 1369, 1370, 1372, 1373, 1347, + 1375, 1348, 1377, 1349, 1351, 1378, 1352, 1379, 1355, 1351, + 1356, 1357, 1381, 1352, 1358, 1359, 1383, 1360, 1361, 1362, + 1363, 1364, 1384, 1365, 1367, 1368, 1369, 1370, 1372, 1373, + 1385, 1375, 1386, 1377, 1387, 1388, 1378, 1389, 1379, 1390, + 1391, 1393, 1394, 1381, 1395, 1396, 1398, 1383, 1399, 1400, + + 1401, 1402, 1403, 1384, 1404, 1405, 1406, 1408, 1409, 1411, + 1412, 1385, 1413, 1386, 1414, 1387, 1388, 1415, 1389, 1416, + 1390, 1391, 1393, 1394, 1417, 1395, 1396, 1398, 1418, 1399, + 1400, 1401, 1402, 1403, 1420, 1404, 1405, 1406, 1408, 1409, + 1411, 1412, 1421, 1413, 1422, 1414, 1423, 1424, 1415, 1426, + 1416, 1427, 1428, 1429, 1430, 1417, 1431, 1432, 1434, 1418, + 1435, 1436, 1437, 1438, 1440, 1420, 1440, 1442, 1444, 1445, + 1443, 1447, 1448, 1421, 1450, 1422, 1452, 1423, 1424, 1453, + 1426, 1454, 1427, 1428, 1429, 1430, 1455, 1431, 1432, 1434, + 1443, 1435, 1436, 1437, 1438, 1440, 1456, 1440, 1442, 1444, + + 1445, 1443, 1447, 1448, 1457, 1450, 1458, 1452, 1459, 1460, + 1453, 1461, 1454, 1462, 1463, 1464, 1465, 1455, 1466, 1467, + 1468, 1443, 1469, 1470, 1471, 1472, 1473, 1456, 1474, 1475, + 1474, 1476, 1477, 1478, 1480, 1457, 1481, 1458, 1482, 1459, + 1460, 1483, 1461, 1484, 1462, 1463, 1464, 1465, 1487, 1466, + 1467, 1468, 1488, 1469, 1470, 1471, 1472, 1473, 1489, 1474, + 1475, 1474, 1476, 1477, 1478, 1480, 1490, 1481, 1491, 1482, + 1492, 1493, 1483, 1494, 1484, 1495, 1496, 1497, 1498, 1487, + 1499, 1500, 1502, 1488, 1505, 1506, 1508, 1509, 1510, 1489, + 1512, 1513, 1514, 1515, 1516, 1517, 1519, 1490, 1523, 1491, + + 0, 1492, 1493, 1524, 1494, 1525, 1495, 1496, 1497, 1498, + 1526, 1499, 1500, 1502, 1520, 1505, 1506, 1508, 1509, 1510, + 1519, 1512, 1513, 1514, 1515, 1516, 1517, 1519, 1527, 1523, + 1529, 1520, 1530, 1531, 1524, 1532, 1525, 1533, 1534, 1535, + 1536, 1526, 1537, 1538, 1539, 1520, 1541, 1542, 1543, 1544, + 1545, 1546, 1548, 1549, 1550, 1551, 1553, 1554, 1555, 1527, + 1557, 1529, 1558, 1530, 1531, 1559, 1532, 1560, 1533, 1534, + 1535, 1536, 1561, 1537, 1538, 1539, 1562, 1541, 1542, 1543, + 1544, 1545, 1546, 1548, 1549, 1550, 1551, 1553, 1554, 1555, + 1563, 1557, 1564, 1558, 1565, 1566, 1559, 1567, 1560, 1568, + + 1569, 1570, 1571, 1561, 1572, 1573, 1574, 1562, 1575, 1576, + 1577, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, 1589, + 1592, 1563, 1593, 1564, 1594, 1565, 1566, 1595, 1567, 1596, + 1568, 1569, 1570, 1571, 1597, 1572, 1573, 1574, 1598, 1575, + 1576, 1577, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588, + 1589, 1592, 1600, 1593, 1601, 1594, 1603, 1604, 1595, 1606, + 1596, 1607, 1608, 1610, 1611, 1597, 1612, 1613, 1615, 1598, + 1617, 1618, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, + 1629, 1631, 1632, 1600, 1633, 1601, 1637, 1603, 1604, 1638, + 1606, 1639, 1607, 1608, 1610, 1611, 1640, 1612, 1613, 1615, + + 1641, 1617, 1618, 1620, 1621, 1622, 1623, 1624, 1625, 1626, + 1627, 1629, 1631, 1632, 1643, 1633, 1644, 1637, 1646, 1647, + 1638, 1649, 1639, 1651, 1655, 1656, 1657, 1640, 1659, 1660, + 1664, 1641, 1665, 1667, 1662, 1669, 1663, 1671, 1673, 1674, + 1676, 1677, 1679, 1680, 1682, 1643, 1683, 1644, 1684, 1646, + 1647, 1662, 1649, 1663, 1651, 1655, 1656, 1657, 1686, 1659, + 1660, 1664, 1690, 1665, 1667, 1662, 1669, 1663, 1671, 1673, + 1674, 1676, 1677, 1679, 1680, 1682, 1692, 1683, 1693, 1684, + 1694, 1695, 1696, 1698, 1699, 1700, 1701, 1702, 1703, 1686, + 1704, 1705, 1706, 1690, 1707, 1708, 1710, 1711, 1712, 1713, + + 1714, 1715, 1716, 1717, 1718, 1720, 1721, 1692, 1722, 1693, + 1723, 1694, 1695, 1696, 1698, 1699, 1700, 1701, 1702, 1703, + 1724, 1704, 1705, 1706, 1725, 1707, 1708, 1710, 1711, 1712, + 1713, 1714, 1715, 1716, 1717, 1718, 1720, 1721, 1726, 1722, + 1727, 1723, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, + 1736, 1724, 1739, 1740, 1741, 1725, 1742, 1743, 1744, 1745, + 1749, 1751, 1753, 1755, 1756, 1757, 1758, 1760, 1762, 1726, + 1763, 1727, 1764, 1728, 1729, 1730, 1731, 1732, 1733, 1734, + 1735, 1736, 1765, 1739, 1740, 1741, 1766, 1742, 1743, 1744, + 1745, 1749, 1751, 1753, 1755, 1756, 1757, 1758, 1760, 1762, + + 1767, 1763, 1768, 1764, 1769, 1770, 1772, 1774, 1773, 1776, + 1777, 1781, 1782, 1765, 1783, 1786, 1781, 1766, 1773, 1787, + 1790, 1794, 1795, 1772, 1796, 1797, 1798, 1799, 1802, 1803, + 1804, 1767, 1805, 1768, 1806, 1769, 1770, 1772, 1774, 1773, + 1776, 1777, 1781, 1782, 1807, 1783, 1786, 1781, 1808, 1809, + 1787, 1790, 1794, 1795, 1811, 1796, 1797, 1798, 1799, 1802, + 1803, 1804, 1812, 1805, 1813, 1806, 1814, 1815, 1816, 1817, + 1818, 1819, 1821, 1822, 1823, 1807, 1824, 1825, 1826, 1808, + 1809, 1828, 1831, 1833, 1837, 1811, 1839, 1840, 1841, 1842, + 1844, 1848, 1849, 1812, 1859, 1813, 1856, 1814, 1815, 1816, + + 1817, 1818, 1819, 1821, 1822, 1823, 1856, 1824, 1825, 1826, + 1857, 1860, 1828, 1831, 1833, 1837, 1861, 1839, 1840, 1841, + 1842, 1844, 1848, 1849, 1862, 1859, 1864, 1856, 1865, 1866, + 1857, 1867, 1869, 1870, 1871, 1872, 1873, 1878, 1879, 1880, + 1883, 1857, 1860, 1886, 1887, 1889, 1891, 1861, 1892, 1893, + 1894, 1897, 1899, 1901, 1902, 1862, 1903, 1864, 1905, 1865, + 1866, 0, 1867, 1869, 1870, 1871, 1872, 1873, 1878, 1879, + 1880, 1883, 1907, 1909, 1886, 1887, 1889, 1891, 1911, 1892, + 1893, 1894, 1897, 1899, 1901, 1902, 1912, 1903, 1908, 1905, + 1913, 1908, 1907, 1915, 1916, 1917, 1918, 1919, 1921, 1922, + + 1923, 1925, 1926, 1907, 1909, 1928, 1929, 1933, 1934, 1911, + 1935, 1936, 1937, 1938, 1941, 1939, 1940, 1912, 1939, 1908, + 1942, 1913, 1943, 1947, 1915, 1916, 1917, 1918, 1919, 1921, + 1922, 1923, 1925, 1926, 1948, 1950, 1928, 1929, 1933, 1934, + 1940, 1935, 1936, 1937, 1938, 1941, 1939, 1940, 1951, 1953, + 1957, 1942, 1958, 1943, 1947, 1959, 1960, 1961, 1963, 1965, + 1966, 1968, 1969, 1970, 1971, 1948, 1950, 1975, 1976, 1981, + 1982, 1983, 1986, 1989, 1990, 1991, 1994, 1995, 0, 1951, + 1953, 1957, 1963, 1958, 0, 0, 1959, 1960, 1961, 1963, + 1965, 1966, 1968, 1969, 1970, 1971, 0, 0, 1975, 1976, + + 1981, 1982, 1983, 1986, 1989, 1990, 1991, 1994, 1995, 1999, + 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 2000, + 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2001, + 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2002, + 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2003, + 0, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2004, + 0, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2005, + 2005, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, + 2006, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, + 2007, 2008, 0, 2008, 2008, 2008, 2008, 2008, 2008, 2008, + + 2008, 2009, 0, 2009, 2010, 2010, 2010, 2010, 2010, 2010, + 2010, 2010, 2010, 2010, 2011, 2011, 2011, 2011, 2011, 2011, + 2011, 2011, 2011, 2011, 2012, 2012, 2012, 2012, 2012, 2012, + 2012, 2012, 2012, 2012, 2013, 2013, 2013, 2013, 2013, 2013, + 2013, 2013, 2013, 2013, 2014, 2014, 2014, 0, 0, 2014, + 2014, 2014, 0, 2014, 2015, 0, 2015, 2015, 2015, 0, + 2015, 2015, 2015, 2015, 2016, 2016, 2016, 2016, 2016, 2016, + 2016, 2016, 2016, 2016, 2017, 2017, 2017, 2017, 2017, 2017, + 2017, 2017, 2017, 2017, 2018, 2018, 2018, 2018, 2018, 2018, + 2018, 2018, 2018, 2018, 2019, 0, 0, 0, 2019, 2019, + + 0, 2019, 2020, 2020, 2020, 0, 2020, 2020, 2020, 2020, + 2020, 2020, 2021, 2021, 2021, 2021, 0, 2021, 2021, 2021, + 2021, 2021, 2022, 2022, 2022, 2022, 2022, 2022, 2022, 2022, + 2022, 2022, 2023, 0, 2023, 2023, 2023, 2023, 2023, 2023, + 2023, 2023, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 2024, + 2024, 2024, 2025, 0, 2025, 2025, 2025, 2025, 2025, 2025, + 2025, 2025, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, + 1998 } ; static yy_state_type yy_last_accepting_state; @@ -2505,9 +2538,9 @@ int include_lineno[MAX_INCLUDE_DEPTH]; int include_stack_ptr = 0; char path[MS_MAXPATHLEN]; -#line 2509 "/vagrant/maplexer.c" +#line 2542 "/vagrant/maplexer.c" -#line 2511 "/vagrant/maplexer.c" +#line 2544 "/vagrant/maplexer.c" #define INITIAL 0 #define URL_VARIABLE 1 @@ -2516,6 +2549,7 @@ char path[MS_MAXPATHLEN]; #define INCLUDE 4 #define MSSTRING 5 #define MULTILINE_COMMENT 6 +#define CONFIG_FILE 7 #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * @@ -2722,9 +2756,9 @@ YY_DECL } { -#line 94 "maplexer.l" +#line 95 "maplexer.l" -#line 96 "maplexer.l" +#line 97 "maplexer.l" if (msyystring_buffer == NULL) { msyystring_buffer_size = 256; @@ -2764,7 +2798,7 @@ YY_DECL msyy_scan_string(msyystring); msyysource=MS_URL_TOKENS; msyystate=MS_TOKENIZE_DEFAULT; - msyyreturncomments=0; + msyyreturncomments=0; (void) yyunput; /* just to avoid warning about it being unrefed */ break; case(MS_TOKENIZE_URL_STRING): @@ -2786,6 +2820,15 @@ YY_DECL msyystate=MS_TOKENIZE_DEFAULT; msyyreturncomments=0; break; + case(MS_TOKENIZE_CONFIG): + BEGIN(CONFIG_FILE); + msyystring_begin_state = CONFIG_FILE; + msyysource=MS_FILE_TOKENS; + msyystate=MS_TOKENIZE_DEFAULT; + msyystring=NULL; + msyyreturncomments=0; + return(0); + break; case(99): BEGIN(INITIAL); /* may not need this one */ msyystring_begin_state = INITIAL; @@ -2799,7 +2842,7 @@ YY_DECL break; } -#line 2803 "/vagrant/maplexer.c" +#line 2846 "/vagrant/maplexer.c" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { @@ -2826,13 +2869,13 @@ YY_DECL while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1975 ) + if ( yy_current_state >= 1999 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; ++yy_cp; } - while ( yy_current_state != 1974 ); + while ( yy_current_state != 1998 ); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); @@ -2854,1593 +2897,1613 @@ YY_DECL case 1: YY_RULE_SETUP -#line 170 "maplexer.l" +#line 180 "maplexer.l" ; YY_BREAK case 2: YY_RULE_SETUP -#line 172 "maplexer.l" +#line 182 "maplexer.l" { if (msyyreturncomments) return(MS_COMMENT); } YY_BREAK case 3: YY_RULE_SETUP -#line 174 "maplexer.l" +#line 184 "maplexer.l" { BEGIN(MULTILINE_COMMENT); } YY_BREAK case 4: YY_RULE_SETUP -#line 175 "maplexer.l" +#line 185 "maplexer.l" { BEGIN(INITIAL); } YY_BREAK case 5: YY_RULE_SETUP -#line 176 "maplexer.l" +#line 186 "maplexer.l" ; YY_BREAK case 6: YY_RULE_SETUP -#line 177 "maplexer.l" +#line 187 "maplexer.l" ; YY_BREAK case 7: /* rule 7 can match eol */ YY_RULE_SETUP -#line 178 "maplexer.l" +#line 188 "maplexer.l" { msyylineno++; } YY_BREAK case 8: YY_RULE_SETUP -#line 180 "maplexer.l" +#line 190 "maplexer.l" ; YY_BREAK case 9: YY_RULE_SETUP -#line 182 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_OR); } +#line 192 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_CONFIG_SECTION); } YY_BREAK case 10: YY_RULE_SETUP -#line 183 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_AND); } +#line 193 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_CONFIG_SECTION_ENV); } YY_BREAK case 11: YY_RULE_SETUP -#line 184 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_NOT); } +#line 194 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_CONFIG_SECTION_MAPS); } YY_BREAK case 12: YY_RULE_SETUP -#line 185 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_EQ); } +#line 195 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_CONFIG_SECTION_PLUGINS) } YY_BREAK case 13: YY_RULE_SETUP -#line 186 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_NE); } +#line 197 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_OR); } YY_BREAK case 14: YY_RULE_SETUP -#line 187 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_GT); } +#line 198 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_AND); } YY_BREAK case 15: YY_RULE_SETUP -#line 188 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_LT); } +#line 199 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_NOT); } YY_BREAK case 16: YY_RULE_SETUP -#line 189 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_GE); } +#line 200 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_EQ); } YY_BREAK case 17: YY_RULE_SETUP -#line 190 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_LE); } +#line 201 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_NE); } YY_BREAK case 18: YY_RULE_SETUP -#line 191 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_RE); } +#line 202 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_GT); } YY_BREAK case 19: YY_RULE_SETUP -#line 193 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_IEQ); } +#line 203 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_LT); } YY_BREAK case 20: YY_RULE_SETUP -#line 194 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_IRE); } +#line 204 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_GE); } YY_BREAK case 21: YY_RULE_SETUP -#line 196 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_IN); /* was IN */ } +#line 205 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_LE); } YY_BREAK case 22: YY_RULE_SETUP -#line 198 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_AREA); } +#line 206 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_RE); } YY_BREAK case 23: YY_RULE_SETUP -#line 199 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_LENGTH); } +#line 208 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_IEQ); } YY_BREAK case 24: YY_RULE_SETUP -#line 200 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_TOSTRING); } +#line 209 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_IRE); } YY_BREAK case 25: YY_RULE_SETUP -#line 201 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_COMMIFY); } +#line 211 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_IN); /* was IN */ } YY_BREAK case 26: YY_RULE_SETUP -#line 202 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_ROUND); } +#line 213 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_AREA); } YY_BREAK case 27: YY_RULE_SETUP -#line 203 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_UPPER); } +#line 214 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_LENGTH); } YY_BREAK case 28: YY_RULE_SETUP -#line 204 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_LOWER); } +#line 215 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_TOSTRING); } YY_BREAK case 29: YY_RULE_SETUP -#line 205 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_INITCAP); } +#line 216 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_COMMIFY); } YY_BREAK case 30: YY_RULE_SETUP -#line 206 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_FIRSTCAP); } +#line 217 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_ROUND); } YY_BREAK case 31: YY_RULE_SETUP -#line 208 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_BUFFER); } +#line 218 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_UPPER); } YY_BREAK case 32: YY_RULE_SETUP -#line 209 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_DIFFERENCE); } +#line 219 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_LOWER); } YY_BREAK case 33: YY_RULE_SETUP -#line 210 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_SIMPLIFY); } +#line 220 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_INITCAP); } YY_BREAK case 34: YY_RULE_SETUP -#line 211 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_SIMPLIFYPT); } +#line 221 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_FIRSTCAP); } YY_BREAK case 35: YY_RULE_SETUP -#line 212 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_GENERALIZE); } +#line 223 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_BUFFER); } YY_BREAK case 36: YY_RULE_SETUP -#line 213 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_SMOOTHSIA); } +#line 224 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_DIFFERENCE); } YY_BREAK case 37: YY_RULE_SETUP -#line 214 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_CENTERLINE); } +#line 225 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_SIMPLIFY); } YY_BREAK case 38: YY_RULE_SETUP -#line 215 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_DENSIFY); } +#line 226 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_SIMPLIFYPT); } YY_BREAK case 39: YY_RULE_SETUP -#line 216 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_OUTER); } +#line 227 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_GENERALIZE); } YY_BREAK case 40: YY_RULE_SETUP -#line 217 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_INNER); } +#line 228 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_SMOOTHSIA); } YY_BREAK case 41: YY_RULE_SETUP -#line 218 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_JAVASCRIPT); } +#line 229 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_CENTERLINE); } YY_BREAK case 42: YY_RULE_SETUP -#line 220 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_INTERSECTS); } +#line 230 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_DENSIFY); } YY_BREAK case 43: YY_RULE_SETUP -#line 221 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_DISJOINT); } +#line 231 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_OUTER); } YY_BREAK case 44: YY_RULE_SETUP -#line 222 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_TOUCHES); } +#line 232 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_INNER); } YY_BREAK case 45: YY_RULE_SETUP -#line 223 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_OVERLAPS); } +#line 233 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_JAVASCRIPT); } YY_BREAK case 46: YY_RULE_SETUP -#line 224 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_CROSSES); } +#line 235 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_INTERSECTS); } YY_BREAK case 47: YY_RULE_SETUP -#line 225 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_WITHIN); } +#line 236 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_DISJOINT); } YY_BREAK case 48: YY_RULE_SETUP -#line 226 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_CONTAINS); } +#line 237 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_TOUCHES); } YY_BREAK case 49: YY_RULE_SETUP -#line 227 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_EQUALS); } +#line 238 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_OVERLAPS); } YY_BREAK case 50: YY_RULE_SETUP -#line 228 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_BEYOND); } +#line 239 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_CROSSES); } YY_BREAK case 51: YY_RULE_SETUP -#line 229 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_DWITHIN); } +#line 240 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_WITHIN); } YY_BREAK case 52: YY_RULE_SETUP -#line 231 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_FROMTEXT); } +#line 241 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_CONTAINS); } YY_BREAK case 53: YY_RULE_SETUP -#line 233 "maplexer.l" -{ msyynumber=MS_TRUE; return(MS_TOKEN_LITERAL_BOOLEAN); } +#line 242 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_EQUALS); } YY_BREAK case 54: YY_RULE_SETUP -#line 234 "maplexer.l" -{ msyynumber=MS_FALSE; return(MS_TOKEN_LITERAL_BOOLEAN); } +#line 243 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_BEYOND); } YY_BREAK case 55: YY_RULE_SETUP -#line 236 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(COLORRANGE); } +#line 244 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_COMPARISON_DWITHIN); } YY_BREAK case 56: YY_RULE_SETUP -#line 237 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(DATARANGE); } +#line 246 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MS_TOKEN_FUNCTION_FROMTEXT); } YY_BREAK case 57: YY_RULE_SETUP -#line 238 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(RANGEITEM); } +#line 248 "maplexer.l" +{ msyynumber=MS_TRUE; return(MS_TOKEN_LITERAL_BOOLEAN); } YY_BREAK case 58: YY_RULE_SETUP -#line 240 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(ALIGN); } +#line 249 "maplexer.l" +{ msyynumber=MS_FALSE; return(MS_TOKEN_LITERAL_BOOLEAN); } YY_BREAK case 59: YY_RULE_SETUP -#line 241 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(ANCHORPOINT); } +#line 251 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(COLORRANGE); } YY_BREAK case 60: YY_RULE_SETUP -#line 242 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(ANGLE); } +#line 252 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(DATARANGE); } YY_BREAK case 61: YY_RULE_SETUP -#line 243 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(ANTIALIAS); } +#line 253 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(RANGEITEM); } YY_BREAK case 62: YY_RULE_SETUP -#line 244 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(BACKGROUNDCOLOR); } +#line 255 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(ALIGN); } YY_BREAK case 63: YY_RULE_SETUP -#line 245 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(BANDSITEM); } +#line 256 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(ANCHORPOINT); } YY_BREAK case 64: YY_RULE_SETUP -#line 246 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(BINDVALS); } - YY_BREAK +#line 257 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(ANGLE); } + YY_BREAK case 65: YY_RULE_SETUP -#line 247 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(BOM); } +#line 258 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(ANTIALIAS); } YY_BREAK case 66: YY_RULE_SETUP -#line 248 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(BROWSEFORMAT); } +#line 259 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(BACKGROUNDCOLOR); } YY_BREAK case 67: YY_RULE_SETUP -#line 249 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(BUFFER); } +#line 260 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(BANDSITEM); } YY_BREAK case 68: YY_RULE_SETUP -#line 250 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CHARACTER); } +#line 261 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(BINDVALS); } YY_BREAK case 69: YY_RULE_SETUP -#line 251 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CLASS); } +#line 262 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(BOM); } YY_BREAK case 70: YY_RULE_SETUP -#line 252 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CLASSITEM); } +#line 263 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(BROWSEFORMAT); } YY_BREAK case 71: YY_RULE_SETUP -#line 253 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CLASSGROUP); } +#line 264 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(BUFFER); } YY_BREAK case 72: YY_RULE_SETUP -#line 254 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CLUSTER); } +#line 265 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CHARACTER); } YY_BREAK case 73: YY_RULE_SETUP -#line 255 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(COLOR); } +#line 266 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CLASS); } YY_BREAK case 74: YY_RULE_SETUP -#line 256 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(COMPFILTER); } +#line 267 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CLASSITEM); } YY_BREAK case 75: YY_RULE_SETUP -#line 257 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(COMPOSITE); } +#line 268 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CLASSGROUP); } YY_BREAK case 76: YY_RULE_SETUP -#line 258 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(COMPOP); } +#line 269 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CLUSTER); } YY_BREAK case 77: YY_RULE_SETUP -#line 259 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CONFIG); } +#line 270 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(COLOR); } YY_BREAK case 78: YY_RULE_SETUP -#line 260 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CONNECTION); } +#line 271 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(COMPFILTER); } YY_BREAK case 79: YY_RULE_SETUP -#line 261 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CONNECTIONTYPE); } +#line 272 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(COMPOSITE); } YY_BREAK case 80: YY_RULE_SETUP -#line 262 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(DATA); } +#line 273 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(COMPOP); } YY_BREAK case 81: YY_RULE_SETUP -#line 263 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(DATAPATTERN); } +#line 274 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CONFIG); } YY_BREAK case 82: YY_RULE_SETUP -#line 264 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(DEBUG); } +#line 275 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CONNECTION); } YY_BREAK case 83: YY_RULE_SETUP -#line 265 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(DRIVER); } +#line 276 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CONNECTIONTYPE); } YY_BREAK case 84: YY_RULE_SETUP -#line 266 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(EMPTY); } +#line 277 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(DATA); } YY_BREAK case 85: YY_RULE_SETUP -#line 267 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(ENCODING); } +#line 278 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(DATAPATTERN); } YY_BREAK case 86: YY_RULE_SETUP -#line 268 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(END); } +#line 279 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(DEBUG); } YY_BREAK case 87: YY_RULE_SETUP -#line 269 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(ERROR); } +#line 280 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(DRIVER); } YY_BREAK case 88: YY_RULE_SETUP -#line 270 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(EXPRESSION); } +#line 281 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(EMPTY); } YY_BREAK case 89: YY_RULE_SETUP -#line 271 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(EXTENT); } +#line 282 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(ENCODING); } YY_BREAK case 90: YY_RULE_SETUP -#line 272 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(EXTENSION); } +#line 283 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(END); } YY_BREAK case 91: YY_RULE_SETUP -#line 273 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FEATURE); } +#line 284 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(ERROR); } YY_BREAK case 92: YY_RULE_SETUP -#line 274 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FILLED); } +#line 285 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(EXPRESSION); } YY_BREAK case 93: YY_RULE_SETUP -#line 275 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FILTER); } +#line 286 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(EXTENT); } YY_BREAK case 94: YY_RULE_SETUP -#line 276 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FILTERITEM); } +#line 287 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(EXTENSION); } YY_BREAK case 95: YY_RULE_SETUP -#line 277 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FOOTER); } +#line 288 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FEATURE); } YY_BREAK case 96: YY_RULE_SETUP -#line 278 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FONT); } +#line 289 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FILLED); } YY_BREAK case 97: YY_RULE_SETUP -#line 279 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FONTSET); } +#line 290 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FILTER); } YY_BREAK case 98: YY_RULE_SETUP -#line 280 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FORCE); } +#line 291 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FILTERITEM); } YY_BREAK case 99: YY_RULE_SETUP -#line 281 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FORMATOPTION); } +#line 292 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FOOTER); } YY_BREAK case 100: YY_RULE_SETUP -#line 282 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(FROM); } +#line 293 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FONT); } YY_BREAK case 101: YY_RULE_SETUP -#line 283 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(GAP); } +#line 294 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FONTSET); } YY_BREAK case 102: YY_RULE_SETUP -#line 284 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(GEOMTRANSFORM); } +#line 295 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FORCE); } YY_BREAK case 103: YY_RULE_SETUP -#line 285 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(GRID); } +#line 296 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FORMATOPTION); } YY_BREAK case 104: YY_RULE_SETUP -#line 286 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(GRIDSTEP); } +#line 297 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(FROM); } YY_BREAK case 105: YY_RULE_SETUP -#line 287 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(GRATICULE); } +#line 298 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(GAP); } YY_BREAK case 106: YY_RULE_SETUP -#line 288 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(GROUP); } +#line 299 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(GEOMTRANSFORM); } YY_BREAK case 107: YY_RULE_SETUP -#line 289 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(HEADER); } +#line 300 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(GRID); } YY_BREAK case 108: YY_RULE_SETUP -#line 290 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(IMAGE); } +#line 301 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(GRIDSTEP); } YY_BREAK case 109: YY_RULE_SETUP -#line 291 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(IMAGECOLOR); } +#line 302 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(GRATICULE); } YY_BREAK case 110: YY_RULE_SETUP -#line 292 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(IMAGETYPE); } +#line 303 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(GROUP); } YY_BREAK case 111: YY_RULE_SETUP -#line 293 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(IMAGEMODE); } +#line 304 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(HEADER); } YY_BREAK case 112: YY_RULE_SETUP -#line 294 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(IMAGEPATH); } +#line 305 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(IMAGE); } YY_BREAK case 113: YY_RULE_SETUP -#line 295 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(TEMPPATH); } +#line 306 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(IMAGECOLOR); } YY_BREAK case 114: YY_RULE_SETUP -#line 296 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(IMAGEURL); } +#line 307 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(IMAGETYPE); } YY_BREAK case 115: YY_RULE_SETUP -#line 297 "maplexer.l" -{ BEGIN(INCLUDE); } +#line 308 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(IMAGEMODE); } YY_BREAK case 116: YY_RULE_SETUP -#line 298 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(INDEX); } +#line 309 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(IMAGEPATH); } YY_BREAK case 117: YY_RULE_SETUP -#line 299 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(INITIALGAP); } +#line 310 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(TEMPPATH); } YY_BREAK case 118: YY_RULE_SETUP -#line 300 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(INTERVALS); } +#line 311 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(IMAGEURL); } YY_BREAK case 119: YY_RULE_SETUP -#line 301 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(JOIN); } +#line 312 "maplexer.l" +{ BEGIN(INCLUDE); } YY_BREAK case 120: YY_RULE_SETUP -#line 302 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(KEYIMAGE); } +#line 313 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(INDEX); } YY_BREAK case 121: YY_RULE_SETUP -#line 303 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(KEYSIZE); } +#line 314 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(INITIALGAP); } YY_BREAK case 122: YY_RULE_SETUP -#line 304 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(KEYSPACING); } +#line 315 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(INTERVALS); } YY_BREAK case 123: YY_RULE_SETUP -#line 305 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABEL); } +#line 316 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(JOIN); } YY_BREAK case 124: YY_RULE_SETUP -#line 306 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABELCACHE); } +#line 317 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(KEYIMAGE); } YY_BREAK case 125: YY_RULE_SETUP -#line 307 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABELFORMAT); } +#line 318 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(KEYSIZE); } YY_BREAK case 126: YY_RULE_SETUP -#line 308 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABELITEM); } +#line 319 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(KEYSPACING); } YY_BREAK case 127: YY_RULE_SETUP -#line 309 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABELMAXSCALE); } +#line 320 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABEL); } YY_BREAK case 128: YY_RULE_SETUP -#line 310 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABELMAXSCALEDENOM); } +#line 321 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABELCACHE); } YY_BREAK case 129: YY_RULE_SETUP -#line 311 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABELMINSCALE); } +#line 322 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABELFORMAT); } YY_BREAK case 130: YY_RULE_SETUP -#line 312 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABELMINSCALEDENOM); } +#line 323 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABELITEM); } YY_BREAK case 131: YY_RULE_SETUP -#line 313 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LABELREQUIRES); } +#line 324 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABELMAXSCALE); } YY_BREAK case 132: YY_RULE_SETUP -#line 314 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LATLON); } +#line 325 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABELMAXSCALEDENOM); } YY_BREAK case 133: YY_RULE_SETUP -#line 315 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LAYER); } +#line 326 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABELMINSCALE); } YY_BREAK case 134: YY_RULE_SETUP -#line 316 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LEADER); } +#line 327 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABELMINSCALEDENOM); } YY_BREAK case 135: YY_RULE_SETUP -#line 317 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LEGEND); } +#line 328 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LABELREQUIRES); } YY_BREAK case 136: YY_RULE_SETUP -#line 318 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LEGENDFORMAT); } +#line 329 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LATLON); } YY_BREAK case 137: YY_RULE_SETUP -#line 319 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LINECAP); } +#line 330 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LAYER); } YY_BREAK case 138: YY_RULE_SETUP -#line 320 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LINEJOIN); } +#line 331 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LEADER); } YY_BREAK case 139: YY_RULE_SETUP -#line 321 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(LINEJOINMAXSIZE); } +#line 332 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LEGEND); } YY_BREAK case 140: YY_RULE_SETUP -#line 322 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAP); } +#line 333 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LEGENDFORMAT); } YY_BREAK case 141: YY_RULE_SETUP -#line 323 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MARKER); } +#line 334 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LINECAP); } YY_BREAK case 142: YY_RULE_SETUP -#line 324 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MARKERSIZE); } +#line 335 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LINEJOIN); } YY_BREAK case 143: YY_RULE_SETUP -#line 325 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MASK); } +#line 336 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(LINEJOINMAXSIZE); } YY_BREAK case 144: YY_RULE_SETUP -#line 326 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXARCS); } +#line 337 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAP); } YY_BREAK case 145: YY_RULE_SETUP -#line 327 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXBOXSIZE); } +#line 338 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MARKER); } YY_BREAK case 146: YY_RULE_SETUP -#line 328 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXDISTANCE); } +#line 339 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MARKERSIZE); } YY_BREAK case 147: YY_RULE_SETUP -#line 329 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXFEATURES); } +#line 340 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MASK); } YY_BREAK case 148: YY_RULE_SETUP -#line 330 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXINTERVAL); } +#line 341 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXARCS); } YY_BREAK case 149: YY_RULE_SETUP -#line 331 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXSCALE); } +#line 342 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXBOXSIZE); } YY_BREAK case 150: YY_RULE_SETUP -#line 332 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXSCALEDENOM); } +#line 343 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXDISTANCE); } YY_BREAK case 151: YY_RULE_SETUP -#line 333 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXGEOWIDTH); } +#line 344 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXFEATURES); } YY_BREAK case 152: YY_RULE_SETUP -#line 334 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXLENGTH); } +#line 345 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXINTERVAL); } YY_BREAK case 153: YY_RULE_SETUP -#line 335 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXSIZE); } +#line 346 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXSCALE); } YY_BREAK case 154: YY_RULE_SETUP -#line 336 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXSUBDIVIDE); } +#line 347 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXSCALEDENOM); } YY_BREAK case 155: YY_RULE_SETUP -#line 337 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXTEMPLATE); } +#line 348 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXGEOWIDTH); } YY_BREAK case 156: YY_RULE_SETUP -#line 338 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXWIDTH); } +#line 349 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXLENGTH); } YY_BREAK case 157: YY_RULE_SETUP -#line 339 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(METADATA); } +#line 350 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXSIZE); } YY_BREAK case 158: YY_RULE_SETUP -#line 340 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MIMETYPE); } +#line 351 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXSUBDIVIDE); } YY_BREAK case 159: YY_RULE_SETUP -#line 341 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINARCS); } +#line 352 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXTEMPLATE); } YY_BREAK case 160: YY_RULE_SETUP -#line 342 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINBOXSIZE); } +#line 353 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXWIDTH); } YY_BREAK case 161: YY_RULE_SETUP -#line 343 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINDISTANCE); } +#line 354 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(METADATA); } YY_BREAK case 162: YY_RULE_SETUP -#line 344 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(REPEATDISTANCE); } +#line 355 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MIMETYPE); } YY_BREAK case 163: YY_RULE_SETUP -#line 345 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MAXOVERLAPANGLE); } +#line 356 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINARCS); } YY_BREAK case 164: YY_RULE_SETUP -#line 346 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINFEATURESIZE); } +#line 357 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINBOXSIZE); } YY_BREAK case 165: YY_RULE_SETUP -#line 347 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MININTERVAL); } +#line 358 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINDISTANCE); } YY_BREAK case 166: YY_RULE_SETUP -#line 348 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINSCALE); } +#line 359 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(REPEATDISTANCE); } YY_BREAK case 167: YY_RULE_SETUP -#line 349 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINSCALEDENOM); } +#line 360 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MAXOVERLAPANGLE); } YY_BREAK case 168: YY_RULE_SETUP -#line 350 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINGEOWIDTH); } +#line 361 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINFEATURESIZE); } YY_BREAK case 169: YY_RULE_SETUP -#line 351 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINLENGTH); } +#line 362 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MININTERVAL); } YY_BREAK case 170: YY_RULE_SETUP -#line 352 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINSIZE); } +#line 363 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINSCALE); } YY_BREAK case 171: YY_RULE_SETUP -#line 353 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINSUBDIVIDE); } +#line 364 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINSCALEDENOM); } YY_BREAK case 172: YY_RULE_SETUP -#line 354 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINTEMPLATE); } +#line 365 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINGEOWIDTH); } YY_BREAK case 173: YY_RULE_SETUP -#line 355 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(MINWIDTH); } +#line 366 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINLENGTH); } YY_BREAK case 174: YY_RULE_SETUP -#line 356 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(NAME); } +#line 367 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINSIZE); } YY_BREAK case 175: YY_RULE_SETUP -#line 357 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(OFFSET); } +#line 368 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINSUBDIVIDE); } YY_BREAK case 176: YY_RULE_SETUP -#line 358 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(OFFSITE); } +#line 369 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINTEMPLATE); } YY_BREAK case 177: YY_RULE_SETUP -#line 359 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(OPACITY); } +#line 370 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(MINWIDTH); } YY_BREAK case 178: YY_RULE_SETUP -#line 360 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(CONNECTIONOPTIONS); } +#line 371 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(NAME); } YY_BREAK case 179: YY_RULE_SETUP -#line 361 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(OUTLINECOLOR); } +#line 372 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(OFFSET); } YY_BREAK case 180: YY_RULE_SETUP -#line 362 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(OUTLINEWIDTH); } +#line 373 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(OFFSITE); } YY_BREAK case 181: YY_RULE_SETUP -#line 363 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(OUTPUTFORMAT); } +#line 374 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(OPACITY); } YY_BREAK case 182: YY_RULE_SETUP -#line 364 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(PARTIALS); } +#line 375 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(CONNECTIONOPTIONS); } YY_BREAK case 183: YY_RULE_SETUP -#line 365 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(PATTERN); } +#line 376 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(OUTLINECOLOR); } YY_BREAK case 184: YY_RULE_SETUP -#line 366 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(POINTS); } +#line 377 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(OUTLINEWIDTH); } YY_BREAK case 185: YY_RULE_SETUP -#line 367 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(ITEMS); } +#line 378 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(OUTPUTFORMAT); } YY_BREAK case 186: YY_RULE_SETUP -#line 368 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(POSITION); } +#line 379 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(PARTIALS); } YY_BREAK case 187: YY_RULE_SETUP -#line 369 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(POSTLABELCACHE); } +#line 380 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(PATTERN); } YY_BREAK case 188: YY_RULE_SETUP -#line 370 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(PRIORITY); } +#line 381 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(POINTS); } YY_BREAK case 189: YY_RULE_SETUP -#line 371 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(PROCESSING); } +#line 382 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(ITEMS); } YY_BREAK case 190: YY_RULE_SETUP -#line 372 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(PROJECTION); } +#line 383 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(POSITION); } YY_BREAK case 191: YY_RULE_SETUP -#line 373 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(QUERYFORMAT); } +#line 384 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(POSTLABELCACHE); } YY_BREAK case 192: YY_RULE_SETUP -#line 374 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(QUERYMAP); } +#line 385 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(PRIORITY); } YY_BREAK case 193: YY_RULE_SETUP -#line 375 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(REFERENCE); } +#line 386 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(PROCESSING); } YY_BREAK case 194: YY_RULE_SETUP -#line 376 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(REGION); } +#line 387 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(PROJECTION); } YY_BREAK case 195: YY_RULE_SETUP -#line 377 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(RELATIVETO); } +#line 388 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(QUERYFORMAT); } YY_BREAK case 196: YY_RULE_SETUP -#line 378 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(REQUIRES); } +#line 389 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(QUERYMAP); } YY_BREAK case 197: YY_RULE_SETUP -#line 379 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(RESOLUTION); } +#line 390 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(REFERENCE); } YY_BREAK case 198: YY_RULE_SETUP -#line 380 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(DEFRESOLUTION); } +#line 391 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(REGION); } YY_BREAK case 199: YY_RULE_SETUP -#line 381 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(SCALE); } +#line 392 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(RELATIVETO); } YY_BREAK case 200: YY_RULE_SETUP -#line 382 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(SCALEDENOM); } +#line 393 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(REQUIRES); } YY_BREAK case 201: YY_RULE_SETUP -#line 383 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(SCALEBAR); } +#line 394 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(RESOLUTION); } YY_BREAK case 202: YY_RULE_SETUP -#line 384 "maplexer.l" -{ MS_LEXER_RETURN_TOKEN(SCALETOKEN); } +#line 395 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(DEFRESOLUTION); } YY_BREAK case 203: YY_RULE_SETUP -#line 385 "maplexer.l" +#line 396 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(SCALE); } + YY_BREAK +case 204: +YY_RULE_SETUP +#line 397 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(SCALEDENOM); } + YY_BREAK +case 205: +YY_RULE_SETUP +#line 398 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(SCALEBAR); } + YY_BREAK +case 206: +YY_RULE_SETUP +#line 399 "maplexer.l" +{ MS_LEXER_RETURN_TOKEN(SCALETOKEN); } + YY_BREAK +case 207: +YY_RULE_SETUP +#line 400 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SHADOWCOLOR); } YY_BREAK -case 204: +case 208: YY_RULE_SETUP -#line 386 "maplexer.l" +#line 401 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SHADOWSIZE); } YY_BREAK -case 205: +case 209: YY_RULE_SETUP -#line 387 "maplexer.l" +#line 402 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SHAPEPATH); } YY_BREAK -case 206: +case 210: YY_RULE_SETUP -#line 388 "maplexer.l" +#line 403 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SIZE); } YY_BREAK -case 207: +case 211: YY_RULE_SETUP -#line 389 "maplexer.l" +#line 404 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SIZEUNITS); } YY_BREAK -case 208: +case 212: YY_RULE_SETUP -#line 390 "maplexer.l" +#line 405 "maplexer.l" { MS_LEXER_RETURN_TOKEN(STATUS); } YY_BREAK -case 209: +case 213: YY_RULE_SETUP -#line 391 "maplexer.l" +#line 406 "maplexer.l" { MS_LEXER_RETURN_TOKEN(STYLE); } YY_BREAK -case 210: +case 214: YY_RULE_SETUP -#line 392 "maplexer.l" +#line 407 "maplexer.l" { MS_LEXER_RETURN_TOKEN(STYLEITEM); } YY_BREAK -case 211: +case 215: YY_RULE_SETUP -#line 393 "maplexer.l" +#line 408 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SYMBOL); } YY_BREAK -case 212: +case 216: YY_RULE_SETUP -#line 394 "maplexer.l" +#line 409 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SYMBOLSCALE); } YY_BREAK -case 213: +case 217: YY_RULE_SETUP -#line 395 "maplexer.l" +#line 410 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SYMBOLSCALEDENOM); } YY_BREAK -case 214: +case 218: YY_RULE_SETUP -#line 396 "maplexer.l" +#line 411 "maplexer.l" { MS_LEXER_RETURN_TOKEN(SYMBOLSET); } YY_BREAK -case 215: +case 219: YY_RULE_SETUP -#line 397 "maplexer.l" +#line 412 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TABLE); } YY_BREAK -case 216: +case 220: YY_RULE_SETUP -#line 398 "maplexer.l" +#line 413 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TEMPLATE); } YY_BREAK -case 217: +case 221: YY_RULE_SETUP -#line 399 "maplexer.l" +#line 414 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TEMPLATEPATTERN); } YY_BREAK -case 218: +case 222: YY_RULE_SETUP -#line 400 "maplexer.l" +#line 415 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TEXT); } YY_BREAK -case 219: +case 223: YY_RULE_SETUP -#line 401 "maplexer.l" +#line 416 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TILEINDEX); } YY_BREAK -case 220: +case 224: YY_RULE_SETUP -#line 402 "maplexer.l" +#line 417 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TILEITEM); } YY_BREAK -case 221: +case 225: YY_RULE_SETUP -#line 403 "maplexer.l" +#line 418 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TILESRS); } YY_BREAK -case 222: +case 226: YY_RULE_SETUP -#line 404 "maplexer.l" +#line 419 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TITLE); } YY_BREAK -case 223: +case 227: YY_RULE_SETUP -#line 405 "maplexer.l" +#line 420 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TO); } YY_BREAK -case 224: +case 228: YY_RULE_SETUP -#line 406 "maplexer.l" +#line 421 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TOLERANCE); } YY_BREAK -case 225: +case 229: YY_RULE_SETUP -#line 407 "maplexer.l" +#line 422 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TOLERANCEUNITS); } YY_BREAK -case 226: +case 230: YY_RULE_SETUP -#line 408 "maplexer.l" +#line 423 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TRANSPARENT); } YY_BREAK -case 227: +case 231: YY_RULE_SETUP -#line 409 "maplexer.l" +#line 424 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TRANSFORM); } YY_BREAK -case 228: +case 232: YY_RULE_SETUP -#line 410 "maplexer.l" +#line 425 "maplexer.l" { MS_LEXER_RETURN_TOKEN(TYPE); } YY_BREAK -case 229: +case 233: YY_RULE_SETUP -#line 411 "maplexer.l" +#line 426 "maplexer.l" { MS_LEXER_RETURN_TOKEN(UNITS); } YY_BREAK -case 230: +case 234: YY_RULE_SETUP -#line 412 "maplexer.l" +#line 427 "maplexer.l" { MS_LEXER_RETURN_TOKEN(UTFDATA); } YY_BREAK -case 231: +case 235: YY_RULE_SETUP -#line 413 "maplexer.l" +#line 428 "maplexer.l" { MS_LEXER_RETURN_TOKEN(UTFITEM); } YY_BREAK -case 232: +case 236: YY_RULE_SETUP -#line 414 "maplexer.l" +#line 429 "maplexer.l" { MS_LEXER_RETURN_TOKEN(VALIDATION); } YY_BREAK -case 233: +case 237: YY_RULE_SETUP -#line 415 "maplexer.l" +#line 430 "maplexer.l" { MS_LEXER_RETURN_TOKEN(VALUES); } YY_BREAK -case 234: +case 238: YY_RULE_SETUP -#line 416 "maplexer.l" +#line 431 "maplexer.l" { MS_LEXER_RETURN_TOKEN(WEB); } YY_BREAK -case 235: +case 239: YY_RULE_SETUP -#line 417 "maplexer.l" +#line 432 "maplexer.l" { MS_LEXER_RETURN_TOKEN(WIDTH); } YY_BREAK -case 236: +case 240: YY_RULE_SETUP -#line 418 "maplexer.l" +#line 433 "maplexer.l" { MS_LEXER_RETURN_TOKEN(WKT); } YY_BREAK -case 237: +case 241: YY_RULE_SETUP -#line 419 "maplexer.l" +#line 434 "maplexer.l" { MS_LEXER_RETURN_TOKEN(WRAP); } YY_BREAK -case 238: +case 242: YY_RULE_SETUP -#line 421 "maplexer.l" +#line 436 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LAYER_ANNOTATION); } YY_BREAK -case 239: +case 243: YY_RULE_SETUP -#line 422 "maplexer.l" +#line 437 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_AUTO); } YY_BREAK -case 240: +case 244: YY_RULE_SETUP -#line 423 "maplexer.l" +#line 438 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_AUTO2); } YY_BREAK -case 241: +case 245: YY_RULE_SETUP -#line 424 "maplexer.l" +#line 439 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CJC_BEVEL); } YY_BREAK -case 242: +case 246: YY_RULE_SETUP -#line 425 "maplexer.l" +#line 440 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_BITMAP); } YY_BREAK -case 243: +case 247: YY_RULE_SETUP -#line 426 "maplexer.l" +#line 441 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CJC_BUTT); } YY_BREAK -case 244: +case 248: YY_RULE_SETUP -#line 427 "maplexer.l" +#line 442 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CC); } YY_BREAK -case 245: +case 249: YY_RULE_SETUP -#line 428 "maplexer.l" +#line 443 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_ALIGN_CENTER); } YY_BREAK -case 246: +case 250: YY_RULE_SETUP -#line 429 "maplexer.l" +#line 444 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LAYER_CHART); } YY_BREAK -case 247: +case 251: YY_RULE_SETUP -#line 430 "maplexer.l" +#line 445 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LAYER_CIRCLE); } YY_BREAK -case 248: +case 252: YY_RULE_SETUP -#line 431 "maplexer.l" +#line 446 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CL); } YY_BREAK -case 249: +case 253: YY_RULE_SETUP -#line 432 "maplexer.l" +#line 447 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CR); } YY_BREAK -case 250: +case 254: YY_RULE_SETUP -#line 433 "maplexer.l" +#line 448 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_DB_CSV); } YY_BREAK -case 251: +case 255: YY_RULE_SETUP -#line 434 "maplexer.l" +#line 449 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_DB_POSTGRES); } YY_BREAK -case 252: +case 256: YY_RULE_SETUP -#line 435 "maplexer.l" +#line 450 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_DB_MYSQL); } YY_BREAK -case 253: +case 257: YY_RULE_SETUP -#line 436 "maplexer.l" +#line 451 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_DEFAULT); } YY_BREAK -case 254: +case 258: YY_RULE_SETUP -#line 437 "maplexer.l" +#line 452 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_DD); } YY_BREAK -case 255: +case 259: YY_RULE_SETUP -#line 438 "maplexer.l" +#line 453 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SYMBOL_ELLIPSE); } YY_BREAK -case 256: +case 260: YY_RULE_SETUP -#line 439 "maplexer.l" +#line 454 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_EMBED); } YY_BREAK -case 257: +case 261: YY_RULE_SETUP -#line 440 "maplexer.l" +#line 455 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_FALSE); } YY_BREAK -case 258: +case 262: YY_RULE_SETUP -#line 441 "maplexer.l" +#line 456 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_FEET); } YY_BREAK -case 259: +case 263: YY_RULE_SETUP -#line 442 "maplexer.l" +#line 457 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_FOLLOW); } YY_BREAK -case 260: +case 264: YY_RULE_SETUP -#line 443 "maplexer.l" +#line 458 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_GIANT); } YY_BREAK -case 261: +case 265: YY_RULE_SETUP -#line 444 "maplexer.l" +#line 459 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SYMBOL_HATCH); } YY_BREAK -case 262: +case 266: YY_RULE_SETUP -#line 445 "maplexer.l" +#line 460 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_KERNELDENSITY); } YY_BREAK -case 263: +case 267: YY_RULE_SETUP -#line 446 "maplexer.l" +#line 461 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_IDW); } YY_BREAK -case 264: +case 268: YY_RULE_SETUP -#line 447 "maplexer.l" +#line 462 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_HILITE); } YY_BREAK -case 265: +case 269: YY_RULE_SETUP -#line 448 "maplexer.l" +#line 463 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_INCHES); } YY_BREAK -case 266: +case 270: YY_RULE_SETUP -#line 449 "maplexer.l" +#line 464 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_KILOMETERS); } YY_BREAK -case 267: +case 271: YY_RULE_SETUP -#line 450 "maplexer.l" +#line 465 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LARGE); } YY_BREAK -case 268: +case 272: YY_RULE_SETUP -#line 451 "maplexer.l" +#line 466 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LC); } YY_BREAK -case 269: +case 273: YY_RULE_SETUP -#line 452 "maplexer.l" +#line 467 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_ALIGN_LEFT); } YY_BREAK -case 270: +case 274: YY_RULE_SETUP -#line 453 "maplexer.l" +#line 468 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LAYER_LINE); } YY_BREAK -case 271: +case 275: YY_RULE_SETUP -#line 454 "maplexer.l" +#line 469 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LL); } YY_BREAK -case 272: +case 276: YY_RULE_SETUP -#line 455 "maplexer.l" +#line 470 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LR); } YY_BREAK -case 273: +case 277: YY_RULE_SETUP -#line 456 "maplexer.l" +#line 471 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_MEDIUM); } YY_BREAK -case 274: +case 278: YY_RULE_SETUP -#line 457 "maplexer.l" +#line 472 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_METERS); } YY_BREAK -case 275: +case 279: YY_RULE_SETUP -#line 458 "maplexer.l" +#line 473 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_NAUTICALMILES); } YY_BREAK -case 276: +case 280: YY_RULE_SETUP -#line 459 "maplexer.l" +#line 474 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_MILES); } YY_BREAK -case 277: +case 281: YY_RULE_SETUP -#line 460 "maplexer.l" +#line 475 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CJC_MITER); } YY_BREAK -case 278: +case 282: YY_RULE_SETUP -#line 461 "maplexer.l" +#line 476 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_MULTIPLE); } YY_BREAK -case 279: +case 283: YY_RULE_SETUP -#line 462 "maplexer.l" +#line 477 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CJC_NONE); } YY_BREAK -case 280: +case 284: YY_RULE_SETUP -#line 463 "maplexer.l" +#line 478 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_NORMAL); } YY_BREAK -case 281: +case 285: YY_RULE_SETUP -#line 464 "maplexer.l" +#line 479 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_OFF); } YY_BREAK -case 282: +case 286: YY_RULE_SETUP -#line 465 "maplexer.l" +#line 480 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_OGR); } YY_BREAK -case 283: +case 287: YY_RULE_SETUP -#line 466 "maplexer.l" +#line 481 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_ON); } YY_BREAK -case 284: +case 288: YY_RULE_SETUP -#line 467 "maplexer.l" +#line 482 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_JOIN_ONE_TO_ONE); } YY_BREAK -case 285: +case 289: YY_RULE_SETUP -#line 468 "maplexer.l" +#line 483 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_JOIN_ONE_TO_MANY); } YY_BREAK -case 286: +case 290: YY_RULE_SETUP -#line 469 "maplexer.l" +#line 484 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_ORACLESPATIAL); } YY_BREAK -case 287: +case 291: YY_RULE_SETUP -#line 470 "maplexer.l" +#line 485 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_PERCENTAGES); } YY_BREAK -case 288: +case 292: YY_RULE_SETUP -#line 471 "maplexer.l" +#line 486 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SYMBOL_PIXMAP); } YY_BREAK -case 289: +case 293: YY_RULE_SETUP -#line 472 "maplexer.l" +#line 487 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_PIXELS); } YY_BREAK -case 290: +case 294: YY_RULE_SETUP -#line 473 "maplexer.l" +#line 488 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LAYER_POINT); } YY_BREAK -case 291: +case 295: YY_RULE_SETUP -#line 474 "maplexer.l" +#line 489 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LAYER_POLYGON); } YY_BREAK -case 292: +case 296: YY_RULE_SETUP -#line 475 "maplexer.l" +#line 490 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_POSTGIS); } YY_BREAK -case 293: +case 297: YY_RULE_SETUP -#line 476 "maplexer.l" +#line 491 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_PLUGIN); } YY_BREAK -case 294: +case 298: YY_RULE_SETUP -#line 477 "maplexer.l" +#line 492 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LAYER_QUERY); } YY_BREAK -case 295: +case 299: YY_RULE_SETUP -#line 478 "maplexer.l" +#line 493 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_LAYER_RASTER); } YY_BREAK -case 296: +case 300: YY_RULE_SETUP -#line 479 "maplexer.l" +#line 494 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_ALIGN_RIGHT); } YY_BREAK -case 297: +case 301: YY_RULE_SETUP -#line 480 "maplexer.l" +#line 495 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CJC_ROUND); } YY_BREAK -case 298: +case 302: YY_RULE_SETUP -#line 481 "maplexer.l" +#line 496 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SELECTED); } YY_BREAK -case 299: +case 303: YY_RULE_SETUP -#line 482 "maplexer.l" +#line 497 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SYMBOL_SIMPLE); } YY_BREAK -case 300: +case 304: YY_RULE_SETUP -#line 483 "maplexer.l" +#line 498 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SINGLE); } YY_BREAK -case 301: +case 305: YY_RULE_SETUP -#line 484 "maplexer.l" +#line 499 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SMALL); } YY_BREAK -case 302: +case 306: YY_RULE_SETUP -#line 485 "maplexer.l" +#line 500 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CJC_SQUARE); } YY_BREAK -case 303: +case 307: YY_RULE_SETUP -#line 486 "maplexer.l" +#line 501 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SYMBOL_SVG); } YY_BREAK -case 304: +case 308: YY_RULE_SETUP -#line 487 "maplexer.l" +#line 502 "maplexer.l" { MS_LEXER_RETURN_TOKEN(POLAROFFSET); } YY_BREAK -case 305: +case 309: YY_RULE_SETUP -#line 488 "maplexer.l" +#line 503 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_TINY); } YY_BREAK -case 306: +case 310: YY_RULE_SETUP -#line 489 "maplexer.l" +#line 504 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CJC_TRIANGLE); } YY_BREAK -case 307: +case 311: YY_RULE_SETUP -#line 490 "maplexer.l" +#line 505 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_TRUE); } YY_BREAK -case 308: +case 312: YY_RULE_SETUP -#line 491 "maplexer.l" +#line 506 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_TRUETYPE); } YY_BREAK -case 309: +case 313: YY_RULE_SETUP -#line 492 "maplexer.l" +#line 507 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_UC); } YY_BREAK -case 310: +case 314: YY_RULE_SETUP -#line 493 "maplexer.l" +#line 508 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_UL); } YY_BREAK -case 311: +case 315: YY_RULE_SETUP -#line 494 "maplexer.l" +#line 509 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_UR); } YY_BREAK -case 312: +case 316: YY_RULE_SETUP -#line 495 "maplexer.l" +#line 510 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_UNION); } YY_BREAK -case 313: +case 317: YY_RULE_SETUP -#line 496 "maplexer.l" +#line 511 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_UVRASTER); } YY_BREAK -case 314: +case 318: YY_RULE_SETUP -#line 497 "maplexer.l" +#line 512 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_CONTOUR); } YY_BREAK -case 315: +case 319: YY_RULE_SETUP -#line 498 "maplexer.l" +#line 513 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_SYMBOL_VECTOR); } YY_BREAK -case 316: +case 320: YY_RULE_SETUP -#line 499 "maplexer.l" +#line 514 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_WFS); } YY_BREAK -case 317: +case 321: YY_RULE_SETUP -#line 500 "maplexer.l" +#line 515 "maplexer.l" { MS_LEXER_RETURN_TOKEN(MS_WMS); } YY_BREAK -case 318: +case 322: YY_RULE_SETUP -#line 502 "maplexer.l" +#line 517 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; @@ -4450,9 +4513,9 @@ YY_RULE_SETUP return(MS_STRING); } YY_BREAK -case 319: +case 323: YY_RULE_SETUP -#line 510 "maplexer.l" +#line 525 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; @@ -4463,10 +4526,10 @@ YY_RULE_SETUP return(MS_NUMBER); } YY_BREAK -case 320: -/* rule 320 can match eol */ +case 324: +/* rule 324 can match eol */ YY_RULE_SETUP -#line 520 "maplexer.l" +#line 535 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; @@ -4476,34 +4539,34 @@ YY_RULE_SETUP return(MS_BINDING); } YY_BREAK -case 321: +case 325: YY_RULE_SETUP -#line 529 "maplexer.l" +#line 544 "maplexer.l" { /* attribute binding - shape (fixed value) */ return(MS_TOKEN_BINDING_SHAPE); } YY_BREAK -case 322: +case 326: YY_RULE_SETUP -#line 533 "maplexer.l" +#line 548 "maplexer.l" { /* attribute binding - map cellsize */ return(MS_TOKEN_BINDING_MAP_CELLSIZE); } YY_BREAK -case 323: +case 327: YY_RULE_SETUP -#line 537 "maplexer.l" +#line 552 "maplexer.l" { /* attribute binding - data cellsize */ return(MS_TOKEN_BINDING_DATA_CELLSIZE); } YY_BREAK -case 324: -/* rule 324 can match eol */ +case 328: +/* rule 328 can match eol */ YY_RULE_SETUP -#line 541 "maplexer.l" +#line 556 "maplexer.l" { /* attribute binding - numeric (no quotes) */ msyytext++; @@ -4514,10 +4577,10 @@ YY_RULE_SETUP return(MS_TOKEN_BINDING_DOUBLE); } YY_BREAK -case 325: -/* rule 325 can match eol */ +case 329: +/* rule 329 can match eol */ YY_RULE_SETUP -#line 550 "maplexer.l" +#line 565 "maplexer.l" { /* attribute binding - string (single or double quotes) */ msyytext+=2; @@ -4528,10 +4591,10 @@ YY_RULE_SETUP return(MS_TOKEN_BINDING_STRING); } YY_BREAK -case 326: -/* rule 326 can match eol */ +case 330: +/* rule 330 can match eol */ YY_RULE_SETUP -#line 559 "maplexer.l" +#line 574 "maplexer.l" { /* attribute binding - time */ msyytext+=2; @@ -4542,9 +4605,9 @@ YY_RULE_SETUP return(MS_TOKEN_BINDING_TIME); } YY_BREAK -case 327: +case 331: YY_RULE_SETUP -#line 569 "maplexer.l" +#line 584 "maplexer.l" { MS_LEXER_STRING_REALLOC(msyystring_buffer, strlen(msyytext), msyystring_buffer_size, msyystring_buffer_ptr); @@ -4553,9 +4616,9 @@ YY_RULE_SETUP return(MS_NUMBER); } YY_BREAK -case 328: +case 332: YY_RULE_SETUP -#line 577 "maplexer.l" +#line 592 "maplexer.l" { MS_LEXER_STRING_REALLOC(msyystring_buffer, strlen(msyytext), msyystring_buffer_size, msyystring_buffer_ptr); @@ -4564,10 +4627,10 @@ YY_RULE_SETUP return(MS_TOKEN_LITERAL_NUMBER); } YY_BREAK -case 329: -/* rule 329 can match eol */ +case 333: +/* rule 333 can match eol */ YY_RULE_SETUP -#line 585 "maplexer.l" +#line 600 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; @@ -4577,10 +4640,10 @@ YY_RULE_SETUP return(MS_TOKEN_LITERAL_TIME); } YY_BREAK -case 330: -/* rule 330 can match eol */ +case 334: +/* rule 334 can match eol */ YY_RULE_SETUP -#line 594 "maplexer.l" +#line 609 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-2] = '\0'; @@ -4590,10 +4653,10 @@ YY_RULE_SETUP return(MS_IREGEX); } YY_BREAK -case 331: -/* rule 331 can match eol */ +case 335: +/* rule 335 can match eol */ YY_RULE_SETUP -#line 603 "maplexer.l" +#line 618 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; @@ -4603,9 +4666,9 @@ YY_RULE_SETUP return(MS_REGEX); } YY_BREAK -case 332: +case 336: YY_RULE_SETUP -#line 612 "maplexer.l" +#line 627 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; @@ -4615,9 +4678,9 @@ YY_RULE_SETUP return(MS_EXPRESSION); } YY_BREAK -case 333: +case 337: YY_RULE_SETUP -#line 621 "maplexer.l" +#line 636 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; @@ -4627,9 +4690,9 @@ YY_RULE_SETUP return(MS_LIST); } YY_BREAK -case 334: +case 338: YY_RULE_SETUP -#line 630 "maplexer.l" +#line 645 "maplexer.l" { msyystring_return_state = MS_STRING; msyystring_begin = msyytext[0]; @@ -4638,9 +4701,9 @@ YY_RULE_SETUP BEGIN(MSSTRING); } YY_BREAK -case 335: +case 339: YY_RULE_SETUP -#line 638 "maplexer.l" +#line 653 "maplexer.l" { MS_LEXER_STRING_REALLOC(msyystring_buffer, msyystring_size, msyystring_buffer_size, msyystring_buffer_ptr); @@ -4671,9 +4734,9 @@ YY_RULE_SETUP } } YY_BREAK -case 336: +case 340: YY_RULE_SETUP -#line 668 "maplexer.l" +#line 683 "maplexer.l" { MS_LEXER_STRING_REALLOC(msyystring_buffer, msyystring_size, msyystring_buffer_size, msyystring_buffer_ptr); @@ -4685,10 +4748,10 @@ YY_RULE_SETUP *msyystring_buffer_ptr++ = msyytext[0]; } YY_BREAK -case 337: -/* rule 337 can match eol */ +case 341: +/* rule 341 can match eol */ YY_RULE_SETUP -#line 679 "maplexer.l" +#line 694 "maplexer.l" { char *yptr = msyytext; while ( *yptr ) { @@ -4699,10 +4762,10 @@ YY_RULE_SETUP } } YY_BREAK -case 338: -/* rule 338 can match eol */ +case 342: +/* rule 342 can match eol */ YY_RULE_SETUP -#line 689 "maplexer.l" +#line 704 "maplexer.l" { msyytext++; msyytext[strlen(msyytext)-1] = '\0'; @@ -4729,9 +4792,9 @@ YY_RULE_SETUP BEGIN(INITIAL); } YY_BREAK -case 339: +case 343: YY_RULE_SETUP -#line 715 "maplexer.l" +#line 730 "maplexer.l" { msyystring_return_state = MS_TOKEN_LITERAL_STRING; msyystring_begin = msyytext[0]; @@ -4740,9 +4803,9 @@ YY_RULE_SETUP BEGIN(MSSTRING); } YY_BREAK -case 340: +case 344: YY_RULE_SETUP -#line 723 "maplexer.l" +#line 738 "maplexer.l" { MS_LEXER_STRING_REALLOC(msyystring_buffer, strlen(msyytext), msyystring_buffer_size, msyystring_buffer_ptr); @@ -4750,14 +4813,15 @@ YY_RULE_SETUP return(MS_STRING); } YY_BREAK -case 341: -/* rule 341 can match eol */ +case 345: +/* rule 345 can match eol */ YY_RULE_SETUP -#line 730 "maplexer.l" +#line 745 "maplexer.l" { msyylineno++; } YY_BREAK case YY_STATE_EOF(INITIAL): -#line 732 "maplexer.l" +case YY_STATE_EOF(CONFIG_FILE): +#line 747 "maplexer.l" { if( --include_stack_ptr < 0 ) return(EOF); /* end of main file */ @@ -4769,17 +4833,17 @@ case YY_STATE_EOF(INITIAL): } } YY_BREAK -case 342: -/* rule 342 can match eol */ +case 346: +/* rule 346 can match eol */ YY_RULE_SETUP -#line 743 "maplexer.l" +#line 758 "maplexer.l" { return(0); } YY_BREAK -case 343: +case 347: YY_RULE_SETUP -#line 747 "maplexer.l" +#line 762 "maplexer.l" { MS_LEXER_STRING_REALLOC(msyystring_buffer, strlen(msyytext), msyystring_buffer_size, msyystring_buffer_ptr); @@ -4787,17 +4851,17 @@ YY_RULE_SETUP return(0); } YY_BREAK -case 344: +case 348: YY_RULE_SETUP -#line 753 "maplexer.l" +#line 768 "maplexer.l" { return(msyytext[0]); } YY_BREAK -case 345: +case 349: YY_RULE_SETUP -#line 754 "maplexer.l" +#line 769 "maplexer.l" ECHO; YY_BREAK -#line 4801 "/vagrant/maplexer.c" +#line 4865 "/vagrant/maplexer.c" case YY_STATE_EOF(URL_VARIABLE): case YY_STATE_EOF(URL_STRING): case YY_STATE_EOF(EXPRESSION_STRING): @@ -5100,7 +5164,7 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1975 ) + if ( yy_current_state >= 1999 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; @@ -5128,11 +5192,11 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1975 ) + if ( yy_current_state >= 1999 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; - yy_is_jam = (yy_current_state == 1974); + yy_is_jam = (yy_current_state == 1998); return yy_is_jam ? 0 : yy_current_state; } @@ -5808,7 +5872,7 @@ void yyfree (void * ptr ) #define YYTABLES_NAME "yytables" -#line 754 "maplexer.l" +#line 769 "maplexer.l" /* diff --git a/maplexer.l b/maplexer.l index e21ac81301..d5cff3ce05 100644 --- a/maplexer.l +++ b/maplexer.l @@ -90,6 +90,7 @@ char path[MS_MAXPATHLEN]; %s INCLUDE %s MSSTRING %s MULTILINE_COMMENT +%s CONFIG_FILE %% if (msyystring_buffer == NULL) @@ -131,7 +132,7 @@ char path[MS_MAXPATHLEN]; msyy_scan_string(msyystring); msyysource=MS_URL_TOKENS; msyystate=MS_TOKENIZE_DEFAULT; - msyyreturncomments=0; + msyyreturncomments=0; (void) yyunput; /* just to avoid warning about it being unrefed */ break; case(MS_TOKENIZE_URL_STRING): @@ -153,6 +154,15 @@ char path[MS_MAXPATHLEN]; msyystate=MS_TOKENIZE_DEFAULT; msyyreturncomments=0; break; + case(MS_TOKENIZE_CONFIG): + BEGIN(CONFIG_FILE); + msyystring_begin_state = CONFIG_FILE; + msyysource=MS_FILE_TOKENS; + msyystate=MS_TOKENIZE_DEFAULT; + msyystring=NULL; + msyyreturncomments=0; + return(0); + break; case(99): BEGIN(INITIAL); /* may not need this one */ msyystring_begin_state = INITIAL; @@ -166,9 +176,9 @@ char path[MS_MAXPATHLEN]; break; } -[ \t\r]+ ; +[ \t\r]+ ; -(\/\/|#).* { if (msyyreturncomments) return(MS_COMMENT); } +(\/\/|#).* { if (msyyreturncomments) return(MS_COMMENT); } \/\* { BEGIN(MULTILINE_COMMENT); } \*\/ { BEGIN(INITIAL); } @@ -178,6 +188,11 @@ char path[MS_MAXPATHLEN]; _|\. ; +config { MS_LEXER_RETURN_TOKEN(MS_CONFIG_SECTION); } +env { MS_LEXER_RETURN_TOKEN(MS_CONFIG_SECTION_ENV); } +maps { MS_LEXER_RETURN_TOKEN(MS_CONFIG_SECTION_MAPS); } +plugins { MS_LEXER_RETURN_TOKEN(MS_CONFIG_SECTION_PLUGINS) } + or|\|\| { MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_OR); } and|&& { MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_AND); } not|! { MS_LEXER_RETURN_TOKEN(MS_TOKEN_LOGICAL_NOT); } @@ -264,7 +279,7 @@ char path[MS_MAXPATHLEN]; driver { MS_LEXER_RETURN_TOKEN(DRIVER); } empty { MS_LEXER_RETURN_TOKEN(EMPTY); } encoding { MS_LEXER_RETURN_TOKEN(ENCODING); } -end { MS_LEXER_RETURN_TOKEN(END); } +end { MS_LEXER_RETURN_TOKEN(END); } error { MS_LEXER_RETURN_TOKEN(ERROR); } expression { MS_LEXER_RETURN_TOKEN(EXPRESSION); } extent { MS_LEXER_RETURN_TOKEN(EXTENT); } @@ -301,7 +316,7 @@ char path[MS_MAXPATHLEN]; keyimage { MS_LEXER_RETURN_TOKEN(KEYIMAGE); } keysize { MS_LEXER_RETURN_TOKEN(KEYSIZE); } keyspacing { MS_LEXER_RETURN_TOKEN(KEYSPACING); } -label { MS_LEXER_RETURN_TOKEN(LABEL); } +label { MS_LEXER_RETURN_TOKEN(LABEL); } labelcache { MS_LEXER_RETURN_TOKEN(LABELCACHE); } labelformat { MS_LEXER_RETURN_TOKEN(LABELFORMAT); } labelitem { MS_LEXER_RETURN_TOKEN(LABELITEM); } @@ -626,7 +641,7 @@ char path[MS_MAXPATHLEN]; return(MS_LIST); } -\'|\" { +\'|\" { msyystring_return_state = MS_STRING; msyystring_begin = msyytext[0]; msyystring_size = 0; @@ -719,16 +734,16 @@ char path[MS_MAXPATHLEN]; BEGIN(MSSTRING); } -[a-z/\.][a-z0-9/\._\-\=]* { +[a-z/\.][a-z0-9/\._\-\=]* { MS_LEXER_STRING_REALLOC(msyystring_buffer, strlen(msyytext), msyystring_buffer_size, msyystring_buffer_ptr); strcpy(msyystring_buffer, msyytext); return(MS_STRING); } -\n { msyylineno++; } +\n { msyylineno++; } -<> { +<> { if( --include_stack_ptr < 0 ) return(EOF); /* end of main file */ else { @@ -743,7 +758,7 @@ char path[MS_MAXPATHLEN]; return(0); } -. { +. { MS_LEXER_STRING_REALLOC(msyystring_buffer, strlen(msyytext), msyystring_buffer_size, msyystring_buffer_ptr); strcpy(msyystring_buffer, msyytext); diff --git a/mapogcapi.cpp b/mapogcapi.cpp index 6c16b7b547..f33676ea59 100644 --- a/mapogcapi.cpp +++ b/mapogcapi.cpp @@ -31,6 +31,8 @@ #include "mapgml.h" #include "maptime.h" +#include "cpl_conv.h" + #include "third-party/include_nlohmann_json.hpp" #include "third-party/include_pantor_inja.hpp" @@ -252,7 +254,7 @@ static const char *getTemplateDirectory(mapObj *map, const char *key, const char if((directory = msOWSLookupMetadata(&(map->web.metadata), "A", key)) != NULL) return directory; - else if((directory = getenv(envvar)) != NULL) + else if((directory = CPLGetConfigOption(envvar, NULL)) != NULL) return directory; else return NULL; diff --git a/mappluginlayer.c b/mappluginlayer.c index a38ee6b22d..07d9890ad6 100644 --- a/mappluginlayer.c +++ b/mappluginlayer.c @@ -186,6 +186,10 @@ msPluginLayerInitializeVirtualTable(layerObj *layer) { VTFactoryItemObj *pVTFI; + if (!layer->plugin_library){ + return MS_FAILURE; + } + msAcquireLock(TLOCK_LAYER_VTABLE); pVTFI = lookupVTFItem(&gVirtualTableFactory, layer->plugin_library); diff --git a/mapproject.c b/mapproject.c index 5ad94e160c..0d17de9314 100644 --- a/mapproject.c +++ b/mapproject.c @@ -36,6 +36,7 @@ #include #include "mapaxisorder.h" +#include "cpl_conv.h" #include "ogr_srs_api.h" static char *ms_proj_lib = NULL; @@ -2341,7 +2342,7 @@ void msProjLibInitFromEnv() { const char *val; - if( (val=getenv( "PROJ_LIB" )) != NULL ) { + if( (val=CPLGetConfigOption( "PROJ_LIB", NULL )) != NULL ) { msSetPROJ_LIB(val, NULL); } } diff --git a/mapscript/mapscript.i b/mapscript/mapscript.i index 488eb2f947..1f4445f14a 100644 --- a/mapscript/mapscript.i +++ b/mapscript/mapscript.i @@ -260,16 +260,18 @@ typedef struct { %include "../../mapsymbol.h" %include "../../maphash.h" %include "../../maperror.h" +%include "../../mapserv-config.h" %apply Pointer NONNULL { mapObj *map }; %apply Pointer NONNULL { layerObj *layer }; +%apply Pointer NONNULL { configObj *config }; /* ============================================================================= Class extension methods are now included from separate interface files ============================================================================= */ - + %include "../swiginc/error.i" %include "../swiginc/map.i" %include "../swiginc/mapzoom.i" @@ -302,6 +304,7 @@ typedef struct { %include "../swiginc/legend.i" %include "../swiginc/referencemap.i" %include "../swiginc/querymap.i" +%include "../swiginc/config.i" /* ============================================================================= diff --git a/mapscript/php/mapscript_i.c b/mapscript/php/mapscript_i.c index d4f6b8f196..cbaf89ef17 100644 --- a/mapscript/php/mapscript_i.c +++ b/mapscript/php/mapscript_i.c @@ -48,7 +48,7 @@ mapObj *mapObj_new(char *filename, char *new_path) { if(filename && strlen(filename)) - return msLoadMap(filename, new_path); + return msLoadMap(filename, new_path, NULL); else { /* create an empty map, no layers etc... */ return msNewMapObj(); } diff --git a/mapscript/python/tests/cases/config_test.py b/mapscript/python/tests/cases/config_test.py new file mode 100644 index 0000000000..9505d7a705 --- /dev/null +++ b/mapscript/python/tests/cases/config_test.py @@ -0,0 +1,63 @@ +# Project: MapServer +# Purpose: xUnit style Python mapscript tests of Map +# Author: Seth Girvin, sgirvin@geographika.co.uk +# +# =========================================================================== +# Copyright (c) 2021, MapServer team +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# =========================================================================== + +import unittest +import mapscript +from .testing import TESTCONFIGFILE + + +class ConfigConstructorTestCase(unittest.TestCase): + + def testConfigConstructorFilenameArg(self): + """ConfigConstructorTestCase.testConfigConstructorFilenameArg: map constructor with filename argument""" + test_config = mapscript.configObj(TESTCONFIGFILE) + assert test_config.__class__.__name__ == "configObj" + assert test_config.thisown == 1 + + +class ConfigHashTableTests(unittest.TestCase): + + def testGetEnv(self): + + test_config = mapscript.configObj(TESTCONFIGFILE) + assert test_config.env.__class__.__name__ == "hashTableObj" + assert test_config.env.numitems == 1 + + def testGetMaps(self): + + test_config = mapscript.configObj(TESTCONFIGFILE) + assert test_config.maps.__class__.__name__ == "hashTableObj" + assert test_config.maps.numitems == 0 + + def testGetPlugins(self): + + test_config = mapscript.configObj(TESTCONFIGFILE) + assert test_config.plugins.__class__.__name__ == "hashTableObj" + assert test_config.plugins.numitems == 0 + + +if __name__ == '__main__': + unittest.main() diff --git a/mapscript/python/tests/cases/testing.py b/mapscript/python/tests/cases/testing.py index 59770bd5af..1720ca94f7 100644 --- a/mapscript/python/tests/cases/testing.py +++ b/mapscript/python/tests/cases/testing.py @@ -39,6 +39,7 @@ # define the path to mapserver test data TESTS_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), "data")) TESTMAPFILE = os.path.join(TESTS_PATH, 'test.map') +TESTCONFIGFILE = os.path.join(TESTS_PATH, 'mapserver-sample.conf') XMARKS_IMAGE = os.path.join(TESTS_PATH, 'xmarks.png') HOME_IMAGE = os.path.join(TESTS_PATH, 'home.png') TEST_IMAGE = os.path.join(TESTS_PATH, 'test.png') diff --git a/mapscript/swiginc/config.i b/mapscript/swiginc/config.i new file mode 100644 index 0000000000..f798365a24 --- /dev/null +++ b/mapscript/swiginc/config.i @@ -0,0 +1,43 @@ +/* =========================================================================== + Project: MapServer + Purpose: SWIG interface file for mapscript configObj extensions + Author: Steve Lime + Seth Girvin, sgirvin@geographika.co.uk + + =========================================================================== + Copyright (c) 1996-2021 Regents of the University of Minnesota. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + =========================================================================== +*/ + +%extend configObj +{ + + /// Create a new instance of :class:`configObj` + configObj(char *filename=NULL) + { + return msLoadConfig(filename); + } + + ~configObj() + { + msFreeConfig(self); + } +} diff --git a/mapscript/swiginc/map.i b/mapscript/swiginc/map.i index e14840e07d..79b4919e43 100644 --- a/mapscript/swiginc/map.i +++ b/mapscript/swiginc/map.i @@ -31,20 +31,30 @@ { /// Create a new instance of :class:`mapObj`. Note that the *filename* is optional. - mapObj(char *filename="") + mapObj(char *filename="", configObj *config=NULL) { if (filename && strlen(filename)) - return msLoadMap(filename, NULL); + return msLoadMap(filename, NULL, config); else { /* create an empty map, no layers etc... */ return msNewMapObj(); } } -#ifdef SWIGCSHARP - mapObj(char *mapText, int isMapText /*used as signature only to differentiate this constructor from default constructor*/ ) - { - return msLoadMapFromString(mapText, NULL); - } +#ifdef SWIGCSHARP + + mapObj(char *filename) + { + if (filename && strlen(filename)) + return msLoadMap(filename, NULL, NULL); + else { /* create an empty map, no layers etc... */ + return msNewMapObj(); + } + } + + mapObj(char *mapText, int isMapText /*used as signature only to differentiate this constructor from default constructor*/ ) + { + return msLoadMapFromString(mapText, NULL); + } #endif ~mapObj() diff --git a/mapserv-config.cpp b/mapserv-config.cpp new file mode 100644 index 0000000000..01403e2cba --- /dev/null +++ b/mapserv-config.cpp @@ -0,0 +1,192 @@ +/********************************************************************** + * $id$ + * + * Project: MapServer + * Purpose: Config File Support + * Author: Steve Lime and the MapServer team. + * + ********************************************************************** + * Copyright (c) 1996-2005 Regents of the University of Minnesota. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies of this Software or works derived from this Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + ****************************************************************************/ +#include "mapserver.h" +#include "mapfile.h" // format shares a couple of tokens + +#include "cpl_conv.h" + +#include + +extern "C" int msyylex(void); +extern "C" void msyyrestart(FILE *); + +extern "C" FILE *msyyin; +extern "C" int msyystate; +extern "C" int msyylineno; +extern "C" char *msyystring_buffer; + +static int initConfig(configObj *config) +{ + if (config == NULL) { + msSetError(MS_MEMERR, "Config object is NULL.", "initConfig()"); + return MS_FAILURE; + } + + if(initHashTable(&(config->env)) != MS_SUCCESS) return MS_FAILURE; + if(initHashTable(&(config->maps)) != MS_SUCCESS) return MS_FAILURE; + if(initHashTable(&(config->plugins)) != MS_SUCCESS) return MS_FAILURE; + + return MS_SUCCESS; +} + +void msFreeConfig(configObj *config) +{ + if(config == NULL) return; + if(&(config->env)) msFreeHashItems(&(config->env)); + if(&(config->maps)) msFreeHashItems(&(config->maps)); + if(&(config->plugins)) msFreeHashItems(&(config->plugins)); + + msFree(config); +} + +static int loadConfig(configObj *config) +{ + int token; + + if(config == NULL) return MS_FAILURE; + + token = msyylex(); + if(token != MS_CONFIG_SECTION) { + msSetError(MS_IDENTERR, "First token must be CONFIG, this doesn't look like a mapserver config file.", "msLoadConfig()"); + return MS_FAILURE; + } + + for(;;) { + switch(msyylex()) { + case(MS_CONFIG_SECTION_ENV): { + if(loadHashTable(&(config->env)) != MS_SUCCESS) return MS_FAILURE; + break; + } + case(MS_CONFIG_SECTION_MAPS): + if(loadHashTable(&config->maps) != MS_SUCCESS) return MS_FAILURE; + break; + case(MS_CONFIG_SECTION_PLUGINS): + if(loadHashTable(&config->plugins) != MS_SUCCESS) return MS_FAILURE; + break; + case(EOF): + msSetError(MS_EOFERR, NULL, "msLoadConfig()"); + return MS_FAILURE; + case(END): + if(msyyin) { + fclose(msyyin); + msyyin = NULL; + } + return MS_SUCCESS; + break; + default: + msSetError(MS_IDENTERR, "Parsing error near (%s):(line %d)", "msLoadConfig()", msyystring_buffer, msyylineno); + return MS_FAILURE; + } + } +} + +configObj *msLoadConfig(const char* ms_config_file) +{ + configObj *config = NULL; + + if (ms_config_file == NULL) { + // get config filename from environment + ms_config_file = getenv("MAPSERVER_CONFIG_FILE"); + } + + if(ms_config_file == NULL && MAPSERVER_CONFIG_FILE[0] != '\0') { + // Fallback to hardcoded file name + ms_config_file = MAPSERVER_CONFIG_FILE; + } + + if(ms_config_file == NULL) { + msSetError(MS_MISCERR, "No config file set.", "msLoadConfig()"); + return NULL; + } + + config = (configObj *)calloc(sizeof(configObj), 1); + MS_CHECK_ALLOC(config, sizeof(configObj), NULL); + + if(initConfig(config) != MS_SUCCESS) { + msFree(config); + return NULL; + } + + msAcquireLock(TLOCK_PARSER); + + if((msyyin = fopen(ms_config_file, "r")) == NULL) { + msSetError(MS_IOERR, "See mapserver.org/config_file.html for more information.", "msLoadConfig()"); + msReleaseLock(TLOCK_PARSER); + msFree(config); + return NULL; + } + + msyystate = MS_TOKENIZE_CONFIG; + msyylex(); // sets things up, but doesn't process any tokens + + msyyrestart(msyyin); // start at line 1 + msyylineno = 1; + + if(loadConfig(config) != MS_SUCCESS) { + msFreeConfig(config); + msReleaseLock(TLOCK_PARSER); + if(msyyin) { + fclose(msyyin); + msyyin = NULL; + } + return NULL; + } + msReleaseLock(TLOCK_PARSER); + + // load all env key/values using CPLSetConfigOption() - only do this *after* we have a good config + const char *key = msFirstKeyFromHashTable(&config->env); + if(key != NULL) { + CPLSetConfigOption(key, msLookupHashTable(&config->env, key)); + + const char *last_key = key; + while((key = msNextKeyFromHashTable(&config->env, last_key)) != NULL) { + CPLSetConfigOption(key, msLookupHashTable(&config->env, key)); + last_key = key; + } + } + + return config; +} + +const char *msConfigGetEnv(const configObj *config, const char *key) +{ + if(config == NULL || key == NULL) return NULL; + return msLookupHashTable(&config->env, key); +} + +const char *msConfigGetMap(const configObj *config, const char *key) +{ + if(config == NULL || key == NULL) return NULL; + return msLookupHashTable(&config->maps, key); +} + +const char *msConfigGetPlugin(const configObj *config, const char *key) +{ + if(config == NULL || key == NULL) return NULL; + return msLookupHashTable(&config->plugins, key); +} diff --git a/mapserv-config.h b/mapserv-config.h new file mode 100644 index 0000000000..7d8f9e9a69 --- /dev/null +++ b/mapserv-config.h @@ -0,0 +1,31 @@ +#ifndef MAPSERV_CONFIG_H +#define MAPSERV_CONFIG_H + +#include "maphash.h" + +#ifdef __cplusplus +extern "C" { +#endif + +enum MS_CONFIG_SECTIONS { MS_CONFIG_SECTION=3000, MS_CONFIG_SECTION_ENV, MS_CONFIG_SECTION_MAPS, MS_CONFIG_SECTION_PLUGINS }; + +/** +The :ref:`CONFIG ` object +*/ +typedef struct { + hashTableObj env; ///< Key-value pairs of environment variables and values + hashTableObj maps; ///< Key-value pairs of Mapfile names and paths + hashTableObj plugins; ///< Key-value pairs of plugin names and paths +} configObj; + +MS_DLL_EXPORT configObj *msLoadConfig(const char* ms_config_file); +MS_DLL_EXPORT void msFreeConfig(configObj *config); +MS_DLL_EXPORT const char *msConfigGetEnv(const configObj *config, const char *key); +MS_DLL_EXPORT const char *msConfigGetMap(const configObj *config, const char *key); +MS_DLL_EXPORT const char *msConfigGetPlugin(const configObj *config, const char *key); + +#ifdef __cplusplus +} /* extern C */ +#endif + +#endif diff --git a/mapserv.c b/mapserv.c index 88712a5feb..29f668cce7 100644 --- a/mapserv.c +++ b/mapserv.c @@ -135,47 +135,67 @@ int main(int argc, char *argv[]) int sendheaders = MS_TRUE; struct mstimeval execstarttime, execendtime; struct mstimeval requeststarttime, requestendtime; - mapservObj* mapserv = NULL; + mapservObj *mapserv = NULL; + configObj *config = NULL; + + /* + ** Process -v and -h command line arguments first end exit. We want to avoid any error messages + ** associated with msLoadConfig() or msSetup(). + */ + for( iArg = 1; iArg < argc; iArg++ ) { + if( strcmp(argv[iArg],"-v") == 0 ) { + printf("%s\n", msGetVersion()); + fflush(stdout); + exit(0); + } else if (strcmp(argv[iArg], "-h") == 0 || strcmp(argv[iArg], "--help") == 0) { + printf("Usage: mapserv [--help] [-v] [-nh] [QUERY_STRING=value]\n"); + printf("\n"); + printf("Options :\n"); + printf(" -h, --help Display this help message.\n"); + printf(" -v Display version and exit.\n"); + printf(" -nh Suppress HTTP headers in CGI mode.\n"); + printf(" QUERY_STRING=value Set the QUERY_STRING in GET request mode.\n"); + printf(" PATH_INFO=value Set the PATH_INFO for an API request.\n"); + fflush(stdout); + exit(0); + } + } + + config = msLoadConfig(NULL); // first thing + if(config == NULL) { +#ifdef USE_FASTCGI + msIO_installFastCGIRedirect(); // FastCGI setup for error handling here + FCGI_Accept(); +#endif + msCGIWriteError(mapserv); + exit(0); + } /* -------------------------------------------------------------------- */ /* Initialize mapserver. This sets up threads, GD and GEOS as */ /* well as using MS_ERRORFILE and MS_DEBUGLEVEL env vars if set. */ /* -------------------------------------------------------------------- */ if( msSetup() != MS_SUCCESS ) { +#ifdef USE_FASTCGI + msIO_installFastCGIRedirect(); // FastCGI setup for error handling here + FCGI_Accept(); +#endif msCGIWriteError(mapserv); msCleanup(); + msFreeConfig(config); exit(0); } if(msGetGlobalDebugLevel() >= MS_DEBUGLEVEL_TUNING) msGettimeofday(&execstarttime, NULL); - /* push high-value ENV vars into the CPL global config - primarily for IIS/FastCGI */ - const char* const apszEnvVars[] = { - "CURL_CA_BUNDLE", "MS_MAPFILE", "MS_MAP_NO_PATH", "MS_MAP_PATTERN", "MS_MAP_ENV_PATTERN", - "MS_MAP_BAD_PATTERN", "MS_MAP_ENV_BAD_PATTERN", - NULL /* guard */ }; - for( int i = 0; apszEnvVars[i] != NULL; ++i ) { - const char* value = getenv(apszEnvVars[i]); - if(value) CPLSetConfigOption(apszEnvVars[i], value); - } - /* -------------------------------------------------------------------- */ - /* Process arguments. In normal use as a cgi-bin there are no */ + /* Process arguments. In normal use as a cgi-bin there are no */ /* commandline switches, but we provide a few for test/debug */ - /* purposes, and to query the version info. */ + /* purposes. */ /* -------------------------------------------------------------------- */ for( iArg = 1; iArg < argc; iArg++ ) { - /* Keep only "-v", "-nh" and "QUERY_STRING=..." enabled by default. - * The others will require an explicit -DMS_ENABLE_CGI_CL_DEBUG_ARGS - * at compile time. Do *NOT* enable them since they can cause security - * problems : https://github.com/mapserver/mapserver/issues/3485 - */ - if( strcmp(argv[iArg],"-v") == 0 ) { - printf("%s\n", msGetVersion()); - fflush(stdout); - exit(0); - } else if(strcmp(argv[iArg], "-nh") == 0) { + if(strcmp(argv[iArg], "-nh") == 0) { sendheaders = MS_FALSE; msIO_setHeaderEnabled( MS_FALSE ); } else if( strncmp(argv[iArg], "QUERY_STRING=", 13) == 0 ) { @@ -185,52 +205,9 @@ int main(int argc, char *argv[]) putenv( argv[iArg] ); } else if( strncmp(argv[iArg], "PATH_INFO=", 10) == 0 ) { /* Debugging hook for APIs... pass "PATH_INFO=..." on the command-line */ + putenv( "REQUEST_METHOD=GET" ); + /* coverity[tainted_string] */ putenv( argv[iArg] ); - } else if (strcmp(argv[iArg], "--h") == 0 || strcmp(argv[iArg], "--help") == 0) { - printf("Usage: mapserv [--help] [-v] [-nh] [QUERY_STRING=value]\n"); -#ifdef MS_ENABLE_CGI_CL_DEBUG_ARGS - printf(" [-tmpbase dirname] [-t mapfilename] [MS_ERRORFILE=value] [MS_DEBUGLEVEL=value]\n"); -#endif - printf("\n"); - printf("Options :\n"); - printf(" -h, --help Display this help message.\n"); - printf(" -v Display version and exit.\n"); - printf(" -nh Suppress HTTP headers in CGI mode.\n"); - printf(" QUERY_STRING=value Set the QUERY_STRING in GET request mode.\n"); - printf(" PATH_INFO=value Set the PATH_INFO for an API request.\n"); -#ifdef MS_ENABLE_CGI_CL_DEBUG_ARGS - printf(" -tmpbase dirname Define a forced temporary directory.\n"); - printf(" -t mapfilename Display the tokens of the mapfile after parsing.\n"); - printf(" MS_ERRORFILE=filename Set error file.\n"); - printf(" MS_DEBUGLEVEL=value Set debug level.\n"); -#endif - exit(0); - } -#ifdef MS_ENABLE_CGI_CL_DEBUG_ARGS - else if( iArg < argc-1 && strcmp(argv[iArg], "-tmpbase") == 0) { - msForceTmpFileBase( argv[++iArg] ); - } else if( iArg < argc-1 && strcmp(argv[iArg], "-t") == 0) { - char **tokens; - int numtokens=0; - - if((tokens=msTokenizeMap(argv[iArg+1], &numtokens)) != NULL) { - int i; - for(i=0; i #include "mapproject.h" #include "cgiutil.h" - +#include "mapserv-config.h" #include /* regular expression support */ @@ -1957,6 +1957,7 @@ void msPopulateTextSymbolForLabelAndString(textSymbolObj *ts, labelObj *l, char queryMapObj querymap; ///< See :ref:`QUERYMAP ` webObj web; ///< See :ref:`WEB ` + const configObj *config; #ifdef SWIG %mutable; #endif /* SWIG */ @@ -2114,6 +2115,7 @@ void msPopulateTextSymbolForLabelAndString(textSymbolObj *ts, labelObj *l, char MS_DLL_EXPORT int initLayerCompositer(LayerCompositer *compositer); MS_DLL_EXPORT void initLeader(labelLeaderObj *leader); MS_DLL_EXPORT void freeGrid( graticuleObj *pGraticule); + int loadHashTable(hashTableObj *ptable); // used by other file loading code MS_DLL_EXPORT featureListNodeObjPtr insertFeatureList(featureListNodeObjPtr *list, shapeObj *shape); MS_DLL_EXPORT void freeFeatureList(featureListNodeObjPtr list); @@ -2177,7 +2179,7 @@ void msPopulateTextSymbolForLabelAndString(textSymbolObj *ts, labelObj *l, char MS_DLL_EXPORT int msValidateParameter(const char *value, const char *pattern1, const char *pattern2, const char *pattern3, const char *pattern4); MS_DLL_EXPORT int msGetLayerIndex(mapObj *map, const char *name); MS_DLL_EXPORT int msGetSymbolIndex(symbolSetObj *set, char *name, int try_addimage_if_notfound); - MS_DLL_EXPORT mapObj *msLoadMap(const char *filename, const char *new_mappath); + MS_DLL_EXPORT mapObj *msLoadMap(const char *filename, const char *new_mappath, const configObj *config); MS_DLL_EXPORT int msTransformXmlMapfile(const char *stylesheet, const char *xmlMapfile, FILE *tmpfile); MS_DLL_EXPORT int msSaveMap(mapObj *map, char *filename); MS_DLL_EXPORT void msFreeCharArray(char **array, int num_items); diff --git a/mapservutil.c b/mapservutil.c index efd1dfcc58..de0271c844 100644 --- a/mapservutil.c +++ b/mapservutil.c @@ -35,6 +35,10 @@ #include "cpl_conv.h" +#include "mapserver-config.h" + +#include "cpl_conv.h" + /* ** Enumerated types, keep the query modes in sequence and at the end of the enumeration (mode enumeration is in maptemplate.h). */ @@ -144,27 +148,22 @@ static void setClassGroup(layerObj *layer, char *classgroup) ** Extract Map File name from params and load it. ** Returns map object or NULL on error. */ -mapObj *msCGILoadMap(mapservObj *mapserv) +mapObj *msCGILoadMap(mapservObj *mapserv, configObj *config) { int i, j; mapObj *map = NULL; const char *ms_map_bad_pattern_default = "[/\\]{2}|[/\\]?\\.+[/\\]|,"; - const char *ms_map_env_bad_pattern_default = "^(AUTH_.*|CERT_.*|CONTENT_(LENGTH|TYPE)|DOCUMENT_(ROOT|URI)|GATEWAY_INTERFACE|HTTP.*|QUERY_STRING|PATH_(INFO|TRANSLATED)|REMOTE_.*|REQUEST_(METHOD|URI)|SCRIPT_(FILENAME|NAME)|SERVER_.*)"; int ms_mapfile_tainted = MS_TRUE; const char *ms_mapfile = CPLGetConfigOption("MS_MAPFILE", NULL); const char *ms_map_no_path = CPLGetConfigOption("MS_MAP_NO_PATH", NULL); const char *ms_map_pattern = CPLGetConfigOption("MS_MAP_PATTERN", NULL); - const char *ms_map_env_pattern = CPLGetConfigOption("MS_MAP_ENV_PATTERN", NULL); const char *ms_map_bad_pattern = CPLGetConfigOption("MS_MAP_BAD_PATTERN", NULL); if(ms_map_bad_pattern == NULL) ms_map_bad_pattern = ms_map_bad_pattern_default; - const char *ms_map_env_bad_pattern = CPLGetConfigOption("MS_MAP_ENV_BAD_PATTERN", NULL); - if(ms_map_env_bad_pattern == NULL) ms_map_env_bad_pattern = ms_map_env_bad_pattern_default; - const char *map_value = NULL; if(mapserv->request->api_path != NULL) { @@ -185,21 +184,13 @@ mapObj *msCGILoadMap(mapservObj *mapserv) } ms_mapfile_tainted = MS_FALSE; } else { - if(getenv(map_value)) { /* an environment variable references the actual file to use */ - /* validate env variable name */ - if(msIsValidRegex(ms_map_env_bad_pattern) == MS_FALSE || msCaseEvalRegex(ms_map_env_bad_pattern, map_value) == MS_TRUE) { - msSetError(MS_WEBERR, "CGI variable \"map\" fails to validate.", "msCGILoadMap()"); - return NULL; - } - if(ms_map_env_pattern != NULL && msEvalRegex(ms_map_env_pattern, map_value) != MS_TRUE) { - msSetError(MS_WEBERR, "CGI variable \"map\" fails to validate.", "msCGILoadMap()"); - return NULL; - } - ms_mapfile = getenv(map_value); + ms_mapfile = msConfigGetMap(config, map_value); /* does NOT check the environment, only the config */ + if(ms_mapfile) { + ms_mapfile_tainted = MS_FALSE; } else { - /* by now we know the request isn't for something in an environment variable */ + /* by now we know the map parameter isn't referencing something in the configuration */ if(ms_map_no_path != NULL) { - msSetError(MS_WEBERR, "CGI variable \"map\" not found in environment and this server is not configured for full paths.", "msCGILoadMap()"); + msSetError(MS_WEBERR, "CGI variable \"map\" not found in configuration and this server is not configured for full paths.", "msCGILoadMap()"); return NULL; } ms_mapfile = map_value; @@ -219,7 +210,7 @@ mapObj *msCGILoadMap(mapservObj *mapserv) } /* ok to try to load now */ - map = msLoadMap(ms_mapfile, NULL); + map = msLoadMap(ms_mapfile, NULL, config); if(!map) return NULL; if(!msLookupHashTable(&(map->web.validation), "immutable")) { @@ -298,7 +289,7 @@ int msCGISetMode(mapservObj *mapserv) int i, j; - mode = getenv("MS_MODE"); + mode = CPLGetConfigOption("MS_MODE", NULL); for( i=0; irequest->NumParams; i++ ) { if(strcasecmp(mapserv->request->ParamNames[i], "mode") == 0) { mode = mapserv->request->ParamValues[i]; @@ -1849,12 +1840,14 @@ int msCGIHandler(const char *query_string, void **out_buffer, size_t *buffer_len int x,m=0; struct mstimeval execstarttime = {0}, execendtime = {0}; struct mstimeval requeststarttime = {0}, requestendtime = {0}; - mapservObj* mapserv = NULL; + mapservObj *mapserv = NULL; char *queryString = NULL; int maxParams = MS_DEFAULT_CGI_PARAMS; msIOContext *ctx; msIOBuffer *buf; + configObj *config = NULL; + msIO_installStdoutToBuffer(); /* Use PROJ_LIB env vars if set */ @@ -1875,6 +1868,12 @@ int msCGIHandler(const char *query_string, void **out_buffer, size_t *buffer_len msIO_printf("No query information to decode. QUERY_STRING not set.\n"); goto end_request; } + + config = msLoadConfig(NULL); + if(config == NULL) { + msCGIWriteError(mapserv); + goto end_request; + } mapserv = msAllocMapServObj(); mapserv->request->type = MS_GET_REQUEST; @@ -1908,7 +1907,7 @@ int msCGIHandler(const char *query_string, void **out_buffer, size_t *buffer_len goto end_request; } - mapserv->map = msCGILoadMap(mapserv); + mapserv->map = msCGILoadMap(mapserv, config); if(!mapserv->map) { msCGIWriteError(mapserv); goto end_request; @@ -1917,7 +1916,6 @@ int msCGIHandler(const char *query_string, void **out_buffer, size_t *buffer_len if( mapserv->map->debug >= MS_DEBUGLEVEL_TUNING) msGettimeofday(&requeststarttime, NULL); - if(msCGIDispatchRequest(mapserv) != MS_SUCCESS) { msCGIWriteError(mapserv); goto end_request; @@ -1933,6 +1931,7 @@ int msCGIHandler(const char *query_string, void **out_buffer, size_t *buffer_len (requeststarttime.tv_sec+requeststarttime.tv_usec/1.0e6) ); } msFreeMapServObj(mapserv); + msFreeConfig(config); } /* normal case, processing is complete */ diff --git a/maptemplate.c b/maptemplate.c index 0cef8b9343..367c14dffc 100644 --- a/maptemplate.c +++ b/maptemplate.c @@ -35,6 +35,8 @@ #include "maptile.h" #include "mapows.h" +#include "cpl_conv.h" + #include #include #include @@ -3050,8 +3052,9 @@ char *generateLegendTemplate(mapservObj *mapserv) if(strcasecmp(mapserv->request->ParamNames[i], "map") == 0) break; if(i == mapserv->request->NumParams) { - if( getenv("MS_MAPFILE")) - pszMapFname = msStringConcatenate(pszMapFname, getenv("MS_MAPFILE")); + const char *ms_mapfile = CPLGetConfigOption("MS_MAPFILE", NULL); + if(ms_mapfile) + pszMapFname = msStringConcatenate(pszMapFname, ms_mapfile); } else { if(getenv(mapserv->request->ParamValues[i])) /* an environment references the actual file to use */ pszMapFname = msStringConcatenate(pszMapFname, getenv(mapserv->request->ParamValues[i])); @@ -4498,10 +4501,10 @@ int msReturnOpenLayersPage(mapservObj *mapserv) /* check if the environment variable or config MS_OPENLAYERS_JS_URL is set */ tmpUrl = msGetConfigOption(mapserv->map, "MS_OPENLAYERS_JS_URL"); - if (tmpUrl) - openlayersUrl = (char*)tmpUrl; - else if (getenv("MS_OPENLAYERS_JS_URL")) - openlayersUrl = getenv("MS_OPENLAYERS_JS_URL"); + if(tmpUrl == NULL) tmpUrl = CPLGetConfigOption("MS_OPENLAYERS_JS_URL", NULL); + + if(tmpUrl) + openlayersUrl = (char *)tmpUrl; if (mapserv->Mode == BROWSE) { msSetError(MS_WMSERR, "At least one layer name required in LAYERS.", diff --git a/maputil.c b/maputil.c index 2b8f21c287..37258ad7cc 100644 --- a/maputil.c +++ b/maputil.c @@ -40,6 +40,7 @@ #include "mapows.h" #include "gdal.h" +#include "cpl_conv.h" #if defined(_WIN32) && !defined(__CYGWIN__) # include @@ -1560,6 +1561,7 @@ char *msTmpPath(mapObj *map, const char *mappath, const char *tmppath) char szPath[MS_MAXPATHLEN]; const char *fullPath; const char *tmpBase; + const char *ms_temppath; #ifdef _WIN32 DWORD dwRetVal = 0; TCHAR lpTempPathBuffer[MAX_PATH]; @@ -1569,8 +1571,8 @@ char *msTmpPath(mapObj *map, const char *mappath, const char *tmppath) tmpBase = ForcedTmpBase; else if (tmppath != NULL) tmpBase = tmppath; - else if (getenv("MS_TEMPPATH")) - tmpBase = getenv("MS_TEMPPATH"); + else if ((ms_temppath = CPLGetConfigOption("MS_TEMPPATH", NULL)) != NULL) + tmpBase = ms_temppath; else if (map && map->web.temppath) tmpBase = map->web.temppath; else { /* default paths */ @@ -1993,7 +1995,7 @@ shapeObj *msOffsetPolyline(shapeObj *p, double offsetx, double offsety) int msSetup() { #ifdef _WIN32 - char* maxfiles = getenv("MS_MAX_OPEN_FILES"); + const char *maxfiles = CPLGetConfigOption("MS_MAX_OPEN_FILES", NULL); if (maxfiles) { int res = _getmaxstdio(); if (res < 2048) { diff --git a/msautotest/etc/mapserv.conf b/msautotest/etc/mapserv.conf new file mode 100644 index 0000000000..e494ba0ec8 --- /dev/null +++ b/msautotest/etc/mapserv.conf @@ -0,0 +1,9 @@ +CONFIG + ENV + MS_MAP_PATTERN "." + END + # following used by the mssql tests on Appveyor + PLUGINS + "mssql" "C:\projects\mapserver\build\Release\msplugin_mssql2008.dll" + END +END diff --git a/msautotest/mssql/include/mssql_connection.map b/msautotest/mssql/include/mssql_connection.map index d5962c9079..022899d047 100644 --- a/msautotest/mssql/include/mssql_connection.map +++ b/msautotest/mssql/include/mssql_connection.map @@ -1,4 +1,4 @@ CONNECTIONTYPE PLUGIN - PLUGIN "C:\projects\mapserver\build\Release\msplugin_mssql2008.dll" + PLUGIN "mssql" CONNECTION "SERVER=(local)\SQL2019;DATABASE=msautotest;uid=sa;pwd=Password12!;" STATUS OFF diff --git a/msautotest/pytest.ini b/msautotest/pytest.ini index f80797a2ba..fb7a39428c 100644 --- a/msautotest/pytest.ini +++ b/msautotest/pytest.ini @@ -2,3 +2,5 @@ python_files = *.py testpaths = api misc gdal query renderers wxs sld mspython norecursedirs = php mssql +env = + MAPSERVER_CONFIG_FILE=../etc/mapserv.conf diff --git a/scalebar.c b/scalebar.c index 67ba5f4398..3f342b801d 100644 --- a/scalebar.c +++ b/scalebar.c @@ -48,7 +48,7 @@ int main(int argc, char *argv[]) exit(1); } - map = msLoadMap(argv[1], NULL); + map = msLoadMap(argv[1], NULL, NULL); if(!map) { msWriteError(stderr); exit(1); diff --git a/tests/mapserver-sample.conf b/tests/mapserver-sample.conf new file mode 100644 index 0000000000..288f87dda5 --- /dev/null +++ b/tests/mapserver-sample.conf @@ -0,0 +1,48 @@ +# +# Sample MapServer 8.0 Config File +# +CONFIG + + # + # Environment variables (see https://mapserver.org/environment_variables.html) + # + ENV + # + # Limit Mapfile Access + # + # MS_MAP_NO_PATH "1" + MS_MAP_PATTERN "^/opt/mapserver" ## required + + # + # Global Log/Debug Setup + # + # MS_DEBUGLEVEL "5" + # MS_ERRORFILE "/opt/mapserver/logs/mapserver.log" + + # + # Default Map + # + # MS_MAPFILE "/opt/mapserver/test/test.map" + + # + # Other Options + # + # MS_ENCRYPTION_KEY + # MS_USE_GLOBAL_FT_CACHE + # MS_PDF_CREATION_DATE + # MS_MAPFILE_PATTERN "\.map$" + # MS_XMLMAPFILE_XSLT + # MS_MODE + # MS_OPENLAYERS_JS_URL + # MS_TEMPPATH + # MS_MAX_OPEN_FILES + END + + # + # Map aliases + # + MAPS + # TEST_MAPFILE "/opt/mapserver/test/test.map" + END + +END