From de3a5a8d673da1bb335d86d0717a612171c8c093 Mon Sep 17 00:00:00 2001 From: liuxy0551 Date: Mon, 15 Jun 2026 20:00:17 +0800 Subject: [PATCH] refactor: optimize hivesql grammar --- src/grammar/hive/HiveSqlParser.g4 | 436 +- src/lib/hive/HiveSqlParser.interp | 58 +- src/lib/hive/HiveSqlParser.ts | 16895 +++++++--------- src/lib/hive/HiveSqlParserListener.ts | 540 +- src/lib/hive/HiveSqlParserVisitor.ts | 340 +- .../hive/suggestion/tokenSuggestion.test.ts | 2 - .../hive/syntax/fixtures/authorization.sql | 20 + .../hive/syntax/fixtures/createRole.sql | 4 +- test/parser/hive/syntax/fixtures/drop.sql | 2 + test/parser/hive/syntax/fixtures/select.sql | 26 +- 10 files changed, 7381 insertions(+), 10942 deletions(-) diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index a8c684639..69b299a15 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -90,7 +90,9 @@ execStatement ; loadStatement - : KW_LOAD KW_DATA KW_LOCAL? KW_INPATH StringLiteral KW_OVERWRITE? KW_INTO KW_TABLE tableOrPartition inputFileFormat? + : KW_LOAD KW_DATA KW_LOCAL? KW_INPATH StringLiteral KW_OVERWRITE? KW_INTO KW_TABLE tableOrPartition ( + KW_INPUTFORMAT inFmt=StringLiteral KW_SERDE serdeCls=StringLiteral + )? ; replicationClause @@ -142,7 +144,6 @@ ddlStatement | alterScheduledQueryStatement | dropScheduledQueryStatement | dropViewStatement - | dropMaterializedViewStatement | createFunctionStatement | createMacroStatement | dropFunctionStatement @@ -152,11 +153,8 @@ ddlStatement | dropIndexStatement | analyzeStatement | lockStatement - | unlockStatement | lockDatabase - | unlockDatabase | createRoleStatement - | dropRoleStatement | grantPrivileges | revokePrivileges | showGrants @@ -187,6 +185,10 @@ restrictOrCascade | KW_CASCADE ; +storedAsDirs + : KW_STORED KW_AS KW_DIRECTORIES + ; + rewriteEnabled : enable KW_REWRITE ; @@ -195,21 +197,15 @@ rewriteDisabled : disable KW_REWRITE ; -storedAsDirs - : KW_STORED KW_AS KW_DIRECTORIES - ; - createDatabaseStatement - : KW_CREATE KW_REMOTE? db_schema ifNotExists? name=dbSchemaNameCreate databaseComment? locationPath? ( - KW_MANAGEDLOCATION locn=StringLiteral - )? (KW_WITH KW_DBPROPERTIES dbprops=keyValueProperties)? - | KW_CREATE KW_REMOTE db_schema ifNotExists? name=dbSchemaNameCreate databaseComment? dbConnectorName ( + : KW_CREATE KW_REMOTE? db_schema ifNotExists? name=dbSchemaNameCreate ( + KW_COMMENT comment=StringLiteral + )? locationPath? (KW_MANAGEDLOCATION locn=StringLiteral)? ( KW_WITH KW_DBPROPERTIES dbprops=keyValueProperties )? - ; - -dbConnectorName - : KW_USING dcName=dbSchemaName + | KW_CREATE KW_REMOTE db_schema ifNotExists? name=dbSchemaNameCreate ( + KW_COMMENT comment=StringLiteral + )? KW_USING dcName=dbSchemaName (KW_WITH KW_DBPROPERTIES dbprops=keyValueProperties)? ; switchDatabaseStatement @@ -220,10 +216,6 @@ dropDatabaseStatement : KW_DROP db_schema ifExists? dbSchemaName restrictOrCascade? ; -databaseComment - : KW_COMMENT comment=StringLiteral - ; - truncateTableStatement : KW_TRUNCATE KW_TABLE? tableOrPartition (KW_COLUMNS LPAREN columnNameList RPAREN)? KW_FORCE? ; @@ -232,10 +224,6 @@ dropTableStatement : KW_DROP KW_TABLE ifExists? tableName KW_PURGE? replicationClause? ; -inputFileFormat - : KW_INPUTFORMAT inFmt=StringLiteral KW_SERDE serdeCls=StringLiteral - ; - tabTypeExpr : id_ (DOT id_)? (id_ (DOT (KW_ELEM_TYPE | KW_KEY_TYPE | KW_VALUE_TYPE | id_))*)? ; @@ -279,38 +267,42 @@ db_schema ; showStatement - : KW_SHOW (KW_DATABASES | KW_SCHEMAS) (KW_LIKE showStmtIdentifier)? - | KW_SHOW isExtended=KW_EXTENDED? KW_TABLES (from_in db_name=dbSchemaName)? filter=showTablesFilterExpr? - | KW_SHOW KW_VIEWS (from_in db_name=dbSchemaName)? ( - KW_LIKE showStmtIdentifier - | showStmtIdentifier - )? - | KW_SHOW KW_MATERIALIZED KW_VIEWS (from_in db_name=dbSchemaName)? ( - KW_LIKE showStmtIdentifier - | showStmtIdentifier - )? - | KW_SHOW KW_SORTED? KW_COLUMNS from_in tableOrView (from_in db_name=dbSchemaName)? ( - KW_LIKE showStmtIdentifier - | showStmtIdentifier - )? - | KW_SHOW KW_FUNCTIONS (KW_LIKE functionNameForDDL)? - | KW_SHOW KW_PARTITIONS tabOrViewName=tableOrView partitionSpec? whereClause? orderByClause? limitClause? - | KW_SHOW KW_CREATE (db_schema db_name=dbSchemaName | KW_TABLE tabName=tableName) - | KW_SHOW KW_TABLE KW_EXTENDED (from_in db_name=dbSchemaName)? KW_LIKE showStmtIdentifier partitionSpec? - | KW_SHOW KW_TBLPROPERTIES tableName (LPAREN prptyName=StringLiteral RPAREN)? - | KW_SHOW KW_LOCKS ( - db_schema dbName=dbSchemaName isExtended=KW_EXTENDED? - | parttype=partTypeExpr? isExtended=KW_EXTENDED? - ) - | KW_SHOW KW_COMPACTIONS ( - KW_COMPACT_ID EQUAL compactId=Number - | ((db_schema dbName=dbSchemaName) | parttype=partTypeExpr?) compactionPool? compactionType? compactionStatus? orderByClause? limitClause? + : KW_SHOW ( + (KW_DATABASES | KW_SCHEMAS) (KW_LIKE showStmtIdentifier)? + | isExtended=KW_EXTENDED? KW_TABLES (from_in db_name=dbSchemaName)? filter=showTablesFilterExpr? + | KW_VIEWS (from_in db_name=dbSchemaName)? ( + KW_LIKE showStmtIdentifier + | showStmtIdentifier + )? + | KW_MATERIALIZED KW_VIEWS (from_in db_name=dbSchemaName)? ( + KW_LIKE showStmtIdentifier + | showStmtIdentifier + )? + | KW_SORTED? KW_COLUMNS from_in tableOrView (from_in db_name=dbSchemaName)? ( + KW_LIKE showStmtIdentifier + | showStmtIdentifier + )? + | KW_FUNCTIONS (KW_LIKE functionNameForDDL)? + | KW_PARTITIONS tabOrViewName=tableOrView partitionSpec? whereClause? orderByClause? limitClause? + | KW_CREATE (db_schema db_name=dbSchemaName | KW_TABLE tabName=tableName) + | KW_TABLE KW_EXTENDED (from_in db_name=dbSchemaName)? KW_LIKE showStmtIdentifier partitionSpec? + | KW_TBLPROPERTIES tableName (LPAREN prptyName=StringLiteral RPAREN)? + | KW_LOCKS ( + db_schema dbName=dbSchemaName isExtended=KW_EXTENDED? + | parttype=partTypeExpr? isExtended=KW_EXTENDED? + ) + | KW_COMPACTIONS ( + KW_COMPACT_ID EQUAL compactId=Number + | ((db_schema dbName=dbSchemaName) | parttype=partTypeExpr?) ( + KW_POOL poolName=StringLiteral + )? (KW_TYPE compactType=StringLiteral)? (KW_STATUS status=StringLiteral)? orderByClause? limitClause? + ) + | KW_TRANSACTIONS + | KW_CONF StringLiteral + | KW_RESOURCE (KW_PLAN rp_name=id_ | KW_PLANS) + | KW_DATACONNECTORS + | KW_FORMATTED? (KW_INDEX | KW_INDEXES) KW_ON tableName (from_in dbSchemaName)? ) - | KW_SHOW KW_TRANSACTIONS - | KW_SHOW KW_CONF StringLiteral - | KW_SHOW KW_RESOURCE (KW_PLAN rp_name=id_ | KW_PLANS) - | KW_SHOW KW_DATACONNECTORS - | KW_SHOW KW_FORMATTED? (KW_INDEX | KW_INDEXES) KW_ON tableName (from_in dbSchemaName)? ; showTablesFilterExpr @@ -320,48 +312,33 @@ showTablesFilterExpr ; lockStatement - : KW_LOCK KW_TABLE tableOrPartition lockMode + : (KW_LOCK | KW_UNLOCK) KW_TABLE tableOrPartition (KW_SHARED | KW_EXCLUSIVE)? ; lockDatabase - : KW_LOCK db_schema dbName=dbSchemaName lockMode - ; - -lockMode - : KW_SHARED - | KW_EXCLUSIVE - ; - -unlockStatement - : KW_UNLOCK KW_TABLE tableOrPartition - ; - -unlockDatabase - : KW_UNLOCK db_schema dbName=dbSchemaName + : (KW_LOCK | KW_UNLOCK) db_schema dbName=dbSchemaName (KW_SHARED | KW_EXCLUSIVE)? ; createRoleStatement - : KW_CREATE KW_ROLE roleName=id_ - ; - -dropRoleStatement - : KW_DROP KW_ROLE roleName=id_ + : (KW_CREATE | KW_DROP) KW_ROLE roleName=id_ ; grantPrivileges - : KW_GRANT privList=privilegeList privilegeObject? KW_TO principalSpecification withGrantOption? + : KW_GRANT privList=privilegeList privilegeObject? KW_TO principalSpecification ( + KW_WITH KW_GRANT KW_OPTION + )? ; revokePrivileges - : KW_REVOKE grantOptionFor? privilegeList privilegeObject? KW_FROM principalSpecification + : KW_REVOKE (KW_GRANT KW_OPTION KW_FOR)? privilegeList privilegeObject? KW_FROM principalSpecification ; grantRole - : KW_GRANT KW_ROLE? id_ (COMMA id_)* KW_TO principalSpecification withAdminOption? + : KW_GRANT KW_ROLE? id_ (COMMA id_)* KW_TO principalSpecification (KW_WITH KW_ADMIN KW_OPTION)? ; revokeRole - : KW_REVOKE adminOptionFor? KW_ROLE? id_ (COMMA id_)* KW_FROM principalSpecification + : KW_REVOKE (KW_ADMIN KW_OPTION KW_FOR)? KW_ROLE? id_ (COMMA id_)* KW_FROM principalSpecification ; showRoleGrants @@ -452,22 +429,6 @@ principalAlterName | id_ ; -withGrantOption - : KW_WITH KW_GRANT KW_OPTION - ; - -grantOptionFor - : KW_GRANT KW_OPTION KW_FOR - ; - -adminOptionFor - : KW_ADMIN KW_OPTION KW_FOR - ; - -withAdminOption - : KW_WITH KW_ADMIN KW_OPTION - ; - metastoreCheck : KW_MSCK repair=KW_REPAIR? ( KW_TABLE tableName ( @@ -476,14 +437,6 @@ metastoreCheck ) ; -resourceList - : resource (COMMA resource)* - ; - -resource - : resType=resourceType resPath=StringLiteral - ; - resourceType : KW_JAR | KW_FILE @@ -492,7 +445,9 @@ resourceType createFunctionStatement : KW_CREATE temp=KW_TEMPORARY? KW_FUNCTION functionNameCreate KW_AS StringLiteral ( - KW_USING rList=resourceList + KW_USING resType=resourceType resPath=StringLiteral ( + COMMA resType=resourceType resPath=StringLiteral + )* )? ; @@ -517,7 +472,7 @@ createIndexStatement KW_WITH KW_DEFERRED KW_REBUILD )? (KW_IDXPROPERTIES tableProperties)? (KW_IN KW_TABLE tableName)? ( KW_PARTITIONED KW_BY columnParenthesesList - )? (tableRowFormat? tableFileFormat)? locationPath? tablePropertiesPrefixed? tableComment? + )? (rowFormat? tableFileFormat)? locationPath? tablePropertiesPrefixed? tableComment? ; dropIndexStatement @@ -556,16 +511,12 @@ viewSortSpec ; dropViewStatement - : KW_DROP KW_VIEW ifExists? viewName + : KW_DROP KW_MATERIALIZED? KW_VIEW ifExists? viewName ; createMaterializedViewStatement - : KW_CREATE KW_MATERIALIZED KW_VIEW ifNotExists? name=viewNameCreate rewriteDisabled? tableComment? viewPartition? viewOrganization? - tableRowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? KW_AS selectStatementWithCTE - ; - -dropMaterializedViewStatement - : KW_DROP KW_MATERIALIZED KW_VIEW ifExists? viewName + : KW_CREATE KW_MATERIALIZED KW_VIEW ifNotExists? name=viewNameCreate rewriteDisabled? tableComment? viewPartition? viewOrganization? rowFormat? + tableFileFormat? locationPath? tablePropertiesPrefixed? KW_AS selectStatementWithCTE ; createScheduledQueryStatement @@ -634,7 +585,7 @@ partitionTransformSpec partitionTransformType : columnName - | (year | month | day | hour) LPAREN columnName RPAREN + | (KW_YEAR | KW_YEARS | KW_MONTH | KW_MONTHS | KW_DAY | KW_DAYS | KW_HOUR | KW_HOURS) LPAREN columnName RPAREN | (KW_TRUNCATE | KW_BUCKET) LPAREN value=Number COMMA columnName RPAREN ; @@ -653,14 +604,6 @@ rowFormat | rowFormatDelimited ; -recordReader - : KW_RECORDREADER StringLiteral - ; - -recordWriter - : KW_RECORDWRITER StringLiteral - ; - rowFormatSerde : KW_ROW KW_FORMAT KW_SERDE name=StringLiteral ( KW_WITH KW_SERDEPROPERTIES serderops=tableProperties @@ -668,13 +611,8 @@ rowFormatSerde ; rowFormatDelimited - : KW_ROW KW_FORMAT KW_DELIMITED tableRowFormatFieldIdentifier? tableRowFormatCollItemsIdentifier? tableRowFormatMapKeysIdentifier? - tableRowFormatLinesIdentifier? tableRowNullFormat? - ; - -tableRowFormat - : rowFormatDelimited - | rowFormatSerde + : KW_ROW KW_FORMAT KW_DELIMITED rowFormatFieldIdentifier? rowFormatCollItemsIdentifier? rowFormatMapKeysIdentifier? rowFormatLinesIdentifier? + tableRowNullFormat? ; tablePropertiesPrefixed @@ -702,21 +640,21 @@ keyValueProperty : key=StringLiteral EQUAL value=StringLiteral ; -tableRowFormatFieldIdentifier +rowFormatFieldIdentifier : KW_FIELDS KW_TERMINATED KW_BY fldIdnt=StringLiteral ( KW_ESCAPED KW_BY fldEscape=StringLiteral )? ; -tableRowFormatCollItemsIdentifier +rowFormatCollItemsIdentifier : KW_COLLECTION KW_ITEMS KW_TERMINATED KW_BY collIdnt=StringLiteral ; -tableRowFormatMapKeysIdentifier +rowFormatMapKeysIdentifier : KW_MAP KW_KEYS KW_TERMINATED KW_BY mapKeysIdnt=StringLiteral ; -tableRowFormatLinesIdentifier +rowFormatLinesIdentifier : KW_LINES KW_TERMINATED KW_BY linesIdnt=StringLiteral ; @@ -784,7 +722,7 @@ columnParenthesesList ; enableValidateSpecification - : enableSpecification validateSpecification? + : enableSpecification (KW_VALIDATE | KW_NOVALIDATE)? | enforcedSpecification ; @@ -793,27 +731,17 @@ enableSpecification | disable ; -validateSpecification - : KW_VALIDATE - | KW_NOVALIDATE - ; - enforcedSpecification : KW_ENFORCED | KW_NOT KW_ENFORCED ; -relySpecification - : KW_RELY - | KW_NORELY - ; - createConstraint - : (KW_CONSTRAINT constraintName=id_)? tableLevelConstraint constraintOptsCreate? + : (KW_CONSTRAINT constraintName=id_)? tableLevelConstraint constraintOpts? ; alterConstraintWithName - : KW_CONSTRAINT constraintName=id_ tableLevelConstraint constraintOptsAlter? + : KW_CONSTRAINT constraintName=id_ tableLevelConstraint constraintOpts? ; tableLevelConstraint @@ -831,12 +759,12 @@ checkConstraint createForeignKey : (KW_CONSTRAINT constraintName=id_)? KW_FOREIGN KW_KEY fkCols=columnParenthesesList KW_REFERENCES tabName=tableName parCols=columnParenthesesList - constraintOptsCreate? + constraintOpts? ; alterForeignKeyWithName : KW_CONSTRAINT constraintName=id_ KW_FOREIGN KW_KEY fkCols=columnParenthesesList KW_REFERENCES tabName=tableName parCols=columnParenthesesList - constraintOptsAlter? + constraintOpts? ; skewedValueElement @@ -882,7 +810,7 @@ columnRefOrder ; columnNameType - : colName=columnNameCreate columnType (KW_COMMENT comment=StringLiteral)? + : colName=columnNameCreate type (KW_COMMENT comment=StringLiteral)? ; columnNameTypeOrConstraint @@ -896,9 +824,7 @@ tableConstraint ; columnNameTypeConstraint - : colName=columnNameCreate colType=columnType columnConstraint? ( - KW_COMMENT comment=StringLiteral - )? + : colName=columnNameCreate colType=type columnConstraint? (KW_COMMENT comment=StringLiteral)? ; columnConstraint @@ -907,62 +833,35 @@ columnConstraint ; foreignKeyConstraint - : (KW_CONSTRAINT constraintName=id_)? KW_REFERENCES tabName=tableName LPAREN colName=columnName RPAREN constraintOptsCreate? + : (KW_CONSTRAINT constraintName=id_)? KW_REFERENCES tabName=tableName LPAREN colName=columnName RPAREN constraintOpts? ; colConstraint - : (KW_CONSTRAINT constraintName=id_)? columnConstraintType constraintOptsCreate? - ; - -alterColumnConstraint - : alterForeignKeyConstraint - | alterColConstraint - ; - -alterForeignKeyConstraint - : (KW_CONSTRAINT constraintName=id_)? KW_REFERENCES tabName=tableName LPAREN colName=columnName RPAREN constraintOptsAlter? - ; - -alterColConstraint - : (KW_CONSTRAINT constraintName=id_)? columnConstraintType constraintOptsAlter? + : (KW_CONSTRAINT constraintName=id_)? columnConstraintType constraintOpts? ; columnConstraintType : KW_NOT KW_NULL - | KW_DEFAULT defaultVal + | KW_DEFAULT (constant | function_ | castExpression) | checkConstraint | tableConstraintType ; -defaultVal - : constant - | function_ - | castExpression - ; - tableConstraintType : KW_PRIMARY KW_KEY | KW_UNIQUE ; -constraintOptsCreate - : enableValidateSpecification relySpecification? - ; - -constraintOptsAlter - : enableValidateSpecification relySpecification? +constraintOpts + : enableValidateSpecification (KW_RELY | KW_NORELY)? ; columnNameColonType - : colName=columnNameCreate COLON columnType (KW_COMMENT comment=StringLiteral)? - ; - -columnType - : type + : colName=columnNameCreate COLON type (KW_COMMENT comment=StringLiteral)? ; -columnTypeList - : columnType (COMMA columnType)* +typeList + : type (COMMA type)* ; type @@ -995,7 +894,7 @@ primitiveType //| KW_INTERVAL KW_DAY KW_TO KW_SECOND | KW_STRING | KW_BINARY - | decimal (LPAREN prec=Number (COMMA scale=Number)? RPAREN)? + | (KW_DEC | KW_DECIMAL | KW_NUMERIC) (LPAREN prec=Number (COMMA scale=Number)? RPAREN)? | (KW_VARCHAR | KW_CHAR) LPAREN length=Number RPAREN ; @@ -1012,7 +911,7 @@ mapType ; unionType - : KW_UNIONTYPE LESSTHAN columnTypeList GREATERTHAN + : KW_UNIONTYPE LESSTHAN typeList GREATERTHAN ; setOperator @@ -1088,7 +987,7 @@ insertClause ; destination - : local=KW_LOCAL? KW_DIRECTORY StringLiteral tableRowFormat? tableFileFormat? + : local=KW_LOCAL? KW_DIRECTORY StringLiteral rowFormat? tableFileFormat? | KW_TABLE tableOrPartition ; @@ -1149,28 +1048,13 @@ whenMatchedThenClause : KW_WHEN KW_MATCHED KW_THEN (KW_UPDATE setColumnsClause | KW_DELETE) ; -/* -BEGIN SHOW COMPACTIONS statement -*/ -compactionPool - : KW_POOL poolName=StringLiteral - ; - -compactionType - : KW_TYPE compactType=StringLiteral - ; - -compactionStatus - : KW_STATUS status=StringLiteral - ; - alterStatement : KW_ALTER ( KW_TABLE tableName alterTableStatementSuffix | KW_VIEW viewName KW_AS? alterViewStatementSuffix | KW_MATERIALIZED KW_VIEW tableNameTree=viewName ( - mvRewriteFlag=rewriteEnabled - | mvRewriteFlag2=rewriteDisabled + rewriteEnabled + | rewriteDisabled | KW_REBUILD ) | db_schema alterDatabaseStatementSuffix @@ -1217,12 +1101,14 @@ alterTblPartitionStatementSuffix | tableBuckets | KW_COMPACT compactType=StringLiteral (KW_AND KW_WAIT)? ( KW_CLUSTERED KW_INTO num=Number KW_BUCKETS - )? orderByClause? compactionPool? (KW_WITH KW_OVERWRITE KW_TBLPROPERTIES tableProperties)? + )? orderByClause? (KW_POOL poolName=StringLiteral)? ( + KW_WITH KW_OVERWRITE KW_TBLPROPERTIES tableProperties + )? | KW_UPDATE KW_STATISTICS KW_FOR KW_COLUMN? colName=columnName KW_SET tableProperties ( KW_COMMENT comment=StringLiteral )? | KW_UPDATE KW_STATISTICS KW_SET tableProperties - | KW_CHANGE KW_COLUMN? oldName=columnName newName=columnNameCreate columnType alterColumnConstraint? ( + | KW_CHANGE KW_COLUMN? oldName=columnName newName=columnNameCreate type columnConstraint? ( KW_COMMENT comment=StringLiteral )? (first=KW_FIRST | KW_AFTER afterCol=id_)? restrictOrCascade? | (add=KW_ADD | replace=KW_REPLACE) KW_COLUMNS LPAREN columnNameTypeList RPAREN restrictOrCascade? @@ -1290,16 +1176,9 @@ likeTableOrFile Rules for parsing createtable */ createTableStatement - : KW_CREATE temp=KW_TEMPORARY? trans=KW_TRANSACTIONAL? ext=KW_EXTERNAL? KW_TABLE ifNotExists? name=tableNameCreate ( - likeTableOrFile createTablePartitionSpec? tableRowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? - | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? tableRowFormat? - tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? ( - KW_AS selectStatementWithCTE - )? - ) - | KW_CREATE mgd=KW_MANAGED KW_TABLE ifNotExists? name=tableNameCreate ( - likeTableOrFile tableRowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? - | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? tableRowFormat? + : KW_CREATE temp=KW_TEMPORARY? trans=KW_TRANSACTIONAL? ext=KW_EXTERNAL? mgd=KW_MANAGED? KW_TABLE ifNotExists? name=tableNameCreate ( + likeTableOrFile createTablePartitionSpec? rowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? + | (LPAREN columnNameTypeOrConstraintList RPAREN)? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? rowFormat? tableFileFormat? locationPath? tablePropertiesPrefixed? tableLifecycle? ( KW_AS selectStatementWithCTE )? @@ -1519,9 +1398,9 @@ selectClause ; selectTrfmClause - : LPAREN selectExpressionList RPAREN rowFormat recordWriter KW_USING StringLiteral ( + : LPAREN selectExpressionList RPAREN rowFormat KW_RECORDWRITER StringLiteral KW_USING StringLiteral ( KW_AS (LPAREN (aliasList | columnNameTypeList) RPAREN | aliasList | columnNameTypeList) - )? rowFormat recordReader + )? rowFormat KW_RECORDREADER StringLiteral ; selectList @@ -1548,9 +1427,9 @@ selectExpressionColumnName ; trfmClause - : (KW_MAP | KW_REDUCE) selectExpressionList rowFormat recordWriter KW_USING StringLiteral ( + : (KW_MAP | KW_REDUCE) selectExpressionList rowFormat KW_RECORDWRITER StringLiteral KW_USING StringLiteral ( KW_AS (LPAREN (aliasList | columnNameTypeList) RPAREN | aliasList | columnNameTypeList) - )? rowFormat recordReader + )? rowFormat KW_RECORDREADER StringLiteral ; selectExpression @@ -1616,11 +1495,6 @@ qualifyClause : KW_QUALIFY expression ; -expressionOrDefault - : KW_DEFAULT - | expression - ; - /** Parses comma separated list of expressions with optionally specified aliases. [] [, []] @@ -1640,7 +1514,7 @@ expressionsInParenthesis ; expressionsNotInParenthesis - : first=expressionOrDefault ((COMMA expressionOrDefault)+)? + : (KW_DEFAULT | expression) ((COMMA (KW_DEFAULT | expression))+)? ; // order by a,b @@ -1678,17 +1552,13 @@ function_ RPAREN within=KW_WITHIN KW_GROUP LPAREN ordBy=orderByClause RPAREN // No null treatment: SELECT first_value(b) OVER () // Standard null treatment spec: SELECT first_value(b) IGNORE NULLS OVER () - | RPAREN nt=null_treatment? KW_OVER ws=window_specification + | RPAREN ((KW_RESPECT | KW_IGNORE) KW_NULLS)? KW_OVER ws=window_specification // Non-standard null treatment spec: SELECT first_value(b IGNORE NULLS) OVER () - | nt=null_treatment RPAREN KW_OVER ws=window_specification + | ((KW_RESPECT | KW_IGNORE) KW_NULLS) RPAREN KW_OVER ws=window_specification | RPAREN ) ; -null_treatment - : (KW_RESPECT | KW_IGNORE) KW_NULLS - ; - functionNameCreate : functionIdentifier ; @@ -1727,14 +1597,14 @@ extractExpression ; timeQualifiers - : year + : (KW_YEAR | KW_YEARS) | KW_QUARTER - | month - | week - | day - | hour - | minute - | second + | (KW_MONTH | KW_MONTHS) + | (KW_WEEK | KW_WEEKS) + | (KW_DAY | KW_DAYS) + | (KW_HOUR | KW_HOURS) + | (KW_MINUTE | KW_MINUTES) + | (KW_SECOND | KW_SECONDS) ; constant @@ -1767,14 +1637,14 @@ intervalExpression ; intervalQualifiers - : year KW_TO month - | day KW_TO second - | year - | month - | day - | hour - | minute - | second + : (KW_YEAR | KW_YEARS) KW_TO (KW_MONTH | KW_MONTHS) + | (KW_DAY | KW_DAYS) KW_TO (KW_SECOND | KW_SECONDS) + | (KW_YEAR | KW_YEARS) + | (KW_MONTH | KW_MONTHS) + | (KW_DAY | KW_DAYS) + | (KW_HOUR | KW_HOURS) + | (KW_MINUTE | KW_MINUTES) + | (KW_SECOND | KW_SECONDS) ; expression @@ -1823,6 +1693,10 @@ precedenceBitwiseOrExpression : precedenceAmpersandExpression (BITWISEOR precedenceAmpersandExpression)* ; +subQueryExpression + : LPAREN selectStatement RPAREN + ; + precedenceSimilarOperator : KW_LIKE | KW_RLIKE @@ -1833,10 +1707,6 @@ precedenceSimilarOperator | GREATERTHAN ; -subQueryExpression - : LPAREN selectStatement RPAREN - ; - precedenceSimilarExpression : a=precedenceBitwiseOrExpression part=precedenceSimilarExpressionPart? | KW_EXISTS subQueryExpression @@ -1845,26 +1715,19 @@ precedenceSimilarExpression precedenceSimilarExpressionPart : precedenceSimilarOperator equalExpr=precedenceBitwiseOrExpression | precedenceSimilarExpressionAtom - | KW_NOT precedenceSimilarExpressionPartNot + | KW_NOT ( + (KW_LIKE | KW_RLIKE | KW_REGEXP) notExpr=precedenceBitwiseOrExpression + | precedenceSimilarExpressionAtom + ) ; precedenceSimilarExpressionAtom - : KW_IN precedenceSimilarExpressionIn + : KW_IN (subQueryExpression | expr=expressionsInParenthesis) | KW_BETWEEN min=precedenceBitwiseOrExpression KW_AND max=precedenceBitwiseOrExpression | KW_LIKE (KW_ANY | KW_ALL) expr=expressionsInParenthesis | subQuerySelectorOperator (KW_ANY | KW_SOME | KW_ALL) subQueryExpression ; -precedenceSimilarExpressionIn - : subQueryExpression - | expr=expressionsInParenthesis - ; - -precedenceSimilarExpressionPartNot - : (KW_LIKE | KW_RLIKE | KW_REGEXP) notExpr=precedenceBitwiseOrExpression - | precedenceSimilarExpressionAtom - ; - precedenceDistinctOperator : KW_IS KW_DISTINCT KW_FROM ; @@ -2393,47 +2256,6 @@ disable | KW_DISABLED ; -year - : KW_YEAR - | KW_YEARS - ; - -month - : KW_MONTH - | KW_MONTHS - ; - -week - : KW_WEEK - | KW_WEEKS - ; - -day - : KW_DAY - | KW_DAYS - ; - -hour - : KW_HOUR - | KW_HOURS - ; - -minute - : KW_MINUTE - | KW_MINUTES - ; - -second - : KW_SECOND - | KW_SECONDS - ; - -decimal - : KW_DEC - | KW_DECIMAL - | KW_NUMERIC - ; - emptyColumn : ; diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index b75aa02eb..64328ab08 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -899,17 +899,14 @@ ddlStatement ifExists ifNotExists restrictOrCascade +storedAsDirs rewriteEnabled rewriteDisabled -storedAsDirs createDatabaseStatement -dbConnectorName switchDatabaseStatement dropDatabaseStatement -databaseComment truncateTableStatement dropTableStatement -inputFileFormat tabTypeExpr partTypeExpr tabPartColTypeExpr @@ -921,11 +918,7 @@ showStatement showTablesFilterExpr lockStatement lockDatabase -lockMode -unlockStatement -unlockDatabase createRoleStatement -dropRoleStatement grantPrivileges revokePrivileges grantRole @@ -946,13 +939,7 @@ privilegeType principalSpecification principalName principalAlterName -withGrantOption -grantOptionFor -adminOptionFor -withAdminOption metastoreCheck -resourceList -resource resourceType createFunctionStatement dropFunctionStatement @@ -970,7 +957,6 @@ viewDistSpec viewSortSpec dropViewStatement createMaterializedViewStatement -dropMaterializedViewStatement createScheduledQueryStatement dropScheduledQueryStatement alterScheduledQueryStatement @@ -988,21 +974,18 @@ partitionTransformType tableBuckets tableSkewed rowFormat -recordReader -recordWriter rowFormatSerde rowFormatDelimited -tableRowFormat tablePropertiesPrefixed tableProperties tablePropertiesList keyValueProperties keyValuePropertyList keyValueProperty -tableRowFormatFieldIdentifier -tableRowFormatCollItemsIdentifier -tableRowFormatMapKeysIdentifier -tableRowFormatLinesIdentifier +rowFormatFieldIdentifier +rowFormatCollItemsIdentifier +rowFormatMapKeysIdentifier +rowFormatLinesIdentifier tableRowNullFormat tableFileFormat columnNameTypeList @@ -1018,9 +1001,7 @@ columnNameOrderList columnParenthesesList enableValidateSpecification enableSpecification -validateSpecification enforcedSpecification -relySpecification createConstraint alterConstraintWithName tableLevelConstraint @@ -1045,17 +1026,11 @@ columnNameTypeConstraint columnConstraint foreignKeyConstraint colConstraint -alterColumnConstraint -alterForeignKeyConstraint -alterColConstraint columnConstraintType -defaultVal tableConstraintType -constraintOptsCreate -constraintOptsAlter +constraintOpts columnNameColonType -columnType -columnTypeList +typeList type primitiveType listType @@ -1086,9 +1061,6 @@ whenClauses whenNotMatchedClause whenMatchedAndClause whenMatchedThenClause -compactionPool -compactionType -compactionStatus alterStatement alterTableStatementSuffix alterTblPartitionStatementSuffix @@ -1154,7 +1126,6 @@ rollupOldSyntax groupingSetExpression havingClause qualifyClause -expressionOrDefault firstExpressionsWithAlias expressions expressionsInParenthesis @@ -1165,7 +1136,6 @@ clusterByClause distributeByClause sortByClause function_ -null_treatment functionNameCreate functionNameForDDL functionNameForInvoke @@ -1188,13 +1158,11 @@ precedencePlusExpression precedenceConcatenateExpression precedenceAmpersandExpression precedenceBitwiseOrExpression -precedenceSimilarOperator subQueryExpression +precedenceSimilarOperator precedenceSimilarExpression precedenceSimilarExpressionPart precedenceSimilarExpressionAtom -precedenceSimilarExpressionIn -precedenceSimilarExpressionPartNot precedenceDistinctOperator precedenceEqualOperator precedenceEqualExpression @@ -1222,14 +1190,6 @@ rpUnassign activate enable disable -year -month -week -day -hour -minute -second -decimal emptyColumn poolPath poolPathAllowEmpty @@ -1240,4 +1200,4 @@ poolAssignList atn: -[4, 1, 438, 4874, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 1, 0, 5, 0, 714, 8, 0, 10, 0, 12, 0, 717, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 723, 8, 1, 1, 1, 3, 1, 726, 8, 1, 1, 2, 1, 2, 5, 2, 730, 8, 2, 10, 2, 12, 2, 733, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 738, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 745, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 755, 8, 3, 1, 3, 3, 3, 758, 8, 3, 1, 3, 1, 3, 3, 3, 762, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 777, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 790, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 795, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 800, 8, 5, 1, 5, 3, 5, 803, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 825, 8, 5, 10, 5, 12, 5, 828, 9, 5, 1, 5, 1, 5, 5, 5, 832, 8, 5, 10, 5, 12, 5, 835, 9, 5, 3, 5, 837, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 842, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 847, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 853, 8, 6, 1, 7, 1, 7, 3, 7, 857, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 870, 8, 8, 1, 9, 1, 9, 3, 9, 874, 8, 9, 1, 9, 1, 9, 3, 9, 878, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 883, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 890, 8, 10, 1, 10, 1, 10, 3, 10, 894, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 899, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 906, 8, 12, 1, 12, 1, 12, 3, 12, 910, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 915, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 961, 8, 14, 11, 14, 12, 14, 962, 1, 14, 1, 14, 1, 14, 4, 14, 968, 8, 14, 11, 14, 12, 14, 969, 1, 14, 1, 14, 1, 14, 3, 14, 975, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 998, 8, 21, 1, 21, 1, 21, 3, 21, 1002, 8, 21, 1, 21, 1, 21, 3, 21, 1006, 8, 21, 1, 21, 3, 21, 1009, 8, 21, 1, 21, 1, 21, 3, 21, 1013, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1024, 8, 21, 1, 21, 1, 21, 3, 21, 1028, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1034, 8, 21, 3, 21, 1036, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1047, 8, 24, 1, 24, 1, 24, 3, 24, 1051, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1058, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1066, 8, 26, 1, 26, 3, 26, 1069, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1074, 8, 27, 1, 27, 1, 27, 3, 27, 1078, 8, 27, 1, 27, 3, 27, 1081, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1091, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1099, 8, 29, 5, 29, 1101, 8, 29, 10, 29, 12, 29, 1104, 9, 29, 3, 29, 1106, 8, 29, 1, 30, 1, 30, 3, 30, 1110, 8, 30, 1, 31, 1, 31, 3, 31, 1114, 8, 31, 1, 31, 3, 31, 1117, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1128, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1133, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1138, 8, 32, 1, 32, 1, 32, 3, 32, 1142, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1153, 8, 33, 3, 33, 1155, 8, 33, 1, 33, 1, 33, 3, 33, 1159, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1169, 8, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1179, 8, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1189, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1194, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1202, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1207, 8, 36, 1, 36, 1, 36, 3, 36, 1211, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1219, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1224, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1230, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 3, 36, 1245, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1254, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1262, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1267, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1275, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1282, 8, 36, 1, 36, 3, 36, 1285, 8, 36, 1, 36, 3, 36, 1288, 8, 36, 3, 36, 1290, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1301, 8, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 3, 36, 1315, 8, 36, 1, 36, 3, 36, 1318, 8, 36, 3, 36, 1320, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1332, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1338, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1346, 8, 36, 3, 36, 1348, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1358, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1391, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1396, 8, 45, 1, 46, 1, 46, 3, 46, 1400, 8, 46, 1, 46, 1, 46, 3, 46, 1404, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1411, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1416, 8, 47, 10, 47, 12, 47, 1419, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1424, 8, 47, 1, 48, 1, 48, 3, 48, 1428, 8, 48, 1, 48, 3, 48, 1431, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1436, 8, 48, 10, 48, 12, 48, 1439, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1461, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1466, 8, 53, 1, 53, 1, 53, 3, 53, 1470, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1478, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1487, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1494, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1500, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1507, 8, 58, 1, 58, 3, 58, 1510, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1516, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1521, 8, 59, 10, 59, 12, 59, 1524, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1531, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1538, 8, 62, 10, 62, 12, 62, 1541, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1549, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1556, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1576, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1583, 8, 69, 3, 69, 1585, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1590, 8, 70, 10, 70, 12, 70, 1593, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1602, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1610, 8, 73, 1, 74, 1, 74, 3, 74, 1614, 8, 74, 1, 74, 1, 74, 3, 74, 1618, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1631, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1640, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1656, 8, 78, 1, 78, 1, 78, 3, 78, 1660, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1665, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 78, 3, 78, 1682, 8, 78, 1, 78, 3, 78, 1685, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1690, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1699, 8, 80, 1, 80, 1, 80, 3, 80, 1703, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 3, 80, 1716, 8, 80, 1, 80, 3, 80, 1719, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1731, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1737, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1763, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1771, 8, 88, 1, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 3, 88, 1793, 8, 88, 1, 88, 3, 88, 1796, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1805, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1815, 8, 90, 1, 90, 3, 90, 1818, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1838, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1844, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1850, 8, 94, 1, 94, 3, 94, 1853, 8, 94, 3, 94, 1855, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1862, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1869, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1882, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1887, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1894, 8, 101, 10, 101, 12, 101, 1897, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1902, 8, 102, 10, 102, 12, 102, 1905, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1912, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1925, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1938, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1954, 8, 105, 1, 106, 1, 106, 3, 106, 1958, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1973, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 110, 3, 110, 1988, 8, 110, 1, 110, 3, 110, 1991, 8, 110, 1, 111, 1, 111, 3, 111, 1995, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2008, 8, 114, 10, 114, 12, 114, 2011, 9, 114, 3, 114, 2013, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2022, 8, 116, 10, 116, 12, 116, 2025, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2038, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2072, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2080, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2085, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2093, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2098, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2103, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2108, 8, 124, 10, 124, 12, 124, 2111, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2116, 8, 125, 10, 125, 12, 125, 2119, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2124, 8, 126, 10, 126, 12, 126, 2127, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2132, 8, 127, 10, 127, 12, 127, 2135, 9, 127, 1, 128, 1, 128, 1, 128, 3, 128, 2140, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 3, 130, 2147, 8, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2157, 8, 132, 5, 132, 2159, 8, 132, 10, 132, 12, 132, 2162, 9, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2167, 8, 133, 10, 133, 12, 133, 2170, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 2178, 8, 135, 1, 135, 3, 135, 2181, 8, 135, 1, 136, 1, 136, 3, 136, 2185, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 3, 138, 2192, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2198, 8, 140, 1, 140, 1, 140, 3, 140, 2202, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2208, 8, 141, 1, 142, 1, 142, 3, 142, 2212, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2224, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2233, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2244, 8, 146, 1, 147, 1, 147, 3, 147, 2248, 8, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2253, 8, 148, 10, 148, 12, 148, 2256, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2265, 8, 150, 10, 150, 12, 150, 2268, 9, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2277, 8, 153, 1, 153, 3, 153, 2280, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2285, 8, 154, 10, 154, 12, 154, 2288, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2293, 8, 155, 1, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 156, 3, 156, 2300, 8, 156, 1, 156, 3, 156, 2303, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2309, 8, 157, 1, 158, 1, 158, 3, 158, 2313, 8, 158, 1, 159, 1, 159, 3, 159, 2317, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2322, 8, 160, 1, 160, 1, 160, 3, 160, 2326, 8, 160, 1, 161, 1, 161, 3, 161, 2330, 8, 161, 1, 162, 1, 162, 3, 162, 2334, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2342, 8, 162, 1, 163, 1, 163, 3, 163, 2346, 8, 163, 1, 163, 1, 163, 3, 163, 2350, 8, 163, 1, 164, 1, 164, 3, 164, 2354, 8, 164, 1, 165, 1, 165, 3, 165, 2358, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2366, 8, 165, 1, 166, 1, 166, 3, 166, 2370, 8, 166, 1, 166, 1, 166, 3, 166, 2374, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2382, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2387, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2392, 8, 169, 1, 170, 1, 170, 3, 170, 2396, 8, 170, 1, 171, 1, 171, 3, 171, 2400, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2407, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2414, 8, 174, 10, 174, 12, 174, 2417, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2424, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2436, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2454, 8, 176, 1, 176, 3, 176, 2457, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2463, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2489, 8, 181, 1, 182, 3, 182, 2492, 8, 182, 1, 182, 1, 182, 1, 183, 1, 183, 3, 183, 2498, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2504, 8, 184, 10, 184, 12, 184, 2507, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2514, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 2525, 8, 186, 10, 186, 12, 186, 2528, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2534, 8, 187, 1, 187, 3, 187, 2537, 8, 187, 1, 187, 3, 187, 2540, 8, 187, 1, 187, 3, 187, 2543, 8, 187, 1, 187, 3, 187, 2546, 8, 187, 1, 187, 3, 187, 2549, 8, 187, 1, 187, 3, 187, 2552, 8, 187, 1, 187, 3, 187, 2555, 8, 187, 1, 187, 3, 187, 2558, 8, 187, 1, 187, 3, 187, 2561, 8, 187, 1, 187, 3, 187, 2564, 8, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2569, 8, 187, 1, 187, 3, 187, 2572, 8, 187, 1, 187, 3, 187, 2575, 8, 187, 1, 187, 3, 187, 2578, 8, 187, 1, 187, 3, 187, 2581, 8, 187, 1, 187, 3, 187, 2584, 8, 187, 1, 187, 3, 187, 2587, 8, 187, 1, 187, 3, 187, 2590, 8, 187, 1, 187, 3, 187, 2593, 8, 187, 1, 187, 3, 187, 2596, 8, 187, 1, 187, 3, 187, 2599, 8, 187, 3, 187, 2601, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2607, 8, 188, 1, 189, 1, 189, 3, 189, 2611, 8, 189, 1, 189, 3, 189, 2614, 8, 189, 1, 189, 3, 189, 2617, 8, 189, 1, 189, 3, 189, 2620, 8, 189, 1, 189, 3, 189, 2623, 8, 189, 1, 189, 3, 189, 2626, 8, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2633, 8, 189, 1, 190, 1, 190, 3, 190, 2637, 8, 190, 1, 190, 3, 190, 2640, 8, 190, 1, 190, 3, 190, 2643, 8, 190, 1, 190, 3, 190, 2646, 8, 190, 1, 190, 3, 190, 2649, 8, 190, 1, 190, 3, 190, 2652, 8, 190, 1, 191, 1, 191, 1, 191, 4, 191, 2657, 8, 191, 11, 191, 12, 191, 2658, 1, 192, 3, 192, 2662, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2670, 8, 193, 1, 193, 1, 193, 3, 193, 2674, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2681, 8, 193, 3, 193, 2683, 8, 193, 1, 194, 3, 194, 2686, 8, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 3, 194, 2694, 8, 194, 1, 194, 1, 194, 3, 194, 2698, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 2703, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2709, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2717, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2723, 8, 198, 10, 198, 12, 198, 2726, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2733, 8, 199, 10, 199, 12, 199, 2736, 9, 199, 3, 199, 2738, 8, 199, 1, 199, 1, 199, 3, 199, 2742, 8, 199, 1, 199, 1, 199, 3, 199, 2746, 8, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2751, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2758, 8, 200, 1, 201, 1, 201, 5, 201, 2762, 8, 201, 10, 201, 12, 201, 2765, 9, 201, 1, 201, 3, 201, 2768, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2775, 8, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2780, 8, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2793, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 2801, 8, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2820, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2830, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2843, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2853, 8, 209, 1, 209, 1, 209, 3, 209, 2857, 8, 209, 4, 209, 2859, 8, 209, 11, 209, 12, 209, 2860, 1, 209, 1, 209, 5, 209, 2865, 8, 209, 10, 209, 12, 209, 2868, 9, 209, 1, 209, 1, 209, 5, 209, 2872, 8, 209, 10, 209, 12, 209, 2875, 9, 209, 1, 209, 1, 209, 5, 209, 2879, 8, 209, 10, 209, 12, 209, 2882, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2890, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2897, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2917, 8, 209, 1, 209, 3, 209, 2920, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2934, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2949, 8, 210, 1, 210, 1, 210, 3, 210, 2953, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 5, 210, 2971, 8, 210, 10, 210, 12, 210, 2974, 9, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2985, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2991, 8, 210, 1, 210, 3, 210, 2994, 8, 210, 1, 210, 3, 210, 2997, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3003, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3009, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3016, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3024, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3030, 8, 210, 1, 210, 1, 210, 3, 210, 3034, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3039, 8, 210, 1, 210, 3, 210, 3042, 8, 210, 1, 210, 1, 210, 3, 210, 3046, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3053, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3058, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3063, 8, 210, 1, 210, 3, 210, 3066, 8, 210, 3, 210, 3068, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3076, 8, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3084, 8, 211, 1, 211, 1, 211, 3, 211, 3088, 8, 211, 4, 211, 3090, 8, 211, 11, 211, 12, 211, 3091, 1, 211, 1, 211, 3, 211, 3096, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3113, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3130, 8, 213, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 3, 215, 3137, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 3144, 8, 215, 10, 215, 12, 215, 3147, 9, 215, 1, 215, 1, 215, 3, 215, 3151, 8, 215, 1, 215, 3, 215, 3154, 8, 215, 1, 215, 3, 215, 3157, 8, 215, 1, 216, 1, 216, 3, 216, 3161, 8, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3176, 8, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3190, 8, 218, 1, 218, 3, 218, 3193, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3204, 8, 219, 1, 220, 1, 220, 3, 220, 3208, 8, 220, 1, 220, 3, 220, 3211, 8, 220, 1, 220, 3, 220, 3214, 8, 220, 1, 220, 1, 220, 3, 220, 3218, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3223, 8, 220, 1, 220, 3, 220, 3226, 8, 220, 1, 220, 3, 220, 3229, 8, 220, 1, 220, 3, 220, 3232, 8, 220, 1, 220, 3, 220, 3235, 8, 220, 1, 220, 3, 220, 3238, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3244, 8, 220, 1, 220, 3, 220, 3247, 8, 220, 1, 220, 3, 220, 3250, 8, 220, 1, 220, 3, 220, 3253, 8, 220, 1, 220, 3, 220, 3256, 8, 220, 1, 220, 3, 220, 3259, 8, 220, 1, 220, 3, 220, 3262, 8, 220, 1, 220, 3, 220, 3265, 8, 220, 1, 220, 3, 220, 3268, 8, 220, 1, 220, 3, 220, 3271, 8, 220, 1, 220, 1, 220, 3, 220, 3275, 8, 220, 3, 220, 3277, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3283, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3288, 8, 220, 1, 220, 3, 220, 3291, 8, 220, 1, 220, 3, 220, 3294, 8, 220, 1, 220, 3, 220, 3297, 8, 220, 1, 220, 3, 220, 3300, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3306, 8, 220, 1, 220, 3, 220, 3309, 8, 220, 1, 220, 3, 220, 3312, 8, 220, 1, 220, 3, 220, 3315, 8, 220, 1, 220, 3, 220, 3318, 8, 220, 1, 220, 3, 220, 3321, 8, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 3, 220, 3327, 8, 220, 1, 220, 3, 220, 3330, 8, 220, 1, 220, 3, 220, 3333, 8, 220, 1, 220, 1, 220, 3, 220, 3337, 8, 220, 3, 220, 3339, 8, 220, 3, 220, 3341, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3346, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3351, 8, 221, 1, 221, 1, 221, 3, 221, 3355, 8, 221, 1, 221, 1, 221, 3, 221, 3359, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3364, 8, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3369, 8, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3376, 8, 223, 10, 223, 12, 223, 3379, 9, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3386, 8, 224, 10, 224, 12, 224, 3389, 9, 224, 1, 225, 1, 225, 1, 225, 5, 225, 3394, 8, 225, 10, 225, 12, 225, 3397, 9, 225, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 4, 227, 3406, 8, 227, 11, 227, 12, 227, 3407, 1, 227, 3, 227, 3411, 8, 227, 1, 228, 1, 228, 5, 228, 3415, 8, 228, 10, 228, 12, 228, 3418, 9, 228, 1, 228, 1, 228, 5, 228, 3422, 8, 228, 10, 228, 12, 228, 3425, 9, 228, 1, 228, 1, 228, 5, 228, 3429, 8, 228, 10, 228, 12, 228, 3432, 9, 228, 1, 228, 1, 228, 5, 228, 3436, 8, 228, 10, 228, 12, 228, 3439, 9, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3445, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3455, 8, 229, 3, 229, 3457, 8, 229, 1, 229, 1, 229, 3, 229, 3461, 8, 229, 5, 229, 3463, 8, 229, 10, 229, 12, 229, 3466, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3472, 8, 230, 1, 230, 5, 230, 3475, 8, 230, 10, 230, 12, 230, 3478, 9, 230, 1, 231, 3, 231, 3481, 8, 231, 1, 231, 1, 231, 3, 231, 3485, 8, 231, 1, 231, 3, 231, 3488, 8, 231, 1, 231, 3, 231, 3491, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3502, 8, 232, 1, 232, 1, 232, 3, 232, 3506, 8, 232, 3, 232, 3508, 8, 232, 1, 232, 3, 232, 3511, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3522, 8, 233, 10, 233, 12, 233, 3525, 9, 233, 3, 233, 3527, 8, 233, 1, 233, 3, 233, 3530, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3540, 8, 233, 10, 233, 12, 233, 3543, 9, 233, 3, 233, 3545, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3552, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3559, 8, 233, 10, 233, 12, 233, 3562, 9, 233, 1, 233, 1, 233, 3, 233, 3566, 8, 233, 3, 233, 3568, 8, 233, 3, 233, 3570, 8, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3585, 8, 235, 10, 235, 12, 235, 3588, 9, 235, 3, 235, 3590, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 235, 3, 235, 3601, 8, 235, 1, 236, 1, 236, 3, 236, 3605, 8, 236, 1, 236, 3, 236, 3608, 8, 236, 1, 236, 3, 236, 3611, 8, 236, 1, 236, 3, 236, 3614, 8, 236, 1, 236, 3, 236, 3617, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3629, 8, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 3, 240, 3637, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3644, 8, 241, 1, 241, 3, 241, 3647, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3654, 8, 242, 1, 242, 3, 242, 3657, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3662, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 3, 244, 3669, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3677, 8, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 3683, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3688, 8, 246, 1, 246, 1, 246, 3, 246, 3692, 8, 246, 1, 247, 1, 247, 1, 247, 3, 247, 3697, 8, 247, 1, 248, 1, 248, 3, 248, 3701, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3708, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3720, 8, 249, 10, 249, 12, 249, 3723, 9, 249, 3, 249, 3725, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 3, 250, 3732, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3738, 8, 251, 10, 251, 12, 251, 3741, 9, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3748, 8, 251, 10, 251, 12, 251, 3751, 9, 251, 3, 251, 3753, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3762, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3769, 8, 253, 10, 253, 12, 253, 3772, 9, 253, 3, 253, 3774, 8, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3780, 8, 254, 1, 254, 3, 254, 3783, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3788, 8, 254, 1, 254, 3, 254, 3791, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3804, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3810, 8, 255, 3, 255, 3812, 8, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3820, 8, 256, 10, 256, 12, 256, 3823, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3828, 8, 257, 1, 257, 3, 257, 3831, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3839, 8, 257, 10, 257, 12, 257, 3842, 9, 257, 1, 257, 1, 257, 3, 257, 3846, 8, 257, 1, 257, 1, 257, 3, 257, 3850, 8, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3866, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3872, 8, 260, 3, 260, 3874, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 3881, 8, 261, 1, 262, 1, 262, 1, 262, 5, 262, 3886, 8, 262, 10, 262, 12, 262, 3889, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3900, 8, 263, 10, 263, 12, 263, 3903, 9, 263, 1, 264, 1, 264, 1, 264, 3, 264, 3908, 8, 264, 1, 264, 3, 264, 3911, 8, 264, 1, 264, 3, 264, 3914, 8, 264, 1, 264, 3, 264, 3917, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3926, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3933, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3939, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3948, 8, 267, 1, 268, 1, 268, 3, 268, 3952, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3958, 8, 268, 10, 268, 12, 268, 3961, 9, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3970, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 3978, 8, 269, 10, 269, 12, 269, 3981, 9, 269, 1, 269, 1, 269, 3, 269, 3985, 8, 269, 1, 270, 1, 270, 3, 270, 3989, 8, 270, 1, 270, 1, 270, 5, 270, 3993, 8, 270, 10, 270, 12, 270, 3996, 9, 270, 1, 270, 1, 270, 3, 270, 4000, 8, 270, 1, 271, 1, 271, 1, 271, 3, 271, 4005, 8, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 4012, 8, 273, 1, 274, 1, 274, 3, 274, 4016, 8, 274, 1, 274, 3, 274, 4019, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4024, 8, 274, 1, 274, 3, 274, 4027, 8, 274, 5, 274, 4029, 8, 274, 10, 274, 12, 274, 4032, 9, 274, 1, 275, 1, 275, 3, 275, 4036, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 4, 277, 4045, 8, 277, 11, 277, 12, 277, 4046, 3, 277, 4049, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4056, 8, 278, 10, 278, 12, 278, 4059, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4079, 8, 282, 10, 282, 12, 282, 4082, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4089, 8, 282, 10, 282, 12, 282, 4092, 9, 282, 3, 282, 4094, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4101, 8, 283, 1, 283, 3, 283, 4104, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4114, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 4119, 8, 283, 10, 283, 12, 283, 4122, 9, 283, 3, 283, 4124, 8, 283, 3, 283, 4126, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4137, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4147, 8, 283, 3, 283, 4149, 8, 283, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 286, 1, 286, 3, 286, 4158, 8, 286, 1, 287, 1, 287, 1, 287, 3, 287, 4163, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4172, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4183, 8, 289, 11, 289, 12, 289, 4184, 1, 289, 1, 289, 3, 289, 4189, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 4, 290, 4199, 8, 290, 11, 290, 12, 290, 4200, 1, 290, 1, 290, 3, 290, 4205, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4214, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4233, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4249, 8, 294, 10, 294, 12, 294, 4252, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 4263, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4278, 8, 296, 1, 296, 1, 296, 3, 296, 4282, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 4298, 8, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4303, 8, 298, 10, 298, 12, 298, 4306, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 4319, 8, 299, 1, 300, 5, 300, 4322, 8, 300, 10, 300, 12, 300, 4325, 9, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 5, 300, 4334, 8, 300, 10, 300, 12, 300, 4337, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4342, 8, 301, 10, 301, 12, 301, 4345, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4350, 8, 302, 10, 302, 12, 302, 4353, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4358, 8, 303, 10, 303, 12, 303, 4361, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4366, 8, 304, 10, 304, 12, 304, 4369, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4374, 8, 305, 10, 305, 12, 305, 4377, 9, 305, 1, 306, 1, 306, 1, 306, 5, 306, 4382, 8, 306, 10, 306, 12, 306, 4385, 9, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 3, 309, 4395, 8, 309, 1, 309, 1, 309, 3, 309, 4399, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4407, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4423, 8, 311, 1, 312, 1, 312, 3, 312, 4427, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 4432, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4445, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 5, 316, 4454, 8, 316, 10, 316, 12, 316, 4457, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4465, 8, 317, 1, 318, 5, 318, 4468, 8, 318, 10, 318, 12, 318, 4471, 9, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4476, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 4481, 8, 319, 10, 319, 12, 319, 4484, 9, 319, 1, 320, 1, 320, 3, 320, 4488, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4495, 8, 321, 10, 321, 12, 321, 4498, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4505, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 4511, 8, 323, 10, 323, 12, 323, 4514, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 3, 324, 4521, 8, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 3, 327, 4531, 8, 327, 1, 328, 1, 328, 1, 328, 3, 328, 4536, 8, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4595, 8, 332, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4601, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4610, 8, 333, 3, 333, 4612, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 5, 333, 4626, 8, 333, 10, 333, 12, 333, 4629, 9, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4636, 8, 333, 1, 333, 1, 333, 3, 333, 4640, 8, 333, 3, 333, 4642, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4648, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4653, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4670, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4696, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4701, 8, 333, 3, 333, 4703, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4731, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4748, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4753, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4762, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4773, 8, 335, 1, 336, 1, 336, 1, 336, 5, 336, 4778, 8, 336, 10, 336, 12, 336, 4781, 9, 336, 1, 337, 1, 337, 1, 337, 3, 337, 4786, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 4791, 8, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 5, 350, 4818, 8, 350, 10, 350, 12, 350, 4821, 9, 350, 1, 351, 1, 351, 1, 351, 5, 351, 4826, 8, 351, 10, 351, 12, 351, 4829, 9, 351, 1, 351, 1, 351, 1, 351, 1, 351, 5, 351, 4835, 8, 351, 10, 351, 12, 351, 4838, 9, 351, 3, 351, 4840, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 4850, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 4864, 8, 354, 1, 355, 1, 355, 1, 355, 5, 355, 4869, 8, 355, 10, 355, 12, 355, 4872, 9, 355, 1, 355, 1, 833, 0, 356, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5464, 0, 715, 1, 0, 0, 0, 2, 722, 1, 0, 0, 0, 4, 727, 1, 0, 0, 0, 6, 761, 1, 0, 0, 0, 8, 763, 1, 0, 0, 0, 10, 836, 1, 0, 0, 0, 12, 838, 1, 0, 0, 0, 14, 854, 1, 0, 0, 0, 16, 863, 1, 0, 0, 0, 18, 871, 1, 0, 0, 0, 20, 884, 1, 0, 0, 0, 22, 895, 1, 0, 0, 0, 24, 900, 1, 0, 0, 0, 26, 911, 1, 0, 0, 0, 28, 974, 1, 0, 0, 0, 30, 976, 1, 0, 0, 0, 32, 979, 1, 0, 0, 0, 34, 983, 1, 0, 0, 0, 36, 985, 1, 0, 0, 0, 38, 988, 1, 0, 0, 0, 40, 991, 1, 0, 0, 0, 42, 1035, 1, 0, 0, 0, 44, 1037, 1, 0, 0, 0, 46, 1040, 1, 0, 0, 0, 48, 1043, 1, 0, 0, 0, 50, 1052, 1, 0, 0, 0, 52, 1055, 1, 0, 0, 0, 54, 1070, 1, 0, 0, 0, 56, 1082, 1, 0, 0, 0, 58, 1087, 1, 0, 0, 0, 60, 1107, 1, 0, 0, 0, 62, 1111, 1, 0, 0, 0, 64, 1118, 1, 0, 0, 0, 66, 1143, 1, 0, 0, 0, 68, 1160, 1, 0, 0, 0, 70, 1162, 1, 0, 0, 0, 72, 1347, 1, 0, 0, 0, 74, 1357, 1, 0, 0, 0, 76, 1359, 1, 0, 0, 0, 78, 1364, 1, 0, 0, 0, 80, 1369, 1, 0, 0, 0, 82, 1371, 1, 0, 0, 0, 84, 1375, 1, 0, 0, 0, 86, 1379, 1, 0, 0, 0, 88, 1383, 1, 0, 0, 0, 90, 1387, 1, 0, 0, 0, 92, 1397, 1, 0, 0, 0, 94, 1408, 1, 0, 0, 0, 96, 1425, 1, 0, 0, 0, 98, 1443, 1, 0, 0, 0, 100, 1448, 1, 0, 0, 0, 102, 1451, 1, 0, 0, 0, 104, 1455, 1, 0, 0, 0, 106, 1462, 1, 0, 0, 0, 108, 1471, 1, 0, 0, 0, 110, 1477, 1, 0, 0, 0, 112, 1479, 1, 0, 0, 0, 114, 1493, 1, 0, 0, 0, 116, 1515, 1, 0, 0, 0, 118, 1517, 1, 0, 0, 0, 120, 1525, 1, 0, 0, 0, 122, 1532, 1, 0, 0, 0, 124, 1534, 1, 0, 0, 0, 126, 1548, 1, 0, 0, 0, 128, 1555, 1, 0, 0, 0, 130, 1557, 1, 0, 0, 0, 132, 1561, 1, 0, 0, 0, 134, 1565, 1, 0, 0, 0, 136, 1569, 1, 0, 0, 0, 138, 1573, 1, 0, 0, 0, 140, 1586, 1, 0, 0, 0, 142, 1594, 1, 0, 0, 0, 144, 1597, 1, 0, 0, 0, 146, 1599, 1, 0, 0, 0, 148, 1611, 1, 0, 0, 0, 150, 1621, 1, 0, 0, 0, 152, 1624, 1, 0, 0, 0, 154, 1635, 1, 0, 0, 0, 156, 1643, 1, 0, 0, 0, 158, 1686, 1, 0, 0, 0, 160, 1695, 1, 0, 0, 0, 162, 1723, 1, 0, 0, 0, 164, 1736, 1, 0, 0, 0, 166, 1738, 1, 0, 0, 0, 168, 1744, 1, 0, 0, 0, 170, 1747, 1, 0, 0, 0, 172, 1753, 1, 0, 0, 0, 174, 1759, 1, 0, 0, 0, 176, 1766, 1, 0, 0, 0, 178, 1800, 1, 0, 0, 0, 180, 1808, 1, 0, 0, 0, 182, 1821, 1, 0, 0, 0, 184, 1826, 1, 0, 0, 0, 186, 1837, 1, 0, 0, 0, 188, 1854, 1, 0, 0, 0, 190, 1856, 1, 0, 0, 0, 192, 1861, 1, 0, 0, 0, 194, 1868, 1, 0, 0, 0, 196, 1870, 1, 0, 0, 0, 198, 1873, 1, 0, 0, 0, 200, 1876, 1, 0, 0, 0, 202, 1890, 1, 0, 0, 0, 204, 1898, 1, 0, 0, 0, 206, 1924, 1, 0, 0, 0, 208, 1926, 1, 0, 0, 0, 210, 1943, 1, 0, 0, 0, 212, 1957, 1, 0, 0, 0, 214, 1959, 1, 0, 0, 0, 216, 1962, 1, 0, 0, 0, 218, 1965, 1, 0, 0, 0, 220, 1974, 1, 0, 0, 0, 222, 1994, 1, 0, 0, 0, 224, 1996, 1, 0, 0, 0, 226, 1999, 1, 0, 0, 0, 228, 2012, 1, 0, 0, 0, 230, 2014, 1, 0, 0, 0, 232, 2018, 1, 0, 0, 0, 234, 2026, 1, 0, 0, 0, 236, 2030, 1, 0, 0, 0, 238, 2039, 1, 0, 0, 0, 240, 2045, 1, 0, 0, 0, 242, 2051, 1, 0, 0, 0, 244, 2056, 1, 0, 0, 0, 246, 2102, 1, 0, 0, 0, 248, 2104, 1, 0, 0, 0, 250, 2112, 1, 0, 0, 0, 252, 2120, 1, 0, 0, 0, 254, 2128, 1, 0, 0, 0, 256, 2139, 1, 0, 0, 0, 258, 2141, 1, 0, 0, 0, 260, 2146, 1, 0, 0, 0, 262, 2148, 1, 0, 0, 0, 264, 2150, 1, 0, 0, 0, 266, 2163, 1, 0, 0, 0, 268, 2171, 1, 0, 0, 0, 270, 2180, 1, 0, 0, 0, 272, 2184, 1, 0, 0, 0, 274, 2186, 1, 0, 0, 0, 276, 2191, 1, 0, 0, 0, 278, 2193, 1, 0, 0, 0, 280, 2197, 1, 0, 0, 0, 282, 2203, 1, 0, 0, 0, 284, 2211, 1, 0, 0, 0, 286, 2213, 1, 0, 0, 0, 288, 2216, 1, 0, 0, 0, 290, 2223, 1, 0, 0, 0, 292, 2234, 1, 0, 0, 0, 294, 2247, 1, 0, 0, 0, 296, 2249, 1, 0, 0, 0, 298, 2257, 1, 0, 0, 0, 300, 2261, 1, 0, 0, 0, 302, 2269, 1, 0, 0, 0, 304, 2271, 1, 0, 0, 0, 306, 2274, 1, 0, 0, 0, 308, 2281, 1, 0, 0, 0, 310, 2289, 1, 0, 0, 0, 312, 2296, 1, 0, 0, 0, 314, 2304, 1, 0, 0, 0, 316, 2312, 1, 0, 0, 0, 318, 2316, 1, 0, 0, 0, 320, 2318, 1, 0, 0, 0, 322, 2329, 1, 0, 0, 0, 324, 2333, 1, 0, 0, 0, 326, 2345, 1, 0, 0, 0, 328, 2353, 1, 0, 0, 0, 330, 2357, 1, 0, 0, 0, 332, 2369, 1, 0, 0, 0, 334, 2381, 1, 0, 0, 0, 336, 2386, 1, 0, 0, 0, 338, 2391, 1, 0, 0, 0, 340, 2393, 1, 0, 0, 0, 342, 2397, 1, 0, 0, 0, 344, 2401, 1, 0, 0, 0, 346, 2408, 1, 0, 0, 0, 348, 2410, 1, 0, 0, 0, 350, 2423, 1, 0, 0, 0, 352, 2462, 1, 0, 0, 0, 354, 2464, 1, 0, 0, 0, 356, 2469, 1, 0, 0, 0, 358, 2474, 1, 0, 0, 0, 360, 2481, 1, 0, 0, 0, 362, 2486, 1, 0, 0, 0, 364, 2491, 1, 0, 0, 0, 366, 2497, 1, 0, 0, 0, 368, 2499, 1, 0, 0, 0, 370, 2508, 1, 0, 0, 0, 372, 2520, 1, 0, 0, 0, 374, 2600, 1, 0, 0, 0, 376, 2606, 1, 0, 0, 0, 378, 2632, 1, 0, 0, 0, 380, 2634, 1, 0, 0, 0, 382, 2656, 1, 0, 0, 0, 384, 2661, 1, 0, 0, 0, 386, 2665, 1, 0, 0, 0, 388, 2697, 1, 0, 0, 0, 390, 2699, 1, 0, 0, 0, 392, 2710, 1, 0, 0, 0, 394, 2716, 1, 0, 0, 0, 396, 2718, 1, 0, 0, 0, 398, 2750, 1, 0, 0, 0, 400, 2757, 1, 0, 0, 0, 402, 2763, 1, 0, 0, 0, 404, 2769, 1, 0, 0, 0, 406, 2784, 1, 0, 0, 0, 408, 2794, 1, 0, 0, 0, 410, 2802, 1, 0, 0, 0, 412, 2805, 1, 0, 0, 0, 414, 2808, 1, 0, 0, 0, 416, 2811, 1, 0, 0, 0, 418, 2933, 1, 0, 0, 0, 420, 3067, 1, 0, 0, 0, 422, 3095, 1, 0, 0, 0, 424, 3112, 1, 0, 0, 0, 426, 3129, 1, 0, 0, 0, 428, 3131, 1, 0, 0, 0, 430, 3134, 1, 0, 0, 0, 432, 3160, 1, 0, 0, 0, 434, 3165, 1, 0, 0, 0, 436, 3192, 1, 0, 0, 0, 438, 3203, 1, 0, 0, 0, 440, 3340, 1, 0, 0, 0, 442, 3342, 1, 0, 0, 0, 444, 3365, 1, 0, 0, 0, 446, 3377, 1, 0, 0, 0, 448, 3382, 1, 0, 0, 0, 450, 3390, 1, 0, 0, 0, 452, 3398, 1, 0, 0, 0, 454, 3410, 1, 0, 0, 0, 456, 3444, 1, 0, 0, 0, 458, 3446, 1, 0, 0, 0, 460, 3471, 1, 0, 0, 0, 462, 3480, 1, 0, 0, 0, 464, 3510, 1, 0, 0, 0, 466, 3569, 1, 0, 0, 0, 468, 3571, 1, 0, 0, 0, 470, 3600, 1, 0, 0, 0, 472, 3602, 1, 0, 0, 0, 474, 3618, 1, 0, 0, 0, 476, 3630, 1, 0, 0, 0, 478, 3632, 1, 0, 0, 0, 480, 3636, 1, 0, 0, 0, 482, 3646, 1, 0, 0, 0, 484, 3656, 1, 0, 0, 0, 486, 3661, 1, 0, 0, 0, 488, 3668, 1, 0, 0, 0, 490, 3672, 1, 0, 0, 0, 492, 3691, 1, 0, 0, 0, 494, 3696, 1, 0, 0, 0, 496, 3698, 1, 0, 0, 0, 498, 3702, 1, 0, 0, 0, 500, 3728, 1, 0, 0, 0, 502, 3733, 1, 0, 0, 0, 504, 3754, 1, 0, 0, 0, 506, 3759, 1, 0, 0, 0, 508, 3790, 1, 0, 0, 0, 510, 3792, 1, 0, 0, 0, 512, 3816, 1, 0, 0, 0, 514, 3849, 1, 0, 0, 0, 516, 3851, 1, 0, 0, 0, 518, 3853, 1, 0, 0, 0, 520, 3855, 1, 0, 0, 0, 522, 3880, 1, 0, 0, 0, 524, 3882, 1, 0, 0, 0, 526, 3890, 1, 0, 0, 0, 528, 3916, 1, 0, 0, 0, 530, 3918, 1, 0, 0, 0, 532, 3938, 1, 0, 0, 0, 534, 3940, 1, 0, 0, 0, 536, 3951, 1, 0, 0, 0, 538, 3964, 1, 0, 0, 0, 540, 3999, 1, 0, 0, 0, 542, 4001, 1, 0, 0, 0, 544, 4006, 1, 0, 0, 0, 546, 4011, 1, 0, 0, 0, 548, 4013, 1, 0, 0, 0, 550, 4035, 1, 0, 0, 0, 552, 4037, 1, 0, 0, 0, 554, 4041, 1, 0, 0, 0, 556, 4050, 1, 0, 0, 0, 558, 4060, 1, 0, 0, 0, 560, 4064, 1, 0, 0, 0, 562, 4068, 1, 0, 0, 0, 564, 4072, 1, 0, 0, 0, 566, 4148, 1, 0, 0, 0, 568, 4150, 1, 0, 0, 0, 570, 4153, 1, 0, 0, 0, 572, 4157, 1, 0, 0, 0, 574, 4162, 1, 0, 0, 0, 576, 4164, 1, 0, 0, 0, 578, 4175, 1, 0, 0, 0, 580, 4192, 1, 0, 0, 0, 582, 4208, 1, 0, 0, 0, 584, 4217, 1, 0, 0, 0, 586, 4232, 1, 0, 0, 0, 588, 4262, 1, 0, 0, 0, 590, 4264, 1, 0, 0, 0, 592, 4281, 1, 0, 0, 0, 594, 4297, 1, 0, 0, 0, 596, 4299, 1, 0, 0, 0, 598, 4318, 1, 0, 0, 0, 600, 4323, 1, 0, 0, 0, 602, 4338, 1, 0, 0, 0, 604, 4346, 1, 0, 0, 0, 606, 4354, 1, 0, 0, 0, 608, 4362, 1, 0, 0, 0, 610, 4370, 1, 0, 0, 0, 612, 4378, 1, 0, 0, 0, 614, 4386, 1, 0, 0, 0, 616, 4388, 1, 0, 0, 0, 618, 4398, 1, 0, 0, 0, 620, 4406, 1, 0, 0, 0, 622, 4422, 1, 0, 0, 0, 624, 4426, 1, 0, 0, 0, 626, 4431, 1, 0, 0, 0, 628, 4433, 1, 0, 0, 0, 630, 4444, 1, 0, 0, 0, 632, 4446, 1, 0, 0, 0, 634, 4464, 1, 0, 0, 0, 636, 4469, 1, 0, 0, 0, 638, 4477, 1, 0, 0, 0, 640, 4485, 1, 0, 0, 0, 642, 4489, 1, 0, 0, 0, 644, 4501, 1, 0, 0, 0, 646, 4506, 1, 0, 0, 0, 648, 4517, 1, 0, 0, 0, 650, 4524, 1, 0, 0, 0, 652, 4526, 1, 0, 0, 0, 654, 4530, 1, 0, 0, 0, 656, 4532, 1, 0, 0, 0, 658, 4537, 1, 0, 0, 0, 660, 4539, 1, 0, 0, 0, 662, 4541, 1, 0, 0, 0, 664, 4594, 1, 0, 0, 0, 666, 4761, 1, 0, 0, 0, 668, 4763, 1, 0, 0, 0, 670, 4772, 1, 0, 0, 0, 672, 4774, 1, 0, 0, 0, 674, 4785, 1, 0, 0, 0, 676, 4787, 1, 0, 0, 0, 678, 4792, 1, 0, 0, 0, 680, 4794, 1, 0, 0, 0, 682, 4796, 1, 0, 0, 0, 684, 4798, 1, 0, 0, 0, 686, 4800, 1, 0, 0, 0, 688, 4802, 1, 0, 0, 0, 690, 4804, 1, 0, 0, 0, 692, 4806, 1, 0, 0, 0, 694, 4808, 1, 0, 0, 0, 696, 4810, 1, 0, 0, 0, 698, 4812, 1, 0, 0, 0, 700, 4814, 1, 0, 0, 0, 702, 4839, 1, 0, 0, 0, 704, 4841, 1, 0, 0, 0, 706, 4849, 1, 0, 0, 0, 708, 4863, 1, 0, 0, 0, 710, 4865, 1, 0, 0, 0, 712, 714, 3, 2, 1, 0, 713, 712, 1, 0, 0, 0, 714, 717, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 718, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 719, 5, 0, 0, 1, 719, 1, 1, 0, 0, 0, 720, 723, 3, 4, 2, 0, 721, 723, 3, 10, 5, 0, 722, 720, 1, 0, 0, 0, 722, 721, 1, 0, 0, 0, 723, 725, 1, 0, 0, 0, 724, 726, 5, 398, 0, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 3, 1, 0, 0, 0, 727, 737, 5, 119, 0, 0, 728, 730, 3, 6, 3, 0, 729, 728, 1, 0, 0, 0, 730, 733, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 734, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 734, 738, 3, 10, 5, 0, 735, 736, 5, 284, 0, 0, 736, 738, 3, 364, 182, 0, 737, 731, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 5, 1, 0, 0, 0, 739, 762, 5, 122, 0, 0, 740, 762, 5, 138, 0, 0, 741, 762, 5, 88, 0, 0, 742, 744, 5, 37, 0, 0, 743, 745, 7, 0, 0, 0, 744, 743, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 762, 1, 0, 0, 0, 746, 762, 5, 192, 0, 0, 747, 762, 5, 21, 0, 0, 748, 762, 5, 10, 0, 0, 749, 762, 5, 275, 0, 0, 750, 762, 5, 191, 0, 0, 751, 762, 5, 19, 0, 0, 752, 754, 5, 377, 0, 0, 753, 755, 5, 225, 0, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 757, 1, 0, 0, 0, 756, 758, 3, 8, 4, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 762, 1, 0, 0, 0, 759, 762, 5, 79, 0, 0, 760, 762, 5, 78, 0, 0, 761, 739, 1, 0, 0, 0, 761, 740, 1, 0, 0, 0, 761, 741, 1, 0, 0, 0, 761, 742, 1, 0, 0, 0, 761, 746, 1, 0, 0, 0, 761, 747, 1, 0, 0, 0, 761, 748, 1, 0, 0, 0, 761, 749, 1, 0, 0, 0, 761, 750, 1, 0, 0, 0, 761, 751, 1, 0, 0, 0, 761, 752, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 7, 1, 0, 0, 0, 763, 764, 7, 1, 0, 0, 764, 9, 1, 0, 0, 0, 765, 837, 3, 364, 182, 0, 766, 837, 3, 12, 6, 0, 767, 837, 3, 16, 8, 0, 768, 837, 3, 18, 9, 0, 769, 837, 3, 20, 10, 0, 770, 837, 3, 24, 12, 0, 771, 772, 5, 277, 0, 0, 772, 773, 5, 320, 0, 0, 773, 776, 3, 476, 238, 0, 774, 775, 5, 387, 0, 0, 775, 777, 3, 230, 115, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 837, 1, 0, 0, 0, 778, 837, 3, 28, 14, 0, 779, 780, 5, 86, 0, 0, 780, 781, 5, 139, 0, 0, 781, 783, 3, 482, 241, 0, 782, 784, 3, 500, 250, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 837, 1, 0, 0, 0, 785, 786, 5, 365, 0, 0, 786, 787, 3, 482, 241, 0, 787, 789, 3, 396, 198, 0, 788, 790, 3, 500, 250, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 837, 1, 0, 0, 0, 791, 837, 3, 398, 199, 0, 792, 794, 5, 203, 0, 0, 793, 795, 5, 436, 0, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 166, 0, 0, 797, 802, 3, 482, 241, 0, 798, 800, 5, 17, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 803, 3, 654, 327, 0, 802, 799, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 5, 370, 0, 0, 805, 806, 3, 460, 230, 0, 806, 807, 5, 224, 0, 0, 807, 808, 3, 596, 298, 0, 808, 809, 3, 402, 201, 0, 809, 837, 1, 0, 0, 0, 810, 811, 5, 249, 0, 0, 811, 812, 3, 654, 327, 0, 812, 813, 5, 139, 0, 0, 813, 814, 3, 364, 182, 0, 814, 837, 1, 0, 0, 0, 815, 816, 5, 115, 0, 0, 816, 817, 3, 654, 327, 0, 817, 818, 5, 370, 0, 0, 818, 819, 3, 300, 150, 0, 819, 837, 1, 0, 0, 0, 820, 821, 5, 304, 0, 0, 821, 826, 3, 664, 332, 0, 822, 823, 7, 2, 0, 0, 823, 825, 3, 664, 332, 0, 824, 822, 1, 0, 0, 0, 825, 828, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 833, 5, 405, 0, 0, 830, 832, 9, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 765, 1, 0, 0, 0, 836, 766, 1, 0, 0, 0, 836, 767, 1, 0, 0, 0, 836, 768, 1, 0, 0, 0, 836, 769, 1, 0, 0, 0, 836, 770, 1, 0, 0, 0, 836, 771, 1, 0, 0, 0, 836, 778, 1, 0, 0, 0, 836, 779, 1, 0, 0, 0, 836, 785, 1, 0, 0, 0, 836, 791, 1, 0, 0, 0, 836, 792, 1, 0, 0, 0, 836, 810, 1, 0, 0, 0, 836, 815, 1, 0, 0, 0, 836, 820, 1, 0, 0, 0, 837, 11, 1, 0, 0, 0, 838, 839, 5, 187, 0, 0, 839, 841, 5, 66, 0, 0, 840, 842, 5, 188, 0, 0, 841, 840, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 5, 158, 0, 0, 844, 846, 5, 426, 0, 0, 845, 847, 5, 235, 0, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 166, 0, 0, 849, 850, 5, 329, 0, 0, 850, 852, 3, 640, 320, 0, 851, 853, 3, 56, 28, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 13, 1, 0, 0, 0, 854, 856, 5, 134, 0, 0, 855, 857, 5, 204, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 5, 279, 0, 0, 859, 860, 5, 399, 0, 0, 860, 861, 5, 426, 0, 0, 861, 862, 5, 400, 0, 0, 862, 15, 1, 0, 0, 0, 863, 864, 5, 120, 0, 0, 864, 865, 5, 329, 0, 0, 865, 866, 3, 640, 320, 0, 866, 867, 5, 341, 0, 0, 867, 869, 5, 426, 0, 0, 868, 870, 3, 14, 7, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 17, 1, 0, 0, 0, 871, 877, 5, 153, 0, 0, 872, 874, 5, 123, 0, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 329, 0, 0, 876, 878, 3, 640, 320, 0, 877, 873, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 139, 0, 0, 880, 882, 5, 426, 0, 0, 881, 883, 3, 428, 214, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 19, 1, 0, 0, 0, 884, 885, 5, 277, 0, 0, 885, 886, 5, 103, 0, 0, 886, 889, 3, 22, 11, 0, 887, 888, 5, 278, 0, 0, 888, 890, 3, 22, 11, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 892, 5, 387, 0, 0, 892, 894, 3, 230, 115, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 21, 1, 0, 0, 0, 895, 898, 3, 476, 238, 0, 896, 897, 5, 395, 0, 0, 897, 899, 3, 26, 13, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 23, 1, 0, 0, 0, 900, 901, 5, 277, 0, 0, 901, 902, 5, 187, 0, 0, 902, 905, 3, 22, 11, 0, 903, 904, 5, 166, 0, 0, 904, 906, 3, 476, 238, 0, 905, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 908, 5, 387, 0, 0, 908, 910, 3, 230, 115, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 25, 1, 0, 0, 0, 911, 914, 5, 426, 0, 0, 912, 913, 5, 395, 0, 0, 913, 915, 5, 426, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 27, 1, 0, 0, 0, 916, 975, 3, 42, 21, 0, 917, 975, 3, 46, 23, 0, 918, 975, 3, 48, 24, 0, 919, 975, 3, 440, 220, 0, 920, 975, 3, 54, 27, 0, 921, 975, 3, 52, 26, 0, 922, 975, 3, 416, 208, 0, 923, 975, 3, 64, 32, 0, 924, 975, 3, 72, 36, 0, 925, 975, 3, 138, 69, 0, 926, 975, 3, 160, 80, 0, 927, 975, 3, 176, 88, 0, 928, 975, 3, 180, 90, 0, 929, 975, 3, 184, 92, 0, 930, 975, 3, 182, 91, 0, 931, 975, 3, 174, 87, 0, 932, 975, 3, 178, 89, 0, 933, 975, 3, 146, 73, 0, 934, 975, 3, 152, 76, 0, 935, 975, 3, 148, 74, 0, 936, 975, 3, 150, 75, 0, 937, 975, 3, 154, 77, 0, 938, 975, 3, 156, 78, 0, 939, 975, 3, 158, 79, 0, 940, 975, 3, 66, 33, 0, 941, 975, 3, 76, 38, 0, 942, 975, 3, 82, 41, 0, 943, 975, 3, 78, 39, 0, 944, 975, 3, 84, 42, 0, 945, 975, 3, 86, 43, 0, 946, 975, 3, 88, 44, 0, 947, 975, 3, 90, 45, 0, 948, 975, 3, 92, 46, 0, 949, 975, 3, 106, 53, 0, 950, 975, 3, 98, 49, 0, 951, 975, 3, 108, 54, 0, 952, 975, 3, 100, 50, 0, 953, 975, 3, 94, 47, 0, 954, 975, 3, 96, 48, 0, 955, 975, 3, 104, 52, 0, 956, 975, 3, 102, 51, 0, 957, 958, 5, 1, 0, 0, 958, 960, 7, 3, 0, 0, 959, 961, 5, 431, 0, 0, 960, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 965, 5, 176, 0, 0, 965, 967, 5, 258, 0, 0, 966, 968, 5, 426, 0, 0, 967, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 975, 1, 0, 0, 0, 971, 975, 3, 666, 333, 0, 972, 975, 3, 442, 221, 0, 973, 975, 3, 444, 222, 0, 974, 916, 1, 0, 0, 0, 974, 917, 1, 0, 0, 0, 974, 918, 1, 0, 0, 0, 974, 919, 1, 0, 0, 0, 974, 920, 1, 0, 0, 0, 974, 921, 1, 0, 0, 0, 974, 922, 1, 0, 0, 0, 974, 923, 1, 0, 0, 0, 974, 924, 1, 0, 0, 0, 974, 925, 1, 0, 0, 0, 974, 926, 1, 0, 0, 0, 974, 927, 1, 0, 0, 0, 974, 928, 1, 0, 0, 0, 974, 929, 1, 0, 0, 0, 974, 930, 1, 0, 0, 0, 974, 931, 1, 0, 0, 0, 974, 932, 1, 0, 0, 0, 974, 933, 1, 0, 0, 0, 974, 934, 1, 0, 0, 0, 974, 935, 1, 0, 0, 0, 974, 936, 1, 0, 0, 0, 974, 937, 1, 0, 0, 0, 974, 938, 1, 0, 0, 0, 974, 939, 1, 0, 0, 0, 974, 940, 1, 0, 0, 0, 974, 941, 1, 0, 0, 0, 974, 942, 1, 0, 0, 0, 974, 943, 1, 0, 0, 0, 974, 944, 1, 0, 0, 0, 974, 945, 1, 0, 0, 0, 974, 946, 1, 0, 0, 0, 974, 947, 1, 0, 0, 0, 974, 948, 1, 0, 0, 0, 974, 949, 1, 0, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 957, 1, 0, 0, 0, 974, 964, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 29, 1, 0, 0, 0, 976, 977, 5, 151, 0, 0, 977, 978, 5, 117, 0, 0, 978, 31, 1, 0, 0, 0, 979, 980, 5, 151, 0, 0, 980, 981, 5, 216, 0, 0, 981, 982, 5, 117, 0, 0, 982, 33, 1, 0, 0, 0, 983, 984, 7, 4, 0, 0, 984, 35, 1, 0, 0, 0, 985, 986, 3, 678, 339, 0, 986, 987, 5, 284, 0, 0, 987, 37, 1, 0, 0, 0, 988, 989, 3, 680, 340, 0, 989, 990, 5, 284, 0, 0, 990, 39, 1, 0, 0, 0, 991, 992, 5, 321, 0, 0, 992, 993, 5, 17, 0, 0, 993, 994, 5, 92, 0, 0, 994, 41, 1, 0, 0, 0, 995, 997, 5, 58, 0, 0, 996, 998, 5, 273, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1001, 3, 70, 35, 0, 1000, 1002, 3, 32, 16, 0, 1001, 1000, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 3, 478, 239, 0, 1004, 1006, 3, 50, 25, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1008, 1, 0, 0, 0, 1007, 1009, 3, 428, 214, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1011, 5, 196, 0, 0, 1011, 1013, 5, 426, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1017, 1, 0, 0, 0, 1014, 1015, 5, 387, 0, 0, 1015, 1016, 5, 76, 0, 0, 1016, 1018, 3, 230, 115, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1036, 1, 0, 0, 0, 1019, 1020, 5, 58, 0, 0, 1020, 1021, 5, 273, 0, 0, 1021, 1023, 3, 70, 35, 0, 1022, 1024, 3, 32, 16, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 3, 478, 239, 0, 1026, 1028, 3, 50, 25, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1033, 3, 44, 22, 0, 1030, 1031, 5, 387, 0, 0, 1031, 1032, 5, 76, 0, 0, 1032, 1034, 3, 230, 115, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 995, 1, 0, 0, 0, 1035, 1019, 1, 0, 0, 0, 1036, 43, 1, 0, 0, 0, 1037, 1038, 5, 370, 0, 0, 1038, 1039, 3, 476, 238, 0, 1039, 45, 1, 0, 0, 0, 1040, 1041, 5, 368, 0, 0, 1041, 1042, 3, 476, 238, 0, 1042, 47, 1, 0, 0, 0, 1043, 1044, 5, 101, 0, 0, 1044, 1046, 3, 70, 35, 0, 1045, 1047, 3, 30, 15, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 3, 476, 238, 0, 1049, 1051, 3, 34, 17, 0, 1050, 1049, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 49, 1, 0, 0, 0, 1052, 1053, 5, 47, 0, 0, 1053, 1054, 5, 426, 0, 0, 1054, 51, 1, 0, 0, 0, 1055, 1057, 5, 351, 0, 0, 1056, 1058, 5, 329, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1065, 3, 640, 320, 0, 1060, 1061, 5, 46, 0, 0, 1061, 1062, 5, 399, 0, 0, 1062, 1063, 3, 254, 127, 0, 1063, 1064, 5, 400, 0, 0, 1064, 1066, 1, 0, 0, 0, 1065, 1060, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 1, 0, 0, 0, 1067, 1069, 5, 135, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 53, 1, 0, 0, 0, 1070, 1071, 5, 101, 0, 0, 1071, 1073, 5, 329, 0, 0, 1072, 1074, 3, 30, 15, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 3, 482, 241, 0, 1076, 1078, 5, 255, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 1, 0, 0, 0, 1079, 1081, 3, 14, 7, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 55, 1, 0, 0, 0, 1082, 1083, 5, 160, 0, 0, 1083, 1084, 5, 426, 0, 0, 1084, 1085, 5, 301, 0, 0, 1085, 1086, 5, 426, 0, 0, 1086, 57, 1, 0, 0, 0, 1087, 1090, 3, 654, 327, 0, 1088, 1089, 5, 395, 0, 0, 1089, 1091, 3, 654, 327, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1105, 1, 0, 0, 0, 1092, 1102, 3, 654, 327, 0, 1093, 1098, 5, 395, 0, 0, 1094, 1099, 5, 104, 0, 0, 1095, 1099, 5, 175, 0, 0, 1096, 1099, 5, 375, 0, 0, 1097, 1099, 3, 654, 327, 0, 1098, 1094, 1, 0, 0, 0, 1098, 1095, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1093, 1, 0, 0, 0, 1101, 1104, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1106, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1105, 1092, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 59, 1, 0, 0, 0, 1107, 1109, 3, 58, 29, 0, 1108, 1110, 3, 642, 321, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 61, 1, 0, 0, 0, 1111, 1113, 3, 480, 240, 0, 1112, 1114, 3, 642, 321, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 3, 264, 132, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 63, 1, 0, 0, 0, 1118, 1141, 7, 5, 0, 0, 1119, 1121, 3, 70, 35, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 3, 476, 238, 0, 1124, 1142, 1, 0, 0, 0, 1125, 1127, 5, 69, 0, 0, 1126, 1128, 5, 122, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1142, 3, 476, 238, 0, 1130, 1132, 5, 141, 0, 0, 1131, 1133, 5, 122, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1142, 3, 572, 286, 0, 1135, 1138, 5, 138, 0, 0, 1136, 1138, 5, 122, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1142, 3, 62, 31, 0, 1140, 1142, 3, 62, 31, 0, 1141, 1119, 1, 0, 0, 0, 1141, 1125, 1, 0, 0, 0, 1141, 1130, 1, 0, 0, 0, 1141, 1137, 1, 0, 0, 0, 1141, 1140, 1, 0, 0, 0, 1142, 65, 1, 0, 0, 0, 1143, 1144, 5, 10, 0, 0, 1144, 1145, 5, 329, 0, 0, 1145, 1158, 3, 640, 320, 0, 1146, 1147, 5, 52, 0, 0, 1147, 1154, 5, 319, 0, 0, 1148, 1155, 5, 215, 0, 0, 1149, 1150, 5, 134, 0, 0, 1150, 1152, 5, 46, 0, 0, 1151, 1153, 3, 254, 127, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1155, 1, 0, 0, 0, 1154, 1148, 1, 0, 0, 0, 1154, 1149, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1159, 1, 0, 0, 0, 1156, 1157, 5, 33, 0, 0, 1157, 1159, 5, 204, 0, 0, 1158, 1146, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 67, 1, 0, 0, 0, 1160, 1161, 7, 6, 0, 0, 1161, 69, 1, 0, 0, 0, 1162, 1163, 7, 7, 0, 0, 1163, 71, 1, 0, 0, 0, 1164, 1165, 5, 308, 0, 0, 1165, 1168, 7, 8, 0, 0, 1166, 1167, 5, 184, 0, 0, 1167, 1169, 3, 194, 97, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1348, 1, 0, 0, 0, 1170, 1172, 5, 308, 0, 0, 1171, 1173, 5, 122, 0, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1178, 5, 330, 0, 0, 1175, 1176, 3, 68, 34, 0, 1176, 1177, 3, 476, 238, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1175, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1182, 3, 74, 37, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1348, 1, 0, 0, 0, 1183, 1184, 5, 308, 0, 0, 1184, 1188, 5, 379, 0, 0, 1185, 1186, 3, 68, 34, 0, 1186, 1187, 3, 476, 238, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1193, 1, 0, 0, 0, 1190, 1191, 5, 184, 0, 0, 1191, 1194, 3, 194, 97, 0, 1192, 1194, 3, 194, 97, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1348, 1, 0, 0, 0, 1195, 1196, 5, 308, 0, 0, 1196, 1197, 5, 202, 0, 0, 1197, 1201, 5, 379, 0, 0, 1198, 1199, 3, 68, 34, 0, 1199, 1200, 3, 476, 238, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1206, 1, 0, 0, 0, 1203, 1204, 5, 184, 0, 0, 1204, 1207, 3, 194, 97, 0, 1205, 1207, 3, 194, 97, 0, 1206, 1203, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1348, 1, 0, 0, 0, 1208, 1210, 5, 308, 0, 0, 1209, 1211, 5, 315, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 46, 0, 0, 1213, 1214, 3, 68, 34, 0, 1214, 1218, 3, 480, 240, 0, 1215, 1216, 3, 68, 34, 0, 1216, 1217, 3, 476, 238, 0, 1217, 1219, 1, 0, 0, 0, 1218, 1215, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1223, 1, 0, 0, 0, 1220, 1221, 5, 184, 0, 0, 1221, 1224, 3, 194, 97, 0, 1222, 1224, 3, 194, 97, 0, 1223, 1220, 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1348, 1, 0, 0, 0, 1225, 1226, 5, 308, 0, 0, 1226, 1229, 5, 142, 0, 0, 1227, 1228, 5, 184, 0, 0, 1228, 1230, 3, 572, 286, 0, 1229, 1227, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1348, 1, 0, 0, 0, 1231, 1232, 5, 308, 0, 0, 1232, 1233, 5, 239, 0, 0, 1233, 1235, 3, 480, 240, 0, 1234, 1236, 3, 642, 321, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 500, 250, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 556, 278, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1245, 3, 390, 195, 0, 1244, 1243, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1348, 1, 0, 0, 0, 1246, 1247, 5, 308, 0, 0, 1247, 1253, 5, 58, 0, 0, 1248, 1249, 3, 70, 35, 0, 1249, 1250, 3, 476, 238, 0, 1250, 1254, 1, 0, 0, 0, 1251, 1252, 5, 329, 0, 0, 1252, 1254, 3, 482, 241, 0, 1253, 1248, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1348, 1, 0, 0, 0, 1255, 1256, 5, 308, 0, 0, 1256, 1257, 5, 329, 0, 0, 1257, 1261, 5, 122, 0, 0, 1258, 1259, 3, 68, 34, 0, 1259, 1260, 3, 476, 238, 0, 1260, 1262, 1, 0, 0, 0, 1261, 1258, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 5, 184, 0, 0, 1264, 1266, 3, 194, 97, 0, 1265, 1267, 3, 642, 321, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1348, 1, 0, 0, 0, 1268, 1269, 5, 308, 0, 0, 1269, 1270, 5, 332, 0, 0, 1270, 1274, 3, 482, 241, 0, 1271, 1272, 5, 399, 0, 0, 1272, 1273, 5, 426, 0, 0, 1273, 1275, 5, 400, 0, 0, 1274, 1271, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1348, 1, 0, 0, 0, 1276, 1277, 5, 308, 0, 0, 1277, 1289, 5, 191, 0, 0, 1278, 1279, 3, 70, 35, 0, 1279, 1281, 3, 476, 238, 0, 1280, 1282, 5, 122, 0, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1290, 1, 0, 0, 0, 1283, 1285, 3, 60, 30, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1288, 5, 122, 0, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1278, 1, 0, 0, 0, 1289, 1284, 1, 0, 0, 0, 1290, 1348, 1, 0, 0, 0, 1291, 1292, 5, 308, 0, 0, 1292, 1319, 5, 50, 0, 0, 1293, 1294, 5, 51, 0, 0, 1294, 1295, 5, 405, 0, 0, 1295, 1320, 5, 431, 0, 0, 1296, 1297, 3, 70, 35, 0, 1297, 1298, 3, 476, 238, 0, 1298, 1303, 1, 0, 0, 0, 1299, 1301, 3, 60, 30, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1303, 1, 0, 0, 0, 1302, 1296, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 410, 205, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 412, 206, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 414, 207, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1315, 3, 556, 278, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 1, 0, 0, 0, 1316, 1318, 3, 390, 195, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1293, 1, 0, 0, 0, 1319, 1302, 1, 0, 0, 0, 1320, 1348, 1, 0, 0, 0, 1321, 1322, 5, 308, 0, 0, 1322, 1348, 5, 346, 0, 0, 1323, 1324, 5, 308, 0, 0, 1324, 1325, 5, 54, 0, 0, 1325, 1348, 5, 426, 0, 0, 1326, 1327, 5, 308, 0, 0, 1327, 1331, 5, 280, 0, 0, 1328, 1329, 5, 243, 0, 0, 1329, 1332, 3, 654, 327, 0, 1330, 1332, 5, 244, 0, 0, 1331, 1328, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1348, 1, 0, 0, 0, 1333, 1334, 5, 308, 0, 0, 1334, 1348, 5, 70, 0, 0, 1335, 1337, 5, 308, 0, 0, 1336, 1338, 5, 138, 0, 0, 1337, 1336, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 7, 9, 0, 0, 1340, 1341, 5, 224, 0, 0, 1341, 1345, 3, 482, 241, 0, 1342, 1343, 3, 68, 34, 0, 1343, 1344, 3, 476, 238, 0, 1344, 1346, 1, 0, 0, 0, 1345, 1342, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1164, 1, 0, 0, 0, 1347, 1170, 1, 0, 0, 0, 1347, 1183, 1, 0, 0, 0, 1347, 1195, 1, 0, 0, 0, 1347, 1208, 1, 0, 0, 0, 1347, 1225, 1, 0, 0, 0, 1347, 1231, 1, 0, 0, 0, 1347, 1246, 1, 0, 0, 0, 1347, 1255, 1, 0, 0, 0, 1347, 1268, 1, 0, 0, 0, 1347, 1276, 1, 0, 0, 0, 1347, 1291, 1, 0, 0, 0, 1347, 1321, 1, 0, 0, 0, 1347, 1323, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1335, 1, 0, 0, 0, 1348, 73, 1, 0, 0, 0, 1349, 1350, 5, 384, 0, 0, 1350, 1351, 3, 654, 327, 0, 1351, 1352, 5, 405, 0, 0, 1352, 1353, 5, 426, 0, 0, 1353, 1358, 1, 0, 0, 0, 1354, 1355, 5, 184, 0, 0, 1355, 1358, 3, 194, 97, 0, 1356, 1358, 3, 194, 97, 0, 1357, 1349, 1, 0, 0, 0, 1357, 1354, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 75, 1, 0, 0, 0, 1359, 1360, 5, 190, 0, 0, 1360, 1361, 5, 329, 0, 0, 1361, 1362, 3, 640, 320, 0, 1362, 1363, 3, 80, 40, 0, 1363, 77, 1, 0, 0, 0, 1364, 1365, 5, 190, 0, 0, 1365, 1366, 3, 70, 35, 0, 1366, 1367, 3, 476, 238, 0, 1367, 1368, 3, 80, 40, 0, 1368, 79, 1, 0, 0, 0, 1369, 1370, 7, 10, 0, 0, 1370, 81, 1, 0, 0, 0, 1371, 1372, 5, 361, 0, 0, 1372, 1373, 5, 329, 0, 0, 1373, 1374, 3, 640, 320, 0, 1374, 83, 1, 0, 0, 0, 1375, 1376, 5, 361, 0, 0, 1376, 1377, 3, 70, 35, 0, 1377, 1378, 3, 476, 238, 0, 1378, 85, 1, 0, 0, 0, 1379, 1380, 5, 58, 0, 0, 1380, 1381, 5, 287, 0, 0, 1381, 1382, 3, 654, 327, 0, 1382, 87, 1, 0, 0, 0, 1383, 1384, 5, 101, 0, 0, 1384, 1385, 5, 287, 0, 0, 1385, 1386, 3, 654, 327, 0, 1386, 89, 1, 0, 0, 0, 1387, 1388, 5, 143, 0, 0, 1388, 1390, 3, 118, 59, 0, 1389, 1391, 3, 112, 56, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1393, 5, 341, 0, 0, 1393, 1395, 3, 124, 62, 0, 1394, 1396, 3, 130, 65, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 91, 1, 0, 0, 0, 1397, 1399, 5, 283, 0, 0, 1398, 1400, 3, 132, 66, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1403, 3, 118, 59, 0, 1402, 1404, 3, 112, 56, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 5, 139, 0, 0, 1406, 1407, 3, 124, 62, 0, 1407, 93, 1, 0, 0, 0, 1408, 1410, 5, 143, 0, 0, 1409, 1411, 5, 287, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 3, 654, 327, 0, 1413, 1414, 5, 397, 0, 0, 1414, 1416, 3, 654, 327, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 341, 0, 0, 1421, 1423, 3, 124, 62, 0, 1422, 1424, 3, 136, 68, 0, 1423, 1422, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 95, 1, 0, 0, 0, 1425, 1427, 5, 283, 0, 0, 1426, 1428, 3, 134, 67, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 5, 287, 0, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1437, 3, 654, 327, 0, 1433, 1434, 5, 397, 0, 0, 1434, 1436, 3, 654, 327, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1439, 1, 0, 0, 0, 1437, 1435, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1441, 5, 139, 0, 0, 1441, 1442, 3, 124, 62, 0, 1442, 97, 1, 0, 0, 0, 1443, 1444, 5, 308, 0, 0, 1444, 1445, 5, 287, 0, 0, 1445, 1446, 5, 143, 0, 0, 1446, 1447, 3, 126, 63, 0, 1447, 99, 1, 0, 0, 0, 1448, 1449, 5, 308, 0, 0, 1449, 1450, 5, 288, 0, 0, 1450, 101, 1, 0, 0, 0, 1451, 1452, 5, 308, 0, 0, 1452, 1453, 5, 62, 0, 0, 1453, 1454, 5, 288, 0, 0, 1454, 103, 1, 0, 0, 0, 1455, 1456, 5, 304, 0, 0, 1456, 1460, 5, 287, 0, 0, 1457, 1461, 5, 7, 0, 0, 1458, 1461, 5, 213, 0, 0, 1459, 1461, 3, 654, 327, 0, 1460, 1457, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1459, 1, 0, 0, 0, 1461, 105, 1, 0, 0, 0, 1462, 1463, 5, 308, 0, 0, 1463, 1465, 5, 143, 0, 0, 1464, 1466, 3, 126, 63, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1468, 5, 224, 0, 0, 1468, 1470, 3, 110, 55, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 107, 1, 0, 0, 0, 1471, 1472, 5, 308, 0, 0, 1472, 1473, 5, 252, 0, 0, 1473, 1474, 3, 654, 327, 0, 1474, 109, 1, 0, 0, 0, 1475, 1478, 5, 7, 0, 0, 1476, 1478, 3, 116, 58, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1476, 1, 0, 0, 0, 1478, 111, 1, 0, 0, 0, 1479, 1480, 5, 224, 0, 0, 1480, 1481, 3, 114, 57, 0, 1481, 113, 1, 0, 0, 0, 1482, 1483, 3, 70, 35, 0, 1483, 1484, 3, 476, 238, 0, 1484, 1494, 1, 0, 0, 0, 1485, 1487, 5, 329, 0, 0, 1486, 1485, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1494, 3, 640, 320, 0, 1489, 1490, 5, 366, 0, 0, 1490, 1494, 5, 426, 0, 0, 1491, 1492, 5, 303, 0, 0, 1492, 1494, 3, 654, 327, 0, 1493, 1482, 1, 0, 0, 0, 1493, 1486, 1, 0, 0, 0, 1493, 1489, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 115, 1, 0, 0, 0, 1495, 1496, 3, 70, 35, 0, 1496, 1497, 3, 476, 238, 0, 1497, 1516, 1, 0, 0, 0, 1498, 1500, 5, 329, 0, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1506, 3, 482, 241, 0, 1502, 1503, 5, 399, 0, 0, 1503, 1504, 3, 254, 127, 0, 1504, 1505, 5, 400, 0, 0, 1505, 1507, 1, 0, 0, 0, 1506, 1502, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1510, 3, 642, 321, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1516, 1, 0, 0, 0, 1511, 1512, 5, 366, 0, 0, 1512, 1516, 5, 426, 0, 0, 1513, 1514, 5, 303, 0, 0, 1514, 1516, 3, 654, 327, 0, 1515, 1495, 1, 0, 0, 0, 1515, 1499, 1, 0, 0, 0, 1515, 1511, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1516, 117, 1, 0, 0, 0, 1517, 1522, 3, 120, 60, 0, 1518, 1519, 5, 397, 0, 0, 1519, 1521, 3, 120, 60, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 119, 1, 0, 0, 0, 1524, 1522, 1, 0, 0, 0, 1525, 1530, 3, 122, 61, 0, 1526, 1527, 5, 399, 0, 0, 1527, 1528, 3, 254, 127, 0, 1528, 1529, 5, 400, 0, 0, 1529, 1531, 1, 0, 0, 0, 1530, 1526, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 121, 1, 0, 0, 0, 1532, 1533, 7, 11, 0, 0, 1533, 123, 1, 0, 0, 0, 1534, 1539, 3, 126, 63, 0, 1535, 1536, 5, 397, 0, 0, 1536, 1538, 3, 126, 63, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 125, 1, 0, 0, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1543, 5, 369, 0, 0, 1543, 1549, 3, 658, 329, 0, 1544, 1545, 5, 144, 0, 0, 1545, 1549, 3, 658, 329, 0, 1546, 1547, 5, 287, 0, 0, 1547, 1549, 3, 654, 327, 0, 1548, 1542, 1, 0, 0, 0, 1548, 1544, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1549, 127, 1, 0, 0, 0, 1550, 1551, 5, 369, 0, 0, 1551, 1556, 3, 658, 329, 0, 1552, 1553, 5, 287, 0, 0, 1553, 1556, 3, 654, 327, 0, 1554, 1556, 3, 654, 327, 0, 1555, 1550, 1, 0, 0, 0, 1555, 1552, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 129, 1, 0, 0, 0, 1557, 1558, 5, 387, 0, 0, 1558, 1559, 5, 143, 0, 0, 1559, 1560, 5, 227, 0, 0, 1560, 131, 1, 0, 0, 0, 1561, 1562, 5, 143, 0, 0, 1562, 1563, 5, 227, 0, 0, 1563, 1564, 5, 134, 0, 0, 1564, 133, 1, 0, 0, 0, 1565, 1566, 5, 5, 0, 0, 1566, 1567, 5, 227, 0, 0, 1567, 1568, 5, 134, 0, 0, 1568, 135, 1, 0, 0, 0, 1569, 1570, 5, 387, 0, 0, 1570, 1571, 5, 5, 0, 0, 1571, 1572, 5, 227, 0, 0, 1572, 137, 1, 0, 0, 0, 1573, 1575, 5, 212, 0, 0, 1574, 1576, 5, 276, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 5, 329, 0, 0, 1578, 1584, 3, 482, 241, 0, 1579, 1580, 7, 12, 0, 0, 1580, 1582, 5, 239, 0, 0, 1581, 1583, 3, 646, 323, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 1, 0, 0, 0, 1584, 1579, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 139, 1, 0, 0, 0, 1586, 1591, 3, 142, 71, 0, 1587, 1588, 5, 397, 0, 0, 1588, 1590, 3, 142, 71, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 141, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 144, 72, 0, 1595, 1596, 5, 426, 0, 0, 1596, 143, 1, 0, 0, 0, 1597, 1598, 7, 13, 0, 0, 1598, 145, 1, 0, 0, 0, 1599, 1601, 5, 58, 0, 0, 1600, 1602, 5, 333, 0, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 5, 141, 0, 0, 1604, 1605, 3, 570, 285, 0, 1605, 1606, 5, 17, 0, 0, 1606, 1609, 5, 426, 0, 0, 1607, 1608, 5, 370, 0, 0, 1608, 1610, 3, 140, 70, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 147, 1, 0, 0, 0, 1611, 1613, 5, 101, 0, 0, 1612, 1614, 5, 333, 0, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 5, 141, 0, 0, 1616, 1618, 3, 30, 15, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 3, 572, 286, 0, 1620, 149, 1, 0, 0, 0, 1621, 1622, 5, 271, 0, 0, 1622, 1623, 7, 14, 0, 0, 1623, 151, 1, 0, 0, 0, 1624, 1625, 5, 58, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 194, 0, 0, 1627, 1628, 5, 432, 0, 0, 1628, 1630, 5, 399, 0, 0, 1629, 1631, 3, 248, 124, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 5, 400, 0, 0, 1633, 1634, 3, 596, 298, 0, 1634, 153, 1, 0, 0, 0, 1635, 1636, 5, 101, 0, 0, 1636, 1637, 5, 333, 0, 0, 1637, 1639, 5, 194, 0, 0, 1638, 1640, 3, 30, 15, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 5, 432, 0, 0, 1642, 155, 1, 0, 0, 0, 1643, 1644, 5, 58, 0, 0, 1644, 1645, 5, 155, 0, 0, 1645, 1646, 3, 654, 327, 0, 1646, 1647, 5, 224, 0, 0, 1647, 1648, 5, 329, 0, 0, 1648, 1649, 3, 482, 241, 0, 1649, 1650, 3, 268, 134, 0, 1650, 1651, 5, 17, 0, 0, 1651, 1655, 5, 426, 0, 0, 1652, 1653, 5, 387, 0, 0, 1653, 1654, 5, 84, 0, 0, 1654, 1656, 5, 265, 0, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1658, 5, 150, 0, 0, 1658, 1660, 3, 226, 113, 0, 1659, 1657, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1664, 1, 0, 0, 0, 1661, 1662, 5, 154, 0, 0, 1662, 1663, 5, 329, 0, 0, 1663, 1665, 3, 482, 241, 0, 1664, 1661, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1669, 1, 0, 0, 0, 1666, 1667, 5, 238, 0, 0, 1667, 1668, 5, 32, 0, 0, 1668, 1670, 3, 268, 134, 0, 1669, 1666, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1675, 1, 0, 0, 0, 1671, 1673, 3, 222, 111, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 3, 246, 123, 0, 1675, 1672, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 428, 214, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 1, 0, 0, 0, 1680, 1682, 3, 224, 112, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1684, 1, 0, 0, 0, 1683, 1685, 3, 196, 98, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 157, 1, 0, 0, 0, 1686, 1687, 5, 101, 0, 0, 1687, 1689, 5, 155, 0, 0, 1688, 1690, 3, 30, 15, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 3, 654, 327, 0, 1692, 1693, 5, 224, 0, 0, 1693, 1694, 3, 482, 241, 0, 1694, 159, 1, 0, 0, 0, 1695, 1698, 5, 58, 0, 0, 1696, 1697, 5, 228, 0, 0, 1697, 1699, 5, 278, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 5, 378, 0, 0, 1701, 1703, 3, 32, 16, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1709, 3, 488, 244, 0, 1705, 1706, 5, 399, 0, 0, 1706, 1707, 3, 308, 154, 0, 1707, 1708, 5, 400, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1705, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 196, 98, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1715, 1, 0, 0, 0, 1714, 1716, 3, 162, 81, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1719, 3, 224, 112, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 5, 17, 0, 0, 1721, 1722, 3, 384, 192, 0, 1722, 161, 1, 0, 0, 0, 1723, 1724, 5, 238, 0, 0, 1724, 1730, 5, 224, 0, 0, 1725, 1726, 5, 399, 0, 0, 1726, 1731, 3, 254, 127, 0, 1727, 1728, 5, 316, 0, 0, 1728, 1729, 5, 399, 0, 0, 1729, 1731, 3, 204, 102, 0, 1730, 1725, 1, 0, 0, 0, 1730, 1727, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 5, 400, 0, 0, 1733, 163, 1, 0, 0, 0, 1734, 1737, 3, 166, 83, 0, 1735, 1737, 3, 168, 84, 0, 1736, 1734, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 165, 1, 0, 0, 0, 1738, 1739, 5, 42, 0, 0, 1739, 1740, 5, 224, 0, 0, 1740, 1741, 5, 399, 0, 0, 1741, 1742, 3, 254, 127, 0, 1742, 1743, 5, 400, 0, 0, 1743, 167, 1, 0, 0, 0, 1744, 1745, 3, 170, 85, 0, 1745, 1746, 3, 172, 86, 0, 1746, 169, 1, 0, 0, 0, 1747, 1748, 5, 98, 0, 0, 1748, 1749, 5, 224, 0, 0, 1749, 1750, 5, 399, 0, 0, 1750, 1751, 3, 254, 127, 0, 1751, 1752, 5, 400, 0, 0, 1752, 171, 1, 0, 0, 0, 1753, 1754, 5, 315, 0, 0, 1754, 1755, 5, 224, 0, 0, 1755, 1756, 5, 399, 0, 0, 1756, 1757, 3, 254, 127, 0, 1757, 1758, 5, 400, 0, 0, 1758, 173, 1, 0, 0, 0, 1759, 1760, 5, 101, 0, 0, 1760, 1762, 5, 378, 0, 0, 1761, 1763, 3, 30, 15, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 486, 243, 0, 1765, 175, 1, 0, 0, 0, 1766, 1767, 5, 58, 0, 0, 1767, 1768, 5, 202, 0, 0, 1768, 1770, 5, 378, 0, 0, 1769, 1771, 3, 32, 16, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 3, 488, 244, 0, 1773, 1775, 3, 38, 19, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 196, 98, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 162, 81, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 164, 82, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 222, 111, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 246, 123, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1793, 3, 428, 214, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1796, 3, 224, 112, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 5, 17, 0, 0, 1798, 1799, 3, 384, 192, 0, 1799, 177, 1, 0, 0, 0, 1800, 1801, 5, 101, 0, 0, 1801, 1802, 5, 202, 0, 0, 1802, 1804, 5, 378, 0, 0, 1803, 1805, 3, 30, 15, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 486, 243, 0, 1807, 179, 1, 0, 0, 0, 1808, 1809, 5, 58, 0, 0, 1809, 1810, 5, 293, 0, 0, 1810, 1811, 5, 258, 0, 0, 1811, 1812, 3, 654, 327, 0, 1812, 1814, 3, 188, 94, 0, 1813, 1815, 3, 190, 95, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1818, 3, 272, 136, 0, 1817, 1816, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 3, 192, 96, 0, 1820, 181, 1, 0, 0, 0, 1821, 1822, 5, 101, 0, 0, 1822, 1823, 5, 293, 0, 0, 1823, 1824, 5, 258, 0, 0, 1824, 1825, 3, 654, 327, 0, 1825, 183, 1, 0, 0, 0, 1826, 1827, 5, 9, 0, 0, 1827, 1828, 5, 293, 0, 0, 1828, 1829, 5, 258, 0, 0, 1829, 1830, 3, 654, 327, 0, 1830, 1831, 3, 186, 93, 0, 1831, 185, 1, 0, 0, 0, 1832, 1838, 3, 188, 94, 0, 1833, 1838, 3, 190, 95, 0, 1834, 1838, 3, 272, 136, 0, 1835, 1838, 3, 192, 96, 0, 1836, 1838, 5, 115, 0, 0, 1837, 1832, 1, 0, 0, 0, 1837, 1833, 1, 0, 0, 0, 1837, 1834, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1836, 1, 0, 0, 0, 1838, 187, 1, 0, 0, 0, 1839, 1840, 5, 59, 0, 0, 1840, 1855, 5, 426, 0, 0, 1841, 1843, 5, 111, 0, 0, 1842, 1844, 5, 431, 0, 0, 1843, 1842, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1852, 3, 594, 297, 0, 1846, 1850, 5, 20, 0, 0, 1847, 1848, 5, 223, 0, 0, 1848, 1850, 5, 32, 0, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 5, 426, 0, 0, 1852, 1849, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1855, 1, 0, 0, 0, 1854, 1839, 1, 0, 0, 0, 1854, 1841, 1, 0, 0, 0, 1855, 189, 1, 0, 0, 0, 1856, 1857, 5, 116, 0, 0, 1857, 1858, 5, 17, 0, 0, 1858, 1859, 5, 426, 0, 0, 1859, 191, 1, 0, 0, 0, 1860, 1862, 5, 85, 0, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 5, 17, 0, 0, 1864, 1865, 3, 2, 1, 0, 1865, 193, 1, 0, 0, 0, 1866, 1869, 3, 654, 327, 0, 1867, 1869, 5, 426, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1867, 1, 0, 0, 0, 1869, 195, 1, 0, 0, 0, 1870, 1871, 5, 47, 0, 0, 1871, 1872, 5, 426, 0, 0, 1872, 197, 1, 0, 0, 0, 1873, 1874, 5, 183, 0, 0, 1874, 1875, 5, 431, 0, 0, 1875, 199, 1, 0, 0, 0, 1876, 1877, 5, 238, 0, 0, 1877, 1886, 5, 32, 0, 0, 1878, 1881, 5, 399, 0, 0, 1879, 1882, 3, 202, 101, 0, 1880, 1882, 3, 254, 127, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1882, 1887, 1, 0, 0, 0, 1883, 1884, 5, 316, 0, 0, 1884, 1885, 5, 399, 0, 0, 1885, 1887, 3, 204, 102, 0, 1886, 1878, 1, 0, 0, 0, 1886, 1883, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 5, 400, 0, 0, 1889, 201, 1, 0, 0, 0, 1890, 1895, 3, 320, 160, 0, 1891, 1892, 5, 397, 0, 0, 1892, 1894, 3, 320, 160, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1897, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 203, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1903, 3, 206, 103, 0, 1899, 1900, 5, 397, 0, 0, 1900, 1902, 3, 206, 103, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 205, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1925, 3, 256, 128, 0, 1907, 1912, 3, 682, 341, 0, 1908, 1912, 3, 684, 342, 0, 1909, 1912, 3, 688, 344, 0, 1910, 1912, 3, 690, 345, 0, 1911, 1907, 1, 0, 0, 0, 1911, 1908, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1914, 5, 399, 0, 0, 1914, 1915, 3, 256, 128, 0, 1915, 1916, 5, 400, 0, 0, 1916, 1925, 1, 0, 0, 0, 1917, 1918, 7, 15, 0, 0, 1918, 1919, 5, 399, 0, 0, 1919, 1920, 5, 431, 0, 0, 1920, 1921, 5, 397, 0, 0, 1921, 1922, 3, 256, 128, 0, 1922, 1923, 5, 400, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1906, 1, 0, 0, 0, 1924, 1911, 1, 0, 0, 0, 1924, 1917, 1, 0, 0, 0, 1925, 207, 1, 0, 0, 0, 1926, 1927, 5, 42, 0, 0, 1927, 1928, 5, 32, 0, 0, 1928, 1929, 5, 399, 0, 0, 1929, 1930, 3, 254, 127, 0, 1930, 1937, 5, 400, 0, 0, 1931, 1932, 5, 315, 0, 0, 1932, 1933, 5, 32, 0, 0, 1933, 1934, 5, 399, 0, 0, 1934, 1935, 3, 266, 133, 0, 1935, 1936, 5, 400, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1931, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 5, 166, 0, 0, 1940, 1941, 5, 431, 0, 0, 1941, 1942, 5, 31, 0, 0, 1942, 209, 1, 0, 0, 0, 1943, 1944, 5, 310, 0, 0, 1944, 1945, 5, 32, 0, 0, 1945, 1946, 5, 399, 0, 0, 1946, 1947, 3, 254, 127, 0, 1947, 1948, 5, 400, 0, 0, 1948, 1949, 5, 224, 0, 0, 1949, 1950, 5, 399, 0, 0, 1950, 1951, 3, 294, 147, 0, 1951, 1953, 5, 400, 0, 0, 1952, 1954, 3, 40, 20, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 211, 1, 0, 0, 0, 1955, 1958, 3, 218, 109, 0, 1956, 1958, 3, 220, 110, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1958, 213, 1, 0, 0, 0, 1959, 1960, 5, 266, 0, 0, 1960, 1961, 5, 426, 0, 0, 1961, 215, 1, 0, 0, 0, 1962, 1963, 5, 267, 0, 0, 1963, 1964, 5, 426, 0, 0, 1964, 217, 1, 0, 0, 0, 1965, 1966, 5, 291, 0, 0, 1966, 1967, 5, 137, 0, 0, 1967, 1968, 5, 301, 0, 0, 1968, 1972, 5, 426, 0, 0, 1969, 1970, 5, 387, 0, 0, 1970, 1971, 5, 302, 0, 0, 1971, 1973, 3, 226, 113, 0, 1972, 1969, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 219, 1, 0, 0, 0, 1974, 1975, 5, 291, 0, 0, 1975, 1976, 5, 137, 0, 0, 1976, 1978, 5, 87, 0, 0, 1977, 1979, 3, 236, 118, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 238, 119, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 240, 120, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 242, 121, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1990, 1, 0, 0, 0, 1989, 1991, 3, 244, 122, 0, 1990, 1989, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 221, 1, 0, 0, 0, 1992, 1995, 3, 220, 110, 0, 1993, 1995, 3, 218, 109, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1993, 1, 0, 0, 0, 1995, 223, 1, 0, 0, 0, 1996, 1997, 5, 332, 0, 0, 1997, 1998, 3, 226, 113, 0, 1998, 225, 1, 0, 0, 0, 1999, 2000, 5, 399, 0, 0, 2000, 2001, 3, 228, 114, 0, 2001, 2002, 5, 400, 0, 0, 2002, 227, 1, 0, 0, 0, 2003, 2013, 3, 232, 116, 0, 2004, 2009, 5, 426, 0, 0, 2005, 2006, 5, 397, 0, 0, 2006, 2008, 5, 426, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2013, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2003, 1, 0, 0, 0, 2012, 2004, 1, 0, 0, 0, 2013, 229, 1, 0, 0, 0, 2014, 2015, 5, 399, 0, 0, 2015, 2016, 3, 232, 116, 0, 2016, 2017, 5, 400, 0, 0, 2017, 231, 1, 0, 0, 0, 2018, 2023, 3, 234, 117, 0, 2019, 2020, 5, 397, 0, 0, 2020, 2022, 3, 234, 117, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 233, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2027, 5, 426, 0, 0, 2027, 2028, 5, 405, 0, 0, 2028, 2029, 5, 426, 0, 0, 2029, 235, 1, 0, 0, 0, 2030, 2031, 5, 127, 0, 0, 2031, 2032, 5, 334, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2037, 5, 426, 0, 0, 2034, 2035, 5, 110, 0, 0, 2035, 2036, 5, 32, 0, 0, 2036, 2038, 5, 426, 0, 0, 2037, 2034, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 237, 1, 0, 0, 0, 2039, 2040, 5, 44, 0, 0, 2040, 2041, 5, 169, 0, 0, 2041, 2042, 5, 334, 0, 0, 2042, 2043, 5, 32, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 239, 1, 0, 0, 0, 2045, 2046, 5, 198, 0, 0, 2046, 2047, 5, 174, 0, 0, 2047, 2048, 5, 334, 0, 0, 2048, 2049, 5, 32, 0, 0, 2049, 2050, 5, 426, 0, 0, 2050, 241, 1, 0, 0, 0, 2051, 2052, 5, 186, 0, 0, 2052, 2053, 5, 334, 0, 0, 2053, 2054, 5, 32, 0, 0, 2054, 2055, 5, 426, 0, 0, 2055, 243, 1, 0, 0, 0, 2056, 2057, 5, 219, 0, 0, 2057, 2058, 5, 85, 0, 0, 2058, 2059, 5, 17, 0, 0, 2059, 2060, 5, 426, 0, 0, 2060, 245, 1, 0, 0, 0, 2061, 2062, 5, 321, 0, 0, 2062, 2063, 5, 17, 0, 0, 2063, 2064, 5, 160, 0, 0, 2064, 2065, 5, 426, 0, 0, 2065, 2066, 5, 233, 0, 0, 2066, 2071, 5, 426, 0, 0, 2067, 2068, 5, 159, 0, 0, 2068, 2069, 5, 426, 0, 0, 2069, 2070, 5, 232, 0, 0, 2070, 2072, 5, 426, 0, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2103, 1, 0, 0, 0, 2073, 2074, 5, 321, 0, 0, 2074, 2075, 5, 32, 0, 0, 2075, 2079, 5, 426, 0, 0, 2076, 2077, 5, 387, 0, 0, 2077, 2078, 5, 302, 0, 0, 2078, 2080, 3, 226, 113, 0, 2079, 2076, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2084, 1, 0, 0, 0, 2081, 2082, 5, 321, 0, 0, 2082, 2083, 5, 17, 0, 0, 2083, 2085, 3, 654, 327, 0, 2084, 2081, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2103, 1, 0, 0, 0, 2086, 2087, 5, 321, 0, 0, 2087, 2088, 5, 32, 0, 0, 2088, 2092, 3, 654, 327, 0, 2089, 2090, 5, 387, 0, 0, 2090, 2091, 5, 302, 0, 0, 2091, 2093, 3, 226, 113, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2097, 1, 0, 0, 0, 2094, 2095, 5, 321, 0, 0, 2095, 2096, 5, 17, 0, 0, 2096, 2098, 3, 654, 327, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2103, 1, 0, 0, 0, 2099, 2100, 5, 321, 0, 0, 2100, 2101, 5, 17, 0, 0, 2101, 2103, 3, 654, 327, 0, 2102, 2061, 1, 0, 0, 0, 2102, 2073, 1, 0, 0, 0, 2102, 2086, 1, 0, 0, 0, 2102, 2099, 1, 0, 0, 0, 2103, 247, 1, 0, 0, 0, 2104, 2109, 3, 314, 157, 0, 2105, 2106, 5, 397, 0, 0, 2106, 2108, 3, 314, 157, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 249, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2117, 3, 316, 158, 0, 2113, 2114, 5, 397, 0, 0, 2114, 2116, 3, 316, 158, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 251, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2125, 3, 344, 172, 0, 2121, 2122, 5, 397, 0, 0, 2122, 2124, 3, 344, 172, 0, 2123, 2121, 1, 0, 0, 0, 2124, 2127, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 253, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2128, 2133, 3, 256, 128, 0, 2129, 2130, 5, 397, 0, 0, 2130, 2132, 3, 256, 128, 0, 2131, 2129, 1, 0, 0, 0, 2132, 2135, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 255, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2136, 2140, 3, 702, 351, 0, 2137, 2138, 4, 128, 0, 0, 2138, 2140, 3, 698, 349, 0, 2139, 2136, 1, 0, 0, 0, 2139, 2137, 1, 0, 0, 0, 2140, 257, 1, 0, 0, 0, 2141, 2142, 3, 700, 350, 0, 2142, 259, 1, 0, 0, 0, 2143, 2147, 3, 702, 351, 0, 2144, 2145, 4, 130, 1, 0, 2145, 2147, 3, 698, 349, 0, 2146, 2143, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2147, 261, 1, 0, 0, 0, 2148, 2149, 3, 654, 327, 0, 2149, 263, 1, 0, 0, 0, 2150, 2160, 3, 256, 128, 0, 2151, 2156, 5, 395, 0, 0, 2152, 2157, 5, 104, 0, 0, 2153, 2157, 5, 175, 0, 0, 2154, 2157, 5, 375, 0, 0, 2155, 2157, 3, 654, 327, 0, 2156, 2152, 1, 0, 0, 0, 2156, 2153, 1, 0, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2151, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 265, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2168, 3, 306, 153, 0, 2164, 2165, 5, 397, 0, 0, 2165, 2167, 3, 306, 153, 0, 2166, 2164, 1, 0, 0, 0, 2167, 2170, 1, 0, 0, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 267, 1, 0, 0, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2172, 5, 399, 0, 0, 2172, 2173, 3, 254, 127, 0, 2173, 2174, 5, 400, 0, 0, 2174, 269, 1, 0, 0, 0, 2175, 2177, 3, 272, 136, 0, 2176, 2178, 3, 274, 137, 0, 2177, 2176, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2181, 3, 276, 138, 0, 2180, 2175, 1, 0, 0, 0, 2180, 2179, 1, 0, 0, 0, 2181, 271, 1, 0, 0, 0, 2182, 2185, 3, 678, 339, 0, 2183, 2185, 3, 680, 340, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2183, 1, 0, 0, 0, 2185, 273, 1, 0, 0, 0, 2186, 2187, 7, 16, 0, 0, 2187, 275, 1, 0, 0, 0, 2188, 2192, 5, 109, 0, 0, 2189, 2190, 5, 216, 0, 0, 2190, 2192, 5, 109, 0, 0, 2191, 2188, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 277, 1, 0, 0, 0, 2193, 2194, 7, 17, 0, 0, 2194, 279, 1, 0, 0, 0, 2195, 2196, 5, 55, 0, 0, 2196, 2198, 3, 654, 327, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2201, 3, 284, 142, 0, 2200, 2202, 3, 340, 170, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 281, 1, 0, 0, 0, 2203, 2204, 5, 55, 0, 0, 2204, 2205, 3, 654, 327, 0, 2205, 2207, 3, 284, 142, 0, 2206, 2208, 3, 342, 171, 0, 2207, 2206, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 283, 1, 0, 0, 0, 2209, 2212, 3, 286, 143, 0, 2210, 2212, 3, 288, 144, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2210, 1, 0, 0, 0, 2212, 285, 1, 0, 0, 0, 2213, 2214, 3, 338, 169, 0, 2214, 2215, 3, 268, 134, 0, 2215, 287, 1, 0, 0, 0, 2216, 2217, 5, 40, 0, 0, 2217, 2218, 5, 399, 0, 0, 2218, 2219, 3, 596, 298, 0, 2219, 2220, 5, 400, 0, 0, 2220, 289, 1, 0, 0, 0, 2221, 2222, 5, 55, 0, 0, 2222, 2224, 3, 654, 327, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 5, 136, 0, 0, 2226, 2227, 5, 173, 0, 0, 2227, 2228, 3, 268, 134, 0, 2228, 2229, 5, 269, 0, 0, 2229, 2230, 3, 482, 241, 0, 2230, 2232, 3, 268, 134, 0, 2231, 2233, 3, 340, 170, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 291, 1, 0, 0, 0, 2234, 2235, 5, 55, 0, 0, 2235, 2236, 3, 654, 327, 0, 2236, 2237, 5, 136, 0, 0, 2237, 2238, 5, 173, 0, 0, 2238, 2239, 3, 268, 134, 0, 2239, 2240, 5, 269, 0, 0, 2240, 2241, 3, 482, 241, 0, 2241, 2243, 3, 268, 134, 0, 2242, 2244, 3, 342, 171, 0, 2243, 2242, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 293, 1, 0, 0, 0, 2245, 2248, 3, 300, 150, 0, 2246, 2248, 3, 296, 148, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2246, 1, 0, 0, 0, 2248, 295, 1, 0, 0, 0, 2249, 2254, 3, 298, 149, 0, 2250, 2251, 5, 397, 0, 0, 2251, 2253, 3, 298, 149, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2256, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 297, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2258, 5, 399, 0, 0, 2258, 2259, 3, 300, 150, 0, 2259, 2260, 5, 400, 0, 0, 2260, 299, 1, 0, 0, 0, 2261, 2266, 3, 588, 294, 0, 2262, 2263, 5, 397, 0, 0, 2263, 2265, 3, 588, 294, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2268, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 301, 1, 0, 0, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2270, 7, 18, 0, 0, 2270, 303, 1, 0, 0, 0, 2271, 2272, 5, 220, 0, 0, 2272, 2273, 7, 19, 0, 0, 2273, 305, 1, 0, 0, 0, 2274, 2276, 3, 256, 128, 0, 2275, 2277, 3, 302, 151, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2280, 3, 304, 152, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 307, 1, 0, 0, 0, 2281, 2286, 3, 310, 155, 0, 2282, 2283, 5, 397, 0, 0, 2283, 2285, 3, 310, 155, 0, 2284, 2282, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 309, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 3, 262, 131, 0, 2290, 2291, 5, 47, 0, 0, 2291, 2293, 5, 426, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 311, 1, 0, 0, 0, 2294, 2297, 3, 256, 128, 0, 2295, 2297, 3, 596, 298, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2295, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2300, 3, 302, 151, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 3, 304, 152, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 313, 1, 0, 0, 0, 2304, 2305, 3, 262, 131, 0, 2305, 2308, 3, 346, 173, 0, 2306, 2307, 5, 47, 0, 0, 2307, 2309, 5, 426, 0, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 315, 1, 0, 0, 0, 2310, 2313, 3, 318, 159, 0, 2311, 2313, 3, 320, 160, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2311, 1, 0, 0, 0, 2313, 317, 1, 0, 0, 0, 2314, 2317, 3, 290, 145, 0, 2315, 2317, 3, 280, 140, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2317, 319, 1, 0, 0, 0, 2318, 2319, 3, 262, 131, 0, 2319, 2321, 3, 346, 173, 0, 2320, 2322, 3, 322, 161, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2324, 5, 47, 0, 0, 2324, 2326, 5, 426, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 321, 1, 0, 0, 0, 2327, 2330, 3, 324, 162, 0, 2328, 2330, 3, 326, 163, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2328, 1, 0, 0, 0, 2330, 323, 1, 0, 0, 0, 2331, 2332, 5, 55, 0, 0, 2332, 2334, 3, 654, 327, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2336, 5, 269, 0, 0, 2336, 2337, 3, 482, 241, 0, 2337, 2338, 5, 399, 0, 0, 2338, 2339, 3, 256, 128, 0, 2339, 2341, 5, 400, 0, 0, 2340, 2342, 3, 340, 170, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 325, 1, 0, 0, 0, 2343, 2344, 5, 55, 0, 0, 2344, 2346, 3, 654, 327, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2349, 3, 334, 167, 0, 2348, 2350, 3, 340, 170, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 327, 1, 0, 0, 0, 2351, 2354, 3, 330, 165, 0, 2352, 2354, 3, 332, 166, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 329, 1, 0, 0, 0, 2355, 2356, 5, 55, 0, 0, 2356, 2358, 3, 654, 327, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 5, 269, 0, 0, 2360, 2361, 3, 482, 241, 0, 2361, 2362, 5, 399, 0, 0, 2362, 2363, 3, 256, 128, 0, 2363, 2365, 5, 400, 0, 0, 2364, 2366, 3, 342, 171, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 331, 1, 0, 0, 0, 2367, 2368, 5, 55, 0, 0, 2368, 2370, 3, 654, 327, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2373, 3, 334, 167, 0, 2372, 2374, 3, 342, 171, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 333, 1, 0, 0, 0, 2375, 2376, 5, 216, 0, 0, 2376, 2382, 5, 219, 0, 0, 2377, 2378, 5, 83, 0, 0, 2378, 2382, 3, 336, 168, 0, 2379, 2382, 3, 288, 144, 0, 2380, 2382, 3, 338, 169, 0, 2381, 2375, 1, 0, 0, 0, 2381, 2377, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2381, 2380, 1, 0, 0, 0, 2382, 335, 1, 0, 0, 0, 2383, 2387, 3, 588, 294, 0, 2384, 2387, 3, 566, 283, 0, 2385, 2387, 3, 576, 288, 0, 2386, 2383, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2385, 1, 0, 0, 0, 2387, 337, 1, 0, 0, 0, 2388, 2389, 5, 251, 0, 0, 2389, 2392, 5, 173, 0, 0, 2390, 2392, 5, 358, 0, 0, 2391, 2388, 1, 0, 0, 0, 2391, 2390, 1, 0, 0, 0, 2392, 339, 1, 0, 0, 0, 2393, 2395, 3, 270, 135, 0, 2394, 2396, 3, 278, 139, 0, 2395, 2394, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 341, 1, 0, 0, 0, 2397, 2399, 3, 270, 135, 0, 2398, 2400, 3, 278, 139, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 343, 1, 0, 0, 0, 2401, 2402, 3, 262, 131, 0, 2402, 2403, 5, 396, 0, 0, 2403, 2406, 3, 346, 173, 0, 2404, 2405, 5, 47, 0, 0, 2405, 2407, 5, 426, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 345, 1, 0, 0, 0, 2408, 2409, 3, 350, 175, 0, 2409, 347, 1, 0, 0, 0, 2410, 2415, 3, 346, 173, 0, 2411, 2412, 5, 397, 0, 0, 2412, 2414, 3, 346, 173, 0, 2413, 2411, 1, 0, 0, 0, 2414, 2417, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 349, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2418, 2424, 3, 352, 176, 0, 2419, 2424, 3, 354, 177, 0, 2420, 2424, 3, 356, 178, 0, 2421, 2424, 3, 358, 179, 0, 2422, 2424, 3, 360, 180, 0, 2423, 2418, 1, 0, 0, 0, 2423, 2419, 1, 0, 0, 0, 2423, 2420, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2423, 2422, 1, 0, 0, 0, 2424, 351, 1, 0, 0, 0, 2425, 2463, 5, 340, 0, 0, 2426, 2463, 5, 311, 0, 0, 2427, 2463, 5, 162, 0, 0, 2428, 2463, 5, 163, 0, 0, 2429, 2463, 5, 26, 0, 0, 2430, 2463, 5, 28, 0, 0, 2431, 2463, 5, 131, 0, 0, 2432, 2463, 5, 264, 0, 0, 2433, 2435, 5, 100, 0, 0, 2434, 2436, 5, 248, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2463, 1, 0, 0, 0, 2437, 2463, 5, 71, 0, 0, 2438, 2463, 5, 72, 0, 0, 2439, 2463, 5, 337, 0, 0, 2440, 2463, 5, 338, 0, 0, 2441, 2442, 5, 337, 0, 0, 2442, 2443, 5, 387, 0, 0, 2443, 2444, 5, 188, 0, 0, 2444, 2445, 5, 336, 0, 0, 2445, 2463, 5, 394, 0, 0, 2446, 2463, 5, 323, 0, 0, 2447, 2463, 5, 27, 0, 0, 2448, 2456, 3, 696, 348, 0, 2449, 2450, 5, 399, 0, 0, 2450, 2453, 5, 431, 0, 0, 2451, 2452, 5, 397, 0, 0, 2452, 2454, 5, 431, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 5, 400, 0, 0, 2456, 2449, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2463, 1, 0, 0, 0, 2458, 2459, 7, 20, 0, 0, 2459, 2460, 5, 399, 0, 0, 2460, 2461, 5, 431, 0, 0, 2461, 2463, 5, 400, 0, 0, 2462, 2425, 1, 0, 0, 0, 2462, 2426, 1, 0, 0, 0, 2462, 2427, 1, 0, 0, 0, 2462, 2428, 1, 0, 0, 0, 2462, 2429, 1, 0, 0, 0, 2462, 2430, 1, 0, 0, 0, 2462, 2431, 1, 0, 0, 0, 2462, 2432, 1, 0, 0, 0, 2462, 2433, 1, 0, 0, 0, 2462, 2437, 1, 0, 0, 0, 2462, 2438, 1, 0, 0, 0, 2462, 2439, 1, 0, 0, 0, 2462, 2440, 1, 0, 0, 0, 2462, 2441, 1, 0, 0, 0, 2462, 2446, 1, 0, 0, 0, 2462, 2447, 1, 0, 0, 0, 2462, 2448, 1, 0, 0, 0, 2462, 2458, 1, 0, 0, 0, 2463, 353, 1, 0, 0, 0, 2464, 2465, 5, 16, 0, 0, 2465, 2466, 5, 409, 0, 0, 2466, 2467, 3, 350, 175, 0, 2467, 2468, 5, 411, 0, 0, 2468, 355, 1, 0, 0, 0, 2469, 2470, 5, 324, 0, 0, 2470, 2471, 5, 409, 0, 0, 2471, 2472, 3, 252, 126, 0, 2472, 2473, 5, 411, 0, 0, 2473, 357, 1, 0, 0, 0, 2474, 2475, 5, 198, 0, 0, 2475, 2476, 5, 409, 0, 0, 2476, 2477, 3, 352, 176, 0, 2477, 2478, 5, 397, 0, 0, 2478, 2479, 3, 350, 175, 0, 2479, 2480, 5, 411, 0, 0, 2480, 359, 1, 0, 0, 0, 2481, 2482, 5, 357, 0, 0, 2482, 2483, 5, 409, 0, 0, 2483, 2484, 3, 348, 174, 0, 2484, 2485, 5, 411, 0, 0, 2485, 361, 1, 0, 0, 0, 2486, 2488, 7, 21, 0, 0, 2487, 2489, 7, 22, 0, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 363, 1, 0, 0, 0, 2490, 2492, 3, 368, 184, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 3, 366, 183, 0, 2494, 365, 1, 0, 0, 0, 2495, 2498, 3, 372, 186, 0, 2496, 2498, 3, 376, 188, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2496, 1, 0, 0, 0, 2498, 367, 1, 0, 0, 0, 2499, 2500, 5, 387, 0, 0, 2500, 2505, 3, 370, 185, 0, 2501, 2502, 5, 397, 0, 0, 2502, 2504, 3, 370, 185, 0, 2503, 2501, 1, 0, 0, 0, 2504, 2507, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 369, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2508, 2513, 3, 654, 327, 0, 2509, 2510, 5, 399, 0, 0, 2510, 2511, 3, 254, 127, 0, 2511, 2512, 5, 400, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2509, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 5, 17, 0, 0, 2516, 2517, 5, 399, 0, 0, 2517, 2518, 3, 364, 182, 0, 2518, 2519, 5, 400, 0, 0, 2519, 371, 1, 0, 0, 0, 2520, 2526, 3, 374, 187, 0, 2521, 2522, 3, 362, 181, 0, 2522, 2523, 3, 374, 187, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2521, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 373, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2530, 3, 452, 226, 0, 2530, 2531, 3, 386, 193, 0, 2531, 2533, 3, 508, 254, 0, 2532, 2534, 3, 466, 233, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 500, 250, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 534, 267, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 542, 271, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 526, 263, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 544, 272, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 556, 278, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 560, 280, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 562, 281, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 564, 282, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 390, 195, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2601, 1, 0, 0, 0, 2565, 2566, 3, 452, 226, 0, 2566, 2568, 3, 508, 254, 0, 2567, 2569, 3, 466, 233, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 500, 250, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 534, 267, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 542, 271, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 526, 263, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 544, 272, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 556, 278, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 560, 280, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2592, 1, 0, 0, 0, 2591, 2593, 3, 562, 281, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 564, 282, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2599, 3, 390, 195, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2529, 1, 0, 0, 0, 2600, 2565, 1, 0, 0, 0, 2601, 375, 1, 0, 0, 0, 2602, 2603, 3, 386, 193, 0, 2603, 2604, 3, 380, 190, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2607, 3, 380, 190, 0, 2606, 2602, 1, 0, 0, 0, 2606, 2605, 1, 0, 0, 0, 2607, 377, 1, 0, 0, 0, 2608, 2610, 3, 508, 254, 0, 2609, 2611, 3, 452, 226, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 500, 250, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2617, 3, 534, 267, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 542, 271, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2623, 3, 526, 263, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2625, 1, 0, 0, 0, 2624, 2626, 3, 544, 272, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2633, 1, 0, 0, 0, 2627, 2628, 5, 399, 0, 0, 2628, 2629, 3, 380, 190, 0, 2629, 2630, 5, 400, 0, 0, 2630, 2633, 1, 0, 0, 0, 2631, 2633, 3, 502, 251, 0, 2632, 2608, 1, 0, 0, 0, 2632, 2627, 1, 0, 0, 0, 2632, 2631, 1, 0, 0, 0, 2633, 379, 1, 0, 0, 0, 2634, 2636, 3, 378, 189, 0, 2635, 2637, 3, 382, 191, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 556, 278, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 560, 280, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 562, 281, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 564, 282, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2652, 3, 390, 195, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 381, 1, 0, 0, 0, 2653, 2654, 3, 362, 181, 0, 2654, 2655, 3, 378, 189, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2653, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 383, 1, 0, 0, 0, 2660, 2662, 3, 368, 184, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 3, 380, 190, 0, 2664, 385, 1, 0, 0, 0, 2665, 2682, 5, 161, 0, 0, 2666, 2667, 5, 235, 0, 0, 2667, 2669, 3, 388, 194, 0, 2668, 2670, 3, 32, 16, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2683, 1, 0, 0, 0, 2671, 2673, 5, 166, 0, 0, 2672, 2674, 5, 329, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2680, 3, 640, 320, 0, 2676, 2677, 5, 399, 0, 0, 2677, 2678, 3, 254, 127, 0, 2678, 2679, 5, 400, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2676, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2666, 1, 0, 0, 0, 2682, 2671, 1, 0, 0, 0, 2683, 387, 1, 0, 0, 0, 2684, 2686, 5, 188, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 5, 93, 0, 0, 2688, 2690, 5, 426, 0, 0, 2689, 2691, 3, 222, 111, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2693, 1, 0, 0, 0, 2692, 2694, 3, 246, 123, 0, 2693, 2692, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2698, 1, 0, 0, 0, 2695, 2696, 5, 329, 0, 0, 2696, 2698, 3, 640, 320, 0, 2697, 2685, 1, 0, 0, 0, 2697, 2695, 1, 0, 0, 0, 2698, 389, 1, 0, 0, 0, 2699, 2708, 5, 185, 0, 0, 2700, 2701, 5, 431, 0, 0, 2701, 2703, 5, 397, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2709, 5, 431, 0, 0, 2705, 2706, 5, 431, 0, 0, 2706, 2707, 5, 223, 0, 0, 2707, 2709, 5, 431, 0, 0, 2708, 2702, 1, 0, 0, 0, 2708, 2705, 1, 0, 0, 0, 2709, 391, 1, 0, 0, 0, 2710, 2711, 3, 256, 128, 0, 2711, 2712, 5, 405, 0, 0, 2712, 2713, 3, 394, 197, 0, 2713, 393, 1, 0, 0, 0, 2714, 2717, 5, 83, 0, 0, 2715, 2717, 3, 606, 303, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2715, 1, 0, 0, 0, 2717, 395, 1, 0, 0, 0, 2718, 2719, 5, 304, 0, 0, 2719, 2724, 3, 392, 196, 0, 2720, 2721, 5, 397, 0, 0, 2721, 2723, 3, 392, 196, 0, 2722, 2720, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 397, 1, 0, 0, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2728, 5, 318, 0, 0, 2728, 2737, 5, 344, 0, 0, 2729, 2734, 3, 400, 200, 0, 2730, 2731, 5, 397, 0, 0, 2731, 2733, 3, 400, 200, 0, 2732, 2730, 1, 0, 0, 0, 2733, 2736, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2738, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2751, 1, 0, 0, 0, 2739, 2741, 5, 48, 0, 0, 2740, 2742, 5, 389, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2751, 1, 0, 0, 0, 2743, 2745, 5, 289, 0, 0, 2744, 2746, 5, 389, 0, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2751, 1, 0, 0, 0, 2747, 2748, 5, 304, 0, 0, 2748, 2749, 5, 22, 0, 0, 2749, 2751, 7, 23, 0, 0, 2750, 2727, 1, 0, 0, 0, 2750, 2739, 1, 0, 0, 0, 2750, 2743, 1, 0, 0, 0, 2750, 2747, 1, 0, 0, 0, 2751, 399, 1, 0, 0, 0, 2752, 2753, 5, 168, 0, 0, 2753, 2754, 5, 182, 0, 0, 2754, 2758, 5, 312, 0, 0, 2755, 2756, 5, 261, 0, 0, 2756, 2758, 7, 24, 0, 0, 2757, 2752, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2758, 401, 1, 0, 0, 0, 2759, 2762, 3, 406, 203, 0, 2760, 2762, 3, 408, 204, 0, 2761, 2759, 1, 0, 0, 0, 2761, 2760, 1, 0, 0, 0, 2762, 2765, 1, 0, 0, 0, 2763, 2761, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2767, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2766, 2768, 3, 404, 202, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 403, 1, 0, 0, 0, 2769, 2770, 5, 383, 0, 0, 2770, 2771, 5, 216, 0, 0, 2771, 2774, 5, 201, 0, 0, 2772, 2773, 5, 11, 0, 0, 2773, 2775, 3, 596, 298, 0, 2774, 2772, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 5, 335, 0, 0, 2777, 2779, 5, 161, 0, 0, 2778, 2780, 3, 268, 134, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 5, 374, 0, 0, 2782, 2783, 3, 552, 276, 0, 2783, 405, 1, 0, 0, 0, 2784, 2785, 5, 383, 0, 0, 2785, 2786, 5, 201, 0, 0, 2786, 2787, 5, 11, 0, 0, 2787, 2788, 3, 596, 298, 0, 2788, 2792, 5, 335, 0, 0, 2789, 2790, 5, 365, 0, 0, 2790, 2793, 3, 396, 198, 0, 2791, 2793, 5, 86, 0, 0, 2792, 2789, 1, 0, 0, 0, 2792, 2791, 1, 0, 0, 0, 2793, 407, 1, 0, 0, 0, 2794, 2795, 5, 383, 0, 0, 2795, 2796, 5, 201, 0, 0, 2796, 2800, 5, 335, 0, 0, 2797, 2798, 5, 365, 0, 0, 2798, 2801, 3, 396, 198, 0, 2799, 2801, 5, 86, 0, 0, 2800, 2797, 1, 0, 0, 0, 2800, 2799, 1, 0, 0, 0, 2801, 409, 1, 0, 0, 0, 2802, 2803, 5, 246, 0, 0, 2803, 2804, 5, 426, 0, 0, 2804, 411, 1, 0, 0, 0, 2805, 2806, 5, 352, 0, 0, 2806, 2807, 5, 426, 0, 0, 2807, 413, 1, 0, 0, 0, 2808, 2809, 5, 320, 0, 0, 2809, 2810, 5, 426, 0, 0, 2810, 415, 1, 0, 0, 0, 2811, 2842, 5, 9, 0, 0, 2812, 2813, 5, 329, 0, 0, 2813, 2814, 3, 482, 241, 0, 2814, 2815, 3, 418, 209, 0, 2815, 2843, 1, 0, 0, 0, 2816, 2817, 5, 378, 0, 0, 2817, 2819, 3, 486, 243, 0, 2818, 2820, 5, 17, 0, 0, 2819, 2818, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2822, 3, 422, 211, 0, 2822, 2843, 1, 0, 0, 0, 2823, 2824, 5, 202, 0, 0, 2824, 2825, 5, 378, 0, 0, 2825, 2829, 3, 486, 243, 0, 2826, 2830, 3, 36, 18, 0, 2827, 2830, 3, 38, 19, 0, 2828, 2830, 5, 265, 0, 0, 2829, 2826, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2828, 1, 0, 0, 0, 2830, 2843, 1, 0, 0, 0, 2831, 2832, 3, 70, 35, 0, 2832, 2833, 3, 424, 212, 0, 2833, 2843, 1, 0, 0, 0, 2834, 2835, 5, 69, 0, 0, 2835, 2843, 3, 426, 213, 0, 2836, 2837, 5, 155, 0, 0, 2837, 2838, 3, 654, 327, 0, 2838, 2839, 5, 224, 0, 0, 2839, 2840, 3, 640, 320, 0, 2840, 2841, 5, 265, 0, 0, 2841, 2843, 1, 0, 0, 0, 2842, 2812, 1, 0, 0, 0, 2842, 2816, 1, 0, 0, 0, 2842, 2823, 1, 0, 0, 0, 2842, 2831, 1, 0, 0, 0, 2842, 2834, 1, 0, 0, 0, 2842, 2836, 1, 0, 0, 0, 2843, 417, 1, 0, 0, 0, 2844, 2845, 5, 274, 0, 0, 2845, 2846, 5, 341, 0, 0, 2846, 2934, 3, 484, 242, 0, 2847, 2848, 5, 102, 0, 0, 2848, 2934, 5, 239, 0, 0, 2849, 2934, 3, 430, 215, 0, 2850, 2852, 5, 4, 0, 0, 2851, 2853, 3, 32, 16, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2858, 1, 0, 0, 0, 2854, 2856, 3, 642, 321, 0, 2855, 2857, 3, 428, 214, 0, 2856, 2855, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2854, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2934, 1, 0, 0, 0, 2862, 2866, 5, 342, 0, 0, 2863, 2865, 3, 642, 321, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2868, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2934, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2873, 5, 15, 0, 0, 2870, 2872, 3, 642, 321, 0, 2871, 2870, 1, 0, 0, 0, 2872, 2875, 1, 0, 0, 0, 2873, 2871, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2934, 1, 0, 0, 0, 2875, 2873, 1, 0, 0, 0, 2876, 2880, 5, 353, 0, 0, 2877, 2879, 3, 642, 321, 0, 2878, 2877, 1, 0, 0, 0, 2879, 2882, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2934, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2884, 5, 304, 0, 0, 2884, 2885, 5, 332, 0, 0, 2885, 2934, 3, 226, 113, 0, 2886, 2887, 5, 363, 0, 0, 2887, 2889, 5, 332, 0, 0, 2888, 2890, 3, 30, 15, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2934, 3, 226, 113, 0, 2892, 2934, 3, 210, 105, 0, 2893, 2896, 5, 216, 0, 0, 2894, 2897, 5, 310, 0, 0, 2895, 2897, 3, 40, 20, 0, 2896, 2894, 1, 0, 0, 0, 2896, 2895, 1, 0, 0, 0, 2897, 2934, 1, 0, 0, 0, 2898, 2899, 5, 113, 0, 0, 2899, 2900, 3, 642, 321, 0, 2900, 2901, 5, 387, 0, 0, 2901, 2902, 5, 329, 0, 0, 2902, 2903, 3, 482, 241, 0, 2903, 2934, 1, 0, 0, 0, 2904, 2905, 5, 237, 0, 0, 2905, 2906, 5, 45, 0, 0, 2906, 2907, 5, 399, 0, 0, 2907, 2908, 3, 314, 157, 0, 2908, 2909, 5, 400, 0, 0, 2909, 2934, 1, 0, 0, 0, 2910, 2911, 5, 101, 0, 0, 2911, 2912, 5, 55, 0, 0, 2912, 2934, 3, 654, 327, 0, 2913, 2916, 5, 4, 0, 0, 2914, 2917, 3, 292, 146, 0, 2915, 2917, 3, 282, 141, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2934, 1, 0, 0, 0, 2918, 2920, 3, 642, 321, 0, 2919, 2918, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2934, 3, 420, 210, 0, 2922, 2923, 5, 304, 0, 0, 2923, 2924, 5, 236, 0, 0, 2924, 2934, 3, 126, 63, 0, 2925, 2926, 5, 304, 0, 0, 2926, 2927, 5, 237, 0, 0, 2927, 2928, 5, 316, 0, 0, 2928, 2929, 5, 399, 0, 0, 2929, 2930, 3, 204, 102, 0, 2930, 2931, 5, 400, 0, 0, 2931, 2934, 1, 0, 0, 0, 2932, 2934, 3, 434, 217, 0, 2933, 2844, 1, 0, 0, 0, 2933, 2847, 1, 0, 0, 0, 2933, 2849, 1, 0, 0, 0, 2933, 2850, 1, 0, 0, 0, 2933, 2862, 1, 0, 0, 0, 2933, 2869, 1, 0, 0, 0, 2933, 2876, 1, 0, 0, 0, 2933, 2883, 1, 0, 0, 0, 2933, 2886, 1, 0, 0, 0, 2933, 2892, 1, 0, 0, 0, 2933, 2893, 1, 0, 0, 0, 2933, 2898, 1, 0, 0, 0, 2933, 2904, 1, 0, 0, 0, 2933, 2910, 1, 0, 0, 0, 2933, 2913, 1, 0, 0, 0, 2933, 2919, 1, 0, 0, 0, 2933, 2922, 1, 0, 0, 0, 2933, 2925, 1, 0, 0, 0, 2933, 2932, 1, 0, 0, 0, 2934, 419, 1, 0, 0, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 129, 0, 0, 2937, 3068, 3, 436, 218, 0, 2938, 2939, 5, 304, 0, 0, 2939, 2940, 5, 189, 0, 0, 2940, 3068, 5, 426, 0, 0, 2941, 3068, 5, 53, 0, 0, 2942, 2952, 5, 304, 0, 0, 2943, 2944, 5, 301, 0, 0, 2944, 2948, 5, 426, 0, 0, 2945, 2946, 5, 387, 0, 0, 2946, 2947, 5, 302, 0, 0, 2947, 2949, 3, 226, 113, 0, 2948, 2945, 1, 0, 0, 0, 2948, 2949, 1, 0, 0, 0, 2949, 2953, 1, 0, 0, 0, 2950, 2951, 5, 302, 0, 0, 2951, 2953, 3, 226, 113, 0, 2952, 2943, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 3068, 1, 0, 0, 0, 2954, 2955, 5, 363, 0, 0, 2955, 2956, 5, 302, 0, 0, 2956, 3068, 3, 226, 113, 0, 2957, 2958, 5, 274, 0, 0, 2958, 2959, 5, 341, 0, 0, 2959, 3068, 3, 642, 321, 0, 2960, 2961, 5, 166, 0, 0, 2961, 2962, 5, 431, 0, 0, 2962, 3068, 5, 31, 0, 0, 2963, 2964, 5, 304, 0, 0, 2964, 2965, 5, 310, 0, 0, 2965, 2966, 5, 189, 0, 0, 2966, 2967, 5, 399, 0, 0, 2967, 2972, 3, 432, 216, 0, 2968, 2969, 5, 397, 0, 0, 2969, 2971, 3, 432, 216, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2974, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 1, 0, 0, 0, 2974, 2972, 1, 0, 0, 0, 2975, 2976, 5, 400, 0, 0, 2976, 3068, 1, 0, 0, 0, 2977, 2978, 5, 216, 0, 0, 2978, 3068, 7, 25, 0, 0, 2979, 3068, 3, 208, 104, 0, 2980, 2981, 5, 49, 0, 0, 2981, 2984, 5, 426, 0, 0, 2982, 2983, 5, 11, 0, 0, 2983, 2985, 5, 380, 0, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2990, 1, 0, 0, 0, 2986, 2987, 5, 42, 0, 0, 2987, 2988, 5, 166, 0, 0, 2988, 2989, 5, 431, 0, 0, 2989, 2991, 5, 31, 0, 0, 2990, 2986, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2994, 3, 556, 278, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2996, 1, 0, 0, 0, 2995, 2997, 3, 410, 205, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 3002, 1, 0, 0, 0, 2998, 2999, 5, 387, 0, 0, 2999, 3000, 5, 235, 0, 0, 3000, 3001, 5, 332, 0, 0, 3001, 3003, 3, 226, 113, 0, 3002, 2998, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3068, 1, 0, 0, 0, 3004, 3005, 5, 365, 0, 0, 3005, 3006, 5, 319, 0, 0, 3006, 3008, 5, 134, 0, 0, 3007, 3009, 5, 45, 0, 0, 3008, 3007, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 3, 256, 128, 0, 3011, 3012, 5, 304, 0, 0, 3012, 3015, 3, 226, 113, 0, 3013, 3014, 5, 47, 0, 0, 3014, 3016, 5, 426, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3068, 1, 0, 0, 0, 3017, 3018, 5, 365, 0, 0, 3018, 3019, 5, 319, 0, 0, 3019, 3020, 5, 304, 0, 0, 3020, 3068, 3, 226, 113, 0, 3021, 3023, 5, 38, 0, 0, 3022, 3024, 5, 45, 0, 0, 3023, 3022, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 3, 256, 128, 0, 3026, 3027, 3, 262, 131, 0, 3027, 3029, 3, 346, 173, 0, 3028, 3030, 3, 328, 164, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3033, 1, 0, 0, 0, 3031, 3032, 5, 47, 0, 0, 3032, 3034, 5, 426, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3038, 1, 0, 0, 0, 3035, 3039, 5, 130, 0, 0, 3036, 3037, 5, 6, 0, 0, 3037, 3039, 3, 654, 327, 0, 3038, 3035, 1, 0, 0, 0, 3038, 3036, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3041, 1, 0, 0, 0, 3040, 3042, 3, 34, 17, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3068, 1, 0, 0, 0, 3043, 3046, 5, 4, 0, 0, 3044, 3046, 5, 278, 0, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3044, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 5, 46, 0, 0, 3048, 3049, 5, 399, 0, 0, 3049, 3050, 3, 248, 124, 0, 3050, 3052, 5, 400, 0, 0, 3051, 3053, 3, 34, 17, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3068, 1, 0, 0, 0, 3054, 3055, 5, 365, 0, 0, 3055, 3057, 5, 46, 0, 0, 3056, 3058, 3, 34, 17, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3068, 1, 0, 0, 0, 3059, 3065, 3, 272, 136, 0, 3060, 3062, 5, 218, 0, 0, 3061, 3063, 5, 34, 0, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3066, 1, 0, 0, 0, 3064, 3066, 5, 222, 0, 0, 3065, 3060, 1, 0, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 2935, 1, 0, 0, 0, 3067, 2938, 1, 0, 0, 0, 3067, 2941, 1, 0, 0, 0, 3067, 2942, 1, 0, 0, 0, 3067, 2954, 1, 0, 0, 0, 3067, 2957, 1, 0, 0, 0, 3067, 2960, 1, 0, 0, 0, 3067, 2963, 1, 0, 0, 0, 3067, 2977, 1, 0, 0, 0, 3067, 2979, 1, 0, 0, 0, 3067, 2980, 1, 0, 0, 0, 3067, 3004, 1, 0, 0, 0, 3067, 3017, 1, 0, 0, 0, 3067, 3021, 1, 0, 0, 0, 3067, 3045, 1, 0, 0, 0, 3067, 3054, 1, 0, 0, 0, 3067, 3059, 1, 0, 0, 0, 3068, 421, 1, 0, 0, 0, 3069, 3070, 5, 304, 0, 0, 3070, 3071, 5, 332, 0, 0, 3071, 3096, 3, 226, 113, 0, 3072, 3073, 5, 363, 0, 0, 3073, 3075, 5, 332, 0, 0, 3074, 3076, 3, 30, 15, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3096, 3, 226, 113, 0, 3078, 3079, 5, 274, 0, 0, 3079, 3080, 5, 341, 0, 0, 3080, 3096, 3, 484, 242, 0, 3081, 3083, 5, 4, 0, 0, 3082, 3084, 3, 32, 16, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3089, 1, 0, 0, 0, 3085, 3087, 3, 642, 321, 0, 3086, 3088, 3, 428, 214, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3085, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3096, 1, 0, 0, 0, 3093, 3096, 3, 430, 215, 0, 3094, 3096, 3, 384, 192, 0, 3095, 3069, 1, 0, 0, 0, 3095, 3072, 1, 0, 0, 0, 3095, 3078, 1, 0, 0, 0, 3095, 3081, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3094, 1, 0, 0, 0, 3096, 423, 1, 0, 0, 0, 3097, 3098, 3, 476, 238, 0, 3098, 3099, 5, 304, 0, 0, 3099, 3100, 5, 76, 0, 0, 3100, 3101, 3, 230, 115, 0, 3101, 3113, 1, 0, 0, 0, 3102, 3103, 3, 476, 238, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 236, 0, 0, 3105, 3106, 3, 128, 64, 0, 3106, 3113, 1, 0, 0, 0, 3107, 3108, 3, 476, 238, 0, 3108, 3109, 5, 304, 0, 0, 3109, 3110, 7, 26, 0, 0, 3110, 3111, 5, 426, 0, 0, 3111, 3113, 1, 0, 0, 0, 3112, 3097, 1, 0, 0, 0, 3112, 3102, 1, 0, 0, 0, 3112, 3107, 1, 0, 0, 0, 3113, 425, 1, 0, 0, 0, 3114, 3115, 3, 476, 238, 0, 3115, 3116, 5, 304, 0, 0, 3116, 3117, 5, 77, 0, 0, 3117, 3118, 3, 230, 115, 0, 3118, 3130, 1, 0, 0, 0, 3119, 3120, 3, 476, 238, 0, 3120, 3121, 5, 304, 0, 0, 3121, 3122, 5, 236, 0, 0, 3122, 3123, 3, 128, 64, 0, 3123, 3130, 1, 0, 0, 0, 3124, 3125, 3, 476, 238, 0, 3125, 3126, 5, 304, 0, 0, 3126, 3127, 5, 367, 0, 0, 3127, 3128, 5, 426, 0, 0, 3128, 3130, 1, 0, 0, 0, 3129, 3114, 1, 0, 0, 0, 3129, 3119, 1, 0, 0, 0, 3129, 3124, 1, 0, 0, 0, 3130, 427, 1, 0, 0, 0, 3131, 3132, 5, 189, 0, 0, 3132, 3133, 5, 426, 0, 0, 3133, 429, 1, 0, 0, 0, 3134, 3136, 5, 101, 0, 0, 3135, 3137, 3, 30, 15, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 5, 237, 0, 0, 3139, 3145, 3, 646, 323, 0, 3140, 3141, 5, 397, 0, 0, 3141, 3142, 5, 237, 0, 0, 3142, 3144, 3, 646, 323, 0, 3143, 3140, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3150, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3148, 3149, 5, 152, 0, 0, 3149, 3151, 5, 254, 0, 0, 3150, 3148, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3154, 5, 255, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 14, 7, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 431, 1, 0, 0, 0, 3158, 3161, 3, 588, 294, 0, 3159, 3161, 3, 298, 149, 0, 3160, 3158, 1, 0, 0, 0, 3160, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 5, 405, 0, 0, 3163, 3164, 5, 426, 0, 0, 3164, 433, 1, 0, 0, 0, 3165, 3175, 5, 115, 0, 0, 3166, 3167, 5, 289, 0, 0, 3167, 3168, 5, 399, 0, 0, 3168, 3176, 7, 27, 0, 0, 3169, 3170, 5, 118, 0, 0, 3170, 3171, 5, 399, 0, 0, 3171, 3176, 5, 426, 0, 0, 3172, 3173, 5, 306, 0, 0, 3173, 3174, 5, 399, 0, 0, 3174, 3176, 5, 431, 0, 0, 3175, 3166, 1, 0, 0, 0, 3175, 3169, 1, 0, 0, 0, 3175, 3172, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 400, 0, 0, 3178, 435, 1, 0, 0, 0, 3179, 3180, 5, 160, 0, 0, 3180, 3181, 5, 426, 0, 0, 3181, 3182, 5, 233, 0, 0, 3182, 3183, 5, 426, 0, 0, 3183, 3184, 5, 301, 0, 0, 3184, 3189, 5, 426, 0, 0, 3185, 3186, 5, 159, 0, 0, 3186, 3187, 5, 426, 0, 0, 3187, 3188, 5, 232, 0, 0, 3188, 3190, 5, 426, 0, 0, 3189, 3185, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3193, 1, 0, 0, 0, 3191, 3193, 3, 654, 327, 0, 3192, 3179, 1, 0, 0, 0, 3192, 3191, 1, 0, 0, 0, 3193, 437, 1, 0, 0, 0, 3194, 3195, 5, 184, 0, 0, 3195, 3204, 5, 128, 0, 0, 3196, 3197, 5, 184, 0, 0, 3197, 3198, 5, 128, 0, 0, 3198, 3199, 3, 654, 327, 0, 3199, 3200, 5, 426, 0, 0, 3200, 3204, 1, 0, 0, 0, 3201, 3202, 5, 184, 0, 0, 3202, 3204, 3, 482, 241, 0, 3203, 3194, 1, 0, 0, 0, 3203, 3196, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 439, 1, 0, 0, 0, 3205, 3207, 5, 58, 0, 0, 3206, 3208, 5, 333, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3211, 5, 345, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 5, 123, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 5, 329, 0, 0, 3216, 3218, 3, 32, 16, 0, 3217, 3216, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3276, 3, 484, 242, 0, 3220, 3222, 3, 438, 219, 0, 3221, 3223, 3, 200, 100, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 222, 111, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 246, 123, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3232, 3, 428, 214, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 224, 112, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 198, 99, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3277, 1, 0, 0, 0, 3239, 3240, 5, 399, 0, 0, 3240, 3241, 3, 250, 125, 0, 3241, 3242, 5, 400, 0, 0, 3242, 3244, 1, 0, 0, 0, 3243, 3239, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 196, 98, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 200, 100, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 208, 104, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 210, 105, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 222, 111, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3262, 3, 246, 123, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3265, 3, 428, 214, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3268, 3, 224, 112, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3270, 1, 0, 0, 0, 3269, 3271, 3, 198, 99, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3274, 1, 0, 0, 0, 3272, 3273, 5, 17, 0, 0, 3273, 3275, 3, 384, 192, 0, 3274, 3272, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3277, 1, 0, 0, 0, 3276, 3220, 1, 0, 0, 0, 3276, 3243, 1, 0, 0, 0, 3277, 3341, 1, 0, 0, 0, 3278, 3279, 5, 58, 0, 0, 3279, 3280, 5, 195, 0, 0, 3280, 3282, 5, 329, 0, 0, 3281, 3283, 3, 32, 16, 0, 3282, 3281, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3338, 3, 484, 242, 0, 3285, 3287, 3, 438, 219, 0, 3286, 3288, 3, 222, 111, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 246, 123, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 1, 0, 0, 0, 3292, 3294, 3, 428, 214, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 224, 112, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3300, 3, 198, 99, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3339, 1, 0, 0, 0, 3301, 3302, 5, 399, 0, 0, 3302, 3303, 3, 250, 125, 0, 3303, 3304, 5, 400, 0, 0, 3304, 3306, 1, 0, 0, 0, 3305, 3301, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 196, 98, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 200, 100, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 208, 104, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 210, 105, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 222, 111, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3324, 3, 246, 123, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3326, 1, 0, 0, 0, 3325, 3327, 3, 428, 214, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 224, 112, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3333, 3, 198, 99, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3335, 5, 17, 0, 0, 3335, 3337, 3, 384, 192, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3339, 1, 0, 0, 0, 3338, 3285, 1, 0, 0, 0, 3338, 3305, 1, 0, 0, 0, 3339, 3341, 1, 0, 0, 0, 3340, 3205, 1, 0, 0, 0, 3340, 3278, 1, 0, 0, 0, 3341, 441, 1, 0, 0, 0, 3342, 3343, 5, 58, 0, 0, 3343, 3345, 5, 69, 0, 0, 3344, 3346, 3, 32, 16, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3350, 3, 654, 327, 0, 3348, 3349, 5, 352, 0, 0, 3349, 3351, 5, 426, 0, 0, 3350, 3348, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3354, 1, 0, 0, 0, 3352, 3353, 5, 367, 0, 0, 3353, 3355, 5, 426, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3357, 5, 47, 0, 0, 3357, 3359, 5, 426, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3363, 1, 0, 0, 0, 3360, 3361, 5, 387, 0, 0, 3361, 3362, 5, 77, 0, 0, 3362, 3364, 3, 230, 115, 0, 3363, 3360, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 443, 1, 0, 0, 0, 3365, 3366, 5, 101, 0, 0, 3366, 3368, 5, 69, 0, 0, 3367, 3369, 3, 30, 15, 0, 3368, 3367, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3371, 3, 654, 327, 0, 3371, 445, 1, 0, 0, 0, 3372, 3373, 3, 654, 327, 0, 3373, 3374, 5, 395, 0, 0, 3374, 3376, 1, 0, 0, 0, 3375, 3372, 1, 0, 0, 0, 3376, 3379, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3380, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3381, 5, 415, 0, 0, 3381, 447, 1, 0, 0, 0, 3382, 3387, 3, 596, 298, 0, 3383, 3384, 5, 397, 0, 0, 3384, 3386, 3, 596, 298, 0, 3385, 3383, 1, 0, 0, 0, 3386, 3389, 1, 0, 0, 0, 3387, 3385, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 449, 1, 0, 0, 0, 3389, 3387, 1, 0, 0, 0, 3390, 3395, 3, 654, 327, 0, 3391, 3392, 5, 397, 0, 0, 3392, 3394, 3, 654, 327, 0, 3393, 3391, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 451, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3398, 3399, 5, 139, 0, 0, 3399, 3400, 3, 454, 227, 0, 3400, 453, 1, 0, 0, 0, 3401, 3402, 5, 359, 0, 0, 3402, 3405, 3, 462, 231, 0, 3403, 3404, 5, 397, 0, 0, 3404, 3406, 3, 462, 231, 0, 3405, 3403, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3411, 3, 458, 229, 0, 3410, 3401, 1, 0, 0, 0, 3410, 3409, 1, 0, 0, 0, 3411, 455, 1, 0, 0, 0, 3412, 3416, 3, 472, 236, 0, 3413, 3415, 3, 466, 233, 0, 3414, 3413, 1, 0, 0, 0, 3415, 3418, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3445, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3419, 3423, 3, 506, 253, 0, 3420, 3422, 3, 466, 233, 0, 3421, 3420, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3445, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3426, 3430, 3, 490, 245, 0, 3427, 3429, 3, 466, 233, 0, 3428, 3427, 1, 0, 0, 0, 3429, 3432, 1, 0, 0, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3445, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3433, 3437, 3, 496, 248, 0, 3434, 3436, 3, 466, 233, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3445, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3441, 5, 399, 0, 0, 3441, 3442, 3, 458, 229, 0, 3442, 3443, 5, 400, 0, 0, 3443, 3445, 1, 0, 0, 0, 3444, 3412, 1, 0, 0, 0, 3444, 3419, 1, 0, 0, 0, 3444, 3426, 1, 0, 0, 0, 3444, 3433, 1, 0, 0, 0, 3444, 3440, 1, 0, 0, 0, 3445, 457, 1, 0, 0, 0, 3446, 3464, 3, 456, 228, 0, 3447, 3448, 3, 464, 232, 0, 3448, 3460, 3, 460, 230, 0, 3449, 3456, 5, 224, 0, 0, 3450, 3457, 3, 596, 298, 0, 3451, 3454, 3, 260, 130, 0, 3452, 3453, 5, 405, 0, 0, 3453, 3455, 3, 260, 130, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 1, 0, 0, 0, 3456, 3450, 1, 0, 0, 0, 3456, 3451, 1, 0, 0, 0, 3457, 3461, 1, 0, 0, 0, 3458, 3459, 5, 370, 0, 0, 3459, 3461, 3, 268, 134, 0, 3460, 3449, 1, 0, 0, 0, 3460, 3458, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3463, 1, 0, 0, 0, 3462, 3447, 1, 0, 0, 0, 3463, 3466, 1, 0, 0, 0, 3464, 3462, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 459, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3467, 3472, 3, 472, 236, 0, 3468, 3472, 3, 506, 253, 0, 3469, 3472, 3, 490, 245, 0, 3470, 3472, 3, 496, 248, 0, 3471, 3467, 1, 0, 0, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3470, 1, 0, 0, 0, 3472, 3476, 1, 0, 0, 0, 3473, 3475, 3, 466, 233, 0, 3474, 3473, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 461, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3481, 5, 250, 0, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 3, 480, 240, 0, 3483, 3485, 3, 470, 235, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3490, 1, 0, 0, 0, 3486, 3488, 5, 17, 0, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 3, 654, 327, 0, 3490, 3487, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3493, 5, 399, 0, 0, 3493, 3494, 3, 448, 224, 0, 3494, 3495, 5, 400, 0, 0, 3495, 463, 1, 0, 0, 0, 3496, 3511, 5, 397, 0, 0, 3497, 3508, 5, 157, 0, 0, 3498, 3508, 5, 60, 0, 0, 3499, 3501, 7, 28, 0, 0, 3500, 3502, 5, 231, 0, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3508, 1, 0, 0, 0, 3503, 3505, 5, 180, 0, 0, 3504, 3506, 7, 29, 0, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 1, 0, 0, 0, 3507, 3497, 1, 0, 0, 0, 3507, 3498, 1, 0, 0, 0, 3507, 3499, 1, 0, 0, 0, 3507, 3503, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3511, 5, 171, 0, 0, 3510, 3496, 1, 0, 0, 0, 3510, 3507, 1, 0, 0, 0, 3511, 465, 1, 0, 0, 0, 3512, 3513, 5, 178, 0, 0, 3513, 3514, 5, 378, 0, 0, 3514, 3515, 5, 231, 0, 0, 3515, 3516, 3, 566, 283, 0, 3516, 3526, 3, 468, 234, 0, 3517, 3518, 5, 17, 0, 0, 3518, 3523, 3, 654, 327, 0, 3519, 3520, 5, 397, 0, 0, 3520, 3522, 3, 654, 327, 0, 3521, 3519, 1, 0, 0, 0, 3522, 3525, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3526, 3517, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3570, 1, 0, 0, 0, 3528, 3530, 5, 397, 0, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3567, 5, 178, 0, 0, 3532, 3533, 5, 378, 0, 0, 3533, 3534, 3, 566, 283, 0, 3534, 3544, 3, 468, 234, 0, 3535, 3536, 5, 17, 0, 0, 3536, 3541, 3, 654, 327, 0, 3537, 3538, 5, 397, 0, 0, 3538, 3540, 3, 654, 327, 0, 3539, 3537, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3535, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3568, 1, 0, 0, 0, 3546, 3547, 5, 329, 0, 0, 3547, 3548, 5, 399, 0, 0, 3548, 3549, 3, 502, 251, 0, 3549, 3551, 5, 400, 0, 0, 3550, 3552, 5, 17, 0, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3565, 3, 468, 234, 0, 3554, 3555, 5, 399, 0, 0, 3555, 3560, 3, 654, 327, 0, 3556, 3557, 5, 397, 0, 0, 3557, 3559, 3, 654, 327, 0, 3558, 3556, 1, 0, 0, 0, 3559, 3562, 1, 0, 0, 0, 3560, 3558, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3563, 3564, 5, 400, 0, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3554, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3532, 1, 0, 0, 0, 3567, 3546, 1, 0, 0, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3512, 1, 0, 0, 0, 3569, 3529, 1, 0, 0, 0, 3570, 467, 1, 0, 0, 0, 3571, 3572, 3, 654, 327, 0, 3572, 469, 1, 0, 0, 0, 3573, 3574, 5, 331, 0, 0, 3574, 3575, 5, 399, 0, 0, 3575, 3576, 5, 30, 0, 0, 3576, 3577, 5, 431, 0, 0, 3577, 3578, 5, 230, 0, 0, 3578, 3579, 5, 221, 0, 0, 3579, 3589, 5, 431, 0, 0, 3580, 3581, 5, 224, 0, 0, 3581, 3586, 3, 596, 298, 0, 3582, 3583, 5, 397, 0, 0, 3583, 3585, 3, 596, 298, 0, 3584, 3582, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3584, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3590, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3589, 3580, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3601, 5, 400, 0, 0, 3592, 3593, 5, 331, 0, 0, 3593, 3597, 5, 399, 0, 0, 3594, 3595, 5, 431, 0, 0, 3595, 3598, 7, 30, 0, 0, 3596, 3598, 5, 430, 0, 0, 3597, 3594, 1, 0, 0, 0, 3597, 3596, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3601, 5, 400, 0, 0, 3600, 3573, 1, 0, 0, 0, 3600, 3592, 1, 0, 0, 0, 3601, 471, 1, 0, 0, 0, 3602, 3604, 3, 480, 240, 0, 3603, 3605, 3, 226, 113, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 470, 235, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 474, 237, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3616, 1, 0, 0, 0, 3612, 3614, 5, 17, 0, 0, 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3617, 3, 654, 327, 0, 3616, 3613, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 473, 1, 0, 0, 0, 3618, 3628, 5, 134, 0, 0, 3619, 3620, 5, 327, 0, 0, 3620, 3621, 5, 17, 0, 0, 3621, 3622, 5, 221, 0, 0, 3622, 3629, 3, 596, 298, 0, 3623, 3624, 5, 134, 0, 0, 3624, 3625, 5, 328, 0, 0, 3625, 3626, 5, 17, 0, 0, 3626, 3627, 5, 221, 0, 0, 3627, 3629, 5, 431, 0, 0, 3628, 3619, 1, 0, 0, 0, 3628, 3623, 1, 0, 0, 0, 3629, 475, 1, 0, 0, 0, 3630, 3631, 3, 654, 327, 0, 3631, 477, 1, 0, 0, 0, 3632, 3633, 3, 654, 327, 0, 3633, 479, 1, 0, 0, 0, 3634, 3637, 3, 482, 241, 0, 3635, 3637, 3, 486, 243, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3635, 1, 0, 0, 0, 3637, 481, 1, 0, 0, 0, 3638, 3639, 3, 654, 327, 0, 3639, 3640, 5, 395, 0, 0, 3640, 3643, 3, 654, 327, 0, 3641, 3642, 5, 395, 0, 0, 3642, 3644, 3, 654, 327, 0, 3643, 3641, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3647, 1, 0, 0, 0, 3645, 3647, 3, 654, 327, 0, 3646, 3638, 1, 0, 0, 0, 3646, 3645, 1, 0, 0, 0, 3647, 483, 1, 0, 0, 0, 3648, 3649, 3, 654, 327, 0, 3649, 3650, 5, 395, 0, 0, 3650, 3653, 3, 654, 327, 0, 3651, 3652, 5, 395, 0, 0, 3652, 3654, 3, 654, 327, 0, 3653, 3651, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3657, 1, 0, 0, 0, 3655, 3657, 3, 654, 327, 0, 3656, 3648, 1, 0, 0, 0, 3656, 3655, 1, 0, 0, 0, 3657, 485, 1, 0, 0, 0, 3658, 3659, 3, 654, 327, 0, 3659, 3660, 5, 395, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 3, 654, 327, 0, 3664, 487, 1, 0, 0, 0, 3665, 3666, 3, 654, 327, 0, 3666, 3667, 5, 395, 0, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3665, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3671, 3, 654, 327, 0, 3671, 489, 1, 0, 0, 0, 3672, 3673, 5, 399, 0, 0, 3673, 3674, 3, 364, 182, 0, 3674, 3676, 5, 400, 0, 0, 3675, 3677, 5, 17, 0, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3679, 3, 654, 327, 0, 3679, 491, 1, 0, 0, 0, 3680, 3682, 3, 558, 279, 0, 3681, 3683, 3, 556, 278, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3692, 1, 0, 0, 0, 3684, 3692, 3, 556, 278, 0, 3685, 3687, 3, 562, 281, 0, 3686, 3688, 3, 564, 282, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3692, 1, 0, 0, 0, 3689, 3692, 3, 564, 282, 0, 3690, 3692, 3, 560, 280, 0, 3691, 3680, 1, 0, 0, 0, 3691, 3684, 1, 0, 0, 0, 3691, 3685, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3690, 1, 0, 0, 0, 3692, 493, 1, 0, 0, 0, 3693, 3697, 3, 490, 245, 0, 3694, 3697, 3, 472, 236, 0, 3695, 3697, 3, 496, 248, 0, 3696, 3693, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3696, 3695, 1, 0, 0, 0, 3697, 495, 1, 0, 0, 0, 3698, 3700, 3, 498, 249, 0, 3699, 3701, 3, 654, 327, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 497, 1, 0, 0, 0, 3702, 3703, 3, 654, 327, 0, 3703, 3704, 5, 399, 0, 0, 3704, 3705, 5, 224, 0, 0, 3705, 3707, 3, 494, 247, 0, 3706, 3708, 3, 492, 246, 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3724, 1, 0, 0, 0, 3709, 3710, 5, 432, 0, 0, 3710, 3711, 5, 399, 0, 0, 3711, 3712, 3, 596, 298, 0, 3712, 3721, 5, 400, 0, 0, 3713, 3714, 5, 397, 0, 0, 3714, 3715, 5, 432, 0, 0, 3715, 3716, 5, 399, 0, 0, 3716, 3717, 3, 596, 298, 0, 3717, 3718, 5, 400, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3713, 1, 0, 0, 0, 3720, 3723, 1, 0, 0, 0, 3721, 3719, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3725, 1, 0, 0, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3709, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 5, 400, 0, 0, 3727, 499, 1, 0, 0, 0, 3728, 3731, 5, 384, 0, 0, 3729, 3732, 3, 596, 298, 0, 3730, 3732, 3, 260, 130, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3730, 1, 0, 0, 0, 3732, 501, 1, 0, 0, 0, 3733, 3752, 5, 374, 0, 0, 3734, 3739, 3, 552, 276, 0, 3735, 3736, 5, 397, 0, 0, 3736, 3738, 3, 552, 276, 0, 3737, 3735, 1, 0, 0, 0, 3738, 3741, 1, 0, 0, 0, 3739, 3737, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3753, 1, 0, 0, 0, 3741, 3739, 1, 0, 0, 0, 3742, 3743, 5, 399, 0, 0, 3743, 3744, 3, 548, 274, 0, 3744, 3749, 5, 400, 0, 0, 3745, 3746, 5, 397, 0, 0, 3746, 3748, 3, 552, 276, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3751, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3734, 1, 0, 0, 0, 3752, 3742, 1, 0, 0, 0, 3753, 503, 1, 0, 0, 0, 3754, 3755, 5, 329, 0, 0, 3755, 3756, 5, 399, 0, 0, 3756, 3757, 3, 502, 251, 0, 3757, 3758, 5, 400, 0, 0, 3758, 505, 1, 0, 0, 0, 3759, 3761, 3, 504, 252, 0, 3760, 3762, 5, 17, 0, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3773, 3, 468, 234, 0, 3764, 3765, 5, 399, 0, 0, 3765, 3770, 3, 654, 327, 0, 3766, 3767, 5, 397, 0, 0, 3767, 3769, 3, 654, 327, 0, 3768, 3766, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3764, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3776, 5, 400, 0, 0, 3776, 507, 1, 0, 0, 0, 3777, 3779, 5, 299, 0, 0, 3778, 3780, 5, 436, 0, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3787, 1, 0, 0, 0, 3781, 3783, 7, 22, 0, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3788, 3, 512, 256, 0, 3785, 3786, 5, 347, 0, 0, 3786, 3788, 3, 510, 255, 0, 3787, 3782, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3788, 3791, 1, 0, 0, 0, 3789, 3791, 3, 520, 260, 0, 3790, 3777, 1, 0, 0, 0, 3790, 3789, 1, 0, 0, 0, 3791, 509, 1, 0, 0, 0, 3792, 3793, 5, 399, 0, 0, 3793, 3794, 3, 524, 262, 0, 3794, 3795, 5, 400, 0, 0, 3795, 3796, 3, 212, 106, 0, 3796, 3797, 3, 216, 108, 0, 3797, 3798, 5, 370, 0, 0, 3798, 3811, 5, 426, 0, 0, 3799, 3809, 5, 17, 0, 0, 3800, 3803, 5, 399, 0, 0, 3801, 3804, 3, 450, 225, 0, 3802, 3804, 3, 248, 124, 0, 3803, 3801, 1, 0, 0, 0, 3803, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 5, 400, 0, 0, 3806, 3810, 1, 0, 0, 0, 3807, 3810, 3, 450, 225, 0, 3808, 3810, 3, 248, 124, 0, 3809, 3800, 1, 0, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3808, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3799, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 3, 212, 106, 0, 3814, 3815, 3, 214, 107, 0, 3815, 511, 1, 0, 0, 0, 3816, 3821, 3, 514, 257, 0, 3817, 3818, 5, 397, 0, 0, 3818, 3820, 3, 514, 257, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3823, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 513, 1, 0, 0, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3850, 3, 446, 223, 0, 3825, 3828, 3, 516, 258, 0, 3826, 3828, 3, 518, 259, 0, 3827, 3825, 1, 0, 0, 0, 3827, 3826, 1, 0, 0, 0, 3828, 3845, 1, 0, 0, 0, 3829, 3831, 5, 17, 0, 0, 3830, 3829, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3846, 3, 654, 327, 0, 3833, 3834, 5, 17, 0, 0, 3834, 3835, 5, 399, 0, 0, 3835, 3840, 3, 654, 327, 0, 3836, 3837, 5, 397, 0, 0, 3837, 3839, 3, 654, 327, 0, 3838, 3836, 1, 0, 0, 0, 3839, 3842, 1, 0, 0, 0, 3840, 3838, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3843, 3844, 5, 400, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3830, 1, 0, 0, 0, 3845, 3833, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3850, 1, 0, 0, 0, 3847, 3848, 4, 257, 2, 0, 3848, 3850, 3, 698, 349, 0, 3849, 3824, 1, 0, 0, 0, 3849, 3827, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3850, 515, 1, 0, 0, 0, 3851, 3852, 3, 256, 128, 0, 3852, 517, 1, 0, 0, 0, 3853, 3854, 3, 596, 298, 0, 3854, 519, 1, 0, 0, 0, 3855, 3856, 7, 31, 0, 0, 3856, 3857, 3, 524, 262, 0, 3857, 3858, 3, 212, 106, 0, 3858, 3859, 3, 216, 108, 0, 3859, 3860, 5, 370, 0, 0, 3860, 3873, 5, 426, 0, 0, 3861, 3871, 5, 17, 0, 0, 3862, 3865, 5, 399, 0, 0, 3863, 3866, 3, 450, 225, 0, 3864, 3866, 3, 248, 124, 0, 3865, 3863, 1, 0, 0, 0, 3865, 3864, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 3868, 5, 400, 0, 0, 3868, 3872, 1, 0, 0, 0, 3869, 3872, 3, 450, 225, 0, 3870, 3872, 3, 248, 124, 0, 3871, 3862, 1, 0, 0, 0, 3871, 3869, 1, 0, 0, 0, 3871, 3870, 1, 0, 0, 0, 3872, 3874, 1, 0, 0, 0, 3873, 3861, 1, 0, 0, 0, 3873, 3874, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 3876, 3, 212, 106, 0, 3876, 3877, 3, 214, 107, 0, 3877, 521, 1, 0, 0, 0, 3878, 3881, 3, 446, 223, 0, 3879, 3881, 3, 596, 298, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3879, 1, 0, 0, 0, 3881, 523, 1, 0, 0, 0, 3882, 3887, 3, 522, 261, 0, 3883, 3884, 5, 397, 0, 0, 3884, 3886, 3, 522, 261, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3889, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 525, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3890, 3891, 5, 386, 0, 0, 3891, 3892, 3, 654, 327, 0, 3892, 3893, 5, 17, 0, 0, 3893, 3901, 3, 528, 264, 0, 3894, 3895, 5, 397, 0, 0, 3895, 3896, 3, 654, 327, 0, 3896, 3897, 5, 17, 0, 0, 3897, 3898, 3, 528, 264, 0, 3898, 3900, 1, 0, 0, 0, 3899, 3894, 1, 0, 0, 0, 3900, 3903, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 527, 1, 0, 0, 0, 3903, 3901, 1, 0, 0, 0, 3904, 3917, 3, 654, 327, 0, 3905, 3907, 5, 399, 0, 0, 3906, 3908, 3, 654, 327, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3911, 3, 492, 246, 0, 3910, 3909, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3913, 1, 0, 0, 0, 3912, 3914, 3, 530, 265, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 5, 400, 0, 0, 3916, 3904, 1, 0, 0, 0, 3916, 3905, 1, 0, 0, 0, 3917, 529, 1, 0, 0, 0, 3918, 3932, 7, 32, 0, 0, 3919, 3920, 5, 354, 0, 0, 3920, 3926, 5, 247, 0, 0, 3921, 3922, 5, 62, 0, 0, 3922, 3926, 5, 291, 0, 0, 3923, 3924, 5, 431, 0, 0, 3924, 3926, 5, 247, 0, 0, 3925, 3919, 1, 0, 0, 0, 3925, 3921, 1, 0, 0, 0, 3925, 3923, 1, 0, 0, 0, 3926, 3933, 1, 0, 0, 0, 3927, 3928, 5, 25, 0, 0, 3928, 3929, 3, 532, 266, 0, 3929, 3930, 5, 11, 0, 0, 3930, 3931, 3, 532, 266, 0, 3931, 3933, 1, 0, 0, 0, 3932, 3925, 1, 0, 0, 0, 3932, 3927, 1, 0, 0, 0, 3933, 531, 1, 0, 0, 0, 3934, 3935, 7, 33, 0, 0, 3935, 3939, 7, 34, 0, 0, 3936, 3937, 5, 62, 0, 0, 3937, 3939, 5, 291, 0, 0, 3938, 3934, 1, 0, 0, 0, 3938, 3936, 1, 0, 0, 0, 3939, 533, 1, 0, 0, 0, 3940, 3941, 5, 144, 0, 0, 3941, 3947, 5, 32, 0, 0, 3942, 3948, 3, 256, 128, 0, 3943, 3948, 3, 536, 268, 0, 3944, 3948, 3, 538, 269, 0, 3945, 3946, 5, 399, 0, 0, 3946, 3948, 5, 400, 0, 0, 3947, 3942, 1, 0, 0, 0, 3947, 3943, 1, 0, 0, 0, 3947, 3944, 1, 0, 0, 0, 3947, 3945, 1, 0, 0, 0, 3948, 535, 1, 0, 0, 0, 3949, 3952, 5, 290, 0, 0, 3950, 3952, 5, 61, 0, 0, 3951, 3949, 1, 0, 0, 0, 3951, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3954, 5, 399, 0, 0, 3954, 3959, 3, 596, 298, 0, 3955, 3956, 5, 397, 0, 0, 3956, 3958, 3, 596, 298, 0, 3957, 3955, 1, 0, 0, 0, 3958, 3961, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3962, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3962, 3963, 5, 400, 0, 0, 3963, 537, 1, 0, 0, 0, 3964, 3969, 3, 554, 277, 0, 3965, 3966, 5, 387, 0, 0, 3966, 3970, 5, 290, 0, 0, 3967, 3968, 5, 387, 0, 0, 3968, 3970, 5, 61, 0, 0, 3969, 3965, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3969, 3970, 1, 0, 0, 0, 3970, 3984, 1, 0, 0, 0, 3971, 3972, 5, 145, 0, 0, 3972, 3973, 5, 305, 0, 0, 3973, 3974, 5, 399, 0, 0, 3974, 3979, 3, 540, 270, 0, 3975, 3976, 5, 397, 0, 0, 3976, 3978, 3, 540, 270, 0, 3977, 3975, 1, 0, 0, 0, 3978, 3981, 1, 0, 0, 0, 3979, 3977, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3979, 1, 0, 0, 0, 3982, 3983, 5, 400, 0, 0, 3983, 3985, 1, 0, 0, 0, 3984, 3971, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 539, 1, 0, 0, 0, 3986, 3988, 5, 399, 0, 0, 3987, 3989, 3, 596, 298, 0, 3988, 3987, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3994, 1, 0, 0, 0, 3990, 3991, 5, 397, 0, 0, 3991, 3993, 3, 596, 298, 0, 3992, 3990, 1, 0, 0, 0, 3993, 3996, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 3997, 1, 0, 0, 0, 3996, 3994, 1, 0, 0, 0, 3997, 4000, 5, 400, 0, 0, 3998, 4000, 3, 596, 298, 0, 3999, 3986, 1, 0, 0, 0, 3999, 3998, 1, 0, 0, 0, 4000, 541, 1, 0, 0, 0, 4001, 4004, 5, 146, 0, 0, 4002, 4005, 3, 596, 298, 0, 4003, 4005, 3, 260, 130, 0, 4004, 4002, 1, 0, 0, 0, 4004, 4003, 1, 0, 0, 0, 4005, 543, 1, 0, 0, 0, 4006, 4007, 5, 256, 0, 0, 4007, 4008, 3, 596, 298, 0, 4008, 545, 1, 0, 0, 0, 4009, 4012, 5, 83, 0, 0, 4010, 4012, 3, 596, 298, 0, 4011, 4009, 1, 0, 0, 0, 4011, 4010, 1, 0, 0, 0, 4012, 547, 1, 0, 0, 0, 4013, 4015, 3, 596, 298, 0, 4014, 4016, 5, 17, 0, 0, 4015, 4014, 1, 0, 0, 0, 4015, 4016, 1, 0, 0, 0, 4016, 4018, 1, 0, 0, 0, 4017, 4019, 3, 654, 327, 0, 4018, 4017, 1, 0, 0, 0, 4018, 4019, 1, 0, 0, 0, 4019, 4030, 1, 0, 0, 0, 4020, 4021, 5, 397, 0, 0, 4021, 4023, 3, 596, 298, 0, 4022, 4024, 5, 17, 0, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4026, 1, 0, 0, 0, 4025, 4027, 3, 654, 327, 0, 4026, 4025, 1, 0, 0, 0, 4026, 4027, 1, 0, 0, 0, 4027, 4029, 1, 0, 0, 0, 4028, 4020, 1, 0, 0, 0, 4029, 4032, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4030, 4031, 1, 0, 0, 0, 4031, 549, 1, 0, 0, 0, 4032, 4030, 1, 0, 0, 0, 4033, 4036, 3, 552, 276, 0, 4034, 4036, 3, 554, 277, 0, 4035, 4033, 1, 0, 0, 0, 4035, 4034, 1, 0, 0, 0, 4036, 551, 1, 0, 0, 0, 4037, 4038, 5, 399, 0, 0, 4038, 4039, 3, 554, 277, 0, 4039, 4040, 5, 400, 0, 0, 4040, 553, 1, 0, 0, 0, 4041, 4048, 3, 546, 273, 0, 4042, 4043, 5, 397, 0, 0, 4043, 4045, 3, 546, 273, 0, 4044, 4042, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4044, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4049, 1, 0, 0, 0, 4048, 4044, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 555, 1, 0, 0, 0, 4050, 4051, 5, 229, 0, 0, 4051, 4052, 5, 32, 0, 0, 4052, 4057, 3, 312, 156, 0, 4053, 4054, 5, 397, 0, 0, 4054, 4056, 3, 312, 156, 0, 4055, 4053, 1, 0, 0, 0, 4056, 4059, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 557, 1, 0, 0, 0, 4059, 4057, 1, 0, 0, 0, 4060, 4061, 5, 237, 0, 0, 4061, 4062, 5, 32, 0, 0, 4062, 4063, 3, 550, 275, 0, 4063, 559, 1, 0, 0, 0, 4064, 4065, 5, 41, 0, 0, 4065, 4066, 5, 32, 0, 0, 4066, 4067, 3, 550, 275, 0, 4067, 561, 1, 0, 0, 0, 4068, 4069, 5, 97, 0, 0, 4069, 4070, 5, 32, 0, 0, 4070, 4071, 3, 550, 275, 0, 4071, 563, 1, 0, 0, 0, 4072, 4073, 5, 314, 0, 0, 4073, 4093, 5, 32, 0, 0, 4074, 4075, 5, 399, 0, 0, 4075, 4080, 3, 312, 156, 0, 4076, 4077, 5, 397, 0, 0, 4077, 4079, 3, 312, 156, 0, 4078, 4076, 1, 0, 0, 0, 4079, 4082, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4083, 1, 0, 0, 0, 4082, 4080, 1, 0, 0, 0, 4083, 4084, 5, 400, 0, 0, 4084, 4094, 1, 0, 0, 0, 4085, 4090, 3, 312, 156, 0, 4086, 4087, 5, 397, 0, 0, 4087, 4089, 3, 312, 156, 0, 4088, 4086, 1, 0, 0, 0, 4089, 4092, 1, 0, 0, 0, 4090, 4088, 1, 0, 0, 0, 4090, 4091, 1, 0, 0, 0, 4091, 4094, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4093, 4074, 1, 0, 0, 0, 4093, 4085, 1, 0, 0, 0, 4094, 565, 1, 0, 0, 0, 4095, 4096, 5, 349, 0, 0, 4096, 4100, 5, 399, 0, 0, 4097, 4101, 5, 179, 0, 0, 4098, 4101, 5, 343, 0, 0, 4099, 4101, 5, 29, 0, 0, 4100, 4097, 1, 0, 0, 0, 4100, 4098, 1, 0, 0, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4103, 1, 0, 0, 0, 4102, 4104, 3, 522, 261, 0, 4103, 4102, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4106, 5, 139, 0, 0, 4106, 4107, 3, 522, 261, 0, 4107, 4108, 5, 400, 0, 0, 4108, 4149, 1, 0, 0, 0, 4109, 4110, 3, 574, 287, 0, 4110, 4125, 5, 399, 0, 0, 4111, 4126, 5, 415, 0, 0, 4112, 4114, 7, 22, 0, 0, 4113, 4112, 1, 0, 0, 0, 4113, 4114, 1, 0, 0, 0, 4114, 4123, 1, 0, 0, 0, 4115, 4120, 3, 522, 261, 0, 4116, 4117, 5, 397, 0, 0, 4117, 4119, 3, 522, 261, 0, 4118, 4116, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4124, 1, 0, 0, 0, 4122, 4120, 1, 0, 0, 0, 4123, 4115, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4111, 1, 0, 0, 0, 4125, 4113, 1, 0, 0, 0, 4126, 4146, 1, 0, 0, 0, 4127, 4128, 5, 400, 0, 0, 4128, 4129, 5, 388, 0, 0, 4129, 4130, 5, 144, 0, 0, 4130, 4131, 5, 399, 0, 0, 4131, 4132, 3, 556, 278, 0, 4132, 4133, 5, 400, 0, 0, 4133, 4147, 1, 0, 0, 0, 4134, 4136, 5, 400, 0, 0, 4135, 4137, 3, 568, 284, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 5, 234, 0, 0, 4139, 4147, 3, 528, 264, 0, 4140, 4141, 3, 568, 284, 0, 4141, 4142, 5, 400, 0, 0, 4142, 4143, 5, 234, 0, 0, 4143, 4144, 3, 528, 264, 0, 4144, 4147, 1, 0, 0, 0, 4145, 4147, 5, 400, 0, 0, 4146, 4127, 1, 0, 0, 0, 4146, 4134, 1, 0, 0, 0, 4146, 4140, 1, 0, 0, 0, 4146, 4145, 1, 0, 0, 0, 4147, 4149, 1, 0, 0, 0, 4148, 4095, 1, 0, 0, 0, 4148, 4109, 1, 0, 0, 0, 4149, 567, 1, 0, 0, 0, 4150, 4151, 7, 35, 0, 0, 4151, 4152, 5, 220, 0, 0, 4152, 569, 1, 0, 0, 0, 4153, 4154, 3, 656, 328, 0, 4154, 571, 1, 0, 0, 0, 4155, 4158, 3, 656, 328, 0, 4156, 4158, 5, 426, 0, 0, 4157, 4155, 1, 0, 0, 0, 4157, 4156, 1, 0, 0, 0, 4158, 573, 1, 0, 0, 0, 4159, 4163, 3, 656, 328, 0, 4160, 4163, 3, 662, 331, 0, 4161, 4163, 3, 652, 326, 0, 4162, 4159, 1, 0, 0, 0, 4162, 4160, 1, 0, 0, 0, 4162, 4161, 1, 0, 0, 0, 4163, 575, 1, 0, 0, 0, 4164, 4165, 5, 36, 0, 0, 4165, 4166, 5, 399, 0, 0, 4166, 4167, 3, 596, 298, 0, 4167, 4168, 5, 17, 0, 0, 4168, 4171, 3, 352, 176, 0, 4169, 4170, 5, 137, 0, 0, 4170, 4172, 5, 426, 0, 0, 4171, 4169, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4174, 5, 400, 0, 0, 4174, 577, 1, 0, 0, 0, 4175, 4176, 5, 35, 0, 0, 4176, 4182, 3, 596, 298, 0, 4177, 4178, 5, 383, 0, 0, 4178, 4179, 3, 596, 298, 0, 4179, 4180, 5, 335, 0, 0, 4180, 4181, 3, 596, 298, 0, 4181, 4183, 1, 0, 0, 0, 4182, 4177, 1, 0, 0, 0, 4183, 4184, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 4188, 1, 0, 0, 0, 4186, 4187, 5, 105, 0, 0, 4187, 4189, 3, 596, 298, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4191, 5, 108, 0, 0, 4191, 579, 1, 0, 0, 0, 4192, 4198, 5, 35, 0, 0, 4193, 4194, 5, 383, 0, 0, 4194, 4195, 3, 596, 298, 0, 4195, 4196, 5, 335, 0, 0, 4196, 4197, 3, 596, 298, 0, 4197, 4199, 1, 0, 0, 0, 4198, 4193, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4198, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 4204, 1, 0, 0, 0, 4202, 4203, 5, 105, 0, 0, 4203, 4205, 3, 596, 298, 0, 4204, 4202, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4207, 5, 108, 0, 0, 4207, 581, 1, 0, 0, 0, 4208, 4209, 5, 132, 0, 0, 4209, 4210, 5, 399, 0, 0, 4210, 4213, 3, 596, 298, 0, 4211, 4212, 5, 341, 0, 0, 4212, 4214, 3, 586, 293, 0, 4213, 4211, 1, 0, 0, 0, 4213, 4214, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4216, 5, 400, 0, 0, 4216, 583, 1, 0, 0, 0, 4217, 4218, 5, 124, 0, 0, 4218, 4219, 5, 399, 0, 0, 4219, 4220, 3, 586, 293, 0, 4220, 4221, 5, 139, 0, 0, 4221, 4222, 3, 596, 298, 0, 4222, 4223, 5, 400, 0, 0, 4223, 585, 1, 0, 0, 0, 4224, 4233, 3, 682, 341, 0, 4225, 4233, 5, 257, 0, 0, 4226, 4233, 3, 684, 342, 0, 4227, 4233, 3, 686, 343, 0, 4228, 4233, 3, 688, 344, 0, 4229, 4233, 3, 690, 345, 0, 4230, 4233, 3, 692, 346, 0, 4231, 4233, 3, 694, 347, 0, 4232, 4224, 1, 0, 0, 0, 4232, 4225, 1, 0, 0, 0, 4232, 4226, 1, 0, 0, 0, 4232, 4227, 1, 0, 0, 0, 4232, 4228, 1, 0, 0, 0, 4232, 4229, 1, 0, 0, 0, 4232, 4230, 1, 0, 0, 0, 4232, 4231, 1, 0, 0, 0, 4233, 587, 1, 0, 0, 0, 4234, 4235, 3, 590, 295, 0, 4235, 4236, 3, 594, 297, 0, 4236, 4263, 1, 0, 0, 0, 4237, 4263, 5, 431, 0, 0, 4238, 4239, 5, 71, 0, 0, 4239, 4263, 5, 426, 0, 0, 4240, 4263, 5, 63, 0, 0, 4241, 4242, 5, 337, 0, 0, 4242, 4263, 5, 426, 0, 0, 4243, 4263, 5, 64, 0, 0, 4244, 4245, 5, 338, 0, 0, 4245, 4263, 5, 426, 0, 0, 4246, 4250, 5, 426, 0, 0, 4247, 4249, 5, 426, 0, 0, 4248, 4247, 1, 0, 0, 0, 4249, 4252, 1, 0, 0, 0, 4250, 4248, 1, 0, 0, 0, 4250, 4251, 1, 0, 0, 0, 4251, 4263, 1, 0, 0, 0, 4252, 4250, 1, 0, 0, 0, 4253, 4263, 5, 428, 0, 0, 4254, 4263, 5, 429, 0, 0, 4255, 4256, 5, 433, 0, 0, 4256, 4263, 5, 427, 0, 0, 4257, 4263, 5, 350, 0, 0, 4258, 4263, 5, 125, 0, 0, 4259, 4263, 5, 219, 0, 0, 4260, 4263, 5, 424, 0, 0, 4261, 4263, 3, 258, 129, 0, 4262, 4234, 1, 0, 0, 0, 4262, 4237, 1, 0, 0, 0, 4262, 4238, 1, 0, 0, 0, 4262, 4240, 1, 0, 0, 0, 4262, 4241, 1, 0, 0, 0, 4262, 4243, 1, 0, 0, 0, 4262, 4244, 1, 0, 0, 0, 4262, 4246, 1, 0, 0, 0, 4262, 4253, 1, 0, 0, 0, 4262, 4254, 1, 0, 0, 0, 4262, 4255, 1, 0, 0, 0, 4262, 4257, 1, 0, 0, 0, 4262, 4258, 1, 0, 0, 0, 4262, 4259, 1, 0, 0, 0, 4262, 4260, 1, 0, 0, 0, 4262, 4261, 1, 0, 0, 0, 4263, 589, 1, 0, 0, 0, 4264, 4265, 7, 27, 0, 0, 4265, 591, 1, 0, 0, 0, 4266, 4267, 5, 399, 0, 0, 4267, 4268, 3, 590, 295, 0, 4268, 4269, 5, 400, 0, 0, 4269, 4270, 3, 594, 297, 0, 4270, 4282, 1, 0, 0, 0, 4271, 4277, 5, 165, 0, 0, 4272, 4278, 3, 590, 295, 0, 4273, 4274, 5, 399, 0, 0, 4274, 4275, 3, 596, 298, 0, 4275, 4276, 5, 400, 0, 0, 4276, 4278, 1, 0, 0, 0, 4277, 4272, 1, 0, 0, 0, 4277, 4273, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4280, 3, 594, 297, 0, 4280, 4282, 1, 0, 0, 0, 4281, 4266, 1, 0, 0, 0, 4281, 4271, 1, 0, 0, 0, 4282, 593, 1, 0, 0, 0, 4283, 4284, 3, 682, 341, 0, 4284, 4285, 5, 341, 0, 0, 4285, 4286, 3, 684, 342, 0, 4286, 4298, 1, 0, 0, 0, 4287, 4288, 3, 688, 344, 0, 4288, 4289, 5, 341, 0, 0, 4289, 4290, 3, 694, 347, 0, 4290, 4298, 1, 0, 0, 0, 4291, 4298, 3, 682, 341, 0, 4292, 4298, 3, 684, 342, 0, 4293, 4298, 3, 688, 344, 0, 4294, 4298, 3, 690, 345, 0, 4295, 4298, 3, 692, 346, 0, 4296, 4298, 3, 694, 347, 0, 4297, 4283, 1, 0, 0, 0, 4297, 4287, 1, 0, 0, 0, 4297, 4291, 1, 0, 0, 0, 4297, 4292, 1, 0, 0, 0, 4297, 4293, 1, 0, 0, 0, 4297, 4294, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4296, 1, 0, 0, 0, 4298, 595, 1, 0, 0, 0, 4299, 4304, 3, 638, 319, 0, 4300, 4301, 5, 228, 0, 0, 4301, 4303, 3, 638, 319, 0, 4302, 4300, 1, 0, 0, 0, 4303, 4306, 1, 0, 0, 0, 4304, 4302, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 597, 1, 0, 0, 0, 4306, 4304, 1, 0, 0, 0, 4307, 4319, 3, 588, 294, 0, 4308, 4319, 3, 592, 296, 0, 4309, 4319, 3, 576, 288, 0, 4310, 4319, 3, 584, 292, 0, 4311, 4319, 3, 582, 291, 0, 4312, 4319, 3, 578, 289, 0, 4313, 4319, 3, 580, 290, 0, 4314, 4319, 3, 616, 308, 0, 4315, 4319, 3, 566, 283, 0, 4316, 4319, 3, 552, 276, 0, 4317, 4319, 3, 654, 327, 0, 4318, 4307, 1, 0, 0, 0, 4318, 4308, 1, 0, 0, 0, 4318, 4309, 1, 0, 0, 0, 4318, 4310, 1, 0, 0, 0, 4318, 4311, 1, 0, 0, 0, 4318, 4312, 1, 0, 0, 0, 4318, 4313, 1, 0, 0, 0, 4318, 4314, 1, 0, 0, 0, 4318, 4315, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4317, 1, 0, 0, 0, 4319, 599, 1, 0, 0, 0, 4320, 4322, 7, 36, 0, 0, 4321, 4320, 1, 0, 0, 0, 4322, 4325, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 4326, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4326, 4335, 3, 598, 299, 0, 4327, 4328, 5, 401, 0, 0, 4328, 4329, 3, 596, 298, 0, 4329, 4330, 5, 402, 0, 0, 4330, 4334, 1, 0, 0, 0, 4331, 4332, 5, 395, 0, 0, 4332, 4334, 3, 654, 327, 0, 4333, 4327, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4337, 1, 0, 0, 0, 4335, 4333, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 601, 1, 0, 0, 0, 4337, 4335, 1, 0, 0, 0, 4338, 4343, 3, 600, 300, 0, 4339, 4340, 5, 423, 0, 0, 4340, 4342, 3, 600, 300, 0, 4341, 4339, 1, 0, 0, 0, 4342, 4345, 1, 0, 0, 0, 4343, 4341, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 603, 1, 0, 0, 0, 4345, 4343, 1, 0, 0, 0, 4346, 4351, 3, 602, 301, 0, 4347, 4348, 7, 37, 0, 0, 4348, 4350, 3, 602, 301, 0, 4349, 4347, 1, 0, 0, 0, 4350, 4353, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4351, 4352, 1, 0, 0, 0, 4352, 605, 1, 0, 0, 0, 4353, 4351, 1, 0, 0, 0, 4354, 4359, 3, 604, 302, 0, 4355, 4356, 7, 38, 0, 0, 4356, 4358, 3, 604, 302, 0, 4357, 4355, 1, 0, 0, 0, 4358, 4361, 1, 0, 0, 0, 4359, 4357, 1, 0, 0, 0, 4359, 4360, 1, 0, 0, 0, 4360, 607, 1, 0, 0, 0, 4361, 4359, 1, 0, 0, 0, 4362, 4367, 3, 606, 303, 0, 4363, 4364, 5, 422, 0, 0, 4364, 4366, 3, 606, 303, 0, 4365, 4363, 1, 0, 0, 0, 4366, 4369, 1, 0, 0, 0, 4367, 4365, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 609, 1, 0, 0, 0, 4369, 4367, 1, 0, 0, 0, 4370, 4375, 3, 608, 304, 0, 4371, 4372, 5, 419, 0, 0, 4372, 4374, 3, 608, 304, 0, 4373, 4371, 1, 0, 0, 0, 4374, 4377, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4375, 4376, 1, 0, 0, 0, 4376, 611, 1, 0, 0, 0, 4377, 4375, 1, 0, 0, 0, 4378, 4383, 3, 610, 305, 0, 4379, 4380, 5, 421, 0, 0, 4380, 4382, 3, 610, 305, 0, 4381, 4379, 1, 0, 0, 0, 4382, 4385, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4383, 4384, 1, 0, 0, 0, 4384, 613, 1, 0, 0, 0, 4385, 4383, 1, 0, 0, 0, 4386, 4387, 7, 39, 0, 0, 4387, 615, 1, 0, 0, 0, 4388, 4389, 5, 399, 0, 0, 4389, 4390, 3, 380, 190, 0, 4390, 4391, 5, 400, 0, 0, 4391, 617, 1, 0, 0, 0, 4392, 4394, 3, 612, 306, 0, 4393, 4395, 3, 620, 310, 0, 4394, 4393, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, 4399, 1, 0, 0, 0, 4396, 4397, 5, 117, 0, 0, 4397, 4399, 3, 616, 308, 0, 4398, 4392, 1, 0, 0, 0, 4398, 4396, 1, 0, 0, 0, 4399, 619, 1, 0, 0, 0, 4400, 4401, 3, 614, 307, 0, 4401, 4402, 3, 612, 306, 0, 4402, 4407, 1, 0, 0, 0, 4403, 4407, 3, 622, 311, 0, 4404, 4405, 5, 216, 0, 0, 4405, 4407, 3, 626, 313, 0, 4406, 4400, 1, 0, 0, 0, 4406, 4403, 1, 0, 0, 0, 4406, 4404, 1, 0, 0, 0, 4407, 621, 1, 0, 0, 0, 4408, 4409, 5, 154, 0, 0, 4409, 4423, 3, 624, 312, 0, 4410, 4411, 5, 25, 0, 0, 4411, 4412, 3, 612, 306, 0, 4412, 4413, 5, 11, 0, 0, 4413, 4414, 3, 612, 306, 0, 4414, 4423, 1, 0, 0, 0, 4415, 4416, 5, 184, 0, 0, 4416, 4417, 7, 40, 0, 0, 4417, 4423, 3, 552, 276, 0, 4418, 4419, 3, 650, 325, 0, 4419, 4420, 7, 41, 0, 0, 4420, 4421, 3, 616, 308, 0, 4421, 4423, 1, 0, 0, 0, 4422, 4408, 1, 0, 0, 0, 4422, 4410, 1, 0, 0, 0, 4422, 4415, 1, 0, 0, 0, 4422, 4418, 1, 0, 0, 0, 4423, 623, 1, 0, 0, 0, 4424, 4427, 3, 616, 308, 0, 4425, 4427, 3, 552, 276, 0, 4426, 4424, 1, 0, 0, 0, 4426, 4425, 1, 0, 0, 0, 4427, 625, 1, 0, 0, 0, 4428, 4429, 7, 42, 0, 0, 4429, 4432, 3, 612, 306, 0, 4430, 4432, 3, 622, 311, 0, 4431, 4428, 1, 0, 0, 0, 4431, 4430, 1, 0, 0, 0, 4432, 627, 1, 0, 0, 0, 4433, 4434, 5, 167, 0, 0, 4434, 4435, 5, 96, 0, 0, 4435, 4436, 5, 139, 0, 0, 4436, 629, 1, 0, 0, 0, 4437, 4445, 5, 405, 0, 0, 4438, 4445, 5, 406, 0, 0, 4439, 4445, 5, 407, 0, 0, 4440, 4441, 5, 167, 0, 0, 4441, 4442, 5, 216, 0, 0, 4442, 4443, 5, 96, 0, 0, 4443, 4445, 5, 139, 0, 0, 4444, 4437, 1, 0, 0, 0, 4444, 4438, 1, 0, 0, 0, 4444, 4439, 1, 0, 0, 0, 4444, 4440, 1, 0, 0, 0, 4445, 631, 1, 0, 0, 0, 4446, 4455, 3, 618, 309, 0, 4447, 4448, 3, 630, 315, 0, 4448, 4449, 3, 618, 309, 0, 4449, 4454, 1, 0, 0, 0, 4450, 4451, 3, 628, 314, 0, 4451, 4452, 3, 618, 309, 0, 4452, 4454, 1, 0, 0, 0, 4453, 4447, 1, 0, 0, 0, 4453, 4450, 1, 0, 0, 0, 4454, 4457, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 633, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4458, 4465, 5, 219, 0, 0, 4459, 4465, 5, 350, 0, 0, 4460, 4465, 5, 125, 0, 0, 4461, 4465, 5, 360, 0, 0, 4462, 4463, 5, 216, 0, 0, 4463, 4465, 7, 43, 0, 0, 4464, 4458, 1, 0, 0, 0, 4464, 4459, 1, 0, 0, 0, 4464, 4460, 1, 0, 0, 0, 4464, 4461, 1, 0, 0, 0, 4464, 4462, 1, 0, 0, 0, 4465, 635, 1, 0, 0, 0, 4466, 4468, 5, 216, 0, 0, 4467, 4466, 1, 0, 0, 0, 4468, 4471, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4472, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4472, 4475, 3, 632, 316, 0, 4473, 4474, 5, 167, 0, 0, 4474, 4476, 3, 634, 317, 0, 4475, 4473, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 637, 1, 0, 0, 0, 4477, 4482, 3, 636, 318, 0, 4478, 4479, 5, 11, 0, 0, 4479, 4481, 3, 636, 318, 0, 4480, 4478, 1, 0, 0, 0, 4481, 4484, 1, 0, 0, 0, 4482, 4480, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 639, 1, 0, 0, 0, 4484, 4482, 1, 0, 0, 0, 4485, 4487, 3, 482, 241, 0, 4486, 4488, 3, 642, 321, 0, 4487, 4486, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 641, 1, 0, 0, 0, 4489, 4490, 5, 237, 0, 0, 4490, 4491, 5, 399, 0, 0, 4491, 4496, 3, 644, 322, 0, 4492, 4493, 5, 397, 0, 0, 4493, 4495, 3, 644, 322, 0, 4494, 4492, 1, 0, 0, 0, 4495, 4498, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4499, 1, 0, 0, 0, 4498, 4496, 1, 0, 0, 0, 4499, 4500, 5, 400, 0, 0, 4500, 643, 1, 0, 0, 0, 4501, 4504, 3, 654, 327, 0, 4502, 4503, 5, 405, 0, 0, 4503, 4505, 3, 588, 294, 0, 4504, 4502, 1, 0, 0, 0, 4504, 4505, 1, 0, 0, 0, 4505, 645, 1, 0, 0, 0, 4506, 4507, 5, 399, 0, 0, 4507, 4512, 3, 648, 324, 0, 4508, 4509, 5, 397, 0, 0, 4509, 4511, 3, 648, 324, 0, 4510, 4508, 1, 0, 0, 0, 4511, 4514, 1, 0, 0, 0, 4512, 4510, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4515, 1, 0, 0, 0, 4514, 4512, 1, 0, 0, 0, 4515, 4516, 5, 400, 0, 0, 4516, 647, 1, 0, 0, 0, 4517, 4520, 3, 654, 327, 0, 4518, 4521, 5, 184, 0, 0, 4519, 4521, 3, 650, 325, 0, 4520, 4518, 1, 0, 0, 0, 4520, 4519, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 4523, 3, 588, 294, 0, 4523, 649, 1, 0, 0, 0, 4524, 4525, 7, 44, 0, 0, 4525, 651, 1, 0, 0, 0, 4526, 4527, 7, 45, 0, 0, 4527, 653, 1, 0, 0, 0, 4528, 4531, 5, 432, 0, 0, 4529, 4531, 3, 660, 330, 0, 4530, 4528, 1, 0, 0, 0, 4530, 4529, 1, 0, 0, 0, 4531, 655, 1, 0, 0, 0, 4532, 4535, 3, 654, 327, 0, 4533, 4534, 5, 395, 0, 0, 4534, 4536, 3, 654, 327, 0, 4535, 4533, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 657, 1, 0, 0, 0, 4537, 4538, 3, 654, 327, 0, 4538, 659, 1, 0, 0, 0, 4539, 4540, 7, 46, 0, 0, 4540, 661, 1, 0, 0, 0, 4541, 4542, 7, 47, 0, 0, 4542, 663, 1, 0, 0, 0, 4543, 4595, 3, 654, 327, 0, 4544, 4595, 5, 299, 0, 0, 4545, 4595, 5, 171, 0, 0, 4546, 4595, 5, 237, 0, 0, 4547, 4595, 5, 198, 0, 0, 4548, 4595, 5, 268, 0, 0, 4549, 4595, 5, 369, 0, 0, 4550, 4595, 5, 241, 0, 0, 4551, 4595, 5, 165, 0, 0, 4552, 4595, 5, 292, 0, 0, 4553, 4595, 5, 356, 0, 0, 4554, 4595, 5, 144, 0, 0, 4555, 4595, 5, 203, 0, 0, 4556, 4595, 5, 219, 0, 0, 4557, 4595, 5, 126, 0, 0, 4558, 4595, 5, 188, 0, 0, 4559, 4595, 5, 101, 0, 0, 4560, 4595, 5, 329, 0, 0, 4561, 4595, 5, 224, 0, 0, 4562, 4595, 5, 291, 0, 0, 4563, 4595, 5, 145, 0, 0, 4564, 4595, 5, 304, 0, 0, 4565, 4595, 5, 135, 0, 0, 4566, 4595, 5, 318, 0, 0, 4567, 4595, 5, 161, 0, 0, 4568, 4595, 5, 54, 0, 0, 4569, 4595, 5, 166, 0, 0, 4570, 4595, 5, 358, 0, 0, 4571, 4595, 5, 45, 0, 0, 4572, 4595, 5, 347, 0, 0, 4573, 4595, 5, 96, 0, 0, 4574, 4595, 5, 154, 0, 0, 4575, 4595, 5, 269, 0, 0, 4576, 4595, 5, 337, 0, 0, 4577, 4595, 5, 225, 0, 0, 4578, 4595, 5, 108, 0, 0, 4579, 4595, 5, 141, 0, 0, 4580, 4595, 5, 365, 0, 0, 4581, 4595, 5, 21, 0, 0, 4582, 4595, 5, 78, 0, 0, 4583, 4595, 5, 374, 0, 0, 4584, 4595, 5, 336, 0, 0, 4585, 4595, 5, 167, 0, 0, 4586, 4595, 5, 134, 0, 0, 4587, 4595, 5, 216, 0, 0, 4588, 4595, 5, 27, 0, 0, 4589, 4595, 5, 370, 0, 0, 4590, 4595, 5, 263, 0, 0, 4591, 4595, 5, 25, 0, 0, 4592, 4595, 5, 62, 0, 0, 4593, 4595, 5, 17, 0, 0, 4594, 4543, 1, 0, 0, 0, 4594, 4544, 1, 0, 0, 0, 4594, 4545, 1, 0, 0, 0, 4594, 4546, 1, 0, 0, 0, 4594, 4547, 1, 0, 0, 0, 4594, 4548, 1, 0, 0, 0, 4594, 4549, 1, 0, 0, 0, 4594, 4550, 1, 0, 0, 0, 4594, 4551, 1, 0, 0, 0, 4594, 4552, 1, 0, 0, 0, 4594, 4553, 1, 0, 0, 0, 4594, 4554, 1, 0, 0, 0, 4594, 4555, 1, 0, 0, 0, 4594, 4556, 1, 0, 0, 0, 4594, 4557, 1, 0, 0, 0, 4594, 4558, 1, 0, 0, 0, 4594, 4559, 1, 0, 0, 0, 4594, 4560, 1, 0, 0, 0, 4594, 4561, 1, 0, 0, 0, 4594, 4562, 1, 0, 0, 0, 4594, 4563, 1, 0, 0, 0, 4594, 4564, 1, 0, 0, 0, 4594, 4565, 1, 0, 0, 0, 4594, 4566, 1, 0, 0, 0, 4594, 4567, 1, 0, 0, 0, 4594, 4568, 1, 0, 0, 0, 4594, 4569, 1, 0, 0, 0, 4594, 4570, 1, 0, 0, 0, 4594, 4571, 1, 0, 0, 0, 4594, 4572, 1, 0, 0, 0, 4594, 4573, 1, 0, 0, 0, 4594, 4574, 1, 0, 0, 0, 4594, 4575, 1, 0, 0, 0, 4594, 4576, 1, 0, 0, 0, 4594, 4577, 1, 0, 0, 0, 4594, 4578, 1, 0, 0, 0, 4594, 4579, 1, 0, 0, 0, 4594, 4580, 1, 0, 0, 0, 4594, 4581, 1, 0, 0, 0, 4594, 4582, 1, 0, 0, 0, 4594, 4583, 1, 0, 0, 0, 4594, 4584, 1, 0, 0, 0, 4594, 4585, 1, 0, 0, 0, 4594, 4586, 1, 0, 0, 0, 4594, 4587, 1, 0, 0, 0, 4594, 4588, 1, 0, 0, 0, 4594, 4589, 1, 0, 0, 0, 4594, 4590, 1, 0, 0, 0, 4594, 4591, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4594, 4593, 1, 0, 0, 0, 4595, 665, 1, 0, 0, 0, 4596, 4597, 5, 58, 0, 0, 4597, 4598, 5, 280, 0, 0, 4598, 4600, 5, 243, 0, 0, 4599, 4601, 3, 32, 16, 0, 4600, 4599, 1, 0, 0, 0, 4600, 4601, 1, 0, 0, 0, 4601, 4611, 1, 0, 0, 0, 4602, 4603, 3, 654, 327, 0, 4603, 4604, 5, 184, 0, 0, 4604, 4605, 3, 654, 327, 0, 4605, 4612, 1, 0, 0, 0, 4606, 4609, 3, 654, 327, 0, 4607, 4608, 5, 387, 0, 0, 4608, 4610, 3, 672, 336, 0, 4609, 4607, 1, 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 4612, 1, 0, 0, 0, 4611, 4602, 1, 0, 0, 0, 4611, 4606, 1, 0, 0, 0, 4612, 4762, 1, 0, 0, 0, 4613, 4614, 5, 9, 0, 0, 4614, 4615, 5, 280, 0, 0, 4615, 4616, 5, 243, 0, 0, 4616, 4641, 3, 654, 327, 0, 4617, 4642, 5, 373, 0, 0, 4618, 4642, 3, 680, 340, 0, 4619, 4620, 5, 304, 0, 0, 4620, 4642, 3, 672, 336, 0, 4621, 4622, 5, 363, 0, 0, 4622, 4627, 3, 674, 337, 0, 4623, 4624, 5, 397, 0, 0, 4624, 4626, 3, 674, 337, 0, 4625, 4623, 1, 0, 0, 0, 4626, 4629, 1, 0, 0, 0, 4627, 4625, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 4642, 1, 0, 0, 0, 4629, 4627, 1, 0, 0, 0, 4630, 4631, 5, 274, 0, 0, 4631, 4632, 5, 341, 0, 0, 4632, 4642, 3, 654, 327, 0, 4633, 4635, 3, 676, 338, 0, 4634, 4636, 3, 678, 339, 0, 4635, 4634, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4642, 1, 0, 0, 0, 4637, 4639, 3, 678, 339, 0, 4638, 4640, 3, 676, 338, 0, 4639, 4638, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 4642, 1, 0, 0, 0, 4641, 4617, 1, 0, 0, 0, 4641, 4618, 1, 0, 0, 0, 4641, 4619, 1, 0, 0, 0, 4641, 4621, 1, 0, 0, 0, 4641, 4630, 1, 0, 0, 0, 4641, 4633, 1, 0, 0, 0, 4641, 4637, 1, 0, 0, 0, 4642, 4762, 1, 0, 0, 0, 4643, 4644, 5, 101, 0, 0, 4644, 4645, 5, 280, 0, 0, 4645, 4647, 5, 243, 0, 0, 4646, 4648, 3, 30, 15, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 4649, 1, 0, 0, 0, 4649, 4762, 3, 654, 327, 0, 4650, 4653, 3, 678, 339, 0, 4651, 4653, 3, 680, 340, 0, 4652, 4650, 1, 0, 0, 0, 4652, 4651, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4655, 5, 390, 0, 0, 4655, 4656, 5, 197, 0, 0, 4656, 4762, 1, 0, 0, 0, 4657, 4669, 5, 278, 0, 0, 4658, 4659, 5, 3, 0, 0, 4659, 4660, 5, 280, 0, 0, 4660, 4661, 5, 243, 0, 0, 4661, 4662, 5, 387, 0, 0, 4662, 4670, 3, 654, 327, 0, 4663, 4664, 5, 280, 0, 0, 4664, 4665, 5, 243, 0, 0, 4665, 4666, 3, 654, 327, 0, 4666, 4667, 5, 387, 0, 0, 4667, 4668, 3, 654, 327, 0, 4668, 4670, 1, 0, 0, 0, 4669, 4658, 1, 0, 0, 0, 4669, 4663, 1, 0, 0, 0, 4670, 4762, 1, 0, 0, 0, 4671, 4672, 5, 58, 0, 0, 4672, 4673, 5, 348, 0, 0, 4673, 4674, 3, 654, 327, 0, 4674, 4675, 5, 395, 0, 0, 4675, 4676, 3, 654, 327, 0, 4676, 4677, 5, 383, 0, 0, 4677, 4678, 3, 704, 352, 0, 4678, 4679, 5, 99, 0, 0, 4679, 4680, 3, 706, 353, 0, 4680, 4762, 1, 0, 0, 0, 4681, 4682, 5, 9, 0, 0, 4682, 4683, 5, 348, 0, 0, 4683, 4684, 3, 654, 327, 0, 4684, 4685, 5, 395, 0, 0, 4685, 4702, 3, 654, 327, 0, 4686, 4687, 5, 383, 0, 0, 4687, 4688, 3, 704, 352, 0, 4688, 4689, 5, 99, 0, 0, 4689, 4690, 3, 706, 353, 0, 4690, 4703, 1, 0, 0, 0, 4691, 4692, 5, 4, 0, 0, 4692, 4696, 5, 341, 0, 0, 4693, 4694, 5, 101, 0, 0, 4694, 4696, 5, 139, 0, 0, 4695, 4691, 1, 0, 0, 0, 4695, 4693, 1, 0, 0, 0, 4696, 4700, 1, 0, 0, 0, 4697, 4698, 5, 246, 0, 0, 4698, 4701, 3, 700, 350, 0, 4699, 4701, 5, 362, 0, 0, 4700, 4697, 1, 0, 0, 0, 4700, 4699, 1, 0, 0, 0, 4701, 4703, 1, 0, 0, 0, 4702, 4686, 1, 0, 0, 0, 4702, 4695, 1, 0, 0, 0, 4703, 4762, 1, 0, 0, 0, 4704, 4705, 5, 101, 0, 0, 4705, 4706, 5, 348, 0, 0, 4706, 4707, 3, 654, 327, 0, 4707, 4708, 5, 395, 0, 0, 4708, 4709, 3, 654, 327, 0, 4709, 4762, 1, 0, 0, 0, 4710, 4711, 5, 58, 0, 0, 4711, 4712, 5, 246, 0, 0, 4712, 4713, 3, 654, 327, 0, 4713, 4714, 5, 395, 0, 0, 4714, 4715, 3, 700, 350, 0, 4715, 4716, 5, 387, 0, 0, 4716, 4717, 3, 710, 355, 0, 4717, 4762, 1, 0, 0, 0, 4718, 4719, 5, 9, 0, 0, 4719, 4720, 5, 246, 0, 0, 4720, 4721, 3, 654, 327, 0, 4721, 4722, 5, 395, 0, 0, 4722, 4730, 3, 700, 350, 0, 4723, 4724, 5, 304, 0, 0, 4724, 4731, 3, 710, 355, 0, 4725, 4726, 5, 363, 0, 0, 4726, 4731, 5, 294, 0, 0, 4727, 4728, 7, 48, 0, 0, 4728, 4729, 5, 348, 0, 0, 4729, 4731, 3, 654, 327, 0, 4730, 4723, 1, 0, 0, 0, 4730, 4725, 1, 0, 0, 0, 4730, 4727, 1, 0, 0, 0, 4731, 4762, 1, 0, 0, 0, 4732, 4733, 5, 101, 0, 0, 4733, 4734, 5, 246, 0, 0, 4734, 4735, 3, 654, 327, 0, 4735, 4736, 5, 395, 0, 0, 4736, 4737, 3, 700, 350, 0, 4737, 4762, 1, 0, 0, 0, 4738, 4739, 7, 49, 0, 0, 4739, 4740, 3, 668, 334, 0, 4740, 4741, 5, 200, 0, 0, 4741, 4742, 5, 426, 0, 0, 4742, 4743, 5, 154, 0, 0, 4743, 4747, 3, 654, 327, 0, 4744, 4745, 5, 341, 0, 0, 4745, 4748, 3, 700, 350, 0, 4746, 4748, 5, 362, 0, 0, 4747, 4744, 1, 0, 0, 0, 4747, 4746, 1, 0, 0, 0, 4748, 4752, 1, 0, 0, 0, 4749, 4750, 5, 387, 0, 0, 4750, 4751, 5, 229, 0, 0, 4751, 4753, 5, 431, 0, 0, 4752, 4749, 1, 0, 0, 0, 4752, 4753, 1, 0, 0, 0, 4753, 4762, 1, 0, 0, 0, 4754, 4755, 5, 101, 0, 0, 4755, 4756, 3, 668, 334, 0, 4756, 4757, 5, 200, 0, 0, 4757, 4758, 5, 426, 0, 0, 4758, 4759, 5, 154, 0, 0, 4759, 4760, 3, 654, 327, 0, 4760, 4762, 1, 0, 0, 0, 4761, 4596, 1, 0, 0, 0, 4761, 4613, 1, 0, 0, 0, 4761, 4643, 1, 0, 0, 0, 4761, 4652, 1, 0, 0, 0, 4761, 4657, 1, 0, 0, 0, 4761, 4671, 1, 0, 0, 0, 4761, 4681, 1, 0, 0, 0, 4761, 4704, 1, 0, 0, 0, 4761, 4710, 1, 0, 0, 0, 4761, 4718, 1, 0, 0, 0, 4761, 4732, 1, 0, 0, 0, 4761, 4738, 1, 0, 0, 0, 4761, 4754, 1, 0, 0, 0, 4762, 667, 1, 0, 0, 0, 4763, 4764, 7, 50, 0, 0, 4764, 669, 1, 0, 0, 0, 4765, 4766, 5, 259, 0, 0, 4766, 4767, 5, 405, 0, 0, 4767, 4773, 5, 431, 0, 0, 4768, 4769, 5, 83, 0, 0, 4769, 4770, 5, 246, 0, 0, 4770, 4771, 5, 405, 0, 0, 4771, 4773, 3, 700, 350, 0, 4772, 4765, 1, 0, 0, 0, 4772, 4768, 1, 0, 0, 0, 4773, 671, 1, 0, 0, 0, 4774, 4779, 3, 670, 335, 0, 4775, 4776, 5, 397, 0, 0, 4776, 4778, 3, 670, 335, 0, 4777, 4775, 1, 0, 0, 0, 4778, 4781, 1, 0, 0, 0, 4779, 4777, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 673, 1, 0, 0, 0, 4781, 4779, 1, 0, 0, 0, 4782, 4786, 5, 259, 0, 0, 4783, 4784, 5, 83, 0, 0, 4784, 4786, 5, 246, 0, 0, 4785, 4782, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4786, 675, 1, 0, 0, 0, 4787, 4790, 5, 2, 0, 0, 4788, 4789, 5, 387, 0, 0, 4789, 4791, 5, 278, 0, 0, 4790, 4788, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 677, 1, 0, 0, 0, 4792, 4793, 7, 51, 0, 0, 4793, 679, 1, 0, 0, 0, 4794, 4795, 7, 52, 0, 0, 4795, 681, 1, 0, 0, 0, 4796, 4797, 7, 53, 0, 0, 4797, 683, 1, 0, 0, 0, 4798, 4799, 7, 54, 0, 0, 4799, 685, 1, 0, 0, 0, 4800, 4801, 7, 55, 0, 0, 4801, 687, 1, 0, 0, 0, 4802, 4803, 7, 56, 0, 0, 4803, 689, 1, 0, 0, 0, 4804, 4805, 7, 57, 0, 0, 4805, 691, 1, 0, 0, 0, 4806, 4807, 7, 58, 0, 0, 4807, 693, 1, 0, 0, 0, 4808, 4809, 7, 59, 0, 0, 4809, 695, 1, 0, 0, 0, 4810, 4811, 7, 60, 0, 0, 4811, 697, 1, 0, 0, 0, 4812, 4813, 1, 0, 0, 0, 4813, 699, 1, 0, 0, 0, 4814, 4819, 3, 654, 327, 0, 4815, 4816, 5, 395, 0, 0, 4816, 4818, 3, 654, 327, 0, 4817, 4815, 1, 0, 0, 0, 4818, 4821, 1, 0, 0, 0, 4819, 4817, 1, 0, 0, 0, 4819, 4820, 1, 0, 0, 0, 4820, 701, 1, 0, 0, 0, 4821, 4819, 1, 0, 0, 0, 4822, 4827, 3, 654, 327, 0, 4823, 4824, 5, 395, 0, 0, 4824, 4826, 3, 654, 327, 0, 4825, 4823, 1, 0, 0, 0, 4826, 4829, 1, 0, 0, 0, 4827, 4825, 1, 0, 0, 0, 4827, 4828, 1, 0, 0, 0, 4828, 4840, 1, 0, 0, 0, 4829, 4827, 1, 0, 0, 0, 4830, 4831, 4, 351, 3, 0, 4831, 4836, 3, 654, 327, 0, 4832, 4833, 5, 395, 0, 0, 4833, 4835, 3, 698, 349, 0, 4834, 4832, 1, 0, 0, 0, 4835, 4838, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4836, 4837, 1, 0, 0, 0, 4837, 4840, 1, 0, 0, 0, 4838, 4836, 1, 0, 0, 0, 4839, 4822, 1, 0, 0, 0, 4839, 4830, 1, 0, 0, 0, 4840, 703, 1, 0, 0, 0, 4841, 4842, 3, 654, 327, 0, 4842, 4843, 5, 411, 0, 0, 4843, 4844, 7, 27, 0, 0, 4844, 705, 1, 0, 0, 0, 4845, 4850, 5, 176, 0, 0, 4846, 4847, 5, 211, 0, 0, 4847, 4848, 5, 341, 0, 0, 4848, 4850, 3, 700, 350, 0, 4849, 4845, 1, 0, 0, 0, 4849, 4846, 1, 0, 0, 0, 4850, 707, 1, 0, 0, 0, 4851, 4852, 5, 8, 0, 0, 4852, 4853, 5, 405, 0, 0, 4853, 4864, 5, 431, 0, 0, 4854, 4855, 5, 259, 0, 0, 4855, 4856, 5, 405, 0, 0, 4856, 4864, 5, 431, 0, 0, 4857, 4858, 5, 294, 0, 0, 4858, 4859, 5, 405, 0, 0, 4859, 4864, 5, 426, 0, 0, 4860, 4861, 5, 240, 0, 0, 4861, 4862, 5, 405, 0, 0, 4862, 4864, 3, 700, 350, 0, 4863, 4851, 1, 0, 0, 0, 4863, 4854, 1, 0, 0, 0, 4863, 4857, 1, 0, 0, 0, 4863, 4860, 1, 0, 0, 0, 4864, 709, 1, 0, 0, 0, 4865, 4870, 3, 708, 354, 0, 4866, 4867, 5, 397, 0, 0, 4867, 4869, 3, 708, 354, 0, 4868, 4866, 1, 0, 0, 0, 4869, 4872, 1, 0, 0, 0, 4870, 4868, 1, 0, 0, 0, 4870, 4871, 1, 0, 0, 0, 4871, 711, 1, 0, 0, 0, 4872, 4870, 1, 0, 0, 0, 629, 715, 722, 725, 731, 737, 744, 754, 757, 761, 776, 783, 789, 794, 799, 802, 826, 833, 836, 841, 846, 852, 856, 869, 873, 877, 882, 889, 893, 898, 905, 909, 914, 962, 969, 974, 997, 1001, 1005, 1008, 1012, 1017, 1023, 1027, 1033, 1035, 1046, 1050, 1057, 1065, 1068, 1073, 1077, 1080, 1090, 1098, 1102, 1105, 1109, 1113, 1116, 1121, 1127, 1132, 1137, 1141, 1152, 1154, 1158, 1168, 1172, 1178, 1181, 1188, 1193, 1201, 1206, 1210, 1218, 1223, 1229, 1235, 1238, 1241, 1244, 1253, 1261, 1266, 1274, 1281, 1284, 1287, 1289, 1300, 1302, 1305, 1308, 1311, 1314, 1317, 1319, 1331, 1337, 1345, 1347, 1357, 1390, 1395, 1399, 1403, 1410, 1417, 1423, 1427, 1430, 1437, 1460, 1465, 1469, 1477, 1486, 1493, 1499, 1506, 1509, 1515, 1522, 1530, 1539, 1548, 1555, 1575, 1582, 1584, 1591, 1601, 1609, 1613, 1617, 1630, 1639, 1655, 1659, 1664, 1669, 1672, 1675, 1678, 1681, 1684, 1689, 1698, 1702, 1709, 1712, 1715, 1718, 1730, 1736, 1762, 1770, 1774, 1777, 1780, 1783, 1786, 1789, 1792, 1795, 1804, 1814, 1817, 1837, 1843, 1849, 1852, 1854, 1861, 1868, 1881, 1886, 1895, 1903, 1911, 1924, 1937, 1953, 1957, 1972, 1978, 1981, 1984, 1987, 1990, 1994, 2009, 2012, 2023, 2037, 2071, 2079, 2084, 2092, 2097, 2102, 2109, 2117, 2125, 2133, 2139, 2146, 2156, 2160, 2168, 2177, 2180, 2184, 2191, 2197, 2201, 2207, 2211, 2223, 2232, 2243, 2247, 2254, 2266, 2276, 2279, 2286, 2292, 2296, 2299, 2302, 2308, 2312, 2316, 2321, 2325, 2329, 2333, 2341, 2345, 2349, 2353, 2357, 2365, 2369, 2373, 2381, 2386, 2391, 2395, 2399, 2406, 2415, 2423, 2435, 2453, 2456, 2462, 2488, 2491, 2497, 2505, 2513, 2526, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2554, 2557, 2560, 2563, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2589, 2592, 2595, 2598, 2600, 2606, 2610, 2613, 2616, 2619, 2622, 2625, 2632, 2636, 2639, 2642, 2645, 2648, 2651, 2658, 2661, 2669, 2673, 2680, 2682, 2685, 2690, 2693, 2697, 2702, 2708, 2716, 2724, 2734, 2737, 2741, 2745, 2750, 2757, 2761, 2763, 2767, 2774, 2779, 2792, 2800, 2819, 2829, 2842, 2852, 2856, 2860, 2866, 2873, 2880, 2889, 2896, 2916, 2919, 2933, 2948, 2952, 2972, 2984, 2990, 2993, 2996, 3002, 3008, 3015, 3023, 3029, 3033, 3038, 3041, 3045, 3052, 3057, 3062, 3065, 3067, 3075, 3083, 3087, 3091, 3095, 3112, 3129, 3136, 3145, 3150, 3153, 3156, 3160, 3175, 3189, 3192, 3203, 3207, 3210, 3213, 3217, 3222, 3225, 3228, 3231, 3234, 3237, 3243, 3246, 3249, 3252, 3255, 3258, 3261, 3264, 3267, 3270, 3274, 3276, 3282, 3287, 3290, 3293, 3296, 3299, 3305, 3308, 3311, 3314, 3317, 3320, 3323, 3326, 3329, 3332, 3336, 3338, 3340, 3345, 3350, 3354, 3358, 3363, 3368, 3377, 3387, 3395, 3407, 3410, 3416, 3423, 3430, 3437, 3444, 3454, 3456, 3460, 3464, 3471, 3476, 3480, 3484, 3487, 3490, 3501, 3505, 3507, 3510, 3523, 3526, 3529, 3541, 3544, 3551, 3560, 3565, 3567, 3569, 3586, 3589, 3597, 3600, 3604, 3607, 3610, 3613, 3616, 3628, 3636, 3643, 3646, 3653, 3656, 3661, 3668, 3676, 3682, 3687, 3691, 3696, 3700, 3707, 3721, 3724, 3731, 3739, 3749, 3752, 3761, 3770, 3773, 3779, 3782, 3787, 3790, 3803, 3809, 3811, 3821, 3827, 3830, 3840, 3845, 3849, 3865, 3871, 3873, 3880, 3887, 3901, 3907, 3910, 3913, 3916, 3925, 3932, 3938, 3947, 3951, 3959, 3969, 3979, 3984, 3988, 3994, 3999, 4004, 4011, 4015, 4018, 4023, 4026, 4030, 4035, 4046, 4048, 4057, 4080, 4090, 4093, 4100, 4103, 4113, 4120, 4123, 4125, 4136, 4146, 4148, 4157, 4162, 4171, 4184, 4188, 4200, 4204, 4213, 4232, 4250, 4262, 4277, 4281, 4297, 4304, 4318, 4323, 4333, 4335, 4343, 4351, 4359, 4367, 4375, 4383, 4394, 4398, 4406, 4422, 4426, 4431, 4444, 4453, 4455, 4464, 4469, 4475, 4482, 4487, 4496, 4504, 4512, 4520, 4530, 4535, 4594, 4600, 4609, 4611, 4627, 4635, 4639, 4641, 4647, 4652, 4669, 4695, 4700, 4702, 4730, 4747, 4752, 4761, 4772, 4779, 4785, 4790, 4819, 4827, 4836, 4839, 4849, 4863, 4870] \ No newline at end of file +[4, 1, 438, 4612, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 1, 0, 5, 0, 634, 8, 0, 10, 0, 12, 0, 637, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 643, 8, 1, 1, 1, 3, 1, 646, 8, 1, 1, 2, 1, 2, 5, 2, 650, 8, 2, 10, 2, 12, 2, 653, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 658, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 665, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 675, 8, 3, 1, 3, 3, 3, 678, 8, 3, 1, 3, 1, 3, 3, 3, 682, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 697, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 704, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 710, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 715, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 720, 8, 5, 1, 5, 3, 5, 723, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 745, 8, 5, 10, 5, 12, 5, 748, 9, 5, 1, 5, 1, 5, 5, 5, 752, 8, 5, 10, 5, 12, 5, 755, 9, 5, 3, 5, 757, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 762, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 767, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 776, 8, 6, 1, 7, 1, 7, 3, 7, 780, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 793, 8, 8, 1, 9, 1, 9, 3, 9, 797, 8, 9, 1, 9, 1, 9, 3, 9, 801, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 806, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 813, 8, 10, 1, 10, 1, 10, 3, 10, 817, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 822, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 829, 8, 12, 1, 12, 1, 12, 3, 12, 833, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 838, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 880, 8, 14, 11, 14, 12, 14, 881, 1, 14, 1, 14, 1, 14, 4, 14, 887, 8, 14, 11, 14, 12, 14, 888, 1, 14, 1, 14, 1, 14, 3, 14, 894, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 917, 8, 21, 1, 21, 1, 21, 3, 21, 921, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 926, 8, 21, 1, 21, 3, 21, 929, 8, 21, 1, 21, 1, 21, 3, 21, 933, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 938, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 944, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 949, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 956, 8, 21, 3, 21, 958, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 3, 23, 966, 8, 23, 1, 23, 1, 23, 3, 23, 970, 8, 23, 1, 24, 1, 24, 3, 24, 974, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 982, 8, 24, 1, 24, 3, 24, 985, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 990, 8, 25, 1, 25, 1, 25, 3, 25, 994, 8, 25, 1, 25, 3, 25, 997, 8, 25, 1, 26, 1, 26, 1, 26, 3, 26, 1002, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1010, 8, 26, 5, 26, 1012, 8, 26, 10, 26, 12, 26, 1015, 9, 26, 3, 26, 1017, 8, 26, 1, 27, 1, 27, 3, 27, 1021, 8, 27, 1, 28, 1, 28, 3, 28, 1025, 8, 28, 1, 28, 3, 28, 1028, 8, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1033, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1039, 8, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1044, 8, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1049, 8, 29, 1, 29, 1, 29, 3, 29, 1053, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1064, 8, 30, 3, 30, 1066, 8, 30, 1, 30, 1, 30, 3, 30, 1070, 8, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1080, 8, 33, 1, 33, 3, 33, 1083, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1089, 8, 33, 1, 33, 3, 33, 1092, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1098, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1103, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1110, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1115, 8, 33, 1, 33, 3, 33, 1118, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1126, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1131, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1136, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1141, 8, 33, 1, 33, 3, 33, 1144, 8, 33, 1, 33, 3, 33, 1147, 8, 33, 1, 33, 3, 33, 1150, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1158, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1165, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1170, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1177, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1183, 8, 33, 1, 33, 3, 33, 1186, 8, 33, 1, 33, 3, 33, 1189, 8, 33, 3, 33, 1191, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1201, 8, 33, 3, 33, 1203, 8, 33, 1, 33, 1, 33, 3, 33, 1207, 8, 33, 1, 33, 1, 33, 3, 33, 1211, 8, 33, 1, 33, 1, 33, 3, 33, 1215, 8, 33, 1, 33, 3, 33, 1218, 8, 33, 1, 33, 3, 33, 1221, 8, 33, 3, 33, 1223, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1232, 8, 33, 1, 33, 1, 33, 3, 33, 1236, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1244, 8, 33, 3, 33, 1246, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1256, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1262, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1268, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1277, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1284, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1290, 8, 39, 1, 39, 1, 39, 3, 39, 1294, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 3, 40, 1301, 8, 40, 1, 40, 1, 40, 1, 40, 5, 40, 1306, 8, 40, 10, 40, 12, 40, 1309, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1316, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1322, 8, 41, 1, 41, 3, 41, 1325, 8, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1330, 8, 41, 10, 41, 12, 41, 1333, 9, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1355, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1360, 8, 46, 1, 46, 1, 46, 3, 46, 1364, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 3, 48, 1372, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1381, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1388, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1394, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1401, 8, 51, 1, 51, 3, 51, 1404, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1410, 8, 51, 1, 52, 1, 52, 1, 52, 5, 52, 1415, 8, 52, 10, 52, 12, 52, 1418, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1425, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 5, 55, 1432, 8, 55, 10, 55, 12, 55, 1435, 9, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1443, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1450, 8, 57, 1, 58, 1, 58, 3, 58, 1454, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1461, 8, 58, 3, 58, 1463, 8, 58, 1, 59, 1, 59, 1, 60, 1, 60, 3, 60, 1469, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1482, 8, 60, 10, 60, 12, 60, 1485, 9, 60, 3, 60, 1487, 8, 60, 1, 61, 1, 61, 3, 61, 1491, 8, 61, 1, 61, 1, 61, 3, 61, 1495, 8, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1508, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1517, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1533, 8, 65, 1, 65, 1, 65, 3, 65, 1537, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1542, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1547, 8, 65, 1, 65, 3, 65, 1550, 8, 65, 1, 65, 3, 65, 1553, 8, 65, 1, 65, 3, 65, 1556, 8, 65, 1, 65, 3, 65, 1559, 8, 65, 1, 65, 3, 65, 1562, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 1567, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1576, 8, 67, 1, 67, 1, 67, 3, 67, 1580, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1587, 8, 67, 1, 67, 3, 67, 1590, 8, 67, 1, 67, 3, 67, 1593, 8, 67, 1, 67, 3, 67, 1596, 8, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1608, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1614, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 3, 74, 1639, 8, 74, 1, 74, 1, 74, 3, 74, 1643, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1651, 8, 75, 1, 75, 1, 75, 3, 75, 1655, 8, 75, 1, 75, 3, 75, 1658, 8, 75, 1, 75, 3, 75, 1661, 8, 75, 1, 75, 3, 75, 1664, 8, 75, 1, 75, 3, 75, 1667, 8, 75, 1, 75, 3, 75, 1670, 8, 75, 1, 75, 3, 75, 1673, 8, 75, 1, 75, 3, 75, 1676, 8, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1687, 8, 76, 1, 76, 3, 76, 1690, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 1710, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1716, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1722, 8, 80, 1, 80, 3, 80, 1725, 8, 80, 3, 80, 1727, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 3, 82, 1734, 8, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 1741, 8, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1754, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1759, 8, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 5, 87, 1766, 8, 87, 10, 87, 12, 87, 1769, 9, 87, 1, 88, 1, 88, 1, 88, 5, 88, 1774, 8, 88, 10, 88, 12, 88, 1777, 9, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1792, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1805, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 1821, 8, 91, 1, 92, 1, 92, 3, 92, 1825, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1834, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1840, 8, 94, 1, 94, 3, 94, 1843, 8, 94, 1, 94, 3, 94, 1846, 8, 94, 1, 94, 3, 94, 1849, 8, 94, 1, 94, 3, 94, 1852, 8, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1865, 8, 97, 10, 97, 12, 97, 1868, 9, 97, 3, 97, 1870, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1879, 8, 99, 10, 99, 12, 99, 1882, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1895, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1929, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1937, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1942, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1950, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1955, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1960, 8, 106, 1, 107, 1, 107, 1, 107, 5, 107, 1965, 8, 107, 10, 107, 12, 107, 1968, 9, 107, 1, 108, 1, 108, 1, 108, 5, 108, 1973, 8, 108, 10, 108, 12, 108, 1976, 9, 108, 1, 109, 1, 109, 1, 109, 5, 109, 1981, 8, 109, 10, 109, 12, 109, 1984, 9, 109, 1, 110, 1, 110, 1, 110, 5, 110, 1989, 8, 110, 10, 110, 12, 110, 1992, 9, 110, 1, 111, 1, 111, 1, 111, 3, 111, 1997, 8, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 2004, 8, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2014, 8, 115, 5, 115, 2016, 8, 115, 10, 115, 12, 115, 2019, 9, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2024, 8, 116, 10, 116, 12, 116, 2027, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 2035, 8, 118, 1, 118, 3, 118, 2038, 8, 118, 1, 119, 1, 119, 3, 119, 2042, 8, 119, 1, 120, 1, 120, 1, 120, 3, 120, 2047, 8, 120, 1, 121, 1, 121, 3, 121, 2051, 8, 121, 1, 121, 1, 121, 3, 121, 2055, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 2061, 8, 122, 1, 123, 1, 123, 3, 123, 2065, 8, 123, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 3, 126, 2077, 8, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 2086, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 2097, 8, 127, 1, 128, 1, 128, 3, 128, 2101, 8, 128, 1, 129, 1, 129, 1, 129, 5, 129, 2106, 8, 129, 10, 129, 12, 129, 2109, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 5, 131, 2118, 8, 131, 10, 131, 12, 131, 2121, 9, 131, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 3, 134, 2130, 8, 134, 1, 134, 3, 134, 2133, 8, 134, 1, 135, 1, 135, 1, 135, 5, 135, 2138, 8, 135, 10, 135, 12, 135, 2141, 9, 135, 1, 136, 1, 136, 1, 136, 3, 136, 2146, 8, 136, 1, 137, 1, 137, 3, 137, 2150, 8, 137, 1, 137, 3, 137, 2153, 8, 137, 1, 137, 3, 137, 2156, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2162, 8, 138, 1, 139, 1, 139, 3, 139, 2166, 8, 139, 1, 140, 1, 140, 3, 140, 2170, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 2175, 8, 141, 1, 141, 1, 141, 3, 141, 2179, 8, 141, 1, 142, 1, 142, 3, 142, 2183, 8, 142, 1, 143, 1, 143, 3, 143, 2187, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2195, 8, 143, 1, 144, 1, 144, 3, 144, 2199, 8, 144, 1, 144, 1, 144, 3, 144, 2203, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2211, 8, 145, 1, 145, 1, 145, 3, 145, 2215, 8, 145, 1, 146, 1, 146, 1, 146, 3, 146, 2220, 8, 146, 1, 147, 1, 147, 3, 147, 2224, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2231, 8, 148, 1, 149, 1, 149, 1, 149, 5, 149, 2236, 8, 149, 10, 149, 12, 149, 2239, 9, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2246, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2258, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2276, 8, 151, 1, 151, 3, 151, 2279, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2285, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 3, 156, 2311, 8, 156, 1, 157, 3, 157, 2314, 8, 157, 1, 157, 1, 157, 1, 158, 1, 158, 3, 158, 2320, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 2326, 8, 159, 10, 159, 12, 159, 2329, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2336, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2347, 8, 161, 10, 161, 12, 161, 2350, 9, 161, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2356, 8, 162, 1, 162, 3, 162, 2359, 8, 162, 1, 162, 3, 162, 2362, 8, 162, 1, 162, 3, 162, 2365, 8, 162, 1, 162, 3, 162, 2368, 8, 162, 1, 162, 3, 162, 2371, 8, 162, 1, 162, 3, 162, 2374, 8, 162, 1, 162, 3, 162, 2377, 8, 162, 1, 162, 3, 162, 2380, 8, 162, 1, 162, 3, 162, 2383, 8, 162, 1, 162, 3, 162, 2386, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2391, 8, 162, 1, 162, 3, 162, 2394, 8, 162, 1, 162, 3, 162, 2397, 8, 162, 1, 162, 3, 162, 2400, 8, 162, 1, 162, 3, 162, 2403, 8, 162, 1, 162, 3, 162, 2406, 8, 162, 1, 162, 3, 162, 2409, 8, 162, 1, 162, 3, 162, 2412, 8, 162, 1, 162, 3, 162, 2415, 8, 162, 1, 162, 3, 162, 2418, 8, 162, 1, 162, 3, 162, 2421, 8, 162, 3, 162, 2423, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2429, 8, 163, 1, 164, 1, 164, 3, 164, 2433, 8, 164, 1, 164, 3, 164, 2436, 8, 164, 1, 164, 3, 164, 2439, 8, 164, 1, 164, 3, 164, 2442, 8, 164, 1, 164, 3, 164, 2445, 8, 164, 1, 164, 3, 164, 2448, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2455, 8, 164, 1, 165, 1, 165, 3, 165, 2459, 8, 165, 1, 165, 3, 165, 2462, 8, 165, 1, 165, 3, 165, 2465, 8, 165, 1, 165, 3, 165, 2468, 8, 165, 1, 165, 3, 165, 2471, 8, 165, 1, 165, 3, 165, 2474, 8, 165, 1, 166, 1, 166, 1, 166, 4, 166, 2479, 8, 166, 11, 166, 12, 166, 2480, 1, 167, 3, 167, 2484, 8, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2492, 8, 168, 1, 168, 1, 168, 3, 168, 2496, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2503, 8, 168, 3, 168, 2505, 8, 168, 1, 169, 3, 169, 2508, 8, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2513, 8, 169, 1, 169, 3, 169, 2516, 8, 169, 1, 169, 1, 169, 3, 169, 2520, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2525, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2531, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 3, 172, 2539, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 2545, 8, 173, 10, 173, 12, 173, 2548, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 2555, 8, 174, 10, 174, 12, 174, 2558, 9, 174, 3, 174, 2560, 8, 174, 1, 174, 1, 174, 3, 174, 2564, 8, 174, 1, 174, 1, 174, 3, 174, 2568, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2573, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2580, 8, 175, 1, 176, 1, 176, 5, 176, 2584, 8, 176, 10, 176, 12, 176, 2587, 9, 176, 1, 176, 3, 176, 2590, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2597, 8, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2602, 8, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2615, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2623, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2633, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2643, 8, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2656, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2666, 8, 181, 1, 181, 1, 181, 3, 181, 2670, 8, 181, 4, 181, 2672, 8, 181, 11, 181, 12, 181, 2673, 1, 181, 1, 181, 5, 181, 2678, 8, 181, 10, 181, 12, 181, 2681, 9, 181, 1, 181, 1, 181, 5, 181, 2685, 8, 181, 10, 181, 12, 181, 2688, 9, 181, 1, 181, 1, 181, 5, 181, 2692, 8, 181, 10, 181, 12, 181, 2695, 9, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2703, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2710, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2730, 8, 181, 1, 181, 3, 181, 2733, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2747, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2762, 8, 182, 1, 182, 1, 182, 3, 182, 2766, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 2784, 8, 182, 10, 182, 12, 182, 2787, 9, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2798, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2804, 8, 182, 1, 182, 3, 182, 2807, 8, 182, 1, 182, 1, 182, 3, 182, 2811, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2817, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2823, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2830, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2838, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2844, 8, 182, 1, 182, 1, 182, 3, 182, 2848, 8, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2853, 8, 182, 1, 182, 3, 182, 2856, 8, 182, 1, 182, 1, 182, 3, 182, 2860, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2867, 8, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2872, 8, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2877, 8, 182, 1, 182, 3, 182, 2880, 8, 182, 3, 182, 2882, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2890, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2898, 8, 183, 1, 183, 1, 183, 3, 183, 2902, 8, 183, 4, 183, 2904, 8, 183, 11, 183, 12, 183, 2905, 1, 183, 1, 183, 3, 183, 2910, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 2927, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2944, 8, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 3, 187, 2951, 8, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 2958, 8, 187, 10, 187, 12, 187, 2961, 9, 187, 1, 187, 1, 187, 3, 187, 2965, 8, 187, 1, 187, 3, 187, 2968, 8, 187, 1, 187, 3, 187, 2971, 8, 187, 1, 188, 1, 188, 3, 188, 2975, 8, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2990, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 3004, 8, 190, 1, 190, 3, 190, 3007, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 3018, 8, 191, 1, 192, 1, 192, 3, 192, 3022, 8, 192, 1, 192, 3, 192, 3025, 8, 192, 1, 192, 3, 192, 3028, 8, 192, 1, 192, 3, 192, 3031, 8, 192, 1, 192, 1, 192, 3, 192, 3035, 8, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3040, 8, 192, 1, 192, 3, 192, 3043, 8, 192, 1, 192, 3, 192, 3046, 8, 192, 1, 192, 3, 192, 3049, 8, 192, 1, 192, 3, 192, 3052, 8, 192, 1, 192, 3, 192, 3055, 8, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 3061, 8, 192, 1, 192, 3, 192, 3064, 8, 192, 1, 192, 3, 192, 3067, 8, 192, 1, 192, 3, 192, 3070, 8, 192, 1, 192, 3, 192, 3073, 8, 192, 1, 192, 3, 192, 3076, 8, 192, 1, 192, 3, 192, 3079, 8, 192, 1, 192, 3, 192, 3082, 8, 192, 1, 192, 3, 192, 3085, 8, 192, 1, 192, 3, 192, 3088, 8, 192, 1, 192, 1, 192, 3, 192, 3092, 8, 192, 3, 192, 3094, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 3099, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3104, 8, 193, 1, 193, 1, 193, 3, 193, 3108, 8, 193, 1, 193, 1, 193, 3, 193, 3112, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3117, 8, 193, 1, 194, 1, 194, 1, 194, 3, 194, 3122, 8, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 5, 195, 3129, 8, 195, 10, 195, 12, 195, 3132, 9, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 5, 196, 3139, 8, 196, 10, 196, 12, 196, 3142, 9, 196, 1, 197, 1, 197, 1, 197, 5, 197, 3147, 8, 197, 10, 197, 12, 197, 3150, 9, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 4, 199, 3159, 8, 199, 11, 199, 12, 199, 3160, 1, 199, 3, 199, 3164, 8, 199, 1, 200, 1, 200, 5, 200, 3168, 8, 200, 10, 200, 12, 200, 3171, 9, 200, 1, 200, 1, 200, 5, 200, 3175, 8, 200, 10, 200, 12, 200, 3178, 9, 200, 1, 200, 1, 200, 5, 200, 3182, 8, 200, 10, 200, 12, 200, 3185, 9, 200, 1, 200, 1, 200, 5, 200, 3189, 8, 200, 10, 200, 12, 200, 3192, 9, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 3198, 8, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 3208, 8, 201, 3, 201, 3210, 8, 201, 1, 201, 1, 201, 3, 201, 3214, 8, 201, 5, 201, 3216, 8, 201, 10, 201, 12, 201, 3219, 9, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 3225, 8, 202, 1, 202, 5, 202, 3228, 8, 202, 10, 202, 12, 202, 3231, 9, 202, 1, 203, 3, 203, 3234, 8, 203, 1, 203, 1, 203, 3, 203, 3238, 8, 203, 1, 203, 3, 203, 3241, 8, 203, 1, 203, 3, 203, 3244, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 3255, 8, 204, 1, 204, 1, 204, 3, 204, 3259, 8, 204, 3, 204, 3261, 8, 204, 1, 204, 3, 204, 3264, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3275, 8, 205, 10, 205, 12, 205, 3278, 9, 205, 3, 205, 3280, 8, 205, 1, 205, 3, 205, 3283, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3293, 8, 205, 10, 205, 12, 205, 3296, 9, 205, 3, 205, 3298, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 3305, 8, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 5, 205, 3312, 8, 205, 10, 205, 12, 205, 3315, 9, 205, 1, 205, 1, 205, 3, 205, 3319, 8, 205, 3, 205, 3321, 8, 205, 3, 205, 3323, 8, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 5, 207, 3338, 8, 207, 10, 207, 12, 207, 3341, 9, 207, 3, 207, 3343, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 3351, 8, 207, 1, 207, 3, 207, 3354, 8, 207, 1, 208, 1, 208, 3, 208, 3358, 8, 208, 1, 208, 3, 208, 3361, 8, 208, 1, 208, 3, 208, 3364, 8, 208, 1, 208, 3, 208, 3367, 8, 208, 1, 208, 3, 208, 3370, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3382, 8, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 3, 212, 3390, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3397, 8, 213, 1, 213, 3, 213, 3400, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 3407, 8, 214, 1, 214, 3, 214, 3410, 8, 214, 1, 215, 1, 215, 1, 215, 3, 215, 3415, 8, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 3, 216, 3422, 8, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3430, 8, 217, 1, 217, 1, 217, 1, 218, 1, 218, 3, 218, 3436, 8, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3441, 8, 218, 1, 218, 1, 218, 3, 218, 3445, 8, 218, 1, 219, 1, 219, 1, 219, 3, 219, 3450, 8, 219, 1, 220, 1, 220, 3, 220, 3454, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3461, 8, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 5, 221, 3473, 8, 221, 10, 221, 12, 221, 3476, 9, 221, 3, 221, 3478, 8, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3485, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 3491, 8, 223, 10, 223, 12, 223, 3494, 9, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 3501, 8, 223, 10, 223, 12, 223, 3504, 9, 223, 3, 223, 3506, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 3, 225, 3515, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 3522, 8, 225, 10, 225, 12, 225, 3525, 9, 225, 3, 225, 3527, 8, 225, 1, 225, 1, 225, 1, 226, 1, 226, 3, 226, 3533, 8, 226, 1, 226, 3, 226, 3536, 8, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3541, 8, 226, 1, 226, 3, 226, 3544, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3558, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3564, 8, 227, 3, 227, 3566, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 5, 228, 3575, 8, 228, 10, 228, 12, 228, 3578, 9, 228, 1, 229, 1, 229, 1, 229, 3, 229, 3583, 8, 229, 1, 229, 3, 229, 3586, 8, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 5, 229, 3594, 8, 229, 10, 229, 12, 229, 3597, 9, 229, 1, 229, 1, 229, 3, 229, 3601, 8, 229, 1, 229, 1, 229, 3, 229, 3605, 8, 229, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3622, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3628, 8, 232, 3, 232, 3630, 8, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 3, 233, 3638, 8, 233, 1, 234, 1, 234, 1, 234, 5, 234, 3643, 8, 234, 10, 234, 12, 234, 3646, 9, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3657, 8, 235, 10, 235, 12, 235, 3660, 9, 235, 1, 236, 1, 236, 1, 236, 3, 236, 3665, 8, 236, 1, 236, 3, 236, 3668, 8, 236, 1, 236, 3, 236, 3671, 8, 236, 1, 236, 3, 236, 3674, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3683, 8, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3690, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 3696, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3705, 8, 239, 1, 240, 1, 240, 3, 240, 3709, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 3715, 8, 240, 10, 240, 12, 240, 3718, 9, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3727, 8, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 5, 241, 3735, 8, 241, 10, 241, 12, 241, 3738, 9, 241, 1, 241, 1, 241, 3, 241, 3742, 8, 241, 1, 242, 1, 242, 3, 242, 3746, 8, 242, 1, 242, 1, 242, 5, 242, 3750, 8, 242, 10, 242, 12, 242, 3753, 9, 242, 1, 242, 1, 242, 3, 242, 3757, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3762, 8, 243, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 3, 245, 3769, 8, 245, 1, 245, 3, 245, 3772, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3777, 8, 245, 1, 245, 3, 245, 3780, 8, 245, 5, 245, 3782, 8, 245, 10, 245, 12, 245, 3785, 9, 245, 1, 246, 1, 246, 3, 246, 3789, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 3797, 8, 248, 1, 248, 1, 248, 1, 248, 3, 248, 3802, 8, 248, 4, 248, 3804, 8, 248, 11, 248, 12, 248, 3805, 3, 248, 3808, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3815, 8, 249, 10, 249, 12, 249, 3818, 9, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3838, 8, 253, 10, 253, 12, 253, 3841, 9, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3848, 8, 253, 10, 253, 12, 253, 3851, 9, 253, 3, 253, 3853, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3860, 8, 254, 1, 254, 3, 254, 3863, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3873, 8, 254, 1, 254, 1, 254, 1, 254, 5, 254, 3878, 8, 254, 10, 254, 12, 254, 3881, 9, 254, 3, 254, 3883, 8, 254, 3, 254, 3885, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3897, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3908, 8, 254, 3, 254, 3910, 8, 254, 1, 255, 1, 255, 1, 256, 1, 256, 3, 256, 3916, 8, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3921, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3930, 8, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 4, 259, 3941, 8, 259, 11, 259, 12, 259, 3942, 1, 259, 1, 259, 3, 259, 3947, 8, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 4, 260, 3957, 8, 260, 11, 260, 12, 260, 3958, 1, 260, 1, 260, 3, 260, 3963, 8, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 3972, 8, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 3991, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 5, 264, 4007, 8, 264, 10, 264, 12, 264, 4010, 9, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 4021, 8, 264, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 4036, 8, 266, 1, 266, 1, 266, 3, 266, 4040, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 4054, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 4059, 8, 268, 10, 268, 12, 268, 4062, 9, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 4075, 8, 269, 1, 270, 5, 270, 4078, 8, 270, 10, 270, 12, 270, 4081, 9, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 4090, 8, 270, 10, 270, 12, 270, 4093, 9, 270, 1, 271, 1, 271, 1, 271, 5, 271, 4098, 8, 271, 10, 271, 12, 271, 4101, 9, 271, 1, 272, 1, 272, 1, 272, 5, 272, 4106, 8, 272, 10, 272, 12, 272, 4109, 9, 272, 1, 273, 1, 273, 1, 273, 5, 273, 4114, 8, 273, 10, 273, 12, 273, 4117, 9, 273, 1, 274, 1, 274, 1, 274, 5, 274, 4122, 8, 274, 10, 274, 12, 274, 4125, 9, 274, 1, 275, 1, 275, 1, 275, 5, 275, 4130, 8, 275, 10, 275, 12, 275, 4133, 9, 275, 1, 276, 1, 276, 1, 276, 5, 276, 4138, 8, 276, 10, 276, 12, 276, 4141, 9, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 279, 1, 279, 3, 279, 4151, 8, 279, 1, 279, 1, 279, 3, 279, 4155, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 4165, 8, 280, 3, 280, 4167, 8, 280, 1, 281, 1, 281, 1, 281, 3, 281, 4172, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 4186, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4199, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 5, 284, 4208, 8, 284, 10, 284, 12, 284, 4211, 9, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 4219, 8, 285, 1, 286, 5, 286, 4222, 8, 286, 10, 286, 12, 286, 4225, 9, 286, 1, 286, 1, 286, 1, 286, 3, 286, 4230, 8, 286, 1, 287, 1, 287, 1, 287, 5, 287, 4235, 8, 287, 10, 287, 12, 287, 4238, 9, 287, 1, 288, 1, 288, 3, 288, 4242, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 5, 289, 4249, 8, 289, 10, 289, 12, 289, 4252, 9, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 3, 290, 4259, 8, 290, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 4265, 8, 291, 10, 291, 12, 291, 4268, 9, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 3, 292, 4275, 8, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 294, 1, 294, 1, 295, 1, 295, 3, 295, 4285, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 4290, 8, 296, 1, 297, 1, 297, 1, 298, 1, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 4349, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4355, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4364, 8, 301, 3, 301, 4366, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 4380, 8, 301, 10, 301, 12, 301, 4383, 9, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4390, 8, 301, 1, 301, 1, 301, 3, 301, 4394, 8, 301, 3, 301, 4396, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4402, 8, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4407, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4424, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4450, 8, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4455, 8, 301, 3, 301, 4457, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4485, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4502, 8, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4507, 8, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 4516, 8, 301, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4527, 8, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4532, 8, 304, 10, 304, 12, 304, 4535, 9, 304, 1, 305, 1, 305, 1, 305, 3, 305, 4540, 8, 305, 1, 306, 1, 306, 1, 306, 3, 306, 4545, 8, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 5, 310, 4556, 8, 310, 10, 310, 12, 310, 4559, 9, 310, 1, 311, 1, 311, 1, 311, 5, 311, 4564, 8, 311, 10, 311, 12, 311, 4567, 9, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 4573, 8, 311, 10, 311, 12, 311, 4576, 9, 311, 3, 311, 4578, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 4588, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 4602, 8, 314, 1, 315, 1, 315, 1, 315, 5, 315, 4607, 8, 315, 10, 315, 12, 315, 4610, 9, 315, 1, 315, 1, 753, 0, 316, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 0, 64, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 190, 190, 361, 361, 2, 0, 114, 114, 307, 307, 2, 0, 58, 58, 101, 101, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 4, 0, 73, 74, 148, 149, 208, 209, 392, 393, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 214, 214, 272, 272, 1, 0, 80, 82, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 3, 0, 184, 184, 270, 270, 286, 286, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 5213, 0, 635, 1, 0, 0, 0, 2, 642, 1, 0, 0, 0, 4, 647, 1, 0, 0, 0, 6, 681, 1, 0, 0, 0, 8, 683, 1, 0, 0, 0, 10, 756, 1, 0, 0, 0, 12, 758, 1, 0, 0, 0, 14, 777, 1, 0, 0, 0, 16, 786, 1, 0, 0, 0, 18, 794, 1, 0, 0, 0, 20, 807, 1, 0, 0, 0, 22, 818, 1, 0, 0, 0, 24, 823, 1, 0, 0, 0, 26, 834, 1, 0, 0, 0, 28, 893, 1, 0, 0, 0, 30, 895, 1, 0, 0, 0, 32, 898, 1, 0, 0, 0, 34, 902, 1, 0, 0, 0, 36, 904, 1, 0, 0, 0, 38, 908, 1, 0, 0, 0, 40, 911, 1, 0, 0, 0, 42, 957, 1, 0, 0, 0, 44, 959, 1, 0, 0, 0, 46, 962, 1, 0, 0, 0, 48, 971, 1, 0, 0, 0, 50, 986, 1, 0, 0, 0, 52, 998, 1, 0, 0, 0, 54, 1018, 1, 0, 0, 0, 56, 1022, 1, 0, 0, 0, 58, 1029, 1, 0, 0, 0, 60, 1054, 1, 0, 0, 0, 62, 1071, 1, 0, 0, 0, 64, 1073, 1, 0, 0, 0, 66, 1075, 1, 0, 0, 0, 68, 1255, 1, 0, 0, 0, 70, 1257, 1, 0, 0, 0, 72, 1263, 1, 0, 0, 0, 74, 1269, 1, 0, 0, 0, 76, 1273, 1, 0, 0, 0, 78, 1285, 1, 0, 0, 0, 80, 1298, 1, 0, 0, 0, 82, 1317, 1, 0, 0, 0, 84, 1337, 1, 0, 0, 0, 86, 1342, 1, 0, 0, 0, 88, 1345, 1, 0, 0, 0, 90, 1349, 1, 0, 0, 0, 92, 1356, 1, 0, 0, 0, 94, 1365, 1, 0, 0, 0, 96, 1371, 1, 0, 0, 0, 98, 1373, 1, 0, 0, 0, 100, 1387, 1, 0, 0, 0, 102, 1409, 1, 0, 0, 0, 104, 1411, 1, 0, 0, 0, 106, 1419, 1, 0, 0, 0, 108, 1426, 1, 0, 0, 0, 110, 1428, 1, 0, 0, 0, 112, 1442, 1, 0, 0, 0, 114, 1449, 1, 0, 0, 0, 116, 1451, 1, 0, 0, 0, 118, 1464, 1, 0, 0, 0, 120, 1466, 1, 0, 0, 0, 122, 1488, 1, 0, 0, 0, 124, 1498, 1, 0, 0, 0, 126, 1501, 1, 0, 0, 0, 128, 1512, 1, 0, 0, 0, 130, 1520, 1, 0, 0, 0, 132, 1563, 1, 0, 0, 0, 134, 1572, 1, 0, 0, 0, 136, 1600, 1, 0, 0, 0, 138, 1613, 1, 0, 0, 0, 140, 1615, 1, 0, 0, 0, 142, 1621, 1, 0, 0, 0, 144, 1624, 1, 0, 0, 0, 146, 1630, 1, 0, 0, 0, 148, 1636, 1, 0, 0, 0, 150, 1646, 1, 0, 0, 0, 152, 1680, 1, 0, 0, 0, 154, 1693, 1, 0, 0, 0, 156, 1698, 1, 0, 0, 0, 158, 1709, 1, 0, 0, 0, 160, 1726, 1, 0, 0, 0, 162, 1728, 1, 0, 0, 0, 164, 1733, 1, 0, 0, 0, 166, 1740, 1, 0, 0, 0, 168, 1742, 1, 0, 0, 0, 170, 1745, 1, 0, 0, 0, 172, 1748, 1, 0, 0, 0, 174, 1762, 1, 0, 0, 0, 176, 1770, 1, 0, 0, 0, 178, 1791, 1, 0, 0, 0, 180, 1793, 1, 0, 0, 0, 182, 1810, 1, 0, 0, 0, 184, 1824, 1, 0, 0, 0, 186, 1826, 1, 0, 0, 0, 188, 1835, 1, 0, 0, 0, 190, 1853, 1, 0, 0, 0, 192, 1856, 1, 0, 0, 0, 194, 1869, 1, 0, 0, 0, 196, 1871, 1, 0, 0, 0, 198, 1875, 1, 0, 0, 0, 200, 1883, 1, 0, 0, 0, 202, 1887, 1, 0, 0, 0, 204, 1896, 1, 0, 0, 0, 206, 1902, 1, 0, 0, 0, 208, 1908, 1, 0, 0, 0, 210, 1913, 1, 0, 0, 0, 212, 1959, 1, 0, 0, 0, 214, 1961, 1, 0, 0, 0, 216, 1969, 1, 0, 0, 0, 218, 1977, 1, 0, 0, 0, 220, 1985, 1, 0, 0, 0, 222, 1996, 1, 0, 0, 0, 224, 1998, 1, 0, 0, 0, 226, 2003, 1, 0, 0, 0, 228, 2005, 1, 0, 0, 0, 230, 2007, 1, 0, 0, 0, 232, 2020, 1, 0, 0, 0, 234, 2028, 1, 0, 0, 0, 236, 2037, 1, 0, 0, 0, 238, 2041, 1, 0, 0, 0, 240, 2046, 1, 0, 0, 0, 242, 2050, 1, 0, 0, 0, 244, 2056, 1, 0, 0, 0, 246, 2064, 1, 0, 0, 0, 248, 2066, 1, 0, 0, 0, 250, 2069, 1, 0, 0, 0, 252, 2076, 1, 0, 0, 0, 254, 2087, 1, 0, 0, 0, 256, 2100, 1, 0, 0, 0, 258, 2102, 1, 0, 0, 0, 260, 2110, 1, 0, 0, 0, 262, 2114, 1, 0, 0, 0, 264, 2122, 1, 0, 0, 0, 266, 2124, 1, 0, 0, 0, 268, 2127, 1, 0, 0, 0, 270, 2134, 1, 0, 0, 0, 272, 2142, 1, 0, 0, 0, 274, 2149, 1, 0, 0, 0, 276, 2157, 1, 0, 0, 0, 278, 2165, 1, 0, 0, 0, 280, 2169, 1, 0, 0, 0, 282, 2171, 1, 0, 0, 0, 284, 2182, 1, 0, 0, 0, 286, 2186, 1, 0, 0, 0, 288, 2198, 1, 0, 0, 0, 290, 2214, 1, 0, 0, 0, 292, 2219, 1, 0, 0, 0, 294, 2221, 1, 0, 0, 0, 296, 2225, 1, 0, 0, 0, 298, 2232, 1, 0, 0, 0, 300, 2245, 1, 0, 0, 0, 302, 2284, 1, 0, 0, 0, 304, 2286, 1, 0, 0, 0, 306, 2291, 1, 0, 0, 0, 308, 2296, 1, 0, 0, 0, 310, 2303, 1, 0, 0, 0, 312, 2308, 1, 0, 0, 0, 314, 2313, 1, 0, 0, 0, 316, 2319, 1, 0, 0, 0, 318, 2321, 1, 0, 0, 0, 320, 2330, 1, 0, 0, 0, 322, 2342, 1, 0, 0, 0, 324, 2422, 1, 0, 0, 0, 326, 2428, 1, 0, 0, 0, 328, 2454, 1, 0, 0, 0, 330, 2456, 1, 0, 0, 0, 332, 2478, 1, 0, 0, 0, 334, 2483, 1, 0, 0, 0, 336, 2487, 1, 0, 0, 0, 338, 2519, 1, 0, 0, 0, 340, 2521, 1, 0, 0, 0, 342, 2532, 1, 0, 0, 0, 344, 2538, 1, 0, 0, 0, 346, 2540, 1, 0, 0, 0, 348, 2572, 1, 0, 0, 0, 350, 2579, 1, 0, 0, 0, 352, 2585, 1, 0, 0, 0, 354, 2591, 1, 0, 0, 0, 356, 2606, 1, 0, 0, 0, 358, 2616, 1, 0, 0, 0, 360, 2624, 1, 0, 0, 0, 362, 2746, 1, 0, 0, 0, 364, 2881, 1, 0, 0, 0, 366, 2909, 1, 0, 0, 0, 368, 2926, 1, 0, 0, 0, 370, 2943, 1, 0, 0, 0, 372, 2945, 1, 0, 0, 0, 374, 2948, 1, 0, 0, 0, 376, 2974, 1, 0, 0, 0, 378, 2979, 1, 0, 0, 0, 380, 3006, 1, 0, 0, 0, 382, 3017, 1, 0, 0, 0, 384, 3019, 1, 0, 0, 0, 386, 3095, 1, 0, 0, 0, 388, 3118, 1, 0, 0, 0, 390, 3130, 1, 0, 0, 0, 392, 3135, 1, 0, 0, 0, 394, 3143, 1, 0, 0, 0, 396, 3151, 1, 0, 0, 0, 398, 3163, 1, 0, 0, 0, 400, 3197, 1, 0, 0, 0, 402, 3199, 1, 0, 0, 0, 404, 3224, 1, 0, 0, 0, 406, 3233, 1, 0, 0, 0, 408, 3263, 1, 0, 0, 0, 410, 3322, 1, 0, 0, 0, 412, 3324, 1, 0, 0, 0, 414, 3353, 1, 0, 0, 0, 416, 3355, 1, 0, 0, 0, 418, 3371, 1, 0, 0, 0, 420, 3383, 1, 0, 0, 0, 422, 3385, 1, 0, 0, 0, 424, 3389, 1, 0, 0, 0, 426, 3399, 1, 0, 0, 0, 428, 3409, 1, 0, 0, 0, 430, 3414, 1, 0, 0, 0, 432, 3421, 1, 0, 0, 0, 434, 3425, 1, 0, 0, 0, 436, 3444, 1, 0, 0, 0, 438, 3449, 1, 0, 0, 0, 440, 3451, 1, 0, 0, 0, 442, 3455, 1, 0, 0, 0, 444, 3481, 1, 0, 0, 0, 446, 3486, 1, 0, 0, 0, 448, 3507, 1, 0, 0, 0, 450, 3512, 1, 0, 0, 0, 452, 3543, 1, 0, 0, 0, 454, 3545, 1, 0, 0, 0, 456, 3571, 1, 0, 0, 0, 458, 3604, 1, 0, 0, 0, 460, 3606, 1, 0, 0, 0, 462, 3608, 1, 0, 0, 0, 464, 3610, 1, 0, 0, 0, 466, 3637, 1, 0, 0, 0, 468, 3639, 1, 0, 0, 0, 470, 3647, 1, 0, 0, 0, 472, 3673, 1, 0, 0, 0, 474, 3675, 1, 0, 0, 0, 476, 3695, 1, 0, 0, 0, 478, 3697, 1, 0, 0, 0, 480, 3708, 1, 0, 0, 0, 482, 3721, 1, 0, 0, 0, 484, 3756, 1, 0, 0, 0, 486, 3758, 1, 0, 0, 0, 488, 3763, 1, 0, 0, 0, 490, 3766, 1, 0, 0, 0, 492, 3788, 1, 0, 0, 0, 494, 3790, 1, 0, 0, 0, 496, 3796, 1, 0, 0, 0, 498, 3809, 1, 0, 0, 0, 500, 3819, 1, 0, 0, 0, 502, 3823, 1, 0, 0, 0, 504, 3827, 1, 0, 0, 0, 506, 3831, 1, 0, 0, 0, 508, 3909, 1, 0, 0, 0, 510, 3911, 1, 0, 0, 0, 512, 3915, 1, 0, 0, 0, 514, 3920, 1, 0, 0, 0, 516, 3922, 1, 0, 0, 0, 518, 3933, 1, 0, 0, 0, 520, 3950, 1, 0, 0, 0, 522, 3966, 1, 0, 0, 0, 524, 3975, 1, 0, 0, 0, 526, 3990, 1, 0, 0, 0, 528, 4020, 1, 0, 0, 0, 530, 4022, 1, 0, 0, 0, 532, 4039, 1, 0, 0, 0, 534, 4053, 1, 0, 0, 0, 536, 4055, 1, 0, 0, 0, 538, 4074, 1, 0, 0, 0, 540, 4079, 1, 0, 0, 0, 542, 4094, 1, 0, 0, 0, 544, 4102, 1, 0, 0, 0, 546, 4110, 1, 0, 0, 0, 548, 4118, 1, 0, 0, 0, 550, 4126, 1, 0, 0, 0, 552, 4134, 1, 0, 0, 0, 554, 4142, 1, 0, 0, 0, 556, 4146, 1, 0, 0, 0, 558, 4154, 1, 0, 0, 0, 560, 4166, 1, 0, 0, 0, 562, 4185, 1, 0, 0, 0, 564, 4187, 1, 0, 0, 0, 566, 4198, 1, 0, 0, 0, 568, 4200, 1, 0, 0, 0, 570, 4218, 1, 0, 0, 0, 572, 4223, 1, 0, 0, 0, 574, 4231, 1, 0, 0, 0, 576, 4239, 1, 0, 0, 0, 578, 4243, 1, 0, 0, 0, 580, 4255, 1, 0, 0, 0, 582, 4260, 1, 0, 0, 0, 584, 4271, 1, 0, 0, 0, 586, 4278, 1, 0, 0, 0, 588, 4280, 1, 0, 0, 0, 590, 4284, 1, 0, 0, 0, 592, 4286, 1, 0, 0, 0, 594, 4291, 1, 0, 0, 0, 596, 4293, 1, 0, 0, 0, 598, 4295, 1, 0, 0, 0, 600, 4348, 1, 0, 0, 0, 602, 4515, 1, 0, 0, 0, 604, 4517, 1, 0, 0, 0, 606, 4526, 1, 0, 0, 0, 608, 4528, 1, 0, 0, 0, 610, 4539, 1, 0, 0, 0, 612, 4541, 1, 0, 0, 0, 614, 4546, 1, 0, 0, 0, 616, 4548, 1, 0, 0, 0, 618, 4550, 1, 0, 0, 0, 620, 4552, 1, 0, 0, 0, 622, 4577, 1, 0, 0, 0, 624, 4579, 1, 0, 0, 0, 626, 4587, 1, 0, 0, 0, 628, 4601, 1, 0, 0, 0, 630, 4603, 1, 0, 0, 0, 632, 634, 3, 2, 1, 0, 633, 632, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 5, 0, 0, 1, 639, 1, 1, 0, 0, 0, 640, 643, 3, 4, 2, 0, 641, 643, 3, 10, 5, 0, 642, 640, 1, 0, 0, 0, 642, 641, 1, 0, 0, 0, 643, 645, 1, 0, 0, 0, 644, 646, 5, 398, 0, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 3, 1, 0, 0, 0, 647, 657, 5, 119, 0, 0, 648, 650, 3, 6, 3, 0, 649, 648, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 654, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 654, 658, 3, 10, 5, 0, 655, 656, 5, 284, 0, 0, 656, 658, 3, 314, 157, 0, 657, 651, 1, 0, 0, 0, 657, 655, 1, 0, 0, 0, 658, 5, 1, 0, 0, 0, 659, 682, 5, 122, 0, 0, 660, 682, 5, 138, 0, 0, 661, 682, 5, 88, 0, 0, 662, 664, 5, 37, 0, 0, 663, 665, 7, 0, 0, 0, 664, 663, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 682, 1, 0, 0, 0, 666, 682, 5, 192, 0, 0, 667, 682, 5, 21, 0, 0, 668, 682, 5, 10, 0, 0, 669, 682, 5, 275, 0, 0, 670, 682, 5, 191, 0, 0, 671, 682, 5, 19, 0, 0, 672, 674, 5, 377, 0, 0, 673, 675, 5, 225, 0, 0, 674, 673, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 677, 1, 0, 0, 0, 676, 678, 3, 8, 4, 0, 677, 676, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 682, 1, 0, 0, 0, 679, 682, 5, 79, 0, 0, 680, 682, 5, 78, 0, 0, 681, 659, 1, 0, 0, 0, 681, 660, 1, 0, 0, 0, 681, 661, 1, 0, 0, 0, 681, 662, 1, 0, 0, 0, 681, 666, 1, 0, 0, 0, 681, 667, 1, 0, 0, 0, 681, 668, 1, 0, 0, 0, 681, 669, 1, 0, 0, 0, 681, 670, 1, 0, 0, 0, 681, 671, 1, 0, 0, 0, 681, 672, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 681, 680, 1, 0, 0, 0, 682, 7, 1, 0, 0, 0, 683, 684, 7, 1, 0, 0, 684, 9, 1, 0, 0, 0, 685, 757, 3, 314, 157, 0, 686, 757, 3, 12, 6, 0, 687, 757, 3, 16, 8, 0, 688, 757, 3, 18, 9, 0, 689, 757, 3, 20, 10, 0, 690, 757, 3, 24, 12, 0, 691, 692, 5, 277, 0, 0, 692, 693, 5, 320, 0, 0, 693, 696, 3, 420, 210, 0, 694, 695, 5, 387, 0, 0, 695, 697, 3, 196, 98, 0, 696, 694, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 757, 1, 0, 0, 0, 698, 757, 3, 28, 14, 0, 699, 700, 5, 86, 0, 0, 700, 701, 5, 139, 0, 0, 701, 703, 3, 426, 213, 0, 702, 704, 3, 444, 222, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 757, 1, 0, 0, 0, 705, 706, 5, 365, 0, 0, 706, 707, 3, 426, 213, 0, 707, 709, 3, 346, 173, 0, 708, 710, 3, 444, 222, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 757, 1, 0, 0, 0, 711, 757, 3, 348, 174, 0, 712, 714, 5, 203, 0, 0, 713, 715, 5, 436, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 166, 0, 0, 717, 722, 3, 426, 213, 0, 718, 720, 5, 17, 0, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 723, 3, 590, 295, 0, 722, 719, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 5, 370, 0, 0, 725, 726, 3, 404, 202, 0, 726, 727, 5, 224, 0, 0, 727, 728, 3, 536, 268, 0, 728, 729, 3, 352, 176, 0, 729, 757, 1, 0, 0, 0, 730, 731, 5, 249, 0, 0, 731, 732, 3, 590, 295, 0, 732, 733, 5, 139, 0, 0, 733, 734, 3, 314, 157, 0, 734, 757, 1, 0, 0, 0, 735, 736, 5, 115, 0, 0, 736, 737, 3, 590, 295, 0, 737, 738, 5, 370, 0, 0, 738, 739, 3, 262, 131, 0, 739, 757, 1, 0, 0, 0, 740, 741, 5, 304, 0, 0, 741, 746, 3, 600, 300, 0, 742, 743, 7, 2, 0, 0, 743, 745, 3, 600, 300, 0, 744, 742, 1, 0, 0, 0, 745, 748, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 749, 1, 0, 0, 0, 748, 746, 1, 0, 0, 0, 749, 753, 5, 405, 0, 0, 750, 752, 9, 0, 0, 0, 751, 750, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 754, 757, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 685, 1, 0, 0, 0, 756, 686, 1, 0, 0, 0, 756, 687, 1, 0, 0, 0, 756, 688, 1, 0, 0, 0, 756, 689, 1, 0, 0, 0, 756, 690, 1, 0, 0, 0, 756, 691, 1, 0, 0, 0, 756, 698, 1, 0, 0, 0, 756, 699, 1, 0, 0, 0, 756, 705, 1, 0, 0, 0, 756, 711, 1, 0, 0, 0, 756, 712, 1, 0, 0, 0, 756, 730, 1, 0, 0, 0, 756, 735, 1, 0, 0, 0, 756, 740, 1, 0, 0, 0, 757, 11, 1, 0, 0, 0, 758, 759, 5, 187, 0, 0, 759, 761, 5, 66, 0, 0, 760, 762, 5, 188, 0, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 5, 158, 0, 0, 764, 766, 5, 426, 0, 0, 765, 767, 5, 235, 0, 0, 766, 765, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 5, 166, 0, 0, 769, 770, 5, 329, 0, 0, 770, 775, 3, 576, 288, 0, 771, 772, 5, 160, 0, 0, 772, 773, 5, 426, 0, 0, 773, 774, 5, 301, 0, 0, 774, 776, 5, 426, 0, 0, 775, 771, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 13, 1, 0, 0, 0, 777, 779, 5, 134, 0, 0, 778, 780, 5, 204, 0, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 5, 279, 0, 0, 782, 783, 5, 399, 0, 0, 783, 784, 5, 426, 0, 0, 784, 785, 5, 400, 0, 0, 785, 15, 1, 0, 0, 0, 786, 787, 5, 120, 0, 0, 787, 788, 5, 329, 0, 0, 788, 789, 3, 576, 288, 0, 789, 790, 5, 341, 0, 0, 790, 792, 5, 426, 0, 0, 791, 793, 3, 14, 7, 0, 792, 791, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 17, 1, 0, 0, 0, 794, 800, 5, 153, 0, 0, 795, 797, 5, 123, 0, 0, 796, 795, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 5, 329, 0, 0, 799, 801, 3, 576, 288, 0, 800, 796, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 5, 139, 0, 0, 803, 805, 5, 426, 0, 0, 804, 806, 3, 372, 186, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 19, 1, 0, 0, 0, 807, 808, 5, 277, 0, 0, 808, 809, 5, 103, 0, 0, 809, 812, 3, 22, 11, 0, 810, 811, 5, 278, 0, 0, 811, 813, 3, 22, 11, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 816, 1, 0, 0, 0, 814, 815, 5, 387, 0, 0, 815, 817, 3, 196, 98, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 21, 1, 0, 0, 0, 818, 821, 3, 420, 210, 0, 819, 820, 5, 395, 0, 0, 820, 822, 3, 26, 13, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 23, 1, 0, 0, 0, 823, 824, 5, 277, 0, 0, 824, 825, 5, 187, 0, 0, 825, 828, 3, 22, 11, 0, 826, 827, 5, 166, 0, 0, 827, 829, 3, 420, 210, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 831, 5, 387, 0, 0, 831, 833, 3, 196, 98, 0, 832, 830, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 25, 1, 0, 0, 0, 834, 837, 5, 426, 0, 0, 835, 836, 5, 395, 0, 0, 836, 838, 5, 426, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 27, 1, 0, 0, 0, 839, 894, 3, 42, 21, 0, 840, 894, 3, 44, 22, 0, 841, 894, 3, 46, 23, 0, 842, 894, 3, 384, 192, 0, 843, 894, 3, 50, 25, 0, 844, 894, 3, 48, 24, 0, 845, 894, 3, 360, 180, 0, 846, 894, 3, 58, 29, 0, 847, 894, 3, 66, 33, 0, 848, 894, 3, 116, 58, 0, 849, 894, 3, 134, 67, 0, 850, 894, 3, 150, 75, 0, 851, 894, 3, 152, 76, 0, 852, 894, 3, 156, 78, 0, 853, 894, 3, 154, 77, 0, 854, 894, 3, 148, 74, 0, 855, 894, 3, 120, 60, 0, 856, 894, 3, 126, 63, 0, 857, 894, 3, 122, 61, 0, 858, 894, 3, 124, 62, 0, 859, 894, 3, 128, 64, 0, 860, 894, 3, 130, 65, 0, 861, 894, 3, 132, 66, 0, 862, 894, 3, 60, 30, 0, 863, 894, 3, 70, 35, 0, 864, 894, 3, 72, 36, 0, 865, 894, 3, 74, 37, 0, 866, 894, 3, 76, 38, 0, 867, 894, 3, 78, 39, 0, 868, 894, 3, 92, 46, 0, 869, 894, 3, 84, 42, 0, 870, 894, 3, 94, 47, 0, 871, 894, 3, 86, 43, 0, 872, 894, 3, 80, 40, 0, 873, 894, 3, 82, 41, 0, 874, 894, 3, 90, 45, 0, 875, 894, 3, 88, 44, 0, 876, 877, 5, 1, 0, 0, 877, 879, 7, 3, 0, 0, 878, 880, 5, 431, 0, 0, 879, 878, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 894, 1, 0, 0, 0, 883, 884, 5, 176, 0, 0, 884, 886, 5, 258, 0, 0, 885, 887, 5, 426, 0, 0, 886, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 894, 1, 0, 0, 0, 890, 894, 3, 602, 301, 0, 891, 894, 3, 386, 193, 0, 892, 894, 3, 388, 194, 0, 893, 839, 1, 0, 0, 0, 893, 840, 1, 0, 0, 0, 893, 841, 1, 0, 0, 0, 893, 842, 1, 0, 0, 0, 893, 843, 1, 0, 0, 0, 893, 844, 1, 0, 0, 0, 893, 845, 1, 0, 0, 0, 893, 846, 1, 0, 0, 0, 893, 847, 1, 0, 0, 0, 893, 848, 1, 0, 0, 0, 893, 849, 1, 0, 0, 0, 893, 850, 1, 0, 0, 0, 893, 851, 1, 0, 0, 0, 893, 852, 1, 0, 0, 0, 893, 853, 1, 0, 0, 0, 893, 854, 1, 0, 0, 0, 893, 855, 1, 0, 0, 0, 893, 856, 1, 0, 0, 0, 893, 857, 1, 0, 0, 0, 893, 858, 1, 0, 0, 0, 893, 859, 1, 0, 0, 0, 893, 860, 1, 0, 0, 0, 893, 861, 1, 0, 0, 0, 893, 862, 1, 0, 0, 0, 893, 863, 1, 0, 0, 0, 893, 864, 1, 0, 0, 0, 893, 865, 1, 0, 0, 0, 893, 866, 1, 0, 0, 0, 893, 867, 1, 0, 0, 0, 893, 868, 1, 0, 0, 0, 893, 869, 1, 0, 0, 0, 893, 870, 1, 0, 0, 0, 893, 871, 1, 0, 0, 0, 893, 872, 1, 0, 0, 0, 893, 873, 1, 0, 0, 0, 893, 874, 1, 0, 0, 0, 893, 875, 1, 0, 0, 0, 893, 876, 1, 0, 0, 0, 893, 883, 1, 0, 0, 0, 893, 890, 1, 0, 0, 0, 893, 891, 1, 0, 0, 0, 893, 892, 1, 0, 0, 0, 894, 29, 1, 0, 0, 0, 895, 896, 5, 151, 0, 0, 896, 897, 5, 117, 0, 0, 897, 31, 1, 0, 0, 0, 898, 899, 5, 151, 0, 0, 899, 900, 5, 216, 0, 0, 900, 901, 5, 117, 0, 0, 901, 33, 1, 0, 0, 0, 902, 903, 7, 4, 0, 0, 903, 35, 1, 0, 0, 0, 904, 905, 5, 321, 0, 0, 905, 906, 5, 17, 0, 0, 906, 907, 5, 92, 0, 0, 907, 37, 1, 0, 0, 0, 908, 909, 3, 614, 307, 0, 909, 910, 5, 284, 0, 0, 910, 39, 1, 0, 0, 0, 911, 912, 3, 616, 308, 0, 912, 913, 5, 284, 0, 0, 913, 41, 1, 0, 0, 0, 914, 916, 5, 58, 0, 0, 915, 917, 5, 273, 0, 0, 916, 915, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 3, 64, 32, 0, 919, 921, 3, 32, 16, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 925, 3, 422, 211, 0, 923, 924, 5, 47, 0, 0, 924, 926, 5, 426, 0, 0, 925, 923, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 928, 1, 0, 0, 0, 927, 929, 3, 372, 186, 0, 928, 927, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 931, 5, 196, 0, 0, 931, 933, 5, 426, 0, 0, 932, 930, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 937, 1, 0, 0, 0, 934, 935, 5, 387, 0, 0, 935, 936, 5, 76, 0, 0, 936, 938, 3, 196, 98, 0, 937, 934, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 958, 1, 0, 0, 0, 939, 940, 5, 58, 0, 0, 940, 941, 5, 273, 0, 0, 941, 943, 3, 64, 32, 0, 942, 944, 3, 32, 16, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 948, 3, 422, 211, 0, 946, 947, 5, 47, 0, 0, 947, 949, 5, 426, 0, 0, 948, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 5, 370, 0, 0, 951, 955, 3, 420, 210, 0, 952, 953, 5, 387, 0, 0, 953, 954, 5, 76, 0, 0, 954, 956, 3, 196, 98, 0, 955, 952, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 958, 1, 0, 0, 0, 957, 914, 1, 0, 0, 0, 957, 939, 1, 0, 0, 0, 958, 43, 1, 0, 0, 0, 959, 960, 5, 368, 0, 0, 960, 961, 3, 420, 210, 0, 961, 45, 1, 0, 0, 0, 962, 963, 5, 101, 0, 0, 963, 965, 3, 64, 32, 0, 964, 966, 3, 30, 15, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 420, 210, 0, 968, 970, 3, 34, 17, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 47, 1, 0, 0, 0, 971, 973, 5, 351, 0, 0, 972, 974, 5, 329, 0, 0, 973, 972, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 981, 3, 576, 288, 0, 976, 977, 5, 46, 0, 0, 977, 978, 5, 399, 0, 0, 978, 979, 3, 220, 110, 0, 979, 980, 5, 400, 0, 0, 980, 982, 1, 0, 0, 0, 981, 976, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 984, 1, 0, 0, 0, 983, 985, 5, 135, 0, 0, 984, 983, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 49, 1, 0, 0, 0, 986, 987, 5, 101, 0, 0, 987, 989, 5, 329, 0, 0, 988, 990, 3, 30, 15, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 993, 3, 426, 213, 0, 992, 994, 5, 255, 0, 0, 993, 992, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 996, 1, 0, 0, 0, 995, 997, 3, 14, 7, 0, 996, 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 51, 1, 0, 0, 0, 998, 1001, 3, 590, 295, 0, 999, 1000, 5, 395, 0, 0, 1000, 1002, 3, 590, 295, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1016, 1, 0, 0, 0, 1003, 1013, 3, 590, 295, 0, 1004, 1009, 5, 395, 0, 0, 1005, 1010, 5, 104, 0, 0, 1006, 1010, 5, 175, 0, 0, 1007, 1010, 5, 375, 0, 0, 1008, 1010, 3, 590, 295, 0, 1009, 1005, 1, 0, 0, 0, 1009, 1006, 1, 0, 0, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1008, 1, 0, 0, 0, 1010, 1012, 1, 0, 0, 0, 1011, 1004, 1, 0, 0, 0, 1012, 1015, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1017, 1, 0, 0, 0, 1015, 1013, 1, 0, 0, 0, 1016, 1003, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 53, 1, 0, 0, 0, 1018, 1020, 3, 52, 26, 0, 1019, 1021, 3, 578, 289, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 55, 1, 0, 0, 0, 1022, 1024, 3, 424, 212, 0, 1023, 1025, 3, 578, 289, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 1, 0, 0, 0, 1026, 1028, 3, 230, 115, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 57, 1, 0, 0, 0, 1029, 1052, 7, 5, 0, 0, 1030, 1032, 3, 64, 32, 0, 1031, 1033, 5, 122, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 3, 420, 210, 0, 1035, 1053, 1, 0, 0, 0, 1036, 1038, 5, 69, 0, 0, 1037, 1039, 5, 122, 0, 0, 1038, 1037, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1053, 3, 420, 210, 0, 1041, 1043, 5, 141, 0, 0, 1042, 1044, 5, 122, 0, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1053, 3, 512, 256, 0, 1046, 1049, 5, 138, 0, 0, 1047, 1049, 5, 122, 0, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1047, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1053, 3, 56, 28, 0, 1051, 1053, 3, 56, 28, 0, 1052, 1030, 1, 0, 0, 0, 1052, 1036, 1, 0, 0, 0, 1052, 1041, 1, 0, 0, 0, 1052, 1048, 1, 0, 0, 0, 1052, 1051, 1, 0, 0, 0, 1053, 59, 1, 0, 0, 0, 1054, 1055, 5, 10, 0, 0, 1055, 1056, 5, 329, 0, 0, 1056, 1069, 3, 576, 288, 0, 1057, 1058, 5, 52, 0, 0, 1058, 1065, 5, 319, 0, 0, 1059, 1066, 5, 215, 0, 0, 1060, 1061, 5, 134, 0, 0, 1061, 1063, 5, 46, 0, 0, 1062, 1064, 3, 220, 110, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1066, 1, 0, 0, 0, 1065, 1059, 1, 0, 0, 0, 1065, 1060, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1070, 1, 0, 0, 0, 1067, 1068, 5, 33, 0, 0, 1068, 1070, 5, 204, 0, 0, 1069, 1057, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 61, 1, 0, 0, 0, 1071, 1072, 7, 6, 0, 0, 1072, 63, 1, 0, 0, 0, 1073, 1074, 7, 7, 0, 0, 1074, 65, 1, 0, 0, 0, 1075, 1245, 5, 308, 0, 0, 1076, 1079, 7, 8, 0, 0, 1077, 1078, 5, 184, 0, 0, 1078, 1080, 3, 166, 83, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1246, 1, 0, 0, 0, 1081, 1083, 5, 122, 0, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1088, 5, 330, 0, 0, 1085, 1086, 3, 62, 31, 0, 1086, 1087, 3, 420, 210, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1085, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1091, 1, 0, 0, 0, 1090, 1092, 3, 68, 34, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1246, 1, 0, 0, 0, 1093, 1097, 5, 379, 0, 0, 1094, 1095, 3, 62, 31, 0, 1095, 1096, 3, 420, 210, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1094, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1102, 1, 0, 0, 0, 1099, 1100, 5, 184, 0, 0, 1100, 1103, 3, 166, 83, 0, 1101, 1103, 3, 166, 83, 0, 1102, 1099, 1, 0, 0, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1246, 1, 0, 0, 0, 1104, 1105, 5, 202, 0, 0, 1105, 1109, 5, 379, 0, 0, 1106, 1107, 3, 62, 31, 0, 1107, 1108, 3, 420, 210, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1106, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1114, 1, 0, 0, 0, 1111, 1112, 5, 184, 0, 0, 1112, 1115, 3, 166, 83, 0, 1113, 1115, 3, 166, 83, 0, 1114, 1111, 1, 0, 0, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1246, 1, 0, 0, 0, 1116, 1118, 5, 315, 0, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 5, 46, 0, 0, 1120, 1121, 3, 62, 31, 0, 1121, 1125, 3, 424, 212, 0, 1122, 1123, 3, 62, 31, 0, 1123, 1124, 3, 420, 210, 0, 1124, 1126, 1, 0, 0, 0, 1125, 1122, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1130, 1, 0, 0, 0, 1127, 1128, 5, 184, 0, 0, 1128, 1131, 3, 166, 83, 0, 1129, 1131, 3, 166, 83, 0, 1130, 1127, 1, 0, 0, 0, 1130, 1129, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1246, 1, 0, 0, 0, 1132, 1135, 5, 142, 0, 0, 1133, 1134, 5, 184, 0, 0, 1134, 1136, 3, 512, 256, 0, 1135, 1133, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1246, 1, 0, 0, 0, 1137, 1138, 5, 239, 0, 0, 1138, 1140, 3, 424, 212, 0, 1139, 1141, 3, 578, 289, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1143, 1, 0, 0, 0, 1142, 1144, 3, 444, 222, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 1, 0, 0, 0, 1145, 1147, 3, 498, 249, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 1, 0, 0, 0, 1148, 1150, 3, 340, 170, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1246, 1, 0, 0, 0, 1151, 1157, 5, 58, 0, 0, 1152, 1153, 3, 64, 32, 0, 1153, 1154, 3, 420, 210, 0, 1154, 1158, 1, 0, 0, 0, 1155, 1156, 5, 329, 0, 0, 1156, 1158, 3, 426, 213, 0, 1157, 1152, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1246, 1, 0, 0, 0, 1159, 1160, 5, 329, 0, 0, 1160, 1164, 5, 122, 0, 0, 1161, 1162, 3, 62, 31, 0, 1162, 1163, 3, 420, 210, 0, 1163, 1165, 1, 0, 0, 0, 1164, 1161, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 5, 184, 0, 0, 1167, 1169, 3, 166, 83, 0, 1168, 1170, 3, 578, 289, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1246, 1, 0, 0, 0, 1171, 1172, 5, 332, 0, 0, 1172, 1176, 3, 426, 213, 0, 1173, 1174, 5, 399, 0, 0, 1174, 1175, 5, 426, 0, 0, 1175, 1177, 5, 400, 0, 0, 1176, 1173, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1246, 1, 0, 0, 0, 1178, 1190, 5, 191, 0, 0, 1179, 1180, 3, 64, 32, 0, 1180, 1182, 3, 420, 210, 0, 1181, 1183, 5, 122, 0, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1191, 1, 0, 0, 0, 1184, 1186, 3, 54, 27, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1189, 5, 122, 0, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 1, 0, 0, 0, 1190, 1179, 1, 0, 0, 0, 1190, 1185, 1, 0, 0, 0, 1191, 1246, 1, 0, 0, 0, 1192, 1222, 5, 50, 0, 0, 1193, 1194, 5, 51, 0, 0, 1194, 1195, 5, 405, 0, 0, 1195, 1223, 5, 431, 0, 0, 1196, 1197, 3, 64, 32, 0, 1197, 1198, 3, 420, 210, 0, 1198, 1203, 1, 0, 0, 0, 1199, 1201, 3, 54, 27, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1203, 1, 0, 0, 0, 1202, 1196, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1206, 1, 0, 0, 0, 1204, 1205, 5, 246, 0, 0, 1205, 1207, 5, 426, 0, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1210, 1, 0, 0, 0, 1208, 1209, 5, 352, 0, 0, 1209, 1211, 5, 426, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1213, 5, 320, 0, 0, 1213, 1215, 5, 426, 0, 0, 1214, 1212, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1217, 1, 0, 0, 0, 1216, 1218, 3, 498, 249, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1220, 1, 0, 0, 0, 1219, 1221, 3, 340, 170, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1223, 1, 0, 0, 0, 1222, 1193, 1, 0, 0, 0, 1222, 1202, 1, 0, 0, 0, 1223, 1246, 1, 0, 0, 0, 1224, 1246, 5, 346, 0, 0, 1225, 1226, 5, 54, 0, 0, 1226, 1246, 5, 426, 0, 0, 1227, 1231, 5, 280, 0, 0, 1228, 1229, 5, 243, 0, 0, 1229, 1232, 3, 590, 295, 0, 1230, 1232, 5, 244, 0, 0, 1231, 1228, 1, 0, 0, 0, 1231, 1230, 1, 0, 0, 0, 1232, 1246, 1, 0, 0, 0, 1233, 1246, 5, 70, 0, 0, 1234, 1236, 5, 138, 0, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 7, 9, 0, 0, 1238, 1239, 5, 224, 0, 0, 1239, 1243, 3, 426, 213, 0, 1240, 1241, 3, 62, 31, 0, 1241, 1242, 3, 420, 210, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1240, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1076, 1, 0, 0, 0, 1245, 1082, 1, 0, 0, 0, 1245, 1093, 1, 0, 0, 0, 1245, 1104, 1, 0, 0, 0, 1245, 1117, 1, 0, 0, 0, 1245, 1132, 1, 0, 0, 0, 1245, 1137, 1, 0, 0, 0, 1245, 1151, 1, 0, 0, 0, 1245, 1159, 1, 0, 0, 0, 1245, 1171, 1, 0, 0, 0, 1245, 1178, 1, 0, 0, 0, 1245, 1192, 1, 0, 0, 0, 1245, 1224, 1, 0, 0, 0, 1245, 1225, 1, 0, 0, 0, 1245, 1227, 1, 0, 0, 0, 1245, 1233, 1, 0, 0, 0, 1245, 1235, 1, 0, 0, 0, 1246, 67, 1, 0, 0, 0, 1247, 1248, 5, 384, 0, 0, 1248, 1249, 3, 590, 295, 0, 1249, 1250, 5, 405, 0, 0, 1250, 1251, 5, 426, 0, 0, 1251, 1256, 1, 0, 0, 0, 1252, 1253, 5, 184, 0, 0, 1253, 1256, 3, 166, 83, 0, 1254, 1256, 3, 166, 83, 0, 1255, 1247, 1, 0, 0, 0, 1255, 1252, 1, 0, 0, 0, 1255, 1254, 1, 0, 0, 0, 1256, 69, 1, 0, 0, 0, 1257, 1258, 7, 10, 0, 0, 1258, 1259, 5, 329, 0, 0, 1259, 1261, 3, 576, 288, 0, 1260, 1262, 7, 11, 0, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 71, 1, 0, 0, 0, 1263, 1264, 7, 10, 0, 0, 1264, 1265, 3, 64, 32, 0, 1265, 1267, 3, 420, 210, 0, 1266, 1268, 7, 11, 0, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 73, 1, 0, 0, 0, 1269, 1270, 7, 12, 0, 0, 1270, 1271, 5, 287, 0, 0, 1271, 1272, 3, 590, 295, 0, 1272, 75, 1, 0, 0, 0, 1273, 1274, 5, 143, 0, 0, 1274, 1276, 3, 104, 52, 0, 1275, 1277, 3, 98, 49, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 5, 341, 0, 0, 1279, 1283, 3, 110, 55, 0, 1280, 1281, 5, 387, 0, 0, 1281, 1282, 5, 143, 0, 0, 1282, 1284, 5, 227, 0, 0, 1283, 1280, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 77, 1, 0, 0, 0, 1285, 1289, 5, 283, 0, 0, 1286, 1287, 5, 143, 0, 0, 1287, 1288, 5, 227, 0, 0, 1288, 1290, 5, 134, 0, 0, 1289, 1286, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 3, 104, 52, 0, 1292, 1294, 3, 98, 49, 0, 1293, 1292, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 5, 139, 0, 0, 1296, 1297, 3, 110, 55, 0, 1297, 79, 1, 0, 0, 0, 1298, 1300, 5, 143, 0, 0, 1299, 1301, 5, 287, 0, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1307, 3, 590, 295, 0, 1303, 1304, 5, 397, 0, 0, 1304, 1306, 3, 590, 295, 0, 1305, 1303, 1, 0, 0, 0, 1306, 1309, 1, 0, 0, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1310, 1, 0, 0, 0, 1309, 1307, 1, 0, 0, 0, 1310, 1311, 5, 341, 0, 0, 1311, 1315, 3, 110, 55, 0, 1312, 1313, 5, 387, 0, 0, 1313, 1314, 5, 5, 0, 0, 1314, 1316, 5, 227, 0, 0, 1315, 1312, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 81, 1, 0, 0, 0, 1317, 1321, 5, 283, 0, 0, 1318, 1319, 5, 5, 0, 0, 1319, 1320, 5, 227, 0, 0, 1320, 1322, 5, 134, 0, 0, 1321, 1318, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1325, 5, 287, 0, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1331, 3, 590, 295, 0, 1327, 1328, 5, 397, 0, 0, 1328, 1330, 3, 590, 295, 0, 1329, 1327, 1, 0, 0, 0, 1330, 1333, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1331, 1, 0, 0, 0, 1334, 1335, 5, 139, 0, 0, 1335, 1336, 3, 110, 55, 0, 1336, 83, 1, 0, 0, 0, 1337, 1338, 5, 308, 0, 0, 1338, 1339, 5, 287, 0, 0, 1339, 1340, 5, 143, 0, 0, 1340, 1341, 3, 112, 56, 0, 1341, 85, 1, 0, 0, 0, 1342, 1343, 5, 308, 0, 0, 1343, 1344, 5, 288, 0, 0, 1344, 87, 1, 0, 0, 0, 1345, 1346, 5, 308, 0, 0, 1346, 1347, 5, 62, 0, 0, 1347, 1348, 5, 288, 0, 0, 1348, 89, 1, 0, 0, 0, 1349, 1350, 5, 304, 0, 0, 1350, 1354, 5, 287, 0, 0, 1351, 1355, 5, 7, 0, 0, 1352, 1355, 5, 213, 0, 0, 1353, 1355, 3, 590, 295, 0, 1354, 1351, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1354, 1353, 1, 0, 0, 0, 1355, 91, 1, 0, 0, 0, 1356, 1357, 5, 308, 0, 0, 1357, 1359, 5, 143, 0, 0, 1358, 1360, 3, 112, 56, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1363, 1, 0, 0, 0, 1361, 1362, 5, 224, 0, 0, 1362, 1364, 3, 96, 48, 0, 1363, 1361, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 93, 1, 0, 0, 0, 1365, 1366, 5, 308, 0, 0, 1366, 1367, 5, 252, 0, 0, 1367, 1368, 3, 590, 295, 0, 1368, 95, 1, 0, 0, 0, 1369, 1372, 5, 7, 0, 0, 1370, 1372, 3, 102, 51, 0, 1371, 1369, 1, 0, 0, 0, 1371, 1370, 1, 0, 0, 0, 1372, 97, 1, 0, 0, 0, 1373, 1374, 5, 224, 0, 0, 1374, 1375, 3, 100, 50, 0, 1375, 99, 1, 0, 0, 0, 1376, 1377, 3, 64, 32, 0, 1377, 1378, 3, 420, 210, 0, 1378, 1388, 1, 0, 0, 0, 1379, 1381, 5, 329, 0, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1388, 3, 576, 288, 0, 1383, 1384, 5, 366, 0, 0, 1384, 1388, 5, 426, 0, 0, 1385, 1386, 5, 303, 0, 0, 1386, 1388, 3, 590, 295, 0, 1387, 1376, 1, 0, 0, 0, 1387, 1380, 1, 0, 0, 0, 1387, 1383, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 101, 1, 0, 0, 0, 1389, 1390, 3, 64, 32, 0, 1390, 1391, 3, 420, 210, 0, 1391, 1410, 1, 0, 0, 0, 1392, 1394, 5, 329, 0, 0, 1393, 1392, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1400, 3, 426, 213, 0, 1396, 1397, 5, 399, 0, 0, 1397, 1398, 3, 220, 110, 0, 1398, 1399, 5, 400, 0, 0, 1399, 1401, 1, 0, 0, 0, 1400, 1396, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1403, 1, 0, 0, 0, 1402, 1404, 3, 578, 289, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1410, 1, 0, 0, 0, 1405, 1406, 5, 366, 0, 0, 1406, 1410, 5, 426, 0, 0, 1407, 1408, 5, 303, 0, 0, 1408, 1410, 3, 590, 295, 0, 1409, 1389, 1, 0, 0, 0, 1409, 1393, 1, 0, 0, 0, 1409, 1405, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1410, 103, 1, 0, 0, 0, 1411, 1416, 3, 106, 53, 0, 1412, 1413, 5, 397, 0, 0, 1413, 1415, 3, 106, 53, 0, 1414, 1412, 1, 0, 0, 0, 1415, 1418, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 105, 1, 0, 0, 0, 1418, 1416, 1, 0, 0, 0, 1419, 1424, 3, 108, 54, 0, 1420, 1421, 5, 399, 0, 0, 1421, 1422, 3, 220, 110, 0, 1422, 1423, 5, 400, 0, 0, 1423, 1425, 1, 0, 0, 0, 1424, 1420, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 107, 1, 0, 0, 0, 1426, 1427, 7, 13, 0, 0, 1427, 109, 1, 0, 0, 0, 1428, 1433, 3, 112, 56, 0, 1429, 1430, 5, 397, 0, 0, 1430, 1432, 3, 112, 56, 0, 1431, 1429, 1, 0, 0, 0, 1432, 1435, 1, 0, 0, 0, 1433, 1431, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 111, 1, 0, 0, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1437, 5, 369, 0, 0, 1437, 1443, 3, 594, 297, 0, 1438, 1439, 5, 144, 0, 0, 1439, 1443, 3, 594, 297, 0, 1440, 1441, 5, 287, 0, 0, 1441, 1443, 3, 590, 295, 0, 1442, 1436, 1, 0, 0, 0, 1442, 1438, 1, 0, 0, 0, 1442, 1440, 1, 0, 0, 0, 1443, 113, 1, 0, 0, 0, 1444, 1445, 5, 369, 0, 0, 1445, 1450, 3, 594, 297, 0, 1446, 1447, 5, 287, 0, 0, 1447, 1450, 3, 590, 295, 0, 1448, 1450, 3, 590, 295, 0, 1449, 1444, 1, 0, 0, 0, 1449, 1446, 1, 0, 0, 0, 1449, 1448, 1, 0, 0, 0, 1450, 115, 1, 0, 0, 0, 1451, 1453, 5, 212, 0, 0, 1452, 1454, 5, 276, 0, 0, 1453, 1452, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1456, 5, 329, 0, 0, 1456, 1462, 3, 426, 213, 0, 1457, 1458, 7, 14, 0, 0, 1458, 1460, 5, 239, 0, 0, 1459, 1461, 3, 582, 291, 0, 1460, 1459, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1463, 1, 0, 0, 0, 1462, 1457, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 117, 1, 0, 0, 0, 1464, 1465, 7, 15, 0, 0, 1465, 119, 1, 0, 0, 0, 1466, 1468, 5, 58, 0, 0, 1467, 1469, 5, 333, 0, 0, 1468, 1467, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 5, 141, 0, 0, 1471, 1472, 3, 510, 255, 0, 1472, 1473, 5, 17, 0, 0, 1473, 1486, 5, 426, 0, 0, 1474, 1475, 5, 370, 0, 0, 1475, 1476, 3, 118, 59, 0, 1476, 1483, 5, 426, 0, 0, 1477, 1478, 5, 397, 0, 0, 1478, 1479, 3, 118, 59, 0, 1479, 1480, 5, 426, 0, 0, 1480, 1482, 1, 0, 0, 0, 1481, 1477, 1, 0, 0, 0, 1482, 1485, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1474, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 121, 1, 0, 0, 0, 1488, 1490, 5, 101, 0, 0, 1489, 1491, 5, 333, 0, 0, 1490, 1489, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1494, 5, 141, 0, 0, 1493, 1495, 3, 30, 15, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 3, 512, 256, 0, 1497, 123, 1, 0, 0, 0, 1498, 1499, 5, 271, 0, 0, 1499, 1500, 7, 16, 0, 0, 1500, 125, 1, 0, 0, 0, 1501, 1502, 5, 58, 0, 0, 1502, 1503, 5, 333, 0, 0, 1503, 1504, 5, 194, 0, 0, 1504, 1505, 5, 432, 0, 0, 1505, 1507, 5, 399, 0, 0, 1506, 1508, 3, 214, 107, 0, 1507, 1506, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 5, 400, 0, 0, 1510, 1511, 3, 536, 268, 0, 1511, 127, 1, 0, 0, 0, 1512, 1513, 5, 101, 0, 0, 1513, 1514, 5, 333, 0, 0, 1514, 1516, 5, 194, 0, 0, 1515, 1517, 3, 30, 15, 0, 1516, 1515, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 5, 432, 0, 0, 1519, 129, 1, 0, 0, 0, 1520, 1521, 5, 58, 0, 0, 1521, 1522, 5, 155, 0, 0, 1522, 1523, 3, 590, 295, 0, 1523, 1524, 5, 224, 0, 0, 1524, 1525, 5, 329, 0, 0, 1525, 1526, 3, 426, 213, 0, 1526, 1527, 3, 234, 117, 0, 1527, 1528, 5, 17, 0, 0, 1528, 1532, 5, 426, 0, 0, 1529, 1530, 5, 387, 0, 0, 1530, 1531, 5, 84, 0, 0, 1531, 1533, 5, 265, 0, 0, 1532, 1529, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1536, 1, 0, 0, 0, 1534, 1535, 5, 150, 0, 0, 1535, 1537, 3, 192, 96, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1541, 1, 0, 0, 0, 1538, 1539, 5, 154, 0, 0, 1539, 1540, 5, 329, 0, 0, 1540, 1542, 3, 426, 213, 0, 1541, 1538, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1546, 1, 0, 0, 0, 1543, 1544, 5, 238, 0, 0, 1544, 1545, 5, 32, 0, 0, 1545, 1547, 3, 234, 117, 0, 1546, 1543, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1552, 1, 0, 0, 0, 1548, 1550, 3, 184, 92, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 3, 212, 106, 0, 1552, 1549, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 1, 0, 0, 0, 1554, 1556, 3, 372, 186, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1559, 3, 190, 95, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1561, 1, 0, 0, 0, 1560, 1562, 3, 168, 84, 0, 1561, 1560, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 131, 1, 0, 0, 0, 1563, 1564, 5, 101, 0, 0, 1564, 1566, 5, 155, 0, 0, 1565, 1567, 3, 30, 15, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 3, 590, 295, 0, 1569, 1570, 5, 224, 0, 0, 1570, 1571, 3, 426, 213, 0, 1571, 133, 1, 0, 0, 0, 1572, 1575, 5, 58, 0, 0, 1573, 1574, 5, 228, 0, 0, 1574, 1576, 5, 278, 0, 0, 1575, 1573, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 5, 378, 0, 0, 1578, 1580, 3, 32, 16, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1586, 3, 432, 216, 0, 1582, 1583, 5, 399, 0, 0, 1583, 1584, 3, 270, 135, 0, 1584, 1585, 5, 400, 0, 0, 1585, 1587, 1, 0, 0, 0, 1586, 1582, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1589, 1, 0, 0, 0, 1588, 1590, 3, 168, 84, 0, 1589, 1588, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, 1593, 3, 136, 68, 0, 1592, 1591, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1595, 1, 0, 0, 0, 1594, 1596, 3, 190, 95, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 5, 17, 0, 0, 1598, 1599, 3, 334, 167, 0, 1599, 135, 1, 0, 0, 0, 1600, 1601, 5, 238, 0, 0, 1601, 1607, 5, 224, 0, 0, 1602, 1603, 5, 399, 0, 0, 1603, 1608, 3, 220, 110, 0, 1604, 1605, 5, 316, 0, 0, 1605, 1606, 5, 399, 0, 0, 1606, 1608, 3, 176, 88, 0, 1607, 1602, 1, 0, 0, 0, 1607, 1604, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1610, 5, 400, 0, 0, 1610, 137, 1, 0, 0, 0, 1611, 1614, 3, 140, 70, 0, 1612, 1614, 3, 142, 71, 0, 1613, 1611, 1, 0, 0, 0, 1613, 1612, 1, 0, 0, 0, 1614, 139, 1, 0, 0, 0, 1615, 1616, 5, 42, 0, 0, 1616, 1617, 5, 224, 0, 0, 1617, 1618, 5, 399, 0, 0, 1618, 1619, 3, 220, 110, 0, 1619, 1620, 5, 400, 0, 0, 1620, 141, 1, 0, 0, 0, 1621, 1622, 3, 144, 72, 0, 1622, 1623, 3, 146, 73, 0, 1623, 143, 1, 0, 0, 0, 1624, 1625, 5, 98, 0, 0, 1625, 1626, 5, 224, 0, 0, 1626, 1627, 5, 399, 0, 0, 1627, 1628, 3, 220, 110, 0, 1628, 1629, 5, 400, 0, 0, 1629, 145, 1, 0, 0, 0, 1630, 1631, 5, 315, 0, 0, 1631, 1632, 5, 224, 0, 0, 1632, 1633, 5, 399, 0, 0, 1633, 1634, 3, 220, 110, 0, 1634, 1635, 5, 400, 0, 0, 1635, 147, 1, 0, 0, 0, 1636, 1638, 5, 101, 0, 0, 1637, 1639, 5, 202, 0, 0, 1638, 1637, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1642, 5, 378, 0, 0, 1641, 1643, 3, 30, 15, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1645, 3, 430, 215, 0, 1645, 149, 1, 0, 0, 0, 1646, 1647, 5, 58, 0, 0, 1647, 1648, 5, 202, 0, 0, 1648, 1650, 5, 378, 0, 0, 1649, 1651, 3, 32, 16, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1654, 3, 432, 216, 0, 1653, 1655, 3, 40, 20, 0, 1654, 1653, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1657, 1, 0, 0, 0, 1656, 1658, 3, 168, 84, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1661, 3, 136, 68, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1663, 1, 0, 0, 0, 1662, 1664, 3, 138, 69, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1667, 3, 184, 92, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1669, 1, 0, 0, 0, 1668, 1670, 3, 212, 106, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1672, 1, 0, 0, 0, 1671, 1673, 3, 372, 186, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1676, 3, 190, 95, 0, 1675, 1674, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 5, 17, 0, 0, 1678, 1679, 3, 334, 167, 0, 1679, 151, 1, 0, 0, 0, 1680, 1681, 5, 58, 0, 0, 1681, 1682, 5, 293, 0, 0, 1682, 1683, 5, 258, 0, 0, 1683, 1684, 3, 590, 295, 0, 1684, 1686, 3, 160, 80, 0, 1685, 1687, 3, 162, 81, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 1, 0, 0, 0, 1688, 1690, 3, 238, 119, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 3, 164, 82, 0, 1692, 153, 1, 0, 0, 0, 1693, 1694, 5, 101, 0, 0, 1694, 1695, 5, 293, 0, 0, 1695, 1696, 5, 258, 0, 0, 1696, 1697, 3, 590, 295, 0, 1697, 155, 1, 0, 0, 0, 1698, 1699, 5, 9, 0, 0, 1699, 1700, 5, 293, 0, 0, 1700, 1701, 5, 258, 0, 0, 1701, 1702, 3, 590, 295, 0, 1702, 1703, 3, 158, 79, 0, 1703, 157, 1, 0, 0, 0, 1704, 1710, 3, 160, 80, 0, 1705, 1710, 3, 162, 81, 0, 1706, 1710, 3, 238, 119, 0, 1707, 1710, 3, 164, 82, 0, 1708, 1710, 5, 115, 0, 0, 1709, 1704, 1, 0, 0, 0, 1709, 1705, 1, 0, 0, 0, 1709, 1706, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1708, 1, 0, 0, 0, 1710, 159, 1, 0, 0, 0, 1711, 1712, 5, 59, 0, 0, 1712, 1727, 5, 426, 0, 0, 1713, 1715, 5, 111, 0, 0, 1714, 1716, 5, 431, 0, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1724, 3, 534, 267, 0, 1718, 1722, 5, 20, 0, 0, 1719, 1720, 5, 223, 0, 0, 1720, 1722, 5, 32, 0, 0, 1721, 1718, 1, 0, 0, 0, 1721, 1719, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1725, 5, 426, 0, 0, 1724, 1721, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1727, 1, 0, 0, 0, 1726, 1711, 1, 0, 0, 0, 1726, 1713, 1, 0, 0, 0, 1727, 161, 1, 0, 0, 0, 1728, 1729, 5, 116, 0, 0, 1729, 1730, 5, 17, 0, 0, 1730, 1731, 5, 426, 0, 0, 1731, 163, 1, 0, 0, 0, 1732, 1734, 5, 85, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 5, 17, 0, 0, 1736, 1737, 3, 2, 1, 0, 1737, 165, 1, 0, 0, 0, 1738, 1741, 3, 590, 295, 0, 1739, 1741, 5, 426, 0, 0, 1740, 1738, 1, 0, 0, 0, 1740, 1739, 1, 0, 0, 0, 1741, 167, 1, 0, 0, 0, 1742, 1743, 5, 47, 0, 0, 1743, 1744, 5, 426, 0, 0, 1744, 169, 1, 0, 0, 0, 1745, 1746, 5, 183, 0, 0, 1746, 1747, 5, 431, 0, 0, 1747, 171, 1, 0, 0, 0, 1748, 1749, 5, 238, 0, 0, 1749, 1758, 5, 32, 0, 0, 1750, 1753, 5, 399, 0, 0, 1751, 1754, 3, 174, 87, 0, 1752, 1754, 3, 220, 110, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1752, 1, 0, 0, 0, 1754, 1759, 1, 0, 0, 0, 1755, 1756, 5, 316, 0, 0, 1756, 1757, 5, 399, 0, 0, 1757, 1759, 3, 176, 88, 0, 1758, 1750, 1, 0, 0, 0, 1758, 1755, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 5, 400, 0, 0, 1761, 173, 1, 0, 0, 0, 1762, 1767, 3, 282, 141, 0, 1763, 1764, 5, 397, 0, 0, 1764, 1766, 3, 282, 141, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1769, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 175, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1770, 1775, 3, 178, 89, 0, 1771, 1772, 5, 397, 0, 0, 1772, 1774, 3, 178, 89, 0, 1773, 1771, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 177, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1792, 3, 222, 111, 0, 1779, 1780, 7, 17, 0, 0, 1780, 1781, 5, 399, 0, 0, 1781, 1782, 3, 222, 111, 0, 1782, 1783, 5, 400, 0, 0, 1783, 1792, 1, 0, 0, 0, 1784, 1785, 7, 18, 0, 0, 1785, 1786, 5, 399, 0, 0, 1786, 1787, 5, 431, 0, 0, 1787, 1788, 5, 397, 0, 0, 1788, 1789, 3, 222, 111, 0, 1789, 1790, 5, 400, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1778, 1, 0, 0, 0, 1791, 1779, 1, 0, 0, 0, 1791, 1784, 1, 0, 0, 0, 1792, 179, 1, 0, 0, 0, 1793, 1794, 5, 42, 0, 0, 1794, 1795, 5, 32, 0, 0, 1795, 1796, 5, 399, 0, 0, 1796, 1797, 3, 220, 110, 0, 1797, 1804, 5, 400, 0, 0, 1798, 1799, 5, 315, 0, 0, 1799, 1800, 5, 32, 0, 0, 1800, 1801, 5, 399, 0, 0, 1801, 1802, 3, 232, 116, 0, 1802, 1803, 5, 400, 0, 0, 1803, 1805, 1, 0, 0, 0, 1804, 1798, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 5, 166, 0, 0, 1807, 1808, 5, 431, 0, 0, 1808, 1809, 5, 31, 0, 0, 1809, 181, 1, 0, 0, 0, 1810, 1811, 5, 310, 0, 0, 1811, 1812, 5, 32, 0, 0, 1812, 1813, 5, 399, 0, 0, 1813, 1814, 3, 220, 110, 0, 1814, 1815, 5, 400, 0, 0, 1815, 1816, 5, 224, 0, 0, 1816, 1817, 5, 399, 0, 0, 1817, 1818, 3, 256, 128, 0, 1818, 1820, 5, 400, 0, 0, 1819, 1821, 3, 36, 18, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 183, 1, 0, 0, 0, 1822, 1825, 3, 186, 93, 0, 1823, 1825, 3, 188, 94, 0, 1824, 1822, 1, 0, 0, 0, 1824, 1823, 1, 0, 0, 0, 1825, 185, 1, 0, 0, 0, 1826, 1827, 5, 291, 0, 0, 1827, 1828, 5, 137, 0, 0, 1828, 1829, 5, 301, 0, 0, 1829, 1833, 5, 426, 0, 0, 1830, 1831, 5, 387, 0, 0, 1831, 1832, 5, 302, 0, 0, 1832, 1834, 3, 192, 96, 0, 1833, 1830, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 187, 1, 0, 0, 0, 1835, 1836, 5, 291, 0, 0, 1836, 1837, 5, 137, 0, 0, 1837, 1839, 5, 87, 0, 0, 1838, 1840, 3, 202, 101, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1842, 1, 0, 0, 0, 1841, 1843, 3, 204, 102, 0, 1842, 1841, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1845, 1, 0, 0, 0, 1844, 1846, 3, 206, 103, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1848, 1, 0, 0, 0, 1847, 1849, 3, 208, 104, 0, 1848, 1847, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1851, 1, 0, 0, 0, 1850, 1852, 3, 210, 105, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 189, 1, 0, 0, 0, 1853, 1854, 5, 332, 0, 0, 1854, 1855, 3, 192, 96, 0, 1855, 191, 1, 0, 0, 0, 1856, 1857, 5, 399, 0, 0, 1857, 1858, 3, 194, 97, 0, 1858, 1859, 5, 400, 0, 0, 1859, 193, 1, 0, 0, 0, 1860, 1870, 3, 198, 99, 0, 1861, 1866, 5, 426, 0, 0, 1862, 1863, 5, 397, 0, 0, 1863, 1865, 5, 426, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1868, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1870, 1, 0, 0, 0, 1868, 1866, 1, 0, 0, 0, 1869, 1860, 1, 0, 0, 0, 1869, 1861, 1, 0, 0, 0, 1870, 195, 1, 0, 0, 0, 1871, 1872, 5, 399, 0, 0, 1872, 1873, 3, 198, 99, 0, 1873, 1874, 5, 400, 0, 0, 1874, 197, 1, 0, 0, 0, 1875, 1880, 3, 200, 100, 0, 1876, 1877, 5, 397, 0, 0, 1877, 1879, 3, 200, 100, 0, 1878, 1876, 1, 0, 0, 0, 1879, 1882, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 199, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1884, 5, 426, 0, 0, 1884, 1885, 5, 405, 0, 0, 1885, 1886, 5, 426, 0, 0, 1886, 201, 1, 0, 0, 0, 1887, 1888, 5, 127, 0, 0, 1888, 1889, 5, 334, 0, 0, 1889, 1890, 5, 32, 0, 0, 1890, 1894, 5, 426, 0, 0, 1891, 1892, 5, 110, 0, 0, 1892, 1893, 5, 32, 0, 0, 1893, 1895, 5, 426, 0, 0, 1894, 1891, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 203, 1, 0, 0, 0, 1896, 1897, 5, 44, 0, 0, 1897, 1898, 5, 169, 0, 0, 1898, 1899, 5, 334, 0, 0, 1899, 1900, 5, 32, 0, 0, 1900, 1901, 5, 426, 0, 0, 1901, 205, 1, 0, 0, 0, 1902, 1903, 5, 198, 0, 0, 1903, 1904, 5, 174, 0, 0, 1904, 1905, 5, 334, 0, 0, 1905, 1906, 5, 32, 0, 0, 1906, 1907, 5, 426, 0, 0, 1907, 207, 1, 0, 0, 0, 1908, 1909, 5, 186, 0, 0, 1909, 1910, 5, 334, 0, 0, 1910, 1911, 5, 32, 0, 0, 1911, 1912, 5, 426, 0, 0, 1912, 209, 1, 0, 0, 0, 1913, 1914, 5, 219, 0, 0, 1914, 1915, 5, 85, 0, 0, 1915, 1916, 5, 17, 0, 0, 1916, 1917, 5, 426, 0, 0, 1917, 211, 1, 0, 0, 0, 1918, 1919, 5, 321, 0, 0, 1919, 1920, 5, 17, 0, 0, 1920, 1921, 5, 160, 0, 0, 1921, 1922, 5, 426, 0, 0, 1922, 1923, 5, 233, 0, 0, 1923, 1928, 5, 426, 0, 0, 1924, 1925, 5, 159, 0, 0, 1925, 1926, 5, 426, 0, 0, 1926, 1927, 5, 232, 0, 0, 1927, 1929, 5, 426, 0, 0, 1928, 1924, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1960, 1, 0, 0, 0, 1930, 1931, 5, 321, 0, 0, 1931, 1932, 5, 32, 0, 0, 1932, 1936, 5, 426, 0, 0, 1933, 1934, 5, 387, 0, 0, 1934, 1935, 5, 302, 0, 0, 1935, 1937, 3, 192, 96, 0, 1936, 1933, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1941, 1, 0, 0, 0, 1938, 1939, 5, 321, 0, 0, 1939, 1940, 5, 17, 0, 0, 1940, 1942, 3, 590, 295, 0, 1941, 1938, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1960, 1, 0, 0, 0, 1943, 1944, 5, 321, 0, 0, 1944, 1945, 5, 32, 0, 0, 1945, 1949, 3, 590, 295, 0, 1946, 1947, 5, 387, 0, 0, 1947, 1948, 5, 302, 0, 0, 1948, 1950, 3, 192, 96, 0, 1949, 1946, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1954, 1, 0, 0, 0, 1951, 1952, 5, 321, 0, 0, 1952, 1953, 5, 17, 0, 0, 1953, 1955, 3, 590, 295, 0, 1954, 1951, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1960, 1, 0, 0, 0, 1956, 1957, 5, 321, 0, 0, 1957, 1958, 5, 17, 0, 0, 1958, 1960, 3, 590, 295, 0, 1959, 1918, 1, 0, 0, 0, 1959, 1930, 1, 0, 0, 0, 1959, 1943, 1, 0, 0, 0, 1959, 1956, 1, 0, 0, 0, 1960, 213, 1, 0, 0, 0, 1961, 1966, 3, 276, 138, 0, 1962, 1963, 5, 397, 0, 0, 1963, 1965, 3, 276, 138, 0, 1964, 1962, 1, 0, 0, 0, 1965, 1968, 1, 0, 0, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 215, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1969, 1974, 3, 278, 139, 0, 1970, 1971, 5, 397, 0, 0, 1971, 1973, 3, 278, 139, 0, 1972, 1970, 1, 0, 0, 0, 1973, 1976, 1, 0, 0, 0, 1974, 1972, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 217, 1, 0, 0, 0, 1976, 1974, 1, 0, 0, 0, 1977, 1982, 3, 296, 148, 0, 1978, 1979, 5, 397, 0, 0, 1979, 1981, 3, 296, 148, 0, 1980, 1978, 1, 0, 0, 0, 1981, 1984, 1, 0, 0, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 219, 1, 0, 0, 0, 1984, 1982, 1, 0, 0, 0, 1985, 1990, 3, 222, 111, 0, 1986, 1987, 5, 397, 0, 0, 1987, 1989, 3, 222, 111, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 221, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1997, 3, 622, 311, 0, 1994, 1995, 4, 111, 0, 0, 1995, 1997, 3, 618, 309, 0, 1996, 1993, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1997, 223, 1, 0, 0, 0, 1998, 1999, 3, 620, 310, 0, 1999, 225, 1, 0, 0, 0, 2000, 2004, 3, 622, 311, 0, 2001, 2002, 4, 113, 1, 0, 2002, 2004, 3, 618, 309, 0, 2003, 2000, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2004, 227, 1, 0, 0, 0, 2005, 2006, 3, 590, 295, 0, 2006, 229, 1, 0, 0, 0, 2007, 2017, 3, 222, 111, 0, 2008, 2013, 5, 395, 0, 0, 2009, 2014, 5, 104, 0, 0, 2010, 2014, 5, 175, 0, 0, 2011, 2014, 5, 375, 0, 0, 2012, 2014, 3, 590, 295, 0, 2013, 2009, 1, 0, 0, 0, 2013, 2010, 1, 0, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 2016, 1, 0, 0, 0, 2015, 2008, 1, 0, 0, 0, 2016, 2019, 1, 0, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 231, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2020, 2025, 3, 268, 134, 0, 2021, 2022, 5, 397, 0, 0, 2022, 2024, 3, 268, 134, 0, 2023, 2021, 1, 0, 0, 0, 2024, 2027, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 233, 1, 0, 0, 0, 2027, 2025, 1, 0, 0, 0, 2028, 2029, 5, 399, 0, 0, 2029, 2030, 3, 220, 110, 0, 2030, 2031, 5, 400, 0, 0, 2031, 235, 1, 0, 0, 0, 2032, 2034, 3, 238, 119, 0, 2033, 2035, 7, 19, 0, 0, 2034, 2033, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2038, 3, 240, 120, 0, 2037, 2032, 1, 0, 0, 0, 2037, 2036, 1, 0, 0, 0, 2038, 237, 1, 0, 0, 0, 2039, 2042, 3, 614, 307, 0, 2040, 2042, 3, 616, 308, 0, 2041, 2039, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 239, 1, 0, 0, 0, 2043, 2047, 5, 109, 0, 0, 2044, 2045, 5, 216, 0, 0, 2045, 2047, 5, 109, 0, 0, 2046, 2043, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2047, 241, 1, 0, 0, 0, 2048, 2049, 5, 55, 0, 0, 2049, 2051, 3, 590, 295, 0, 2050, 2048, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2054, 3, 246, 123, 0, 2053, 2055, 3, 294, 147, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 243, 1, 0, 0, 0, 2056, 2057, 5, 55, 0, 0, 2057, 2058, 3, 590, 295, 0, 2058, 2060, 3, 246, 123, 0, 2059, 2061, 3, 294, 147, 0, 2060, 2059, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 245, 1, 0, 0, 0, 2062, 2065, 3, 248, 124, 0, 2063, 2065, 3, 250, 125, 0, 2064, 2062, 1, 0, 0, 0, 2064, 2063, 1, 0, 0, 0, 2065, 247, 1, 0, 0, 0, 2066, 2067, 3, 292, 146, 0, 2067, 2068, 3, 234, 117, 0, 2068, 249, 1, 0, 0, 0, 2069, 2070, 5, 40, 0, 0, 2070, 2071, 5, 399, 0, 0, 2071, 2072, 3, 536, 268, 0, 2072, 2073, 5, 400, 0, 0, 2073, 251, 1, 0, 0, 0, 2074, 2075, 5, 55, 0, 0, 2075, 2077, 3, 590, 295, 0, 2076, 2074, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2079, 5, 136, 0, 0, 2079, 2080, 5, 173, 0, 0, 2080, 2081, 3, 234, 117, 0, 2081, 2082, 5, 269, 0, 0, 2082, 2083, 3, 426, 213, 0, 2083, 2085, 3, 234, 117, 0, 2084, 2086, 3, 294, 147, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 253, 1, 0, 0, 0, 2087, 2088, 5, 55, 0, 0, 2088, 2089, 3, 590, 295, 0, 2089, 2090, 5, 136, 0, 0, 2090, 2091, 5, 173, 0, 0, 2091, 2092, 3, 234, 117, 0, 2092, 2093, 5, 269, 0, 0, 2093, 2094, 3, 426, 213, 0, 2094, 2096, 3, 234, 117, 0, 2095, 2097, 3, 294, 147, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 255, 1, 0, 0, 0, 2098, 2101, 3, 262, 131, 0, 2099, 2101, 3, 258, 129, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2099, 1, 0, 0, 0, 2101, 257, 1, 0, 0, 0, 2102, 2107, 3, 260, 130, 0, 2103, 2104, 5, 397, 0, 0, 2104, 2106, 3, 260, 130, 0, 2105, 2103, 1, 0, 0, 0, 2106, 2109, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 259, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2110, 2111, 5, 399, 0, 0, 2111, 2112, 3, 262, 131, 0, 2112, 2113, 5, 400, 0, 0, 2113, 261, 1, 0, 0, 0, 2114, 2119, 3, 528, 264, 0, 2115, 2116, 5, 397, 0, 0, 2116, 2118, 3, 528, 264, 0, 2117, 2115, 1, 0, 0, 0, 2118, 2121, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 263, 1, 0, 0, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2123, 7, 20, 0, 0, 2123, 265, 1, 0, 0, 0, 2124, 2125, 5, 220, 0, 0, 2125, 2126, 7, 21, 0, 0, 2126, 267, 1, 0, 0, 0, 2127, 2129, 3, 222, 111, 0, 2128, 2130, 3, 264, 132, 0, 2129, 2128, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2132, 1, 0, 0, 0, 2131, 2133, 3, 266, 133, 0, 2132, 2131, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 269, 1, 0, 0, 0, 2134, 2139, 3, 272, 136, 0, 2135, 2136, 5, 397, 0, 0, 2136, 2138, 3, 272, 136, 0, 2137, 2135, 1, 0, 0, 0, 2138, 2141, 1, 0, 0, 0, 2139, 2137, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 271, 1, 0, 0, 0, 2141, 2139, 1, 0, 0, 0, 2142, 2145, 3, 228, 114, 0, 2143, 2144, 5, 47, 0, 0, 2144, 2146, 5, 426, 0, 0, 2145, 2143, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 273, 1, 0, 0, 0, 2147, 2150, 3, 222, 111, 0, 2148, 2150, 3, 536, 268, 0, 2149, 2147, 1, 0, 0, 0, 2149, 2148, 1, 0, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2153, 3, 264, 132, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2155, 1, 0, 0, 0, 2154, 2156, 3, 266, 133, 0, 2155, 2154, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 275, 1, 0, 0, 0, 2157, 2158, 3, 228, 114, 0, 2158, 2161, 3, 300, 150, 0, 2159, 2160, 5, 47, 0, 0, 2160, 2162, 5, 426, 0, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 277, 1, 0, 0, 0, 2163, 2166, 3, 280, 140, 0, 2164, 2166, 3, 282, 141, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2164, 1, 0, 0, 0, 2166, 279, 1, 0, 0, 0, 2167, 2170, 3, 252, 126, 0, 2168, 2170, 3, 242, 121, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2168, 1, 0, 0, 0, 2170, 281, 1, 0, 0, 0, 2171, 2172, 3, 228, 114, 0, 2172, 2174, 3, 300, 150, 0, 2173, 2175, 3, 284, 142, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2177, 5, 47, 0, 0, 2177, 2179, 5, 426, 0, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 283, 1, 0, 0, 0, 2180, 2183, 3, 286, 143, 0, 2181, 2183, 3, 288, 144, 0, 2182, 2180, 1, 0, 0, 0, 2182, 2181, 1, 0, 0, 0, 2183, 285, 1, 0, 0, 0, 2184, 2185, 5, 55, 0, 0, 2185, 2187, 3, 590, 295, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2189, 5, 269, 0, 0, 2189, 2190, 3, 426, 213, 0, 2190, 2191, 5, 399, 0, 0, 2191, 2192, 3, 222, 111, 0, 2192, 2194, 5, 400, 0, 0, 2193, 2195, 3, 294, 147, 0, 2194, 2193, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 287, 1, 0, 0, 0, 2196, 2197, 5, 55, 0, 0, 2197, 2199, 3, 590, 295, 0, 2198, 2196, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2202, 3, 290, 145, 0, 2201, 2203, 3, 294, 147, 0, 2202, 2201, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 289, 1, 0, 0, 0, 2204, 2205, 5, 216, 0, 0, 2205, 2215, 5, 219, 0, 0, 2206, 2210, 5, 83, 0, 0, 2207, 2211, 3, 528, 264, 0, 2208, 2211, 3, 508, 254, 0, 2209, 2211, 3, 516, 258, 0, 2210, 2207, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2209, 1, 0, 0, 0, 2211, 2215, 1, 0, 0, 0, 2212, 2215, 3, 250, 125, 0, 2213, 2215, 3, 292, 146, 0, 2214, 2204, 1, 0, 0, 0, 2214, 2206, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2213, 1, 0, 0, 0, 2215, 291, 1, 0, 0, 0, 2216, 2217, 5, 251, 0, 0, 2217, 2220, 5, 173, 0, 0, 2218, 2220, 5, 358, 0, 0, 2219, 2216, 1, 0, 0, 0, 2219, 2218, 1, 0, 0, 0, 2220, 293, 1, 0, 0, 0, 2221, 2223, 3, 236, 118, 0, 2222, 2224, 7, 22, 0, 0, 2223, 2222, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 295, 1, 0, 0, 0, 2225, 2226, 3, 228, 114, 0, 2226, 2227, 5, 396, 0, 0, 2227, 2230, 3, 300, 150, 0, 2228, 2229, 5, 47, 0, 0, 2229, 2231, 5, 426, 0, 0, 2230, 2228, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 297, 1, 0, 0, 0, 2232, 2237, 3, 300, 150, 0, 2233, 2234, 5, 397, 0, 0, 2234, 2236, 3, 300, 150, 0, 2235, 2233, 1, 0, 0, 0, 2236, 2239, 1, 0, 0, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 299, 1, 0, 0, 0, 2239, 2237, 1, 0, 0, 0, 2240, 2246, 3, 302, 151, 0, 2241, 2246, 3, 304, 152, 0, 2242, 2246, 3, 306, 153, 0, 2243, 2246, 3, 308, 154, 0, 2244, 2246, 3, 310, 155, 0, 2245, 2240, 1, 0, 0, 0, 2245, 2241, 1, 0, 0, 0, 2245, 2242, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2244, 1, 0, 0, 0, 2246, 301, 1, 0, 0, 0, 2247, 2285, 5, 340, 0, 0, 2248, 2285, 5, 311, 0, 0, 2249, 2285, 5, 162, 0, 0, 2250, 2285, 5, 163, 0, 0, 2251, 2285, 5, 26, 0, 0, 2252, 2285, 5, 28, 0, 0, 2253, 2285, 5, 131, 0, 0, 2254, 2285, 5, 264, 0, 0, 2255, 2257, 5, 100, 0, 0, 2256, 2258, 5, 248, 0, 0, 2257, 2256, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2285, 1, 0, 0, 0, 2259, 2285, 5, 71, 0, 0, 2260, 2285, 5, 72, 0, 0, 2261, 2285, 5, 337, 0, 0, 2262, 2285, 5, 338, 0, 0, 2263, 2264, 5, 337, 0, 0, 2264, 2265, 5, 387, 0, 0, 2265, 2266, 5, 188, 0, 0, 2266, 2267, 5, 336, 0, 0, 2267, 2285, 5, 394, 0, 0, 2268, 2285, 5, 323, 0, 0, 2269, 2285, 5, 27, 0, 0, 2270, 2278, 7, 23, 0, 0, 2271, 2272, 5, 399, 0, 0, 2272, 2275, 5, 431, 0, 0, 2273, 2274, 5, 397, 0, 0, 2274, 2276, 5, 431, 0, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 5, 400, 0, 0, 2278, 2271, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2285, 1, 0, 0, 0, 2280, 2281, 7, 24, 0, 0, 2281, 2282, 5, 399, 0, 0, 2282, 2283, 5, 431, 0, 0, 2283, 2285, 5, 400, 0, 0, 2284, 2247, 1, 0, 0, 0, 2284, 2248, 1, 0, 0, 0, 2284, 2249, 1, 0, 0, 0, 2284, 2250, 1, 0, 0, 0, 2284, 2251, 1, 0, 0, 0, 2284, 2252, 1, 0, 0, 0, 2284, 2253, 1, 0, 0, 0, 2284, 2254, 1, 0, 0, 0, 2284, 2255, 1, 0, 0, 0, 2284, 2259, 1, 0, 0, 0, 2284, 2260, 1, 0, 0, 0, 2284, 2261, 1, 0, 0, 0, 2284, 2262, 1, 0, 0, 0, 2284, 2263, 1, 0, 0, 0, 2284, 2268, 1, 0, 0, 0, 2284, 2269, 1, 0, 0, 0, 2284, 2270, 1, 0, 0, 0, 2284, 2280, 1, 0, 0, 0, 2285, 303, 1, 0, 0, 0, 2286, 2287, 5, 16, 0, 0, 2287, 2288, 5, 409, 0, 0, 2288, 2289, 3, 300, 150, 0, 2289, 2290, 5, 411, 0, 0, 2290, 305, 1, 0, 0, 0, 2291, 2292, 5, 324, 0, 0, 2292, 2293, 5, 409, 0, 0, 2293, 2294, 3, 218, 109, 0, 2294, 2295, 5, 411, 0, 0, 2295, 307, 1, 0, 0, 0, 2296, 2297, 5, 198, 0, 0, 2297, 2298, 5, 409, 0, 0, 2298, 2299, 3, 302, 151, 0, 2299, 2300, 5, 397, 0, 0, 2300, 2301, 3, 300, 150, 0, 2301, 2302, 5, 411, 0, 0, 2302, 309, 1, 0, 0, 0, 2303, 2304, 5, 357, 0, 0, 2304, 2305, 5, 409, 0, 0, 2305, 2306, 3, 298, 149, 0, 2306, 2307, 5, 411, 0, 0, 2307, 311, 1, 0, 0, 0, 2308, 2310, 7, 25, 0, 0, 2309, 2311, 7, 26, 0, 0, 2310, 2309, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 313, 1, 0, 0, 0, 2312, 2314, 3, 318, 159, 0, 2313, 2312, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2316, 3, 316, 158, 0, 2316, 315, 1, 0, 0, 0, 2317, 2320, 3, 322, 161, 0, 2318, 2320, 3, 326, 163, 0, 2319, 2317, 1, 0, 0, 0, 2319, 2318, 1, 0, 0, 0, 2320, 317, 1, 0, 0, 0, 2321, 2322, 5, 387, 0, 0, 2322, 2327, 3, 320, 160, 0, 2323, 2324, 5, 397, 0, 0, 2324, 2326, 3, 320, 160, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2329, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 319, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2330, 2335, 3, 590, 295, 0, 2331, 2332, 5, 399, 0, 0, 2332, 2333, 3, 220, 110, 0, 2333, 2334, 5, 400, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2331, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 5, 17, 0, 0, 2338, 2339, 5, 399, 0, 0, 2339, 2340, 3, 314, 157, 0, 2340, 2341, 5, 400, 0, 0, 2341, 321, 1, 0, 0, 0, 2342, 2348, 3, 324, 162, 0, 2343, 2344, 3, 312, 156, 0, 2344, 2345, 3, 324, 162, 0, 2345, 2347, 1, 0, 0, 0, 2346, 2343, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 323, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2352, 3, 396, 198, 0, 2352, 2353, 3, 336, 168, 0, 2353, 2355, 3, 452, 226, 0, 2354, 2356, 3, 410, 205, 0, 2355, 2354, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2358, 1, 0, 0, 0, 2357, 2359, 3, 444, 222, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2361, 1, 0, 0, 0, 2360, 2362, 3, 478, 239, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2364, 1, 0, 0, 0, 2363, 2365, 3, 486, 243, 0, 2364, 2363, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2367, 1, 0, 0, 0, 2366, 2368, 3, 470, 235, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2370, 1, 0, 0, 0, 2369, 2371, 3, 488, 244, 0, 2370, 2369, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2373, 1, 0, 0, 0, 2372, 2374, 3, 498, 249, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2376, 1, 0, 0, 0, 2375, 2377, 3, 502, 251, 0, 2376, 2375, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 1, 0, 0, 0, 2378, 2380, 3, 504, 252, 0, 2379, 2378, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2383, 3, 506, 253, 0, 2382, 2381, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2385, 1, 0, 0, 0, 2384, 2386, 3, 340, 170, 0, 2385, 2384, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2423, 1, 0, 0, 0, 2387, 2388, 3, 396, 198, 0, 2388, 2390, 3, 452, 226, 0, 2389, 2391, 3, 410, 205, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2394, 3, 444, 222, 0, 2393, 2392, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2396, 1, 0, 0, 0, 2395, 2397, 3, 478, 239, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2399, 1, 0, 0, 0, 2398, 2400, 3, 486, 243, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2402, 1, 0, 0, 0, 2401, 2403, 3, 470, 235, 0, 2402, 2401, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2405, 1, 0, 0, 0, 2404, 2406, 3, 488, 244, 0, 2405, 2404, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2408, 1, 0, 0, 0, 2407, 2409, 3, 498, 249, 0, 2408, 2407, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2412, 3, 502, 251, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 1, 0, 0, 0, 2413, 2415, 3, 504, 252, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2418, 3, 506, 253, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2421, 3, 340, 170, 0, 2420, 2419, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2351, 1, 0, 0, 0, 2422, 2387, 1, 0, 0, 0, 2423, 325, 1, 0, 0, 0, 2424, 2425, 3, 336, 168, 0, 2425, 2426, 3, 330, 165, 0, 2426, 2429, 1, 0, 0, 0, 2427, 2429, 3, 330, 165, 0, 2428, 2424, 1, 0, 0, 0, 2428, 2427, 1, 0, 0, 0, 2429, 327, 1, 0, 0, 0, 2430, 2432, 3, 452, 226, 0, 2431, 2433, 3, 396, 198, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2435, 1, 0, 0, 0, 2434, 2436, 3, 444, 222, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2438, 1, 0, 0, 0, 2437, 2439, 3, 478, 239, 0, 2438, 2437, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2441, 1, 0, 0, 0, 2440, 2442, 3, 486, 243, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2444, 1, 0, 0, 0, 2443, 2445, 3, 470, 235, 0, 2444, 2443, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2447, 1, 0, 0, 0, 2446, 2448, 3, 488, 244, 0, 2447, 2446, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2455, 1, 0, 0, 0, 2449, 2450, 5, 399, 0, 0, 2450, 2451, 3, 330, 165, 0, 2451, 2452, 5, 400, 0, 0, 2452, 2455, 1, 0, 0, 0, 2453, 2455, 3, 446, 223, 0, 2454, 2430, 1, 0, 0, 0, 2454, 2449, 1, 0, 0, 0, 2454, 2453, 1, 0, 0, 0, 2455, 329, 1, 0, 0, 0, 2456, 2458, 3, 328, 164, 0, 2457, 2459, 3, 332, 166, 0, 2458, 2457, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2461, 1, 0, 0, 0, 2460, 2462, 3, 498, 249, 0, 2461, 2460, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2464, 1, 0, 0, 0, 2463, 2465, 3, 502, 251, 0, 2464, 2463, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2467, 1, 0, 0, 0, 2466, 2468, 3, 504, 252, 0, 2467, 2466, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2470, 1, 0, 0, 0, 2469, 2471, 3, 506, 253, 0, 2470, 2469, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2473, 1, 0, 0, 0, 2472, 2474, 3, 340, 170, 0, 2473, 2472, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 331, 1, 0, 0, 0, 2475, 2476, 3, 312, 156, 0, 2476, 2477, 3, 328, 164, 0, 2477, 2479, 1, 0, 0, 0, 2478, 2475, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2478, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 333, 1, 0, 0, 0, 2482, 2484, 3, 318, 159, 0, 2483, 2482, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 3, 330, 165, 0, 2486, 335, 1, 0, 0, 0, 2487, 2504, 5, 161, 0, 0, 2488, 2489, 5, 235, 0, 0, 2489, 2491, 3, 338, 169, 0, 2490, 2492, 3, 32, 16, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2505, 1, 0, 0, 0, 2493, 2495, 5, 166, 0, 0, 2494, 2496, 5, 329, 0, 0, 2495, 2494, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2502, 3, 576, 288, 0, 2498, 2499, 5, 399, 0, 0, 2499, 2500, 3, 220, 110, 0, 2500, 2501, 5, 400, 0, 0, 2501, 2503, 1, 0, 0, 0, 2502, 2498, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2505, 1, 0, 0, 0, 2504, 2488, 1, 0, 0, 0, 2504, 2493, 1, 0, 0, 0, 2505, 337, 1, 0, 0, 0, 2506, 2508, 5, 188, 0, 0, 2507, 2506, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2510, 5, 93, 0, 0, 2510, 2512, 5, 426, 0, 0, 2511, 2513, 3, 184, 92, 0, 2512, 2511, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2515, 1, 0, 0, 0, 2514, 2516, 3, 212, 106, 0, 2515, 2514, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2520, 1, 0, 0, 0, 2517, 2518, 5, 329, 0, 0, 2518, 2520, 3, 576, 288, 0, 2519, 2507, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2520, 339, 1, 0, 0, 0, 2521, 2530, 5, 185, 0, 0, 2522, 2523, 5, 431, 0, 0, 2523, 2525, 5, 397, 0, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2526, 1, 0, 0, 0, 2526, 2531, 5, 431, 0, 0, 2527, 2528, 5, 431, 0, 0, 2528, 2529, 5, 223, 0, 0, 2529, 2531, 5, 431, 0, 0, 2530, 2524, 1, 0, 0, 0, 2530, 2527, 1, 0, 0, 0, 2531, 341, 1, 0, 0, 0, 2532, 2533, 3, 222, 111, 0, 2533, 2534, 5, 405, 0, 0, 2534, 2535, 3, 344, 172, 0, 2535, 343, 1, 0, 0, 0, 2536, 2539, 5, 83, 0, 0, 2537, 2539, 3, 546, 273, 0, 2538, 2536, 1, 0, 0, 0, 2538, 2537, 1, 0, 0, 0, 2539, 345, 1, 0, 0, 0, 2540, 2541, 5, 304, 0, 0, 2541, 2546, 3, 342, 171, 0, 2542, 2543, 5, 397, 0, 0, 2543, 2545, 3, 342, 171, 0, 2544, 2542, 1, 0, 0, 0, 2545, 2548, 1, 0, 0, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 347, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2549, 2550, 5, 318, 0, 0, 2550, 2559, 5, 344, 0, 0, 2551, 2556, 3, 350, 175, 0, 2552, 2553, 5, 397, 0, 0, 2553, 2555, 3, 350, 175, 0, 2554, 2552, 1, 0, 0, 0, 2555, 2558, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2560, 1, 0, 0, 0, 2558, 2556, 1, 0, 0, 0, 2559, 2551, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2573, 1, 0, 0, 0, 2561, 2563, 5, 48, 0, 0, 2562, 2564, 5, 389, 0, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2573, 1, 0, 0, 0, 2565, 2567, 5, 289, 0, 0, 2566, 2568, 5, 389, 0, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2573, 1, 0, 0, 0, 2569, 2570, 5, 304, 0, 0, 2570, 2571, 5, 22, 0, 0, 2571, 2573, 7, 27, 0, 0, 2572, 2549, 1, 0, 0, 0, 2572, 2561, 1, 0, 0, 0, 2572, 2565, 1, 0, 0, 0, 2572, 2569, 1, 0, 0, 0, 2573, 349, 1, 0, 0, 0, 2574, 2575, 5, 168, 0, 0, 2575, 2576, 5, 182, 0, 0, 2576, 2580, 5, 312, 0, 0, 2577, 2578, 5, 261, 0, 0, 2578, 2580, 7, 28, 0, 0, 2579, 2574, 1, 0, 0, 0, 2579, 2577, 1, 0, 0, 0, 2580, 351, 1, 0, 0, 0, 2581, 2584, 3, 356, 178, 0, 2582, 2584, 3, 358, 179, 0, 2583, 2581, 1, 0, 0, 0, 2583, 2582, 1, 0, 0, 0, 2584, 2587, 1, 0, 0, 0, 2585, 2583, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2588, 2590, 3, 354, 177, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 353, 1, 0, 0, 0, 2591, 2592, 5, 383, 0, 0, 2592, 2593, 5, 216, 0, 0, 2593, 2596, 5, 201, 0, 0, 2594, 2595, 5, 11, 0, 0, 2595, 2597, 3, 536, 268, 0, 2596, 2594, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 5, 335, 0, 0, 2599, 2601, 5, 161, 0, 0, 2600, 2602, 3, 234, 117, 0, 2601, 2600, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2604, 5, 374, 0, 0, 2604, 2605, 3, 494, 247, 0, 2605, 355, 1, 0, 0, 0, 2606, 2607, 5, 383, 0, 0, 2607, 2608, 5, 201, 0, 0, 2608, 2609, 5, 11, 0, 0, 2609, 2610, 3, 536, 268, 0, 2610, 2614, 5, 335, 0, 0, 2611, 2612, 5, 365, 0, 0, 2612, 2615, 3, 346, 173, 0, 2613, 2615, 5, 86, 0, 0, 2614, 2611, 1, 0, 0, 0, 2614, 2613, 1, 0, 0, 0, 2615, 357, 1, 0, 0, 0, 2616, 2617, 5, 383, 0, 0, 2617, 2618, 5, 201, 0, 0, 2618, 2622, 5, 335, 0, 0, 2619, 2620, 5, 365, 0, 0, 2620, 2623, 3, 346, 173, 0, 2621, 2623, 5, 86, 0, 0, 2622, 2619, 1, 0, 0, 0, 2622, 2621, 1, 0, 0, 0, 2623, 359, 1, 0, 0, 0, 2624, 2655, 5, 9, 0, 0, 2625, 2626, 5, 329, 0, 0, 2626, 2627, 3, 426, 213, 0, 2627, 2628, 3, 362, 181, 0, 2628, 2656, 1, 0, 0, 0, 2629, 2630, 5, 378, 0, 0, 2630, 2632, 3, 430, 215, 0, 2631, 2633, 5, 17, 0, 0, 2632, 2631, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 3, 366, 183, 0, 2635, 2656, 1, 0, 0, 0, 2636, 2637, 5, 202, 0, 0, 2637, 2638, 5, 378, 0, 0, 2638, 2642, 3, 430, 215, 0, 2639, 2643, 3, 38, 19, 0, 2640, 2643, 3, 40, 20, 0, 2641, 2643, 5, 265, 0, 0, 2642, 2639, 1, 0, 0, 0, 2642, 2640, 1, 0, 0, 0, 2642, 2641, 1, 0, 0, 0, 2643, 2656, 1, 0, 0, 0, 2644, 2645, 3, 64, 32, 0, 2645, 2646, 3, 368, 184, 0, 2646, 2656, 1, 0, 0, 0, 2647, 2648, 5, 69, 0, 0, 2648, 2656, 3, 370, 185, 0, 2649, 2650, 5, 155, 0, 0, 2650, 2651, 3, 590, 295, 0, 2651, 2652, 5, 224, 0, 0, 2652, 2653, 3, 576, 288, 0, 2653, 2654, 5, 265, 0, 0, 2654, 2656, 1, 0, 0, 0, 2655, 2625, 1, 0, 0, 0, 2655, 2629, 1, 0, 0, 0, 2655, 2636, 1, 0, 0, 0, 2655, 2644, 1, 0, 0, 0, 2655, 2647, 1, 0, 0, 0, 2655, 2649, 1, 0, 0, 0, 2656, 361, 1, 0, 0, 0, 2657, 2658, 5, 274, 0, 0, 2658, 2659, 5, 341, 0, 0, 2659, 2747, 3, 428, 214, 0, 2660, 2661, 5, 102, 0, 0, 2661, 2747, 5, 239, 0, 0, 2662, 2747, 3, 374, 187, 0, 2663, 2665, 5, 4, 0, 0, 2664, 2666, 3, 32, 16, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2671, 1, 0, 0, 0, 2667, 2669, 3, 578, 289, 0, 2668, 2670, 3, 372, 186, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2667, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2671, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2747, 1, 0, 0, 0, 2675, 2679, 5, 342, 0, 0, 2676, 2678, 3, 578, 289, 0, 2677, 2676, 1, 0, 0, 0, 2678, 2681, 1, 0, 0, 0, 2679, 2677, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2747, 1, 0, 0, 0, 2681, 2679, 1, 0, 0, 0, 2682, 2686, 5, 15, 0, 0, 2683, 2685, 3, 578, 289, 0, 2684, 2683, 1, 0, 0, 0, 2685, 2688, 1, 0, 0, 0, 2686, 2684, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2747, 1, 0, 0, 0, 2688, 2686, 1, 0, 0, 0, 2689, 2693, 5, 353, 0, 0, 2690, 2692, 3, 578, 289, 0, 2691, 2690, 1, 0, 0, 0, 2692, 2695, 1, 0, 0, 0, 2693, 2691, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2747, 1, 0, 0, 0, 2695, 2693, 1, 0, 0, 0, 2696, 2697, 5, 304, 0, 0, 2697, 2698, 5, 332, 0, 0, 2698, 2747, 3, 192, 96, 0, 2699, 2700, 5, 363, 0, 0, 2700, 2702, 5, 332, 0, 0, 2701, 2703, 3, 30, 15, 0, 2702, 2701, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2747, 3, 192, 96, 0, 2705, 2747, 3, 182, 91, 0, 2706, 2709, 5, 216, 0, 0, 2707, 2710, 5, 310, 0, 0, 2708, 2710, 3, 36, 18, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2708, 1, 0, 0, 0, 2710, 2747, 1, 0, 0, 0, 2711, 2712, 5, 113, 0, 0, 2712, 2713, 3, 578, 289, 0, 2713, 2714, 5, 387, 0, 0, 2714, 2715, 5, 329, 0, 0, 2715, 2716, 3, 426, 213, 0, 2716, 2747, 1, 0, 0, 0, 2717, 2718, 5, 237, 0, 0, 2718, 2719, 5, 45, 0, 0, 2719, 2720, 5, 399, 0, 0, 2720, 2721, 3, 276, 138, 0, 2721, 2722, 5, 400, 0, 0, 2722, 2747, 1, 0, 0, 0, 2723, 2724, 5, 101, 0, 0, 2724, 2725, 5, 55, 0, 0, 2725, 2747, 3, 590, 295, 0, 2726, 2729, 5, 4, 0, 0, 2727, 2730, 3, 254, 127, 0, 2728, 2730, 3, 244, 122, 0, 2729, 2727, 1, 0, 0, 0, 2729, 2728, 1, 0, 0, 0, 2730, 2747, 1, 0, 0, 0, 2731, 2733, 3, 578, 289, 0, 2732, 2731, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2747, 3, 364, 182, 0, 2735, 2736, 5, 304, 0, 0, 2736, 2737, 5, 236, 0, 0, 2737, 2747, 3, 112, 56, 0, 2738, 2739, 5, 304, 0, 0, 2739, 2740, 5, 237, 0, 0, 2740, 2741, 5, 316, 0, 0, 2741, 2742, 5, 399, 0, 0, 2742, 2743, 3, 176, 88, 0, 2743, 2744, 5, 400, 0, 0, 2744, 2747, 1, 0, 0, 0, 2745, 2747, 3, 378, 189, 0, 2746, 2657, 1, 0, 0, 0, 2746, 2660, 1, 0, 0, 0, 2746, 2662, 1, 0, 0, 0, 2746, 2663, 1, 0, 0, 0, 2746, 2675, 1, 0, 0, 0, 2746, 2682, 1, 0, 0, 0, 2746, 2689, 1, 0, 0, 0, 2746, 2696, 1, 0, 0, 0, 2746, 2699, 1, 0, 0, 0, 2746, 2705, 1, 0, 0, 0, 2746, 2706, 1, 0, 0, 0, 2746, 2711, 1, 0, 0, 0, 2746, 2717, 1, 0, 0, 0, 2746, 2723, 1, 0, 0, 0, 2746, 2726, 1, 0, 0, 0, 2746, 2732, 1, 0, 0, 0, 2746, 2735, 1, 0, 0, 0, 2746, 2738, 1, 0, 0, 0, 2746, 2745, 1, 0, 0, 0, 2747, 363, 1, 0, 0, 0, 2748, 2749, 5, 304, 0, 0, 2749, 2750, 5, 129, 0, 0, 2750, 2882, 3, 380, 190, 0, 2751, 2752, 5, 304, 0, 0, 2752, 2753, 5, 189, 0, 0, 2753, 2882, 5, 426, 0, 0, 2754, 2882, 5, 53, 0, 0, 2755, 2765, 5, 304, 0, 0, 2756, 2757, 5, 301, 0, 0, 2757, 2761, 5, 426, 0, 0, 2758, 2759, 5, 387, 0, 0, 2759, 2760, 5, 302, 0, 0, 2760, 2762, 3, 192, 96, 0, 2761, 2758, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2766, 1, 0, 0, 0, 2763, 2764, 5, 302, 0, 0, 2764, 2766, 3, 192, 96, 0, 2765, 2756, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2766, 2882, 1, 0, 0, 0, 2767, 2768, 5, 363, 0, 0, 2768, 2769, 5, 302, 0, 0, 2769, 2882, 3, 192, 96, 0, 2770, 2771, 5, 274, 0, 0, 2771, 2772, 5, 341, 0, 0, 2772, 2882, 3, 578, 289, 0, 2773, 2774, 5, 166, 0, 0, 2774, 2775, 5, 431, 0, 0, 2775, 2882, 5, 31, 0, 0, 2776, 2777, 5, 304, 0, 0, 2777, 2778, 5, 310, 0, 0, 2778, 2779, 5, 189, 0, 0, 2779, 2780, 5, 399, 0, 0, 2780, 2785, 3, 376, 188, 0, 2781, 2782, 5, 397, 0, 0, 2782, 2784, 3, 376, 188, 0, 2783, 2781, 1, 0, 0, 0, 2784, 2787, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2788, 1, 0, 0, 0, 2787, 2785, 1, 0, 0, 0, 2788, 2789, 5, 400, 0, 0, 2789, 2882, 1, 0, 0, 0, 2790, 2791, 5, 216, 0, 0, 2791, 2882, 7, 29, 0, 0, 2792, 2882, 3, 180, 90, 0, 2793, 2794, 5, 49, 0, 0, 2794, 2797, 5, 426, 0, 0, 2795, 2796, 5, 11, 0, 0, 2796, 2798, 5, 380, 0, 0, 2797, 2795, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2803, 1, 0, 0, 0, 2799, 2800, 5, 42, 0, 0, 2800, 2801, 5, 166, 0, 0, 2801, 2802, 5, 431, 0, 0, 2802, 2804, 5, 31, 0, 0, 2803, 2799, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2806, 1, 0, 0, 0, 2805, 2807, 3, 498, 249, 0, 2806, 2805, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2810, 1, 0, 0, 0, 2808, 2809, 5, 246, 0, 0, 2809, 2811, 5, 426, 0, 0, 2810, 2808, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, 0, 2811, 2816, 1, 0, 0, 0, 2812, 2813, 5, 387, 0, 0, 2813, 2814, 5, 235, 0, 0, 2814, 2815, 5, 332, 0, 0, 2815, 2817, 3, 192, 96, 0, 2816, 2812, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2882, 1, 0, 0, 0, 2818, 2819, 5, 365, 0, 0, 2819, 2820, 5, 319, 0, 0, 2820, 2822, 5, 134, 0, 0, 2821, 2823, 5, 45, 0, 0, 2822, 2821, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2825, 3, 222, 111, 0, 2825, 2826, 5, 304, 0, 0, 2826, 2829, 3, 192, 96, 0, 2827, 2828, 5, 47, 0, 0, 2828, 2830, 5, 426, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 2882, 1, 0, 0, 0, 2831, 2832, 5, 365, 0, 0, 2832, 2833, 5, 319, 0, 0, 2833, 2834, 5, 304, 0, 0, 2834, 2882, 3, 192, 96, 0, 2835, 2837, 5, 38, 0, 0, 2836, 2838, 5, 45, 0, 0, 2837, 2836, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2840, 3, 222, 111, 0, 2840, 2841, 3, 228, 114, 0, 2841, 2843, 3, 300, 150, 0, 2842, 2844, 3, 284, 142, 0, 2843, 2842, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2847, 1, 0, 0, 0, 2845, 2846, 5, 47, 0, 0, 2846, 2848, 5, 426, 0, 0, 2847, 2845, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 2852, 1, 0, 0, 0, 2849, 2853, 5, 130, 0, 0, 2850, 2851, 5, 6, 0, 0, 2851, 2853, 3, 590, 295, 0, 2852, 2849, 1, 0, 0, 0, 2852, 2850, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2855, 1, 0, 0, 0, 2854, 2856, 3, 34, 17, 0, 2855, 2854, 1, 0, 0, 0, 2855, 2856, 1, 0, 0, 0, 2856, 2882, 1, 0, 0, 0, 2857, 2860, 5, 4, 0, 0, 2858, 2860, 5, 278, 0, 0, 2859, 2857, 1, 0, 0, 0, 2859, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2862, 5, 46, 0, 0, 2862, 2863, 5, 399, 0, 0, 2863, 2864, 3, 214, 107, 0, 2864, 2866, 5, 400, 0, 0, 2865, 2867, 3, 34, 17, 0, 2866, 2865, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2882, 1, 0, 0, 0, 2868, 2869, 5, 365, 0, 0, 2869, 2871, 5, 46, 0, 0, 2870, 2872, 3, 34, 17, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2882, 1, 0, 0, 0, 2873, 2879, 3, 238, 119, 0, 2874, 2876, 5, 218, 0, 0, 2875, 2877, 5, 34, 0, 0, 2876, 2875, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2880, 1, 0, 0, 0, 2878, 2880, 5, 222, 0, 0, 2879, 2874, 1, 0, 0, 0, 2879, 2878, 1, 0, 0, 0, 2880, 2882, 1, 0, 0, 0, 2881, 2748, 1, 0, 0, 0, 2881, 2751, 1, 0, 0, 0, 2881, 2754, 1, 0, 0, 0, 2881, 2755, 1, 0, 0, 0, 2881, 2767, 1, 0, 0, 0, 2881, 2770, 1, 0, 0, 0, 2881, 2773, 1, 0, 0, 0, 2881, 2776, 1, 0, 0, 0, 2881, 2790, 1, 0, 0, 0, 2881, 2792, 1, 0, 0, 0, 2881, 2793, 1, 0, 0, 0, 2881, 2818, 1, 0, 0, 0, 2881, 2831, 1, 0, 0, 0, 2881, 2835, 1, 0, 0, 0, 2881, 2859, 1, 0, 0, 0, 2881, 2868, 1, 0, 0, 0, 2881, 2873, 1, 0, 0, 0, 2882, 365, 1, 0, 0, 0, 2883, 2884, 5, 304, 0, 0, 2884, 2885, 5, 332, 0, 0, 2885, 2910, 3, 192, 96, 0, 2886, 2887, 5, 363, 0, 0, 2887, 2889, 5, 332, 0, 0, 2888, 2890, 3, 30, 15, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2910, 3, 192, 96, 0, 2892, 2893, 5, 274, 0, 0, 2893, 2894, 5, 341, 0, 0, 2894, 2910, 3, 428, 214, 0, 2895, 2897, 5, 4, 0, 0, 2896, 2898, 3, 32, 16, 0, 2897, 2896, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2903, 1, 0, 0, 0, 2899, 2901, 3, 578, 289, 0, 2900, 2902, 3, 372, 186, 0, 2901, 2900, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2904, 1, 0, 0, 0, 2903, 2899, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 2903, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2910, 1, 0, 0, 0, 2907, 2910, 3, 374, 187, 0, 2908, 2910, 3, 334, 167, 0, 2909, 2883, 1, 0, 0, 0, 2909, 2886, 1, 0, 0, 0, 2909, 2892, 1, 0, 0, 0, 2909, 2895, 1, 0, 0, 0, 2909, 2907, 1, 0, 0, 0, 2909, 2908, 1, 0, 0, 0, 2910, 367, 1, 0, 0, 0, 2911, 2912, 3, 420, 210, 0, 2912, 2913, 5, 304, 0, 0, 2913, 2914, 5, 76, 0, 0, 2914, 2915, 3, 196, 98, 0, 2915, 2927, 1, 0, 0, 0, 2916, 2917, 3, 420, 210, 0, 2917, 2918, 5, 304, 0, 0, 2918, 2919, 5, 236, 0, 0, 2919, 2920, 3, 114, 57, 0, 2920, 2927, 1, 0, 0, 0, 2921, 2922, 3, 420, 210, 0, 2922, 2923, 5, 304, 0, 0, 2923, 2924, 7, 30, 0, 0, 2924, 2925, 5, 426, 0, 0, 2925, 2927, 1, 0, 0, 0, 2926, 2911, 1, 0, 0, 0, 2926, 2916, 1, 0, 0, 0, 2926, 2921, 1, 0, 0, 0, 2927, 369, 1, 0, 0, 0, 2928, 2929, 3, 420, 210, 0, 2929, 2930, 5, 304, 0, 0, 2930, 2931, 5, 77, 0, 0, 2931, 2932, 3, 196, 98, 0, 2932, 2944, 1, 0, 0, 0, 2933, 2934, 3, 420, 210, 0, 2934, 2935, 5, 304, 0, 0, 2935, 2936, 5, 236, 0, 0, 2936, 2937, 3, 114, 57, 0, 2937, 2944, 1, 0, 0, 0, 2938, 2939, 3, 420, 210, 0, 2939, 2940, 5, 304, 0, 0, 2940, 2941, 5, 367, 0, 0, 2941, 2942, 5, 426, 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2928, 1, 0, 0, 0, 2943, 2933, 1, 0, 0, 0, 2943, 2938, 1, 0, 0, 0, 2944, 371, 1, 0, 0, 0, 2945, 2946, 5, 189, 0, 0, 2946, 2947, 5, 426, 0, 0, 2947, 373, 1, 0, 0, 0, 2948, 2950, 5, 101, 0, 0, 2949, 2951, 3, 30, 15, 0, 2950, 2949, 1, 0, 0, 0, 2950, 2951, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2953, 5, 237, 0, 0, 2953, 2959, 3, 582, 291, 0, 2954, 2955, 5, 397, 0, 0, 2955, 2956, 5, 237, 0, 0, 2956, 2958, 3, 582, 291, 0, 2957, 2954, 1, 0, 0, 0, 2958, 2961, 1, 0, 0, 0, 2959, 2957, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 2964, 1, 0, 0, 0, 2961, 2959, 1, 0, 0, 0, 2962, 2963, 5, 152, 0, 0, 2963, 2965, 5, 254, 0, 0, 2964, 2962, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2967, 1, 0, 0, 0, 2966, 2968, 5, 255, 0, 0, 2967, 2966, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2970, 1, 0, 0, 0, 2969, 2971, 3, 14, 7, 0, 2970, 2969, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 375, 1, 0, 0, 0, 2972, 2975, 3, 528, 264, 0, 2973, 2975, 3, 260, 130, 0, 2974, 2972, 1, 0, 0, 0, 2974, 2973, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2977, 5, 405, 0, 0, 2977, 2978, 5, 426, 0, 0, 2978, 377, 1, 0, 0, 0, 2979, 2989, 5, 115, 0, 0, 2980, 2981, 5, 289, 0, 0, 2981, 2982, 5, 399, 0, 0, 2982, 2990, 7, 31, 0, 0, 2983, 2984, 5, 118, 0, 0, 2984, 2985, 5, 399, 0, 0, 2985, 2990, 5, 426, 0, 0, 2986, 2987, 5, 306, 0, 0, 2987, 2988, 5, 399, 0, 0, 2988, 2990, 5, 431, 0, 0, 2989, 2980, 1, 0, 0, 0, 2989, 2983, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 5, 400, 0, 0, 2992, 379, 1, 0, 0, 0, 2993, 2994, 5, 160, 0, 0, 2994, 2995, 5, 426, 0, 0, 2995, 2996, 5, 233, 0, 0, 2996, 2997, 5, 426, 0, 0, 2997, 2998, 5, 301, 0, 0, 2998, 3003, 5, 426, 0, 0, 2999, 3000, 5, 159, 0, 0, 3000, 3001, 5, 426, 0, 0, 3001, 3002, 5, 232, 0, 0, 3002, 3004, 5, 426, 0, 0, 3003, 2999, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3007, 1, 0, 0, 0, 3005, 3007, 3, 590, 295, 0, 3006, 2993, 1, 0, 0, 0, 3006, 3005, 1, 0, 0, 0, 3007, 381, 1, 0, 0, 0, 3008, 3009, 5, 184, 0, 0, 3009, 3018, 5, 128, 0, 0, 3010, 3011, 5, 184, 0, 0, 3011, 3012, 5, 128, 0, 0, 3012, 3013, 3, 590, 295, 0, 3013, 3014, 5, 426, 0, 0, 3014, 3018, 1, 0, 0, 0, 3015, 3016, 5, 184, 0, 0, 3016, 3018, 3, 426, 213, 0, 3017, 3008, 1, 0, 0, 0, 3017, 3010, 1, 0, 0, 0, 3017, 3015, 1, 0, 0, 0, 3018, 383, 1, 0, 0, 0, 3019, 3021, 5, 58, 0, 0, 3020, 3022, 5, 333, 0, 0, 3021, 3020, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3024, 1, 0, 0, 0, 3023, 3025, 5, 345, 0, 0, 3024, 3023, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3027, 1, 0, 0, 0, 3026, 3028, 5, 123, 0, 0, 3027, 3026, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3030, 1, 0, 0, 0, 3029, 3031, 5, 195, 0, 0, 3030, 3029, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3034, 5, 329, 0, 0, 3033, 3035, 3, 32, 16, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3093, 3, 428, 214, 0, 3037, 3039, 3, 382, 191, 0, 3038, 3040, 3, 172, 86, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3042, 1, 0, 0, 0, 3041, 3043, 3, 184, 92, 0, 3042, 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3045, 1, 0, 0, 0, 3044, 3046, 3, 212, 106, 0, 3045, 3044, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3048, 1, 0, 0, 0, 3047, 3049, 3, 372, 186, 0, 3048, 3047, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3051, 1, 0, 0, 0, 3050, 3052, 3, 190, 95, 0, 3051, 3050, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3054, 1, 0, 0, 0, 3053, 3055, 3, 170, 85, 0, 3054, 3053, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3094, 1, 0, 0, 0, 3056, 3057, 5, 399, 0, 0, 3057, 3058, 3, 216, 108, 0, 3058, 3059, 5, 400, 0, 0, 3059, 3061, 1, 0, 0, 0, 3060, 3056, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3063, 1, 0, 0, 0, 3062, 3064, 3, 168, 84, 0, 3063, 3062, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3066, 1, 0, 0, 0, 3065, 3067, 3, 172, 86, 0, 3066, 3065, 1, 0, 0, 0, 3066, 3067, 1, 0, 0, 0, 3067, 3069, 1, 0, 0, 0, 3068, 3070, 3, 180, 90, 0, 3069, 3068, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3072, 1, 0, 0, 0, 3071, 3073, 3, 182, 91, 0, 3072, 3071, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3075, 1, 0, 0, 0, 3074, 3076, 3, 184, 92, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3078, 1, 0, 0, 0, 3077, 3079, 3, 212, 106, 0, 3078, 3077, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3081, 1, 0, 0, 0, 3080, 3082, 3, 372, 186, 0, 3081, 3080, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3084, 1, 0, 0, 0, 3083, 3085, 3, 190, 95, 0, 3084, 3083, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3087, 1, 0, 0, 0, 3086, 3088, 3, 170, 85, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3091, 1, 0, 0, 0, 3089, 3090, 5, 17, 0, 0, 3090, 3092, 3, 334, 167, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3094, 1, 0, 0, 0, 3093, 3037, 1, 0, 0, 0, 3093, 3060, 1, 0, 0, 0, 3094, 385, 1, 0, 0, 0, 3095, 3096, 5, 58, 0, 0, 3096, 3098, 5, 69, 0, 0, 3097, 3099, 3, 32, 16, 0, 3098, 3097, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3103, 3, 590, 295, 0, 3101, 3102, 5, 352, 0, 0, 3102, 3104, 5, 426, 0, 0, 3103, 3101, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 3107, 1, 0, 0, 0, 3105, 3106, 5, 367, 0, 0, 3106, 3108, 5, 426, 0, 0, 3107, 3105, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3111, 1, 0, 0, 0, 3109, 3110, 5, 47, 0, 0, 3110, 3112, 5, 426, 0, 0, 3111, 3109, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3116, 1, 0, 0, 0, 3113, 3114, 5, 387, 0, 0, 3114, 3115, 5, 77, 0, 0, 3115, 3117, 3, 196, 98, 0, 3116, 3113, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 387, 1, 0, 0, 0, 3118, 3119, 5, 101, 0, 0, 3119, 3121, 5, 69, 0, 0, 3120, 3122, 3, 30, 15, 0, 3121, 3120, 1, 0, 0, 0, 3121, 3122, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3124, 3, 590, 295, 0, 3124, 389, 1, 0, 0, 0, 3125, 3126, 3, 590, 295, 0, 3126, 3127, 5, 395, 0, 0, 3127, 3129, 1, 0, 0, 0, 3128, 3125, 1, 0, 0, 0, 3129, 3132, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3133, 1, 0, 0, 0, 3132, 3130, 1, 0, 0, 0, 3133, 3134, 5, 415, 0, 0, 3134, 391, 1, 0, 0, 0, 3135, 3140, 3, 536, 268, 0, 3136, 3137, 5, 397, 0, 0, 3137, 3139, 3, 536, 268, 0, 3138, 3136, 1, 0, 0, 0, 3139, 3142, 1, 0, 0, 0, 3140, 3138, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 393, 1, 0, 0, 0, 3142, 3140, 1, 0, 0, 0, 3143, 3148, 3, 590, 295, 0, 3144, 3145, 5, 397, 0, 0, 3145, 3147, 3, 590, 295, 0, 3146, 3144, 1, 0, 0, 0, 3147, 3150, 1, 0, 0, 0, 3148, 3146, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 395, 1, 0, 0, 0, 3150, 3148, 1, 0, 0, 0, 3151, 3152, 5, 139, 0, 0, 3152, 3153, 3, 398, 199, 0, 3153, 397, 1, 0, 0, 0, 3154, 3155, 5, 359, 0, 0, 3155, 3158, 3, 406, 203, 0, 3156, 3157, 5, 397, 0, 0, 3157, 3159, 3, 406, 203, 0, 3158, 3156, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3158, 1, 0, 0, 0, 3160, 3161, 1, 0, 0, 0, 3161, 3164, 1, 0, 0, 0, 3162, 3164, 3, 402, 201, 0, 3163, 3154, 1, 0, 0, 0, 3163, 3162, 1, 0, 0, 0, 3164, 399, 1, 0, 0, 0, 3165, 3169, 3, 416, 208, 0, 3166, 3168, 3, 410, 205, 0, 3167, 3166, 1, 0, 0, 0, 3168, 3171, 1, 0, 0, 0, 3169, 3167, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3198, 1, 0, 0, 0, 3171, 3169, 1, 0, 0, 0, 3172, 3176, 3, 450, 225, 0, 3173, 3175, 3, 410, 205, 0, 3174, 3173, 1, 0, 0, 0, 3175, 3178, 1, 0, 0, 0, 3176, 3174, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3198, 1, 0, 0, 0, 3178, 3176, 1, 0, 0, 0, 3179, 3183, 3, 434, 217, 0, 3180, 3182, 3, 410, 205, 0, 3181, 3180, 1, 0, 0, 0, 3182, 3185, 1, 0, 0, 0, 3183, 3181, 1, 0, 0, 0, 3183, 3184, 1, 0, 0, 0, 3184, 3198, 1, 0, 0, 0, 3185, 3183, 1, 0, 0, 0, 3186, 3190, 3, 440, 220, 0, 3187, 3189, 3, 410, 205, 0, 3188, 3187, 1, 0, 0, 0, 3189, 3192, 1, 0, 0, 0, 3190, 3188, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3198, 1, 0, 0, 0, 3192, 3190, 1, 0, 0, 0, 3193, 3194, 5, 399, 0, 0, 3194, 3195, 3, 402, 201, 0, 3195, 3196, 5, 400, 0, 0, 3196, 3198, 1, 0, 0, 0, 3197, 3165, 1, 0, 0, 0, 3197, 3172, 1, 0, 0, 0, 3197, 3179, 1, 0, 0, 0, 3197, 3186, 1, 0, 0, 0, 3197, 3193, 1, 0, 0, 0, 3198, 401, 1, 0, 0, 0, 3199, 3217, 3, 400, 200, 0, 3200, 3201, 3, 408, 204, 0, 3201, 3213, 3, 404, 202, 0, 3202, 3209, 5, 224, 0, 0, 3203, 3210, 3, 536, 268, 0, 3204, 3207, 3, 226, 113, 0, 3205, 3206, 5, 405, 0, 0, 3206, 3208, 3, 226, 113, 0, 3207, 3205, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3203, 1, 0, 0, 0, 3209, 3204, 1, 0, 0, 0, 3210, 3214, 1, 0, 0, 0, 3211, 3212, 5, 370, 0, 0, 3212, 3214, 3, 234, 117, 0, 3213, 3202, 1, 0, 0, 0, 3213, 3211, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3200, 1, 0, 0, 0, 3216, 3219, 1, 0, 0, 0, 3217, 3215, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 403, 1, 0, 0, 0, 3219, 3217, 1, 0, 0, 0, 3220, 3225, 3, 416, 208, 0, 3221, 3225, 3, 450, 225, 0, 3222, 3225, 3, 434, 217, 0, 3223, 3225, 3, 440, 220, 0, 3224, 3220, 1, 0, 0, 0, 3224, 3221, 1, 0, 0, 0, 3224, 3222, 1, 0, 0, 0, 3224, 3223, 1, 0, 0, 0, 3225, 3229, 1, 0, 0, 0, 3226, 3228, 3, 410, 205, 0, 3227, 3226, 1, 0, 0, 0, 3228, 3231, 1, 0, 0, 0, 3229, 3227, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 405, 1, 0, 0, 0, 3231, 3229, 1, 0, 0, 0, 3232, 3234, 5, 250, 0, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 3, 424, 212, 0, 3236, 3238, 3, 414, 207, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3243, 1, 0, 0, 0, 3239, 3241, 5, 17, 0, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3242, 1, 0, 0, 0, 3242, 3244, 3, 590, 295, 0, 3243, 3240, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3246, 5, 399, 0, 0, 3246, 3247, 3, 392, 196, 0, 3247, 3248, 5, 400, 0, 0, 3248, 407, 1, 0, 0, 0, 3249, 3264, 5, 397, 0, 0, 3250, 3261, 5, 157, 0, 0, 3251, 3261, 5, 60, 0, 0, 3252, 3254, 7, 32, 0, 0, 3253, 3255, 5, 231, 0, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3261, 1, 0, 0, 0, 3256, 3258, 5, 180, 0, 0, 3257, 3259, 7, 33, 0, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3250, 1, 0, 0, 0, 3260, 3251, 1, 0, 0, 0, 3260, 3252, 1, 0, 0, 0, 3260, 3256, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 5, 171, 0, 0, 3263, 3249, 1, 0, 0, 0, 3263, 3260, 1, 0, 0, 0, 3264, 409, 1, 0, 0, 0, 3265, 3266, 5, 178, 0, 0, 3266, 3267, 5, 378, 0, 0, 3267, 3268, 5, 231, 0, 0, 3268, 3269, 3, 508, 254, 0, 3269, 3279, 3, 412, 206, 0, 3270, 3271, 5, 17, 0, 0, 3271, 3276, 3, 590, 295, 0, 3272, 3273, 5, 397, 0, 0, 3273, 3275, 3, 590, 295, 0, 3274, 3272, 1, 0, 0, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3274, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3280, 1, 0, 0, 0, 3278, 3276, 1, 0, 0, 0, 3279, 3270, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3323, 1, 0, 0, 0, 3281, 3283, 5, 397, 0, 0, 3282, 3281, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3320, 5, 178, 0, 0, 3285, 3286, 5, 378, 0, 0, 3286, 3287, 3, 508, 254, 0, 3287, 3297, 3, 412, 206, 0, 3288, 3289, 5, 17, 0, 0, 3289, 3294, 3, 590, 295, 0, 3290, 3291, 5, 397, 0, 0, 3291, 3293, 3, 590, 295, 0, 3292, 3290, 1, 0, 0, 0, 3293, 3296, 1, 0, 0, 0, 3294, 3292, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 3298, 1, 0, 0, 0, 3296, 3294, 1, 0, 0, 0, 3297, 3288, 1, 0, 0, 0, 3297, 3298, 1, 0, 0, 0, 3298, 3321, 1, 0, 0, 0, 3299, 3300, 5, 329, 0, 0, 3300, 3301, 5, 399, 0, 0, 3301, 3302, 3, 446, 223, 0, 3302, 3304, 5, 400, 0, 0, 3303, 3305, 5, 17, 0, 0, 3304, 3303, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3318, 3, 412, 206, 0, 3307, 3308, 5, 399, 0, 0, 3308, 3313, 3, 590, 295, 0, 3309, 3310, 5, 397, 0, 0, 3310, 3312, 3, 590, 295, 0, 3311, 3309, 1, 0, 0, 0, 3312, 3315, 1, 0, 0, 0, 3313, 3311, 1, 0, 0, 0, 3313, 3314, 1, 0, 0, 0, 3314, 3316, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3316, 3317, 5, 400, 0, 0, 3317, 3319, 1, 0, 0, 0, 3318, 3307, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3321, 1, 0, 0, 0, 3320, 3285, 1, 0, 0, 0, 3320, 3299, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3265, 1, 0, 0, 0, 3322, 3282, 1, 0, 0, 0, 3323, 411, 1, 0, 0, 0, 3324, 3325, 3, 590, 295, 0, 3325, 413, 1, 0, 0, 0, 3326, 3327, 5, 331, 0, 0, 3327, 3328, 5, 399, 0, 0, 3328, 3329, 5, 30, 0, 0, 3329, 3330, 5, 431, 0, 0, 3330, 3331, 5, 230, 0, 0, 3331, 3332, 5, 221, 0, 0, 3332, 3342, 5, 431, 0, 0, 3333, 3334, 5, 224, 0, 0, 3334, 3339, 3, 536, 268, 0, 3335, 3336, 5, 397, 0, 0, 3336, 3338, 3, 536, 268, 0, 3337, 3335, 1, 0, 0, 0, 3338, 3341, 1, 0, 0, 0, 3339, 3337, 1, 0, 0, 0, 3339, 3340, 1, 0, 0, 0, 3340, 3343, 1, 0, 0, 0, 3341, 3339, 1, 0, 0, 0, 3342, 3333, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3354, 5, 400, 0, 0, 3345, 3346, 5, 331, 0, 0, 3346, 3350, 5, 399, 0, 0, 3347, 3348, 5, 431, 0, 0, 3348, 3351, 7, 34, 0, 0, 3349, 3351, 5, 430, 0, 0, 3350, 3347, 1, 0, 0, 0, 3350, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3354, 5, 400, 0, 0, 3353, 3326, 1, 0, 0, 0, 3353, 3345, 1, 0, 0, 0, 3354, 415, 1, 0, 0, 0, 3355, 3357, 3, 424, 212, 0, 3356, 3358, 3, 192, 96, 0, 3357, 3356, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3360, 1, 0, 0, 0, 3359, 3361, 3, 414, 207, 0, 3360, 3359, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 3363, 1, 0, 0, 0, 3362, 3364, 3, 418, 209, 0, 3363, 3362, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3369, 1, 0, 0, 0, 3365, 3367, 5, 17, 0, 0, 3366, 3365, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3370, 3, 590, 295, 0, 3369, 3366, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 417, 1, 0, 0, 0, 3371, 3381, 5, 134, 0, 0, 3372, 3373, 5, 327, 0, 0, 3373, 3374, 5, 17, 0, 0, 3374, 3375, 5, 221, 0, 0, 3375, 3382, 3, 536, 268, 0, 3376, 3377, 5, 134, 0, 0, 3377, 3378, 5, 328, 0, 0, 3378, 3379, 5, 17, 0, 0, 3379, 3380, 5, 221, 0, 0, 3380, 3382, 5, 431, 0, 0, 3381, 3372, 1, 0, 0, 0, 3381, 3376, 1, 0, 0, 0, 3382, 419, 1, 0, 0, 0, 3383, 3384, 3, 590, 295, 0, 3384, 421, 1, 0, 0, 0, 3385, 3386, 3, 590, 295, 0, 3386, 423, 1, 0, 0, 0, 3387, 3390, 3, 426, 213, 0, 3388, 3390, 3, 430, 215, 0, 3389, 3387, 1, 0, 0, 0, 3389, 3388, 1, 0, 0, 0, 3390, 425, 1, 0, 0, 0, 3391, 3392, 3, 590, 295, 0, 3392, 3393, 5, 395, 0, 0, 3393, 3396, 3, 590, 295, 0, 3394, 3395, 5, 395, 0, 0, 3395, 3397, 3, 590, 295, 0, 3396, 3394, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3400, 1, 0, 0, 0, 3398, 3400, 3, 590, 295, 0, 3399, 3391, 1, 0, 0, 0, 3399, 3398, 1, 0, 0, 0, 3400, 427, 1, 0, 0, 0, 3401, 3402, 3, 590, 295, 0, 3402, 3403, 5, 395, 0, 0, 3403, 3406, 3, 590, 295, 0, 3404, 3405, 5, 395, 0, 0, 3405, 3407, 3, 590, 295, 0, 3406, 3404, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3410, 1, 0, 0, 0, 3408, 3410, 3, 590, 295, 0, 3409, 3401, 1, 0, 0, 0, 3409, 3408, 1, 0, 0, 0, 3410, 429, 1, 0, 0, 0, 3411, 3412, 3, 590, 295, 0, 3412, 3413, 5, 395, 0, 0, 3413, 3415, 1, 0, 0, 0, 3414, 3411, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3417, 3, 590, 295, 0, 3417, 431, 1, 0, 0, 0, 3418, 3419, 3, 590, 295, 0, 3419, 3420, 5, 395, 0, 0, 3420, 3422, 1, 0, 0, 0, 3421, 3418, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 3, 590, 295, 0, 3424, 433, 1, 0, 0, 0, 3425, 3426, 5, 399, 0, 0, 3426, 3427, 3, 314, 157, 0, 3427, 3429, 5, 400, 0, 0, 3428, 3430, 5, 17, 0, 0, 3429, 3428, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 3, 590, 295, 0, 3432, 435, 1, 0, 0, 0, 3433, 3435, 3, 500, 250, 0, 3434, 3436, 3, 498, 249, 0, 3435, 3434, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3445, 1, 0, 0, 0, 3437, 3445, 3, 498, 249, 0, 3438, 3440, 3, 504, 252, 0, 3439, 3441, 3, 506, 253, 0, 3440, 3439, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3445, 1, 0, 0, 0, 3442, 3445, 3, 506, 253, 0, 3443, 3445, 3, 502, 251, 0, 3444, 3433, 1, 0, 0, 0, 3444, 3437, 1, 0, 0, 0, 3444, 3438, 1, 0, 0, 0, 3444, 3442, 1, 0, 0, 0, 3444, 3443, 1, 0, 0, 0, 3445, 437, 1, 0, 0, 0, 3446, 3450, 3, 434, 217, 0, 3447, 3450, 3, 416, 208, 0, 3448, 3450, 3, 440, 220, 0, 3449, 3446, 1, 0, 0, 0, 3449, 3447, 1, 0, 0, 0, 3449, 3448, 1, 0, 0, 0, 3450, 439, 1, 0, 0, 0, 3451, 3453, 3, 442, 221, 0, 3452, 3454, 3, 590, 295, 0, 3453, 3452, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 441, 1, 0, 0, 0, 3455, 3456, 3, 590, 295, 0, 3456, 3457, 5, 399, 0, 0, 3457, 3458, 5, 224, 0, 0, 3458, 3460, 3, 438, 219, 0, 3459, 3461, 3, 436, 218, 0, 3460, 3459, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3477, 1, 0, 0, 0, 3462, 3463, 5, 432, 0, 0, 3463, 3464, 5, 399, 0, 0, 3464, 3465, 3, 536, 268, 0, 3465, 3474, 5, 400, 0, 0, 3466, 3467, 5, 397, 0, 0, 3467, 3468, 5, 432, 0, 0, 3468, 3469, 5, 399, 0, 0, 3469, 3470, 3, 536, 268, 0, 3470, 3471, 5, 400, 0, 0, 3471, 3473, 1, 0, 0, 0, 3472, 3466, 1, 0, 0, 0, 3473, 3476, 1, 0, 0, 0, 3474, 3472, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3477, 3462, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3480, 5, 400, 0, 0, 3480, 443, 1, 0, 0, 0, 3481, 3484, 5, 384, 0, 0, 3482, 3485, 3, 536, 268, 0, 3483, 3485, 3, 226, 113, 0, 3484, 3482, 1, 0, 0, 0, 3484, 3483, 1, 0, 0, 0, 3485, 445, 1, 0, 0, 0, 3486, 3505, 5, 374, 0, 0, 3487, 3492, 3, 494, 247, 0, 3488, 3489, 5, 397, 0, 0, 3489, 3491, 3, 494, 247, 0, 3490, 3488, 1, 0, 0, 0, 3491, 3494, 1, 0, 0, 0, 3492, 3490, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3506, 1, 0, 0, 0, 3494, 3492, 1, 0, 0, 0, 3495, 3496, 5, 399, 0, 0, 3496, 3497, 3, 490, 245, 0, 3497, 3502, 5, 400, 0, 0, 3498, 3499, 5, 397, 0, 0, 3499, 3501, 3, 494, 247, 0, 3500, 3498, 1, 0, 0, 0, 3501, 3504, 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3506, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3505, 3487, 1, 0, 0, 0, 3505, 3495, 1, 0, 0, 0, 3506, 447, 1, 0, 0, 0, 3507, 3508, 5, 329, 0, 0, 3508, 3509, 5, 399, 0, 0, 3509, 3510, 3, 446, 223, 0, 3510, 3511, 5, 400, 0, 0, 3511, 449, 1, 0, 0, 0, 3512, 3514, 3, 448, 224, 0, 3513, 3515, 5, 17, 0, 0, 3514, 3513, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 3526, 3, 412, 206, 0, 3517, 3518, 5, 399, 0, 0, 3518, 3523, 3, 590, 295, 0, 3519, 3520, 5, 397, 0, 0, 3520, 3522, 3, 590, 295, 0, 3521, 3519, 1, 0, 0, 0, 3522, 3525, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3526, 3517, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3529, 5, 400, 0, 0, 3529, 451, 1, 0, 0, 0, 3530, 3532, 5, 299, 0, 0, 3531, 3533, 5, 436, 0, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3540, 1, 0, 0, 0, 3534, 3536, 7, 26, 0, 0, 3535, 3534, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3537, 1, 0, 0, 0, 3537, 3541, 3, 456, 228, 0, 3538, 3539, 5, 347, 0, 0, 3539, 3541, 3, 454, 227, 0, 3540, 3535, 1, 0, 0, 0, 3540, 3538, 1, 0, 0, 0, 3541, 3544, 1, 0, 0, 0, 3542, 3544, 3, 464, 232, 0, 3543, 3530, 1, 0, 0, 0, 3543, 3542, 1, 0, 0, 0, 3544, 453, 1, 0, 0, 0, 3545, 3546, 5, 399, 0, 0, 3546, 3547, 3, 468, 234, 0, 3547, 3548, 5, 400, 0, 0, 3548, 3549, 3, 184, 92, 0, 3549, 3550, 5, 267, 0, 0, 3550, 3551, 5, 426, 0, 0, 3551, 3552, 5, 370, 0, 0, 3552, 3565, 5, 426, 0, 0, 3553, 3563, 5, 17, 0, 0, 3554, 3557, 5, 399, 0, 0, 3555, 3558, 3, 394, 197, 0, 3556, 3558, 3, 214, 107, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3556, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3560, 5, 400, 0, 0, 3560, 3564, 1, 0, 0, 0, 3561, 3564, 3, 394, 197, 0, 3562, 3564, 3, 214, 107, 0, 3563, 3554, 1, 0, 0, 0, 3563, 3561, 1, 0, 0, 0, 3563, 3562, 1, 0, 0, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3553, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3567, 1, 0, 0, 0, 3567, 3568, 3, 184, 92, 0, 3568, 3569, 5, 266, 0, 0, 3569, 3570, 5, 426, 0, 0, 3570, 455, 1, 0, 0, 0, 3571, 3576, 3, 458, 229, 0, 3572, 3573, 5, 397, 0, 0, 3573, 3575, 3, 458, 229, 0, 3574, 3572, 1, 0, 0, 0, 3575, 3578, 1, 0, 0, 0, 3576, 3574, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 457, 1, 0, 0, 0, 3578, 3576, 1, 0, 0, 0, 3579, 3605, 3, 390, 195, 0, 3580, 3583, 3, 460, 230, 0, 3581, 3583, 3, 462, 231, 0, 3582, 3580, 1, 0, 0, 0, 3582, 3581, 1, 0, 0, 0, 3583, 3600, 1, 0, 0, 0, 3584, 3586, 5, 17, 0, 0, 3585, 3584, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3601, 3, 590, 295, 0, 3588, 3589, 5, 17, 0, 0, 3589, 3590, 5, 399, 0, 0, 3590, 3595, 3, 590, 295, 0, 3591, 3592, 5, 397, 0, 0, 3592, 3594, 3, 590, 295, 0, 3593, 3591, 1, 0, 0, 0, 3594, 3597, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3598, 1, 0, 0, 0, 3597, 3595, 1, 0, 0, 0, 3598, 3599, 5, 400, 0, 0, 3599, 3601, 1, 0, 0, 0, 3600, 3585, 1, 0, 0, 0, 3600, 3588, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3605, 1, 0, 0, 0, 3602, 3603, 4, 229, 2, 0, 3603, 3605, 3, 618, 309, 0, 3604, 3579, 1, 0, 0, 0, 3604, 3582, 1, 0, 0, 0, 3604, 3602, 1, 0, 0, 0, 3605, 459, 1, 0, 0, 0, 3606, 3607, 3, 222, 111, 0, 3607, 461, 1, 0, 0, 0, 3608, 3609, 3, 536, 268, 0, 3609, 463, 1, 0, 0, 0, 3610, 3611, 7, 35, 0, 0, 3611, 3612, 3, 468, 234, 0, 3612, 3613, 3, 184, 92, 0, 3613, 3614, 5, 267, 0, 0, 3614, 3615, 5, 426, 0, 0, 3615, 3616, 5, 370, 0, 0, 3616, 3629, 5, 426, 0, 0, 3617, 3627, 5, 17, 0, 0, 3618, 3621, 5, 399, 0, 0, 3619, 3622, 3, 394, 197, 0, 3620, 3622, 3, 214, 107, 0, 3621, 3619, 1, 0, 0, 0, 3621, 3620, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 3624, 5, 400, 0, 0, 3624, 3628, 1, 0, 0, 0, 3625, 3628, 3, 394, 197, 0, 3626, 3628, 3, 214, 107, 0, 3627, 3618, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3626, 1, 0, 0, 0, 3628, 3630, 1, 0, 0, 0, 3629, 3617, 1, 0, 0, 0, 3629, 3630, 1, 0, 0, 0, 3630, 3631, 1, 0, 0, 0, 3631, 3632, 3, 184, 92, 0, 3632, 3633, 5, 266, 0, 0, 3633, 3634, 5, 426, 0, 0, 3634, 465, 1, 0, 0, 0, 3635, 3638, 3, 390, 195, 0, 3636, 3638, 3, 536, 268, 0, 3637, 3635, 1, 0, 0, 0, 3637, 3636, 1, 0, 0, 0, 3638, 467, 1, 0, 0, 0, 3639, 3644, 3, 466, 233, 0, 3640, 3641, 5, 397, 0, 0, 3641, 3643, 3, 466, 233, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3646, 1, 0, 0, 0, 3644, 3642, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 469, 1, 0, 0, 0, 3646, 3644, 1, 0, 0, 0, 3647, 3648, 5, 386, 0, 0, 3648, 3649, 3, 590, 295, 0, 3649, 3650, 5, 17, 0, 0, 3650, 3658, 3, 472, 236, 0, 3651, 3652, 5, 397, 0, 0, 3652, 3653, 3, 590, 295, 0, 3653, 3654, 5, 17, 0, 0, 3654, 3655, 3, 472, 236, 0, 3655, 3657, 1, 0, 0, 0, 3656, 3651, 1, 0, 0, 0, 3657, 3660, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 471, 1, 0, 0, 0, 3660, 3658, 1, 0, 0, 0, 3661, 3674, 3, 590, 295, 0, 3662, 3664, 5, 399, 0, 0, 3663, 3665, 3, 590, 295, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3667, 1, 0, 0, 0, 3666, 3668, 3, 436, 218, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3670, 1, 0, 0, 0, 3669, 3671, 3, 474, 237, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3672, 1, 0, 0, 0, 3672, 3674, 5, 400, 0, 0, 3673, 3661, 1, 0, 0, 0, 3673, 3662, 1, 0, 0, 0, 3674, 473, 1, 0, 0, 0, 3675, 3689, 7, 36, 0, 0, 3676, 3677, 5, 354, 0, 0, 3677, 3683, 5, 247, 0, 0, 3678, 3679, 5, 62, 0, 0, 3679, 3683, 5, 291, 0, 0, 3680, 3681, 5, 431, 0, 0, 3681, 3683, 5, 247, 0, 0, 3682, 3676, 1, 0, 0, 0, 3682, 3678, 1, 0, 0, 0, 3682, 3680, 1, 0, 0, 0, 3683, 3690, 1, 0, 0, 0, 3684, 3685, 5, 25, 0, 0, 3685, 3686, 3, 476, 238, 0, 3686, 3687, 5, 11, 0, 0, 3687, 3688, 3, 476, 238, 0, 3688, 3690, 1, 0, 0, 0, 3689, 3682, 1, 0, 0, 0, 3689, 3684, 1, 0, 0, 0, 3690, 475, 1, 0, 0, 0, 3691, 3692, 7, 37, 0, 0, 3692, 3696, 7, 38, 0, 0, 3693, 3694, 5, 62, 0, 0, 3694, 3696, 5, 291, 0, 0, 3695, 3691, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3696, 477, 1, 0, 0, 0, 3697, 3698, 5, 144, 0, 0, 3698, 3704, 5, 32, 0, 0, 3699, 3705, 3, 222, 111, 0, 3700, 3705, 3, 480, 240, 0, 3701, 3705, 3, 482, 241, 0, 3702, 3703, 5, 399, 0, 0, 3703, 3705, 5, 400, 0, 0, 3704, 3699, 1, 0, 0, 0, 3704, 3700, 1, 0, 0, 0, 3704, 3701, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 479, 1, 0, 0, 0, 3706, 3709, 5, 290, 0, 0, 3707, 3709, 5, 61, 0, 0, 3708, 3706, 1, 0, 0, 0, 3708, 3707, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3711, 5, 399, 0, 0, 3711, 3716, 3, 536, 268, 0, 3712, 3713, 5, 397, 0, 0, 3713, 3715, 3, 536, 268, 0, 3714, 3712, 1, 0, 0, 0, 3715, 3718, 1, 0, 0, 0, 3716, 3714, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3719, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3720, 5, 400, 0, 0, 3720, 481, 1, 0, 0, 0, 3721, 3726, 3, 496, 248, 0, 3722, 3723, 5, 387, 0, 0, 3723, 3727, 5, 290, 0, 0, 3724, 3725, 5, 387, 0, 0, 3725, 3727, 5, 61, 0, 0, 3726, 3722, 1, 0, 0, 0, 3726, 3724, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3741, 1, 0, 0, 0, 3728, 3729, 5, 145, 0, 0, 3729, 3730, 5, 305, 0, 0, 3730, 3731, 5, 399, 0, 0, 3731, 3736, 3, 484, 242, 0, 3732, 3733, 5, 397, 0, 0, 3733, 3735, 3, 484, 242, 0, 3734, 3732, 1, 0, 0, 0, 3735, 3738, 1, 0, 0, 0, 3736, 3734, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3739, 1, 0, 0, 0, 3738, 3736, 1, 0, 0, 0, 3739, 3740, 5, 400, 0, 0, 3740, 3742, 1, 0, 0, 0, 3741, 3728, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 483, 1, 0, 0, 0, 3743, 3745, 5, 399, 0, 0, 3744, 3746, 3, 536, 268, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3751, 1, 0, 0, 0, 3747, 3748, 5, 397, 0, 0, 3748, 3750, 3, 536, 268, 0, 3749, 3747, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3754, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3754, 3757, 5, 400, 0, 0, 3755, 3757, 3, 536, 268, 0, 3756, 3743, 1, 0, 0, 0, 3756, 3755, 1, 0, 0, 0, 3757, 485, 1, 0, 0, 0, 3758, 3761, 5, 146, 0, 0, 3759, 3762, 3, 536, 268, 0, 3760, 3762, 3, 226, 113, 0, 3761, 3759, 1, 0, 0, 0, 3761, 3760, 1, 0, 0, 0, 3762, 487, 1, 0, 0, 0, 3763, 3764, 5, 256, 0, 0, 3764, 3765, 3, 536, 268, 0, 3765, 489, 1, 0, 0, 0, 3766, 3768, 3, 536, 268, 0, 3767, 3769, 5, 17, 0, 0, 3768, 3767, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3771, 1, 0, 0, 0, 3770, 3772, 3, 590, 295, 0, 3771, 3770, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3783, 1, 0, 0, 0, 3773, 3774, 5, 397, 0, 0, 3774, 3776, 3, 536, 268, 0, 3775, 3777, 5, 17, 0, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3779, 1, 0, 0, 0, 3778, 3780, 3, 590, 295, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3782, 1, 0, 0, 0, 3781, 3773, 1, 0, 0, 0, 3782, 3785, 1, 0, 0, 0, 3783, 3781, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 491, 1, 0, 0, 0, 3785, 3783, 1, 0, 0, 0, 3786, 3789, 3, 494, 247, 0, 3787, 3789, 3, 496, 248, 0, 3788, 3786, 1, 0, 0, 0, 3788, 3787, 1, 0, 0, 0, 3789, 493, 1, 0, 0, 0, 3790, 3791, 5, 399, 0, 0, 3791, 3792, 3, 496, 248, 0, 3792, 3793, 5, 400, 0, 0, 3793, 495, 1, 0, 0, 0, 3794, 3797, 5, 83, 0, 0, 3795, 3797, 3, 536, 268, 0, 3796, 3794, 1, 0, 0, 0, 3796, 3795, 1, 0, 0, 0, 3797, 3807, 1, 0, 0, 0, 3798, 3801, 5, 397, 0, 0, 3799, 3802, 5, 83, 0, 0, 3800, 3802, 3, 536, 268, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3800, 1, 0, 0, 0, 3802, 3804, 1, 0, 0, 0, 3803, 3798, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3803, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3808, 1, 0, 0, 0, 3807, 3803, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 497, 1, 0, 0, 0, 3809, 3810, 5, 229, 0, 0, 3810, 3811, 5, 32, 0, 0, 3811, 3816, 3, 274, 137, 0, 3812, 3813, 5, 397, 0, 0, 3813, 3815, 3, 274, 137, 0, 3814, 3812, 1, 0, 0, 0, 3815, 3818, 1, 0, 0, 0, 3816, 3814, 1, 0, 0, 0, 3816, 3817, 1, 0, 0, 0, 3817, 499, 1, 0, 0, 0, 3818, 3816, 1, 0, 0, 0, 3819, 3820, 5, 237, 0, 0, 3820, 3821, 5, 32, 0, 0, 3821, 3822, 3, 492, 246, 0, 3822, 501, 1, 0, 0, 0, 3823, 3824, 5, 41, 0, 0, 3824, 3825, 5, 32, 0, 0, 3825, 3826, 3, 492, 246, 0, 3826, 503, 1, 0, 0, 0, 3827, 3828, 5, 97, 0, 0, 3828, 3829, 5, 32, 0, 0, 3829, 3830, 3, 492, 246, 0, 3830, 505, 1, 0, 0, 0, 3831, 3832, 5, 314, 0, 0, 3832, 3852, 5, 32, 0, 0, 3833, 3834, 5, 399, 0, 0, 3834, 3839, 3, 274, 137, 0, 3835, 3836, 5, 397, 0, 0, 3836, 3838, 3, 274, 137, 0, 3837, 3835, 1, 0, 0, 0, 3838, 3841, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 3842, 1, 0, 0, 0, 3841, 3839, 1, 0, 0, 0, 3842, 3843, 5, 400, 0, 0, 3843, 3853, 1, 0, 0, 0, 3844, 3849, 3, 274, 137, 0, 3845, 3846, 5, 397, 0, 0, 3846, 3848, 3, 274, 137, 0, 3847, 3845, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3850, 1, 0, 0, 0, 3850, 3853, 1, 0, 0, 0, 3851, 3849, 1, 0, 0, 0, 3852, 3833, 1, 0, 0, 0, 3852, 3844, 1, 0, 0, 0, 3853, 507, 1, 0, 0, 0, 3854, 3855, 5, 349, 0, 0, 3855, 3859, 5, 399, 0, 0, 3856, 3860, 5, 179, 0, 0, 3857, 3860, 5, 343, 0, 0, 3858, 3860, 5, 29, 0, 0, 3859, 3856, 1, 0, 0, 0, 3859, 3857, 1, 0, 0, 0, 3859, 3858, 1, 0, 0, 0, 3859, 3860, 1, 0, 0, 0, 3860, 3862, 1, 0, 0, 0, 3861, 3863, 3, 466, 233, 0, 3862, 3861, 1, 0, 0, 0, 3862, 3863, 1, 0, 0, 0, 3863, 3864, 1, 0, 0, 0, 3864, 3865, 5, 139, 0, 0, 3865, 3866, 3, 466, 233, 0, 3866, 3867, 5, 400, 0, 0, 3867, 3910, 1, 0, 0, 0, 3868, 3869, 3, 514, 257, 0, 3869, 3884, 5, 399, 0, 0, 3870, 3885, 5, 415, 0, 0, 3871, 3873, 7, 26, 0, 0, 3872, 3871, 1, 0, 0, 0, 3872, 3873, 1, 0, 0, 0, 3873, 3882, 1, 0, 0, 0, 3874, 3879, 3, 466, 233, 0, 3875, 3876, 5, 397, 0, 0, 3876, 3878, 3, 466, 233, 0, 3877, 3875, 1, 0, 0, 0, 3878, 3881, 1, 0, 0, 0, 3879, 3877, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3883, 1, 0, 0, 0, 3881, 3879, 1, 0, 0, 0, 3882, 3874, 1, 0, 0, 0, 3882, 3883, 1, 0, 0, 0, 3883, 3885, 1, 0, 0, 0, 3884, 3870, 1, 0, 0, 0, 3884, 3872, 1, 0, 0, 0, 3885, 3907, 1, 0, 0, 0, 3886, 3887, 5, 400, 0, 0, 3887, 3888, 5, 388, 0, 0, 3888, 3889, 5, 144, 0, 0, 3889, 3890, 5, 399, 0, 0, 3890, 3891, 3, 498, 249, 0, 3891, 3892, 5, 400, 0, 0, 3892, 3908, 1, 0, 0, 0, 3893, 3896, 5, 400, 0, 0, 3894, 3895, 7, 39, 0, 0, 3895, 3897, 5, 220, 0, 0, 3896, 3894, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3899, 5, 234, 0, 0, 3899, 3908, 3, 472, 236, 0, 3900, 3901, 7, 39, 0, 0, 3901, 3902, 5, 220, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3904, 5, 400, 0, 0, 3904, 3905, 5, 234, 0, 0, 3905, 3908, 3, 472, 236, 0, 3906, 3908, 5, 400, 0, 0, 3907, 3886, 1, 0, 0, 0, 3907, 3893, 1, 0, 0, 0, 3907, 3900, 1, 0, 0, 0, 3907, 3906, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3854, 1, 0, 0, 0, 3909, 3868, 1, 0, 0, 0, 3910, 509, 1, 0, 0, 0, 3911, 3912, 3, 592, 296, 0, 3912, 511, 1, 0, 0, 0, 3913, 3916, 3, 592, 296, 0, 3914, 3916, 5, 426, 0, 0, 3915, 3913, 1, 0, 0, 0, 3915, 3914, 1, 0, 0, 0, 3916, 513, 1, 0, 0, 0, 3917, 3921, 3, 592, 296, 0, 3918, 3921, 3, 598, 299, 0, 3919, 3921, 3, 588, 294, 0, 3920, 3917, 1, 0, 0, 0, 3920, 3918, 1, 0, 0, 0, 3920, 3919, 1, 0, 0, 0, 3921, 515, 1, 0, 0, 0, 3922, 3923, 5, 36, 0, 0, 3923, 3924, 5, 399, 0, 0, 3924, 3925, 3, 536, 268, 0, 3925, 3926, 5, 17, 0, 0, 3926, 3929, 3, 302, 151, 0, 3927, 3928, 5, 137, 0, 0, 3928, 3930, 5, 426, 0, 0, 3929, 3927, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 3932, 5, 400, 0, 0, 3932, 517, 1, 0, 0, 0, 3933, 3934, 5, 35, 0, 0, 3934, 3940, 3, 536, 268, 0, 3935, 3936, 5, 383, 0, 0, 3936, 3937, 3, 536, 268, 0, 3937, 3938, 5, 335, 0, 0, 3938, 3939, 3, 536, 268, 0, 3939, 3941, 1, 0, 0, 0, 3940, 3935, 1, 0, 0, 0, 3941, 3942, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 3946, 1, 0, 0, 0, 3944, 3945, 5, 105, 0, 0, 3945, 3947, 3, 536, 268, 0, 3946, 3944, 1, 0, 0, 0, 3946, 3947, 1, 0, 0, 0, 3947, 3948, 1, 0, 0, 0, 3948, 3949, 5, 108, 0, 0, 3949, 519, 1, 0, 0, 0, 3950, 3956, 5, 35, 0, 0, 3951, 3952, 5, 383, 0, 0, 3952, 3953, 3, 536, 268, 0, 3953, 3954, 5, 335, 0, 0, 3954, 3955, 3, 536, 268, 0, 3955, 3957, 1, 0, 0, 0, 3956, 3951, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3956, 1, 0, 0, 0, 3958, 3959, 1, 0, 0, 0, 3959, 3962, 1, 0, 0, 0, 3960, 3961, 5, 105, 0, 0, 3961, 3963, 3, 536, 268, 0, 3962, 3960, 1, 0, 0, 0, 3962, 3963, 1, 0, 0, 0, 3963, 3964, 1, 0, 0, 0, 3964, 3965, 5, 108, 0, 0, 3965, 521, 1, 0, 0, 0, 3966, 3967, 5, 132, 0, 0, 3967, 3968, 5, 399, 0, 0, 3968, 3971, 3, 536, 268, 0, 3969, 3970, 5, 341, 0, 0, 3970, 3972, 3, 526, 263, 0, 3971, 3969, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3974, 5, 400, 0, 0, 3974, 523, 1, 0, 0, 0, 3975, 3976, 5, 124, 0, 0, 3976, 3977, 5, 399, 0, 0, 3977, 3978, 3, 526, 263, 0, 3978, 3979, 5, 139, 0, 0, 3979, 3980, 3, 536, 268, 0, 3980, 3981, 5, 400, 0, 0, 3981, 525, 1, 0, 0, 0, 3982, 3991, 7, 40, 0, 0, 3983, 3991, 5, 257, 0, 0, 3984, 3991, 7, 41, 0, 0, 3985, 3991, 7, 42, 0, 0, 3986, 3991, 7, 43, 0, 0, 3987, 3991, 7, 44, 0, 0, 3988, 3991, 7, 45, 0, 0, 3989, 3991, 7, 46, 0, 0, 3990, 3982, 1, 0, 0, 0, 3990, 3983, 1, 0, 0, 0, 3990, 3984, 1, 0, 0, 0, 3990, 3985, 1, 0, 0, 0, 3990, 3986, 1, 0, 0, 0, 3990, 3987, 1, 0, 0, 0, 3990, 3988, 1, 0, 0, 0, 3990, 3989, 1, 0, 0, 0, 3991, 527, 1, 0, 0, 0, 3992, 3993, 3, 530, 265, 0, 3993, 3994, 3, 534, 267, 0, 3994, 4021, 1, 0, 0, 0, 3995, 4021, 5, 431, 0, 0, 3996, 3997, 5, 71, 0, 0, 3997, 4021, 5, 426, 0, 0, 3998, 4021, 5, 63, 0, 0, 3999, 4000, 5, 337, 0, 0, 4000, 4021, 5, 426, 0, 0, 4001, 4021, 5, 64, 0, 0, 4002, 4003, 5, 338, 0, 0, 4003, 4021, 5, 426, 0, 0, 4004, 4008, 5, 426, 0, 0, 4005, 4007, 5, 426, 0, 0, 4006, 4005, 1, 0, 0, 0, 4007, 4010, 1, 0, 0, 0, 4008, 4006, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 4021, 1, 0, 0, 0, 4010, 4008, 1, 0, 0, 0, 4011, 4021, 5, 428, 0, 0, 4012, 4021, 5, 429, 0, 0, 4013, 4014, 5, 433, 0, 0, 4014, 4021, 5, 427, 0, 0, 4015, 4021, 5, 350, 0, 0, 4016, 4021, 5, 125, 0, 0, 4017, 4021, 5, 219, 0, 0, 4018, 4021, 5, 424, 0, 0, 4019, 4021, 3, 224, 112, 0, 4020, 3992, 1, 0, 0, 0, 4020, 3995, 1, 0, 0, 0, 4020, 3996, 1, 0, 0, 0, 4020, 3998, 1, 0, 0, 0, 4020, 3999, 1, 0, 0, 0, 4020, 4001, 1, 0, 0, 0, 4020, 4002, 1, 0, 0, 0, 4020, 4004, 1, 0, 0, 0, 4020, 4011, 1, 0, 0, 0, 4020, 4012, 1, 0, 0, 0, 4020, 4013, 1, 0, 0, 0, 4020, 4015, 1, 0, 0, 0, 4020, 4016, 1, 0, 0, 0, 4020, 4017, 1, 0, 0, 0, 4020, 4018, 1, 0, 0, 0, 4020, 4019, 1, 0, 0, 0, 4021, 529, 1, 0, 0, 0, 4022, 4023, 7, 31, 0, 0, 4023, 531, 1, 0, 0, 0, 4024, 4025, 5, 399, 0, 0, 4025, 4026, 3, 530, 265, 0, 4026, 4027, 5, 400, 0, 0, 4027, 4028, 3, 534, 267, 0, 4028, 4040, 1, 0, 0, 0, 4029, 4035, 5, 165, 0, 0, 4030, 4036, 3, 530, 265, 0, 4031, 4032, 5, 399, 0, 0, 4032, 4033, 3, 536, 268, 0, 4033, 4034, 5, 400, 0, 0, 4034, 4036, 1, 0, 0, 0, 4035, 4030, 1, 0, 0, 0, 4035, 4031, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 3, 534, 267, 0, 4038, 4040, 1, 0, 0, 0, 4039, 4024, 1, 0, 0, 0, 4039, 4029, 1, 0, 0, 0, 4040, 533, 1, 0, 0, 0, 4041, 4042, 7, 40, 0, 0, 4042, 4043, 5, 341, 0, 0, 4043, 4054, 7, 41, 0, 0, 4044, 4045, 7, 43, 0, 0, 4045, 4046, 5, 341, 0, 0, 4046, 4054, 7, 46, 0, 0, 4047, 4054, 7, 40, 0, 0, 4048, 4054, 7, 41, 0, 0, 4049, 4054, 7, 43, 0, 0, 4050, 4054, 7, 44, 0, 0, 4051, 4054, 7, 45, 0, 0, 4052, 4054, 7, 46, 0, 0, 4053, 4041, 1, 0, 0, 0, 4053, 4044, 1, 0, 0, 0, 4053, 4047, 1, 0, 0, 0, 4053, 4048, 1, 0, 0, 0, 4053, 4049, 1, 0, 0, 0, 4053, 4050, 1, 0, 0, 0, 4053, 4051, 1, 0, 0, 0, 4053, 4052, 1, 0, 0, 0, 4054, 535, 1, 0, 0, 0, 4055, 4060, 3, 574, 287, 0, 4056, 4057, 5, 228, 0, 0, 4057, 4059, 3, 574, 287, 0, 4058, 4056, 1, 0, 0, 0, 4059, 4062, 1, 0, 0, 0, 4060, 4058, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 537, 1, 0, 0, 0, 4062, 4060, 1, 0, 0, 0, 4063, 4075, 3, 528, 264, 0, 4064, 4075, 3, 532, 266, 0, 4065, 4075, 3, 516, 258, 0, 4066, 4075, 3, 524, 262, 0, 4067, 4075, 3, 522, 261, 0, 4068, 4075, 3, 518, 259, 0, 4069, 4075, 3, 520, 260, 0, 4070, 4075, 3, 554, 277, 0, 4071, 4075, 3, 508, 254, 0, 4072, 4075, 3, 494, 247, 0, 4073, 4075, 3, 590, 295, 0, 4074, 4063, 1, 0, 0, 0, 4074, 4064, 1, 0, 0, 0, 4074, 4065, 1, 0, 0, 0, 4074, 4066, 1, 0, 0, 0, 4074, 4067, 1, 0, 0, 0, 4074, 4068, 1, 0, 0, 0, 4074, 4069, 1, 0, 0, 0, 4074, 4070, 1, 0, 0, 0, 4074, 4071, 1, 0, 0, 0, 4074, 4072, 1, 0, 0, 0, 4074, 4073, 1, 0, 0, 0, 4075, 539, 1, 0, 0, 0, 4076, 4078, 7, 47, 0, 0, 4077, 4076, 1, 0, 0, 0, 4078, 4081, 1, 0, 0, 0, 4079, 4077, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4082, 1, 0, 0, 0, 4081, 4079, 1, 0, 0, 0, 4082, 4091, 3, 538, 269, 0, 4083, 4084, 5, 401, 0, 0, 4084, 4085, 3, 536, 268, 0, 4085, 4086, 5, 402, 0, 0, 4086, 4090, 1, 0, 0, 0, 4087, 4088, 5, 395, 0, 0, 4088, 4090, 3, 590, 295, 0, 4089, 4083, 1, 0, 0, 0, 4089, 4087, 1, 0, 0, 0, 4090, 4093, 1, 0, 0, 0, 4091, 4089, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 541, 1, 0, 0, 0, 4093, 4091, 1, 0, 0, 0, 4094, 4099, 3, 540, 270, 0, 4095, 4096, 5, 423, 0, 0, 4096, 4098, 3, 540, 270, 0, 4097, 4095, 1, 0, 0, 0, 4098, 4101, 1, 0, 0, 0, 4099, 4097, 1, 0, 0, 0, 4099, 4100, 1, 0, 0, 0, 4100, 543, 1, 0, 0, 0, 4101, 4099, 1, 0, 0, 0, 4102, 4107, 3, 542, 271, 0, 4103, 4104, 7, 48, 0, 0, 4104, 4106, 3, 542, 271, 0, 4105, 4103, 1, 0, 0, 0, 4106, 4109, 1, 0, 0, 0, 4107, 4105, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 545, 1, 0, 0, 0, 4109, 4107, 1, 0, 0, 0, 4110, 4115, 3, 544, 272, 0, 4111, 4112, 7, 49, 0, 0, 4112, 4114, 3, 544, 272, 0, 4113, 4111, 1, 0, 0, 0, 4114, 4117, 1, 0, 0, 0, 4115, 4113, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 547, 1, 0, 0, 0, 4117, 4115, 1, 0, 0, 0, 4118, 4123, 3, 546, 273, 0, 4119, 4120, 5, 422, 0, 0, 4120, 4122, 3, 546, 273, 0, 4121, 4119, 1, 0, 0, 0, 4122, 4125, 1, 0, 0, 0, 4123, 4121, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 549, 1, 0, 0, 0, 4125, 4123, 1, 0, 0, 0, 4126, 4131, 3, 548, 274, 0, 4127, 4128, 5, 419, 0, 0, 4128, 4130, 3, 548, 274, 0, 4129, 4127, 1, 0, 0, 0, 4130, 4133, 1, 0, 0, 0, 4131, 4129, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 551, 1, 0, 0, 0, 4133, 4131, 1, 0, 0, 0, 4134, 4139, 3, 550, 275, 0, 4135, 4136, 5, 421, 0, 0, 4136, 4138, 3, 550, 275, 0, 4137, 4135, 1, 0, 0, 0, 4138, 4141, 1, 0, 0, 0, 4139, 4137, 1, 0, 0, 0, 4139, 4140, 1, 0, 0, 0, 4140, 553, 1, 0, 0, 0, 4141, 4139, 1, 0, 0, 0, 4142, 4143, 5, 399, 0, 0, 4143, 4144, 3, 330, 165, 0, 4144, 4145, 5, 400, 0, 0, 4145, 555, 1, 0, 0, 0, 4146, 4147, 7, 50, 0, 0, 4147, 557, 1, 0, 0, 0, 4148, 4150, 3, 552, 276, 0, 4149, 4151, 3, 560, 280, 0, 4150, 4149, 1, 0, 0, 0, 4150, 4151, 1, 0, 0, 0, 4151, 4155, 1, 0, 0, 0, 4152, 4153, 5, 117, 0, 0, 4153, 4155, 3, 554, 277, 0, 4154, 4148, 1, 0, 0, 0, 4154, 4152, 1, 0, 0, 0, 4155, 559, 1, 0, 0, 0, 4156, 4157, 3, 556, 278, 0, 4157, 4158, 3, 552, 276, 0, 4158, 4167, 1, 0, 0, 0, 4159, 4167, 3, 562, 281, 0, 4160, 4164, 5, 216, 0, 0, 4161, 4162, 7, 51, 0, 0, 4162, 4165, 3, 552, 276, 0, 4163, 4165, 3, 562, 281, 0, 4164, 4161, 1, 0, 0, 0, 4164, 4163, 1, 0, 0, 0, 4165, 4167, 1, 0, 0, 0, 4166, 4156, 1, 0, 0, 0, 4166, 4159, 1, 0, 0, 0, 4166, 4160, 1, 0, 0, 0, 4167, 561, 1, 0, 0, 0, 4168, 4171, 5, 154, 0, 0, 4169, 4172, 3, 554, 277, 0, 4170, 4172, 3, 494, 247, 0, 4171, 4169, 1, 0, 0, 0, 4171, 4170, 1, 0, 0, 0, 4172, 4186, 1, 0, 0, 0, 4173, 4174, 5, 25, 0, 0, 4174, 4175, 3, 552, 276, 0, 4175, 4176, 5, 11, 0, 0, 4176, 4177, 3, 552, 276, 0, 4177, 4186, 1, 0, 0, 0, 4178, 4179, 5, 184, 0, 0, 4179, 4180, 7, 52, 0, 0, 4180, 4186, 3, 494, 247, 0, 4181, 4182, 3, 586, 293, 0, 4182, 4183, 7, 53, 0, 0, 4183, 4184, 3, 554, 277, 0, 4184, 4186, 1, 0, 0, 0, 4185, 4168, 1, 0, 0, 0, 4185, 4173, 1, 0, 0, 0, 4185, 4178, 1, 0, 0, 0, 4185, 4181, 1, 0, 0, 0, 4186, 563, 1, 0, 0, 0, 4187, 4188, 5, 167, 0, 0, 4188, 4189, 5, 96, 0, 0, 4189, 4190, 5, 139, 0, 0, 4190, 565, 1, 0, 0, 0, 4191, 4199, 5, 405, 0, 0, 4192, 4199, 5, 406, 0, 0, 4193, 4199, 5, 407, 0, 0, 4194, 4195, 5, 167, 0, 0, 4195, 4196, 5, 216, 0, 0, 4196, 4197, 5, 96, 0, 0, 4197, 4199, 5, 139, 0, 0, 4198, 4191, 1, 0, 0, 0, 4198, 4192, 1, 0, 0, 0, 4198, 4193, 1, 0, 0, 0, 4198, 4194, 1, 0, 0, 0, 4199, 567, 1, 0, 0, 0, 4200, 4209, 3, 558, 279, 0, 4201, 4202, 3, 566, 283, 0, 4202, 4203, 3, 558, 279, 0, 4203, 4208, 1, 0, 0, 0, 4204, 4205, 3, 564, 282, 0, 4205, 4206, 3, 558, 279, 0, 4206, 4208, 1, 0, 0, 0, 4207, 4201, 1, 0, 0, 0, 4207, 4204, 1, 0, 0, 0, 4208, 4211, 1, 0, 0, 0, 4209, 4207, 1, 0, 0, 0, 4209, 4210, 1, 0, 0, 0, 4210, 569, 1, 0, 0, 0, 4211, 4209, 1, 0, 0, 0, 4212, 4219, 5, 219, 0, 0, 4213, 4219, 5, 350, 0, 0, 4214, 4219, 5, 125, 0, 0, 4215, 4219, 5, 360, 0, 0, 4216, 4217, 5, 216, 0, 0, 4217, 4219, 7, 54, 0, 0, 4218, 4212, 1, 0, 0, 0, 4218, 4213, 1, 0, 0, 0, 4218, 4214, 1, 0, 0, 0, 4218, 4215, 1, 0, 0, 0, 4218, 4216, 1, 0, 0, 0, 4219, 571, 1, 0, 0, 0, 4220, 4222, 5, 216, 0, 0, 4221, 4220, 1, 0, 0, 0, 4222, 4225, 1, 0, 0, 0, 4223, 4221, 1, 0, 0, 0, 4223, 4224, 1, 0, 0, 0, 4224, 4226, 1, 0, 0, 0, 4225, 4223, 1, 0, 0, 0, 4226, 4229, 3, 568, 284, 0, 4227, 4228, 5, 167, 0, 0, 4228, 4230, 3, 570, 285, 0, 4229, 4227, 1, 0, 0, 0, 4229, 4230, 1, 0, 0, 0, 4230, 573, 1, 0, 0, 0, 4231, 4236, 3, 572, 286, 0, 4232, 4233, 5, 11, 0, 0, 4233, 4235, 3, 572, 286, 0, 4234, 4232, 1, 0, 0, 0, 4235, 4238, 1, 0, 0, 0, 4236, 4234, 1, 0, 0, 0, 4236, 4237, 1, 0, 0, 0, 4237, 575, 1, 0, 0, 0, 4238, 4236, 1, 0, 0, 0, 4239, 4241, 3, 426, 213, 0, 4240, 4242, 3, 578, 289, 0, 4241, 4240, 1, 0, 0, 0, 4241, 4242, 1, 0, 0, 0, 4242, 577, 1, 0, 0, 0, 4243, 4244, 5, 237, 0, 0, 4244, 4245, 5, 399, 0, 0, 4245, 4250, 3, 580, 290, 0, 4246, 4247, 5, 397, 0, 0, 4247, 4249, 3, 580, 290, 0, 4248, 4246, 1, 0, 0, 0, 4249, 4252, 1, 0, 0, 0, 4250, 4248, 1, 0, 0, 0, 4250, 4251, 1, 0, 0, 0, 4251, 4253, 1, 0, 0, 0, 4252, 4250, 1, 0, 0, 0, 4253, 4254, 5, 400, 0, 0, 4254, 579, 1, 0, 0, 0, 4255, 4258, 3, 590, 295, 0, 4256, 4257, 5, 405, 0, 0, 4257, 4259, 3, 528, 264, 0, 4258, 4256, 1, 0, 0, 0, 4258, 4259, 1, 0, 0, 0, 4259, 581, 1, 0, 0, 0, 4260, 4261, 5, 399, 0, 0, 4261, 4266, 3, 584, 292, 0, 4262, 4263, 5, 397, 0, 0, 4263, 4265, 3, 584, 292, 0, 4264, 4262, 1, 0, 0, 0, 4265, 4268, 1, 0, 0, 0, 4266, 4264, 1, 0, 0, 0, 4266, 4267, 1, 0, 0, 0, 4267, 4269, 1, 0, 0, 0, 4268, 4266, 1, 0, 0, 0, 4269, 4270, 5, 400, 0, 0, 4270, 583, 1, 0, 0, 0, 4271, 4274, 3, 590, 295, 0, 4272, 4275, 5, 184, 0, 0, 4273, 4275, 3, 586, 293, 0, 4274, 4272, 1, 0, 0, 0, 4274, 4273, 1, 0, 0, 0, 4275, 4276, 1, 0, 0, 0, 4276, 4277, 3, 528, 264, 0, 4277, 585, 1, 0, 0, 0, 4278, 4279, 7, 55, 0, 0, 4279, 587, 1, 0, 0, 0, 4280, 4281, 7, 56, 0, 0, 4281, 589, 1, 0, 0, 0, 4282, 4285, 5, 432, 0, 0, 4283, 4285, 3, 596, 298, 0, 4284, 4282, 1, 0, 0, 0, 4284, 4283, 1, 0, 0, 0, 4285, 591, 1, 0, 0, 0, 4286, 4289, 3, 590, 295, 0, 4287, 4288, 5, 395, 0, 0, 4288, 4290, 3, 590, 295, 0, 4289, 4287, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 593, 1, 0, 0, 0, 4291, 4292, 3, 590, 295, 0, 4292, 595, 1, 0, 0, 0, 4293, 4294, 7, 57, 0, 0, 4294, 597, 1, 0, 0, 0, 4295, 4296, 7, 58, 0, 0, 4296, 599, 1, 0, 0, 0, 4297, 4349, 3, 590, 295, 0, 4298, 4349, 5, 299, 0, 0, 4299, 4349, 5, 171, 0, 0, 4300, 4349, 5, 237, 0, 0, 4301, 4349, 5, 198, 0, 0, 4302, 4349, 5, 268, 0, 0, 4303, 4349, 5, 369, 0, 0, 4304, 4349, 5, 241, 0, 0, 4305, 4349, 5, 165, 0, 0, 4306, 4349, 5, 292, 0, 0, 4307, 4349, 5, 356, 0, 0, 4308, 4349, 5, 144, 0, 0, 4309, 4349, 5, 203, 0, 0, 4310, 4349, 5, 219, 0, 0, 4311, 4349, 5, 126, 0, 0, 4312, 4349, 5, 188, 0, 0, 4313, 4349, 5, 101, 0, 0, 4314, 4349, 5, 329, 0, 0, 4315, 4349, 5, 224, 0, 0, 4316, 4349, 5, 291, 0, 0, 4317, 4349, 5, 145, 0, 0, 4318, 4349, 5, 304, 0, 0, 4319, 4349, 5, 135, 0, 0, 4320, 4349, 5, 318, 0, 0, 4321, 4349, 5, 161, 0, 0, 4322, 4349, 5, 54, 0, 0, 4323, 4349, 5, 166, 0, 0, 4324, 4349, 5, 358, 0, 0, 4325, 4349, 5, 45, 0, 0, 4326, 4349, 5, 347, 0, 0, 4327, 4349, 5, 96, 0, 0, 4328, 4349, 5, 154, 0, 0, 4329, 4349, 5, 269, 0, 0, 4330, 4349, 5, 337, 0, 0, 4331, 4349, 5, 225, 0, 0, 4332, 4349, 5, 108, 0, 0, 4333, 4349, 5, 141, 0, 0, 4334, 4349, 5, 365, 0, 0, 4335, 4349, 5, 21, 0, 0, 4336, 4349, 5, 78, 0, 0, 4337, 4349, 5, 374, 0, 0, 4338, 4349, 5, 336, 0, 0, 4339, 4349, 5, 167, 0, 0, 4340, 4349, 5, 134, 0, 0, 4341, 4349, 5, 216, 0, 0, 4342, 4349, 5, 27, 0, 0, 4343, 4349, 5, 370, 0, 0, 4344, 4349, 5, 263, 0, 0, 4345, 4349, 5, 25, 0, 0, 4346, 4349, 5, 62, 0, 0, 4347, 4349, 5, 17, 0, 0, 4348, 4297, 1, 0, 0, 0, 4348, 4298, 1, 0, 0, 0, 4348, 4299, 1, 0, 0, 0, 4348, 4300, 1, 0, 0, 0, 4348, 4301, 1, 0, 0, 0, 4348, 4302, 1, 0, 0, 0, 4348, 4303, 1, 0, 0, 0, 4348, 4304, 1, 0, 0, 0, 4348, 4305, 1, 0, 0, 0, 4348, 4306, 1, 0, 0, 0, 4348, 4307, 1, 0, 0, 0, 4348, 4308, 1, 0, 0, 0, 4348, 4309, 1, 0, 0, 0, 4348, 4310, 1, 0, 0, 0, 4348, 4311, 1, 0, 0, 0, 4348, 4312, 1, 0, 0, 0, 4348, 4313, 1, 0, 0, 0, 4348, 4314, 1, 0, 0, 0, 4348, 4315, 1, 0, 0, 0, 4348, 4316, 1, 0, 0, 0, 4348, 4317, 1, 0, 0, 0, 4348, 4318, 1, 0, 0, 0, 4348, 4319, 1, 0, 0, 0, 4348, 4320, 1, 0, 0, 0, 4348, 4321, 1, 0, 0, 0, 4348, 4322, 1, 0, 0, 0, 4348, 4323, 1, 0, 0, 0, 4348, 4324, 1, 0, 0, 0, 4348, 4325, 1, 0, 0, 0, 4348, 4326, 1, 0, 0, 0, 4348, 4327, 1, 0, 0, 0, 4348, 4328, 1, 0, 0, 0, 4348, 4329, 1, 0, 0, 0, 4348, 4330, 1, 0, 0, 0, 4348, 4331, 1, 0, 0, 0, 4348, 4332, 1, 0, 0, 0, 4348, 4333, 1, 0, 0, 0, 4348, 4334, 1, 0, 0, 0, 4348, 4335, 1, 0, 0, 0, 4348, 4336, 1, 0, 0, 0, 4348, 4337, 1, 0, 0, 0, 4348, 4338, 1, 0, 0, 0, 4348, 4339, 1, 0, 0, 0, 4348, 4340, 1, 0, 0, 0, 4348, 4341, 1, 0, 0, 0, 4348, 4342, 1, 0, 0, 0, 4348, 4343, 1, 0, 0, 0, 4348, 4344, 1, 0, 0, 0, 4348, 4345, 1, 0, 0, 0, 4348, 4346, 1, 0, 0, 0, 4348, 4347, 1, 0, 0, 0, 4349, 601, 1, 0, 0, 0, 4350, 4351, 5, 58, 0, 0, 4351, 4352, 5, 280, 0, 0, 4352, 4354, 5, 243, 0, 0, 4353, 4355, 3, 32, 16, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4365, 1, 0, 0, 0, 4356, 4357, 3, 590, 295, 0, 4357, 4358, 5, 184, 0, 0, 4358, 4359, 3, 590, 295, 0, 4359, 4366, 1, 0, 0, 0, 4360, 4363, 3, 590, 295, 0, 4361, 4362, 5, 387, 0, 0, 4362, 4364, 3, 608, 304, 0, 4363, 4361, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 4366, 1, 0, 0, 0, 4365, 4356, 1, 0, 0, 0, 4365, 4360, 1, 0, 0, 0, 4366, 4516, 1, 0, 0, 0, 4367, 4368, 5, 9, 0, 0, 4368, 4369, 5, 280, 0, 0, 4369, 4370, 5, 243, 0, 0, 4370, 4395, 3, 590, 295, 0, 4371, 4396, 5, 373, 0, 0, 4372, 4396, 3, 616, 308, 0, 4373, 4374, 5, 304, 0, 0, 4374, 4396, 3, 608, 304, 0, 4375, 4376, 5, 363, 0, 0, 4376, 4381, 3, 610, 305, 0, 4377, 4378, 5, 397, 0, 0, 4378, 4380, 3, 610, 305, 0, 4379, 4377, 1, 0, 0, 0, 4380, 4383, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 4396, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4384, 4385, 5, 274, 0, 0, 4385, 4386, 5, 341, 0, 0, 4386, 4396, 3, 590, 295, 0, 4387, 4389, 3, 612, 306, 0, 4388, 4390, 3, 614, 307, 0, 4389, 4388, 1, 0, 0, 0, 4389, 4390, 1, 0, 0, 0, 4390, 4396, 1, 0, 0, 0, 4391, 4393, 3, 614, 307, 0, 4392, 4394, 3, 612, 306, 0, 4393, 4392, 1, 0, 0, 0, 4393, 4394, 1, 0, 0, 0, 4394, 4396, 1, 0, 0, 0, 4395, 4371, 1, 0, 0, 0, 4395, 4372, 1, 0, 0, 0, 4395, 4373, 1, 0, 0, 0, 4395, 4375, 1, 0, 0, 0, 4395, 4384, 1, 0, 0, 0, 4395, 4387, 1, 0, 0, 0, 4395, 4391, 1, 0, 0, 0, 4396, 4516, 1, 0, 0, 0, 4397, 4398, 5, 101, 0, 0, 4398, 4399, 5, 280, 0, 0, 4399, 4401, 5, 243, 0, 0, 4400, 4402, 3, 30, 15, 0, 4401, 4400, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 4403, 1, 0, 0, 0, 4403, 4516, 3, 590, 295, 0, 4404, 4407, 3, 614, 307, 0, 4405, 4407, 3, 616, 308, 0, 4406, 4404, 1, 0, 0, 0, 4406, 4405, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4409, 5, 390, 0, 0, 4409, 4410, 5, 197, 0, 0, 4410, 4516, 1, 0, 0, 0, 4411, 4423, 5, 278, 0, 0, 4412, 4413, 5, 3, 0, 0, 4413, 4414, 5, 280, 0, 0, 4414, 4415, 5, 243, 0, 0, 4415, 4416, 5, 387, 0, 0, 4416, 4424, 3, 590, 295, 0, 4417, 4418, 5, 280, 0, 0, 4418, 4419, 5, 243, 0, 0, 4419, 4420, 3, 590, 295, 0, 4420, 4421, 5, 387, 0, 0, 4421, 4422, 3, 590, 295, 0, 4422, 4424, 1, 0, 0, 0, 4423, 4412, 1, 0, 0, 0, 4423, 4417, 1, 0, 0, 0, 4424, 4516, 1, 0, 0, 0, 4425, 4426, 5, 58, 0, 0, 4426, 4427, 5, 348, 0, 0, 4427, 4428, 3, 590, 295, 0, 4428, 4429, 5, 395, 0, 0, 4429, 4430, 3, 590, 295, 0, 4430, 4431, 5, 383, 0, 0, 4431, 4432, 3, 624, 312, 0, 4432, 4433, 5, 99, 0, 0, 4433, 4434, 3, 626, 313, 0, 4434, 4516, 1, 0, 0, 0, 4435, 4436, 5, 9, 0, 0, 4436, 4437, 5, 348, 0, 0, 4437, 4438, 3, 590, 295, 0, 4438, 4439, 5, 395, 0, 0, 4439, 4456, 3, 590, 295, 0, 4440, 4441, 5, 383, 0, 0, 4441, 4442, 3, 624, 312, 0, 4442, 4443, 5, 99, 0, 0, 4443, 4444, 3, 626, 313, 0, 4444, 4457, 1, 0, 0, 0, 4445, 4446, 5, 4, 0, 0, 4446, 4450, 5, 341, 0, 0, 4447, 4448, 5, 101, 0, 0, 4448, 4450, 5, 139, 0, 0, 4449, 4445, 1, 0, 0, 0, 4449, 4447, 1, 0, 0, 0, 4450, 4454, 1, 0, 0, 0, 4451, 4452, 5, 246, 0, 0, 4452, 4455, 3, 620, 310, 0, 4453, 4455, 5, 362, 0, 0, 4454, 4451, 1, 0, 0, 0, 4454, 4453, 1, 0, 0, 0, 4455, 4457, 1, 0, 0, 0, 4456, 4440, 1, 0, 0, 0, 4456, 4449, 1, 0, 0, 0, 4457, 4516, 1, 0, 0, 0, 4458, 4459, 5, 101, 0, 0, 4459, 4460, 5, 348, 0, 0, 4460, 4461, 3, 590, 295, 0, 4461, 4462, 5, 395, 0, 0, 4462, 4463, 3, 590, 295, 0, 4463, 4516, 1, 0, 0, 0, 4464, 4465, 5, 58, 0, 0, 4465, 4466, 5, 246, 0, 0, 4466, 4467, 3, 590, 295, 0, 4467, 4468, 5, 395, 0, 0, 4468, 4469, 3, 620, 310, 0, 4469, 4470, 5, 387, 0, 0, 4470, 4471, 3, 630, 315, 0, 4471, 4516, 1, 0, 0, 0, 4472, 4473, 5, 9, 0, 0, 4473, 4474, 5, 246, 0, 0, 4474, 4475, 3, 590, 295, 0, 4475, 4476, 5, 395, 0, 0, 4476, 4484, 3, 620, 310, 0, 4477, 4478, 5, 304, 0, 0, 4478, 4485, 3, 630, 315, 0, 4479, 4480, 5, 363, 0, 0, 4480, 4485, 5, 294, 0, 0, 4481, 4482, 7, 59, 0, 0, 4482, 4483, 5, 348, 0, 0, 4483, 4485, 3, 590, 295, 0, 4484, 4477, 1, 0, 0, 0, 4484, 4479, 1, 0, 0, 0, 4484, 4481, 1, 0, 0, 0, 4485, 4516, 1, 0, 0, 0, 4486, 4487, 5, 101, 0, 0, 4487, 4488, 5, 246, 0, 0, 4488, 4489, 3, 590, 295, 0, 4489, 4490, 5, 395, 0, 0, 4490, 4491, 3, 620, 310, 0, 4491, 4516, 1, 0, 0, 0, 4492, 4493, 7, 60, 0, 0, 4493, 4494, 3, 604, 302, 0, 4494, 4495, 5, 200, 0, 0, 4495, 4496, 5, 426, 0, 0, 4496, 4497, 5, 154, 0, 0, 4497, 4501, 3, 590, 295, 0, 4498, 4499, 5, 341, 0, 0, 4499, 4502, 3, 620, 310, 0, 4500, 4502, 5, 362, 0, 0, 4501, 4498, 1, 0, 0, 0, 4501, 4500, 1, 0, 0, 0, 4502, 4506, 1, 0, 0, 0, 4503, 4504, 5, 387, 0, 0, 4504, 4505, 5, 229, 0, 0, 4505, 4507, 5, 431, 0, 0, 4506, 4503, 1, 0, 0, 0, 4506, 4507, 1, 0, 0, 0, 4507, 4516, 1, 0, 0, 0, 4508, 4509, 5, 101, 0, 0, 4509, 4510, 3, 604, 302, 0, 4510, 4511, 5, 200, 0, 0, 4511, 4512, 5, 426, 0, 0, 4512, 4513, 5, 154, 0, 0, 4513, 4514, 3, 590, 295, 0, 4514, 4516, 1, 0, 0, 0, 4515, 4350, 1, 0, 0, 0, 4515, 4367, 1, 0, 0, 0, 4515, 4397, 1, 0, 0, 0, 4515, 4406, 1, 0, 0, 0, 4515, 4411, 1, 0, 0, 0, 4515, 4425, 1, 0, 0, 0, 4515, 4435, 1, 0, 0, 0, 4515, 4458, 1, 0, 0, 0, 4515, 4464, 1, 0, 0, 0, 4515, 4472, 1, 0, 0, 0, 4515, 4486, 1, 0, 0, 0, 4515, 4492, 1, 0, 0, 0, 4515, 4508, 1, 0, 0, 0, 4516, 603, 1, 0, 0, 0, 4517, 4518, 7, 61, 0, 0, 4518, 605, 1, 0, 0, 0, 4519, 4520, 5, 259, 0, 0, 4520, 4521, 5, 405, 0, 0, 4521, 4527, 5, 431, 0, 0, 4522, 4523, 5, 83, 0, 0, 4523, 4524, 5, 246, 0, 0, 4524, 4525, 5, 405, 0, 0, 4525, 4527, 3, 620, 310, 0, 4526, 4519, 1, 0, 0, 0, 4526, 4522, 1, 0, 0, 0, 4527, 607, 1, 0, 0, 0, 4528, 4533, 3, 606, 303, 0, 4529, 4530, 5, 397, 0, 0, 4530, 4532, 3, 606, 303, 0, 4531, 4529, 1, 0, 0, 0, 4532, 4535, 1, 0, 0, 0, 4533, 4531, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 609, 1, 0, 0, 0, 4535, 4533, 1, 0, 0, 0, 4536, 4540, 5, 259, 0, 0, 4537, 4538, 5, 83, 0, 0, 4538, 4540, 5, 246, 0, 0, 4539, 4536, 1, 0, 0, 0, 4539, 4537, 1, 0, 0, 0, 4540, 611, 1, 0, 0, 0, 4541, 4544, 5, 2, 0, 0, 4542, 4543, 5, 387, 0, 0, 4543, 4545, 5, 278, 0, 0, 4544, 4542, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 613, 1, 0, 0, 0, 4546, 4547, 7, 62, 0, 0, 4547, 615, 1, 0, 0, 0, 4548, 4549, 7, 63, 0, 0, 4549, 617, 1, 0, 0, 0, 4550, 4551, 1, 0, 0, 0, 4551, 619, 1, 0, 0, 0, 4552, 4557, 3, 590, 295, 0, 4553, 4554, 5, 395, 0, 0, 4554, 4556, 3, 590, 295, 0, 4555, 4553, 1, 0, 0, 0, 4556, 4559, 1, 0, 0, 0, 4557, 4555, 1, 0, 0, 0, 4557, 4558, 1, 0, 0, 0, 4558, 621, 1, 0, 0, 0, 4559, 4557, 1, 0, 0, 0, 4560, 4565, 3, 590, 295, 0, 4561, 4562, 5, 395, 0, 0, 4562, 4564, 3, 590, 295, 0, 4563, 4561, 1, 0, 0, 0, 4564, 4567, 1, 0, 0, 0, 4565, 4563, 1, 0, 0, 0, 4565, 4566, 1, 0, 0, 0, 4566, 4578, 1, 0, 0, 0, 4567, 4565, 1, 0, 0, 0, 4568, 4569, 4, 311, 3, 0, 4569, 4574, 3, 590, 295, 0, 4570, 4571, 5, 395, 0, 0, 4571, 4573, 3, 618, 309, 0, 4572, 4570, 1, 0, 0, 0, 4573, 4576, 1, 0, 0, 0, 4574, 4572, 1, 0, 0, 0, 4574, 4575, 1, 0, 0, 0, 4575, 4578, 1, 0, 0, 0, 4576, 4574, 1, 0, 0, 0, 4577, 4560, 1, 0, 0, 0, 4577, 4568, 1, 0, 0, 0, 4578, 623, 1, 0, 0, 0, 4579, 4580, 3, 590, 295, 0, 4580, 4581, 5, 411, 0, 0, 4581, 4582, 7, 31, 0, 0, 4582, 625, 1, 0, 0, 0, 4583, 4588, 5, 176, 0, 0, 4584, 4585, 5, 211, 0, 0, 4585, 4586, 5, 341, 0, 0, 4586, 4588, 3, 620, 310, 0, 4587, 4583, 1, 0, 0, 0, 4587, 4584, 1, 0, 0, 0, 4588, 627, 1, 0, 0, 0, 4589, 4590, 5, 8, 0, 0, 4590, 4591, 5, 405, 0, 0, 4591, 4602, 5, 431, 0, 0, 4592, 4593, 5, 259, 0, 0, 4593, 4594, 5, 405, 0, 0, 4594, 4602, 5, 431, 0, 0, 4595, 4596, 5, 294, 0, 0, 4596, 4597, 5, 405, 0, 0, 4597, 4602, 5, 426, 0, 0, 4598, 4599, 5, 240, 0, 0, 4599, 4600, 5, 405, 0, 0, 4600, 4602, 3, 620, 310, 0, 4601, 4589, 1, 0, 0, 0, 4601, 4592, 1, 0, 0, 0, 4601, 4595, 1, 0, 0, 0, 4601, 4598, 1, 0, 0, 0, 4602, 629, 1, 0, 0, 0, 4603, 4608, 3, 628, 314, 0, 4604, 4605, 5, 397, 0, 0, 4605, 4607, 3, 628, 314, 0, 4606, 4604, 1, 0, 0, 0, 4607, 4610, 1, 0, 0, 0, 4608, 4606, 1, 0, 0, 0, 4608, 4609, 1, 0, 0, 0, 4609, 631, 1, 0, 0, 0, 4610, 4608, 1, 0, 0, 0, 606, 635, 642, 645, 651, 657, 664, 674, 677, 681, 696, 703, 709, 714, 719, 722, 746, 753, 756, 761, 766, 775, 779, 792, 796, 800, 805, 812, 816, 821, 828, 832, 837, 881, 888, 893, 916, 920, 925, 928, 932, 937, 943, 948, 955, 957, 965, 969, 973, 981, 984, 989, 993, 996, 1001, 1009, 1013, 1016, 1020, 1024, 1027, 1032, 1038, 1043, 1048, 1052, 1063, 1065, 1069, 1079, 1082, 1088, 1091, 1097, 1102, 1109, 1114, 1117, 1125, 1130, 1135, 1140, 1143, 1146, 1149, 1157, 1164, 1169, 1176, 1182, 1185, 1188, 1190, 1200, 1202, 1206, 1210, 1214, 1217, 1220, 1222, 1231, 1235, 1243, 1245, 1255, 1261, 1267, 1276, 1283, 1289, 1293, 1300, 1307, 1315, 1321, 1324, 1331, 1354, 1359, 1363, 1371, 1380, 1387, 1393, 1400, 1403, 1409, 1416, 1424, 1433, 1442, 1449, 1453, 1460, 1462, 1468, 1483, 1486, 1490, 1494, 1507, 1516, 1532, 1536, 1541, 1546, 1549, 1552, 1555, 1558, 1561, 1566, 1575, 1579, 1586, 1589, 1592, 1595, 1607, 1613, 1638, 1642, 1650, 1654, 1657, 1660, 1663, 1666, 1669, 1672, 1675, 1686, 1689, 1709, 1715, 1721, 1724, 1726, 1733, 1740, 1753, 1758, 1767, 1775, 1791, 1804, 1820, 1824, 1833, 1839, 1842, 1845, 1848, 1851, 1866, 1869, 1880, 1894, 1928, 1936, 1941, 1949, 1954, 1959, 1966, 1974, 1982, 1990, 1996, 2003, 2013, 2017, 2025, 2034, 2037, 2041, 2046, 2050, 2054, 2060, 2064, 2076, 2085, 2096, 2100, 2107, 2119, 2129, 2132, 2139, 2145, 2149, 2152, 2155, 2161, 2165, 2169, 2174, 2178, 2182, 2186, 2194, 2198, 2202, 2210, 2214, 2219, 2223, 2230, 2237, 2245, 2257, 2275, 2278, 2284, 2310, 2313, 2319, 2327, 2335, 2348, 2355, 2358, 2361, 2364, 2367, 2370, 2373, 2376, 2379, 2382, 2385, 2390, 2393, 2396, 2399, 2402, 2405, 2408, 2411, 2414, 2417, 2420, 2422, 2428, 2432, 2435, 2438, 2441, 2444, 2447, 2454, 2458, 2461, 2464, 2467, 2470, 2473, 2480, 2483, 2491, 2495, 2502, 2504, 2507, 2512, 2515, 2519, 2524, 2530, 2538, 2546, 2556, 2559, 2563, 2567, 2572, 2579, 2583, 2585, 2589, 2596, 2601, 2614, 2622, 2632, 2642, 2655, 2665, 2669, 2673, 2679, 2686, 2693, 2702, 2709, 2729, 2732, 2746, 2761, 2765, 2785, 2797, 2803, 2806, 2810, 2816, 2822, 2829, 2837, 2843, 2847, 2852, 2855, 2859, 2866, 2871, 2876, 2879, 2881, 2889, 2897, 2901, 2905, 2909, 2926, 2943, 2950, 2959, 2964, 2967, 2970, 2974, 2989, 3003, 3006, 3017, 3021, 3024, 3027, 3030, 3034, 3039, 3042, 3045, 3048, 3051, 3054, 3060, 3063, 3066, 3069, 3072, 3075, 3078, 3081, 3084, 3087, 3091, 3093, 3098, 3103, 3107, 3111, 3116, 3121, 3130, 3140, 3148, 3160, 3163, 3169, 3176, 3183, 3190, 3197, 3207, 3209, 3213, 3217, 3224, 3229, 3233, 3237, 3240, 3243, 3254, 3258, 3260, 3263, 3276, 3279, 3282, 3294, 3297, 3304, 3313, 3318, 3320, 3322, 3339, 3342, 3350, 3353, 3357, 3360, 3363, 3366, 3369, 3381, 3389, 3396, 3399, 3406, 3409, 3414, 3421, 3429, 3435, 3440, 3444, 3449, 3453, 3460, 3474, 3477, 3484, 3492, 3502, 3505, 3514, 3523, 3526, 3532, 3535, 3540, 3543, 3557, 3563, 3565, 3576, 3582, 3585, 3595, 3600, 3604, 3621, 3627, 3629, 3637, 3644, 3658, 3664, 3667, 3670, 3673, 3682, 3689, 3695, 3704, 3708, 3716, 3726, 3736, 3741, 3745, 3751, 3756, 3761, 3768, 3771, 3776, 3779, 3783, 3788, 3796, 3801, 3805, 3807, 3816, 3839, 3849, 3852, 3859, 3862, 3872, 3879, 3882, 3884, 3896, 3907, 3909, 3915, 3920, 3929, 3942, 3946, 3958, 3962, 3971, 3990, 4008, 4020, 4035, 4039, 4053, 4060, 4074, 4079, 4089, 4091, 4099, 4107, 4115, 4123, 4131, 4139, 4150, 4154, 4164, 4166, 4171, 4185, 4198, 4207, 4209, 4218, 4223, 4229, 4236, 4241, 4250, 4258, 4266, 4274, 4284, 4289, 4348, 4354, 4363, 4365, 4381, 4389, 4393, 4395, 4401, 4406, 4423, 4449, 4454, 4456, 4484, 4501, 4506, 4515, 4526, 4533, 4539, 4544, 4557, 4565, 4574, 4577, 4587, 4601, 4608] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index 571477e71..3b5e3b74d 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -473,344 +473,304 @@ export class HiveSqlParser extends SQLParserBase { public static readonly RULE_ifExists = 15; public static readonly RULE_ifNotExists = 16; public static readonly RULE_restrictOrCascade = 17; - public static readonly RULE_rewriteEnabled = 18; - public static readonly RULE_rewriteDisabled = 19; - public static readonly RULE_storedAsDirs = 20; + public static readonly RULE_storedAsDirs = 18; + public static readonly RULE_rewriteEnabled = 19; + public static readonly RULE_rewriteDisabled = 20; public static readonly RULE_createDatabaseStatement = 21; - public static readonly RULE_dbConnectorName = 22; - public static readonly RULE_switchDatabaseStatement = 23; - public static readonly RULE_dropDatabaseStatement = 24; - public static readonly RULE_databaseComment = 25; - public static readonly RULE_truncateTableStatement = 26; - public static readonly RULE_dropTableStatement = 27; - public static readonly RULE_inputFileFormat = 28; - public static readonly RULE_tabTypeExpr = 29; - public static readonly RULE_partTypeExpr = 30; - public static readonly RULE_tabPartColTypeExpr = 31; - public static readonly RULE_descStatement = 32; - public static readonly RULE_analyzeStatement = 33; - public static readonly RULE_from_in = 34; - public static readonly RULE_db_schema = 35; - public static readonly RULE_showStatement = 36; - public static readonly RULE_showTablesFilterExpr = 37; - public static readonly RULE_lockStatement = 38; - public static readonly RULE_lockDatabase = 39; - public static readonly RULE_lockMode = 40; - public static readonly RULE_unlockStatement = 41; - public static readonly RULE_unlockDatabase = 42; - public static readonly RULE_createRoleStatement = 43; - public static readonly RULE_dropRoleStatement = 44; - public static readonly RULE_grantPrivileges = 45; - public static readonly RULE_revokePrivileges = 46; - public static readonly RULE_grantRole = 47; - public static readonly RULE_revokeRole = 48; - public static readonly RULE_showRoleGrants = 49; - public static readonly RULE_showRoles = 50; - public static readonly RULE_showCurrentRole = 51; - public static readonly RULE_setRole = 52; - public static readonly RULE_showGrants = 53; - public static readonly RULE_showRolePrincipals = 54; - public static readonly RULE_privilegeIncludeColObject = 55; - public static readonly RULE_privilegeObject = 56; - public static readonly RULE_privObject = 57; - public static readonly RULE_privObjectCols = 58; - public static readonly RULE_privilegeList = 59; - public static readonly RULE_privilegeDef = 60; - public static readonly RULE_privilegeType = 61; - public static readonly RULE_principalSpecification = 62; - public static readonly RULE_principalName = 63; - public static readonly RULE_principalAlterName = 64; - public static readonly RULE_withGrantOption = 65; - public static readonly RULE_grantOptionFor = 66; - public static readonly RULE_adminOptionFor = 67; - public static readonly RULE_withAdminOption = 68; - public static readonly RULE_metastoreCheck = 69; - public static readonly RULE_resourceList = 70; - public static readonly RULE_resource = 71; - public static readonly RULE_resourceType = 72; - public static readonly RULE_createFunctionStatement = 73; - public static readonly RULE_dropFunctionStatement = 74; - public static readonly RULE_reloadFunctionsStatement = 75; - public static readonly RULE_createMacroStatement = 76; - public static readonly RULE_dropMacroStatement = 77; - public static readonly RULE_createIndexStatement = 78; - public static readonly RULE_dropIndexStatement = 79; - public static readonly RULE_createViewStatement = 80; - public static readonly RULE_viewPartition = 81; - public static readonly RULE_viewOrganization = 82; - public static readonly RULE_viewClusterSpec = 83; - public static readonly RULE_viewComplexSpec = 84; - public static readonly RULE_viewDistSpec = 85; - public static readonly RULE_viewSortSpec = 86; - public static readonly RULE_dropViewStatement = 87; - public static readonly RULE_createMaterializedViewStatement = 88; - public static readonly RULE_dropMaterializedViewStatement = 89; - public static readonly RULE_createScheduledQueryStatement = 90; - public static readonly RULE_dropScheduledQueryStatement = 91; - public static readonly RULE_alterScheduledQueryStatement = 92; - public static readonly RULE_alterScheduledQueryChange = 93; - public static readonly RULE_scheduleSpec = 94; - public static readonly RULE_executedAsSpec = 95; - public static readonly RULE_definedAsSpec = 96; - public static readonly RULE_showStmtIdentifier = 97; - public static readonly RULE_tableComment = 98; - public static readonly RULE_tableLifecycle = 99; - public static readonly RULE_createTablePartitionSpec = 100; - public static readonly RULE_createTablePartitionColumnTypeSpec = 101; - public static readonly RULE_partitionTransformSpec = 102; - public static readonly RULE_partitionTransformType = 103; - public static readonly RULE_tableBuckets = 104; - public static readonly RULE_tableSkewed = 105; - public static readonly RULE_rowFormat = 106; - public static readonly RULE_recordReader = 107; - public static readonly RULE_recordWriter = 108; - public static readonly RULE_rowFormatSerde = 109; - public static readonly RULE_rowFormatDelimited = 110; - public static readonly RULE_tableRowFormat = 111; - public static readonly RULE_tablePropertiesPrefixed = 112; - public static readonly RULE_tableProperties = 113; - public static readonly RULE_tablePropertiesList = 114; - public static readonly RULE_keyValueProperties = 115; - public static readonly RULE_keyValuePropertyList = 116; - public static readonly RULE_keyValueProperty = 117; - public static readonly RULE_tableRowFormatFieldIdentifier = 118; - public static readonly RULE_tableRowFormatCollItemsIdentifier = 119; - public static readonly RULE_tableRowFormatMapKeysIdentifier = 120; - public static readonly RULE_tableRowFormatLinesIdentifier = 121; - public static readonly RULE_tableRowNullFormat = 122; - public static readonly RULE_tableFileFormat = 123; - public static readonly RULE_columnNameTypeList = 124; - public static readonly RULE_columnNameTypeOrConstraintList = 125; - public static readonly RULE_columnNameColonTypeList = 126; - public static readonly RULE_columnNameList = 127; - public static readonly RULE_columnName = 128; - public static readonly RULE_columnNamePath = 129; - public static readonly RULE_columnNamePathAllowEmpty = 130; - public static readonly RULE_columnNameCreate = 131; - public static readonly RULE_extColumnName = 132; - public static readonly RULE_columnNameOrderList = 133; - public static readonly RULE_columnParenthesesList = 134; - public static readonly RULE_enableValidateSpecification = 135; - public static readonly RULE_enableSpecification = 136; - public static readonly RULE_validateSpecification = 137; - public static readonly RULE_enforcedSpecification = 138; - public static readonly RULE_relySpecification = 139; - public static readonly RULE_createConstraint = 140; - public static readonly RULE_alterConstraintWithName = 141; - public static readonly RULE_tableLevelConstraint = 142; - public static readonly RULE_pkUkConstraint = 143; - public static readonly RULE_checkConstraint = 144; - public static readonly RULE_createForeignKey = 145; - public static readonly RULE_alterForeignKeyWithName = 146; - public static readonly RULE_skewedValueElement = 147; - public static readonly RULE_skewedColumnValuePairList = 148; - public static readonly RULE_skewedColumnValuePair = 149; - public static readonly RULE_constantList = 150; - public static readonly RULE_orderSpecification = 151; - public static readonly RULE_nullOrdering = 152; - public static readonly RULE_columnNameOrder = 153; - public static readonly RULE_columnNameCommentList = 154; - public static readonly RULE_columnNameComment = 155; - public static readonly RULE_columnRefOrder = 156; - public static readonly RULE_columnNameType = 157; - public static readonly RULE_columnNameTypeOrConstraint = 158; - public static readonly RULE_tableConstraint = 159; - public static readonly RULE_columnNameTypeConstraint = 160; - public static readonly RULE_columnConstraint = 161; - public static readonly RULE_foreignKeyConstraint = 162; - public static readonly RULE_colConstraint = 163; - public static readonly RULE_alterColumnConstraint = 164; - public static readonly RULE_alterForeignKeyConstraint = 165; - public static readonly RULE_alterColConstraint = 166; - public static readonly RULE_columnConstraintType = 167; - public static readonly RULE_defaultVal = 168; - public static readonly RULE_tableConstraintType = 169; - public static readonly RULE_constraintOptsCreate = 170; - public static readonly RULE_constraintOptsAlter = 171; - public static readonly RULE_columnNameColonType = 172; - public static readonly RULE_columnType = 173; - public static readonly RULE_columnTypeList = 174; - public static readonly RULE_type = 175; - public static readonly RULE_primitiveType = 176; - public static readonly RULE_listType = 177; - public static readonly RULE_structType = 178; - public static readonly RULE_mapType = 179; - public static readonly RULE_unionType = 180; - public static readonly RULE_setOperator = 181; - public static readonly RULE_queryStatementExpression = 182; - public static readonly RULE_queryStatementExpressionBody = 183; - public static readonly RULE_withClause = 184; - public static readonly RULE_cteStatement = 185; - public static readonly RULE_fromStatement = 186; - public static readonly RULE_singleFromStatement = 187; - public static readonly RULE_regularBody = 188; - public static readonly RULE_atomSelectStatement = 189; - public static readonly RULE_selectStatement = 190; - public static readonly RULE_setOpSelectStatement = 191; - public static readonly RULE_selectStatementWithCTE = 192; - public static readonly RULE_insertClause = 193; - public static readonly RULE_destination = 194; - public static readonly RULE_limitClause = 195; - public static readonly RULE_columnAssignmentClause = 196; - public static readonly RULE_precedencePlusExpressionOrDefault = 197; - public static readonly RULE_setColumnsClause = 198; - public static readonly RULE_sqlTransactionStatement = 199; - public static readonly RULE_transactionMode = 200; - public static readonly RULE_whenClauses = 201; - public static readonly RULE_whenNotMatchedClause = 202; - public static readonly RULE_whenMatchedAndClause = 203; - public static readonly RULE_whenMatchedThenClause = 204; - public static readonly RULE_compactionPool = 205; - public static readonly RULE_compactionType = 206; - public static readonly RULE_compactionStatus = 207; - public static readonly RULE_alterStatement = 208; - public static readonly RULE_alterTableStatementSuffix = 209; - public static readonly RULE_alterTblPartitionStatementSuffix = 210; - public static readonly RULE_alterViewStatementSuffix = 211; - public static readonly RULE_alterDatabaseStatementSuffix = 212; - public static readonly RULE_alterDataConnectorStatementSuffix = 213; - public static readonly RULE_locationPath = 214; - public static readonly RULE_alterStatementSuffixDropPartitions = 215; - public static readonly RULE_skewedLocationMap = 216; - public static readonly RULE_alterStatementSuffixExecute = 217; - public static readonly RULE_fileFormat = 218; - public static readonly RULE_likeTableOrFile = 219; - public static readonly RULE_createTableStatement = 220; - public static readonly RULE_createDataConnectorStatement = 221; - public static readonly RULE_dropDataConnectorStatement = 222; - public static readonly RULE_tableAllColumns = 223; - public static readonly RULE_expressionList = 224; - public static readonly RULE_aliasList = 225; - public static readonly RULE_fromClause = 226; - public static readonly RULE_fromSource = 227; - public static readonly RULE_atomjoinSource = 228; - public static readonly RULE_joinSource = 229; - public static readonly RULE_joinSourcePart = 230; - public static readonly RULE_uniqueJoinSource = 231; - public static readonly RULE_joinToken = 232; - public static readonly RULE_lateralView = 233; - public static readonly RULE_tableAlias = 234; - public static readonly RULE_tableSample = 235; - public static readonly RULE_tableSource = 236; - public static readonly RULE_asOfClause = 237; - public static readonly RULE_dbSchemaName = 238; - public static readonly RULE_dbSchemaNameCreate = 239; - public static readonly RULE_tableOrView = 240; - public static readonly RULE_tableName = 241; - public static readonly RULE_tableNameCreate = 242; - public static readonly RULE_viewName = 243; - public static readonly RULE_viewNameCreate = 244; - public static readonly RULE_subQuerySource = 245; - public static readonly RULE_partitioningSpec = 246; - public static readonly RULE_partitionTableFunctionSource = 247; - public static readonly RULE_partitionedTableFunction = 248; - public static readonly RULE_atomPartitionedTableFunction = 249; - public static readonly RULE_whereClause = 250; - public static readonly RULE_valuesClause = 251; - public static readonly RULE_atomValuesClause = 252; - public static readonly RULE_virtualTableSource = 253; - public static readonly RULE_selectClause = 254; - public static readonly RULE_selectTrfmClause = 255; - public static readonly RULE_selectList = 256; - public static readonly RULE_selectItem = 257; - public static readonly RULE_selectLiteralColumnName = 258; - public static readonly RULE_selectExpressionColumnName = 259; - public static readonly RULE_trfmClause = 260; - public static readonly RULE_selectExpression = 261; - public static readonly RULE_selectExpressionList = 262; - public static readonly RULE_window_clause = 263; - public static readonly RULE_window_specification = 264; - public static readonly RULE_window_frame = 265; - public static readonly RULE_window_frame_boundary = 266; - public static readonly RULE_groupByClause = 267; - public static readonly RULE_rollupStandard = 268; - public static readonly RULE_rollupOldSyntax = 269; - public static readonly RULE_groupingSetExpression = 270; - public static readonly RULE_havingClause = 271; - public static readonly RULE_qualifyClause = 272; - public static readonly RULE_expressionOrDefault = 273; - public static readonly RULE_firstExpressionsWithAlias = 274; - public static readonly RULE_expressions = 275; - public static readonly RULE_expressionsInParenthesis = 276; - public static readonly RULE_expressionsNotInParenthesis = 277; - public static readonly RULE_orderByClause = 278; - public static readonly RULE_partitionByClause = 279; - public static readonly RULE_clusterByClause = 280; - public static readonly RULE_distributeByClause = 281; - public static readonly RULE_sortByClause = 282; - public static readonly RULE_function_ = 283; - public static readonly RULE_null_treatment = 284; - public static readonly RULE_functionNameCreate = 285; - public static readonly RULE_functionNameForDDL = 286; - public static readonly RULE_functionNameForInvoke = 287; - public static readonly RULE_castExpression = 288; - public static readonly RULE_caseExpression = 289; - public static readonly RULE_whenExpression = 290; - public static readonly RULE_floorExpression = 291; - public static readonly RULE_extractExpression = 292; - public static readonly RULE_timeQualifiers = 293; - public static readonly RULE_constant = 294; - public static readonly RULE_intervalValue = 295; - public static readonly RULE_intervalExpression = 296; - public static readonly RULE_intervalQualifiers = 297; - public static readonly RULE_expression = 298; - public static readonly RULE_atomExpression = 299; - public static readonly RULE_precedenceUnaryPrefixExpression = 300; - public static readonly RULE_precedenceBitwiseXorExpression = 301; - public static readonly RULE_precedenceStarExpression = 302; - public static readonly RULE_precedencePlusExpression = 303; - public static readonly RULE_precedenceConcatenateExpression = 304; - public static readonly RULE_precedenceAmpersandExpression = 305; - public static readonly RULE_precedenceBitwiseOrExpression = 306; - public static readonly RULE_precedenceSimilarOperator = 307; - public static readonly RULE_subQueryExpression = 308; - public static readonly RULE_precedenceSimilarExpression = 309; - public static readonly RULE_precedenceSimilarExpressionPart = 310; - public static readonly RULE_precedenceSimilarExpressionAtom = 311; - public static readonly RULE_precedenceSimilarExpressionIn = 312; - public static readonly RULE_precedenceSimilarExpressionPartNot = 313; - public static readonly RULE_precedenceDistinctOperator = 314; - public static readonly RULE_precedenceEqualOperator = 315; - public static readonly RULE_precedenceEqualExpression = 316; - public static readonly RULE_isCondition = 317; - public static readonly RULE_precedenceNotExpression = 318; - public static readonly RULE_precedenceAndExpression = 319; - public static readonly RULE_tableOrPartition = 320; - public static readonly RULE_partitionSpec = 321; - public static readonly RULE_partitionVal = 322; - public static readonly RULE_partitionSelectorSpec = 323; - public static readonly RULE_partitionSelectorVal = 324; - public static readonly RULE_subQuerySelectorOperator = 325; - public static readonly RULE_sysFuncNames = 326; - public static readonly RULE_id_ = 327; - public static readonly RULE_functionIdentifier = 328; - public static readonly RULE_principalIdentifier = 329; - public static readonly RULE_nonReserved = 330; - public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 331; - public static readonly RULE_configPropertiesItem = 332; - public static readonly RULE_resourcePlanDdlStatements = 333; - public static readonly RULE_mappingTypes = 334; - public static readonly RULE_rpAssign = 335; - public static readonly RULE_rpAssignList = 336; - public static readonly RULE_rpUnassign = 337; - public static readonly RULE_activate = 338; - public static readonly RULE_enable = 339; - public static readonly RULE_disable = 340; - public static readonly RULE_year = 341; - public static readonly RULE_month = 342; - public static readonly RULE_week = 343; - public static readonly RULE_day = 344; - public static readonly RULE_hour = 345; - public static readonly RULE_minute = 346; - public static readonly RULE_second = 347; - public static readonly RULE_decimal = 348; - public static readonly RULE_emptyColumn = 349; - public static readonly RULE_poolPath = 350; - public static readonly RULE_poolPathAllowEmpty = 351; - public static readonly RULE_triggerAtomExpression = 352; - public static readonly RULE_triggerActionExpression = 353; - public static readonly RULE_poolAssign = 354; - public static readonly RULE_poolAssignList = 355; + public static readonly RULE_switchDatabaseStatement = 22; + public static readonly RULE_dropDatabaseStatement = 23; + public static readonly RULE_truncateTableStatement = 24; + public static readonly RULE_dropTableStatement = 25; + public static readonly RULE_tabTypeExpr = 26; + public static readonly RULE_partTypeExpr = 27; + public static readonly RULE_tabPartColTypeExpr = 28; + public static readonly RULE_descStatement = 29; + public static readonly RULE_analyzeStatement = 30; + public static readonly RULE_from_in = 31; + public static readonly RULE_db_schema = 32; + public static readonly RULE_showStatement = 33; + public static readonly RULE_showTablesFilterExpr = 34; + public static readonly RULE_lockStatement = 35; + public static readonly RULE_lockDatabase = 36; + public static readonly RULE_createRoleStatement = 37; + public static readonly RULE_grantPrivileges = 38; + public static readonly RULE_revokePrivileges = 39; + public static readonly RULE_grantRole = 40; + public static readonly RULE_revokeRole = 41; + public static readonly RULE_showRoleGrants = 42; + public static readonly RULE_showRoles = 43; + public static readonly RULE_showCurrentRole = 44; + public static readonly RULE_setRole = 45; + public static readonly RULE_showGrants = 46; + public static readonly RULE_showRolePrincipals = 47; + public static readonly RULE_privilegeIncludeColObject = 48; + public static readonly RULE_privilegeObject = 49; + public static readonly RULE_privObject = 50; + public static readonly RULE_privObjectCols = 51; + public static readonly RULE_privilegeList = 52; + public static readonly RULE_privilegeDef = 53; + public static readonly RULE_privilegeType = 54; + public static readonly RULE_principalSpecification = 55; + public static readonly RULE_principalName = 56; + public static readonly RULE_principalAlterName = 57; + public static readonly RULE_metastoreCheck = 58; + public static readonly RULE_resourceType = 59; + public static readonly RULE_createFunctionStatement = 60; + public static readonly RULE_dropFunctionStatement = 61; + public static readonly RULE_reloadFunctionsStatement = 62; + public static readonly RULE_createMacroStatement = 63; + public static readonly RULE_dropMacroStatement = 64; + public static readonly RULE_createIndexStatement = 65; + public static readonly RULE_dropIndexStatement = 66; + public static readonly RULE_createViewStatement = 67; + public static readonly RULE_viewPartition = 68; + public static readonly RULE_viewOrganization = 69; + public static readonly RULE_viewClusterSpec = 70; + public static readonly RULE_viewComplexSpec = 71; + public static readonly RULE_viewDistSpec = 72; + public static readonly RULE_viewSortSpec = 73; + public static readonly RULE_dropViewStatement = 74; + public static readonly RULE_createMaterializedViewStatement = 75; + public static readonly RULE_createScheduledQueryStatement = 76; + public static readonly RULE_dropScheduledQueryStatement = 77; + public static readonly RULE_alterScheduledQueryStatement = 78; + public static readonly RULE_alterScheduledQueryChange = 79; + public static readonly RULE_scheduleSpec = 80; + public static readonly RULE_executedAsSpec = 81; + public static readonly RULE_definedAsSpec = 82; + public static readonly RULE_showStmtIdentifier = 83; + public static readonly RULE_tableComment = 84; + public static readonly RULE_tableLifecycle = 85; + public static readonly RULE_createTablePartitionSpec = 86; + public static readonly RULE_createTablePartitionColumnTypeSpec = 87; + public static readonly RULE_partitionTransformSpec = 88; + public static readonly RULE_partitionTransformType = 89; + public static readonly RULE_tableBuckets = 90; + public static readonly RULE_tableSkewed = 91; + public static readonly RULE_rowFormat = 92; + public static readonly RULE_rowFormatSerde = 93; + public static readonly RULE_rowFormatDelimited = 94; + public static readonly RULE_tablePropertiesPrefixed = 95; + public static readonly RULE_tableProperties = 96; + public static readonly RULE_tablePropertiesList = 97; + public static readonly RULE_keyValueProperties = 98; + public static readonly RULE_keyValuePropertyList = 99; + public static readonly RULE_keyValueProperty = 100; + public static readonly RULE_rowFormatFieldIdentifier = 101; + public static readonly RULE_rowFormatCollItemsIdentifier = 102; + public static readonly RULE_rowFormatMapKeysIdentifier = 103; + public static readonly RULE_rowFormatLinesIdentifier = 104; + public static readonly RULE_tableRowNullFormat = 105; + public static readonly RULE_tableFileFormat = 106; + public static readonly RULE_columnNameTypeList = 107; + public static readonly RULE_columnNameTypeOrConstraintList = 108; + public static readonly RULE_columnNameColonTypeList = 109; + public static readonly RULE_columnNameList = 110; + public static readonly RULE_columnName = 111; + public static readonly RULE_columnNamePath = 112; + public static readonly RULE_columnNamePathAllowEmpty = 113; + public static readonly RULE_columnNameCreate = 114; + public static readonly RULE_extColumnName = 115; + public static readonly RULE_columnNameOrderList = 116; + public static readonly RULE_columnParenthesesList = 117; + public static readonly RULE_enableValidateSpecification = 118; + public static readonly RULE_enableSpecification = 119; + public static readonly RULE_enforcedSpecification = 120; + public static readonly RULE_createConstraint = 121; + public static readonly RULE_alterConstraintWithName = 122; + public static readonly RULE_tableLevelConstraint = 123; + public static readonly RULE_pkUkConstraint = 124; + public static readonly RULE_checkConstraint = 125; + public static readonly RULE_createForeignKey = 126; + public static readonly RULE_alterForeignKeyWithName = 127; + public static readonly RULE_skewedValueElement = 128; + public static readonly RULE_skewedColumnValuePairList = 129; + public static readonly RULE_skewedColumnValuePair = 130; + public static readonly RULE_constantList = 131; + public static readonly RULE_orderSpecification = 132; + public static readonly RULE_nullOrdering = 133; + public static readonly RULE_columnNameOrder = 134; + public static readonly RULE_columnNameCommentList = 135; + public static readonly RULE_columnNameComment = 136; + public static readonly RULE_columnRefOrder = 137; + public static readonly RULE_columnNameType = 138; + public static readonly RULE_columnNameTypeOrConstraint = 139; + public static readonly RULE_tableConstraint = 140; + public static readonly RULE_columnNameTypeConstraint = 141; + public static readonly RULE_columnConstraint = 142; + public static readonly RULE_foreignKeyConstraint = 143; + public static readonly RULE_colConstraint = 144; + public static readonly RULE_columnConstraintType = 145; + public static readonly RULE_tableConstraintType = 146; + public static readonly RULE_constraintOpts = 147; + public static readonly RULE_columnNameColonType = 148; + public static readonly RULE_typeList = 149; + public static readonly RULE_type = 150; + public static readonly RULE_primitiveType = 151; + public static readonly RULE_listType = 152; + public static readonly RULE_structType = 153; + public static readonly RULE_mapType = 154; + public static readonly RULE_unionType = 155; + public static readonly RULE_setOperator = 156; + public static readonly RULE_queryStatementExpression = 157; + public static readonly RULE_queryStatementExpressionBody = 158; + public static readonly RULE_withClause = 159; + public static readonly RULE_cteStatement = 160; + public static readonly RULE_fromStatement = 161; + public static readonly RULE_singleFromStatement = 162; + public static readonly RULE_regularBody = 163; + public static readonly RULE_atomSelectStatement = 164; + public static readonly RULE_selectStatement = 165; + public static readonly RULE_setOpSelectStatement = 166; + public static readonly RULE_selectStatementWithCTE = 167; + public static readonly RULE_insertClause = 168; + public static readonly RULE_destination = 169; + public static readonly RULE_limitClause = 170; + public static readonly RULE_columnAssignmentClause = 171; + public static readonly RULE_precedencePlusExpressionOrDefault = 172; + public static readonly RULE_setColumnsClause = 173; + public static readonly RULE_sqlTransactionStatement = 174; + public static readonly RULE_transactionMode = 175; + public static readonly RULE_whenClauses = 176; + public static readonly RULE_whenNotMatchedClause = 177; + public static readonly RULE_whenMatchedAndClause = 178; + public static readonly RULE_whenMatchedThenClause = 179; + public static readonly RULE_alterStatement = 180; + public static readonly RULE_alterTableStatementSuffix = 181; + public static readonly RULE_alterTblPartitionStatementSuffix = 182; + public static readonly RULE_alterViewStatementSuffix = 183; + public static readonly RULE_alterDatabaseStatementSuffix = 184; + public static readonly RULE_alterDataConnectorStatementSuffix = 185; + public static readonly RULE_locationPath = 186; + public static readonly RULE_alterStatementSuffixDropPartitions = 187; + public static readonly RULE_skewedLocationMap = 188; + public static readonly RULE_alterStatementSuffixExecute = 189; + public static readonly RULE_fileFormat = 190; + public static readonly RULE_likeTableOrFile = 191; + public static readonly RULE_createTableStatement = 192; + public static readonly RULE_createDataConnectorStatement = 193; + public static readonly RULE_dropDataConnectorStatement = 194; + public static readonly RULE_tableAllColumns = 195; + public static readonly RULE_expressionList = 196; + public static readonly RULE_aliasList = 197; + public static readonly RULE_fromClause = 198; + public static readonly RULE_fromSource = 199; + public static readonly RULE_atomjoinSource = 200; + public static readonly RULE_joinSource = 201; + public static readonly RULE_joinSourcePart = 202; + public static readonly RULE_uniqueJoinSource = 203; + public static readonly RULE_joinToken = 204; + public static readonly RULE_lateralView = 205; + public static readonly RULE_tableAlias = 206; + public static readonly RULE_tableSample = 207; + public static readonly RULE_tableSource = 208; + public static readonly RULE_asOfClause = 209; + public static readonly RULE_dbSchemaName = 210; + public static readonly RULE_dbSchemaNameCreate = 211; + public static readonly RULE_tableOrView = 212; + public static readonly RULE_tableName = 213; + public static readonly RULE_tableNameCreate = 214; + public static readonly RULE_viewName = 215; + public static readonly RULE_viewNameCreate = 216; + public static readonly RULE_subQuerySource = 217; + public static readonly RULE_partitioningSpec = 218; + public static readonly RULE_partitionTableFunctionSource = 219; + public static readonly RULE_partitionedTableFunction = 220; + public static readonly RULE_atomPartitionedTableFunction = 221; + public static readonly RULE_whereClause = 222; + public static readonly RULE_valuesClause = 223; + public static readonly RULE_atomValuesClause = 224; + public static readonly RULE_virtualTableSource = 225; + public static readonly RULE_selectClause = 226; + public static readonly RULE_selectTrfmClause = 227; + public static readonly RULE_selectList = 228; + public static readonly RULE_selectItem = 229; + public static readonly RULE_selectLiteralColumnName = 230; + public static readonly RULE_selectExpressionColumnName = 231; + public static readonly RULE_trfmClause = 232; + public static readonly RULE_selectExpression = 233; + public static readonly RULE_selectExpressionList = 234; + public static readonly RULE_window_clause = 235; + public static readonly RULE_window_specification = 236; + public static readonly RULE_window_frame = 237; + public static readonly RULE_window_frame_boundary = 238; + public static readonly RULE_groupByClause = 239; + public static readonly RULE_rollupStandard = 240; + public static readonly RULE_rollupOldSyntax = 241; + public static readonly RULE_groupingSetExpression = 242; + public static readonly RULE_havingClause = 243; + public static readonly RULE_qualifyClause = 244; + public static readonly RULE_firstExpressionsWithAlias = 245; + public static readonly RULE_expressions = 246; + public static readonly RULE_expressionsInParenthesis = 247; + public static readonly RULE_expressionsNotInParenthesis = 248; + public static readonly RULE_orderByClause = 249; + public static readonly RULE_partitionByClause = 250; + public static readonly RULE_clusterByClause = 251; + public static readonly RULE_distributeByClause = 252; + public static readonly RULE_sortByClause = 253; + public static readonly RULE_function_ = 254; + public static readonly RULE_functionNameCreate = 255; + public static readonly RULE_functionNameForDDL = 256; + public static readonly RULE_functionNameForInvoke = 257; + public static readonly RULE_castExpression = 258; + public static readonly RULE_caseExpression = 259; + public static readonly RULE_whenExpression = 260; + public static readonly RULE_floorExpression = 261; + public static readonly RULE_extractExpression = 262; + public static readonly RULE_timeQualifiers = 263; + public static readonly RULE_constant = 264; + public static readonly RULE_intervalValue = 265; + public static readonly RULE_intervalExpression = 266; + public static readonly RULE_intervalQualifiers = 267; + public static readonly RULE_expression = 268; + public static readonly RULE_atomExpression = 269; + public static readonly RULE_precedenceUnaryPrefixExpression = 270; + public static readonly RULE_precedenceBitwiseXorExpression = 271; + public static readonly RULE_precedenceStarExpression = 272; + public static readonly RULE_precedencePlusExpression = 273; + public static readonly RULE_precedenceConcatenateExpression = 274; + public static readonly RULE_precedenceAmpersandExpression = 275; + public static readonly RULE_precedenceBitwiseOrExpression = 276; + public static readonly RULE_subQueryExpression = 277; + public static readonly RULE_precedenceSimilarOperator = 278; + public static readonly RULE_precedenceSimilarExpression = 279; + public static readonly RULE_precedenceSimilarExpressionPart = 280; + public static readonly RULE_precedenceSimilarExpressionAtom = 281; + public static readonly RULE_precedenceDistinctOperator = 282; + public static readonly RULE_precedenceEqualOperator = 283; + public static readonly RULE_precedenceEqualExpression = 284; + public static readonly RULE_isCondition = 285; + public static readonly RULE_precedenceNotExpression = 286; + public static readonly RULE_precedenceAndExpression = 287; + public static readonly RULE_tableOrPartition = 288; + public static readonly RULE_partitionSpec = 289; + public static readonly RULE_partitionVal = 290; + public static readonly RULE_partitionSelectorSpec = 291; + public static readonly RULE_partitionSelectorVal = 292; + public static readonly RULE_subQuerySelectorOperator = 293; + public static readonly RULE_sysFuncNames = 294; + public static readonly RULE_id_ = 295; + public static readonly RULE_functionIdentifier = 296; + public static readonly RULE_principalIdentifier = 297; + public static readonly RULE_nonReserved = 298; + public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 299; + public static readonly RULE_configPropertiesItem = 300; + public static readonly RULE_resourcePlanDdlStatements = 301; + public static readonly RULE_mappingTypes = 302; + public static readonly RULE_rpAssign = 303; + public static readonly RULE_rpAssignList = 304; + public static readonly RULE_rpUnassign = 305; + public static readonly RULE_activate = 306; + public static readonly RULE_enable = 307; + public static readonly RULE_disable = 308; + public static readonly RULE_emptyColumn = 309; + public static readonly RULE_poolPath = 310; + public static readonly RULE_poolPathAllowEmpty = 311; + public static readonly RULE_triggerAtomExpression = 312; + public static readonly RULE_triggerActionExpression = 313; + public static readonly RULE_poolAssign = 314; + public static readonly RULE_poolAssignList = 315; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -981,60 +941,52 @@ export class HiveSqlParser extends SQLParserBase { "execStatement", "loadStatement", "replicationClause", "exportStatement", "importStatement", "replDumpStatement", "replDbPolicy", "replLoadStatement", "replTableLevelPolicy", "ddlStatement", "ifExists", "ifNotExists", - "restrictOrCascade", "rewriteEnabled", "rewriteDisabled", "storedAsDirs", - "createDatabaseStatement", "dbConnectorName", "switchDatabaseStatement", - "dropDatabaseStatement", "databaseComment", "truncateTableStatement", - "dropTableStatement", "inputFileFormat", "tabTypeExpr", "partTypeExpr", + "restrictOrCascade", "storedAsDirs", "rewriteEnabled", "rewriteDisabled", + "createDatabaseStatement", "switchDatabaseStatement", "dropDatabaseStatement", + "truncateTableStatement", "dropTableStatement", "tabTypeExpr", "partTypeExpr", "tabPartColTypeExpr", "descStatement", "analyzeStatement", "from_in", "db_schema", "showStatement", "showTablesFilterExpr", "lockStatement", - "lockDatabase", "lockMode", "unlockStatement", "unlockDatabase", - "createRoleStatement", "dropRoleStatement", "grantPrivileges", "revokePrivileges", + "lockDatabase", "createRoleStatement", "grantPrivileges", "revokePrivileges", "grantRole", "revokeRole", "showRoleGrants", "showRoles", "showCurrentRole", "setRole", "showGrants", "showRolePrincipals", "privilegeIncludeColObject", "privilegeObject", "privObject", "privObjectCols", "privilegeList", "privilegeDef", "privilegeType", "principalSpecification", "principalName", - "principalAlterName", "withGrantOption", "grantOptionFor", "adminOptionFor", - "withAdminOption", "metastoreCheck", "resourceList", "resource", - "resourceType", "createFunctionStatement", "dropFunctionStatement", - "reloadFunctionsStatement", "createMacroStatement", "dropMacroStatement", - "createIndexStatement", "dropIndexStatement", "createViewStatement", - "viewPartition", "viewOrganization", "viewClusterSpec", "viewComplexSpec", - "viewDistSpec", "viewSortSpec", "dropViewStatement", "createMaterializedViewStatement", - "dropMaterializedViewStatement", "createScheduledQueryStatement", + "principalAlterName", "metastoreCheck", "resourceType", "createFunctionStatement", + "dropFunctionStatement", "reloadFunctionsStatement", "createMacroStatement", + "dropMacroStatement", "createIndexStatement", "dropIndexStatement", + "createViewStatement", "viewPartition", "viewOrganization", "viewClusterSpec", + "viewComplexSpec", "viewDistSpec", "viewSortSpec", "dropViewStatement", + "createMaterializedViewStatement", "createScheduledQueryStatement", "dropScheduledQueryStatement", "alterScheduledQueryStatement", "alterScheduledQueryChange", "scheduleSpec", "executedAsSpec", "definedAsSpec", "showStmtIdentifier", "tableComment", "tableLifecycle", "createTablePartitionSpec", "createTablePartitionColumnTypeSpec", "partitionTransformSpec", "partitionTransformType", "tableBuckets", - "tableSkewed", "rowFormat", "recordReader", "recordWriter", "rowFormatSerde", - "rowFormatDelimited", "tableRowFormat", "tablePropertiesPrefixed", - "tableProperties", "tablePropertiesList", "keyValueProperties", - "keyValuePropertyList", "keyValueProperty", "tableRowFormatFieldIdentifier", - "tableRowFormatCollItemsIdentifier", "tableRowFormatMapKeysIdentifier", - "tableRowFormatLinesIdentifier", "tableRowNullFormat", "tableFileFormat", + "tableSkewed", "rowFormat", "rowFormatSerde", "rowFormatDelimited", + "tablePropertiesPrefixed", "tableProperties", "tablePropertiesList", + "keyValueProperties", "keyValuePropertyList", "keyValueProperty", + "rowFormatFieldIdentifier", "rowFormatCollItemsIdentifier", "rowFormatMapKeysIdentifier", + "rowFormatLinesIdentifier", "tableRowNullFormat", "tableFileFormat", "columnNameTypeList", "columnNameTypeOrConstraintList", "columnNameColonTypeList", "columnNameList", "columnName", "columnNamePath", "columnNamePathAllowEmpty", "columnNameCreate", "extColumnName", "columnNameOrderList", "columnParenthesesList", - "enableValidateSpecification", "enableSpecification", "validateSpecification", - "enforcedSpecification", "relySpecification", "createConstraint", - "alterConstraintWithName", "tableLevelConstraint", "pkUkConstraint", - "checkConstraint", "createForeignKey", "alterForeignKeyWithName", + "enableValidateSpecification", "enableSpecification", "enforcedSpecification", + "createConstraint", "alterConstraintWithName", "tableLevelConstraint", + "pkUkConstraint", "checkConstraint", "createForeignKey", "alterForeignKeyWithName", "skewedValueElement", "skewedColumnValuePairList", "skewedColumnValuePair", "constantList", "orderSpecification", "nullOrdering", "columnNameOrder", "columnNameCommentList", "columnNameComment", "columnRefOrder", "columnNameType", "columnNameTypeOrConstraint", "tableConstraint", "columnNameTypeConstraint", "columnConstraint", "foreignKeyConstraint", - "colConstraint", "alterColumnConstraint", "alterForeignKeyConstraint", - "alterColConstraint", "columnConstraintType", "defaultVal", "tableConstraintType", - "constraintOptsCreate", "constraintOptsAlter", "columnNameColonType", - "columnType", "columnTypeList", "type", "primitiveType", "listType", - "structType", "mapType", "unionType", "setOperator", "queryStatementExpression", - "queryStatementExpressionBody", "withClause", "cteStatement", "fromStatement", - "singleFromStatement", "regularBody", "atomSelectStatement", "selectStatement", - "setOpSelectStatement", "selectStatementWithCTE", "insertClause", - "destination", "limitClause", "columnAssignmentClause", "precedencePlusExpressionOrDefault", - "setColumnsClause", "sqlTransactionStatement", "transactionMode", - "whenClauses", "whenNotMatchedClause", "whenMatchedAndClause", "whenMatchedThenClause", - "compactionPool", "compactionType", "compactionStatus", "alterStatement", + "colConstraint", "columnConstraintType", "tableConstraintType", + "constraintOpts", "columnNameColonType", "typeList", "type", "primitiveType", + "listType", "structType", "mapType", "unionType", "setOperator", + "queryStatementExpression", "queryStatementExpressionBody", "withClause", + "cteStatement", "fromStatement", "singleFromStatement", "regularBody", + "atomSelectStatement", "selectStatement", "setOpSelectStatement", + "selectStatementWithCTE", "insertClause", "destination", "limitClause", + "columnAssignmentClause", "precedencePlusExpressionOrDefault", "setColumnsClause", + "sqlTransactionStatement", "transactionMode", "whenClauses", "whenNotMatchedClause", + "whenMatchedAndClause", "whenMatchedThenClause", "alterStatement", "alterTableStatementSuffix", "alterTblPartitionStatementSuffix", "alterViewStatementSuffix", "alterDatabaseStatementSuffix", "alterDataConnectorStatementSuffix", "locationPath", "alterStatementSuffixDropPartitions", "skewedLocationMap", @@ -1053,19 +1005,18 @@ export class HiveSqlParser extends SQLParserBase { "selectExpressionList", "window_clause", "window_specification", "window_frame", "window_frame_boundary", "groupByClause", "rollupStandard", "rollupOldSyntax", "groupingSetExpression", "havingClause", "qualifyClause", - "expressionOrDefault", "firstExpressionsWithAlias", "expressions", - "expressionsInParenthesis", "expressionsNotInParenthesis", "orderByClause", - "partitionByClause", "clusterByClause", "distributeByClause", "sortByClause", - "function_", "null_treatment", "functionNameCreate", "functionNameForDDL", - "functionNameForInvoke", "castExpression", "caseExpression", "whenExpression", - "floorExpression", "extractExpression", "timeQualifiers", "constant", - "intervalValue", "intervalExpression", "intervalQualifiers", "expression", - "atomExpression", "precedenceUnaryPrefixExpression", "precedenceBitwiseXorExpression", + "firstExpressionsWithAlias", "expressions", "expressionsInParenthesis", + "expressionsNotInParenthesis", "orderByClause", "partitionByClause", + "clusterByClause", "distributeByClause", "sortByClause", "function_", + "functionNameCreate", "functionNameForDDL", "functionNameForInvoke", + "castExpression", "caseExpression", "whenExpression", "floorExpression", + "extractExpression", "timeQualifiers", "constant", "intervalValue", + "intervalExpression", "intervalQualifiers", "expression", "atomExpression", + "precedenceUnaryPrefixExpression", "precedenceBitwiseXorExpression", "precedenceStarExpression", "precedencePlusExpression", "precedenceConcatenateExpression", "precedenceAmpersandExpression", "precedenceBitwiseOrExpression", - "precedenceSimilarOperator", "subQueryExpression", "precedenceSimilarExpression", + "subQueryExpression", "precedenceSimilarOperator", "precedenceSimilarExpression", "precedenceSimilarExpressionPart", "precedenceSimilarExpressionAtom", - "precedenceSimilarExpressionIn", "precedenceSimilarExpressionPartNot", "precedenceDistinctOperator", "precedenceEqualOperator", "precedenceEqualExpression", "isCondition", "precedenceNotExpression", "precedenceAndExpression", "tableOrPartition", "partitionSpec", "partitionVal", "partitionSelectorSpec", @@ -1073,9 +1024,8 @@ export class HiveSqlParser extends SQLParserBase { "id_", "functionIdentifier", "principalIdentifier", "nonReserved", "sql11ReservedKeywordsUsedAsFunctionName", "configPropertiesItem", "resourcePlanDdlStatements", "mappingTypes", "rpAssign", "rpAssignList", - "rpUnassign", "activate", "enable", "disable", "year", "month", - "week", "day", "hour", "minute", "second", "decimal", "emptyColumn", - "poolPath", "poolPathAllowEmpty", "triggerAtomExpression", "triggerActionExpression", + "rpUnassign", "activate", "enable", "disable", "emptyColumn", "poolPath", + "poolPathAllowEmpty", "triggerAtomExpression", "triggerActionExpression", "poolAssign", "poolAssignList", ]; @@ -1100,21 +1050,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 715; + this.state = 635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 33622025) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 810024961) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 35717185) !== 0) || _la === 318 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 8537089) !== 0) || _la === 387 || _la === 399) { { { - this.state = 712; + this.state = 632; this.statement(); } } - this.state = 717; + this.state = 637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 718; + this.state = 638; this.match(HiveSqlParser.EOF); } } @@ -1138,12 +1088,12 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 722; + this.state = 642; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 720; + this.state = 640; this.explainStatement(); } break; @@ -1191,19 +1141,19 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 721; + this.state = 641; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 725; + this.state = 645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 724; + this.state = 644; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1231,9 +1181,9 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 727; + this.state = 647; this.match(HiveSqlParser.KW_EXPLAIN); - this.state = 737; + this.state = 657; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1292,31 +1242,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 731; + this.state = 651; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 728; + this.state = 648; this.explainOption(); } } } - this.state = 733; + this.state = 653; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 734; + this.state = 654; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 735; + this.state = 655; this.match(HiveSqlParser.KW_REWRITE); - this.state = 736; + this.state = 656; this.queryStatementExpression(); } break; @@ -1344,41 +1294,41 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 761; + this.state = 681; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 739; + this.state = 659; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 740; + this.state = 660; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 741; + this.state = 661; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 742; + this.state = 662; this.match(HiveSqlParser.KW_CBO); - this.state = 744; + this.state = 664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 743; + this.state = 663; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1395,66 +1345,66 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 746; + this.state = 666; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 747; + this.state = 667; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 748; + this.state = 668; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 749; + this.state = 669; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 750; + this.state = 670; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 751; + this.state = 671; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 752; + this.state = 672; this.match(HiveSqlParser.KW_VECTORIZATION); - this.state = 754; + this.state = 674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 753; + this.state = 673; this.match(HiveSqlParser.KW_ONLY); } } - this.state = 757; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 121 || _la === 226 || _la === 325) { { - this.state = 756; + this.state = 676; this.vectorizationDetail(); } } @@ -1464,14 +1414,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 759; + this.state = 679; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 760; + this.state = 680; this.match(HiveSqlParser.KW_DDL); } break; @@ -1500,7 +1450,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 763; + this.state = 683; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 121 || _la === 226 || _la === 325)) { this.errorHandler.recoverInline(this); @@ -1531,68 +1481,68 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 836; + this.state = 756; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 765; + this.state = 685; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 766; + this.state = 686; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 767; + this.state = 687; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 768; + this.state = 688; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 769; + this.state = 689; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 770; + this.state = 690; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 771; + this.state = 691; this.match(HiveSqlParser.KW_REPL); - this.state = 772; + this.state = 692; this.match(HiveSqlParser.KW_STATUS); - this.state = 773; + this.state = 693; localContext._dbName = this.dbSchemaName(); - this.state = 776; + this.state = 696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 774; + this.state = 694; this.match(HiveSqlParser.KW_WITH); - this.state = 775; + this.state = 695; localContext._replConf = this.keyValueProperties(); } break; @@ -1602,25 +1552,25 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 778; + this.state = 698; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 779; + this.state = 699; this.match(HiveSqlParser.KW_DELETE); - this.state = 780; + this.state = 700; this.match(HiveSqlParser.KW_FROM); - this.state = 781; + this.state = 701; this.tableName(); - this.state = 783; + this.state = 703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 782; + this.state = 702; this.whereClause(); } } @@ -1630,18 +1580,18 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 785; + this.state = 705; this.match(HiveSqlParser.KW_UPDATE); - this.state = 786; + this.state = 706; this.tableName(); - this.state = 787; + this.state = 707; this.setColumnsClause(); - this.state = 789; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 788; + this.state = 708; this.whereClause(); } } @@ -1651,101 +1601,101 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 791; + this.state = 711; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 792; + this.state = 712; this.match(HiveSqlParser.KW_MERGE); - this.state = 794; + this.state = 714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 793; + this.state = 713; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 796; + this.state = 716; this.match(HiveSqlParser.KW_INTO); - this.state = 797; + this.state = 717; this.tableName(); - this.state = 802; + this.state = 722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 799; + this.state = 719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 798; + this.state = 718; this.match(HiveSqlParser.KW_AS); } } - this.state = 801; + this.state = 721; this.id_(); } } - this.state = 804; + this.state = 724; this.match(HiveSqlParser.KW_USING); - this.state = 805; + this.state = 725; this.joinSourcePart(); - this.state = 806; + this.state = 726; this.match(HiveSqlParser.KW_ON); - this.state = 807; + this.state = 727; this.expression(); - this.state = 808; + this.state = 728; this.whenClauses(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 810; + this.state = 730; this.match(HiveSqlParser.KW_PREPARE); - this.state = 811; + this.state = 731; this.id_(); - this.state = 812; + this.state = 732; this.match(HiveSqlParser.KW_FROM); - this.state = 813; + this.state = 733; this.queryStatementExpression(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 815; + this.state = 735; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 816; + this.state = 736; this.id_(); - this.state = 817; + this.state = 737; this.match(HiveSqlParser.KW_USING); - this.state = 818; + this.state = 738; this.constantList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 820; + this.state = 740; this.match(HiveSqlParser.KW_SET); - this.state = 821; + this.state = 741; this.configPropertiesItem(); - this.state = 826; + this.state = 746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 396) { { { - this.state = 822; + this.state = 742; _la = this.tokenStream.LA(1); if(!(_la === 395 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -1754,29 +1704,29 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 823; + this.state = 743; this.configPropertiesItem(); } } - this.state = 828; + this.state = 748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 829; + this.state = 749; this.match(HiveSqlParser.EQUAL); - this.state = 833; + this.state = 753; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 830; + this.state = 750; this.matchWildcard(); } } } - this.state = 835; + this.state = 755; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); } @@ -1805,47 +1755,53 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 838; + this.state = 758; this.match(HiveSqlParser.KW_LOAD); - this.state = 839; + this.state = 759; this.match(HiveSqlParser.KW_DATA); - this.state = 841; + this.state = 761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 840; + this.state = 760; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 843; + this.state = 763; this.match(HiveSqlParser.KW_INPATH); - this.state = 844; + this.state = 764; this.match(HiveSqlParser.StringLiteral); - this.state = 846; + this.state = 766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 845; + this.state = 765; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 848; + this.state = 768; this.match(HiveSqlParser.KW_INTO); - this.state = 849; + this.state = 769; this.match(HiveSqlParser.KW_TABLE); - this.state = 850; + this.state = 770; this.tableOrPartition(); - this.state = 852; + this.state = 775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 851; - this.inputFileFormat(); + this.state = 771; + this.match(HiveSqlParser.KW_INPUTFORMAT); + this.state = 772; + localContext._inFmt = this.match(HiveSqlParser.StringLiteral); + this.state = 773; + this.match(HiveSqlParser.KW_SERDE); + this.state = 774; + localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -1872,25 +1828,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 854; + this.state = 777; this.match(HiveSqlParser.KW_FOR); - this.state = 856; + this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 855; + this.state = 778; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 858; + this.state = 781; this.match(HiveSqlParser.KW_REPLICATION); - this.state = 859; + this.state = 782; this.match(HiveSqlParser.LPAREN); - this.state = 860; + this.state = 783; this.match(HiveSqlParser.StringLiteral); - this.state = 861; + this.state = 784; this.match(HiveSqlParser.RPAREN); } } @@ -1915,22 +1871,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 863; + this.state = 786; this.match(HiveSqlParser.KW_EXPORT); - this.state = 864; + this.state = 787; this.match(HiveSqlParser.KW_TABLE); - this.state = 865; + this.state = 788; this.tableOrPartition(); - this.state = 866; + this.state = 789; this.match(HiveSqlParser.KW_TO); - this.state = 867; + this.state = 790; this.match(HiveSqlParser.StringLiteral); - this.state = 869; + this.state = 792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 868; + this.state = 791; this.replicationClause(); } } @@ -1958,40 +1914,40 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 871; + this.state = 794; this.match(HiveSqlParser.KW_IMPORT); - this.state = 877; + this.state = 800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 329) { { - this.state = 873; + this.state = 796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 872; + this.state = 795; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 875; + this.state = 798; this.match(HiveSqlParser.KW_TABLE); - this.state = 876; + this.state = 799; this.tableOrPartition(); } } - this.state = 879; + this.state = 802; this.match(HiveSqlParser.KW_FROM); - this.state = 880; + this.state = 803; localContext._path = this.match(HiveSqlParser.StringLiteral); - this.state = 882; + this.state = 805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 881; + this.state = 804; this.locationPath(); } } @@ -2018,32 +1974,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 884; + this.state = 807; this.match(HiveSqlParser.KW_REPL); - this.state = 885; + this.state = 808; this.match(HiveSqlParser.KW_DUMP); - this.state = 886; + this.state = 809; localContext._dbPolicy = this.replDbPolicy(); - this.state = 889; + this.state = 812; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 887; + this.state = 810; this.match(HiveSqlParser.KW_REPLACE); - this.state = 888; + this.state = 811; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 893; + this.state = 816; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 891; + this.state = 814; this.match(HiveSqlParser.KW_WITH); - this.state = 892; + this.state = 815; localContext._replConf = this.keyValueProperties(); } break; @@ -2071,16 +2027,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 895; + this.state = 818; localContext._dbName = this.dbSchemaName(); - this.state = 898; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 896; + this.state = 819; this.match(HiveSqlParser.DOT); - this.state = 897; + this.state = 820; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2108,32 +2064,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 900; + this.state = 823; this.match(HiveSqlParser.KW_REPL); - this.state = 901; + this.state = 824; this.match(HiveSqlParser.KW_LOAD); - this.state = 902; + this.state = 825; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 905; + this.state = 828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 903; + this.state = 826; this.match(HiveSqlParser.KW_INTO); - this.state = 904; + this.state = 827; localContext._dbName = this.dbSchemaName(); } } - this.state = 909; + this.state = 832; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 907; + this.state = 830; this.match(HiveSqlParser.KW_WITH); - this.state = 908; + this.state = 831; localContext._replConf = this.keyValueProperties(); } break; @@ -2161,16 +2117,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 911; + this.state = 834; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 914; + this.state = 837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 912; + this.state = 835; this.match(HiveSqlParser.DOT); - this.state = 913; + this.state = 836; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2196,302 +2152,274 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 28, HiveSqlParser.RULE_ddlStatement); let _la: number; try { - this.state = 974; + this.state = 893; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 916; + this.state = 839; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 917; + this.state = 840; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 918; + this.state = 841; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 919; + this.state = 842; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 920; + this.state = 843; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 921; + this.state = 844; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 922; + this.state = 845; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 923; + this.state = 846; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 924; + this.state = 847; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 925; + this.state = 848; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 926; + this.state = 849; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 927; + this.state = 850; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 928; + this.state = 851; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 929; + this.state = 852; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 930; + this.state = 853; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 931; + this.state = 854; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 932; - this.dropMaterializedViewStatement(); + this.state = 855; + this.createFunctionStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 933; - this.createFunctionStatement(); + this.state = 856; + this.createMacroStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 934; - this.createMacroStatement(); + this.state = 857; + this.dropFunctionStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 935; - this.dropFunctionStatement(); + this.state = 858; + this.reloadFunctionsStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 936; - this.reloadFunctionsStatement(); + this.state = 859; + this.dropMacroStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 937; - this.dropMacroStatement(); + this.state = 860; + this.createIndexStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 938; - this.createIndexStatement(); + this.state = 861; + this.dropIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 939; - this.dropIndexStatement(); + this.state = 862; + this.analyzeStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 940; - this.analyzeStatement(); + this.state = 863; + this.lockStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 941; - this.lockStatement(); + this.state = 864; + this.lockDatabase(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 942; - this.unlockStatement(); + this.state = 865; + this.createRoleStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 943; - this.lockDatabase(); + this.state = 866; + this.grantPrivileges(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 944; - this.unlockDatabase(); + this.state = 867; + this.revokePrivileges(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 945; - this.createRoleStatement(); + this.state = 868; + this.showGrants(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 946; - this.dropRoleStatement(); + this.state = 869; + this.showRoleGrants(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 947; - this.grantPrivileges(); + this.state = 870; + this.showRolePrincipals(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 948; - this.revokePrivileges(); + this.state = 871; + this.showRoles(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 949; - this.showGrants(); + this.state = 872; + this.grantRole(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 950; - this.showRoleGrants(); + this.state = 873; + this.revokeRole(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 951; - this.showRolePrincipals(); + this.state = 874; + this.setRole(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 952; - this.showRoles(); + this.state = 875; + this.showCurrentRole(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 953; - this.grantRole(); - } - break; - case 39: - this.enterOuterAlt(localContext, 39); - { - this.state = 954; - this.revokeRole(); - } - break; - case 40: - this.enterOuterAlt(localContext, 40); - { - this.state = 955; - this.setRole(); - } - break; - case 41: - this.enterOuterAlt(localContext, 41); - { - this.state = 956; - this.showCurrentRole(); - } - break; - case 42: - this.enterOuterAlt(localContext, 42); - { - this.state = 957; + this.state = 876; this.match(HiveSqlParser.KW_ABORT); - this.state = 958; + this.state = 877; _la = this.tokenStream.LA(1); if(!(_la === 50 || _la === 346)) { this.errorHandler.recoverInline(this); @@ -2500,63 +2428,63 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 960; + this.state = 879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 959; + this.state = 878; this.match(HiveSqlParser.Number); } } - this.state = 962; + this.state = 881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); } break; - case 43: - this.enterOuterAlt(localContext, 43); + case 39: + this.enterOuterAlt(localContext, 39); { - this.state = 964; + this.state = 883; this.match(HiveSqlParser.KW_KILL); - this.state = 965; + this.state = 884; this.match(HiveSqlParser.KW_QUERY); - this.state = 967; + this.state = 886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 966; + this.state = 885; this.match(HiveSqlParser.StringLiteral); } } - this.state = 969; + this.state = 888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 426); } break; - case 44: - this.enterOuterAlt(localContext, 44); + case 40: + this.enterOuterAlt(localContext, 40); { - this.state = 971; + this.state = 890; this.resourcePlanDdlStatements(); } break; - case 45: - this.enterOuterAlt(localContext, 45); + case 41: + this.enterOuterAlt(localContext, 41); { - this.state = 972; + this.state = 891; this.createDataConnectorStatement(); } break; - case 46: - this.enterOuterAlt(localContext, 46); + case 42: + this.enterOuterAlt(localContext, 42); { - this.state = 973; + this.state = 892; this.dropDataConnectorStatement(); } break; @@ -2582,9 +2510,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; + this.state = 895; this.match(HiveSqlParser.KW_IF); - this.state = 977; + this.state = 896; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2608,11 +2536,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 898; this.match(HiveSqlParser.KW_IF); - this.state = 980; + this.state = 899; this.match(HiveSqlParser.KW_NOT); - this.state = 981; + this.state = 900; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2637,7 +2565,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 983; + this.state = 902; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -2662,16 +2590,18 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public rewriteEnabled(): RewriteEnabledContext { - let localContext = new RewriteEnabledContext(this.context, this.state); - this.enterRule(localContext, 36, HiveSqlParser.RULE_rewriteEnabled); + public storedAsDirs(): StoredAsDirsContext { + let localContext = new StoredAsDirsContext(this.context, this.state); + this.enterRule(localContext, 36, HiveSqlParser.RULE_storedAsDirs); try { this.enterOuterAlt(localContext, 1); { - this.state = 985; - this.enable(); - this.state = 986; - this.match(HiveSqlParser.KW_REWRITE); + this.state = 904; + this.match(HiveSqlParser.KW_STORED); + this.state = 905; + this.match(HiveSqlParser.KW_AS); + this.state = 906; + this.match(HiveSqlParser.KW_DIRECTORIES); } } catch (re) { @@ -2688,15 +2618,15 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public rewriteDisabled(): RewriteDisabledContext { - let localContext = new RewriteDisabledContext(this.context, this.state); - this.enterRule(localContext, 38, HiveSqlParser.RULE_rewriteDisabled); + public rewriteEnabled(): RewriteEnabledContext { + let localContext = new RewriteEnabledContext(this.context, this.state); + this.enterRule(localContext, 38, HiveSqlParser.RULE_rewriteEnabled); try { this.enterOuterAlt(localContext, 1); { - this.state = 988; - this.disable(); - this.state = 989; + this.state = 908; + this.enable(); + this.state = 909; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2714,18 +2644,16 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public storedAsDirs(): StoredAsDirsContext { - let localContext = new StoredAsDirsContext(this.context, this.state); - this.enterRule(localContext, 40, HiveSqlParser.RULE_storedAsDirs); + public rewriteDisabled(): RewriteDisabledContext { + let localContext = new RewriteDisabledContext(this.context, this.state); + this.enterRule(localContext, 40, HiveSqlParser.RULE_rewriteDisabled); try { this.enterOuterAlt(localContext, 1); { - this.state = 991; - this.match(HiveSqlParser.KW_STORED); - this.state = 992; - this.match(HiveSqlParser.KW_AS); - this.state = 993; - this.match(HiveSqlParser.KW_DIRECTORIES); + this.state = 911; + this.disable(); + this.state = 912; + this.match(HiveSqlParser.KW_REWRITE); } } catch (re) { @@ -2747,80 +2675,82 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 42, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1035; + this.state = 957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 995; + this.state = 914; this.match(HiveSqlParser.KW_CREATE); - this.state = 997; + this.state = 916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 996; + this.state = 915; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 999; + this.state = 918; this.db_schema(); - this.state = 1001; + this.state = 920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1000; + this.state = 919; this.ifNotExists(); } } - this.state = 1003; + this.state = 922; localContext._name = this.dbSchemaNameCreate(); - this.state = 1005; + this.state = 925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1004; - this.databaseComment(); + this.state = 923; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 924; + localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1008; + this.state = 928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1007; + this.state = 927; this.locationPath(); } } - this.state = 1012; + this.state = 932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1010; + this.state = 930; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 1011; + this.state = 931; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1017; + this.state = 937; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 1014; + this.state = 934; this.match(HiveSqlParser.KW_WITH); - this.state = 1015; + this.state = 935; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1016; + this.state = 936; localContext._dbprops = this.keyValueProperties(); } break; @@ -2830,46 +2760,50 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1019; + this.state = 939; this.match(HiveSqlParser.KW_CREATE); - this.state = 1020; + this.state = 940; this.match(HiveSqlParser.KW_REMOTE); - this.state = 1021; + this.state = 941; this.db_schema(); - this.state = 1023; + this.state = 943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1022; + this.state = 942; this.ifNotExists(); } } - this.state = 1025; + this.state = 945; localContext._name = this.dbSchemaNameCreate(); - this.state = 1027; + this.state = 948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1026; - this.databaseComment(); + this.state = 946; + this.match(HiveSqlParser.KW_COMMENT); + this.state = 947; + localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1029; - this.dbConnectorName(); - this.state = 1033; + this.state = 950; + this.match(HiveSqlParser.KW_USING); + this.state = 951; + localContext._dcName = this.dbSchemaName(); + this.state = 955; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 1030; + this.state = 952; this.match(HiveSqlParser.KW_WITH); - this.state = 1031; + this.state = 953; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1032; + this.state = 954; localContext._dbprops = this.keyValueProperties(); } break; @@ -2892,41 +2826,15 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public dbConnectorName(): DbConnectorNameContext { - let localContext = new DbConnectorNameContext(this.context, this.state); - this.enterRule(localContext, 44, HiveSqlParser.RULE_dbConnectorName); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1037; - this.match(HiveSqlParser.KW_USING); - this.state = 1038; - localContext._dcName = this.dbSchemaName(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public switchDatabaseStatement(): SwitchDatabaseStatementContext { let localContext = new SwitchDatabaseStatementContext(this.context, this.state); - this.enterRule(localContext, 46, HiveSqlParser.RULE_switchDatabaseStatement); + this.enterRule(localContext, 44, HiveSqlParser.RULE_switchDatabaseStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1040; + this.state = 959; this.match(HiveSqlParser.KW_USE); - this.state = 1041; + this.state = 960; this.dbSchemaName(); } } @@ -2946,33 +2854,33 @@ export class HiveSqlParser extends SQLParserBase { } public dropDatabaseStatement(): DropDatabaseStatementContext { let localContext = new DropDatabaseStatementContext(this.context, this.state); - this.enterRule(localContext, 48, HiveSqlParser.RULE_dropDatabaseStatement); + this.enterRule(localContext, 46, HiveSqlParser.RULE_dropDatabaseStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1043; + this.state = 962; this.match(HiveSqlParser.KW_DROP); - this.state = 1044; + this.state = 963; this.db_schema(); - this.state = 1046; + this.state = 965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1045; + this.state = 964; this.ifExists(); } } - this.state = 1048; + this.state = 967; this.dbSchemaName(); - this.state = 1050; + this.state = 969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 1049; + this.state = 968; this.restrictOrCascade(); } } @@ -2993,75 +2901,49 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public databaseComment(): DatabaseCommentContext { - let localContext = new DatabaseCommentContext(this.context, this.state); - this.enterRule(localContext, 50, HiveSqlParser.RULE_databaseComment); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1052; - this.match(HiveSqlParser.KW_COMMENT); - this.state = 1053; - localContext._comment = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public truncateTableStatement(): TruncateTableStatementContext { let localContext = new TruncateTableStatementContext(this.context, this.state); - this.enterRule(localContext, 52, HiveSqlParser.RULE_truncateTableStatement); + this.enterRule(localContext, 48, HiveSqlParser.RULE_truncateTableStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1055; + this.state = 971; this.match(HiveSqlParser.KW_TRUNCATE); - this.state = 1057; + this.state = 973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1056; + this.state = 972; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1059; + this.state = 975; this.tableOrPartition(); - this.state = 1065; + this.state = 981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1060; + this.state = 976; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1061; + this.state = 977; this.match(HiveSqlParser.LPAREN); - this.state = 1062; + this.state = 978; this.columnNameList(); - this.state = 1063; + this.state = 979; this.match(HiveSqlParser.RPAREN); } } - this.state = 1068; + this.state = 984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1067; + this.state = 983; this.match(HiveSqlParser.KW_FORCE); } } @@ -3084,43 +2966,43 @@ export class HiveSqlParser extends SQLParserBase { } public dropTableStatement(): DropTableStatementContext { let localContext = new DropTableStatementContext(this.context, this.state); - this.enterRule(localContext, 54, HiveSqlParser.RULE_dropTableStatement); + this.enterRule(localContext, 50, HiveSqlParser.RULE_dropTableStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1070; + this.state = 986; this.match(HiveSqlParser.KW_DROP); - this.state = 1071; + this.state = 987; this.match(HiveSqlParser.KW_TABLE); - this.state = 1073; + this.state = 989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1072; + this.state = 988; this.ifExists(); } } - this.state = 1075; + this.state = 991; this.tableName(); - this.state = 1077; + this.state = 993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 1076; + this.state = 992; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1080; + this.state = 996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1079; + this.state = 995; this.replicationClause(); } } @@ -3141,103 +3023,73 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public inputFileFormat(): InputFileFormatContext { - let localContext = new InputFileFormatContext(this.context, this.state); - this.enterRule(localContext, 56, HiveSqlParser.RULE_inputFileFormat); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1082; - this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1083; - localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 1084; - this.match(HiveSqlParser.KW_SERDE); - this.state = 1085; - localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public tabTypeExpr(): TabTypeExprContext { let localContext = new TabTypeExprContext(this.context, this.state); - this.enterRule(localContext, 58, HiveSqlParser.RULE_tabTypeExpr); + this.enterRule(localContext, 52, HiveSqlParser.RULE_tabTypeExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1087; + this.state = 998; this.id_(); - this.state = 1090; + this.state = 1001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 1088; + this.state = 999; this.match(HiveSqlParser.DOT); - this.state = 1089; + this.state = 1000; this.id_(); } } - this.state = 1105; + this.state = 1016; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { case 1: { - this.state = 1092; + this.state = 1003; this.id_(); - this.state = 1102; + this.state = 1013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 1093; + this.state = 1004; this.match(HiveSqlParser.DOT); - this.state = 1098; + this.state = 1009; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1094; + this.state = 1005; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1095; + this.state = 1006; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1096; + this.state = 1007; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1097; + this.state = 1008; this.id_(); } break; } } } - this.state = 1104; + this.state = 1015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3262,19 +3114,19 @@ export class HiveSqlParser extends SQLParserBase { } public partTypeExpr(): PartTypeExprContext { let localContext = new PartTypeExprContext(this.context, this.state); - this.enterRule(localContext, 60, HiveSqlParser.RULE_partTypeExpr); + this.enterRule(localContext, 54, HiveSqlParser.RULE_partTypeExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1107; + this.state = 1018; this.tabTypeExpr(); - this.state = 1109; + this.state = 1020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1108; + this.state = 1019; this.partitionSpec(); } } @@ -3297,28 +3149,28 @@ export class HiveSqlParser extends SQLParserBase { } public tabPartColTypeExpr(): TabPartColTypeExprContext { let localContext = new TabPartColTypeExprContext(this.context, this.state); - this.enterRule(localContext, 62, HiveSqlParser.RULE_tabPartColTypeExpr); + this.enterRule(localContext, 56, HiveSqlParser.RULE_tabPartColTypeExpr); try { this.enterOuterAlt(localContext, 1); { - this.state = 1111; + this.state = 1022; this.tableOrView(); - this.state = 1113; + this.state = 1024; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1112; + this.state = 1023; this.partitionSpec(); } break; } - this.state = 1116; + this.state = 1027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1115; + this.state = 1026; this.extColumnName(); } break; @@ -3341,12 +3193,12 @@ export class HiveSqlParser extends SQLParserBase { } public descStatement(): DescStatementContext { let localContext = new DescStatementContext(this.context, this.state); - this.enterRule(localContext, 64, HiveSqlParser.RULE_descStatement); + this.enterRule(localContext, 58, HiveSqlParser.RULE_descStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1118; + this.state = 1029; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3355,90 +3207,90 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1141; + this.state = 1052; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1119; + this.state = 1030; this.db_schema(); - this.state = 1121; + this.state = 1032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1120; + this.state = 1031; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1123; + this.state = 1034; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1125; + this.state = 1036; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 1127; + this.state = 1038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1126; + this.state = 1037; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1129; + this.state = 1040; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1130; + this.state = 1041; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1132; + this.state = 1043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1131; + this.state = 1042; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1134; + this.state = 1045; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1137; + this.state = 1048; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1135; + this.state = 1046; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1136; + this.state = 1047; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1139; + this.state = 1050; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1140; + this.state = 1051; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3461,46 +3313,46 @@ export class HiveSqlParser extends SQLParserBase { } public analyzeStatement(): AnalyzeStatementContext { let localContext = new AnalyzeStatementContext(this.context, this.state); - this.enterRule(localContext, 66, HiveSqlParser.RULE_analyzeStatement); + this.enterRule(localContext, 60, HiveSqlParser.RULE_analyzeStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1143; + this.state = 1054; this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1144; + this.state = 1055; this.match(HiveSqlParser.KW_TABLE); - this.state = 1145; + this.state = 1056; localContext._parttype = this.tableOrPartition(); - this.state = 1158; + this.state = 1069; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1146; + this.state = 1057; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1147; + this.state = 1058; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1154; + this.state = 1065; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1148; + this.state = 1059; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1149; + this.state = 1060; this.match(HiveSqlParser.KW_FOR); - this.state = 1150; + this.state = 1061; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1152; + this.state = 1063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1151; + this.state = 1062; localContext._statsColumnName = this.columnNameList(); } break; @@ -3561,9 +3413,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_CACHE: { - this.state = 1156; + this.state = 1067; this.match(HiveSqlParser.KW_CACHE); - this.state = 1157; + this.state = 1068; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3588,12 +3440,12 @@ export class HiveSqlParser extends SQLParserBase { } public from_in(): From_inContext { let localContext = new From_inContext(this.context, this.state); - this.enterRule(localContext, 68, HiveSqlParser.RULE_from_in); + this.enterRule(localContext, 62, HiveSqlParser.RULE_from_in); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1160; + this.state = 1071; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3620,12 +3472,12 @@ export class HiveSqlParser extends SQLParserBase { } public db_schema(): Db_schemaContext { let localContext = new Db_schemaContext(this.context, this.state); - this.enterRule(localContext, 70, HiveSqlParser.RULE_db_schema); + this.enterRule(localContext, 64, HiveSqlParser.RULE_db_schema); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1162; + this.state = 1073; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 295)) { this.errorHandler.recoverInline(this); @@ -3652,18 +3504,20 @@ export class HiveSqlParser extends SQLParserBase { } public showStatement(): ShowStatementContext { let localContext = new ShowStatementContext(this.context, this.state); - this.enterRule(localContext, 72, HiveSqlParser.RULE_showStatement); + this.enterRule(localContext, 66, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1347; + this.enterOuterAlt(localContext, 1); + { + this.state = 1075; + this.match(HiveSqlParser.KW_SHOW); + this.state = 1245; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); + switch (this.tokenStream.LA(1)) { + case HiveSqlParser.KW_DATABASES: + case HiveSqlParser.KW_SCHEMAS: { - this.state = 1164; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1165; + this.state = 1076; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 296)) { this.errorHandler.recoverInline(this); @@ -3672,290 +3526,271 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1168; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1166; + this.state = 1077; this.match(HiveSqlParser.KW_LIKE); - this.state = 1167; + this.state = 1078; this.showStmtIdentifier(); } } } break; - case 2: - this.enterOuterAlt(localContext, 2); + case HiveSqlParser.KW_EXTENDED: + case HiveSqlParser.KW_TABLES: { - this.state = 1170; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1172; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1171; + this.state = 1081; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1174; + this.state = 1084; this.match(HiveSqlParser.KW_TABLES); - this.state = 1178; + this.state = 1088; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1175; + this.state = 1085; this.from_in(); - this.state = 1176; + this.state = 1086; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1181; + this.state = 1091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1180; + this.state = 1090; localContext._filter = this.showTablesFilterExpr(); } break; } } break; - case 3: - this.enterOuterAlt(localContext, 3); + case HiveSqlParser.KW_VIEWS: { - this.state = 1183; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1184; + this.state = 1093; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1188; + this.state = 1097; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1185; + this.state = 1094; this.from_in(); - this.state = 1186; + this.state = 1095; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1193; + this.state = 1102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 1190; + this.state = 1099; this.match(HiveSqlParser.KW_LIKE); - this.state = 1191; + this.state = 1100; this.showStmtIdentifier(); } break; case 2: { - this.state = 1192; + this.state = 1101; this.showStmtIdentifier(); } break; } } break; - case 4: - this.enterOuterAlt(localContext, 4); + case HiveSqlParser.KW_MATERIALIZED: { - this.state = 1195; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1196; + this.state = 1104; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1197; + this.state = 1105; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1201; + this.state = 1109; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 1198; + this.state = 1106; this.from_in(); - this.state = 1199; + this.state = 1107; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1206; + this.state = 1114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { - this.state = 1203; + this.state = 1111; this.match(HiveSqlParser.KW_LIKE); - this.state = 1204; + this.state = 1112; this.showStmtIdentifier(); } break; case 2: { - this.state = 1205; + this.state = 1113; this.showStmtIdentifier(); } break; } } break; - case 5: - this.enterOuterAlt(localContext, 5); + case HiveSqlParser.KW_COLUMNS: + case HiveSqlParser.KW_SORTED: { - this.state = 1208; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1210; + this.state = 1117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1209; + this.state = 1116; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1212; + this.state = 1119; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1213; + this.state = 1120; this.from_in(); - this.state = 1214; + this.state = 1121; this.tableOrView(); - this.state = 1218; + this.state = 1125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1215; + this.state = 1122; this.from_in(); - this.state = 1216; + this.state = 1123; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1223; + this.state = 1130; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 1220; + this.state = 1127; this.match(HiveSqlParser.KW_LIKE); - this.state = 1221; + this.state = 1128; this.showStmtIdentifier(); } break; case 2: { - this.state = 1222; + this.state = 1129; this.showStmtIdentifier(); } break; } } break; - case 6: - this.enterOuterAlt(localContext, 6); + case HiveSqlParser.KW_FUNCTIONS: { - this.state = 1225; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1226; + this.state = 1132; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1229; + this.state = 1135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1227; + this.state = 1133; this.match(HiveSqlParser.KW_LIKE); - this.state = 1228; + this.state = 1134; this.functionNameForDDL(); } } } break; - case 7: - this.enterOuterAlt(localContext, 7); + case HiveSqlParser.KW_PARTITIONS: { - this.state = 1231; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1232; + this.state = 1137; this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1233; + this.state = 1138; localContext._tabOrViewName = this.tableOrView(); - this.state = 1235; + this.state = 1140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1234; + this.state = 1139; this.partitionSpec(); } } - this.state = 1238; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 1237; + this.state = 1142; this.whereClause(); } } - this.state = 1241; + this.state = 1146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1240; + this.state = 1145; this.orderByClause(); } } - this.state = 1244; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1243; + this.state = 1148; this.limitClause(); } } } break; - case 8: - this.enterOuterAlt(localContext, 8); + case HiveSqlParser.KW_CREATE: { - this.state = 1246; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1247; + this.state = 1151; this.match(HiveSqlParser.KW_CREATE); - this.state = 1253; + this.state = 1157; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1248; + this.state = 1152; this.db_schema(); - this.state = 1249; + this.state = 1153; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1251; + this.state = 1155; this.match(HiveSqlParser.KW_TABLE); - this.state = 1252; + this.state = 1156; localContext._tabName = this.tableName(); } break; @@ -3964,90 +3799,81 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 9: - this.enterOuterAlt(localContext, 9); + case HiveSqlParser.KW_TABLE: { - this.state = 1255; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1256; + this.state = 1159; this.match(HiveSqlParser.KW_TABLE); - this.state = 1257; + this.state = 1160; this.match(HiveSqlParser.KW_EXTENDED); - this.state = 1261; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1258; + this.state = 1161; this.from_in(); - this.state = 1259; + this.state = 1162; localContext._db_name = this.dbSchemaName(); } } - this.state = 1263; + this.state = 1166; this.match(HiveSqlParser.KW_LIKE); - this.state = 1264; + this.state = 1167; this.showStmtIdentifier(); - this.state = 1266; + this.state = 1169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1265; + this.state = 1168; this.partitionSpec(); } } } break; - case 10: - this.enterOuterAlt(localContext, 10); + case HiveSqlParser.KW_TBLPROPERTIES: { - this.state = 1268; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1269; + this.state = 1171; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1270; + this.state = 1172; this.tableName(); - this.state = 1274; + this.state = 1176; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 1271; + this.state = 1173; this.match(HiveSqlParser.LPAREN); - this.state = 1272; + this.state = 1174; localContext._prptyName = this.match(HiveSqlParser.StringLiteral); - this.state = 1273; + this.state = 1175; this.match(HiveSqlParser.RPAREN); } break; } } break; - case 11: - this.enterOuterAlt(localContext, 11); + case HiveSqlParser.KW_LOCKS: { - this.state = 1276; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1277; + this.state = 1178; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1289; + this.state = 1190; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1278; + this.state = 1179; this.db_schema(); - this.state = 1279; + this.state = 1180; localContext._dbName = this.dbSchemaName(); - this.state = 1281; + this.state = 1182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1280; + this.state = 1181; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4056,22 +3882,22 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 1284; + this.state = 1185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1283; + this.state = 1184; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1287; + this.state = 1188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1286; + this.state = 1187; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4081,23 +3907,20 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 12: - this.enterOuterAlt(localContext, 12); + case HiveSqlParser.KW_COMPACTIONS: { - this.state = 1291; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1292; + this.state = 1192; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1319; + this.state = 1222; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPACT_ID: { - this.state = 1293; + this.state = 1193; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 1294; + this.state = 1194; this.match(HiveSqlParser.EQUAL); - this.state = 1295; + this.state = 1195; localContext._compactId = this.match(HiveSqlParser.Number); } break; @@ -4370,27 +4193,27 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: case HiveSqlParser.Identifier: { - this.state = 1302; + this.state = 1202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { { - this.state = 1296; + this.state = 1196; this.db_schema(); - this.state = 1297; + this.state = 1197; localContext._dbName = this.dbSchemaName(); } } break; case 2: { - this.state = 1300; + this.state = 1200; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1299; + this.state = 1199; localContext._parttype = this.partTypeExpr(); } break; @@ -4398,52 +4221,58 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 1305; + this.state = 1206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 1304; - this.compactionPool(); + this.state = 1204; + this.match(HiveSqlParser.KW_POOL); + this.state = 1205; + localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1308; + this.state = 1210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1307; - this.compactionType(); + this.state = 1208; + this.match(HiveSqlParser.KW_TYPE); + this.state = 1209; + localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1311; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 1310; - this.compactionStatus(); + this.state = 1212; + this.match(HiveSqlParser.KW_STATUS); + this.state = 1213; + localContext._status = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1314; + this.state = 1217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1313; + this.state = 1216; this.orderByClause(); } } - this.state = 1317; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1316; + this.state = 1219; this.limitClause(); } } @@ -4455,47 +4284,38 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 13: - this.enterOuterAlt(localContext, 13); + case HiveSqlParser.KW_TRANSACTIONS: { - this.state = 1321; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1322; + this.state = 1224; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; - case 14: - this.enterOuterAlt(localContext, 14); + case HiveSqlParser.KW_CONF: { - this.state = 1323; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1324; + this.state = 1225; this.match(HiveSqlParser.KW_CONF); - this.state = 1325; + this.state = 1226; this.match(HiveSqlParser.StringLiteral); } break; - case 15: - this.enterOuterAlt(localContext, 15); + case HiveSqlParser.KW_RESOURCE: { - this.state = 1326; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1327; + this.state = 1227; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 1331; + this.state = 1231; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1328; + this.state = 1228; this.match(HiveSqlParser.KW_PLAN); - this.state = 1329; + this.state = 1229; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1330; + this.state = 1230; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4504,31 +4324,27 @@ export class HiveSqlParser extends SQLParserBase { } } break; - case 16: - this.enterOuterAlt(localContext, 16); + case HiveSqlParser.KW_DATACONNECTORS: { - this.state = 1333; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1334; + this.state = 1233; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; - case 17: - this.enterOuterAlt(localContext, 17); + case HiveSqlParser.KW_FORMATTED: + case HiveSqlParser.KW_INDEX: + case HiveSqlParser.KW_INDEXES: { - this.state = 1335; - this.match(HiveSqlParser.KW_SHOW); - this.state = 1337; + this.state = 1235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1336; + this.state = 1234; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1339; + this.state = 1237; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4537,24 +4353,27 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1340; + this.state = 1238; this.match(HiveSqlParser.KW_ON); - this.state = 1341; + this.state = 1239; this.tableName(); - this.state = 1345; + this.state = 1243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1342; + this.state = 1240; this.from_in(); - this.state = 1343; + this.state = 1241; this.dbSchemaName(); } break; } } break; + default: + throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -4573,30 +4392,30 @@ export class HiveSqlParser extends SQLParserBase { } public showTablesFilterExpr(): ShowTablesFilterExprContext { let localContext = new ShowTablesFilterExprContext(this.context, this.state); - this.enterRule(localContext, 74, HiveSqlParser.RULE_showTablesFilterExpr); + this.enterRule(localContext, 68, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1357; + this.state = 1255; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1247; this.match(HiveSqlParser.KW_WHERE); - this.state = 1350; + this.state = 1248; this.id_(); - this.state = 1351; + this.state = 1249; this.match(HiveSqlParser.EQUAL); - this.state = 1352; + this.state = 1250; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1354; + this.state = 1252; this.match(HiveSqlParser.KW_LIKE); - this.state = 1355; + this.state = 1253; this.showStmtIdentifier(); } break; @@ -4843,7 +4662,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1356; + this.state = 1254; this.showStmtIdentifier(); } break; @@ -4867,18 +4686,41 @@ export class HiveSqlParser extends SQLParserBase { } public lockStatement(): LockStatementContext { let localContext = new LockStatementContext(this.context, this.state); - this.enterRule(localContext, 76, HiveSqlParser.RULE_lockStatement); + this.enterRule(localContext, 70, HiveSqlParser.RULE_lockStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1359; - this.match(HiveSqlParser.KW_LOCK); - this.state = 1360; + this.state = 1257; + _la = this.tokenStream.LA(1); + if(!(_la === 190 || _la === 361)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1258; this.match(HiveSqlParser.KW_TABLE); - this.state = 1361; + this.state = 1259; this.tableOrPartition(); - this.state = 1362; - this.lockMode(); + this.state = 1261; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 114 || _la === 307) { + { + this.state = 1260; + _la = this.tokenStream.LA(1); + if(!(_la === 114 || _la === 307)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + } } catch (re) { @@ -4897,106 +4739,41 @@ export class HiveSqlParser extends SQLParserBase { } public lockDatabase(): LockDatabaseContext { let localContext = new LockDatabaseContext(this.context, this.state); - this.enterRule(localContext, 78, HiveSqlParser.RULE_lockDatabase); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1364; - this.match(HiveSqlParser.KW_LOCK); - this.state = 1365; - this.db_schema(); - this.state = 1366; - localContext._dbName = this.dbSchemaName(); - this.state = 1367; - this.lockMode(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public lockMode(): LockModeContext { - let localContext = new LockModeContext(this.context, this.state); - this.enterRule(localContext, 80, HiveSqlParser.RULE_lockMode); + this.enterRule(localContext, 72, HiveSqlParser.RULE_lockDatabase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1369; + this.state = 1263; _la = this.tokenStream.LA(1); - if(!(_la === 114 || _la === 307)) { + if(!(_la === 190 || _la === 361)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public unlockStatement(): UnlockStatementContext { - let localContext = new UnlockStatementContext(this.context, this.state); - this.enterRule(localContext, 82, HiveSqlParser.RULE_unlockStatement); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1371; - this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1372; - this.match(HiveSqlParser.KW_TABLE); - this.state = 1373; - this.tableOrPartition(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public unlockDatabase(): UnlockDatabaseContext { - let localContext = new UnlockDatabaseContext(this.context, this.state); - this.enterRule(localContext, 84, HiveSqlParser.RULE_unlockDatabase); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1375; - this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1376; + this.state = 1264; this.db_schema(); - this.state = 1377; + this.state = 1265; localContext._dbName = this.dbSchemaName(); + this.state = 1267; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 114 || _la === 307) { + { + this.state = 1266; + _la = this.tokenStream.LA(1); + if(!(_la === 114 || _la === 307)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + } } catch (re) { @@ -5015,43 +4792,23 @@ export class HiveSqlParser extends SQLParserBase { } public createRoleStatement(): CreateRoleStatementContext { let localContext = new CreateRoleStatementContext(this.context, this.state); - this.enterRule(localContext, 86, HiveSqlParser.RULE_createRoleStatement); + this.enterRule(localContext, 74, HiveSqlParser.RULE_createRoleStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1379; - this.match(HiveSqlParser.KW_CREATE); - this.state = 1380; - this.match(HiveSqlParser.KW_ROLE); - this.state = 1381; - localContext._roleName = this.id_(); + this.state = 1269; + _la = this.tokenStream.LA(1); + if(!(_la === 58 || _la === 101)) { + this.errorHandler.recoverInline(this); } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; + else { + this.errorHandler.reportMatch(this); + this.consume(); } - } - finally { - this.exitRule(); - } - return localContext; - } - public dropRoleStatement(): DropRoleStatementContext { - let localContext = new DropRoleStatementContext(this.context, this.state); - this.enterRule(localContext, 88, HiveSqlParser.RULE_dropRoleStatement); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1383; - this.match(HiveSqlParser.KW_DROP); - this.state = 1384; + this.state = 1270; this.match(HiveSqlParser.KW_ROLE); - this.state = 1385; + this.state = 1271; localContext._roleName = this.id_(); } } @@ -5071,36 +4828,40 @@ export class HiveSqlParser extends SQLParserBase { } public grantPrivileges(): GrantPrivilegesContext { let localContext = new GrantPrivilegesContext(this.context, this.state); - this.enterRule(localContext, 90, HiveSqlParser.RULE_grantPrivileges); + this.enterRule(localContext, 76, HiveSqlParser.RULE_grantPrivileges); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1387; + this.state = 1273; this.match(HiveSqlParser.KW_GRANT); - this.state = 1388; + this.state = 1274; localContext._privList = this.privilegeList(); - this.state = 1390; + this.state = 1276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1389; + this.state = 1275; this.privilegeObject(); } } - this.state = 1392; + this.state = 1278; this.match(HiveSqlParser.KW_TO); - this.state = 1393; + this.state = 1279; this.principalSpecification(); - this.state = 1395; + this.state = 1283; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1394; - this.withGrantOption(); + this.state = 1280; + this.match(HiveSqlParser.KW_WITH); + this.state = 1281; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1282; + this.match(HiveSqlParser.KW_OPTION); } break; } @@ -5122,38 +4883,42 @@ export class HiveSqlParser extends SQLParserBase { } public revokePrivileges(): RevokePrivilegesContext { let localContext = new RevokePrivilegesContext(this.context, this.state); - this.enterRule(localContext, 92, HiveSqlParser.RULE_revokePrivileges); + this.enterRule(localContext, 78, HiveSqlParser.RULE_revokePrivileges); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1397; + this.state = 1285; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1399; + this.state = 1289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1398; - this.grantOptionFor(); + this.state = 1286; + this.match(HiveSqlParser.KW_GRANT); + this.state = 1287; + this.match(HiveSqlParser.KW_OPTION); + this.state = 1288; + this.match(HiveSqlParser.KW_FOR); } } - this.state = 1401; + this.state = 1291; this.privilegeList(); - this.state = 1403; + this.state = 1293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1402; + this.state = 1292; this.privilegeObject(); } } - this.state = 1405; + this.state = 1295; this.match(HiveSqlParser.KW_FROM); - this.state = 1406; + this.state = 1296; this.principalSpecification(); } } @@ -5173,52 +4938,56 @@ export class HiveSqlParser extends SQLParserBase { } public grantRole(): GrantRoleContext { let localContext = new GrantRoleContext(this.context, this.state); - this.enterRule(localContext, 94, HiveSqlParser.RULE_grantRole); + this.enterRule(localContext, 80, HiveSqlParser.RULE_grantRole); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1298; this.match(HiveSqlParser.KW_GRANT); - this.state = 1410; + this.state = 1300; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1409; + this.state = 1299; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1412; + this.state = 1302; this.id_(); - this.state = 1417; + this.state = 1307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1413; + this.state = 1303; this.match(HiveSqlParser.COMMA); - this.state = 1414; + this.state = 1304; this.id_(); } } - this.state = 1419; + this.state = 1309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1420; + this.state = 1310; this.match(HiveSqlParser.KW_TO); - this.state = 1421; + this.state = 1311; this.principalSpecification(); - this.state = 1423; + this.state = 1315; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1422; - this.withAdminOption(); + this.state = 1312; + this.match(HiveSqlParser.KW_WITH); + this.state = 1313; + this.match(HiveSqlParser.KW_ADMIN); + this.state = 1314; + this.match(HiveSqlParser.KW_OPTION); } break; } @@ -5240,54 +5009,58 @@ export class HiveSqlParser extends SQLParserBase { } public revokeRole(): RevokeRoleContext { let localContext = new RevokeRoleContext(this.context, this.state); - this.enterRule(localContext, 96, HiveSqlParser.RULE_revokeRole); + this.enterRule(localContext, 82, HiveSqlParser.RULE_revokeRole); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1425; + this.state = 1317; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1427; + this.state = 1321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1426; - this.adminOptionFor(); + this.state = 1318; + this.match(HiveSqlParser.KW_ADMIN); + this.state = 1319; + this.match(HiveSqlParser.KW_OPTION); + this.state = 1320; + this.match(HiveSqlParser.KW_FOR); } break; } - this.state = 1430; + this.state = 1324; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1429; + this.state = 1323; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1432; + this.state = 1326; this.id_(); - this.state = 1437; + this.state = 1331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1433; + this.state = 1327; this.match(HiveSqlParser.COMMA); - this.state = 1434; + this.state = 1328; this.id_(); } } - this.state = 1439; + this.state = 1333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1440; + this.state = 1334; this.match(HiveSqlParser.KW_FROM); - this.state = 1441; + this.state = 1335; this.principalSpecification(); } } @@ -5307,17 +5080,17 @@ export class HiveSqlParser extends SQLParserBase { } public showRoleGrants(): ShowRoleGrantsContext { let localContext = new ShowRoleGrantsContext(this.context, this.state); - this.enterRule(localContext, 98, HiveSqlParser.RULE_showRoleGrants); + this.enterRule(localContext, 84, HiveSqlParser.RULE_showRoleGrants); try { this.enterOuterAlt(localContext, 1); { - this.state = 1443; + this.state = 1337; this.match(HiveSqlParser.KW_SHOW); - this.state = 1444; + this.state = 1338; this.match(HiveSqlParser.KW_ROLE); - this.state = 1445; + this.state = 1339; this.match(HiveSqlParser.KW_GRANT); - this.state = 1446; + this.state = 1340; this.principalName(); } } @@ -5337,13 +5110,13 @@ export class HiveSqlParser extends SQLParserBase { } public showRoles(): ShowRolesContext { let localContext = new ShowRolesContext(this.context, this.state); - this.enterRule(localContext, 100, HiveSqlParser.RULE_showRoles); + this.enterRule(localContext, 86, HiveSqlParser.RULE_showRoles); try { this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1342; this.match(HiveSqlParser.KW_SHOW); - this.state = 1449; + this.state = 1343; this.match(HiveSqlParser.KW_ROLES); } } @@ -5363,15 +5136,15 @@ export class HiveSqlParser extends SQLParserBase { } public showCurrentRole(): ShowCurrentRoleContext { let localContext = new ShowCurrentRoleContext(this.context, this.state); - this.enterRule(localContext, 102, HiveSqlParser.RULE_showCurrentRole); + this.enterRule(localContext, 88, HiveSqlParser.RULE_showCurrentRole); try { this.enterOuterAlt(localContext, 1); { - this.state = 1451; + this.state = 1345; this.match(HiveSqlParser.KW_SHOW); - this.state = 1452; + this.state = 1346; this.match(HiveSqlParser.KW_CURRENT); - this.state = 1453; + this.state = 1347; this.match(HiveSqlParser.KW_ROLES); } } @@ -5391,26 +5164,26 @@ export class HiveSqlParser extends SQLParserBase { } public setRole(): SetRoleContext { let localContext = new SetRoleContext(this.context, this.state); - this.enterRule(localContext, 104, HiveSqlParser.RULE_setRole); + this.enterRule(localContext, 90, HiveSqlParser.RULE_setRole); try { this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1349; this.match(HiveSqlParser.KW_SET); - this.state = 1456; + this.state = 1350; this.match(HiveSqlParser.KW_ROLE); - this.state = 1460; + this.state = 1354; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1457; + this.state = 1351; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1458; + this.state = 1352; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5655,7 +5428,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1459; + this.state = 1353; this.id_(); } break; @@ -5680,33 +5453,33 @@ export class HiveSqlParser extends SQLParserBase { } public showGrants(): ShowGrantsContext { let localContext = new ShowGrantsContext(this.context, this.state); - this.enterRule(localContext, 106, HiveSqlParser.RULE_showGrants); + this.enterRule(localContext, 92, HiveSqlParser.RULE_showGrants); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1462; + this.state = 1356; this.match(HiveSqlParser.KW_SHOW); - this.state = 1463; + this.state = 1357; this.match(HiveSqlParser.KW_GRANT); - this.state = 1465; + this.state = 1359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 287 || _la === 369) { { - this.state = 1464; + this.state = 1358; this.principalName(); } } - this.state = 1469; + this.state = 1363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1467; + this.state = 1361; this.match(HiveSqlParser.KW_ON); - this.state = 1468; + this.state = 1362; this.privilegeIncludeColObject(); } } @@ -5729,15 +5502,15 @@ export class HiveSqlParser extends SQLParserBase { } public showRolePrincipals(): ShowRolePrincipalsContext { let localContext = new ShowRolePrincipalsContext(this.context, this.state); - this.enterRule(localContext, 108, HiveSqlParser.RULE_showRolePrincipals); + this.enterRule(localContext, 94, HiveSqlParser.RULE_showRolePrincipals); try { this.enterOuterAlt(localContext, 1); { - this.state = 1471; + this.state = 1365; this.match(HiveSqlParser.KW_SHOW); - this.state = 1472; + this.state = 1366; this.match(HiveSqlParser.KW_PRINCIPALS); - this.state = 1473; + this.state = 1367; localContext._roleName = this.id_(); } } @@ -5757,15 +5530,15 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeIncludeColObject(): PrivilegeIncludeColObjectContext { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); - this.enterRule(localContext, 110, HiveSqlParser.RULE_privilegeIncludeColObject); + this.enterRule(localContext, 96, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1477; + this.state = 1371; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1475; + this.state = 1369; this.match(HiveSqlParser.KW_ALL); } break; @@ -6013,7 +5786,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1476; + this.state = 1370; this.privObjectCols(); } break; @@ -6037,13 +5810,13 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeObject(): PrivilegeObjectContext { let localContext = new PrivilegeObjectContext(this.context, this.state); - this.enterRule(localContext, 112, HiveSqlParser.RULE_privilegeObject); + this.enterRule(localContext, 98, HiveSqlParser.RULE_privilegeObject); try { this.enterOuterAlt(localContext, 1); { - this.state = 1479; + this.state = 1373; this.match(HiveSqlParser.KW_ON); - this.state = 1480; + this.state = 1374; this.privObject(); } } @@ -6063,53 +5836,53 @@ export class HiveSqlParser extends SQLParserBase { } public privObject(): PrivObjectContext { let localContext = new PrivObjectContext(this.context, this.state); - this.enterRule(localContext, 114, HiveSqlParser.RULE_privObject); + this.enterRule(localContext, 100, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1493; + this.state = 1387; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1482; + this.state = 1376; this.db_schema(); - this.state = 1483; + this.state = 1377; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1486; + this.state = 1380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1485; + this.state = 1379; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1488; + this.state = 1382; this.tableOrPartition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1489; + this.state = 1383; this.match(HiveSqlParser.KW_URI); - this.state = 1490; + this.state = 1384; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1491; + this.state = 1385; this.match(HiveSqlParser.KW_SERVER); - this.state = 1492; + this.state = 1386; this.id_(); } break; @@ -6131,56 +5904,56 @@ export class HiveSqlParser extends SQLParserBase { } public privObjectCols(): PrivObjectColsContext { let localContext = new PrivObjectColsContext(this.context, this.state); - this.enterRule(localContext, 116, HiveSqlParser.RULE_privObjectCols); + this.enterRule(localContext, 102, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1515; + this.state = 1409; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1495; + this.state = 1389; this.db_schema(); - this.state = 1496; + this.state = 1390; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1499; + this.state = 1393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1498; + this.state = 1392; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1501; + this.state = 1395; this.tableName(); - this.state = 1506; + this.state = 1400; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: { - this.state = 1502; + this.state = 1396; this.match(HiveSqlParser.LPAREN); - this.state = 1503; + this.state = 1397; localContext._cols = this.columnNameList(); - this.state = 1504; + this.state = 1398; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1509; + this.state = 1403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1508; + this.state = 1402; this.partitionSpec(); } } @@ -6190,18 +5963,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1511; + this.state = 1405; this.match(HiveSqlParser.KW_URI); - this.state = 1512; + this.state = 1406; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1513; + this.state = 1407; this.match(HiveSqlParser.KW_SERVER); - this.state = 1514; + this.state = 1408; this.id_(); } break; @@ -6223,26 +5996,26 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeList(): PrivilegeListContext { let localContext = new PrivilegeListContext(this.context, this.state); - this.enterRule(localContext, 118, HiveSqlParser.RULE_privilegeList); + this.enterRule(localContext, 104, HiveSqlParser.RULE_privilegeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1517; + this.state = 1411; this.privilegeDef(); - this.state = 1522; + this.state = 1416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1518; + this.state = 1412; this.match(HiveSqlParser.COMMA); - this.state = 1519; + this.state = 1413; this.privilegeDef(); } } - this.state = 1524; + this.state = 1418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6264,23 +6037,23 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeDef(): PrivilegeDefContext { let localContext = new PrivilegeDefContext(this.context, this.state); - this.enterRule(localContext, 120, HiveSqlParser.RULE_privilegeDef); + this.enterRule(localContext, 106, HiveSqlParser.RULE_privilegeDef); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1525; + this.state = 1419; this.privilegeType(); - this.state = 1530; + this.state = 1424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1526; + this.state = 1420; this.match(HiveSqlParser.LPAREN); - this.state = 1527; + this.state = 1421; localContext._cols = this.columnNameList(); - this.state = 1528; + this.state = 1422; this.match(HiveSqlParser.RPAREN); } } @@ -6303,12 +6076,12 @@ export class HiveSqlParser extends SQLParserBase { } public privilegeType(): PrivilegeTypeContext { let localContext = new PrivilegeTypeContext(this.context, this.state); - this.enterRule(localContext, 122, HiveSqlParser.RULE_privilegeType); + this.enterRule(localContext, 108, HiveSqlParser.RULE_privilegeType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1532; + this.state = 1426; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 190 || _la === 299 || _la === 309 || _la === 365)) { this.errorHandler.recoverInline(this); @@ -6335,26 +6108,26 @@ export class HiveSqlParser extends SQLParserBase { } public principalSpecification(): PrincipalSpecificationContext { let localContext = new PrincipalSpecificationContext(this.context, this.state); - this.enterRule(localContext, 124, HiveSqlParser.RULE_principalSpecification); + this.enterRule(localContext, 110, HiveSqlParser.RULE_principalSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1534; + this.state = 1428; this.principalName(); - this.state = 1539; + this.state = 1433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1535; + this.state = 1429; this.match(HiveSqlParser.COMMA); - this.state = 1536; + this.state = 1430; this.principalName(); } } - this.state = 1541; + this.state = 1435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6376,35 +6149,35 @@ export class HiveSqlParser extends SQLParserBase { } public principalName(): PrincipalNameContext { let localContext = new PrincipalNameContext(this.context, this.state); - this.enterRule(localContext, 126, HiveSqlParser.RULE_principalName); + this.enterRule(localContext, 112, HiveSqlParser.RULE_principalName); try { - this.state = 1548; + this.state = 1442; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1542; + this.state = 1436; this.match(HiveSqlParser.KW_USER); - this.state = 1543; + this.state = 1437; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1544; + this.state = 1438; this.match(HiveSqlParser.KW_GROUP); - this.state = 1545; + this.state = 1439; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1546; + this.state = 1440; this.match(HiveSqlParser.KW_ROLE); - this.state = 1547; + this.state = 1441; this.id_(); } break; @@ -6428,33 +6201,33 @@ export class HiveSqlParser extends SQLParserBase { } public principalAlterName(): PrincipalAlterNameContext { let localContext = new PrincipalAlterNameContext(this.context, this.state); - this.enterRule(localContext, 128, HiveSqlParser.RULE_principalAlterName); + this.enterRule(localContext, 114, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1555; + this.state = 1449; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1550; + this.state = 1444; this.match(HiveSqlParser.KW_USER); - this.state = 1551; + this.state = 1445; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1552; + this.state = 1446; this.match(HiveSqlParser.KW_ROLE); - this.state = 1553; + this.state = 1447; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1554; + this.state = 1448; this.id_(); } break; @@ -6474,148 +6247,36 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public withGrantOption(): WithGrantOptionContext { - let localContext = new WithGrantOptionContext(this.context, this.state); - this.enterRule(localContext, 130, HiveSqlParser.RULE_withGrantOption); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1557; - this.match(HiveSqlParser.KW_WITH); - this.state = 1558; - this.match(HiveSqlParser.KW_GRANT); - this.state = 1559; - this.match(HiveSqlParser.KW_OPTION); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public grantOptionFor(): GrantOptionForContext { - let localContext = new GrantOptionForContext(this.context, this.state); - this.enterRule(localContext, 132, HiveSqlParser.RULE_grantOptionFor); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1561; - this.match(HiveSqlParser.KW_GRANT); - this.state = 1562; - this.match(HiveSqlParser.KW_OPTION); - this.state = 1563; - this.match(HiveSqlParser.KW_FOR); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public adminOptionFor(): AdminOptionForContext { - let localContext = new AdminOptionForContext(this.context, this.state); - this.enterRule(localContext, 134, HiveSqlParser.RULE_adminOptionFor); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1565; - this.match(HiveSqlParser.KW_ADMIN); - this.state = 1566; - this.match(HiveSqlParser.KW_OPTION); - this.state = 1567; - this.match(HiveSqlParser.KW_FOR); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public withAdminOption(): WithAdminOptionContext { - let localContext = new WithAdminOptionContext(this.context, this.state); - this.enterRule(localContext, 136, HiveSqlParser.RULE_withAdminOption); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1569; - this.match(HiveSqlParser.KW_WITH); - this.state = 1570; - this.match(HiveSqlParser.KW_ADMIN); - this.state = 1571; - this.match(HiveSqlParser.KW_OPTION); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public metastoreCheck(): MetastoreCheckContext { let localContext = new MetastoreCheckContext(this.context, this.state); - this.enterRule(localContext, 138, HiveSqlParser.RULE_metastoreCheck); + this.enterRule(localContext, 116, HiveSqlParser.RULE_metastoreCheck); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1573; + this.state = 1451; this.match(HiveSqlParser.KW_MSCK); - this.state = 1575; + this.state = 1453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 276) { { - this.state = 1574; + this.state = 1452; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1577; + this.state = 1455; this.match(HiveSqlParser.KW_TABLE); - this.state = 1578; + this.state = 1456; this.tableName(); - this.state = 1584; + this.state = 1462; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1579; + this.state = 1457; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101 || _la === 326)) { @@ -6625,14 +6286,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1580; + this.state = 1458; localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1582; + this.state = 1460; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1581; + this.state = 1459; this.partitionSelectorSpec(); } break; @@ -6657,31 +6318,97 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public resourceList(): ResourceListContext { - let localContext = new ResourceListContext(this.context, this.state); - this.enterRule(localContext, 140, HiveSqlParser.RULE_resourceList); + public resourceType(): ResourceTypeContext { + let localContext = new ResourceTypeContext(this.context, this.state); + this.enterRule(localContext, 118, HiveSqlParser.RULE_resourceType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1586; - this.resource(); - this.state = 1591; + this.state = 1464; + _la = this.tokenStream.LA(1); + if(!(_la === 15 || _la === 128 || _la === 170)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public createFunctionStatement(): CreateFunctionStatementContext { + let localContext = new CreateFunctionStatementContext(this.context, this.state); + this.enterRule(localContext, 120, HiveSqlParser.RULE_createFunctionStatement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1466; + this.match(HiveSqlParser.KW_CREATE); + this.state = 1468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 397) { - { + if (_la === 333) { { - this.state = 1587; - this.match(HiveSqlParser.COMMA); - this.state = 1588; - this.resource(); - } + this.state = 1467; + localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } - this.state = 1593; + } + + this.state = 1470; + this.match(HiveSqlParser.KW_FUNCTION); + this.state = 1471; + this.functionNameCreate(); + this.state = 1472; + this.match(HiveSqlParser.KW_AS); + this.state = 1473; + this.match(HiveSqlParser.StringLiteral); + this.state = 1486; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 370) { + { + this.state = 1474; + this.match(HiveSqlParser.KW_USING); + this.state = 1475; + localContext._resType = this.resourceType(); + this.state = 1476; + localContext._resPath = this.match(HiveSqlParser.StringLiteral); + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); + while (_la === 397) { + { + { + this.state = 1477; + this.match(HiveSqlParser.COMMA); + this.state = 1478; + localContext._resType = this.resourceType(); + this.state = 1479; + localContext._resPath = this.match(HiveSqlParser.StringLiteral); + } + } + this.state = 1485; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } } + } } catch (re) { @@ -6698,16 +6425,39 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public resource(): ResourceContext { - let localContext = new ResourceContext(this.context, this.state); - this.enterRule(localContext, 142, HiveSqlParser.RULE_resource); + public dropFunctionStatement(): DropFunctionStatementContext { + let localContext = new DropFunctionStatementContext(this.context, this.state); + this.enterRule(localContext, 122, HiveSqlParser.RULE_dropFunctionStatement); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1594; - localContext._resType = this.resourceType(); - this.state = 1595; - localContext._resPath = this.match(HiveSqlParser.StringLiteral); + this.state = 1488; + this.match(HiveSqlParser.KW_DROP); + this.state = 1490; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 333) { + { + this.state = 1489; + localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); + } + } + + this.state = 1492; + this.match(HiveSqlParser.KW_FUNCTION); + this.state = 1494; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 151) { + { + this.state = 1493; + this.ifExists(); + } + } + + this.state = 1496; + this.functionNameForDDL(); } } catch (re) { @@ -6724,154 +6474,18 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public resourceType(): ResourceTypeContext { - let localContext = new ResourceTypeContext(this.context, this.state); - this.enterRule(localContext, 144, HiveSqlParser.RULE_resourceType); + public reloadFunctionsStatement(): ReloadFunctionsStatementContext { + let localContext = new ReloadFunctionsStatementContext(this.context, this.state); + this.enterRule(localContext, 124, HiveSqlParser.RULE_reloadFunctionsStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1597; + this.state = 1498; + this.match(HiveSqlParser.KW_RELOAD); + this.state = 1499; _la = this.tokenStream.LA(1); - if(!(_la === 15 || _la === 128 || _la === 170)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public createFunctionStatement(): CreateFunctionStatementContext { - let localContext = new CreateFunctionStatementContext(this.context, this.state); - this.enterRule(localContext, 146, HiveSqlParser.RULE_createFunctionStatement); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1599; - this.match(HiveSqlParser.KW_CREATE); - this.state = 1601; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 333) { - { - this.state = 1600; - localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); - } - } - - this.state = 1603; - this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1604; - this.functionNameCreate(); - this.state = 1605; - this.match(HiveSqlParser.KW_AS); - this.state = 1606; - this.match(HiveSqlParser.StringLiteral); - this.state = 1609; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 370) { - { - this.state = 1607; - this.match(HiveSqlParser.KW_USING); - this.state = 1608; - localContext._rList = this.resourceList(); - } - } - - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public dropFunctionStatement(): DropFunctionStatementContext { - let localContext = new DropFunctionStatementContext(this.context, this.state); - this.enterRule(localContext, 148, HiveSqlParser.RULE_dropFunctionStatement); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1611; - this.match(HiveSqlParser.KW_DROP); - this.state = 1613; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 333) { - { - this.state = 1612; - localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); - } - } - - this.state = 1615; - this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1617; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 151) { - { - this.state = 1616; - this.ifExists(); - } - } - - this.state = 1619; - this.functionNameForDDL(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public reloadFunctionsStatement(): ReloadFunctionsStatementContext { - let localContext = new ReloadFunctionsStatementContext(this.context, this.state); - this.enterRule(localContext, 150, HiveSqlParser.RULE_reloadFunctionsStatement); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1621; - this.match(HiveSqlParser.KW_RELOAD); - this.state = 1622; - _la = this.tokenStream.LA(1); - if(!(_la === 141 || _la === 142)) { + if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); } else { @@ -6896,34 +6510,34 @@ export class HiveSqlParser extends SQLParserBase { } public createMacroStatement(): CreateMacroStatementContext { let localContext = new CreateMacroStatementContext(this.context, this.state); - this.enterRule(localContext, 152, HiveSqlParser.RULE_createMacroStatement); + this.enterRule(localContext, 126, HiveSqlParser.RULE_createMacroStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1624; + this.state = 1501; this.match(HiveSqlParser.KW_CREATE); - this.state = 1625; + this.state = 1502; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1626; + this.state = 1503; this.match(HiveSqlParser.KW_MACRO); - this.state = 1627; + this.state = 1504; this.match(HiveSqlParser.Identifier); - this.state = 1628; + this.state = 1505; this.match(HiveSqlParser.LPAREN); - this.state = 1630; + this.state = 1507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 1629; + this.state = 1506; this.columnNameTypeList(); } } - this.state = 1632; + this.state = 1509; this.match(HiveSqlParser.RPAREN); - this.state = 1633; + this.state = 1510; this.expression(); } } @@ -6943,28 +6557,28 @@ export class HiveSqlParser extends SQLParserBase { } public dropMacroStatement(): DropMacroStatementContext { let localContext = new DropMacroStatementContext(this.context, this.state); - this.enterRule(localContext, 154, HiveSqlParser.RULE_dropMacroStatement); + this.enterRule(localContext, 128, HiveSqlParser.RULE_dropMacroStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1635; + this.state = 1512; this.match(HiveSqlParser.KW_DROP); - this.state = 1636; + this.state = 1513; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1637; + this.state = 1514; this.match(HiveSqlParser.KW_MACRO); - this.state = 1639; + this.state = 1516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1638; + this.state = 1515; this.ifExists(); } } - this.state = 1641; + this.state = 1518; this.match(HiveSqlParser.Identifier); } } @@ -6984,129 +6598,129 @@ export class HiveSqlParser extends SQLParserBase { } public createIndexStatement(): CreateIndexStatementContext { let localContext = new CreateIndexStatementContext(this.context, this.state); - this.enterRule(localContext, 156, HiveSqlParser.RULE_createIndexStatement); + this.enterRule(localContext, 130, HiveSqlParser.RULE_createIndexStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1643; + this.state = 1520; this.match(HiveSqlParser.KW_CREATE); - this.state = 1644; + this.state = 1521; this.match(HiveSqlParser.KW_INDEX); - this.state = 1645; + this.state = 1522; this.id_(); - this.state = 1646; + this.state = 1523; this.match(HiveSqlParser.KW_ON); - this.state = 1647; + this.state = 1524; this.match(HiveSqlParser.KW_TABLE); - this.state = 1648; + this.state = 1525; this.tableName(); - this.state = 1649; + this.state = 1526; this.columnParenthesesList(); - this.state = 1650; + this.state = 1527; this.match(HiveSqlParser.KW_AS); - this.state = 1651; + this.state = 1528; localContext._indextype = this.match(HiveSqlParser.StringLiteral); - this.state = 1655; + this.state = 1532; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: { - this.state = 1652; + this.state = 1529; this.match(HiveSqlParser.KW_WITH); - this.state = 1653; + this.state = 1530; this.match(HiveSqlParser.KW_DEFERRED); - this.state = 1654; + this.state = 1531; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1659; + this.state = 1536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1657; + this.state = 1534; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1658; + this.state = 1535; this.tableProperties(); } } - this.state = 1664; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1661; + this.state = 1538; this.match(HiveSqlParser.KW_IN); - this.state = 1662; + this.state = 1539; this.match(HiveSqlParser.KW_TABLE); - this.state = 1663; + this.state = 1540; this.tableName(); } } - this.state = 1669; + this.state = 1546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1666; + this.state = 1543; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1667; + this.state = 1544; this.match(HiveSqlParser.KW_BY); - this.state = 1668; + this.state = 1545; this.columnParenthesesList(); } } - this.state = 1675; + this.state = 1552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291 || _la === 321) { { - this.state = 1672; + this.state = 1549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1671; - this.tableRowFormat(); + this.state = 1548; + this.rowFormat(); } } - this.state = 1674; + this.state = 1551; this.tableFileFormat(); } } - this.state = 1678; + this.state = 1555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1677; + this.state = 1554; this.locationPath(); } } - this.state = 1681; + this.state = 1558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1680; + this.state = 1557; this.tablePropertiesPrefixed(); } } - this.state = 1684; + this.state = 1561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1683; + this.state = 1560; this.tableComment(); } } @@ -7129,30 +6743,30 @@ export class HiveSqlParser extends SQLParserBase { } public dropIndexStatement(): DropIndexStatementContext { let localContext = new DropIndexStatementContext(this.context, this.state); - this.enterRule(localContext, 158, HiveSqlParser.RULE_dropIndexStatement); + this.enterRule(localContext, 132, HiveSqlParser.RULE_dropIndexStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1686; + this.state = 1563; this.match(HiveSqlParser.KW_DROP); - this.state = 1687; + this.state = 1564; this.match(HiveSqlParser.KW_INDEX); - this.state = 1689; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1688; + this.state = 1565; this.ifExists(); } } - this.state = 1691; + this.state = 1568; this.id_(); - this.state = 1692; + this.state = 1569; this.match(HiveSqlParser.KW_ON); - this.state = 1693; + this.state = 1570; this.tableName(); } } @@ -7172,86 +6786,86 @@ export class HiveSqlParser extends SQLParserBase { } public createViewStatement(): CreateViewStatementContext { let localContext = new CreateViewStatementContext(this.context, this.state); - this.enterRule(localContext, 160, HiveSqlParser.RULE_createViewStatement); + this.enterRule(localContext, 134, HiveSqlParser.RULE_createViewStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1695; + this.state = 1572; this.match(HiveSqlParser.KW_CREATE); - this.state = 1698; + this.state = 1575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1696; + this.state = 1573; this.match(HiveSqlParser.KW_OR); - this.state = 1697; + this.state = 1574; this.match(HiveSqlParser.KW_REPLACE); } } - this.state = 1700; + this.state = 1577; this.match(HiveSqlParser.KW_VIEW); - this.state = 1702; + this.state = 1579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1701; + this.state = 1578; this.ifNotExists(); } } - this.state = 1704; + this.state = 1581; localContext._name = this.viewNameCreate(); - this.state = 1709; + this.state = 1586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1705; + this.state = 1582; this.match(HiveSqlParser.LPAREN); - this.state = 1706; + this.state = 1583; this.columnNameCommentList(); - this.state = 1707; + this.state = 1584; this.match(HiveSqlParser.RPAREN); } } - this.state = 1712; + this.state = 1589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1711; + this.state = 1588; this.tableComment(); } } - this.state = 1715; + this.state = 1592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1714; + this.state = 1591; this.viewPartition(); } } - this.state = 1718; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1717; + this.state = 1594; this.tablePropertiesPrefixed(); } } - this.state = 1720; + this.state = 1597; this.match(HiveSqlParser.KW_AS); - this.state = 1721; + this.state = 1598; this.selectStatementWithCTE(); } } @@ -7271,39 +6885,39 @@ export class HiveSqlParser extends SQLParserBase { } public viewPartition(): ViewPartitionContext { let localContext = new ViewPartitionContext(this.context, this.state); - this.enterRule(localContext, 162, HiveSqlParser.RULE_viewPartition); + this.enterRule(localContext, 136, HiveSqlParser.RULE_viewPartition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1723; + this.state = 1600; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1724; + this.state = 1601; this.match(HiveSqlParser.KW_ON); - this.state = 1730; + this.state = 1607; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1725; + this.state = 1602; this.match(HiveSqlParser.LPAREN); - this.state = 1726; + this.state = 1603; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 1727; + this.state = 1604; this.match(HiveSqlParser.KW_SPEC); - this.state = 1728; + this.state = 1605; this.match(HiveSqlParser.LPAREN); - this.state = 1729; + this.state = 1606; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1732; + this.state = 1609; this.match(HiveSqlParser.RPAREN); } } @@ -7323,22 +6937,22 @@ export class HiveSqlParser extends SQLParserBase { } public viewOrganization(): ViewOrganizationContext { let localContext = new ViewOrganizationContext(this.context, this.state); - this.enterRule(localContext, 164, HiveSqlParser.RULE_viewOrganization); + this.enterRule(localContext, 138, HiveSqlParser.RULE_viewOrganization); try { - this.state = 1736; + this.state = 1613; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 1734; + this.state = 1611; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1735; + this.state = 1612; this.viewComplexSpec(); } break; @@ -7362,19 +6976,19 @@ export class HiveSqlParser extends SQLParserBase { } public viewClusterSpec(): ViewClusterSpecContext { let localContext = new ViewClusterSpecContext(this.context, this.state); - this.enterRule(localContext, 166, HiveSqlParser.RULE_viewClusterSpec); + this.enterRule(localContext, 140, HiveSqlParser.RULE_viewClusterSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1615; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1739; + this.state = 1616; this.match(HiveSqlParser.KW_ON); - this.state = 1740; + this.state = 1617; this.match(HiveSqlParser.LPAREN); - this.state = 1741; + this.state = 1618; this.columnNameList(); - this.state = 1742; + this.state = 1619; this.match(HiveSqlParser.RPAREN); } } @@ -7394,13 +7008,13 @@ export class HiveSqlParser extends SQLParserBase { } public viewComplexSpec(): ViewComplexSpecContext { let localContext = new ViewComplexSpecContext(this.context, this.state); - this.enterRule(localContext, 168, HiveSqlParser.RULE_viewComplexSpec); + this.enterRule(localContext, 142, HiveSqlParser.RULE_viewComplexSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1744; + this.state = 1621; this.viewDistSpec(); - this.state = 1745; + this.state = 1622; this.viewSortSpec(); } } @@ -7420,19 +7034,19 @@ export class HiveSqlParser extends SQLParserBase { } public viewDistSpec(): ViewDistSpecContext { let localContext = new ViewDistSpecContext(this.context, this.state); - this.enterRule(localContext, 170, HiveSqlParser.RULE_viewDistSpec); + this.enterRule(localContext, 144, HiveSqlParser.RULE_viewDistSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1747; + this.state = 1624; this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 1748; + this.state = 1625; this.match(HiveSqlParser.KW_ON); - this.state = 1749; + this.state = 1626; this.match(HiveSqlParser.LPAREN); - this.state = 1750; + this.state = 1627; localContext._colList = this.columnNameList(); - this.state = 1751; + this.state = 1628; this.match(HiveSqlParser.RPAREN); } } @@ -7452,19 +7066,19 @@ export class HiveSqlParser extends SQLParserBase { } public viewSortSpec(): ViewSortSpecContext { let localContext = new ViewSortSpecContext(this.context, this.state); - this.enterRule(localContext, 172, HiveSqlParser.RULE_viewSortSpec); + this.enterRule(localContext, 146, HiveSqlParser.RULE_viewSortSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1753; + this.state = 1630; this.match(HiveSqlParser.KW_SORTED); - this.state = 1754; + this.state = 1631; this.match(HiveSqlParser.KW_ON); - this.state = 1755; + this.state = 1632; this.match(HiveSqlParser.LPAREN); - this.state = 1756; + this.state = 1633; localContext._colList = this.columnNameList(); - this.state = 1757; + this.state = 1634; this.match(HiveSqlParser.RPAREN); } } @@ -7484,26 +7098,36 @@ export class HiveSqlParser extends SQLParserBase { } public dropViewStatement(): DropViewStatementContext { let localContext = new DropViewStatementContext(this.context, this.state); - this.enterRule(localContext, 174, HiveSqlParser.RULE_dropViewStatement); + this.enterRule(localContext, 148, HiveSqlParser.RULE_dropViewStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1636; this.match(HiveSqlParser.KW_DROP); - this.state = 1760; + this.state = 1638; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 202) { + { + this.state = 1637; + this.match(HiveSqlParser.KW_MATERIALIZED); + } + } + + this.state = 1640; this.match(HiveSqlParser.KW_VIEW); - this.state = 1762; + this.state = 1642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1761; + this.state = 1641; this.ifExists(); } } - this.state = 1764; + this.state = 1644; this.viewName(); } } @@ -7523,112 +7147,112 @@ export class HiveSqlParser extends SQLParserBase { } public createMaterializedViewStatement(): CreateMaterializedViewStatementContext { let localContext = new CreateMaterializedViewStatementContext(this.context, this.state); - this.enterRule(localContext, 176, HiveSqlParser.RULE_createMaterializedViewStatement); + this.enterRule(localContext, 150, HiveSqlParser.RULE_createMaterializedViewStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1766; + this.state = 1646; this.match(HiveSqlParser.KW_CREATE); - this.state = 1767; + this.state = 1647; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1768; + this.state = 1648; this.match(HiveSqlParser.KW_VIEW); - this.state = 1770; + this.state = 1650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1769; + this.state = 1649; this.ifNotExists(); } } - this.state = 1772; + this.state = 1652; localContext._name = this.viewNameCreate(); - this.state = 1774; + this.state = 1654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 1773; + this.state = 1653; this.rewriteDisabled(); } } - this.state = 1777; + this.state = 1657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1776; + this.state = 1656; this.tableComment(); } } - this.state = 1780; + this.state = 1660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1779; + this.state = 1659; this.viewPartition(); } } - this.state = 1783; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 1782; + this.state = 1662; this.viewOrganization(); } } - this.state = 1786; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1785; - this.tableRowFormat(); + this.state = 1665; + this.rowFormat(); } } - this.state = 1789; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 1788; + this.state = 1668; this.tableFileFormat(); } } - this.state = 1792; + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1791; + this.state = 1671; this.locationPath(); } } - this.state = 1795; + this.state = 1675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1794; + this.state = 1674; this.tablePropertiesPrefixed(); } } - this.state = 1797; + this.state = 1677; this.match(HiveSqlParser.KW_AS); - this.state = 1798; + this.state = 1678; this.selectStatementWithCTE(); } } @@ -7646,85 +7270,44 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public dropMaterializedViewStatement(): DropMaterializedViewStatementContext { - let localContext = new DropMaterializedViewStatementContext(this.context, this.state); - this.enterRule(localContext, 178, HiveSqlParser.RULE_dropMaterializedViewStatement); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1800; - this.match(HiveSqlParser.KW_DROP); - this.state = 1801; - this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1802; - this.match(HiveSqlParser.KW_VIEW); - this.state = 1804; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 151) { - { - this.state = 1803; - this.ifExists(); - } - } - - this.state = 1806; - this.viewName(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public createScheduledQueryStatement(): CreateScheduledQueryStatementContext { let localContext = new CreateScheduledQueryStatementContext(this.context, this.state); - this.enterRule(localContext, 180, HiveSqlParser.RULE_createScheduledQueryStatement); + this.enterRule(localContext, 152, HiveSqlParser.RULE_createScheduledQueryStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1680; this.match(HiveSqlParser.KW_CREATE); - this.state = 1809; + this.state = 1681; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1810; + this.state = 1682; this.match(HiveSqlParser.KW_QUERY); - this.state = 1811; + this.state = 1683; localContext._name = this.id_(); - this.state = 1812; + this.state = 1684; this.scheduleSpec(); - this.state = 1814; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1813; + this.state = 1685; this.executedAsSpec(); } } - this.state = 1817; + this.state = 1689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 1816; + this.state = 1688; this.enableSpecification(); } } - this.state = 1819; + this.state = 1691; this.definedAsSpec(); } } @@ -7744,17 +7327,17 @@ export class HiveSqlParser extends SQLParserBase { } public dropScheduledQueryStatement(): DropScheduledQueryStatementContext { let localContext = new DropScheduledQueryStatementContext(this.context, this.state); - this.enterRule(localContext, 182, HiveSqlParser.RULE_dropScheduledQueryStatement); + this.enterRule(localContext, 154, HiveSqlParser.RULE_dropScheduledQueryStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1821; + this.state = 1693; this.match(HiveSqlParser.KW_DROP); - this.state = 1822; + this.state = 1694; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1823; + this.state = 1695; this.match(HiveSqlParser.KW_QUERY); - this.state = 1824; + this.state = 1696; localContext._name = this.id_(); } } @@ -7774,19 +7357,19 @@ export class HiveSqlParser extends SQLParserBase { } public alterScheduledQueryStatement(): AlterScheduledQueryStatementContext { let localContext = new AlterScheduledQueryStatementContext(this.context, this.state); - this.enterRule(localContext, 184, HiveSqlParser.RULE_alterScheduledQueryStatement); + this.enterRule(localContext, 156, HiveSqlParser.RULE_alterScheduledQueryStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 1826; + this.state = 1698; this.match(HiveSqlParser.KW_ALTER); - this.state = 1827; + this.state = 1699; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1828; + this.state = 1700; this.match(HiveSqlParser.KW_QUERY); - this.state = 1829; + this.state = 1701; localContext._name = this.id_(); - this.state = 1830; + this.state = 1702; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7806,23 +7389,23 @@ export class HiveSqlParser extends SQLParserBase { } public alterScheduledQueryChange(): AlterScheduledQueryChangeContext { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); - this.enterRule(localContext, 186, HiveSqlParser.RULE_alterScheduledQueryChange); + this.enterRule(localContext, 158, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 1837; + this.state = 1709; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 1832; + this.state = 1704; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1833; + this.state = 1705; this.executedAsSpec(); } break; @@ -7832,7 +7415,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 1834; + this.state = 1706; this.enableSpecification(); } break; @@ -7840,14 +7423,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 1835; + this.state = 1707; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1836; + this.state = 1708; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -7871,64 +7454,64 @@ export class HiveSqlParser extends SQLParserBase { } public scheduleSpec(): ScheduleSpecContext { let localContext = new ScheduleSpecContext(this.context, this.state); - this.enterRule(localContext, 188, HiveSqlParser.RULE_scheduleSpec); + this.enterRule(localContext, 160, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 1854; + this.state = 1726; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 1839; + this.state = 1711; this.match(HiveSqlParser.KW_CRON); - this.state = 1840; + this.state = 1712; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 1841; + this.state = 1713; this.match(HiveSqlParser.KW_EVERY); - this.state = 1843; + this.state = 1715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 431) { { - this.state = 1842; + this.state = 1714; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 1845; + this.state = 1717; localContext._qualifier = this.intervalQualifiers(); - this.state = 1852; + this.state = 1724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 223) { { - this.state = 1849; + this.state = 1721; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 1846; + this.state = 1718; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 1847; + this.state = 1719; this.match(HiveSqlParser.KW_OFFSET); - this.state = 1848; + this.state = 1720; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1851; + this.state = 1723; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -7955,15 +7538,15 @@ export class HiveSqlParser extends SQLParserBase { } public executedAsSpec(): ExecutedAsSpecContext { let localContext = new ExecutedAsSpecContext(this.context, this.state); - this.enterRule(localContext, 190, HiveSqlParser.RULE_executedAsSpec); + this.enterRule(localContext, 162, HiveSqlParser.RULE_executedAsSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1728; this.match(HiveSqlParser.KW_EXECUTED); - this.state = 1857; + this.state = 1729; this.match(HiveSqlParser.KW_AS); - this.state = 1858; + this.state = 1730; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -7983,24 +7566,24 @@ export class HiveSqlParser extends SQLParserBase { } public definedAsSpec(): DefinedAsSpecContext { let localContext = new DefinedAsSpecContext(this.context, this.state); - this.enterRule(localContext, 192, HiveSqlParser.RULE_definedAsSpec); + this.enterRule(localContext, 164, HiveSqlParser.RULE_definedAsSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1861; + this.state = 1733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 1860; + this.state = 1732; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 1863; + this.state = 1735; this.match(HiveSqlParser.KW_AS); - this.state = 1864; + this.state = 1736; this.statement(); } } @@ -8020,9 +7603,9 @@ export class HiveSqlParser extends SQLParserBase { } public showStmtIdentifier(): ShowStmtIdentifierContext { let localContext = new ShowStmtIdentifierContext(this.context, this.state); - this.enterRule(localContext, 194, HiveSqlParser.RULE_showStmtIdentifier); + this.enterRule(localContext, 166, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 1868; + this.state = 1740; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8267,14 +7850,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 1866; + this.state = 1738; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 1867; + this.state = 1739; this.match(HiveSqlParser.StringLiteral); } break; @@ -8298,13 +7881,13 @@ export class HiveSqlParser extends SQLParserBase { } public tableComment(): TableCommentContext { let localContext = new TableCommentContext(this.context, this.state); - this.enterRule(localContext, 196, HiveSqlParser.RULE_tableComment); + this.enterRule(localContext, 168, HiveSqlParser.RULE_tableComment); try { this.enterOuterAlt(localContext, 1); { - this.state = 1870; + this.state = 1742; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1871; + this.state = 1743; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8324,13 +7907,13 @@ export class HiveSqlParser extends SQLParserBase { } public tableLifecycle(): TableLifecycleContext { let localContext = new TableLifecycleContext(this.context, this.state); - this.enterRule(localContext, 198, HiveSqlParser.RULE_tableLifecycle); + this.enterRule(localContext, 170, HiveSqlParser.RULE_tableLifecycle); try { this.enterOuterAlt(localContext, 1); { - this.state = 1873; + this.state = 1745; this.match(HiveSqlParser.KW_LIFECYCLE); - this.state = 1874; + this.state = 1746; this.match(HiveSqlParser.Number); } } @@ -8350,33 +7933,33 @@ export class HiveSqlParser extends SQLParserBase { } public createTablePartitionSpec(): CreateTablePartitionSpecContext { let localContext = new CreateTablePartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 200, HiveSqlParser.RULE_createTablePartitionSpec); + this.enterRule(localContext, 172, HiveSqlParser.RULE_createTablePartitionSpec); try { this.enterOuterAlt(localContext, 1); { - this.state = 1876; + this.state = 1748; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1877; + this.state = 1749; this.match(HiveSqlParser.KW_BY); - this.state = 1886; + this.state = 1758; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1878; + this.state = 1750; this.match(HiveSqlParser.LPAREN); - this.state = 1881; + this.state = 1753; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { case 1: { - this.state = 1879; + this.state = 1751; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 1880; + this.state = 1752; localContext._opt2 = this.columnNameList(); } break; @@ -8385,18 +7968,18 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SPEC: { - this.state = 1883; + this.state = 1755; this.match(HiveSqlParser.KW_SPEC); - this.state = 1884; + this.state = 1756; this.match(HiveSqlParser.LPAREN); - this.state = 1885; + this.state = 1757; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1888; + this.state = 1760; this.match(HiveSqlParser.RPAREN); } } @@ -8416,26 +7999,26 @@ export class HiveSqlParser extends SQLParserBase { } public createTablePartitionColumnTypeSpec(): CreateTablePartitionColumnTypeSpecContext { let localContext = new CreateTablePartitionColumnTypeSpecContext(this.context, this.state); - this.enterRule(localContext, 202, HiveSqlParser.RULE_createTablePartitionColumnTypeSpec); + this.enterRule(localContext, 174, HiveSqlParser.RULE_createTablePartitionColumnTypeSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1890; + this.state = 1762; this.columnNameTypeConstraint(); - this.state = 1895; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1891; + this.state = 1763; this.match(HiveSqlParser.COMMA); - this.state = 1892; + this.state = 1764; this.columnNameTypeConstraint(); } } - this.state = 1897; + this.state = 1769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8457,26 +8040,26 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTransformSpec(): PartitionTransformSpecContext { let localContext = new PartitionTransformSpecContext(this.context, this.state); - this.enterRule(localContext, 204, HiveSqlParser.RULE_partitionTransformSpec); + this.enterRule(localContext, 176, HiveSqlParser.RULE_partitionTransformSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1898; + this.state = 1770; this.partitionTransformType(); - this.state = 1903; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1899; + this.state = 1771; this.match(HiveSqlParser.COMMA); - this.state = 1900; + this.state = 1772; this.partitionTransformType(); } } - this.state = 1905; + this.state = 1777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8498,68 +8081,43 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTransformType(): PartitionTransformTypeContext { let localContext = new PartitionTransformTypeContext(this.context, this.state); - this.enterRule(localContext, 206, HiveSqlParser.RULE_partitionTransformType); + this.enterRule(localContext, 178, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 1924; + this.state = 1791; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1778; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1911; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case HiveSqlParser.KW_YEAR: - case HiveSqlParser.KW_YEARS: - { - this.state = 1907; - this.year(); - } - break; - case HiveSqlParser.KW_MONTH: - case HiveSqlParser.KW_MONTHS: - { - this.state = 1908; - this.month(); - } - break; - case HiveSqlParser.KW_DAY: - case HiveSqlParser.KW_DAYS: - { - this.state = 1909; - this.day(); - } - break; - case HiveSqlParser.KW_HOUR: - case HiveSqlParser.KW_HOURS: - { - this.state = 1910; - this.hour(); - } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 1779; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 74 || _la === 148 || _la === 149 || _la === 208 || _la === 209 || _la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); } - this.state = 1913; + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 1780; this.match(HiveSqlParser.LPAREN); - this.state = 1914; + this.state = 1781; this.columnName(); - this.state = 1915; + this.state = 1782; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1917; + this.state = 1784; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 351)) { this.errorHandler.recoverInline(this); @@ -8568,15 +8126,15 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1918; + this.state = 1785; this.match(HiveSqlParser.LPAREN); - this.state = 1919; + this.state = 1786; localContext._value = this.match(HiveSqlParser.Number); - this.state = 1920; + this.state = 1787; this.match(HiveSqlParser.COMMA); - this.state = 1921; + this.state = 1788; this.columnName(); - this.state = 1922; + this.state = 1789; this.match(HiveSqlParser.RPAREN); } break; @@ -8598,44 +8156,44 @@ export class HiveSqlParser extends SQLParserBase { } public tableBuckets(): TableBucketsContext { let localContext = new TableBucketsContext(this.context, this.state); - this.enterRule(localContext, 208, HiveSqlParser.RULE_tableBuckets); + this.enterRule(localContext, 180, HiveSqlParser.RULE_tableBuckets); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1926; + this.state = 1793; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1927; + this.state = 1794; this.match(HiveSqlParser.KW_BY); - this.state = 1928; + this.state = 1795; this.match(HiveSqlParser.LPAREN); - this.state = 1929; + this.state = 1796; localContext._bucketCols = this.columnNameList(); - this.state = 1930; + this.state = 1797; this.match(HiveSqlParser.RPAREN); - this.state = 1937; + this.state = 1804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1931; + this.state = 1798; this.match(HiveSqlParser.KW_SORTED); - this.state = 1932; + this.state = 1799; this.match(HiveSqlParser.KW_BY); - this.state = 1933; + this.state = 1800; this.match(HiveSqlParser.LPAREN); - this.state = 1934; + this.state = 1801; localContext._sortCols = this.columnNameOrderList(); - this.state = 1935; + this.state = 1802; this.match(HiveSqlParser.RPAREN); } } - this.state = 1939; + this.state = 1806; this.match(HiveSqlParser.KW_INTO); - this.state = 1940; + this.state = 1807; localContext._num = this.match(HiveSqlParser.Number); - this.state = 1941; + this.state = 1808; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8655,34 +8213,34 @@ export class HiveSqlParser extends SQLParserBase { } public tableSkewed(): TableSkewedContext { let localContext = new TableSkewedContext(this.context, this.state); - this.enterRule(localContext, 210, HiveSqlParser.RULE_tableSkewed); + this.enterRule(localContext, 182, HiveSqlParser.RULE_tableSkewed); try { this.enterOuterAlt(localContext, 1); { - this.state = 1943; + this.state = 1810; this.match(HiveSqlParser.KW_SKEWED); - this.state = 1944; + this.state = 1811; this.match(HiveSqlParser.KW_BY); - this.state = 1945; + this.state = 1812; this.match(HiveSqlParser.LPAREN); - this.state = 1946; + this.state = 1813; localContext._skewedCols = this.columnNameList(); - this.state = 1947; + this.state = 1814; this.match(HiveSqlParser.RPAREN); - this.state = 1948; + this.state = 1815; this.match(HiveSqlParser.KW_ON); - this.state = 1949; + this.state = 1816; this.match(HiveSqlParser.LPAREN); - this.state = 1950; + this.state = 1817; localContext._skewedValues = this.skewedValueElement(); - this.state = 1951; + this.state = 1818; this.match(HiveSqlParser.RPAREN); - this.state = 1953; + this.state = 1820; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1952; + this.state = 1819; this.storedAsDirs(); } break; @@ -8705,22 +8263,22 @@ export class HiveSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 212, HiveSqlParser.RULE_rowFormat); + this.enterRule(localContext, 184, HiveSqlParser.RULE_rowFormat); try { - this.state = 1957; + this.state = 1824; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1955; + this.state = 1822; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1956; + this.state = 1823; this.rowFormatDelimited(); } break; @@ -8740,82 +8298,30 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public recordReader(): RecordReaderContext { - let localContext = new RecordReaderContext(this.context, this.state); - this.enterRule(localContext, 214, HiveSqlParser.RULE_recordReader); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1959; - this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 1960; - this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public recordWriter(): RecordWriterContext { - let localContext = new RecordWriterContext(this.context, this.state); - this.enterRule(localContext, 216, HiveSqlParser.RULE_recordWriter); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 1962; - this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 1963; - this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public rowFormatSerde(): RowFormatSerdeContext { let localContext = new RowFormatSerdeContext(this.context, this.state); - this.enterRule(localContext, 218, HiveSqlParser.RULE_rowFormatSerde); + this.enterRule(localContext, 186, HiveSqlParser.RULE_rowFormatSerde); try { this.enterOuterAlt(localContext, 1); { - this.state = 1965; + this.state = 1826; this.match(HiveSqlParser.KW_ROW); - this.state = 1966; + this.state = 1827; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1967; + this.state = 1828; this.match(HiveSqlParser.KW_SERDE); - this.state = 1968; + this.state = 1829; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 1972; + this.state = 1833; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 1969; + this.state = 1830; this.match(HiveSqlParser.KW_WITH); - this.state = 1970; + this.state = 1831; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 1971; + this.state = 1832; localContext._serderops = this.tableProperties(); } break; @@ -8838,63 +8344,63 @@ export class HiveSqlParser extends SQLParserBase { } public rowFormatDelimited(): RowFormatDelimitedContext { let localContext = new RowFormatDelimitedContext(this.context, this.state); - this.enterRule(localContext, 220, HiveSqlParser.RULE_rowFormatDelimited); + this.enterRule(localContext, 188, HiveSqlParser.RULE_rowFormatDelimited); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1974; + this.state = 1835; this.match(HiveSqlParser.KW_ROW); - this.state = 1975; + this.state = 1836; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1976; + this.state = 1837; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 1978; + this.state = 1839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 1977; - this.tableRowFormatFieldIdentifier(); + this.state = 1838; + this.rowFormatFieldIdentifier(); } } - this.state = 1981; + this.state = 1842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1980; - this.tableRowFormatCollItemsIdentifier(); + this.state = 1841; + this.rowFormatCollItemsIdentifier(); } } - this.state = 1984; + this.state = 1845; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 1983; - this.tableRowFormatMapKeysIdentifier(); + this.state = 1844; + this.rowFormatMapKeysIdentifier(); } break; } - this.state = 1987; + this.state = 1848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 186) { { - this.state = 1986; - this.tableRowFormatLinesIdentifier(); + this.state = 1847; + this.rowFormatLinesIdentifier(); } } - this.state = 1990; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 1989; + this.state = 1850; this.tableRowNullFormat(); } } @@ -8915,52 +8421,15 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormat(): TableRowFormatContext { - let localContext = new TableRowFormatContext(this.context, this.state); - this.enterRule(localContext, 222, HiveSqlParser.RULE_tableRowFormat); - try { - this.state = 1994; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 1992; - this.rowFormatDelimited(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 1993; - this.rowFormatSerde(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public tablePropertiesPrefixed(): TablePropertiesPrefixedContext { let localContext = new TablePropertiesPrefixedContext(this.context, this.state); - this.enterRule(localContext, 224, HiveSqlParser.RULE_tablePropertiesPrefixed); + this.enterRule(localContext, 190, HiveSqlParser.RULE_tablePropertiesPrefixed); try { this.enterOuterAlt(localContext, 1); { - this.state = 1996; + this.state = 1853; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1997; + this.state = 1854; this.tableProperties(); } } @@ -8980,15 +8449,15 @@ export class HiveSqlParser extends SQLParserBase { } public tableProperties(): TablePropertiesContext { let localContext = new TablePropertiesContext(this.context, this.state); - this.enterRule(localContext, 226, HiveSqlParser.RULE_tableProperties); + this.enterRule(localContext, 192, HiveSqlParser.RULE_tableProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 1999; + this.state = 1856; this.match(HiveSqlParser.LPAREN); - this.state = 2000; + this.state = 1857; this.tablePropertiesList(); - this.state = 2001; + this.state = 1858; this.match(HiveSqlParser.RPAREN); } } @@ -9008,37 +8477,37 @@ export class HiveSqlParser extends SQLParserBase { } public tablePropertiesList(): TablePropertiesListContext { let localContext = new TablePropertiesListContext(this.context, this.state); - this.enterRule(localContext, 228, HiveSqlParser.RULE_tablePropertiesList); + this.enterRule(localContext, 194, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 2012; + this.state = 1869; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2003; + this.state = 1860; this.keyValuePropertyList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2004; + this.state = 1861; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2009; + this.state = 1866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2005; + this.state = 1862; this.match(HiveSqlParser.COMMA); - this.state = 2006; + this.state = 1863; localContext._key = this.match(HiveSqlParser.StringLiteral); } } - this.state = 2011; + this.state = 1868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9062,15 +8531,15 @@ export class HiveSqlParser extends SQLParserBase { } public keyValueProperties(): KeyValuePropertiesContext { let localContext = new KeyValuePropertiesContext(this.context, this.state); - this.enterRule(localContext, 230, HiveSqlParser.RULE_keyValueProperties); + this.enterRule(localContext, 196, HiveSqlParser.RULE_keyValueProperties); try { this.enterOuterAlt(localContext, 1); { - this.state = 2014; + this.state = 1871; this.match(HiveSqlParser.LPAREN); - this.state = 2015; + this.state = 1872; this.keyValuePropertyList(); - this.state = 2016; + this.state = 1873; this.match(HiveSqlParser.RPAREN); } } @@ -9090,26 +8559,26 @@ export class HiveSqlParser extends SQLParserBase { } public keyValuePropertyList(): KeyValuePropertyListContext { let localContext = new KeyValuePropertyListContext(this.context, this.state); - this.enterRule(localContext, 232, HiveSqlParser.RULE_keyValuePropertyList); + this.enterRule(localContext, 198, HiveSqlParser.RULE_keyValuePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2018; + this.state = 1875; this.keyValueProperty(); - this.state = 2023; + this.state = 1880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2019; + this.state = 1876; this.match(HiveSqlParser.COMMA); - this.state = 2020; + this.state = 1877; this.keyValueProperty(); } } - this.state = 2025; + this.state = 1882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9131,15 +8600,15 @@ export class HiveSqlParser extends SQLParserBase { } public keyValueProperty(): KeyValuePropertyContext { let localContext = new KeyValuePropertyContext(this.context, this.state); - this.enterRule(localContext, 234, HiveSqlParser.RULE_keyValueProperty); + this.enterRule(localContext, 200, HiveSqlParser.RULE_keyValueProperty); try { this.enterOuterAlt(localContext, 1); { - this.state = 2026; + this.state = 1883; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2027; + this.state = 1884; this.match(HiveSqlParser.EQUAL); - this.state = 2028; + this.state = 1885; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9157,31 +8626,31 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormatFieldIdentifier(): TableRowFormatFieldIdentifierContext { - let localContext = new TableRowFormatFieldIdentifierContext(this.context, this.state); - this.enterRule(localContext, 236, HiveSqlParser.RULE_tableRowFormatFieldIdentifier); + public rowFormatFieldIdentifier(): RowFormatFieldIdentifierContext { + let localContext = new RowFormatFieldIdentifierContext(this.context, this.state); + this.enterRule(localContext, 202, HiveSqlParser.RULE_rowFormatFieldIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2030; + this.state = 1887; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2031; + this.state = 1888; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2032; + this.state = 1889; this.match(HiveSqlParser.KW_BY); - this.state = 2033; + this.state = 1890; localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); - this.state = 2037; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2034; + this.state = 1891; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2035; + this.state = 1892; this.match(HiveSqlParser.KW_BY); - this.state = 2036; + this.state = 1893; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9202,21 +8671,21 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormatCollItemsIdentifier(): TableRowFormatCollItemsIdentifierContext { - let localContext = new TableRowFormatCollItemsIdentifierContext(this.context, this.state); - this.enterRule(localContext, 238, HiveSqlParser.RULE_tableRowFormatCollItemsIdentifier); + public rowFormatCollItemsIdentifier(): RowFormatCollItemsIdentifierContext { + let localContext = new RowFormatCollItemsIdentifierContext(this.context, this.state); + this.enterRule(localContext, 204, HiveSqlParser.RULE_rowFormatCollItemsIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 1896; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2040; + this.state = 1897; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2041; + this.state = 1898; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2042; + this.state = 1899; this.match(HiveSqlParser.KW_BY); - this.state = 2043; + this.state = 1900; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9234,21 +8703,21 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormatMapKeysIdentifier(): TableRowFormatMapKeysIdentifierContext { - let localContext = new TableRowFormatMapKeysIdentifierContext(this.context, this.state); - this.enterRule(localContext, 240, HiveSqlParser.RULE_tableRowFormatMapKeysIdentifier); + public rowFormatMapKeysIdentifier(): RowFormatMapKeysIdentifierContext { + let localContext = new RowFormatMapKeysIdentifierContext(this.context, this.state); + this.enterRule(localContext, 206, HiveSqlParser.RULE_rowFormatMapKeysIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 1902; this.match(HiveSqlParser.KW_MAP); - this.state = 2046; + this.state = 1903; this.match(HiveSqlParser.KW_KEYS); - this.state = 2047; + this.state = 1904; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2048; + this.state = 1905; this.match(HiveSqlParser.KW_BY); - this.state = 2049; + this.state = 1906; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9266,19 +8735,19 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public tableRowFormatLinesIdentifier(): TableRowFormatLinesIdentifierContext { - let localContext = new TableRowFormatLinesIdentifierContext(this.context, this.state); - this.enterRule(localContext, 242, HiveSqlParser.RULE_tableRowFormatLinesIdentifier); + public rowFormatLinesIdentifier(): RowFormatLinesIdentifierContext { + let localContext = new RowFormatLinesIdentifierContext(this.context, this.state); + this.enterRule(localContext, 208, HiveSqlParser.RULE_rowFormatLinesIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2051; + this.state = 1908; this.match(HiveSqlParser.KW_LINES); - this.state = 2052; + this.state = 1909; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2053; + this.state = 1910; this.match(HiveSqlParser.KW_BY); - this.state = 2054; + this.state = 1911; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9298,17 +8767,17 @@ export class HiveSqlParser extends SQLParserBase { } public tableRowNullFormat(): TableRowNullFormatContext { let localContext = new TableRowNullFormatContext(this.context, this.state); - this.enterRule(localContext, 244, HiveSqlParser.RULE_tableRowNullFormat); + this.enterRule(localContext, 210, HiveSqlParser.RULE_tableRowNullFormat); try { this.enterOuterAlt(localContext, 1); { - this.state = 2056; + this.state = 1913; this.match(HiveSqlParser.KW_NULL); - this.state = 2057; + this.state = 1914; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2058; + this.state = 1915; this.match(HiveSqlParser.KW_AS); - this.state = 2059; + this.state = 1916; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9328,39 +8797,39 @@ export class HiveSqlParser extends SQLParserBase { } public tableFileFormat(): TableFileFormatContext { let localContext = new TableFileFormatContext(this.context, this.state); - this.enterRule(localContext, 246, HiveSqlParser.RULE_tableFileFormat); + this.enterRule(localContext, 212, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2102; + this.state = 1959; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2061; + this.state = 1918; this.match(HiveSqlParser.KW_STORED); - this.state = 2062; + this.state = 1919; this.match(HiveSqlParser.KW_AS); - this.state = 2063; + this.state = 1920; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2064; + this.state = 1921; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2065; + this.state = 1922; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 2066; + this.state = 1923; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2071; + this.state = 1928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2067; + this.state = 1924; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2068; + this.state = 1925; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2069; + this.state = 1926; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2070; + this.state = 1927; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9370,36 +8839,36 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2073; + this.state = 1930; this.match(HiveSqlParser.KW_STORED); - this.state = 2074; + this.state = 1931; this.match(HiveSqlParser.KW_BY); - this.state = 2075; + this.state = 1932; localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); - this.state = 2079; + this.state = 1936; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 2076; + this.state = 1933; this.match(HiveSqlParser.KW_WITH); - this.state = 2077; + this.state = 1934; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2078; + this.state = 1935; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2084; + this.state = 1941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2081; + this.state = 1938; this.match(HiveSqlParser.KW_STORED); - this.state = 2082; + this.state = 1939; this.match(HiveSqlParser.KW_AS); - this.state = 2083; + this.state = 1940; localContext._fileformat = this.id_(); } } @@ -9409,36 +8878,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2086; + this.state = 1943; this.match(HiveSqlParser.KW_STORED); - this.state = 2087; + this.state = 1944; this.match(HiveSqlParser.KW_BY); - this.state = 2088; + this.state = 1945; localContext._genericSpec = this.id_(); - this.state = 2092; + this.state = 1949; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2089; + this.state = 1946; this.match(HiveSqlParser.KW_WITH); - this.state = 2090; + this.state = 1947; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2091; + this.state = 1948; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2097; + this.state = 1954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2094; + this.state = 1951; this.match(HiveSqlParser.KW_STORED); - this.state = 2095; + this.state = 1952; this.match(HiveSqlParser.KW_AS); - this.state = 2096; + this.state = 1953; localContext._fileformat = this.id_(); } } @@ -9448,11 +8917,11 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2099; + this.state = 1956; this.match(HiveSqlParser.KW_STORED); - this.state = 2100; + this.state = 1957; this.match(HiveSqlParser.KW_AS); - this.state = 2101; + this.state = 1958; localContext._genericSpec = this.id_(); } break; @@ -9474,26 +8943,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeList(): ColumnNameTypeListContext { let localContext = new ColumnNameTypeListContext(this.context, this.state); - this.enterRule(localContext, 248, HiveSqlParser.RULE_columnNameTypeList); + this.enterRule(localContext, 214, HiveSqlParser.RULE_columnNameTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2104; + this.state = 1961; this.columnNameType(); - this.state = 2109; + this.state = 1966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2105; + this.state = 1962; this.match(HiveSqlParser.COMMA); - this.state = 2106; + this.state = 1963; this.columnNameType(); } } - this.state = 2111; + this.state = 1968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9515,26 +8984,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeOrConstraintList(): ColumnNameTypeOrConstraintListContext { let localContext = new ColumnNameTypeOrConstraintListContext(this.context, this.state); - this.enterRule(localContext, 250, HiveSqlParser.RULE_columnNameTypeOrConstraintList); + this.enterRule(localContext, 216, HiveSqlParser.RULE_columnNameTypeOrConstraintList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2112; + this.state = 1969; this.columnNameTypeOrConstraint(); - this.state = 2117; + this.state = 1974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2113; + this.state = 1970; this.match(HiveSqlParser.COMMA); - this.state = 2114; + this.state = 1971; this.columnNameTypeOrConstraint(); } } - this.state = 2119; + this.state = 1976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9556,26 +9025,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameColonTypeList(): ColumnNameColonTypeListContext { let localContext = new ColumnNameColonTypeListContext(this.context, this.state); - this.enterRule(localContext, 252, HiveSqlParser.RULE_columnNameColonTypeList); + this.enterRule(localContext, 218, HiveSqlParser.RULE_columnNameColonTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2120; + this.state = 1977; this.columnNameColonType(); - this.state = 2125; + this.state = 1982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2121; + this.state = 1978; this.match(HiveSqlParser.COMMA); - this.state = 2122; + this.state = 1979; this.columnNameColonType(); } } - this.state = 2127; + this.state = 1984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9597,26 +9066,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameList(): ColumnNameListContext { let localContext = new ColumnNameListContext(this.context, this.state); - this.enterRule(localContext, 254, HiveSqlParser.RULE_columnNameList); + this.enterRule(localContext, 220, HiveSqlParser.RULE_columnNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2128; + this.state = 1985; this.columnName(); - this.state = 2133; + this.state = 1990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2129; + this.state = 1986; this.match(HiveSqlParser.COMMA); - this.state = 2130; + this.state = 1987; this.columnName(); } } - this.state = 2135; + this.state = 1992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9638,26 +9107,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 256, HiveSqlParser.RULE_columnName); + this.enterRule(localContext, 222, HiveSqlParser.RULE_columnName); try { - this.state = 2139; + this.state = 1996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2136; + this.state = 1993; this.poolPathAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2137; + this.state = 1994; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2138; + this.state = 1995; this.emptyColumn(); } break; @@ -9679,11 +9148,11 @@ export class HiveSqlParser extends SQLParserBase { } public columnNamePath(): ColumnNamePathContext { let localContext = new ColumnNamePathContext(this.context, this.state); - this.enterRule(localContext, 258, HiveSqlParser.RULE_columnNamePath); + this.enterRule(localContext, 224, HiveSqlParser.RULE_columnNamePath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 1998; this.poolPath(); } } @@ -9703,26 +9172,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext { let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); - this.enterRule(localContext, 260, HiveSqlParser.RULE_columnNamePathAllowEmpty); + this.enterRule(localContext, 226, HiveSqlParser.RULE_columnNamePathAllowEmpty); try { - this.state = 2146; + this.state = 2003; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2143; + this.state = 2000; this.poolPathAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2144; + this.state = 2001; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2145; + this.state = 2002; this.emptyColumn(); } break; @@ -9744,11 +9213,11 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 262, HiveSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 228, HiveSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2148; + this.state = 2005; this.id_(); } } @@ -9768,52 +9237,52 @@ export class HiveSqlParser extends SQLParserBase { } public extColumnName(): ExtColumnNameContext { let localContext = new ExtColumnNameContext(this.context, this.state); - this.enterRule(localContext, 264, HiveSqlParser.RULE_extColumnName); + this.enterRule(localContext, 230, HiveSqlParser.RULE_extColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2150; + this.state = 2007; this.columnName(); - this.state = 2160; + this.state = 2017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 2151; + this.state = 2008; this.match(HiveSqlParser.DOT); - this.state = 2156; + this.state = 2013; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: { - this.state = 2152; + this.state = 2009; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2153; + this.state = 2010; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2154; + this.state = 2011; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2155; + this.state = 2012; this.id_(); } break; } } } - this.state = 2162; + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9835,26 +9304,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrderList(): ColumnNameOrderListContext { let localContext = new ColumnNameOrderListContext(this.context, this.state); - this.enterRule(localContext, 266, HiveSqlParser.RULE_columnNameOrderList); + this.enterRule(localContext, 232, HiveSqlParser.RULE_columnNameOrderList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2163; + this.state = 2020; this.columnNameOrder(); - this.state = 2168; + this.state = 2025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2164; + this.state = 2021; this.match(HiveSqlParser.COMMA); - this.state = 2165; + this.state = 2022; this.columnNameOrder(); } } - this.state = 2170; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9876,15 +9345,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnParenthesesList(): ColumnParenthesesListContext { let localContext = new ColumnParenthesesListContext(this.context, this.state); - this.enterRule(localContext, 268, HiveSqlParser.RULE_columnParenthesesList); + this.enterRule(localContext, 234, HiveSqlParser.RULE_columnParenthesesList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2028; this.match(HiveSqlParser.LPAREN); - this.state = 2172; + this.state = 2029; this.columnNameList(); - this.state = 2173; + this.state = 2030; this.match(HiveSqlParser.RPAREN); } } @@ -9904,10 +9373,10 @@ export class HiveSqlParser extends SQLParserBase { } public enableValidateSpecification(): EnableValidateSpecificationContext { let localContext = new EnableValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 270, HiveSqlParser.RULE_enableValidateSpecification); + this.enterRule(localContext, 236, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2180; + this.state = 2037; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -9916,15 +9385,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2032; this.enableSpecification(); - this.state = 2177; + this.state = 2034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217 || _la === 373) { { - this.state = 2176; - this.validateSpecification(); + this.state = 2033; + _la = this.tokenStream.LA(1); + if(!(_la === 217 || _la === 373)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } @@ -9934,7 +9410,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2179; + this.state = 2036; this.enforcedSpecification(); } break; @@ -9958,16 +9434,16 @@ export class HiveSqlParser extends SQLParserBase { } public enableSpecification(): EnableSpecificationContext { let localContext = new EnableSpecificationContext(this.context, this.state); - this.enterRule(localContext, 272, HiveSqlParser.RULE_enableSpecification); + this.enterRule(localContext, 238, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2184; + this.state = 2041; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2182; + this.state = 2039; this.enable(); } break; @@ -9975,7 +9451,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2183; + this.state = 2040; this.disable(); } break; @@ -9997,58 +9473,26 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public validateSpecification(): ValidateSpecificationContext { - let localContext = new ValidateSpecificationContext(this.context, this.state); - this.enterRule(localContext, 274, HiveSqlParser.RULE_validateSpecification); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2186; - _la = this.tokenStream.LA(1); - if(!(_la === 217 || _la === 373)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public enforcedSpecification(): EnforcedSpecificationContext { let localContext = new EnforcedSpecificationContext(this.context, this.state); - this.enterRule(localContext, 276, HiveSqlParser.RULE_enforcedSpecification); + this.enterRule(localContext, 240, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2191; + this.state = 2046; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2043; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2189; + this.state = 2044; this.match(HiveSqlParser.KW_NOT); - this.state = 2190; + this.state = 2045; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -10070,66 +9514,34 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public relySpecification(): RelySpecificationContext { - let localContext = new RelySpecificationContext(this.context, this.state); - this.enterRule(localContext, 278, HiveSqlParser.RULE_relySpecification); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2193; - _la = this.tokenStream.LA(1); - if(!(_la === 214 || _la === 272)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public createConstraint(): CreateConstraintContext { let localContext = new CreateConstraintContext(this.context, this.state); - this.enterRule(localContext, 280, HiveSqlParser.RULE_createConstraint); + this.enterRule(localContext, 242, HiveSqlParser.RULE_createConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2195; + this.state = 2048; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2196; + this.state = 2049; localContext._constraintName = this.id_(); } } - this.state = 2199; + this.state = 2052; this.tableLevelConstraint(); - this.state = 2201; + this.state = 2054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2200; - this.constraintOptsCreate(); + this.state = 2053; + this.constraintOpts(); } } @@ -10151,23 +9563,23 @@ export class HiveSqlParser extends SQLParserBase { } public alterConstraintWithName(): AlterConstraintWithNameContext { let localContext = new AlterConstraintWithNameContext(this.context, this.state); - this.enterRule(localContext, 282, HiveSqlParser.RULE_alterConstraintWithName); + this.enterRule(localContext, 244, HiveSqlParser.RULE_alterConstraintWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2203; + this.state = 2056; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2204; + this.state = 2057; localContext._constraintName = this.id_(); - this.state = 2205; + this.state = 2058; this.tableLevelConstraint(); - this.state = 2207; + this.state = 2060; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 2206; - this.constraintOptsAlter(); + this.state = 2059; + this.constraintOpts(); } break; } @@ -10189,23 +9601,23 @@ export class HiveSqlParser extends SQLParserBase { } public tableLevelConstraint(): TableLevelConstraintContext { let localContext = new TableLevelConstraintContext(this.context, this.state); - this.enterRule(localContext, 284, HiveSqlParser.RULE_tableLevelConstraint); + this.enterRule(localContext, 246, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2211; + this.state = 2064; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2209; + this.state = 2062; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2210; + this.state = 2063; this.checkConstraint(); } break; @@ -10229,13 +9641,13 @@ export class HiveSqlParser extends SQLParserBase { } public pkUkConstraint(): PkUkConstraintContext { let localContext = new PkUkConstraintContext(this.context, this.state); - this.enterRule(localContext, 286, HiveSqlParser.RULE_pkUkConstraint); + this.enterRule(localContext, 248, HiveSqlParser.RULE_pkUkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2066; this.tableConstraintType(); - this.state = 2214; + this.state = 2067; localContext._pkCols = this.columnParenthesesList(); } } @@ -10255,17 +9667,17 @@ export class HiveSqlParser extends SQLParserBase { } public checkConstraint(): CheckConstraintContext { let localContext = new CheckConstraintContext(this.context, this.state); - this.enterRule(localContext, 288, HiveSqlParser.RULE_checkConstraint); + this.enterRule(localContext, 250, HiveSqlParser.RULE_checkConstraint); try { this.enterOuterAlt(localContext, 1); { - this.state = 2216; + this.state = 2069; this.match(HiveSqlParser.KW_CHECK); - this.state = 2217; + this.state = 2070; this.match(HiveSqlParser.LPAREN); - this.state = 2218; + this.state = 2071; this.expression(); - this.state = 2219; + this.state = 2072; this.match(HiveSqlParser.RPAREN); } } @@ -10285,42 +9697,42 @@ export class HiveSqlParser extends SQLParserBase { } public createForeignKey(): CreateForeignKeyContext { let localContext = new CreateForeignKeyContext(this.context, this.state); - this.enterRule(localContext, 290, HiveSqlParser.RULE_createForeignKey); + this.enterRule(localContext, 252, HiveSqlParser.RULE_createForeignKey); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2221; + this.state = 2074; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2222; + this.state = 2075; localContext._constraintName = this.id_(); } } - this.state = 2225; + this.state = 2078; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2226; + this.state = 2079; this.match(HiveSqlParser.KW_KEY); - this.state = 2227; + this.state = 2080; localContext._fkCols = this.columnParenthesesList(); - this.state = 2228; + this.state = 2081; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2229; + this.state = 2082; localContext._tabName = this.tableName(); - this.state = 2230; + this.state = 2083; localContext._parCols = this.columnParenthesesList(); - this.state = 2232; + this.state = 2085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2231; - this.constraintOptsCreate(); + this.state = 2084; + this.constraintOpts(); } } @@ -10342,33 +9754,33 @@ export class HiveSqlParser extends SQLParserBase { } public alterForeignKeyWithName(): AlterForeignKeyWithNameContext { let localContext = new AlterForeignKeyWithNameContext(this.context, this.state); - this.enterRule(localContext, 292, HiveSqlParser.RULE_alterForeignKeyWithName); + this.enterRule(localContext, 254, HiveSqlParser.RULE_alterForeignKeyWithName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2234; + this.state = 2087; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2235; + this.state = 2088; localContext._constraintName = this.id_(); - this.state = 2236; + this.state = 2089; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2237; + this.state = 2090; this.match(HiveSqlParser.KW_KEY); - this.state = 2238; + this.state = 2091; localContext._fkCols = this.columnParenthesesList(); - this.state = 2239; + this.state = 2092; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2240; + this.state = 2093; localContext._tabName = this.tableName(); - this.state = 2241; + this.state = 2094; localContext._parCols = this.columnParenthesesList(); - this.state = 2243; + this.state = 2096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 2242; - this.constraintOptsAlter(); + this.state = 2095; + this.constraintOpts(); } break; } @@ -10390,9 +9802,9 @@ export class HiveSqlParser extends SQLParserBase { } public skewedValueElement(): SkewedValueElementContext { let localContext = new SkewedValueElementContext(this.context, this.state); - this.enterRule(localContext, 294, HiveSqlParser.RULE_skewedValueElement); + this.enterRule(localContext, 256, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2247; + this.state = 2100; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -10651,14 +10063,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2245; + this.state = 2098; this.constantList(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2246; + this.state = 2099; this.skewedColumnValuePairList(); } break; @@ -10682,26 +10094,26 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePairList(): SkewedColumnValuePairListContext { let localContext = new SkewedColumnValuePairListContext(this.context, this.state); - this.enterRule(localContext, 296, HiveSqlParser.RULE_skewedColumnValuePairList); + this.enterRule(localContext, 258, HiveSqlParser.RULE_skewedColumnValuePairList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2249; + this.state = 2102; this.skewedColumnValuePair(); - this.state = 2254; + this.state = 2107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2250; + this.state = 2103; this.match(HiveSqlParser.COMMA); - this.state = 2251; + this.state = 2104; this.skewedColumnValuePair(); } } - this.state = 2256; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10723,15 +10135,15 @@ export class HiveSqlParser extends SQLParserBase { } public skewedColumnValuePair(): SkewedColumnValuePairContext { let localContext = new SkewedColumnValuePairContext(this.context, this.state); - this.enterRule(localContext, 298, HiveSqlParser.RULE_skewedColumnValuePair); + this.enterRule(localContext, 260, HiveSqlParser.RULE_skewedColumnValuePair); try { this.enterOuterAlt(localContext, 1); { - this.state = 2257; + this.state = 2110; this.match(HiveSqlParser.LPAREN); - this.state = 2258; + this.state = 2111; localContext._colValues = this.constantList(); - this.state = 2259; + this.state = 2112; this.match(HiveSqlParser.RPAREN); } } @@ -10751,26 +10163,26 @@ export class HiveSqlParser extends SQLParserBase { } public constantList(): ConstantListContext { let localContext = new ConstantListContext(this.context, this.state); - this.enterRule(localContext, 300, HiveSqlParser.RULE_constantList); + this.enterRule(localContext, 262, HiveSqlParser.RULE_constantList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2261; + this.state = 2114; this.constant(); - this.state = 2266; + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2262; + this.state = 2115; this.match(HiveSqlParser.COMMA); - this.state = 2263; + this.state = 2116; this.constant(); } } - this.state = 2268; + this.state = 2121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10792,12 +10204,12 @@ export class HiveSqlParser extends SQLParserBase { } public orderSpecification(): OrderSpecificationContext { let localContext = new OrderSpecificationContext(this.context, this.state); - this.enterRule(localContext, 302, HiveSqlParser.RULE_orderSpecification); + this.enterRule(localContext, 264, HiveSqlParser.RULE_orderSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2122; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10824,14 +10236,14 @@ export class HiveSqlParser extends SQLParserBase { } public nullOrdering(): NullOrderingContext { let localContext = new NullOrderingContext(this.context, this.state); - this.enterRule(localContext, 304, HiveSqlParser.RULE_nullOrdering); + this.enterRule(localContext, 266, HiveSqlParser.RULE_nullOrdering); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2124; this.match(HiveSqlParser.KW_NULLS); - this.state = 2272; + this.state = 2125; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10858,29 +10270,29 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameOrder(): ColumnNameOrderContext { let localContext = new ColumnNameOrderContext(this.context, this.state); - this.enterRule(localContext, 306, HiveSqlParser.RULE_columnNameOrder); + this.enterRule(localContext, 268, HiveSqlParser.RULE_columnNameOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2127; this.columnName(); - this.state = 2276; + this.state = 2129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2275; + this.state = 2128; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2279; + this.state = 2132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2278; + this.state = 2131; localContext._nullSpec = this.nullOrdering(); } } @@ -10903,26 +10315,26 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameCommentList(): ColumnNameCommentListContext { let localContext = new ColumnNameCommentListContext(this.context, this.state); - this.enterRule(localContext, 308, HiveSqlParser.RULE_columnNameCommentList); + this.enterRule(localContext, 270, HiveSqlParser.RULE_columnNameCommentList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2281; + this.state = 2134; this.columnNameComment(); - this.state = 2286; + this.state = 2139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2282; + this.state = 2135; this.match(HiveSqlParser.COMMA); - this.state = 2283; + this.state = 2136; this.columnNameComment(); } } - this.state = 2288; + this.state = 2141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10944,21 +10356,21 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameComment(): ColumnNameCommentContext { let localContext = new ColumnNameCommentContext(this.context, this.state); - this.enterRule(localContext, 310, HiveSqlParser.RULE_columnNameComment); + this.enterRule(localContext, 272, HiveSqlParser.RULE_columnNameComment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2289; + this.state = 2142; localContext._colName = this.columnNameCreate(); - this.state = 2292; + this.state = 2145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2290; + this.state = 2143; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2291; + this.state = 2144; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10981,43 +10393,43 @@ export class HiveSqlParser extends SQLParserBase { } public columnRefOrder(): ColumnRefOrderContext { let localContext = new ColumnRefOrderContext(this.context, this.state); - this.enterRule(localContext, 312, HiveSqlParser.RULE_columnRefOrder); + this.enterRule(localContext, 274, HiveSqlParser.RULE_columnRefOrder); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2296; + this.state = 2149; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2294; + this.state = 2147; this.columnName(); } break; case 2: { - this.state = 2295; + this.state = 2148; this.expression(); } break; } - this.state = 2299; + this.state = 2152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2298; + this.state = 2151; localContext._orderSpec = this.orderSpecification(); } break; } - this.state = 2302; + this.state = 2155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2301; + this.state = 2154; localContext._nullSpec = this.nullOrdering(); } } @@ -11040,23 +10452,23 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameType(): ColumnNameTypeContext { let localContext = new ColumnNameTypeContext(this.context, this.state); - this.enterRule(localContext, 314, HiveSqlParser.RULE_columnNameType); + this.enterRule(localContext, 276, HiveSqlParser.RULE_columnNameType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2304; + this.state = 2157; localContext._colName = this.columnNameCreate(); - this.state = 2305; - this.columnType(); - this.state = 2308; + this.state = 2158; + this.type_(); + this.state = 2161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2306; + this.state = 2159; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2307; + this.state = 2160; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11079,22 +10491,22 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeOrConstraint(): ColumnNameTypeOrConstraintContext { let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); - this.enterRule(localContext, 316, HiveSqlParser.RULE_columnNameTypeOrConstraint); + this.enterRule(localContext, 278, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2312; + this.state = 2165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2310; + this.state = 2163; this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2311; + this.state = 2164; this.columnNameTypeConstraint(); } break; @@ -11116,22 +10528,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableConstraint(): TableConstraintContext { let localContext = new TableConstraintContext(this.context, this.state); - this.enterRule(localContext, 318, HiveSqlParser.RULE_tableConstraint); + this.enterRule(localContext, 280, HiveSqlParser.RULE_tableConstraint); try { - this.state = 2316; + this.state = 2169; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2314; + this.state = 2167; this.createForeignKey(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2315; + this.state = 2168; this.createConstraint(); } break; @@ -11153,33 +10565,33 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameTypeConstraint(): ColumnNameTypeConstraintContext { let localContext = new ColumnNameTypeConstraintContext(this.context, this.state); - this.enterRule(localContext, 320, HiveSqlParser.RULE_columnNameTypeConstraint); + this.enterRule(localContext, 282, HiveSqlParser.RULE_columnNameTypeConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2318; + this.state = 2171; localContext._colName = this.columnNameCreate(); - this.state = 2319; - localContext._colType = this.columnType(); - this.state = 2321; + this.state = 2172; + localContext._colType = this.type_(); + this.state = 2174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 2320; + this.state = 2173; this.columnConstraint(); } } - this.state = 2325; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2323; + this.state = 2176; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2324; + this.state = 2177; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11202,22 +10614,22 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraint(): ColumnConstraintContext { let localContext = new ColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 322, HiveSqlParser.RULE_columnConstraint); + this.enterRule(localContext, 284, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2329; + this.state = 2182; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2327; + this.state = 2180; this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2328; + this.state = 2181; this.colConstraint(); } break; @@ -11239,179 +10651,40 @@ export class HiveSqlParser extends SQLParserBase { } public foreignKeyConstraint(): ForeignKeyConstraintContext { let localContext = new ForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 324, HiveSqlParser.RULE_foreignKeyConstraint); + this.enterRule(localContext, 286, HiveSqlParser.RULE_foreignKeyConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2333; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 55) { - { - this.state = 2331; - this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2332; - localContext._constraintName = this.id_(); - } - } - - this.state = 2335; - this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2336; - localContext._tabName = this.tableName(); - this.state = 2337; - this.match(HiveSqlParser.LPAREN); - this.state = 2338; - localContext._colName = this.columnName(); - this.state = 2339; - this.match(HiveSqlParser.RPAREN); - this.state = 2341; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { - { - this.state = 2340; - this.constraintOptsCreate(); - } - } - - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public colConstraint(): ColConstraintContext { - let localContext = new ColConstraintContext(this.context, this.state); - this.enterRule(localContext, 326, HiveSqlParser.RULE_colConstraint); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2345; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 55) { - { - this.state = 2343; - this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2344; - localContext._constraintName = this.id_(); - } - } - - this.state = 2347; - this.columnConstraintType(); - this.state = 2349; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { - { - this.state = 2348; - this.constraintOptsCreate(); - } - } - - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public alterColumnConstraint(): AlterColumnConstraintContext { - let localContext = new AlterColumnConstraintContext(this.context, this.state); - this.enterRule(localContext, 328, HiveSqlParser.RULE_alterColumnConstraint); - try { - this.state = 2353; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2351; - this.alterForeignKeyConstraint(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2352; - this.alterColConstraint(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public alterForeignKeyConstraint(): AlterForeignKeyConstraintContext { - let localContext = new AlterForeignKeyConstraintContext(this.context, this.state); - this.enterRule(localContext, 330, HiveSqlParser.RULE_alterForeignKeyConstraint); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2357; + this.state = 2186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2355; + this.state = 2184; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2356; + this.state = 2185; localContext._constraintName = this.id_(); } } - this.state = 2359; + this.state = 2188; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2360; + this.state = 2189; localContext._tabName = this.tableName(); - this.state = 2361; + this.state = 2190; this.match(HiveSqlParser.LPAREN); - this.state = 2362; + this.state = 2191; localContext._colName = this.columnName(); - this.state = 2363; + this.state = 2192; this.match(HiveSqlParser.RPAREN); - this.state = 2365; + this.state = 2194; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2364; - this.constraintOptsAlter(); + this.state = 2193; + this.constraintOpts(); } break; } @@ -11431,34 +10704,34 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public alterColConstraint(): AlterColConstraintContext { - let localContext = new AlterColConstraintContext(this.context, this.state); - this.enterRule(localContext, 332, HiveSqlParser.RULE_alterColConstraint); + public colConstraint(): ColConstraintContext { + let localContext = new ColConstraintContext(this.context, this.state); + this.enterRule(localContext, 288, HiveSqlParser.RULE_colConstraint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2369; + this.state = 2198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2367; + this.state = 2196; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2368; + this.state = 2197; localContext._constraintName = this.id_(); } } - this.state = 2371; + this.state = 2200; this.columnConstraintType(); - this.state = 2373; + this.state = 2202; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 2372; - this.constraintOptsAlter(); + this.state = 2201; + this.constraintOpts(); } break; } @@ -11480,33 +10753,53 @@ export class HiveSqlParser extends SQLParserBase { } public columnConstraintType(): ColumnConstraintTypeContext { let localContext = new ColumnConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 334, HiveSqlParser.RULE_columnConstraintType); + this.enterRule(localContext, 290, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2381; + this.state = 2214; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2375; + this.state = 2204; this.match(HiveSqlParser.KW_NOT); - this.state = 2376; + this.state = 2205; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2377; + this.state = 2206; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 2378; - this.defaultVal(); + this.state = 2210; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + case 1: + { + this.state = 2207; + this.constant(); + } + break; + case 2: + { + this.state = 2208; + this.function_(); + } + break; + case 3: + { + this.state = 2209; + this.castExpression(); + } + break; + } } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2379; + this.state = 2212; this.checkConstraint(); } break; @@ -11514,7 +10807,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2380; + this.state = 2213; this.tableConstraintType(); } break; @@ -11536,70 +10829,26 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public defaultVal(): DefaultValContext { - let localContext = new DefaultValContext(this.context, this.state); - this.enterRule(localContext, 336, HiveSqlParser.RULE_defaultVal); - try { - this.state = 2386; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2383; - this.constant(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2384; - this.function_(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 2385; - this.castExpression(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public tableConstraintType(): TableConstraintTypeContext { let localContext = new TableConstraintTypeContext(this.context, this.state); - this.enterRule(localContext, 338, HiveSqlParser.RULE_tableConstraintType); + this.enterRule(localContext, 292, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2391; + this.state = 2219; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2388; + this.state = 2216; this.match(HiveSqlParser.KW_PRIMARY); - this.state = 2389; + this.state = 2217; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2390; + this.state = 2218; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11621,57 +10870,29 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public constraintOptsCreate(): ConstraintOptsCreateContext { - let localContext = new ConstraintOptsCreateContext(this.context, this.state); - this.enterRule(localContext, 340, HiveSqlParser.RULE_constraintOptsCreate); + public constraintOpts(): ConstraintOptsContext { + let localContext = new ConstraintOptsContext(this.context, this.state); + this.enterRule(localContext, 294, HiveSqlParser.RULE_constraintOpts); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2393; + this.state = 2221; this.enableValidateSpecification(); - this.state = 2395; + this.state = 2223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2394; - this.relySpecification(); + this.state = 2222; + _la = this.tokenStream.LA(1); + if(!(_la === 214 || _la === 272)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); } - } - - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public constraintOptsAlter(): ConstraintOptsAlterContext { - let localContext = new ConstraintOptsAlterContext(this.context, this.state); - this.enterRule(localContext, 342, HiveSqlParser.RULE_constraintOptsAlter); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2397; - this.enableValidateSpecification(); - this.state = 2399; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 214 || _la === 272) { - { - this.state = 2398; - this.relySpecification(); } } @@ -11693,25 +10914,25 @@ export class HiveSqlParser extends SQLParserBase { } public columnNameColonType(): ColumnNameColonTypeContext { let localContext = new ColumnNameColonTypeContext(this.context, this.state); - this.enterRule(localContext, 344, HiveSqlParser.RULE_columnNameColonType); + this.enterRule(localContext, 296, HiveSqlParser.RULE_columnNameColonType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2401; + this.state = 2225; localContext._colName = this.columnNameCreate(); - this.state = 2402; + this.state = 2226; this.match(HiveSqlParser.COLON); - this.state = 2403; - this.columnType(); - this.state = 2406; + this.state = 2227; + this.type_(); + this.state = 2230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2404; + this.state = 2228; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2405; + this.state = 2229; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11732,52 +10953,28 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public columnType(): ColumnTypeContext { - let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 346, HiveSqlParser.RULE_columnType); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2408; - this.type_(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public columnTypeList(): ColumnTypeListContext { - let localContext = new ColumnTypeListContext(this.context, this.state); - this.enterRule(localContext, 348, HiveSqlParser.RULE_columnTypeList); + public typeList(): TypeListContext { + let localContext = new TypeListContext(this.context, this.state); + this.enterRule(localContext, 298, HiveSqlParser.RULE_typeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2410; - this.columnType(); - this.state = 2415; + this.state = 2232; + this.type_(); + this.state = 2237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2411; + this.state = 2233; this.match(HiveSqlParser.COMMA); - this.state = 2412; - this.columnType(); + this.state = 2234; + this.type_(); } } - this.state = 2417; + this.state = 2239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11799,9 +10996,9 @@ export class HiveSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 350, HiveSqlParser.RULE_type); + this.enterRule(localContext, 300, HiveSqlParser.RULE_type); try { - this.state = 2423; + this.state = 2245; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11826,35 +11023,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2418; + this.state = 2240; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2419; + this.state = 2241; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2420; + this.state = 2242; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2421; + this.state = 2243; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2422; + this.state = 2244; this.unionType(); } break; @@ -11878,79 +11075,79 @@ export class HiveSqlParser extends SQLParserBase { } public primitiveType(): PrimitiveTypeContext { let localContext = new PrimitiveTypeContext(this.context, this.state); - this.enterRule(localContext, 352, HiveSqlParser.RULE_primitiveType); + this.enterRule(localContext, 302, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2462; + this.state = 2284; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2425; + this.state = 2247; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2426; + this.state = 2248; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2427; + this.state = 2249; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2428; + this.state = 2250; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2429; + this.state = 2251; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2430; + this.state = 2252; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2431; + this.state = 2253; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2432; + this.state = 2254; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2433; + this.state = 2255; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2435; + this.state = 2257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 248) { { - this.state = 2434; + this.state = 2256; this.match(HiveSqlParser.KW_PRECISION); } } @@ -11960,87 +11157,94 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2437; + this.state = 2259; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2438; + this.state = 2260; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2439; + this.state = 2261; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2440; + this.state = 2262; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2441; + this.state = 2263; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 2442; + this.state = 2264; this.match(HiveSqlParser.KW_WITH); - this.state = 2443; + this.state = 2265; this.match(HiveSqlParser.KW_LOCAL); - this.state = 2444; + this.state = 2266; this.match(HiveSqlParser.KW_TIME); - this.state = 2445; + this.state = 2267; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2446; + this.state = 2268; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2447; + this.state = 2269; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2448; - this.decimal(); - this.state = 2456; + this.state = 2270; + _la = this.tokenStream.LA(1); + if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 2278; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2449; + this.state = 2271; this.match(HiveSqlParser.LPAREN); - this.state = 2450; + this.state = 2272; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2453; + this.state = 2275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 2451; + this.state = 2273; this.match(HiveSqlParser.COMMA); - this.state = 2452; + this.state = 2274; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2455; + this.state = 2277; this.match(HiveSqlParser.RPAREN); } break; @@ -12050,7 +11254,7 @@ export class HiveSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2458; + this.state = 2280; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 376)) { this.errorHandler.recoverInline(this); @@ -12059,11 +11263,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2459; + this.state = 2281; this.match(HiveSqlParser.LPAREN); - this.state = 2460; + this.state = 2282; localContext._length = this.match(HiveSqlParser.Number); - this.state = 2461; + this.state = 2283; this.match(HiveSqlParser.RPAREN); } break; @@ -12085,17 +11289,17 @@ export class HiveSqlParser extends SQLParserBase { } public listType(): ListTypeContext { let localContext = new ListTypeContext(this.context, this.state); - this.enterRule(localContext, 354, HiveSqlParser.RULE_listType); + this.enterRule(localContext, 304, HiveSqlParser.RULE_listType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2464; + this.state = 2286; this.match(HiveSqlParser.KW_ARRAY); - this.state = 2465; + this.state = 2287; this.match(HiveSqlParser.LESSTHAN); - this.state = 2466; + this.state = 2288; this.type_(); - this.state = 2467; + this.state = 2289; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12115,17 +11319,17 @@ export class HiveSqlParser extends SQLParserBase { } public structType(): StructTypeContext { let localContext = new StructTypeContext(this.context, this.state); - this.enterRule(localContext, 356, HiveSqlParser.RULE_structType); + this.enterRule(localContext, 306, HiveSqlParser.RULE_structType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2469; + this.state = 2291; this.match(HiveSqlParser.KW_STRUCT); - this.state = 2470; + this.state = 2292; this.match(HiveSqlParser.LESSTHAN); - this.state = 2471; + this.state = 2293; this.columnNameColonTypeList(); - this.state = 2472; + this.state = 2294; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12145,21 +11349,21 @@ export class HiveSqlParser extends SQLParserBase { } public mapType(): MapTypeContext { let localContext = new MapTypeContext(this.context, this.state); - this.enterRule(localContext, 358, HiveSqlParser.RULE_mapType); + this.enterRule(localContext, 308, HiveSqlParser.RULE_mapType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2474; + this.state = 2296; this.match(HiveSqlParser.KW_MAP); - this.state = 2475; + this.state = 2297; this.match(HiveSqlParser.LESSTHAN); - this.state = 2476; + this.state = 2298; localContext._left = this.primitiveType(); - this.state = 2477; + this.state = 2299; this.match(HiveSqlParser.COMMA); - this.state = 2478; + this.state = 2300; localContext._right = this.type_(); - this.state = 2479; + this.state = 2301; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12179,17 +11383,17 @@ export class HiveSqlParser extends SQLParserBase { } public unionType(): UnionTypeContext { let localContext = new UnionTypeContext(this.context, this.state); - this.enterRule(localContext, 360, HiveSqlParser.RULE_unionType); + this.enterRule(localContext, 310, HiveSqlParser.RULE_unionType); try { this.enterOuterAlt(localContext, 1); { - this.state = 2481; + this.state = 2303; this.match(HiveSqlParser.KW_UNIONTYPE); - this.state = 2482; + this.state = 2304; this.match(HiveSqlParser.LESSTHAN); - this.state = 2483; - this.columnTypeList(); - this.state = 2484; + this.state = 2305; + this.typeList(); + this.state = 2306; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12209,12 +11413,12 @@ export class HiveSqlParser extends SQLParserBase { } public setOperator(): SetOperatorContext { let localContext = new SetOperatorContext(this.context, this.state); - this.enterRule(localContext, 362, HiveSqlParser.RULE_setOperator); + this.enterRule(localContext, 312, HiveSqlParser.RULE_setOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2486; + this.state = 2308; _la = this.tokenStream.LA(1); if(!(_la === 112 || _la === 164 || _la === 205 || _la === 356)) { this.errorHandler.recoverInline(this); @@ -12223,12 +11427,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2488; + this.state = 2310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2487; + this.state = 2309; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -12258,22 +11462,22 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpression(): QueryStatementExpressionContext { let localContext = new QueryStatementExpressionContext(this.context, this.state); - this.enterRule(localContext, 364, HiveSqlParser.RULE_queryStatementExpression); + this.enterRule(localContext, 314, HiveSqlParser.RULE_queryStatementExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2491; + this.state = 2313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2490; + this.state = 2312; localContext._w = this.withClause(); } } - this.state = 2493; + this.state = 2315; this.queryStatementExpressionBody(); } } @@ -12293,15 +11497,15 @@ export class HiveSqlParser extends SQLParserBase { } public queryStatementExpressionBody(): QueryStatementExpressionBodyContext { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); - this.enterRule(localContext, 366, HiveSqlParser.RULE_queryStatementExpressionBody); + this.enterRule(localContext, 316, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2497; + this.state = 2319; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2495; + this.state = 2317; this.fromStatement(); } break; @@ -12313,7 +11517,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2496; + this.state = 2318; this.regularBody(); } break; @@ -12337,28 +11541,28 @@ export class HiveSqlParser extends SQLParserBase { } public withClause(): WithClauseContext { let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 368, HiveSqlParser.RULE_withClause); + this.enterRule(localContext, 318, HiveSqlParser.RULE_withClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2499; + this.state = 2321; this.match(HiveSqlParser.KW_WITH); - this.state = 2500; + this.state = 2322; this.cteStatement(); - this.state = 2505; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2501; + this.state = 2323; this.match(HiveSqlParser.COMMA); - this.state = 2502; + this.state = 2324; this.cteStatement(); } } - this.state = 2507; + this.state = 2329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12380,34 +11584,34 @@ export class HiveSqlParser extends SQLParserBase { } public cteStatement(): CteStatementContext { let localContext = new CteStatementContext(this.context, this.state); - this.enterRule(localContext, 370, HiveSqlParser.RULE_cteStatement); + this.enterRule(localContext, 320, HiveSqlParser.RULE_cteStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2508; + this.state = 2330; this.id_(); - this.state = 2513; + this.state = 2335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2509; + this.state = 2331; this.match(HiveSqlParser.LPAREN); - this.state = 2510; + this.state = 2332; localContext._colAliases = this.columnNameList(); - this.state = 2511; + this.state = 2333; this.match(HiveSqlParser.RPAREN); } } - this.state = 2515; + this.state = 2337; this.match(HiveSqlParser.KW_AS); - this.state = 2516; + this.state = 2338; this.match(HiveSqlParser.LPAREN); - this.state = 2517; + this.state = 2339; this.queryStatementExpression(); - this.state = 2518; + this.state = 2340; this.match(HiveSqlParser.RPAREN); } } @@ -12427,26 +11631,26 @@ export class HiveSqlParser extends SQLParserBase { } public fromStatement(): FromStatementContext { let localContext = new FromStatementContext(this.context, this.state); - this.enterRule(localContext, 372, HiveSqlParser.RULE_fromStatement); + this.enterRule(localContext, 322, HiveSqlParser.RULE_fromStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2520; + this.state = 2342; this.singleFromStatement(); - this.state = 2526; + this.state = 2348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { { - this.state = 2521; + this.state = 2343; localContext._u = this.setOperator(); - this.state = 2522; + this.state = 2344; localContext._r = this.singleFromStatement(); } } - this.state = 2528; + this.state = 2350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12468,128 +11672,128 @@ export class HiveSqlParser extends SQLParserBase { } public singleFromStatement(): SingleFromStatementContext { let localContext = new SingleFromStatementContext(this.context, this.state); - this.enterRule(localContext, 374, HiveSqlParser.RULE_singleFromStatement); + this.enterRule(localContext, 324, HiveSqlParser.RULE_singleFromStatement); let _la: number; try { - this.state = 2600; + this.state = 2422; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: localContext = new FromInsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2529; + this.state = 2351; this.fromClause(); - this.state = 2530; + this.state = 2352; this.insertClause(); - this.state = 2531; + this.state = 2353; this.selectClause(); - this.state = 2533; + this.state = 2355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2532; + this.state = 2354; this.lateralView(); } } - this.state = 2536; + this.state = 2358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2535; + this.state = 2357; this.whereClause(); } } - this.state = 2539; + this.state = 2361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2538; + this.state = 2360; this.groupByClause(); } } - this.state = 2542; + this.state = 2364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2541; + this.state = 2363; this.havingClause(); } } - this.state = 2545; + this.state = 2367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2544; + this.state = 2366; this.window_clause(); } } - this.state = 2548; + this.state = 2370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2547; + this.state = 2369; this.qualifyClause(); } } - this.state = 2551; + this.state = 2373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2550; + this.state = 2372; this.orderByClause(); } } - this.state = 2554; + this.state = 2376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2553; + this.state = 2375; this.clusterByClause(); } } - this.state = 2557; + this.state = 2379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2556; + this.state = 2378; this.distributeByClause(); } } - this.state = 2560; + this.state = 2382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2559; + this.state = 2381; this.sortByClause(); } } - this.state = 2563; + this.state = 2385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2562; + this.state = 2384; this.limitClause(); } } @@ -12600,116 +11804,116 @@ export class HiveSqlParser extends SQLParserBase { localContext = new FromSelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2565; + this.state = 2387; this.fromClause(); - this.state = 2566; + this.state = 2388; this.selectClause(); - this.state = 2568; + this.state = 2390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2567; + this.state = 2389; this.lateralView(); } } - this.state = 2571; + this.state = 2393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2570; + this.state = 2392; this.whereClause(); } } - this.state = 2574; + this.state = 2396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2573; + this.state = 2395; this.groupByClause(); } } - this.state = 2577; + this.state = 2399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2576; + this.state = 2398; this.havingClause(); } } - this.state = 2580; + this.state = 2402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2579; + this.state = 2401; this.window_clause(); } } - this.state = 2583; + this.state = 2405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2582; + this.state = 2404; this.qualifyClause(); } } - this.state = 2586; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2585; + this.state = 2407; this.orderByClause(); } } - this.state = 2589; + this.state = 2411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2588; + this.state = 2410; this.clusterByClause(); } } - this.state = 2592; + this.state = 2414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2591; + this.state = 2413; this.distributeByClause(); } } - this.state = 2595; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2594; + this.state = 2416; this.sortByClause(); } } - this.state = 2598; + this.state = 2420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2597; + this.state = 2419; this.limitClause(); } } @@ -12734,18 +11938,18 @@ export class HiveSqlParser extends SQLParserBase { } public regularBody(): RegularBodyContext { let localContext = new RegularBodyContext(this.context, this.state); - this.enterRule(localContext, 376, HiveSqlParser.RULE_regularBody); + this.enterRule(localContext, 326, HiveSqlParser.RULE_regularBody); try { - this.state = 2606; + this.state = 2428; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2602; + this.state = 2424; (localContext as InsertStmtContext)._i = this.insertClause(); - this.state = 2603; + this.state = 2425; (localContext as InsertStmtContext)._s = this.selectStatement(); } break; @@ -12757,7 +11961,7 @@ export class HiveSqlParser extends SQLParserBase { localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2605; + this.state = 2427; this.selectStatement(); } break; @@ -12781,10 +11985,10 @@ export class HiveSqlParser extends SQLParserBase { } public atomSelectStatement(): AtomSelectStatementContext { let localContext = new AtomSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 378, HiveSqlParser.RULE_atomSelectStatement); + this.enterRule(localContext, 328, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2632; + this.state = 2454; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12792,64 +11996,64 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2608; + this.state = 2430; localContext._s = this.selectClause(); - this.state = 2610; + this.state = 2432; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2609; + this.state = 2431; localContext._f = this.fromClause(); } break; } - this.state = 2613; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2612; + this.state = 2434; localContext._w = this.whereClause(); } } - this.state = 2616; + this.state = 2438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2615; + this.state = 2437; localContext._g = this.groupByClause(); } } - this.state = 2619; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2618; + this.state = 2440; localContext._h = this.havingClause(); } } - this.state = 2622; + this.state = 2444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2621; + this.state = 2443; localContext._win = this.window_clause(); } } - this.state = 2625; + this.state = 2447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2624; + this.state = 2446; localContext._q = this.qualifyClause(); } } @@ -12859,18 +12063,18 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2627; + this.state = 2449; this.match(HiveSqlParser.LPAREN); - this.state = 2628; + this.state = 2450; this.selectStatement(); - this.state = 2629; + this.state = 2451; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2631; + this.state = 2453; this.valuesClause(); } break; @@ -12894,69 +12098,69 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatement(): SelectStatementContext { let localContext = new SelectStatementContext(this.context, this.state); - this.enterRule(localContext, 380, HiveSqlParser.RULE_selectStatement); + this.enterRule(localContext, 330, HiveSqlParser.RULE_selectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2634; + this.state = 2456; localContext._a = this.atomSelectStatement(); - this.state = 2636; + this.state = 2458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { - this.state = 2635; + this.state = 2457; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2639; + this.state = 2461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2638; + this.state = 2460; localContext._o = this.orderByClause(); } } - this.state = 2642; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2641; + this.state = 2463; localContext._c = this.clusterByClause(); } } - this.state = 2645; + this.state = 2467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2644; + this.state = 2466; localContext._d = this.distributeByClause(); } } - this.state = 2648; + this.state = 2470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2647; + this.state = 2469; localContext._sort = this.sortByClause(); } } - this.state = 2651; + this.state = 2473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2650; + this.state = 2472; localContext._l = this.limitClause(); } } @@ -12979,24 +12183,24 @@ export class HiveSqlParser extends SQLParserBase { } public setOpSelectStatement(): SetOpSelectStatementContext { let localContext = new SetOpSelectStatementContext(this.context, this.state); - this.enterRule(localContext, 382, HiveSqlParser.RULE_setOpSelectStatement); + this.enterRule(localContext, 332, HiveSqlParser.RULE_setOpSelectStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2656; + this.state = 2478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2653; + this.state = 2475; localContext._u = this.setOperator(); - this.state = 2654; + this.state = 2476; localContext._b = this.atomSelectStatement(); } } - this.state = 2658; + this.state = 2480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 112 || _la === 164 || _la === 205 || _la === 356); @@ -13018,22 +12222,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectStatementWithCTE(): SelectStatementWithCTEContext { let localContext = new SelectStatementWithCTEContext(this.context, this.state); - this.enterRule(localContext, 384, HiveSqlParser.RULE_selectStatementWithCTE); + this.enterRule(localContext, 334, HiveSqlParser.RULE_selectStatementWithCTE); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2661; + this.state = 2483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2660; + this.state = 2482; localContext._w = this.withClause(); } } - this.state = 2663; + this.state = 2485; this.selectStatement(); } } @@ -13053,28 +12257,28 @@ export class HiveSqlParser extends SQLParserBase { } public insertClause(): InsertClauseContext { let localContext = new InsertClauseContext(this.context, this.state); - this.enterRule(localContext, 386, HiveSqlParser.RULE_insertClause); + this.enterRule(localContext, 336, HiveSqlParser.RULE_insertClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2665; + this.state = 2487; this.match(HiveSqlParser.KW_INSERT); - this.state = 2682; + this.state = 2504; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 2666; + this.state = 2488; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2667; + this.state = 2489; this.destination(); - this.state = 2669; + this.state = 2491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2668; + this.state = 2490; this.ifNotExists(); } } @@ -13083,30 +12287,30 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_INTO: { - this.state = 2671; + this.state = 2493; this.match(HiveSqlParser.KW_INTO); - this.state = 2673; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 2672; + this.state = 2494; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 2675; + this.state = 2497; this.tableOrPartition(); - this.state = 2680; + this.state = 2502; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2676; + this.state = 2498; this.match(HiveSqlParser.LPAREN); - this.state = 2677; + this.state = 2499; localContext._targetCols = this.columnNameList(); - this.state = 2678; + this.state = 2500; this.match(HiveSqlParser.RPAREN); } break; @@ -13134,46 +12338,46 @@ export class HiveSqlParser extends SQLParserBase { } public destination(): DestinationContext { let localContext = new DestinationContext(this.context, this.state); - this.enterRule(localContext, 388, HiveSqlParser.RULE_destination); + this.enterRule(localContext, 338, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 2697; + this.state = 2519; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 2685; + this.state = 2507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2684; + this.state = 2506; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 2687; + this.state = 2509; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 2688; + this.state = 2510; this.match(HiveSqlParser.StringLiteral); - this.state = 2690; + this.state = 2512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 2689; - this.tableRowFormat(); + this.state = 2511; + this.rowFormat(); } } - this.state = 2693; + this.state = 2515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2692; + this.state = 2514; this.tableFileFormat(); } } @@ -13183,9 +12387,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2695; + this.state = 2517; this.match(HiveSqlParser.KW_TABLE); - this.state = 2696; + this.state = 2518; this.tableOrPartition(); } break; @@ -13209,40 +12413,40 @@ export class HiveSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 390, HiveSqlParser.RULE_limitClause); + this.enterRule(localContext, 340, HiveSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2521; this.match(HiveSqlParser.KW_LIMIT); - this.state = 2708; + this.state = 2530; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2702; + this.state = 2524; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2700; + this.state = 2522; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 2701; + this.state = 2523; this.match(HiveSqlParser.COMMA); } break; } - this.state = 2704; + this.state = 2526; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 2705; + this.state = 2527; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2706; + this.state = 2528; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2707; + this.state = 2529; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -13265,15 +12469,15 @@ export class HiveSqlParser extends SQLParserBase { } public columnAssignmentClause(): ColumnAssignmentClauseContext { let localContext = new ColumnAssignmentClauseContext(this.context, this.state); - this.enterRule(localContext, 392, HiveSqlParser.RULE_columnAssignmentClause); + this.enterRule(localContext, 342, HiveSqlParser.RULE_columnAssignmentClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2710; + this.state = 2532; this.columnName(); - this.state = 2711; + this.state = 2533; this.match(HiveSqlParser.EQUAL); - this.state = 2712; + this.state = 2534; this.precedencePlusExpressionOrDefault(); } } @@ -13293,22 +12497,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpressionOrDefault(): PrecedencePlusExpressionOrDefaultContext { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 394, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); + this.enterRule(localContext, 344, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 2716; + this.state = 2538; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2714; + this.state = 2536; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2715; + this.state = 2537; this.precedencePlusExpression(); } break; @@ -13330,28 +12534,28 @@ export class HiveSqlParser extends SQLParserBase { } public setColumnsClause(): SetColumnsClauseContext { let localContext = new SetColumnsClauseContext(this.context, this.state); - this.enterRule(localContext, 396, HiveSqlParser.RULE_setColumnsClause); + this.enterRule(localContext, 346, HiveSqlParser.RULE_setColumnsClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2718; + this.state = 2540; this.match(HiveSqlParser.KW_SET); - this.state = 2719; + this.state = 2541; this.columnAssignmentClause(); - this.state = 2724; + this.state = 2546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2720; + this.state = 2542; this.match(HiveSqlParser.COMMA); - this.state = 2721; + this.state = 2543; this.columnAssignmentClause(); } } - this.state = 2726; + this.state = 2548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13373,39 +12577,39 @@ export class HiveSqlParser extends SQLParserBase { } public sqlTransactionStatement(): SqlTransactionStatementContext { let localContext = new SqlTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 398, HiveSqlParser.RULE_sqlTransactionStatement); + this.enterRule(localContext, 348, HiveSqlParser.RULE_sqlTransactionStatement); let _la: number; try { - this.state = 2750; + this.state = 2572; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 2727; + this.state = 2549; this.match(HiveSqlParser.KW_START); - this.state = 2728; + this.state = 2550; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 2737; + this.state = 2559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168 || _la === 261) { { - this.state = 2729; + this.state = 2551; this.transactionMode(); - this.state = 2734; + this.state = 2556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2730; + this.state = 2552; this.match(HiveSqlParser.COMMA); - this.state = 2731; + this.state = 2553; this.transactionMode(); } } - this.state = 2736; + this.state = 2558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13417,14 +12621,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 2739; + this.state = 2561; this.match(HiveSqlParser.KW_COMMIT); - this.state = 2741; + this.state = 2563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2740; + this.state = 2562; this.match(HiveSqlParser.KW_WORK); } } @@ -13434,14 +12638,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 2743; + this.state = 2565; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 2745; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2744; + this.state = 2566; this.match(HiveSqlParser.KW_WORK); } } @@ -13451,11 +12655,11 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2747; + this.state = 2569; this.match(HiveSqlParser.KW_SET); - this.state = 2748; + this.state = 2570; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 2749; + this.state = 2571; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); @@ -13486,29 +12690,29 @@ export class HiveSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 400, HiveSqlParser.RULE_transactionMode); + this.enterRule(localContext, 350, HiveSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 2757; + this.state = 2579; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 2752; + this.state = 2574; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 2753; + this.state = 2575; this.match(HiveSqlParser.KW_LEVEL); - this.state = 2754; + this.state = 2576; this.match(HiveSqlParser.KW_SNAPSHOT); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 2755; + this.state = 2577; this.match(HiveSqlParser.KW_READ); - this.state = 2756; + this.state = 2578; _la = this.tokenStream.LA(1); if(!(_la === 225 || _la === 391)) { this.errorHandler.recoverInline(this); @@ -13539,46 +12743,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenClauses(): WhenClausesContext { let localContext = new WhenClausesContext(this.context, this.state); - this.enterRule(localContext, 402, HiveSqlParser.RULE_whenClauses); + this.enterRule(localContext, 352, HiveSqlParser.RULE_whenClauses); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2763; + this.state = 2585; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 319, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2761; + this.state = 2583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2759; + this.state = 2581; this.whenMatchedAndClause(); } break; case 2: { - this.state = 2760; + this.state = 2582; this.whenMatchedThenClause(); } break; } } } - this.state = 2765; + this.state = 2587; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 319, this.context); } - this.state = 2767; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 2766; + this.state = 2588; this.whenNotMatchedClause(); } } @@ -13601,46 +12805,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenNotMatchedClause(): WhenNotMatchedClauseContext { let localContext = new WhenNotMatchedClauseContext(this.context, this.state); - this.enterRule(localContext, 404, HiveSqlParser.RULE_whenNotMatchedClause); + this.enterRule(localContext, 354, HiveSqlParser.RULE_whenNotMatchedClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2591; this.match(HiveSqlParser.KW_WHEN); - this.state = 2770; + this.state = 2592; this.match(HiveSqlParser.KW_NOT); - this.state = 2771; + this.state = 2593; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2774; + this.state = 2596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2772; + this.state = 2594; this.match(HiveSqlParser.KW_AND); - this.state = 2773; + this.state = 2595; this.expression(); } } - this.state = 2776; + this.state = 2598; this.match(HiveSqlParser.KW_THEN); - this.state = 2777; + this.state = 2599; this.match(HiveSqlParser.KW_INSERT); - this.state = 2779; + this.state = 2601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2778; + this.state = 2600; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 2781; + this.state = 2603; this.match(HiveSqlParser.KW_VALUES); - this.state = 2782; + this.state = 2604; this.expressionsInParenthesis(); } } @@ -13660,34 +12864,34 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedAndClause(): WhenMatchedAndClauseContext { let localContext = new WhenMatchedAndClauseContext(this.context, this.state); - this.enterRule(localContext, 406, HiveSqlParser.RULE_whenMatchedAndClause); + this.enterRule(localContext, 356, HiveSqlParser.RULE_whenMatchedAndClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2784; + this.state = 2606; this.match(HiveSqlParser.KW_WHEN); - this.state = 2785; + this.state = 2607; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2786; + this.state = 2608; this.match(HiveSqlParser.KW_AND); - this.state = 2787; + this.state = 2609; this.expression(); - this.state = 2788; + this.state = 2610; this.match(HiveSqlParser.KW_THEN); - this.state = 2792; + this.state = 2614; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2789; + this.state = 2611; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2790; + this.state = 2612; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2791; + this.state = 2613; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13712,30 +12916,30 @@ export class HiveSqlParser extends SQLParserBase { } public whenMatchedThenClause(): WhenMatchedThenClauseContext { let localContext = new WhenMatchedThenClauseContext(this.context, this.state); - this.enterRule(localContext, 408, HiveSqlParser.RULE_whenMatchedThenClause); + this.enterRule(localContext, 358, HiveSqlParser.RULE_whenMatchedThenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2794; + this.state = 2616; this.match(HiveSqlParser.KW_WHEN); - this.state = 2795; + this.state = 2617; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2796; + this.state = 2618; this.match(HiveSqlParser.KW_THEN); - this.state = 2800; + this.state = 2622; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2797; + this.state = 2619; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2798; + this.state = 2620; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2799; + this.state = 2621; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13758,154 +12962,76 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public compactionPool(): CompactionPoolContext { - let localContext = new CompactionPoolContext(this.context, this.state); - this.enterRule(localContext, 410, HiveSqlParser.RULE_compactionPool); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2802; - this.match(HiveSqlParser.KW_POOL); - this.state = 2803; - localContext._poolName = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public compactionType(): CompactionTypeContext { - let localContext = new CompactionTypeContext(this.context, this.state); - this.enterRule(localContext, 412, HiveSqlParser.RULE_compactionType); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2805; - this.match(HiveSqlParser.KW_TYPE); - this.state = 2806; - localContext._compactType = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public compactionStatus(): CompactionStatusContext { - let localContext = new CompactionStatusContext(this.context, this.state); - this.enterRule(localContext, 414, HiveSqlParser.RULE_compactionStatus); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2808; - this.match(HiveSqlParser.KW_STATUS); - this.state = 2809; - localContext._status = this.match(HiveSqlParser.StringLiteral); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public alterStatement(): AlterStatementContext { let localContext = new AlterStatementContext(this.context, this.state); - this.enterRule(localContext, 416, HiveSqlParser.RULE_alterStatement); + this.enterRule(localContext, 360, HiveSqlParser.RULE_alterStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2811; + this.state = 2624; this.match(HiveSqlParser.KW_ALTER); - this.state = 2842; + this.state = 2655; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 2812; + this.state = 2625; this.match(HiveSqlParser.KW_TABLE); - this.state = 2813; + this.state = 2626; this.tableName(); - this.state = 2814; + this.state = 2627; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 2816; + this.state = 2629; this.match(HiveSqlParser.KW_VIEW); - this.state = 2817; + this.state = 2630; this.viewName(); - this.state = 2819; + this.state = 2632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2818; + this.state = 2631; this.match(HiveSqlParser.KW_AS); } } - this.state = 2821; + this.state = 2634; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 2823; + this.state = 2636; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2824; + this.state = 2637; this.match(HiveSqlParser.KW_VIEW); - this.state = 2825; + this.state = 2638; localContext._tableNameTree = this.viewName(); - this.state = 2829; + this.state = 2642; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 2826; - localContext._mvRewriteFlag = this.rewriteEnabled(); + this.state = 2639; + this.rewriteEnabled(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 2827; - localContext._mvRewriteFlag2 = this.rewriteDisabled(); + this.state = 2640; + this.rewriteDisabled(); } break; case HiveSqlParser.KW_REBUILD: { - this.state = 2828; + this.state = 2641; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13917,31 +13043,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 2831; + this.state = 2644; this.db_schema(); - this.state = 2832; + this.state = 2645; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 2834; + this.state = 2647; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 2835; + this.state = 2648; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 2836; + this.state = 2649; this.match(HiveSqlParser.KW_INDEX); - this.state = 2837; + this.state = 2650; this.id_(); - this.state = 2838; + this.state = 2651; this.match(HiveSqlParser.KW_ON); - this.state = 2839; + this.state = 2652; this.tableOrPartition(); - this.state = 2840; + this.state = 2653; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13966,75 +13092,75 @@ export class HiveSqlParser extends SQLParserBase { } public alterTableStatementSuffix(): AlterTableStatementSuffixContext { let localContext = new AlterTableStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 418, HiveSqlParser.RULE_alterTableStatementSuffix); + this.enterRule(localContext, 362, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 2933; + this.state = 2746; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2844; + this.state = 2657; this.match(HiveSqlParser.KW_RENAME); - this.state = 2845; + this.state = 2658; this.match(HiveSqlParser.KW_TO); - this.state = 2846; + this.state = 2659; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2847; + this.state = 2660; this.match(HiveSqlParser.KW_RECOVER); - this.state = 2848; + this.state = 2661; this.match(HiveSqlParser.KW_PARTITIONS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2849; + this.state = 2662; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2850; + this.state = 2663; this.match(HiveSqlParser.KW_ADD); - this.state = 2852; + this.state = 2665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2851; + this.state = 2664; this.ifNotExists(); } } - this.state = 2858; + this.state = 2671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2854; + this.state = 2667; this.partitionSpec(); - this.state = 2856; + this.state = 2669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 2855; + this.state = 2668; this.locationPath(); } } } } - this.state = 2860; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14043,19 +13169,19 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2862; + this.state = 2675; this.match(HiveSqlParser.KW_TOUCH); - this.state = 2866; + this.state = 2679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2863; + this.state = 2676; this.partitionSpec(); } } - this.state = 2868; + this.state = 2681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14064,19 +13190,19 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2869; + this.state = 2682; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 2873; + this.state = 2686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2870; + this.state = 2683; this.partitionSpec(); } } - this.state = 2875; + this.state = 2688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14085,19 +13211,19 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2876; + this.state = 2689; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 2880; + this.state = 2693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2877; + this.state = 2690; this.partitionSpec(); } } - this.state = 2882; + this.state = 2695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14106,59 +13232,59 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2883; + this.state = 2696; this.match(HiveSqlParser.KW_SET); - this.state = 2884; + this.state = 2697; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2885; + this.state = 2698; this.tableProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2886; + this.state = 2699; this.match(HiveSqlParser.KW_UNSET); - this.state = 2887; + this.state = 2700; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2889; + this.state = 2702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2888; + this.state = 2701; this.ifExists(); } } - this.state = 2891; + this.state = 2704; this.tableProperties(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2892; + this.state = 2705; this.tableSkewed(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2893; + this.state = 2706; this.match(HiveSqlParser.KW_NOT); - this.state = 2896; + this.state = 2709; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 2894; + this.state = 2707; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 2895; + this.state = 2708; this.storedAsDirs(); } break; @@ -14170,61 +13296,61 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2898; + this.state = 2711; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 2899; + this.state = 2712; this.partitionSpec(); - this.state = 2900; + this.state = 2713; this.match(HiveSqlParser.KW_WITH); - this.state = 2901; + this.state = 2714; this.match(HiveSqlParser.KW_TABLE); - this.state = 2902; + this.state = 2715; localContext._exchangename = this.tableName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2904; + this.state = 2717; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2905; + this.state = 2718; this.match(HiveSqlParser.KW_COLUMN); - this.state = 2906; + this.state = 2719; this.match(HiveSqlParser.LPAREN); - this.state = 2907; + this.state = 2720; this.columnNameType(); - this.state = 2908; + this.state = 2721; this.match(HiveSqlParser.RPAREN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2910; + this.state = 2723; this.match(HiveSqlParser.KW_DROP); - this.state = 2911; + this.state = 2724; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2912; + this.state = 2725; localContext._cName = this.id_(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2913; + this.state = 2726; this.match(HiveSqlParser.KW_ADD); - this.state = 2916; + this.state = 2729; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 2914; + this.state = 2727; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 2915; + this.state = 2728; this.alterConstraintWithName(); } break; @@ -14234,52 +13360,52 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2919; + this.state = 2732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2918; + this.state = 2731; this.partitionSpec(); } } - this.state = 2921; + this.state = 2734; this.alterTblPartitionStatementSuffix(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2922; + this.state = 2735; this.match(HiveSqlParser.KW_SET); - this.state = 2923; + this.state = 2736; this.match(HiveSqlParser.KW_OWNER); - this.state = 2924; + this.state = 2737; this.principalName(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2925; + this.state = 2738; this.match(HiveSqlParser.KW_SET); - this.state = 2926; + this.state = 2739; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2927; + this.state = 2740; this.match(HiveSqlParser.KW_SPEC); - this.state = 2928; + this.state = 2741; this.match(HiveSqlParser.LPAREN); - this.state = 2929; + this.state = 2742; localContext._spec = this.partitionTransformSpec(); - this.state = 2930; + this.state = 2743; this.match(HiveSqlParser.RPAREN); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2932; + this.state = 2745; this.alterStatementSuffixExecute(); } break; @@ -14301,65 +13427,65 @@ export class HiveSqlParser extends SQLParserBase { } public alterTblPartitionStatementSuffix(): AlterTblPartitionStatementSuffixContext { let localContext = new AlterTblPartitionStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 420, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); + this.enterRule(localContext, 364, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); let _la: number; try { - this.state = 3067; + this.state = 2881; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2935; + this.state = 2748; this.match(HiveSqlParser.KW_SET); - this.state = 2936; + this.state = 2749; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 2937; + this.state = 2750; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2938; + this.state = 2751; this.match(HiveSqlParser.KW_SET); - this.state = 2939; + this.state = 2752; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2940; + this.state = 2753; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2941; + this.state = 2754; this.match(HiveSqlParser.KW_CONCATENATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2942; + this.state = 2755; this.match(HiveSqlParser.KW_SET); - this.state = 2952; + this.state = 2765; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 2943; + this.state = 2756; this.match(HiveSqlParser.KW_SERDE); - this.state = 2944; + this.state = 2757; localContext._serdeName = this.match(HiveSqlParser.StringLiteral); - this.state = 2948; + this.state = 2761; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { case 1: { - this.state = 2945; + this.state = 2758; this.match(HiveSqlParser.KW_WITH); - this.state = 2946; + this.state = 2759; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2947; + this.state = 2760; this.tableProperties(); } break; @@ -14368,9 +13494,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 2950; + this.state = 2763; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2951; + this.state = 2764; this.tableProperties(); } break; @@ -14382,75 +13508,75 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2954; + this.state = 2767; this.match(HiveSqlParser.KW_UNSET); - this.state = 2955; + this.state = 2768; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2956; + this.state = 2769; this.tableProperties(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2957; + this.state = 2770; this.match(HiveSqlParser.KW_RENAME); - this.state = 2958; + this.state = 2771; this.match(HiveSqlParser.KW_TO); - this.state = 2959; + this.state = 2772; this.partitionSpec(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2960; + this.state = 2773; this.match(HiveSqlParser.KW_INTO); - this.state = 2961; + this.state = 2774; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2962; + this.state = 2775; this.match(HiveSqlParser.KW_BUCKETS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2963; + this.state = 2776; this.match(HiveSqlParser.KW_SET); - this.state = 2964; + this.state = 2777; this.match(HiveSqlParser.KW_SKEWED); - this.state = 2965; + this.state = 2778; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2966; + this.state = 2779; this.match(HiveSqlParser.LPAREN); - this.state = 2967; + this.state = 2780; this.skewedLocationMap(); - this.state = 2972; + this.state = 2785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2968; + this.state = 2781; this.match(HiveSqlParser.COMMA); - this.state = 2969; + this.state = 2782; this.skewedLocationMap(); } } - this.state = 2974; + this.state = 2787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2975; + this.state = 2788; this.match(HiveSqlParser.RPAREN); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2977; + this.state = 2790; this.match(HiveSqlParser.KW_NOT); - this.state = 2978; + this.state = 2791; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -14464,77 +13590,79 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2979; + this.state = 2792; this.tableBuckets(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2980; + this.state = 2793; this.match(HiveSqlParser.KW_COMPACT); - this.state = 2981; + this.state = 2794; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 2984; + this.state = 2797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2982; + this.state = 2795; this.match(HiveSqlParser.KW_AND); - this.state = 2983; + this.state = 2796; this.match(HiveSqlParser.KW_WAIT); } } - this.state = 2990; + this.state = 2803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2986; + this.state = 2799; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2987; + this.state = 2800; this.match(HiveSqlParser.KW_INTO); - this.state = 2988; + this.state = 2801; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2989; + this.state = 2802; this.match(HiveSqlParser.KW_BUCKETS); } } - this.state = 2993; + this.state = 2806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2992; + this.state = 2805; this.orderByClause(); } } - this.state = 2996; + this.state = 2810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 2995; - this.compactionPool(); + this.state = 2808; + this.match(HiveSqlParser.KW_POOL); + this.state = 2809; + localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3002; + this.state = 2816; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2998; + this.state = 2812; this.match(HiveSqlParser.KW_WITH); - this.state = 2999; + this.state = 2813; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 3000; + this.state = 2814; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3001; + this.state = 2815; this.tableProperties(); } break; @@ -14544,36 +13672,36 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3004; + this.state = 2818; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3005; + this.state = 2819; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3006; + this.state = 2820; this.match(HiveSqlParser.KW_FOR); - this.state = 3008; + this.state = 2822; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: { - this.state = 3007; + this.state = 2821; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3010; + this.state = 2824; localContext._colName = this.columnName(); - this.state = 3011; + this.state = 2825; this.match(HiveSqlParser.KW_SET); - this.state = 3012; + this.state = 2826; this.tableProperties(); - this.state = 3015; + this.state = 2829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3013; + this.state = 2827; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3014; + this.state = 2828; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -14583,73 +13711,73 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3017; + this.state = 2831; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3018; + this.state = 2832; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3019; + this.state = 2833; this.match(HiveSqlParser.KW_SET); - this.state = 3020; + this.state = 2834; this.tableProperties(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3021; + this.state = 2835; this.match(HiveSqlParser.KW_CHANGE); - this.state = 3023; + this.state = 2837; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { case 1: { - this.state = 3022; + this.state = 2836; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3025; + this.state = 2839; localContext._oldName = this.columnName(); - this.state = 3026; + this.state = 2840; localContext._newName = this.columnNameCreate(); - this.state = 3027; - this.columnType(); - this.state = 3029; + this.state = 2841; + this.type_(); + this.state = 2843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 3028; - this.alterColumnConstraint(); + this.state = 2842; + this.columnConstraint(); } } - this.state = 3033; + this.state = 2847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3031; + this.state = 2845; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3032; + this.state = 2846; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3038; + this.state = 2852; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: { - this.state = 3035; + this.state = 2849; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: { - this.state = 3036; + this.state = 2850; this.match(HiveSqlParser.KW_AFTER); - this.state = 3037; + this.state = 2851; localContext._afterCol = this.id_(); } break; @@ -14705,12 +13833,12 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3041; + this.state = 2855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3040; + this.state = 2854; this.restrictOrCascade(); } } @@ -14720,38 +13848,38 @@ export class HiveSqlParser extends SQLParserBase { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3045; + this.state = 2859; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3043; + this.state = 2857; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3044; + this.state = 2858; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3047; + this.state = 2861; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3048; + this.state = 2862; this.match(HiveSqlParser.LPAREN); - this.state = 3049; + this.state = 2863; this.columnNameTypeList(); - this.state = 3050; + this.state = 2864; this.match(HiveSqlParser.RPAREN); - this.state = 3052; + this.state = 2866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3051; + this.state = 2865; this.restrictOrCascade(); } } @@ -14761,16 +13889,16 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3054; + this.state = 2868; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3055; + this.state = 2869; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3057; + this.state = 2871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3056; + this.state = 2870; this.restrictOrCascade(); } } @@ -14780,22 +13908,22 @@ export class HiveSqlParser extends SQLParserBase { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3059; + this.state = 2873; this.enableSpecification(); - this.state = 3065; + this.state = 2879; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NO_DROP: { { - this.state = 3060; + this.state = 2874; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3062; + this.state = 2876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3061; + this.state = 2875; this.match(HiveSqlParser.KW_CASCADE); } } @@ -14805,7 +13933,7 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_OFFLINE: { - this.state = 3064; + this.state = 2878; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -14832,91 +13960,91 @@ export class HiveSqlParser extends SQLParserBase { } public alterViewStatementSuffix(): AlterViewStatementSuffixContext { let localContext = new AlterViewStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 422, HiveSqlParser.RULE_alterViewStatementSuffix); + this.enterRule(localContext, 366, HiveSqlParser.RULE_alterViewStatementSuffix); let _la: number; try { - this.state = 3095; + this.state = 2909; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3069; + this.state = 2883; this.match(HiveSqlParser.KW_SET); - this.state = 3070; + this.state = 2884; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3071; + this.state = 2885; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3072; + this.state = 2886; this.match(HiveSqlParser.KW_UNSET); - this.state = 3073; + this.state = 2887; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3075; + this.state = 2889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3074; + this.state = 2888; this.ifExists(); } } - this.state = 3077; + this.state = 2891; this.tableProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 3); { - this.state = 3078; + this.state = 2892; this.match(HiveSqlParser.KW_RENAME); - this.state = 3079; + this.state = 2893; this.match(HiveSqlParser.KW_TO); - this.state = 3080; + this.state = 2894; this.tableNameCreate(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 4); { - this.state = 3081; + this.state = 2895; this.match(HiveSqlParser.KW_ADD); - this.state = 3083; + this.state = 2897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3082; + this.state = 2896; this.ifNotExists(); } } - this.state = 3089; + this.state = 2903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3085; + this.state = 2899; this.partitionSpec(); - this.state = 3087; + this.state = 2901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3086; + this.state = 2900; this.locationPath(); } } } } - this.state = 3091; + this.state = 2905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14925,7 +14053,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 5); { - this.state = 3093; + this.state = 2907; this.alterStatementSuffixDropPartitions(); } break; @@ -14937,7 +14065,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 6); { - this.state = 3094; + this.state = 2908; this.selectStatementWithCTE(); } break; @@ -14961,46 +14089,46 @@ export class HiveSqlParser extends SQLParserBase { } public alterDatabaseStatementSuffix(): AlterDatabaseStatementSuffixContext { let localContext = new AlterDatabaseStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 424, HiveSqlParser.RULE_alterDatabaseStatementSuffix); + this.enterRule(localContext, 368, HiveSqlParser.RULE_alterDatabaseStatementSuffix); let _la: number; try { - this.state = 3112; + this.state = 2926; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3097; + this.state = 2911; localContext._name = this.dbSchemaName(); - this.state = 3098; + this.state = 2912; this.match(HiveSqlParser.KW_SET); - this.state = 3099; + this.state = 2913; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3100; + this.state = 2914; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3102; + this.state = 2916; localContext._dbName = this.dbSchemaName(); - this.state = 3103; + this.state = 2917; this.match(HiveSqlParser.KW_SET); - this.state = 3104; + this.state = 2918; this.match(HiveSqlParser.KW_OWNER); - this.state = 3105; + this.state = 2919; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3107; + this.state = 2921; localContext._dbName = this.dbSchemaName(); - this.state = 3108; + this.state = 2922; this.match(HiveSqlParser.KW_SET); - this.state = 3109; + this.state = 2923; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 196)) { this.errorHandler.recoverInline(this); @@ -15009,7 +14137,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3110; + this.state = 2924; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } break; @@ -15031,47 +14159,47 @@ export class HiveSqlParser extends SQLParserBase { } public alterDataConnectorStatementSuffix(): AlterDataConnectorStatementSuffixContext { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); - this.enterRule(localContext, 426, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); + this.enterRule(localContext, 370, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3129; + this.state = 2943; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 366, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3114; + this.state = 2928; localContext._name = this.dbSchemaName(); - this.state = 3115; + this.state = 2929; this.match(HiveSqlParser.KW_SET); - this.state = 3116; + this.state = 2930; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3117; + this.state = 2931; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3119; + this.state = 2933; localContext._dcName = this.dbSchemaName(); - this.state = 3120; + this.state = 2934; this.match(HiveSqlParser.KW_SET); - this.state = 3121; + this.state = 2935; this.match(HiveSqlParser.KW_OWNER); - this.state = 3122; + this.state = 2936; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3124; + this.state = 2938; localContext._dcName = this.dbSchemaName(); - this.state = 3125; + this.state = 2939; this.match(HiveSqlParser.KW_SET); - this.state = 3126; + this.state = 2940; this.match(HiveSqlParser.KW_URL); - this.state = 3127; + this.state = 2941; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } break; @@ -15093,13 +14221,13 @@ export class HiveSqlParser extends SQLParserBase { } public locationPath(): LocationPathContext { let localContext = new LocationPathContext(this.context, this.state); - this.enterRule(localContext, 428, HiveSqlParser.RULE_locationPath); + this.enterRule(localContext, 372, HiveSqlParser.RULE_locationPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 3131; + this.state = 2945; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3132; + this.state = 2946; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -15119,73 +14247,73 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixDropPartitions(): AlterStatementSuffixDropPartitionsContext { let localContext = new AlterStatementSuffixDropPartitionsContext(this.context, this.state); - this.enterRule(localContext, 430, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); + this.enterRule(localContext, 374, HiveSqlParser.RULE_alterStatementSuffixDropPartitions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3134; + this.state = 2948; this.match(HiveSqlParser.KW_DROP); - this.state = 3136; + this.state = 2950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3135; + this.state = 2949; this.ifExists(); } } - this.state = 3138; + this.state = 2952; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3139; + this.state = 2953; this.partitionSelectorSpec(); - this.state = 3145; + this.state = 2959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3140; + this.state = 2954; this.match(HiveSqlParser.COMMA); - this.state = 3141; + this.state = 2955; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3142; + this.state = 2956; this.partitionSelectorSpec(); } } - this.state = 3147; + this.state = 2961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3150; + this.state = 2964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3148; + this.state = 2962; this.match(HiveSqlParser.KW_IGNORE); - this.state = 3149; + this.state = 2963; this.match(HiveSqlParser.KW_PROTECTION); } } - this.state = 3153; + this.state = 2967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 3152; + this.state = 2966; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 3156; + this.state = 2970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3155; + this.state = 2969; this.replicationClause(); } } @@ -15208,11 +14336,11 @@ export class HiveSqlParser extends SQLParserBase { } public skewedLocationMap(): SkewedLocationMapContext { let localContext = new SkewedLocationMapContext(this.context, this.state); - this.enterRule(localContext, 432, HiveSqlParser.RULE_skewedLocationMap); + this.enterRule(localContext, 376, HiveSqlParser.RULE_skewedLocationMap); try { this.enterOuterAlt(localContext, 1); { - this.state = 3160; + this.state = 2974; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -15470,22 +14598,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: case HiveSqlParser.CharSetName: { - this.state = 3158; + this.state = 2972; this.constant(); } break; case HiveSqlParser.LPAREN: { - this.state = 3159; + this.state = 2973; this.skewedColumnValuePair(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3162; + this.state = 2976; this.match(HiveSqlParser.EQUAL); - this.state = 3163; + this.state = 2977; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -15505,23 +14633,23 @@ export class HiveSqlParser extends SQLParserBase { } public alterStatementSuffixExecute(): AlterStatementSuffixExecuteContext { let localContext = new AlterStatementSuffixExecuteContext(this.context, this.state); - this.enterRule(localContext, 434, HiveSqlParser.RULE_alterStatementSuffixExecute); + this.enterRule(localContext, 378, HiveSqlParser.RULE_alterStatementSuffixExecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3165; + this.state = 2979; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 3175; + this.state = 2989; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3166; + this.state = 2980; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3167; + this.state = 2981; this.match(HiveSqlParser.LPAREN); - this.state = 3168; + this.state = 2982; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { @@ -15535,28 +14663,28 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3169; + this.state = 2983; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3170; + this.state = 2984; this.match(HiveSqlParser.LPAREN); - this.state = 3171; + this.state = 2985; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3172; + this.state = 2986; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3173; + this.state = 2987; this.match(HiveSqlParser.LPAREN); - this.state = 3174; + this.state = 2988; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3177; + this.state = 2991; this.match(HiveSqlParser.RPAREN); } } @@ -15576,39 +14704,39 @@ export class HiveSqlParser extends SQLParserBase { } public fileFormat(): FileFormatContext { let localContext = new FileFormatContext(this.context, this.state); - this.enterRule(localContext, 436, HiveSqlParser.RULE_fileFormat); + this.enterRule(localContext, 380, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3192; + this.state = 3006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3179; + this.state = 2993; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3180; + this.state = 2994; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3181; + this.state = 2995; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3182; + this.state = 2996; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3183; + this.state = 2997; this.match(HiveSqlParser.KW_SERDE); - this.state = 3184; + this.state = 2998; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - this.state = 3189; + this.state = 3003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3185; + this.state = 2999; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3186; + this.state = 3000; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3187; + this.state = 3001; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3188; + this.state = 3002; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -15618,7 +14746,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3191; + this.state = 3005; localContext._genericSpec = this.id_(); } break; @@ -15640,39 +14768,39 @@ export class HiveSqlParser extends SQLParserBase { } public likeTableOrFile(): LikeTableOrFileContext { let localContext = new LikeTableOrFileContext(this.context, this.state); - this.enterRule(localContext, 438, HiveSqlParser.RULE_likeTableOrFile); + this.enterRule(localContext, 382, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3203; + this.state = 3017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3194; + this.state = 3008; this.match(HiveSqlParser.KW_LIKE); - this.state = 3195; + this.state = 3009; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3196; + this.state = 3010; this.match(HiveSqlParser.KW_LIKE); - this.state = 3197; + this.state = 3011; this.match(HiveSqlParser.KW_FILE); - this.state = 3198; + this.state = 3012; localContext._format = this.id_(); - this.state = 3199; + this.state = 3013; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3201; + this.state = 3015; this.match(HiveSqlParser.KW_LIKE); - this.state = 3202; + this.state = 3016; localContext._likeName = this.tableName(); } break; @@ -15694,570 +14822,314 @@ export class HiveSqlParser extends SQLParserBase { } public createTableStatement(): CreateTableStatementContext { let localContext = new CreateTableStatementContext(this.context, this.state); - this.enterRule(localContext, 440, HiveSqlParser.RULE_createTableStatement); + this.enterRule(localContext, 384, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3340; + this.enterOuterAlt(localContext, 1); + { + this.state = 3019; + this.match(HiveSqlParser.KW_CREATE); + this.state = 3021; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + if (_la === 333) { { - this.state = 3205; - this.match(HiveSqlParser.KW_CREATE); - this.state = 3207; + this.state = 3020; + localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); + } + } + + this.state = 3024; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 345) { + { + this.state = 3023; + localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); + } + } + + this.state = 3027; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 123) { + { + this.state = 3026; + localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); + } + } + + this.state = 3030; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 195) { + { + this.state = 3029; + localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); + } + } + + this.state = 3032; + this.match(HiveSqlParser.KW_TABLE); + this.state = 3034; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 151) { + { + this.state = 3033; + this.ifNotExists(); + } + } + + this.state = 3036; + localContext._name = this.tableNameCreate(); + this.state = 3093; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case HiveSqlParser.KW_LIKE: + { + this.state = 3037; + this.likeTableOrFile(); + this.state = 3039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 333) { + if (_la === 238) { { - this.state = 3206; - localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); + this.state = 3038; + this.createTablePartitionSpec(); } } - this.state = 3210; + this.state = 3042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 345) { + if (_la === 291) { { - this.state = 3209; - localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); + this.state = 3041; + this.rowFormat(); } } - this.state = 3213; + this.state = 3045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 123) { + if (_la === 321) { { - this.state = 3212; - localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); + this.state = 3044; + this.tableFileFormat(); } } - this.state = 3215; - this.match(HiveSqlParser.KW_TABLE); - this.state = 3217; + this.state = 3048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 151) { + if (_la === 189) { { - this.state = 3216; - this.ifNotExists(); + this.state = 3047; + this.locationPath(); } } - this.state = 3219; - localContext._name = this.tableNameCreate(); - this.state = 3276; + this.state = 3051; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case HiveSqlParser.KW_LIKE: + _la = this.tokenStream.LA(1); + if (_la === 332) { { - this.state = 3220; - this.likeTableOrFile(); - this.state = 3222; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 238) { - { - this.state = 3221; - this.createTablePartitionSpec(); - } - } - - this.state = 3225; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 291) { - { - this.state = 3224; - this.tableRowFormat(); - } - } - - this.state = 3228; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 321) { - { - this.state = 3227; - this.tableFileFormat(); - } - } - - this.state = 3231; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 189) { - { - this.state = 3230; - this.locationPath(); - } - } - - this.state = 3234; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 332) { - { - this.state = 3233; - this.tablePropertiesPrefixed(); - } - } - - this.state = 3237; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 183) { - { - this.state = 3236; - this.tableLifecycle(); - } + this.state = 3050; + this.tablePropertiesPrefixed(); } + } - } - break; - case HiveSqlParser.EOF: - case HiveSqlParser.KW_ABORT: - case HiveSqlParser.KW_ALTER: - case HiveSqlParser.KW_ANALYZE: - case HiveSqlParser.KW_AS: - case HiveSqlParser.KW_CLUSTERED: - case HiveSqlParser.KW_COMMENT: - case HiveSqlParser.KW_COMMIT: - case HiveSqlParser.KW_CREATE: - case HiveSqlParser.KW_DELETE: - case HiveSqlParser.KW_DESC: - case HiveSqlParser.KW_DESCRIBE: - case HiveSqlParser.KW_DISABLE: - case HiveSqlParser.KW_DISABLED: - case HiveSqlParser.KW_DROP: - case HiveSqlParser.KW_ENABLE: - case HiveSqlParser.KW_ENABLED: - case HiveSqlParser.KW_EXECUTE: - case HiveSqlParser.KW_EXPLAIN: - case HiveSqlParser.KW_EXPORT: - case HiveSqlParser.KW_FROM: - case HiveSqlParser.KW_GRANT: - case HiveSqlParser.KW_IMPORT: - case HiveSqlParser.KW_INSERT: - case HiveSqlParser.KW_KILL: - case HiveSqlParser.KW_LIFECYCLE: - case HiveSqlParser.KW_LOAD: - case HiveSqlParser.KW_LOCATION: - case HiveSqlParser.KW_LOCK: - case HiveSqlParser.KW_MAP: - case HiveSqlParser.KW_MERGE: - case HiveSqlParser.KW_MSCK: - case HiveSqlParser.KW_PARTITIONED: - case HiveSqlParser.KW_PREPARE: - case HiveSqlParser.KW_REDUCE: - case HiveSqlParser.KW_RELOAD: - case HiveSqlParser.KW_REPL: - case HiveSqlParser.KW_REPLACE: - case HiveSqlParser.KW_REVOKE: - case HiveSqlParser.KW_ROLLBACK: - case HiveSqlParser.KW_ROW: - case HiveSqlParser.KW_SELECT: - case HiveSqlParser.KW_SET: - case HiveSqlParser.KW_SHOW: - case HiveSqlParser.KW_SKEWED: - case HiveSqlParser.KW_START: - case HiveSqlParser.KW_STORED: - case HiveSqlParser.KW_TBLPROPERTIES: - case HiveSqlParser.KW_TRUNCATE: - case HiveSqlParser.KW_UNLOCK: - case HiveSqlParser.KW_UPDATE: - case HiveSqlParser.KW_USE: - case HiveSqlParser.KW_VALUES: - case HiveSqlParser.KW_WITH: - case HiveSqlParser.SEMICOLON: - case HiveSqlParser.LPAREN: + this.state = 3054; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 183) { { - this.state = 3243; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { - case 1: - { - this.state = 3239; - this.match(HiveSqlParser.LPAREN); - this.state = 3240; - this.columnNameTypeOrConstraintList(); - this.state = 3241; - this.match(HiveSqlParser.RPAREN); - } - break; - } - this.state = 3246; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 47) { - { - this.state = 3245; - this.tableComment(); - } - } - - this.state = 3249; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 238) { - { - this.state = 3248; - this.createTablePartitionSpec(); - } - } - - this.state = 3252; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 42) { - { - this.state = 3251; - this.tableBuckets(); - } - } - - this.state = 3255; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 310) { - { - this.state = 3254; - this.tableSkewed(); - } - } - - this.state = 3258; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 291) { - { - this.state = 3257; - this.tableRowFormat(); - } - } - - this.state = 3261; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 321) { - { - this.state = 3260; - this.tableFileFormat(); - } - } - - this.state = 3264; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 189) { - { - this.state = 3263; - this.locationPath(); - } - } - - this.state = 3267; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 332) { - { - this.state = 3266; - this.tablePropertiesPrefixed(); - } - } - - this.state = 3270; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 183) { - { - this.state = 3269; - this.tableLifecycle(); - } - } - - this.state = 3274; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 17) { - { - this.state = 3272; - this.match(HiveSqlParser.KW_AS); - this.state = 3273; - this.selectStatementWithCTE(); - } - } - + this.state = 3053; + this.tableLifecycle(); } - break; - default: - throw new antlr.NoViableAltException(this); } + } break; - case 2: - this.enterOuterAlt(localContext, 2); + case HiveSqlParser.EOF: + case HiveSqlParser.KW_ABORT: + case HiveSqlParser.KW_ALTER: + case HiveSqlParser.KW_ANALYZE: + case HiveSqlParser.KW_AS: + case HiveSqlParser.KW_CLUSTERED: + case HiveSqlParser.KW_COMMENT: + case HiveSqlParser.KW_COMMIT: + case HiveSqlParser.KW_CREATE: + case HiveSqlParser.KW_DELETE: + case HiveSqlParser.KW_DESC: + case HiveSqlParser.KW_DESCRIBE: + case HiveSqlParser.KW_DISABLE: + case HiveSqlParser.KW_DISABLED: + case HiveSqlParser.KW_DROP: + case HiveSqlParser.KW_ENABLE: + case HiveSqlParser.KW_ENABLED: + case HiveSqlParser.KW_EXECUTE: + case HiveSqlParser.KW_EXPLAIN: + case HiveSqlParser.KW_EXPORT: + case HiveSqlParser.KW_FROM: + case HiveSqlParser.KW_GRANT: + case HiveSqlParser.KW_IMPORT: + case HiveSqlParser.KW_INSERT: + case HiveSqlParser.KW_KILL: + case HiveSqlParser.KW_LIFECYCLE: + case HiveSqlParser.KW_LOAD: + case HiveSqlParser.KW_LOCATION: + case HiveSqlParser.KW_LOCK: + case HiveSqlParser.KW_MAP: + case HiveSqlParser.KW_MERGE: + case HiveSqlParser.KW_MSCK: + case HiveSqlParser.KW_PARTITIONED: + case HiveSqlParser.KW_PREPARE: + case HiveSqlParser.KW_REDUCE: + case HiveSqlParser.KW_RELOAD: + case HiveSqlParser.KW_REPL: + case HiveSqlParser.KW_REPLACE: + case HiveSqlParser.KW_REVOKE: + case HiveSqlParser.KW_ROLLBACK: + case HiveSqlParser.KW_ROW: + case HiveSqlParser.KW_SELECT: + case HiveSqlParser.KW_SET: + case HiveSqlParser.KW_SHOW: + case HiveSqlParser.KW_SKEWED: + case HiveSqlParser.KW_START: + case HiveSqlParser.KW_STORED: + case HiveSqlParser.KW_TBLPROPERTIES: + case HiveSqlParser.KW_TRUNCATE: + case HiveSqlParser.KW_UNLOCK: + case HiveSqlParser.KW_UPDATE: + case HiveSqlParser.KW_USE: + case HiveSqlParser.KW_VALUES: + case HiveSqlParser.KW_WITH: + case HiveSqlParser.SEMICOLON: + case HiveSqlParser.LPAREN: { - this.state = 3278; - this.match(HiveSqlParser.KW_CREATE); - this.state = 3279; - localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3280; - this.match(HiveSqlParser.KW_TABLE); - this.state = 3282; + this.state = 3060; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 151) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { + case 1: { - this.state = 3281; - this.ifNotExists(); + this.state = 3056; + this.match(HiveSqlParser.LPAREN); + this.state = 3057; + this.columnNameTypeOrConstraintList(); + this.state = 3058; + this.match(HiveSqlParser.RPAREN); } + break; } - - this.state = 3284; - localContext._name = this.tableNameCreate(); - this.state = 3338; + this.state = 3063; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case HiveSqlParser.KW_LIKE: + _la = this.tokenStream.LA(1); + if (_la === 47) { { - this.state = 3285; - this.likeTableOrFile(); - this.state = 3287; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 291) { - { - this.state = 3286; - this.tableRowFormat(); - } - } - - this.state = 3290; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 321) { - { - this.state = 3289; - this.tableFileFormat(); - } - } - - this.state = 3293; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 189) { - { - this.state = 3292; - this.locationPath(); - } - } - - this.state = 3296; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 332) { - { - this.state = 3295; - this.tablePropertiesPrefixed(); - } - } - - this.state = 3299; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 183) { - { - this.state = 3298; - this.tableLifecycle(); - } + this.state = 3062; + this.tableComment(); } + } - } - break; - case HiveSqlParser.EOF: - case HiveSqlParser.KW_ABORT: - case HiveSqlParser.KW_ALTER: - case HiveSqlParser.KW_ANALYZE: - case HiveSqlParser.KW_AS: - case HiveSqlParser.KW_CLUSTERED: - case HiveSqlParser.KW_COMMENT: - case HiveSqlParser.KW_COMMIT: - case HiveSqlParser.KW_CREATE: - case HiveSqlParser.KW_DELETE: - case HiveSqlParser.KW_DESC: - case HiveSqlParser.KW_DESCRIBE: - case HiveSqlParser.KW_DISABLE: - case HiveSqlParser.KW_DISABLED: - case HiveSqlParser.KW_DROP: - case HiveSqlParser.KW_ENABLE: - case HiveSqlParser.KW_ENABLED: - case HiveSqlParser.KW_EXECUTE: - case HiveSqlParser.KW_EXPLAIN: - case HiveSqlParser.KW_EXPORT: - case HiveSqlParser.KW_FROM: - case HiveSqlParser.KW_GRANT: - case HiveSqlParser.KW_IMPORT: - case HiveSqlParser.KW_INSERT: - case HiveSqlParser.KW_KILL: - case HiveSqlParser.KW_LIFECYCLE: - case HiveSqlParser.KW_LOAD: - case HiveSqlParser.KW_LOCATION: - case HiveSqlParser.KW_LOCK: - case HiveSqlParser.KW_MAP: - case HiveSqlParser.KW_MERGE: - case HiveSqlParser.KW_MSCK: - case HiveSqlParser.KW_PARTITIONED: - case HiveSqlParser.KW_PREPARE: - case HiveSqlParser.KW_REDUCE: - case HiveSqlParser.KW_RELOAD: - case HiveSqlParser.KW_REPL: - case HiveSqlParser.KW_REPLACE: - case HiveSqlParser.KW_REVOKE: - case HiveSqlParser.KW_ROLLBACK: - case HiveSqlParser.KW_ROW: - case HiveSqlParser.KW_SELECT: - case HiveSqlParser.KW_SET: - case HiveSqlParser.KW_SHOW: - case HiveSqlParser.KW_SKEWED: - case HiveSqlParser.KW_START: - case HiveSqlParser.KW_STORED: - case HiveSqlParser.KW_TBLPROPERTIES: - case HiveSqlParser.KW_TRUNCATE: - case HiveSqlParser.KW_UNLOCK: - case HiveSqlParser.KW_UPDATE: - case HiveSqlParser.KW_USE: - case HiveSqlParser.KW_VALUES: - case HiveSqlParser.KW_WITH: - case HiveSqlParser.SEMICOLON: - case HiveSqlParser.LPAREN: + this.state = 3066; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 238) { { - this.state = 3305; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { - case 1: - { - this.state = 3301; - this.match(HiveSqlParser.LPAREN); - this.state = 3302; - this.columnNameTypeOrConstraintList(); - this.state = 3303; - this.match(HiveSqlParser.RPAREN); - } - break; - } - this.state = 3308; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 47) { - { - this.state = 3307; - this.tableComment(); - } - } - - this.state = 3311; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 238) { - { - this.state = 3310; - this.createTablePartitionSpec(); - } - } - - this.state = 3314; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 42) { - { - this.state = 3313; - this.tableBuckets(); - } + this.state = 3065; + this.createTablePartitionSpec(); } + } - this.state = 3317; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 310) { - { - this.state = 3316; - this.tableSkewed(); - } + this.state = 3069; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 42) { + { + this.state = 3068; + this.tableBuckets(); } + } - this.state = 3320; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 291) { - { - this.state = 3319; - this.tableRowFormat(); - } + this.state = 3072; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 310) { + { + this.state = 3071; + this.tableSkewed(); } + } - this.state = 3323; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 321) { - { - this.state = 3322; - this.tableFileFormat(); - } + this.state = 3075; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 291) { + { + this.state = 3074; + this.rowFormat(); } + } - this.state = 3326; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 189) { - { - this.state = 3325; - this.locationPath(); - } + this.state = 3078; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 321) { + { + this.state = 3077; + this.tableFileFormat(); } + } - this.state = 3329; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 332) { - { - this.state = 3328; - this.tablePropertiesPrefixed(); - } + this.state = 3081; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 189) { + { + this.state = 3080; + this.locationPath(); } + } - this.state = 3332; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 183) { - { - this.state = 3331; - this.tableLifecycle(); - } + this.state = 3084; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 332) { + { + this.state = 3083; + this.tablePropertiesPrefixed(); } + } - this.state = 3336; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 17) { - { - this.state = 3334; - this.match(HiveSqlParser.KW_AS); - this.state = 3335; - this.selectStatementWithCTE(); - } + this.state = 3087; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 183) { + { + this.state = 3086; + this.tableLifecycle(); } + } + this.state = 3091; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 17) { + { + this.state = 3089; + this.match(HiveSqlParser.KW_AS); + this.state = 3090; + this.selectStatementWithCTE(); } - break; - default: - throw new antlr.NoViableAltException(this); } + } break; + default: + throw new antlr.NoViableAltException(this); + } } } catch (re) { @@ -16276,73 +15148,73 @@ export class HiveSqlParser extends SQLParserBase { } public createDataConnectorStatement(): CreateDataConnectorStatementContext { let localContext = new CreateDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 442, HiveSqlParser.RULE_createDataConnectorStatement); + this.enterRule(localContext, 386, HiveSqlParser.RULE_createDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3342; + this.state = 3095; this.match(HiveSqlParser.KW_CREATE); - this.state = 3343; + this.state = 3096; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3345; + this.state = 3098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3344; + this.state = 3097; this.ifNotExists(); } } - this.state = 3347; + this.state = 3100; localContext._name = this.id_(); - this.state = 3350; + this.state = 3103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 3348; + this.state = 3101; this.match(HiveSqlParser.KW_TYPE); - this.state = 3349; + this.state = 3102; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3354; + this.state = 3107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3352; + this.state = 3105; this.match(HiveSqlParser.KW_URL); - this.state = 3353; + this.state = 3106; localContext._url = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3358; + this.state = 3111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3356; + this.state = 3109; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3357; + this.state = 3110; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3363; + this.state = 3116; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { case 1: { - this.state = 3360; + this.state = 3113; this.match(HiveSqlParser.KW_WITH); - this.state = 3361; + this.state = 3114; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3362; + this.state = 3115; localContext._dcprops = this.keyValueProperties(); } break; @@ -16365,26 +15237,26 @@ export class HiveSqlParser extends SQLParserBase { } public dropDataConnectorStatement(): DropDataConnectorStatementContext { let localContext = new DropDataConnectorStatementContext(this.context, this.state); - this.enterRule(localContext, 444, HiveSqlParser.RULE_dropDataConnectorStatement); + this.enterRule(localContext, 388, HiveSqlParser.RULE_dropDataConnectorStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3365; + this.state = 3118; this.match(HiveSqlParser.KW_DROP); - this.state = 3366; + this.state = 3119; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3368; + this.state = 3121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3367; + this.state = 3120; this.ifExists(); } } - this.state = 3370; + this.state = 3123; this.id_(); } } @@ -16404,28 +15276,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableAllColumns(): TableAllColumnsContext { let localContext = new TableAllColumnsContext(this.context, this.state); - this.enterRule(localContext, 446, HiveSqlParser.RULE_tableAllColumns); + this.enterRule(localContext, 390, HiveSqlParser.RULE_tableAllColumns); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3377; + this.state = 3130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { { - this.state = 3372; + this.state = 3125; this.id_(); - this.state = 3373; + this.state = 3126; this.match(HiveSqlParser.DOT); } } - this.state = 3379; + this.state = 3132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3380; + this.state = 3133; this.match(HiveSqlParser.STAR); } } @@ -16445,26 +15317,26 @@ export class HiveSqlParser extends SQLParserBase { } public expressionList(): ExpressionListContext { let localContext = new ExpressionListContext(this.context, this.state); - this.enterRule(localContext, 448, HiveSqlParser.RULE_expressionList); + this.enterRule(localContext, 392, HiveSqlParser.RULE_expressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3382; + this.state = 3135; this.expression(); - this.state = 3387; + this.state = 3140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3383; + this.state = 3136; this.match(HiveSqlParser.COMMA); - this.state = 3384; + this.state = 3137; this.expression(); } } - this.state = 3389; + this.state = 3142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16486,26 +15358,26 @@ export class HiveSqlParser extends SQLParserBase { } public aliasList(): AliasListContext { let localContext = new AliasListContext(this.context, this.state); - this.enterRule(localContext, 450, HiveSqlParser.RULE_aliasList); + this.enterRule(localContext, 394, HiveSqlParser.RULE_aliasList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3390; + this.state = 3143; this.id_(); - this.state = 3395; + this.state = 3148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3391; + this.state = 3144; this.match(HiveSqlParser.COMMA); - this.state = 3392; + this.state = 3145; this.id_(); } } - this.state = 3397; + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16527,13 +15399,13 @@ export class HiveSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 452, HiveSqlParser.RULE_fromClause); + this.enterRule(localContext, 396, HiveSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3398; + this.state = 3151; this.match(HiveSqlParser.KW_FROM); - this.state = 3399; + this.state = 3152; this.fromSource(); } } @@ -16553,32 +15425,32 @@ export class HiveSqlParser extends SQLParserBase { } public fromSource(): FromSourceContext { let localContext = new FromSourceContext(this.context, this.state); - this.enterRule(localContext, 454, HiveSqlParser.RULE_fromSource); + this.enterRule(localContext, 398, HiveSqlParser.RULE_fromSource); let _la: number; try { - this.state = 3410; + this.state = 3163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNIQUEJOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3401; + this.state = 3154; this.match(HiveSqlParser.KW_UNIQUEJOIN); - this.state = 3402; + this.state = 3155; this.uniqueJoinSource(); - this.state = 3405; + this.state = 3158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3403; + this.state = 3156; this.match(HiveSqlParser.COMMA); - this.state = 3404; + this.state = 3157; this.uniqueJoinSource(); } } - this.state = 3407; + this.state = 3160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -16828,7 +15700,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 3409; + this.state = 3162; this.joinSource(); } break; @@ -16852,112 +15724,112 @@ export class HiveSqlParser extends SQLParserBase { } public atomjoinSource(): AtomjoinSourceContext { let localContext = new AtomjoinSourceContext(this.context, this.state); - this.enterRule(localContext, 456, HiveSqlParser.RULE_atomjoinSource); + this.enterRule(localContext, 400, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; - this.state = 3444; + this.state = 3197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3412; + this.state = 3165; this.tableSource(); - this.state = 3416; + this.state = 3169; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 411, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3413; + this.state = 3166; this.lateralView(); } } } - this.state = 3418; + this.state = 3171; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 411, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3419; + this.state = 3172; this.virtualTableSource(); - this.state = 3423; + this.state = 3176; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 412, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3420; + this.state = 3173; this.lateralView(); } } } - this.state = 3425; + this.state = 3178; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 412, this.context); } } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3426; + this.state = 3179; this.subQuerySource(); - this.state = 3430; + this.state = 3183; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 413, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3427; + this.state = 3180; this.lateralView(); } } } - this.state = 3432; + this.state = 3185; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 413, this.context); } } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3433; + this.state = 3186; this.partitionedTableFunction(); - this.state = 3437; + this.state = 3190; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 438, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 414, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3434; + this.state = 3187; this.lateralView(); } } } - this.state = 3439; + this.state = 3192; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 438, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 414, this.context); } } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3440; + this.state = 3193; this.match(HiveSqlParser.LPAREN); - this.state = 3441; + this.state = 3194; this.joinSource(); - this.state = 3442; + this.state = 3195; this.match(HiveSqlParser.RPAREN); } break; @@ -16979,51 +15851,51 @@ export class HiveSqlParser extends SQLParserBase { } public joinSource(): JoinSourceContext { let localContext = new JoinSourceContext(this.context, this.state); - this.enterRule(localContext, 458, HiveSqlParser.RULE_joinSource); + this.enterRule(localContext, 402, HiveSqlParser.RULE_joinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3446; + this.state = 3199; this.atomjoinSource(); - this.state = 3464; + this.state = 3217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 285 || _la === 397) { { { - this.state = 3447; + this.state = 3200; this.joinToken(); - this.state = 3448; + this.state = 3201; this.joinSourcePart(); - this.state = 3460; + this.state = 3213; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ON: { - this.state = 3449; + this.state = 3202; this.match(HiveSqlParser.KW_ON); - this.state = 3456; + this.state = 3209; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: { - this.state = 3450; + this.state = 3203; this.expression(); } break; case 2: { - this.state = 3451; + this.state = 3204; this.columnNamePathAllowEmpty(); - this.state = 3454; + this.state = 3207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 3452; + this.state = 3205; this.match(HiveSqlParser.EQUAL); - this.state = 3453; + this.state = 3206; this.columnNamePathAllowEmpty(); } } @@ -17035,9 +15907,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_USING: { - this.state = 3458; + this.state = 3211; this.match(HiveSqlParser.KW_USING); - this.state = 3459; + this.state = 3212; this.columnParenthesesList(); } break; @@ -17115,7 +15987,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 3466; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17137,54 +16009,54 @@ export class HiveSqlParser extends SQLParserBase { } public joinSourcePart(): JoinSourcePartContext { let localContext = new JoinSourcePartContext(this.context, this.state); - this.enterRule(localContext, 460, HiveSqlParser.RULE_joinSourcePart); + this.enterRule(localContext, 404, HiveSqlParser.RULE_joinSourcePart); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3471; + this.state = 3224; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3467; + this.state = 3220; this.tableSource(); } break; case 2: { - this.state = 3468; + this.state = 3221; this.virtualTableSource(); } break; case 3: { - this.state = 3469; + this.state = 3222; this.subQuerySource(); } break; case 4: { - this.state = 3470; + this.state = 3223; this.partitionedTableFunction(); } break; } - this.state = 3476; + this.state = 3229; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 421, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3473; + this.state = 3226; this.lateralView(); } } } - this.state = 3478; + this.state = 3231; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 421, this.context); } } } @@ -17204,58 +16076,58 @@ export class HiveSqlParser extends SQLParserBase { } public uniqueJoinSource(): UniqueJoinSourceContext { let localContext = new UniqueJoinSourceContext(this.context, this.state); - this.enterRule(localContext, 462, HiveSqlParser.RULE_uniqueJoinSource); + this.enterRule(localContext, 406, HiveSqlParser.RULE_uniqueJoinSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3480; + this.state = 3233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 250) { { - this.state = 3479; + this.state = 3232; this.match(HiveSqlParser.KW_PRESERVE); } } - this.state = 3482; + this.state = 3235; localContext._tabname = this.tableOrView(); - this.state = 3484; + this.state = 3237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3483; + this.state = 3236; localContext._ts = this.tableSample(); } } - this.state = 3490; + this.state = 3243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3487; + this.state = 3240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3486; + this.state = 3239; this.match(HiveSqlParser.KW_AS); } } - this.state = 3489; + this.state = 3242; localContext._alias = this.id_(); } } - this.state = 3492; + this.state = 3245; this.match(HiveSqlParser.LPAREN); - this.state = 3493; + this.state = 3246; this.expressionList(); - this.state = 3494; + this.state = 3247; this.match(HiveSqlParser.RPAREN); } } @@ -17275,16 +16147,16 @@ export class HiveSqlParser extends SQLParserBase { } public joinToken(): JoinTokenContext { let localContext = new JoinTokenContext(this.context, this.state); - this.enterRule(localContext, 464, HiveSqlParser.RULE_joinToken); + this.enterRule(localContext, 408, HiveSqlParser.RULE_joinToken); let _la: number; try { - this.state = 3510; + this.state = 3263; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 3496; + this.state = 3249; this.match(HiveSqlParser.COMMA); } break; @@ -17296,25 +16168,25 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 2); { - this.state = 3507; + this.state = 3260; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INNER: { - this.state = 3497; + this.state = 3250; this.match(HiveSqlParser.KW_INNER); } break; case HiveSqlParser.KW_CROSS: { - this.state = 3498; + this.state = 3251; this.match(HiveSqlParser.KW_CROSS); } break; case HiveSqlParser.KW_FULL: case HiveSqlParser.KW_RIGHT: { - this.state = 3499; + this.state = 3252; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 285)) { this.errorHandler.recoverInline(this); @@ -17323,12 +16195,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3501; + this.state = 3254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 3500; + this.state = 3253; this.match(HiveSqlParser.KW_OUTER); } } @@ -17337,14 +16209,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_LEFT: { - this.state = 3503; + this.state = 3256; this.match(HiveSqlParser.KW_LEFT); - this.state = 3505; + this.state = 3258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 231 || _la === 300) { { - this.state = 3504; + this.state = 3257; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 231 || _la === 300)) { this.errorHandler.recoverInline(this); @@ -17363,7 +16235,7 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3509; + this.state = 3262; this.match(HiveSqlParser.KW_JOIN); } break; @@ -17387,52 +16259,52 @@ export class HiveSqlParser extends SQLParserBase { } public lateralView(): LateralViewContext { let localContext = new LateralViewContext(this.context, this.state); - this.enterRule(localContext, 466, HiveSqlParser.RULE_lateralView); + this.enterRule(localContext, 410, HiveSqlParser.RULE_lateralView); let _la: number; try { let alternative: number; - this.state = 3569; + this.state = 3322; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3265; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3513; + this.state = 3266; this.match(HiveSqlParser.KW_VIEW); - this.state = 3514; + this.state = 3267; this.match(HiveSqlParser.KW_OUTER); - this.state = 3515; + this.state = 3268; this.function_(); - this.state = 3516; + this.state = 3269; localContext._alias = this.tableAlias(); - this.state = 3526; + this.state = 3279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3517; + this.state = 3270; this.match(HiveSqlParser.KW_AS); - this.state = 3518; + this.state = 3271; this.id_(); - this.state = 3523; + this.state = 3276; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 430, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3519; + this.state = 3272; this.match(HiveSqlParser.COMMA); - this.state = 3520; + this.state = 3273; this.id_(); } } } - this.state = 3525; + this.state = 3278; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 430, this.context); } } } @@ -17442,55 +16314,55 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3529; + this.state = 3282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3528; + this.state = 3281; this.match(HiveSqlParser.COMMA); } } - this.state = 3531; + this.state = 3284; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3567; + this.state = 3320; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VIEW: { - this.state = 3532; + this.state = 3285; this.match(HiveSqlParser.KW_VIEW); - this.state = 3533; + this.state = 3286; this.function_(); - this.state = 3534; + this.state = 3287; localContext._alias = this.tableAlias(); - this.state = 3544; + this.state = 3297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3535; + this.state = 3288; this.match(HiveSqlParser.KW_AS); - this.state = 3536; + this.state = 3289; this.id_(); - this.state = 3541; + this.state = 3294; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3537; + this.state = 3290; this.match(HiveSqlParser.COMMA); - this.state = 3538; + this.state = 3291; this.id_(); } } } - this.state = 3543; + this.state = 3296; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); } } } @@ -17499,52 +16371,52 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_TABLE: { - this.state = 3546; + this.state = 3299; this.match(HiveSqlParser.KW_TABLE); - this.state = 3547; + this.state = 3300; this.match(HiveSqlParser.LPAREN); - this.state = 3548; + this.state = 3301; this.valuesClause(); - this.state = 3549; + this.state = 3302; this.match(HiveSqlParser.RPAREN); - this.state = 3551; + this.state = 3304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3550; + this.state = 3303; this.match(HiveSqlParser.KW_AS); } } - this.state = 3553; + this.state = 3306; localContext._alias = this.tableAlias(); - this.state = 3565; + this.state = 3318; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3554; + this.state = 3307; this.match(HiveSqlParser.LPAREN); - this.state = 3555; + this.state = 3308; this.id_(); - this.state = 3560; + this.state = 3313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3556; + this.state = 3309; this.match(HiveSqlParser.COMMA); - this.state = 3557; + this.state = 3310; this.id_(); } } - this.state = 3562; + this.state = 3315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3563; + this.state = 3316; this.match(HiveSqlParser.RPAREN); } break; @@ -17574,11 +16446,11 @@ export class HiveSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 468, HiveSqlParser.RULE_tableAlias); + this.enterRule(localContext, 412, HiveSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 3571; + this.state = 3324; this.id_(); } } @@ -17598,78 +16470,78 @@ export class HiveSqlParser extends SQLParserBase { } public tableSample(): TableSampleContext { let localContext = new TableSampleContext(this.context, this.state); - this.enterRule(localContext, 470, HiveSqlParser.RULE_tableSample); + this.enterRule(localContext, 414, HiveSqlParser.RULE_tableSample); let _la: number; try { - this.state = 3600; + this.state = 3353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3573; + this.state = 3326; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3574; + this.state = 3327; this.match(HiveSqlParser.LPAREN); - this.state = 3575; + this.state = 3328; this.match(HiveSqlParser.KW_BUCKET); - this.state = 3576; + this.state = 3329; localContext._numerator = this.match(HiveSqlParser.Number); - this.state = 3577; + this.state = 3330; this.match(HiveSqlParser.KW_OUT); - this.state = 3578; + this.state = 3331; this.match(HiveSqlParser.KW_OF); - this.state = 3579; + this.state = 3332; localContext._denominator = this.match(HiveSqlParser.Number); - this.state = 3589; + this.state = 3342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 3580; + this.state = 3333; this.match(HiveSqlParser.KW_ON); - this.state = 3581; + this.state = 3334; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); - this.state = 3586; + this.state = 3339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3582; + this.state = 3335; this.match(HiveSqlParser.COMMA); - this.state = 3583; + this.state = 3336; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); } } - this.state = 3588; + this.state = 3341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3591; + this.state = 3344; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3345; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3593; + this.state = 3346; this.match(HiveSqlParser.LPAREN); - this.state = 3597; + this.state = 3350; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Number: { - this.state = 3594; + this.state = 3347; this.match(HiveSqlParser.Number); - this.state = 3595; + this.state = 3348; _la = this.tokenStream.LA(1); if(!(_la === 241 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -17682,14 +16554,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.ByteLengthLiteral: { - this.state = 3596; + this.state = 3349; this.match(HiveSqlParser.ByteLengthLiteral); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3599; + this.state = 3352; this.match(HiveSqlParser.RPAREN); } break; @@ -17711,59 +16583,59 @@ export class HiveSqlParser extends SQLParserBase { } public tableSource(): TableSourceContext { let localContext = new TableSourceContext(this.context, this.state); - this.enterRule(localContext, 472, HiveSqlParser.RULE_tableSource); + this.enterRule(localContext, 416, HiveSqlParser.RULE_tableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3602; + this.state = 3355; localContext._tabname = this.tableOrView(); - this.state = 3604; + this.state = 3357; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3603; + this.state = 3356; localContext._props = this.tableProperties(); } break; } - this.state = 3607; + this.state = 3360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3606; + this.state = 3359; localContext._ts = this.tableSample(); } } - this.state = 3610; + this.state = 3363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3609; + this.state = 3362; localContext._asOf = this.asOfClause(); } } - this.state = 3616; + this.state = 3369; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { case 1: { - this.state = 3613; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3612; + this.state = 3365; this.match(HiveSqlParser.KW_AS); } } - this.state = 3615; + this.state = 3368; localContext._alias = this.id_(); } break; @@ -17786,38 +16658,38 @@ export class HiveSqlParser extends SQLParserBase { } public asOfClause(): AsOfClauseContext { let localContext = new AsOfClauseContext(this.context, this.state); - this.enterRule(localContext, 474, HiveSqlParser.RULE_asOfClause); + this.enterRule(localContext, 418, HiveSqlParser.RULE_asOfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3618; + this.state = 3371; this.match(HiveSqlParser.KW_FOR); - this.state = 3628; + this.state = 3381; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SYSTEM_TIME: { - this.state = 3619; + this.state = 3372; this.match(HiveSqlParser.KW_SYSTEM_TIME); - this.state = 3620; + this.state = 3373; this.match(HiveSqlParser.KW_AS); - this.state = 3621; + this.state = 3374; this.match(HiveSqlParser.KW_OF); - this.state = 3622; + this.state = 3375; localContext._asOfTime = this.expression(); } break; case HiveSqlParser.KW_FOR: { - this.state = 3623; + this.state = 3376; this.match(HiveSqlParser.KW_FOR); - this.state = 3624; + this.state = 3377; this.match(HiveSqlParser.KW_SYSTEM_VERSION); - this.state = 3625; + this.state = 3378; this.match(HiveSqlParser.KW_AS); - this.state = 3626; + this.state = 3379; this.match(HiveSqlParser.KW_OF); - this.state = 3627; + this.state = 3380; localContext._asOfVersion = this.match(HiveSqlParser.Number); } break; @@ -17842,11 +16714,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaName(): DbSchemaNameContext { let localContext = new DbSchemaNameContext(this.context, this.state); - this.enterRule(localContext, 476, HiveSqlParser.RULE_dbSchemaName); + this.enterRule(localContext, 420, HiveSqlParser.RULE_dbSchemaName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3630; + this.state = 3383; this.id_(); } } @@ -17866,11 +16738,11 @@ export class HiveSqlParser extends SQLParserBase { } public dbSchemaNameCreate(): DbSchemaNameCreateContext { let localContext = new DbSchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 478, HiveSqlParser.RULE_dbSchemaNameCreate); + this.enterRule(localContext, 422, HiveSqlParser.RULE_dbSchemaNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3632; + this.state = 3385; this.id_(); } } @@ -17890,22 +16762,22 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrView(): TableOrViewContext { let localContext = new TableOrViewContext(this.context, this.state); - this.enterRule(localContext, 480, HiveSqlParser.RULE_tableOrView); + this.enterRule(localContext, 424, HiveSqlParser.RULE_tableOrView); try { - this.state = 3636; + this.state = 3389; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3634; + this.state = 3387; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3635; + this.state = 3388; this.viewName(); } break; @@ -17927,28 +16799,28 @@ export class HiveSqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 482, HiveSqlParser.RULE_tableName); + this.enterRule(localContext, 426, HiveSqlParser.RULE_tableName); try { - this.state = 3646; + this.state = 3399; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3638; + this.state = 3391; localContext._db = this.id_(); - this.state = 3639; + this.state = 3392; this.match(HiveSqlParser.DOT); - this.state = 3640; + this.state = 3393; localContext._tab = this.id_(); - this.state = 3643; + this.state = 3396; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 3641; + this.state = 3394; this.match(HiveSqlParser.DOT); - this.state = 3642; + this.state = 3395; localContext._meta = this.id_(); } break; @@ -17958,7 +16830,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3645; + this.state = 3398; localContext._tab = this.id_(); } break; @@ -17980,29 +16852,29 @@ export class HiveSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 484, HiveSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 428, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { - this.state = 3656; + this.state = 3409; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3648; + this.state = 3401; localContext._db = this.id_(); - this.state = 3649; + this.state = 3402; this.match(HiveSqlParser.DOT); - this.state = 3650; + this.state = 3403; localContext._tab = this.id_(); - this.state = 3653; + this.state = 3406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 3651; + this.state = 3404; this.match(HiveSqlParser.DOT); - this.state = 3652; + this.state = 3405; localContext._meta = this.id_(); } } @@ -18012,7 +16884,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3655; + this.state = 3408; localContext._tab = this.id_(); } break; @@ -18034,23 +16906,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 486, HiveSqlParser.RULE_viewName); + this.enterRule(localContext, 430, HiveSqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3661; + this.state = 3414; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3658; + this.state = 3411; localContext._db = this.id_(); - this.state = 3659; + this.state = 3412; this.match(HiveSqlParser.DOT); } break; } - this.state = 3663; + this.state = 3416; localContext._view = this.id_(); } } @@ -18070,23 +16942,23 @@ export class HiveSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 488, HiveSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 432, HiveSqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3668; + this.state = 3421; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { - this.state = 3665; + this.state = 3418; localContext._db = this.id_(); - this.state = 3666; + this.state = 3419; this.match(HiveSqlParser.DOT); } break; } - this.state = 3670; + this.state = 3423; localContext._view = this.id_(); } } @@ -18106,28 +16978,28 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySource(): SubQuerySourceContext { let localContext = new SubQuerySourceContext(this.context, this.state); - this.enterRule(localContext, 490, HiveSqlParser.RULE_subQuerySource); + this.enterRule(localContext, 434, HiveSqlParser.RULE_subQuerySource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3672; + this.state = 3425; this.match(HiveSqlParser.LPAREN); - this.state = 3673; + this.state = 3426; this.queryStatementExpression(); - this.state = 3674; + this.state = 3427; this.match(HiveSqlParser.RPAREN); - this.state = 3676; + this.state = 3429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3675; + this.state = 3428; this.match(HiveSqlParser.KW_AS); } } - this.state = 3678; + this.state = 3431; localContext._alias = this.id_(); } } @@ -18147,23 +17019,23 @@ export class HiveSqlParser extends SQLParserBase { } public partitioningSpec(): PartitioningSpecContext { let localContext = new PartitioningSpecContext(this.context, this.state); - this.enterRule(localContext, 492, HiveSqlParser.RULE_partitioningSpec); + this.enterRule(localContext, 436, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { - this.state = 3691; + this.state = 3444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 3680; + this.state = 3433; this.partitionByClause(); - this.state = 3682; + this.state = 3435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 3681; + this.state = 3434; this.orderByClause(); } } @@ -18173,21 +17045,21 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3684; + this.state = 3437; this.orderByClause(); } break; case HiveSqlParser.KW_DISTRIBUTE: this.enterOuterAlt(localContext, 3); { - this.state = 3685; + this.state = 3438; this.distributeByClause(); - this.state = 3687; + this.state = 3440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 3686; + this.state = 3439; this.sortByClause(); } } @@ -18197,14 +17069,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SORT: this.enterOuterAlt(localContext, 4); { - this.state = 3689; + this.state = 3442; this.sortByClause(); } break; case HiveSqlParser.KW_CLUSTER: this.enterOuterAlt(localContext, 5); { - this.state = 3690; + this.state = 3443; this.clusterByClause(); } break; @@ -18228,29 +17100,29 @@ export class HiveSqlParser extends SQLParserBase { } public partitionTableFunctionSource(): PartitionTableFunctionSourceContext { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); - this.enterRule(localContext, 494, HiveSqlParser.RULE_partitionTableFunctionSource); + this.enterRule(localContext, 438, HiveSqlParser.RULE_partitionTableFunctionSource); try { - this.state = 3696; + this.state = 3449; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3693; + this.state = 3446; this.subQuerySource(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3694; + this.state = 3447; this.tableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3695; + this.state = 3448; this.partitionedTableFunction(); } break; @@ -18272,18 +17144,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionedTableFunction(): PartitionedTableFunctionContext { let localContext = new PartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 496, HiveSqlParser.RULE_partitionedTableFunction); + this.enterRule(localContext, 440, HiveSqlParser.RULE_partitionedTableFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 3698; + this.state = 3451; this.atomPartitionedTableFunction(); - this.state = 3700; + this.state = 3453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 3699; + this.state = 3452; localContext._alias = this.id_(); } break; @@ -18306,68 +17178,68 @@ export class HiveSqlParser extends SQLParserBase { } public atomPartitionedTableFunction(): AtomPartitionedTableFunctionContext { let localContext = new AtomPartitionedTableFunctionContext(this.context, this.state); - this.enterRule(localContext, 498, HiveSqlParser.RULE_atomPartitionedTableFunction); + this.enterRule(localContext, 442, HiveSqlParser.RULE_atomPartitionedTableFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3702; + this.state = 3455; localContext._n = this.id_(); - this.state = 3703; + this.state = 3456; this.match(HiveSqlParser.LPAREN); - this.state = 3704; + this.state = 3457; this.match(HiveSqlParser.KW_ON); - this.state = 3705; + this.state = 3458; localContext._ptfsrc = this.partitionTableFunctionSource(); - this.state = 3707; + this.state = 3460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3706; + this.state = 3459; localContext._spec = this.partitioningSpec(); } } - this.state = 3724; + this.state = 3477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 432) { { - this.state = 3709; + this.state = 3462; this.match(HiveSqlParser.Identifier); - this.state = 3710; + this.state = 3463; this.match(HiveSqlParser.LPAREN); - this.state = 3711; + this.state = 3464; this.expression(); - this.state = 3712; + this.state = 3465; this.match(HiveSqlParser.RPAREN); - this.state = 3721; + this.state = 3474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3713; + this.state = 3466; this.match(HiveSqlParser.COMMA); - this.state = 3714; + this.state = 3467; this.match(HiveSqlParser.Identifier); - this.state = 3715; + this.state = 3468; this.match(HiveSqlParser.LPAREN); - this.state = 3716; + this.state = 3469; this.expression(); - this.state = 3717; + this.state = 3470; this.match(HiveSqlParser.RPAREN); } } - this.state = 3723; + this.state = 3476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3726; + this.state = 3479; this.match(HiveSqlParser.RPAREN); } } @@ -18387,24 +17259,24 @@ export class HiveSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 500, HiveSqlParser.RULE_whereClause); + this.enterRule(localContext, 444, HiveSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3728; + this.state = 3481; this.match(HiveSqlParser.KW_WHERE); - this.state = 3731; + this.state = 3484; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3729; + this.state = 3482; this.expression(); } break; case 2: { - this.state = 3730; + this.state = 3483; this.columnNamePathAllowEmpty(); } break; @@ -18427,33 +17299,33 @@ export class HiveSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 502, HiveSqlParser.RULE_valuesClause); + this.enterRule(localContext, 446, HiveSqlParser.RULE_valuesClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3733; + this.state = 3486; this.match(HiveSqlParser.KW_VALUES); - this.state = 3752; + this.state = 3505; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3734; + this.state = 3487; this.expressionsInParenthesis(); - this.state = 3739; + this.state = 3492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3735; + this.state = 3488; this.match(HiveSqlParser.COMMA); - this.state = 3736; + this.state = 3489; this.expressionsInParenthesis(); } } - this.state = 3741; + this.state = 3494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18461,25 +17333,25 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 3742; + this.state = 3495; this.match(HiveSqlParser.LPAREN); - this.state = 3743; + this.state = 3496; this.firstExpressionsWithAlias(); - this.state = 3744; + this.state = 3497; this.match(HiveSqlParser.RPAREN); - this.state = 3749; + this.state = 3502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3745; + this.state = 3498; this.match(HiveSqlParser.COMMA); - this.state = 3746; + this.state = 3499; this.expressionsInParenthesis(); } } - this.state = 3751; + this.state = 3504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18504,17 +17376,17 @@ export class HiveSqlParser extends SQLParserBase { } public atomValuesClause(): AtomValuesClauseContext { let localContext = new AtomValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 504, HiveSqlParser.RULE_atomValuesClause); + this.enterRule(localContext, 448, HiveSqlParser.RULE_atomValuesClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3754; + this.state = 3507; this.match(HiveSqlParser.KW_TABLE); - this.state = 3755; + this.state = 3508; this.match(HiveSqlParser.LPAREN); - this.state = 3756; + this.state = 3509; this.valuesClause(); - this.state = 3757; + this.state = 3510; this.match(HiveSqlParser.RPAREN); } } @@ -18534,54 +17406,54 @@ export class HiveSqlParser extends SQLParserBase { } public virtualTableSource(): VirtualTableSourceContext { let localContext = new VirtualTableSourceContext(this.context, this.state); - this.enterRule(localContext, 506, HiveSqlParser.RULE_virtualTableSource); + this.enterRule(localContext, 450, HiveSqlParser.RULE_virtualTableSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3759; + this.state = 3512; this.atomValuesClause(); - this.state = 3761; + this.state = 3514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3760; + this.state = 3513; this.match(HiveSqlParser.KW_AS); } } - this.state = 3763; + this.state = 3516; localContext._alias = this.tableAlias(); - this.state = 3773; + this.state = 3526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 3764; + this.state = 3517; this.match(HiveSqlParser.LPAREN); - this.state = 3765; + this.state = 3518; this.id_(); - this.state = 3770; + this.state = 3523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3766; + this.state = 3519; this.match(HiveSqlParser.COMMA); - this.state = 3767; + this.state = 3520; this.id_(); } } - this.state = 3772; + this.state = 3525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3775; + this.state = 3528; this.match(HiveSqlParser.RPAREN); } } @@ -18601,38 +17473,38 @@ export class HiveSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 508, HiveSqlParser.RULE_selectClause); + this.enterRule(localContext, 452, HiveSqlParser.RULE_selectClause); let _la: number; try { - this.state = 3790; + this.state = 3543; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 3777; + this.state = 3530; this.match(HiveSqlParser.KW_SELECT); - this.state = 3779; + this.state = 3532; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: { - this.state = 3778; + this.state = 3531; this.match(HiveSqlParser.QUERY_HINT); } break; } - this.state = 3787; + this.state = 3540; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 3782; + this.state = 3535; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { case 1: { - this.state = 3781; + this.state = 3534; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -18644,15 +17516,15 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 3784; + this.state = 3537; this.selectList(); } break; case 2: { - this.state = 3785; + this.state = 3538; this.match(HiveSqlParser.KW_TRANSFORM); - this.state = 3786; + this.state = 3539; this.selectTrfmClause(); } break; @@ -18663,7 +17535,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 2); { - this.state = 3789; + this.state = 3542; this.trfmClause(); } break; @@ -18687,68 +17559,70 @@ export class HiveSqlParser extends SQLParserBase { } public selectTrfmClause(): SelectTrfmClauseContext { let localContext = new SelectTrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 510, HiveSqlParser.RULE_selectTrfmClause); + this.enterRule(localContext, 454, HiveSqlParser.RULE_selectTrfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3792; + this.state = 3545; this.match(HiveSqlParser.LPAREN); - this.state = 3793; + this.state = 3546; this.selectExpressionList(); - this.state = 3794; + this.state = 3547; this.match(HiveSqlParser.RPAREN); - this.state = 3795; + this.state = 3548; this.rowFormat(); - this.state = 3796; - this.recordWriter(); - this.state = 3797; + this.state = 3549; + this.match(HiveSqlParser.KW_RECORDWRITER); + this.state = 3550; + this.match(HiveSqlParser.StringLiteral); + this.state = 3551; this.match(HiveSqlParser.KW_USING); - this.state = 3798; + this.state = 3552; this.match(HiveSqlParser.StringLiteral); - this.state = 3811; + this.state = 3565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3799; + this.state = 3553; this.match(HiveSqlParser.KW_AS); - this.state = 3809; + this.state = 3563; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: { - this.state = 3800; + this.state = 3554; this.match(HiveSqlParser.LPAREN); - this.state = 3803; + this.state = 3557; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 3801; + this.state = 3555; this.aliasList(); } break; case 2: { - this.state = 3802; + this.state = 3556; this.columnNameTypeList(); } break; } - this.state = 3805; + this.state = 3559; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3807; + this.state = 3561; this.aliasList(); } break; case 3: { - this.state = 3808; + this.state = 3562; this.columnNameTypeList(); } break; @@ -18756,10 +17630,12 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3813; + this.state = 3567; this.rowFormat(); - this.state = 3814; - this.recordReader(); + this.state = 3568; + this.match(HiveSqlParser.KW_RECORDREADER); + this.state = 3569; + this.match(HiveSqlParser.StringLiteral); } } catch (re) { @@ -18778,30 +17654,30 @@ export class HiveSqlParser extends SQLParserBase { } public selectList(): SelectListContext { let localContext = new SelectListContext(this.context, this.state); - this.enterRule(localContext, 512, HiveSqlParser.RULE_selectList); + this.enterRule(localContext, 456, HiveSqlParser.RULE_selectList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3816; + this.state = 3571; this.selectItem(); - this.state = 3821; + this.state = 3576; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 504, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3817; + this.state = 3572; this.match(HiveSqlParser.COMMA); - this.state = 3818; + this.state = 3573; this.selectItem(); } } } - this.state = 3823; + this.state = 3578; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 504, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); } } } @@ -18821,16 +17697,16 @@ export class HiveSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 514, HiveSqlParser.RULE_selectItem); + this.enterRule(localContext, 458, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 3849; + this.state = 3604; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3824; + this.state = 3579; this.tableAllColumns(); } break; @@ -18838,66 +17714,66 @@ export class HiveSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 3827; + this.state = 3582; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 481, this.context) ) { case 1: { - this.state = 3825; + this.state = 3580; this.selectLiteralColumnName(); } break; case 2: { - this.state = 3826; + this.state = 3581; this.selectExpressionColumnName(); } break; } - this.state = 3845; + this.state = 3600; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { case 1: { - this.state = 3830; + this.state = 3585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3829; + this.state = 3584; this.match(HiveSqlParser.KW_AS); } } - this.state = 3832; + this.state = 3587; localContext._alias = this.id_(); } break; case 2: { - this.state = 3833; + this.state = 3588; this.match(HiveSqlParser.KW_AS); - this.state = 3834; + this.state = 3589; this.match(HiveSqlParser.LPAREN); - this.state = 3835; + this.state = 3590; localContext._alias = this.id_(); - this.state = 3840; + this.state = 3595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3836; + this.state = 3591; this.match(HiveSqlParser.COMMA); - this.state = 3837; + this.state = 3592; localContext._alias = this.id_(); } } - this.state = 3842; + this.state = 3597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3843; + this.state = 3598; this.match(HiveSqlParser.RPAREN); } break; @@ -18908,11 +17784,11 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3847; + this.state = 3602; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 3848; + this.state = 3603; this.emptyColumn(); } break; @@ -18934,11 +17810,11 @@ export class HiveSqlParser extends SQLParserBase { } public selectLiteralColumnName(): SelectLiteralColumnNameContext { let localContext = new SelectLiteralColumnNameContext(this.context, this.state); - this.enterRule(localContext, 516, HiveSqlParser.RULE_selectLiteralColumnName); + this.enterRule(localContext, 460, HiveSqlParser.RULE_selectLiteralColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3851; + this.state = 3606; this.columnName(); } } @@ -18958,11 +17834,11 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionColumnName(): SelectExpressionColumnNameContext { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); - this.enterRule(localContext, 518, HiveSqlParser.RULE_selectExpressionColumnName); + this.enterRule(localContext, 462, HiveSqlParser.RULE_selectExpressionColumnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3853; + this.state = 3608; this.expression(); } } @@ -18982,12 +17858,12 @@ export class HiveSqlParser extends SQLParserBase { } public trfmClause(): TrfmClauseContext { let localContext = new TrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 520, HiveSqlParser.RULE_trfmClause); + this.enterRule(localContext, 464, HiveSqlParser.RULE_trfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3855; + this.state = 3610; _la = this.tokenStream.LA(1); if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -18996,59 +17872,61 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3856; + this.state = 3611; this.selectExpressionList(); - this.state = 3857; + this.state = 3612; this.rowFormat(); - this.state = 3858; - this.recordWriter(); - this.state = 3859; + this.state = 3613; + this.match(HiveSqlParser.KW_RECORDWRITER); + this.state = 3614; + this.match(HiveSqlParser.StringLiteral); + this.state = 3615; this.match(HiveSqlParser.KW_USING); - this.state = 3860; + this.state = 3616; this.match(HiveSqlParser.StringLiteral); - this.state = 3873; + this.state = 3629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3861; + this.state = 3617; this.match(HiveSqlParser.KW_AS); - this.state = 3871; + this.state = 3627; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { case 1: { - this.state = 3862; + this.state = 3618; this.match(HiveSqlParser.LPAREN); - this.state = 3865; + this.state = 3621; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: { - this.state = 3863; + this.state = 3619; this.aliasList(); } break; case 2: { - this.state = 3864; + this.state = 3620; this.columnNameTypeList(); } break; } - this.state = 3867; + this.state = 3623; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3869; + this.state = 3625; this.aliasList(); } break; case 3: { - this.state = 3870; + this.state = 3626; this.columnNameTypeList(); } break; @@ -19056,10 +17934,12 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3875; + this.state = 3631; this.rowFormat(); - this.state = 3876; - this.recordReader(); + this.state = 3632; + this.match(HiveSqlParser.KW_RECORDREADER); + this.state = 3633; + this.match(HiveSqlParser.StringLiteral); } } catch (re) { @@ -19078,22 +17958,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpression(): SelectExpressionContext { let localContext = new SelectExpressionContext(this.context, this.state); - this.enterRule(localContext, 522, HiveSqlParser.RULE_selectExpression); + this.enterRule(localContext, 466, HiveSqlParser.RULE_selectExpression); try { - this.state = 3880; + this.state = 3637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3635; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3879; + this.state = 3636; this.expression(); } break; @@ -19115,26 +17995,26 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionList(): SelectExpressionListContext { let localContext = new SelectExpressionListContext(this.context, this.state); - this.enterRule(localContext, 524, HiveSqlParser.RULE_selectExpressionList); + this.enterRule(localContext, 468, HiveSqlParser.RULE_selectExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3882; + this.state = 3639; this.selectExpression(); - this.state = 3887; + this.state = 3644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3883; + this.state = 3640; this.match(HiveSqlParser.COMMA); - this.state = 3884; + this.state = 3641; this.selectExpression(); } } - this.state = 3889; + this.state = 3646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19156,36 +18036,36 @@ export class HiveSqlParser extends SQLParserBase { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 526, HiveSqlParser.RULE_window_clause); + this.enterRule(localContext, 470, HiveSqlParser.RULE_window_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3890; + this.state = 3647; this.match(HiveSqlParser.KW_WINDOW); - this.state = 3891; + this.state = 3648; this.id_(); - this.state = 3892; + this.state = 3649; this.match(HiveSqlParser.KW_AS); - this.state = 3893; + this.state = 3650; this.window_specification(); - this.state = 3901; + this.state = 3658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3894; + this.state = 3651; this.match(HiveSqlParser.COMMA); - this.state = 3895; + this.state = 3652; this.id_(); - this.state = 3896; + this.state = 3653; this.match(HiveSqlParser.KW_AS); - this.state = 3897; + this.state = 3654; this.window_specification(); } } - this.state = 3903; + this.state = 3660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19207,10 +18087,10 @@ export class HiveSqlParser extends SQLParserBase { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 528, HiveSqlParser.RULE_window_specification); + this.enterRule(localContext, 472, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 3916; + this.state = 3673; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -19455,46 +18335,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 3904; + this.state = 3661; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 3905; + this.state = 3662; this.match(HiveSqlParser.LPAREN); - this.state = 3907; + this.state = 3664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 3906; + this.state = 3663; this.id_(); } break; } - this.state = 3910; + this.state = 3667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3909; + this.state = 3666; this.partitioningSpec(); } } - this.state = 3913; + this.state = 3670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260 || _la === 292) { { - this.state = 3912; + this.state = 3669; this.window_frame(); } } - this.state = 3915; + this.state = 3672; this.match(HiveSqlParser.RPAREN); } break; @@ -19518,12 +18398,12 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame(): Window_frameContext { let localContext = new Window_frameContext(this.context, this.state); - this.enterRule(localContext, 530, HiveSqlParser.RULE_window_frame); + this.enterRule(localContext, 474, HiveSqlParser.RULE_window_frame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3918; + this.state = 3675; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -19532,22 +18412,22 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3932; + this.state = 3689; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 3925; + this.state = 3682; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: { { - this.state = 3919; + this.state = 3676; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 3920; + this.state = 3677; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19555,9 +18435,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: { { - this.state = 3921; + this.state = 3678; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3922; + this.state = 3679; this.match(HiveSqlParser.KW_ROW); } } @@ -19565,9 +18445,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Number: { { - this.state = 3923; + this.state = 3680; this.match(HiveSqlParser.Number); - this.state = 3924; + this.state = 3681; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19579,13 +18459,13 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_BETWEEN: { - this.state = 3927; + this.state = 3684; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 3928; + this.state = 3685; this.window_frame_boundary(); - this.state = 3929; + this.state = 3686; this.match(HiveSqlParser.KW_AND); - this.state = 3930; + this.state = 3687; this.window_frame_boundary(); } break; @@ -19610,17 +18490,17 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame_boundary(): Window_frame_boundaryContext { let localContext = new Window_frame_boundaryContext(this.context, this.state); - this.enterRule(localContext, 532, HiveSqlParser.RULE_window_frame_boundary); + this.enterRule(localContext, 476, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 3938; + this.state = 3695; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 3934; + this.state = 3691; _la = this.tokenStream.LA(1); if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -19629,7 +18509,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3935; + this.state = 3692; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -19643,9 +18523,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 3936; + this.state = 3693; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3937; + this.state = 3694; this.match(HiveSqlParser.KW_ROW); } break; @@ -19669,41 +18549,41 @@ export class HiveSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 534, HiveSqlParser.RULE_groupByClause); + this.enterRule(localContext, 478, HiveSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3940; + this.state = 3697; this.match(HiveSqlParser.KW_GROUP); - this.state = 3941; + this.state = 3698; this.match(HiveSqlParser.KW_BY); - this.state = 3947; + this.state = 3704; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 523, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: { - this.state = 3942; + this.state = 3699; this.columnName(); } break; case 2: { - this.state = 3943; + this.state = 3700; this.rollupStandard(); } break; case 3: { - this.state = 3944; + this.state = 3701; this.rollupOldSyntax(); } break; case 4: { { - this.state = 3945; + this.state = 3702; this.match(HiveSqlParser.LPAREN); - this.state = 3946; + this.state = 3703; this.match(HiveSqlParser.RPAREN); } } @@ -19727,50 +18607,50 @@ export class HiveSqlParser extends SQLParserBase { } public rollupStandard(): RollupStandardContext { let localContext = new RollupStandardContext(this.context, this.state); - this.enterRule(localContext, 536, HiveSqlParser.RULE_rollupStandard); + this.enterRule(localContext, 480, HiveSqlParser.RULE_rollupStandard); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3951; + this.state = 3708; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 3949; + this.state = 3706; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 3950; + this.state = 3707; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3953; + this.state = 3710; this.match(HiveSqlParser.LPAREN); - this.state = 3954; + this.state = 3711; this.expression(); - this.state = 3959; + this.state = 3716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3955; + this.state = 3712; this.match(HiveSqlParser.COMMA); - this.state = 3956; + this.state = 3713; this.expression(); } } - this.state = 3961; + this.state = 3718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3962; + this.state = 3719; this.match(HiveSqlParser.RPAREN); } } @@ -19790,63 +18670,63 @@ export class HiveSqlParser extends SQLParserBase { } public rollupOldSyntax(): RollupOldSyntaxContext { let localContext = new RollupOldSyntaxContext(this.context, this.state); - this.enterRule(localContext, 538, HiveSqlParser.RULE_rollupOldSyntax); + this.enterRule(localContext, 482, HiveSqlParser.RULE_rollupOldSyntax); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3964; + this.state = 3721; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 3969; + this.state = 3726; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: { - this.state = 3965; + this.state = 3722; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 3966; + this.state = 3723; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 3967; + this.state = 3724; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 3968; + this.state = 3725; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 3984; + this.state = 3741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 3971; + this.state = 3728; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 3972; + this.state = 3729; this.match(HiveSqlParser.KW_SETS); - this.state = 3973; + this.state = 3730; this.match(HiveSqlParser.LPAREN); - this.state = 3974; + this.state = 3731; this.groupingSetExpression(); - this.state = 3979; + this.state = 3736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3975; + this.state = 3732; this.match(HiveSqlParser.COMMA); - this.state = 3976; + this.state = 3733; this.groupingSetExpression(); } } - this.state = 3981; + this.state = 3738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3982; + this.state = 3739; this.match(HiveSqlParser.RPAREN); } } @@ -19869,51 +18749,51 @@ export class HiveSqlParser extends SQLParserBase { } public groupingSetExpression(): GroupingSetExpressionContext { let localContext = new GroupingSetExpressionContext(this.context, this.state); - this.enterRule(localContext, 540, HiveSqlParser.RULE_groupingSetExpression); + this.enterRule(localContext, 484, HiveSqlParser.RULE_groupingSetExpression); let _la: number; try { - this.state = 3999; + this.state = 3756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3986; + this.state = 3743; this.match(HiveSqlParser.LPAREN); - this.state = 3988; + this.state = 3745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 3987; + this.state = 3744; this.expression(); } } - this.state = 3994; + this.state = 3751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3990; + this.state = 3747; this.match(HiveSqlParser.COMMA); - this.state = 3991; + this.state = 3748; this.expression(); } } - this.state = 3996; + this.state = 3753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3997; + this.state = 3754; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3998; + this.state = 3755; this.expression(); } break; @@ -19935,24 +18815,24 @@ export class HiveSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 542, HiveSqlParser.RULE_havingClause); + this.enterRule(localContext, 486, HiveSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4001; + this.state = 3758; this.match(HiveSqlParser.KW_HAVING); - this.state = 4004; + this.state = 3761; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: { - this.state = 4002; + this.state = 3759; this.expression(); } break; case 2: { - this.state = 4003; + this.state = 3760; this.columnNamePathAllowEmpty(); } break; @@ -19975,13 +18855,13 @@ export class HiveSqlParser extends SQLParserBase { } public qualifyClause(): QualifyClauseContext { let localContext = new QualifyClauseContext(this.context, this.state); - this.enterRule(localContext, 544, HiveSqlParser.RULE_qualifyClause); + this.enterRule(localContext, 488, HiveSqlParser.RULE_qualifyClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4006; + this.state = 3763; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 4007; + this.state = 3764; this.expression(); } } @@ -19999,105 +18879,68 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public expressionOrDefault(): ExpressionOrDefaultContext { - let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 546, HiveSqlParser.RULE_expressionOrDefault); - try { - this.state = 4011; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4009; - this.match(HiveSqlParser.KW_DEFAULT); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4010; - this.expression(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public firstExpressionsWithAlias(): FirstExpressionsWithAliasContext { let localContext = new FirstExpressionsWithAliasContext(this.context, this.state); - this.enterRule(localContext, 548, HiveSqlParser.RULE_firstExpressionsWithAlias); + this.enterRule(localContext, 490, HiveSqlParser.RULE_firstExpressionsWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4013; + this.state = 3766; localContext._first = this.expression(); - this.state = 4015; + this.state = 3768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4014; + this.state = 3767; this.match(HiveSqlParser.KW_AS); } } - this.state = 4018; + this.state = 3771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4017; + this.state = 3770; localContext._colAlias = this.id_(); } } - this.state = 4030; + this.state = 3783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4020; + this.state = 3773; this.match(HiveSqlParser.COMMA); - this.state = 4021; + this.state = 3774; this.expression(); - this.state = 4023; + this.state = 3776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4022; + this.state = 3775; this.match(HiveSqlParser.KW_AS); } } - this.state = 4026; + this.state = 3779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4025; + this.state = 3778; localContext._alias = this.id_(); } } } } - this.state = 4032; + this.state = 3785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20119,22 +18962,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 550, HiveSqlParser.RULE_expressions); + this.enterRule(localContext, 492, HiveSqlParser.RULE_expressions); try { - this.state = 4035; + this.state = 3788; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 539, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4033; + this.state = 3786; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4034; + this.state = 3787; this.expressionsNotInParenthesis(); } break; @@ -20156,15 +18999,15 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsInParenthesis(): ExpressionsInParenthesisContext { let localContext = new ExpressionsInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 552, HiveSqlParser.RULE_expressionsInParenthesis); + this.enterRule(localContext, 494, HiveSqlParser.RULE_expressionsInParenthesis); try { this.enterOuterAlt(localContext, 1); { - this.state = 4037; + this.state = 3790; this.match(HiveSqlParser.LPAREN); - this.state = 4038; + this.state = 3791; this.expressionsNotInParenthesis(); - this.state = 4039; + this.state = 3792; this.match(HiveSqlParser.RPAREN); } } @@ -20184,31 +19027,59 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsNotInParenthesis(): ExpressionsNotInParenthesisContext { let localContext = new ExpressionsNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 554, HiveSqlParser.RULE_expressionsNotInParenthesis); + this.enterRule(localContext, 496, HiveSqlParser.RULE_expressionsNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4041; - localContext._first = this.expressionOrDefault(); - this.state = 4048; + this.state = 3796; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 515, this.context) ) { + case 1: + { + this.state = 3794; + this.match(HiveSqlParser.KW_DEFAULT); + } + break; + case 2: + { + this.state = 3795; + this.expression(); + } + break; + } + this.state = 3807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 4044; + this.state = 3803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4042; + this.state = 3798; this.match(HiveSqlParser.COMMA); - this.state = 4043; - this.expressionOrDefault(); + this.state = 3801; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { + case 1: + { + this.state = 3799; + this.match(HiveSqlParser.KW_DEFAULT); + } + break; + case 2: + { + this.state = 3800; + this.expression(); + } + break; } } - this.state = 4046; + } + this.state = 3805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -20233,30 +19104,30 @@ export class HiveSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 556, HiveSqlParser.RULE_orderByClause); + this.enterRule(localContext, 498, HiveSqlParser.RULE_orderByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4050; + this.state = 3809; this.match(HiveSqlParser.KW_ORDER); - this.state = 4051; + this.state = 3810; this.match(HiveSqlParser.KW_BY); - this.state = 4052; + this.state = 3811; this.columnRefOrder(); - this.state = 4057; + this.state = 3816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4053; + this.state = 3812; this.match(HiveSqlParser.COMMA); - this.state = 4054; + this.state = 3813; this.columnRefOrder(); } } - this.state = 4059; + this.state = 3818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20278,15 +19149,15 @@ export class HiveSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 558, HiveSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 500, HiveSqlParser.RULE_partitionByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4060; + this.state = 3819; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4061; + this.state = 3820; this.match(HiveSqlParser.KW_BY); - this.state = 4062; + this.state = 3821; this.expressions(); } } @@ -20306,15 +19177,15 @@ export class HiveSqlParser extends SQLParserBase { } public clusterByClause(): ClusterByClauseContext { let localContext = new ClusterByClauseContext(this.context, this.state); - this.enterRule(localContext, 560, HiveSqlParser.RULE_clusterByClause); + this.enterRule(localContext, 502, HiveSqlParser.RULE_clusterByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4064; + this.state = 3823; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4065; + this.state = 3824; this.match(HiveSqlParser.KW_BY); - this.state = 4066; + this.state = 3825; this.expressions(); } } @@ -20334,15 +19205,15 @@ export class HiveSqlParser extends SQLParserBase { } public distributeByClause(): DistributeByClauseContext { let localContext = new DistributeByClauseContext(this.context, this.state); - this.enterRule(localContext, 562, HiveSqlParser.RULE_distributeByClause); + this.enterRule(localContext, 504, HiveSqlParser.RULE_distributeByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4068; + this.state = 3827; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4069; + this.state = 3828; this.match(HiveSqlParser.KW_BY); - this.state = 4070; + this.state = 3829; this.expressions(); } } @@ -20362,42 +19233,42 @@ export class HiveSqlParser extends SQLParserBase { } public sortByClause(): SortByClauseContext { let localContext = new SortByClauseContext(this.context, this.state); - this.enterRule(localContext, 564, HiveSqlParser.RULE_sortByClause); + this.enterRule(localContext, 506, HiveSqlParser.RULE_sortByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4072; + this.state = 3831; this.match(HiveSqlParser.KW_SORT); - this.state = 4073; + this.state = 3832; this.match(HiveSqlParser.KW_BY); - this.state = 4093; + this.state = 3852; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { { - this.state = 4074; + this.state = 3833; this.match(HiveSqlParser.LPAREN); - this.state = 4075; + this.state = 3834; this.columnRefOrder(); - this.state = 4080; + this.state = 3839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4076; + this.state = 3835; this.match(HiveSqlParser.COMMA); - this.state = 4077; + this.state = 3836; this.columnRefOrder(); } } - this.state = 4082; + this.state = 3841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4083; + this.state = 3842; this.match(HiveSqlParser.RPAREN); } } @@ -20405,21 +19276,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: { { - this.state = 4085; + this.state = 3844; this.columnRefOrder(); - this.state = 4090; + this.state = 3849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4086; + this.state = 3845; this.match(HiveSqlParser.COMMA); - this.state = 4087; + this.state = 3846; this.columnRefOrder(); } } - this.state = 4092; + this.state = 3851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20445,37 +19316,37 @@ export class HiveSqlParser extends SQLParserBase { } public function_(): Function_Context { let localContext = new Function_Context(this.context, this.state); - this.enterRule(localContext, 566, HiveSqlParser.RULE_function_); + this.enterRule(localContext, 508, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4148; + this.state = 3909; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4095; + this.state = 3854; this.match(HiveSqlParser.KW_TRIM); - this.state = 4096; + this.state = 3855; this.match(HiveSqlParser.LPAREN); - this.state = 4100; + this.state = 3859; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4097; + this.state = 3856; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4098; + this.state = 3857; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4099; + this.state = 3858; this.match(HiveSqlParser.KW_BOTH); } break; @@ -20785,48 +19656,48 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4103; + this.state = 3862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4102; + this.state = 3861; localContext._trim_characters = this.selectExpression(); } } - this.state = 4105; + this.state = 3864; this.match(HiveSqlParser.KW_FROM); - this.state = 4106; + this.state = 3865; localContext._str = this.selectExpression(); - this.state = 4107; + this.state = 3866; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4109; + this.state = 3868; this.functionNameForInvoke(); - this.state = 4110; + this.state = 3869; this.match(HiveSqlParser.LPAREN); - this.state = 4125; + this.state = 3884; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: { - this.state = 4111; + this.state = 3870; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4113; + this.state = 3872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4112; + this.state = 3871; localContext._dist = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { @@ -20839,26 +19710,26 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4123; + this.state = 3882; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: { - this.state = 4115; + this.state = 3874; this.selectExpression(); - this.state = 4120; + this.state = 3879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4116; + this.state = 3875; this.match(HiveSqlParser.COMMA); - this.state = 4117; + this.state = 3876; this.selectExpression(); } } - this.state = 4122; + this.state = 3881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20868,60 +19739,80 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4146; + this.state = 3907; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 530, this.context) ) { case 1: { - this.state = 4127; + this.state = 3886; this.match(HiveSqlParser.RPAREN); - this.state = 4128; + this.state = 3887; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4129; + this.state = 3888; this.match(HiveSqlParser.KW_GROUP); - this.state = 4130; + this.state = 3889; this.match(HiveSqlParser.LPAREN); - this.state = 4131; + this.state = 3890; localContext._ordBy = this.orderByClause(); - this.state = 4132; + this.state = 3891; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4134; + this.state = 3893; this.match(HiveSqlParser.RPAREN); - this.state = 4136; + this.state = 3896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 281) { { - this.state = 4135; - localContext._nt = this.null_treatment(); + this.state = 3894; + _la = this.tokenStream.LA(1); + if(!(_la === 152 || _la === 281)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3895; + this.match(HiveSqlParser.KW_NULLS); } } - this.state = 4138; + this.state = 3898; this.match(HiveSqlParser.KW_OVER); - this.state = 4139; + this.state = 3899; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4140; - localContext._nt = this.null_treatment(); - this.state = 4141; + { + this.state = 3900; + _la = this.tokenStream.LA(1); + if(!(_la === 152 || _la === 281)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 3901; + this.match(HiveSqlParser.KW_NULLS); + } + this.state = 3903; this.match(HiveSqlParser.RPAREN); - this.state = 4142; + this.state = 3904; this.match(HiveSqlParser.KW_OVER); - this.state = 4143; + this.state = 3905; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4145; + this.state = 3906; this.match(HiveSqlParser.RPAREN); } break; @@ -20944,47 +19835,13 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public null_treatment(): Null_treatmentContext { - let localContext = new Null_treatmentContext(this.context, this.state); - this.enterRule(localContext, 568, HiveSqlParser.RULE_null_treatment); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4150; - _la = this.tokenStream.LA(1); - if(!(_la === 152 || _la === 281)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 4151; - this.match(HiveSqlParser.KW_NULLS); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 570, HiveSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 510, HiveSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4153; + this.state = 3911; this.functionIdentifier(); } } @@ -21004,9 +19861,9 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForDDL(): FunctionNameForDDLContext { let localContext = new FunctionNameForDDLContext(this.context, this.state); - this.enterRule(localContext, 572, HiveSqlParser.RULE_functionNameForDDL); + this.enterRule(localContext, 512, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4157; + this.state = 3915; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -21251,14 +20108,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4155; + this.state = 3913; this.functionIdentifier(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4156; + this.state = 3914; this.match(HiveSqlParser.StringLiteral); } break; @@ -21282,29 +20139,29 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForInvoke(): FunctionNameForInvokeContext { let localContext = new FunctionNameForInvokeContext(this.context, this.state); - this.enterRule(localContext, 574, HiveSqlParser.RULE_functionNameForInvoke); + this.enterRule(localContext, 514, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4162; + this.state = 3920; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4159; + this.state = 3917; this.functionIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4160; + this.state = 3918; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4161; + this.state = 3919; this.sysFuncNames(); } break; @@ -21326,34 +20183,34 @@ export class HiveSqlParser extends SQLParserBase { } public castExpression(): CastExpressionContext { let localContext = new CastExpressionContext(this.context, this.state); - this.enterRule(localContext, 576, HiveSqlParser.RULE_castExpression); + this.enterRule(localContext, 516, HiveSqlParser.RULE_castExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4164; + this.state = 3922; this.match(HiveSqlParser.KW_CAST); - this.state = 4165; + this.state = 3923; this.match(HiveSqlParser.LPAREN); - this.state = 4166; + this.state = 3924; this.expression(); - this.state = 4167; + this.state = 3925; this.match(HiveSqlParser.KW_AS); - this.state = 4168; + this.state = 3926; localContext._toType = this.primitiveType(); - this.state = 4171; + this.state = 3929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4169; + this.state = 3927; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4170; + this.state = 3928; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4173; + this.state = 3931; this.match(HiveSqlParser.RPAREN); } } @@ -21373,48 +20230,48 @@ export class HiveSqlParser extends SQLParserBase { } public caseExpression(): CaseExpressionContext { let localContext = new CaseExpressionContext(this.context, this.state); - this.enterRule(localContext, 578, HiveSqlParser.RULE_caseExpression); + this.enterRule(localContext, 518, HiveSqlParser.RULE_caseExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4175; + this.state = 3933; this.match(HiveSqlParser.KW_CASE); - this.state = 4176; + this.state = 3934; this.expression(); - this.state = 4182; + this.state = 3940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4177; + this.state = 3935; this.match(HiveSqlParser.KW_WHEN); - this.state = 4178; + this.state = 3936; this.expression(); - this.state = 4179; + this.state = 3937; this.match(HiveSqlParser.KW_THEN); - this.state = 4180; + this.state = 3938; this.expression(); } } - this.state = 4184; + this.state = 3942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4188; + this.state = 3946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4186; + this.state = 3944; this.match(HiveSqlParser.KW_ELSE); - this.state = 4187; + this.state = 3945; this.expression(); } } - this.state = 4190; + this.state = 3948; this.match(HiveSqlParser.KW_END); } } @@ -21434,46 +20291,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenExpression(): WhenExpressionContext { let localContext = new WhenExpressionContext(this.context, this.state); - this.enterRule(localContext, 580, HiveSqlParser.RULE_whenExpression); + this.enterRule(localContext, 520, HiveSqlParser.RULE_whenExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4192; + this.state = 3950; this.match(HiveSqlParser.KW_CASE); - this.state = 4198; + this.state = 3956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4193; + this.state = 3951; this.match(HiveSqlParser.KW_WHEN); - this.state = 4194; + this.state = 3952; this.expression(); - this.state = 4195; + this.state = 3953; this.match(HiveSqlParser.KW_THEN); - this.state = 4196; + this.state = 3954; this.expression(); } } - this.state = 4200; + this.state = 3958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4204; + this.state = 3962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4202; + this.state = 3960; this.match(HiveSqlParser.KW_ELSE); - this.state = 4203; + this.state = 3961; this.expression(); } } - this.state = 4206; + this.state = 3964; this.match(HiveSqlParser.KW_END); } } @@ -21493,30 +20350,30 @@ export class HiveSqlParser extends SQLParserBase { } public floorExpression(): FloorExpressionContext { let localContext = new FloorExpressionContext(this.context, this.state); - this.enterRule(localContext, 582, HiveSqlParser.RULE_floorExpression); + this.enterRule(localContext, 522, HiveSqlParser.RULE_floorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4208; + this.state = 3966; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4209; + this.state = 3967; this.match(HiveSqlParser.LPAREN); - this.state = 4210; + this.state = 3968; this.expression(); - this.state = 4213; + this.state = 3971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 4211; + this.state = 3969; this.match(HiveSqlParser.KW_TO); - this.state = 4212; + this.state = 3970; localContext._floorUnit = this.timeQualifiers(); } } - this.state = 4215; + this.state = 3973; this.match(HiveSqlParser.RPAREN); } } @@ -21536,21 +20393,21 @@ export class HiveSqlParser extends SQLParserBase { } public extractExpression(): ExtractExpressionContext { let localContext = new ExtractExpressionContext(this.context, this.state); - this.enterRule(localContext, 584, HiveSqlParser.RULE_extractExpression); + this.enterRule(localContext, 524, HiveSqlParser.RULE_extractExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4217; + this.state = 3975; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4218; + this.state = 3976; this.match(HiveSqlParser.LPAREN); - this.state = 4219; + this.state = 3977; localContext._timeUnit = this.timeQualifiers(); - this.state = 4220; + this.state = 3978; this.match(HiveSqlParser.KW_FROM); - this.state = 4221; + this.state = 3979; this.expression(); - this.state = 4222; + this.state = 3980; this.match(HiveSqlParser.RPAREN); } } @@ -21570,23 +20427,31 @@ export class HiveSqlParser extends SQLParserBase { } public timeQualifiers(): TimeQualifiersContext { let localContext = new TimeQualifiersContext(this.context, this.state); - this.enterRule(localContext, 586, HiveSqlParser.RULE_timeQualifiers); + this.enterRule(localContext, 526, HiveSqlParser.RULE_timeQualifiers); + let _la: number; try { - this.state = 4232; + this.state = 3990; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4224; - this.year(); + this.state = 3982; + _la = this.tokenStream.LA(1); + if(!(_la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4225; + this.state = 3983; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -21594,48 +20459,90 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4226; - this.month(); + this.state = 3984; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 209)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_WEEK: case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4227; - this.week(); + this.state = 3985; + _la = this.tokenStream.LA(1); + if(!(_la === 381 || _la === 382)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4228; - this.day(); + this.state = 3986; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 74)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4229; - this.hour(); + this.state = 3987; + _la = this.tokenStream.LA(1); + if(!(_la === 148 || _la === 149)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_MINUTE: case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4230; - this.minute(); + this.state = 3988; + _la = this.tokenStream.LA(1); + if(!(_la === 206 || _la === 207)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case HiveSqlParser.KW_SECOND: case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4231; - this.second(); + this.state = 3989; + _la = this.tokenStream.LA(1); + if(!(_la === 297 || _la === 298)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; default: @@ -21658,85 +20565,85 @@ export class HiveSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 588, HiveSqlParser.RULE_constant); + this.enterRule(localContext, 528, HiveSqlParser.RULE_constant); let _la: number; try { - this.state = 4262; + this.state = 4020; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4234; + this.state = 3992; localContext._value = this.intervalValue(); - this.state = 4235; + this.state = 3993; localContext._qualifiers = this.intervalQualifiers(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4237; + this.state = 3995; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4238; + this.state = 3996; this.match(HiveSqlParser.KW_DATE); - this.state = 4239; + this.state = 3997; this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4240; + this.state = 3998; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4241; + this.state = 3999; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4242; + this.state = 4000; this.match(HiveSqlParser.StringLiteral); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4243; + this.state = 4001; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4244; + this.state = 4002; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4245; + this.state = 4003; this.match(HiveSqlParser.StringLiteral); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4246; + this.state = 4004; this.match(HiveSqlParser.StringLiteral); - this.state = 4250; + this.state = 4008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 426) { { { - this.state = 4247; + this.state = 4005; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4252; + this.state = 4010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21745,58 +20652,58 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4253; + this.state = 4011; this.match(HiveSqlParser.IntegralLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4254; + this.state = 4012; this.match(HiveSqlParser.NumberLiteral); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4255; + this.state = 4013; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4256; + this.state = 4014; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4257; + this.state = 4015; this.match(HiveSqlParser.KW_TRUE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4258; + this.state = 4016; this.match(HiveSqlParser.KW_FALSE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4259; + this.state = 4017; this.match(HiveSqlParser.KW_NULL); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4260; + this.state = 4018; localContext._p = this.match(HiveSqlParser.QUESTION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4261; + this.state = 4019; this.columnNamePath(); } break; @@ -21818,12 +20725,12 @@ export class HiveSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 590, HiveSqlParser.RULE_intervalValue); + this.enterRule(localContext, 530, HiveSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4264; + this.state = 4022; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -21850,53 +20757,53 @@ export class HiveSqlParser extends SQLParserBase { } public intervalExpression(): IntervalExpressionContext { let localContext = new IntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 592, HiveSqlParser.RULE_intervalExpression); + this.enterRule(localContext, 532, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4281; + this.state = 4039; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4266; + this.state = 4024; this.match(HiveSqlParser.LPAREN); - this.state = 4267; + this.state = 4025; localContext._value = this.intervalValue(); - this.state = 4268; + this.state = 4026; this.match(HiveSqlParser.RPAREN); - this.state = 4269; + this.state = 4027; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4271; + this.state = 4029; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4277; + this.state = 4035; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4272; + this.state = 4030; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4273; + this.state = 4031; this.match(HiveSqlParser.LPAREN); - this.state = 4274; + this.state = 4032; localContext._expr = this.expression(); - this.state = 4275; + this.state = 4033; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4279; + this.state = 4037; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -21920,73 +20827,144 @@ export class HiveSqlParser extends SQLParserBase { } public intervalQualifiers(): IntervalQualifiersContext { let localContext = new IntervalQualifiersContext(this.context, this.state); - this.enterRule(localContext, 594, HiveSqlParser.RULE_intervalQualifiers); + this.enterRule(localContext, 534, HiveSqlParser.RULE_intervalQualifiers); + let _la: number; try { - this.state = 4297; + this.state = 4053; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4283; - this.year(); - this.state = 4284; + this.state = 4041; + _la = this.tokenStream.LA(1); + if(!(_la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4042; this.match(HiveSqlParser.KW_TO); - this.state = 4285; - this.month(); + this.state = 4043; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 209)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4287; - this.day(); - this.state = 4288; + this.state = 4044; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 74)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4045; this.match(HiveSqlParser.KW_TO); - this.state = 4289; - this.second(); + this.state = 4046; + _la = this.tokenStream.LA(1); + if(!(_la === 297 || _la === 298)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4291; - this.year(); + this.state = 4047; + _la = this.tokenStream.LA(1); + if(!(_la === 392 || _la === 393)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4292; - this.month(); + this.state = 4048; + _la = this.tokenStream.LA(1); + if(!(_la === 208 || _la === 209)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4293; - this.day(); + this.state = 4049; + _la = this.tokenStream.LA(1); + if(!(_la === 73 || _la === 74)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4294; - this.hour(); + this.state = 4050; + _la = this.tokenStream.LA(1); + if(!(_la === 148 || _la === 149)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4295; - this.minute(); + this.state = 4051; + _la = this.tokenStream.LA(1); + if(!(_la === 206 || _la === 207)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4296; - this.second(); + this.state = 4052; + _la = this.tokenStream.LA(1); + if(!(_la === 297 || _la === 298)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; } @@ -22007,26 +20985,26 @@ export class HiveSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 596, HiveSqlParser.RULE_expression); + this.enterRule(localContext, 536, HiveSqlParser.RULE_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4299; + this.state = 4055; this.precedenceAndExpression(); - this.state = 4304; + this.state = 4060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 228) { { { - this.state = 4300; + this.state = 4056; this.match(HiveSqlParser.KW_OR); - this.state = 4301; + this.state = 4057; this.precedenceAndExpression(); } } - this.state = 4306; + this.state = 4062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22048,85 +21026,85 @@ export class HiveSqlParser extends SQLParserBase { } public atomExpression(): AtomExpressionContext { let localContext = new AtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 598, HiveSqlParser.RULE_atomExpression); + this.enterRule(localContext, 538, HiveSqlParser.RULE_atomExpression); try { - this.state = 4318; + this.state = 4074; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 547, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4307; + this.state = 4063; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4308; + this.state = 4064; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4309; + this.state = 4065; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4310; + this.state = 4066; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4311; + this.state = 4067; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4312; + this.state = 4068; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4313; + this.state = 4069; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4314; + this.state = 4070; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4315; + this.state = 4071; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4316; + this.state = 4072; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4317; + this.state = 4073; this.id_(); } break; @@ -22148,20 +21126,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnaryPrefixExpression(): PrecedenceUnaryPrefixExpressionContext { let localContext = new PrecedenceUnaryPrefixExpressionContext(this.context, this.state); - this.enterRule(localContext, 600, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); + this.enterRule(localContext, 540, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4323; + this.state = 4079; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 548, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4320; + this.state = 4076; _la = this.tokenStream.LA(1); if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); @@ -22173,35 +21151,35 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4325; + this.state = 4081; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 548, this.context); } - this.state = 4326; + this.state = 4082; this.atomExpression(); - this.state = 4335; + this.state = 4091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 401) { { - this.state = 4333; + this.state = 4089; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4327; + this.state = 4083; this.match(HiveSqlParser.LSQUARE); - this.state = 4328; + this.state = 4084; this.expression(); - this.state = 4329; + this.state = 4085; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4331; + this.state = 4087; this.match(HiveSqlParser.DOT); - this.state = 4332; + this.state = 4088; this.id_(); } break; @@ -22209,7 +21187,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4337; + this.state = 4093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22231,26 +21209,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseXorExpression(): PrecedenceBitwiseXorExpressionContext { let localContext = new PrecedenceBitwiseXorExpressionContext(this.context, this.state); - this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceBitwiseXorExpression); + this.enterRule(localContext, 542, HiveSqlParser.RULE_precedenceBitwiseXorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4338; + this.state = 4094; this.precedenceUnaryPrefixExpression(); - this.state = 4343; + this.state = 4099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 423) { { { - this.state = 4339; + this.state = 4095; this.match(HiveSqlParser.BITWISEXOR); - this.state = 4340; + this.state = 4096; this.precedenceUnaryPrefixExpression(); } } - this.state = 4345; + this.state = 4101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22272,20 +21250,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceStarExpression(): PrecedenceStarExpressionContext { let localContext = new PrecedenceStarExpressionContext(this.context, this.state); - this.enterRule(localContext, 604, HiveSqlParser.RULE_precedenceStarExpression); + this.enterRule(localContext, 544, HiveSqlParser.RULE_precedenceStarExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4346; + this.state = 4102; this.precedenceBitwiseXorExpression(); - this.state = 4351; + this.state = 4107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4347; + this.state = 4103; _la = this.tokenStream.LA(1); if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); @@ -22294,11 +21272,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4348; + this.state = 4104; this.precedenceBitwiseXorExpression(); } } - this.state = 4353; + this.state = 4109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22320,20 +21298,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpression(): PrecedencePlusExpressionContext { let localContext = new PrecedencePlusExpressionContext(this.context, this.state); - this.enterRule(localContext, 606, HiveSqlParser.RULE_precedencePlusExpression); + this.enterRule(localContext, 546, HiveSqlParser.RULE_precedencePlusExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4354; + this.state = 4110; this.precedenceStarExpression(); - this.state = 4359; + this.state = 4115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 413 || _la === 414) { { { - this.state = 4355; + this.state = 4111; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -22342,11 +21320,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4356; + this.state = 4112; this.precedenceStarExpression(); } } - this.state = 4361; + this.state = 4117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22368,26 +21346,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); - this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceConcatenateExpression); + this.enterRule(localContext, 548, HiveSqlParser.RULE_precedenceConcatenateExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4362; + this.state = 4118; this.precedencePlusExpression(); - this.state = 4367; + this.state = 4123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 422) { { { - this.state = 4363; + this.state = 4119; this.match(HiveSqlParser.CONCATENATE); - this.state = 4364; + this.state = 4120; localContext._plus = this.precedencePlusExpression(); } } - this.state = 4369; + this.state = 4125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22409,26 +21387,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); - this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceAmpersandExpression); + this.enterRule(localContext, 550, HiveSqlParser.RULE_precedenceAmpersandExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4370; + this.state = 4126; this.precedenceConcatenateExpression(); - this.state = 4375; + this.state = 4131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 419) { { { - this.state = 4371; + this.state = 4127; this.match(HiveSqlParser.AMPERSAND); - this.state = 4372; + this.state = 4128; this.precedenceConcatenateExpression(); } } - this.state = 4377; + this.state = 4133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22450,26 +21428,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + this.enterRule(localContext, 552, HiveSqlParser.RULE_precedenceBitwiseOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4378; + this.state = 4134; this.precedenceAmpersandExpression(); - this.state = 4383; + this.state = 4139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 421) { { { - this.state = 4379; + this.state = 4135; this.match(HiveSqlParser.BITWISEOR); - this.state = 4380; + this.state = 4136; this.precedenceAmpersandExpression(); } } - this.state = 4385; + this.state = 4141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22489,14 +21467,42 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public subQueryExpression(): SubQueryExpressionContext { + let localContext = new SubQueryExpressionContext(this.context, this.state); + this.enterRule(localContext, 554, HiveSqlParser.RULE_subQueryExpression); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4142; + this.match(HiveSqlParser.LPAREN); + this.state = 4143; + this.selectStatement(); + this.state = 4144; + this.match(HiveSqlParser.RPAREN); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); - this.enterRule(localContext, 614, HiveSqlParser.RULE_precedenceSimilarOperator); + this.enterRule(localContext, 556, HiveSqlParser.RULE_precedenceSimilarOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4386; + this.state = 4146; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -22521,39 +21527,11 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public subQueryExpression(): SubQueryExpressionContext { - let localContext = new SubQueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 616, HiveSqlParser.RULE_subQueryExpression); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4388; - this.match(HiveSqlParser.LPAREN); - this.state = 4389; - this.selectStatement(); - this.state = 4390; - this.match(HiveSqlParser.RPAREN); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public precedenceSimilarExpression(): PrecedenceSimilarExpressionContext { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); - this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceSimilarExpression); + this.enterRule(localContext, 558, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4398; + this.state = 4154; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -22858,14 +21836,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4392; + this.state = 4148; localContext._a = this.precedenceBitwiseOrExpression(); - this.state = 4394; + this.state = 4150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 4393; + this.state = 4149; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -22875,9 +21853,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4396; + this.state = 4152; this.match(HiveSqlParser.KW_EXISTS); - this.state = 4397; + this.state = 4153; this.subQueryExpression(); } break; @@ -22901,34 +21879,58 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + this.enterRule(localContext, 560, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + let _la: number; try { - this.state = 4406; + this.state = 4166; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4400; + this.state = 4156; this.precedenceSimilarOperator(); - this.state = 4401; + this.state = 4157; localContext._equalExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4403; + this.state = 4159; this.precedenceSimilarExpressionAtom(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4404; + this.state = 4160; this.match(HiveSqlParser.KW_NOT); - this.state = 4405; - this.precedenceSimilarExpressionPartNot(); + this.state = 4164; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 559, this.context) ) { + case 1: + { + this.state = 4161; + _la = this.tokenStream.LA(1); + if(!(_la === 184 || _la === 270 || _la === 286)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4162; + localContext._notExpr = this.precedenceBitwiseOrExpression(); + } + break; + case 2: + { + this.state = 4163; + this.precedenceSimilarExpressionAtom(); + } + break; + } } break; } @@ -22949,40 +21951,54 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); - this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); + this.enterRule(localContext, 562, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { - this.state = 4422; + this.state = 4185; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4408; + this.state = 4168; this.match(HiveSqlParser.KW_IN); - this.state = 4409; - this.precedenceSimilarExpressionIn(); + this.state = 4171; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { + case 1: + { + this.state = 4169; + this.subQueryExpression(); + } + break; + case 2: + { + this.state = 4170; + localContext._expr = this.expressionsInParenthesis(); + } + break; + } } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 2); { - this.state = 4410; + this.state = 4173; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4411; + this.state = 4174; localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4412; + this.state = 4175; this.match(HiveSqlParser.KW_AND); - this.state = 4413; + this.state = 4176; localContext._max = this.precedenceBitwiseOrExpression(); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 4415; + this.state = 4178; this.match(HiveSqlParser.KW_LIKE); - this.state = 4416; + this.state = 4179; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -22991,7 +22007,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4417; + this.state = 4180; localContext._expr = this.expressionsInParenthesis(); } break; @@ -23003,9 +22019,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 4); { - this.state = 4418; + this.state = 4181; this.subQuerySelectorOperator(); - this.state = 4419; + this.state = 4182; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13 || _la === 313)) { this.errorHandler.recoverInline(this); @@ -23014,7 +22030,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4420; + this.state = 4183; this.subQueryExpression(); } break; @@ -23036,101 +22052,17 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext { - let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); - this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceSimilarExpressionIn); - try { - this.state = 4426; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4424; - this.subQueryExpression(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4425; - localContext._expr = this.expressionsInParenthesis(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext { - let localContext = new PrecedenceSimilarExpressionPartNotContext(this.context, this.state); - this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); - let _la: number; - try { - this.state = 4431; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4428; - _la = this.tokenStream.LA(1); - if(!(_la === 184 || _la === 270 || _la === 286)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 4429; - localContext._notExpr = this.precedenceBitwiseOrExpression(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 4430; - this.precedenceSimilarExpressionAtom(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public precedenceDistinctOperator(): PrecedenceDistinctOperatorContext { let localContext = new PrecedenceDistinctOperatorContext(this.context, this.state); - this.enterRule(localContext, 628, HiveSqlParser.RULE_precedenceDistinctOperator); + this.enterRule(localContext, 564, HiveSqlParser.RULE_precedenceDistinctOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4187; this.match(HiveSqlParser.KW_IS); - this.state = 4434; + this.state = 4188; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4435; + this.state = 4189; this.match(HiveSqlParser.KW_FROM); } } @@ -23150,42 +22082,42 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualOperator(): PrecedenceEqualOperatorContext { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); - this.enterRule(localContext, 630, HiveSqlParser.RULE_precedenceEqualOperator); + this.enterRule(localContext, 566, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 4444; + this.state = 4198; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 4437; + this.state = 4191; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 4438; + this.state = 4192; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 4439; + this.state = 4193; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 4440; + this.state = 4194; this.match(HiveSqlParser.KW_IS); - this.state = 4441; + this.state = 4195; this.match(HiveSqlParser.KW_NOT); - this.state = 4442; + this.state = 4196; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4443; + this.state = 4197; this.match(HiveSqlParser.KW_FROM); } break; @@ -23209,38 +22141,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualExpression(): PrecedenceEqualExpressionContext { let localContext = new PrecedenceEqualExpressionContext(this.context, this.state); - this.enterRule(localContext, 632, HiveSqlParser.RULE_precedenceEqualExpression); + this.enterRule(localContext, 568, HiveSqlParser.RULE_precedenceEqualExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4446; + this.state = 4200; this.precedenceSimilarExpression(); - this.state = 4455; + this.state = 4209; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 4453; + this.state = 4207; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { case 1: { - this.state = 4447; + this.state = 4201; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 4448; + this.state = 4202; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 4450; + this.state = 4204; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 4451; + this.state = 4205; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -23248,9 +22180,9 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4457; + this.state = 4211; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); } } } @@ -23270,46 +22202,46 @@ export class HiveSqlParser extends SQLParserBase { } public isCondition(): IsConditionContext { let localContext = new IsConditionContext(this.context, this.state); - this.enterRule(localContext, 634, HiveSqlParser.RULE_isCondition); + this.enterRule(localContext, 570, HiveSqlParser.RULE_isCondition); let _la: number; try { - this.state = 4464; + this.state = 4218; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 4458; + this.state = 4212; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 2); { - this.state = 4459; + this.state = 4213; this.match(HiveSqlParser.KW_TRUE); } break; case HiveSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 3); { - this.state = 4460; + this.state = 4214; this.match(HiveSqlParser.KW_FALSE); } break; case HiveSqlParser.KW_UNKNOWN: this.enterOuterAlt(localContext, 4); { - this.state = 4461; + this.state = 4215; this.match(HiveSqlParser.KW_UNKNOWN); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 5); { - this.state = 4462; + this.state = 4216; this.match(HiveSqlParser.KW_NOT); - this.state = 4463; + this.state = 4217; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 219 || _la === 350 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23340,38 +22272,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceNotExpression(): PrecedenceNotExpressionContext { let localContext = new PrecedenceNotExpressionContext(this.context, this.state); - this.enterRule(localContext, 636, HiveSqlParser.RULE_precedenceNotExpression); + this.enterRule(localContext, 572, HiveSqlParser.RULE_precedenceNotExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4469; + this.state = 4223; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 567, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4466; + this.state = 4220; this.match(HiveSqlParser.KW_NOT); } } } - this.state = 4471; + this.state = 4225; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 567, this.context); } - this.state = 4472; + this.state = 4226; this.precedenceEqualExpression(); - this.state = 4475; + this.state = 4229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 4473; + this.state = 4227; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 4474; + this.state = 4228; this.isCondition(); } } @@ -23394,26 +22326,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAndExpression(): PrecedenceAndExpressionContext { let localContext = new PrecedenceAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 638, HiveSqlParser.RULE_precedenceAndExpression); + this.enterRule(localContext, 574, HiveSqlParser.RULE_precedenceAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4477; + this.state = 4231; this.precedenceNotExpression(); - this.state = 4482; + this.state = 4236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 4478; + this.state = 4232; this.match(HiveSqlParser.KW_AND); - this.state = 4479; + this.state = 4233; this.precedenceNotExpression(); } } - this.state = 4484; + this.state = 4238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23435,19 +22367,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrPartition(): TableOrPartitionContext { let localContext = new TableOrPartitionContext(this.context, this.state); - this.enterRule(localContext, 640, HiveSqlParser.RULE_tableOrPartition); + this.enterRule(localContext, 576, HiveSqlParser.RULE_tableOrPartition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4485; + this.state = 4239; this.tableName(); - this.state = 4487; + this.state = 4241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 4486; + this.state = 4240; this.partitionSpec(); } } @@ -23470,34 +22402,34 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 642, HiveSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 578, HiveSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4489; + this.state = 4243; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4490; + this.state = 4244; this.match(HiveSqlParser.LPAREN); - this.state = 4491; + this.state = 4245; this.partitionVal(); - this.state = 4496; + this.state = 4250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4492; + this.state = 4246; this.match(HiveSqlParser.COMMA); - this.state = 4493; + this.state = 4247; this.partitionVal(); } } - this.state = 4498; + this.state = 4252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4499; + this.state = 4253; this.match(HiveSqlParser.RPAREN); } } @@ -23517,21 +22449,21 @@ export class HiveSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 644, HiveSqlParser.RULE_partitionVal); + this.enterRule(localContext, 580, HiveSqlParser.RULE_partitionVal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4501; + this.state = 4255; this.id_(); - this.state = 4504; + this.state = 4258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 4502; + this.state = 4256; this.match(HiveSqlParser.EQUAL); - this.state = 4503; + this.state = 4257; this.constant(); } } @@ -23554,32 +22486,32 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorSpec(): PartitionSelectorSpecContext { let localContext = new PartitionSelectorSpecContext(this.context, this.state); - this.enterRule(localContext, 646, HiveSqlParser.RULE_partitionSelectorSpec); + this.enterRule(localContext, 582, HiveSqlParser.RULE_partitionSelectorSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4506; + this.state = 4260; this.match(HiveSqlParser.LPAREN); - this.state = 4507; + this.state = 4261; this.partitionSelectorVal(); - this.state = 4512; + this.state = 4266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4508; + this.state = 4262; this.match(HiveSqlParser.COMMA); - this.state = 4509; + this.state = 4263; this.partitionSelectorVal(); } } - this.state = 4514; + this.state = 4268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4515; + this.state = 4269; this.match(HiveSqlParser.RPAREN); } } @@ -23599,18 +22531,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorVal(): PartitionSelectorValContext { let localContext = new PartitionSelectorValContext(this.context, this.state); - this.enterRule(localContext, 648, HiveSqlParser.RULE_partitionSelectorVal); + this.enterRule(localContext, 584, HiveSqlParser.RULE_partitionSelectorVal); try { this.enterOuterAlt(localContext, 1); { - this.state = 4517; + this.state = 4271; this.id_(); - this.state = 4520; + this.state = 4274; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 4518; + this.state = 4272; this.match(HiveSqlParser.KW_LIKE); } break; @@ -23621,14 +22553,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHANOREQUALTO: case HiveSqlParser.GREATERTHAN: { - this.state = 4519; + this.state = 4273; this.subQuerySelectorOperator(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4522; + this.state = 4276; this.constant(); } } @@ -23648,12 +22580,12 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext { let localContext = new SubQuerySelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 650, HiveSqlParser.RULE_subQuerySelectorOperator); + this.enterRule(localContext, 586, HiveSqlParser.RULE_subQuerySelectorOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4524; + this.state = 4278; _la = this.tokenStream.LA(1); if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); @@ -23680,12 +22612,12 @@ export class HiveSqlParser extends SQLParserBase { } public sysFuncNames(): SysFuncNamesContext { let localContext = new SysFuncNamesContext(this.context, this.state); - this.enterRule(localContext, 652, HiveSqlParser.RULE_sysFuncNames); + this.enterRule(localContext, 588, HiveSqlParser.RULE_sysFuncNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4526; + this.state = 4280; _la = this.tokenStream.LA(1); if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); @@ -23712,15 +22644,15 @@ export class HiveSqlParser extends SQLParserBase { } public id_(): Id_Context { let localContext = new Id_Context(this.context, this.state); - this.enterRule(localContext, 654, HiveSqlParser.RULE_id_); + this.enterRule(localContext, 590, HiveSqlParser.RULE_id_); try { - this.state = 4530; + this.state = 4284; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4528; + this.state = 4282; this.match(HiveSqlParser.Identifier); } break; @@ -23965,7 +22897,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 4529; + this.state = 4283; this.nonReserved(); } break; @@ -23989,21 +22921,21 @@ export class HiveSqlParser extends SQLParserBase { } public functionIdentifier(): FunctionIdentifierContext { let localContext = new FunctionIdentifierContext(this.context, this.state); - this.enterRule(localContext, 656, HiveSqlParser.RULE_functionIdentifier); + this.enterRule(localContext, 592, HiveSqlParser.RULE_functionIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4532; + this.state = 4286; this.id_(); - this.state = 4535; + this.state = 4289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 4533; + this.state = 4287; this.match(HiveSqlParser.DOT); - this.state = 4534; + this.state = 4288; localContext._fn = this.id_(); } } @@ -24026,11 +22958,11 @@ export class HiveSqlParser extends SQLParserBase { } public principalIdentifier(): PrincipalIdentifierContext { let localContext = new PrincipalIdentifierContext(this.context, this.state); - this.enterRule(localContext, 658, HiveSqlParser.RULE_principalIdentifier); + this.enterRule(localContext, 594, HiveSqlParser.RULE_principalIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 4537; + this.state = 4291; this.id_(); } } @@ -24050,12 +22982,12 @@ export class HiveSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 660, HiveSqlParser.RULE_nonReserved); + this.enterRule(localContext, 596, HiveSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4539; + this.state = 4293; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); @@ -24082,12 +23014,12 @@ export class HiveSqlParser extends SQLParserBase { } public sql11ReservedKeywordsUsedAsFunctionName(): Sql11ReservedKeywordsUsedAsFunctionNameContext { let localContext = new Sql11ReservedKeywordsUsedAsFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 662, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); + this.enterRule(localContext, 598, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4541; + this.state = 4295; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -24114,9 +23046,9 @@ export class HiveSqlParser extends SQLParserBase { } public configPropertiesItem(): ConfigPropertiesItemContext { let localContext = new ConfigPropertiesItemContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_configPropertiesItem); + this.enterRule(localContext, 600, HiveSqlParser.RULE_configPropertiesItem); try { - this.state = 4594; + this.state = 4348; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -24361,357 +23293,357 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4543; + this.state = 4297; this.id_(); } break; case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 2); { - this.state = 4544; + this.state = 4298; this.match(HiveSqlParser.KW_SELECT); } break; case HiveSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4545; + this.state = 4299; this.match(HiveSqlParser.KW_JOIN); } break; case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 4); { - this.state = 4546; + this.state = 4300; this.match(HiveSqlParser.KW_PARTITION); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 5); { - this.state = 4547; + this.state = 4301; this.match(HiveSqlParser.KW_MAP); } break; case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 6); { - this.state = 4548; + this.state = 4302; this.match(HiveSqlParser.KW_REDUCE); } break; case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 4549; + this.state = 4303; this.match(HiveSqlParser.KW_USER); } break; case HiveSqlParser.KW_PERCENT: this.enterOuterAlt(localContext, 8); { - this.state = 4550; + this.state = 4304; this.match(HiveSqlParser.KW_PERCENT); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 9); { - this.state = 4551; + this.state = 4305; this.match(HiveSqlParser.KW_INTERVAL); } break; case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 10); { - this.state = 4552; + this.state = 4306; this.match(HiveSqlParser.KW_ROWS); } break; case HiveSqlParser.KW_UNION: this.enterOuterAlt(localContext, 11); { - this.state = 4553; + this.state = 4307; this.match(HiveSqlParser.KW_UNION); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 12); { - this.state = 4554; + this.state = 4308; this.match(HiveSqlParser.KW_GROUP); } break; case HiveSqlParser.KW_MERGE: this.enterOuterAlt(localContext, 13); { - this.state = 4555; + this.state = 4309; this.match(HiveSqlParser.KW_MERGE); } break; case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 14); { - this.state = 4556; + this.state = 4310; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_FETCH: this.enterOuterAlt(localContext, 15); { - this.state = 4557; + this.state = 4311; this.match(HiveSqlParser.KW_FETCH); } break; case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 16); { - this.state = 4558; + this.state = 4312; this.match(HiveSqlParser.KW_LOCAL); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 17); { - this.state = 4559; + this.state = 4313; this.match(HiveSqlParser.KW_DROP); } break; case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 18); { - this.state = 4560; + this.state = 4314; this.match(HiveSqlParser.KW_TABLE); } break; case HiveSqlParser.KW_ON: this.enterOuterAlt(localContext, 19); { - this.state = 4561; + this.state = 4315; this.match(HiveSqlParser.KW_ON); } break; case HiveSqlParser.KW_ROW: this.enterOuterAlt(localContext, 20); { - this.state = 4562; + this.state = 4316; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 21); { - this.state = 4563; + this.state = 4317; this.match(HiveSqlParser.KW_GROUPING); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 22); { - this.state = 4564; + this.state = 4318; this.match(HiveSqlParser.KW_SET); } break; case HiveSqlParser.KW_FORCE: this.enterOuterAlt(localContext, 23); { - this.state = 4565; + this.state = 4319; this.match(HiveSqlParser.KW_FORCE); } break; case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 24); { - this.state = 4566; + this.state = 4320; this.match(HiveSqlParser.KW_START); } break; case HiveSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 25); { - this.state = 4567; + this.state = 4321; this.match(HiveSqlParser.KW_INSERT); } break; case HiveSqlParser.KW_CONF: this.enterOuterAlt(localContext, 26); { - this.state = 4568; + this.state = 4322; this.match(HiveSqlParser.KW_CONF); } break; case HiveSqlParser.KW_INTO: this.enterOuterAlt(localContext, 27); { - this.state = 4569; + this.state = 4323; this.match(HiveSqlParser.KW_INTO); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 28); { - this.state = 4570; + this.state = 4324; this.match(HiveSqlParser.KW_UNIQUE); } break; case HiveSqlParser.KW_COLUMN: this.enterOuterAlt(localContext, 29); { - this.state = 4571; + this.state = 4325; this.match(HiveSqlParser.KW_COLUMN); } break; case HiveSqlParser.KW_TRANSFORM: this.enterOuterAlt(localContext, 30); { - this.state = 4572; + this.state = 4326; this.match(HiveSqlParser.KW_TRANSFORM); } break; case HiveSqlParser.KW_DISTINCT: this.enterOuterAlt(localContext, 31); { - this.state = 4573; + this.state = 4327; this.match(HiveSqlParser.KW_DISTINCT); } break; case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 32); { - this.state = 4574; + this.state = 4328; this.match(HiveSqlParser.KW_IN); } break; case HiveSqlParser.KW_REFERENCES: this.enterOuterAlt(localContext, 33); { - this.state = 4575; + this.state = 4329; this.match(HiveSqlParser.KW_REFERENCES); } break; case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 34); { - this.state = 4576; + this.state = 4330; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case HiveSqlParser.KW_ONLY: this.enterOuterAlt(localContext, 35); { - this.state = 4577; + this.state = 4331; this.match(HiveSqlParser.KW_ONLY); } break; case HiveSqlParser.KW_END: this.enterOuterAlt(localContext, 36); { - this.state = 4578; + this.state = 4332; this.match(HiveSqlParser.KW_END); } break; case HiveSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 37); { - this.state = 4579; + this.state = 4333; this.match(HiveSqlParser.KW_FUNCTION); } break; case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 38); { - this.state = 4580; + this.state = 4334; this.match(HiveSqlParser.KW_UPDATE); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 39); { - this.state = 4581; + this.state = 4335; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 40); { - this.state = 4582; + this.state = 4336; this.match(HiveSqlParser.KW_DDL); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 41); { - this.state = 4583; + this.state = 4337; this.match(HiveSqlParser.KW_VALUES); } break; case HiveSqlParser.KW_TIME: this.enterOuterAlt(localContext, 42); { - this.state = 4584; + this.state = 4338; this.match(HiveSqlParser.KW_TIME); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 43); { - this.state = 4585; + this.state = 4339; this.match(HiveSqlParser.KW_IS); } break; case HiveSqlParser.KW_FOR: this.enterOuterAlt(localContext, 44); { - this.state = 4586; + this.state = 4340; this.match(HiveSqlParser.KW_FOR); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 45); { - this.state = 4587; + this.state = 4341; this.match(HiveSqlParser.KW_NOT); } break; case HiveSqlParser.KW_BINARY: this.enterOuterAlt(localContext, 46); { - this.state = 4588; + this.state = 4342; this.match(HiveSqlParser.KW_BINARY); } break; case HiveSqlParser.KW_USING: this.enterOuterAlt(localContext, 47); { - this.state = 4589; + this.state = 4343; this.match(HiveSqlParser.KW_USING); } break; case HiveSqlParser.KW_READS: this.enterOuterAlt(localContext, 48); { - this.state = 4590; + this.state = 4344; this.match(HiveSqlParser.KW_READS); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 49); { - this.state = 4591; + this.state = 4345; this.match(HiveSqlParser.KW_BETWEEN); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 50); { - this.state = 4592; + this.state = 4346; this.match(HiveSqlParser.KW_CURRENT); } break; case HiveSqlParser.KW_AS: this.enterOuterAlt(localContext, 51); { - this.state = 4593; + this.state = 4347; this.match(HiveSqlParser.KW_AS); } break; @@ -24735,56 +23667,56 @@ export class HiveSqlParser extends SQLParserBase { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 602, HiveSqlParser.RULE_resourcePlanDdlStatements); let _la: number; try { - this.state = 4761; + this.state = 4515; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4596; + this.state = 4350; this.match(HiveSqlParser.KW_CREATE); - this.state = 4597; + this.state = 4351; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4598; + this.state = 4352; this.match(HiveSqlParser.KW_PLAN); - this.state = 4600; + this.state = 4354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4599; + this.state = 4353; this.ifNotExists(); } } - this.state = 4611; + this.state = 4365; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4602; + this.state = 4356; localContext._name = this.id_(); - this.state = 4603; + this.state = 4357; this.match(HiveSqlParser.KW_LIKE); - this.state = 4604; + this.state = 4358; localContext._likeName = this.id_(); } break; case 2: { - this.state = 4606; + this.state = 4360; localContext._name = this.id_(); - this.state = 4609; + this.state = 4363; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4607; + this.state = 4361; this.match(HiveSqlParser.KW_WITH); - this.state = 4608; + this.state = 4362; this.rpAssignList(); } break; @@ -24797,57 +23729,57 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4613; + this.state = 4367; this.match(HiveSqlParser.KW_ALTER); - this.state = 4614; + this.state = 4368; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4615; + this.state = 4369; this.match(HiveSqlParser.KW_PLAN); - this.state = 4616; + this.state = 4370; localContext._name = this.id_(); - this.state = 4641; + this.state = 4395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 4617; + this.state = 4371; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4618; + this.state = 4372; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 4619; + this.state = 4373; this.match(HiveSqlParser.KW_SET); - this.state = 4620; + this.state = 4374; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4621; + this.state = 4375; this.match(HiveSqlParser.KW_UNSET); - this.state = 4622; + this.state = 4376; this.rpUnassign(); - this.state = 4627; + this.state = 4381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4623; + this.state = 4377; this.match(HiveSqlParser.COMMA); - this.state = 4624; + this.state = 4378; this.rpUnassign(); } } - this.state = 4629; + this.state = 4383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24855,24 +23787,24 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_RENAME: { - this.state = 4630; + this.state = 4384; this.match(HiveSqlParser.KW_RENAME); - this.state = 4631; + this.state = 4385; this.match(HiveSqlParser.KW_TO); - this.state = 4632; + this.state = 4386; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 4633; + this.state = 4387; this.activate(); - this.state = 4635; + this.state = 4389; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4634; + this.state = 4388; this.enable(); } break; @@ -24882,14 +23814,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4637; + this.state = 4391; this.enable(); - this.state = 4639; + this.state = 4393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4638; + this.state = 4392; this.activate(); } } @@ -24904,88 +23836,88 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4643; + this.state = 4397; this.match(HiveSqlParser.KW_DROP); - this.state = 4644; + this.state = 4398; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4645; + this.state = 4399; this.match(HiveSqlParser.KW_PLAN); - this.state = 4647; + this.state = 4401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4646; + this.state = 4400; this.ifExists(); } } - this.state = 4649; + this.state = 4403; localContext._name = this.id_(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4652; + this.state = 4406; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4650; + this.state = 4404; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4651; + this.state = 4405; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4654; + this.state = 4408; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 4655; + this.state = 4409; this.match(HiveSqlParser.KW_MANAGEMENT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4657; + this.state = 4411; this.match(HiveSqlParser.KW_REPLACE); - this.state = 4669; + this.state = 4423; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 4658; + this.state = 4412; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 4659; + this.state = 4413; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4660; + this.state = 4414; this.match(HiveSqlParser.KW_PLAN); - this.state = 4661; + this.state = 4415; this.match(HiveSqlParser.KW_WITH); - this.state = 4662; + this.state = 4416; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 4663; + this.state = 4417; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4664; + this.state = 4418; this.match(HiveSqlParser.KW_PLAN); - this.state = 4665; + this.state = 4419; localContext._dest = this.id_(); - this.state = 4666; + this.state = 4420; this.match(HiveSqlParser.KW_WITH); - this.state = 4667; + this.state = 4421; localContext._src = this.id_(); } break; @@ -24997,93 +23929,93 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4671; + this.state = 4425; this.match(HiveSqlParser.KW_CREATE); - this.state = 4672; + this.state = 4426; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4673; + this.state = 4427; localContext._rpName = this.id_(); - this.state = 4674; + this.state = 4428; this.match(HiveSqlParser.DOT); - this.state = 4675; + this.state = 4429; localContext._triggerName = this.id_(); - this.state = 4676; + this.state = 4430; this.match(HiveSqlParser.KW_WHEN); - this.state = 4677; + this.state = 4431; this.triggerAtomExpression(); - this.state = 4678; + this.state = 4432; this.match(HiveSqlParser.KW_DO); - this.state = 4679; + this.state = 4433; this.triggerActionExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4681; + this.state = 4435; this.match(HiveSqlParser.KW_ALTER); - this.state = 4682; + this.state = 4436; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4683; + this.state = 4437; localContext._rpName = this.id_(); - this.state = 4684; + this.state = 4438; this.match(HiveSqlParser.DOT); - this.state = 4685; + this.state = 4439; localContext._triggerName = this.id_(); - this.state = 4702; + this.state = 4456; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 4686; + this.state = 4440; this.match(HiveSqlParser.KW_WHEN); - this.state = 4687; + this.state = 4441; this.triggerAtomExpression(); - this.state = 4688; + this.state = 4442; this.match(HiveSqlParser.KW_DO); - this.state = 4689; + this.state = 4443; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4695; + this.state = 4449; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 4691; + this.state = 4445; this.match(HiveSqlParser.KW_ADD); - this.state = 4692; + this.state = 4446; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 4693; + this.state = 4447; this.match(HiveSqlParser.KW_DROP); - this.state = 4694; + this.state = 4448; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4700; + this.state = 4454; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 4697; + this.state = 4451; this.match(HiveSqlParser.KW_POOL); - this.state = 4698; + this.state = 4452; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4699; + this.state = 4453; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -25100,73 +24032,73 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4704; + this.state = 4458; this.match(HiveSqlParser.KW_DROP); - this.state = 4705; + this.state = 4459; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4706; + this.state = 4460; localContext._rpName = this.id_(); - this.state = 4707; + this.state = 4461; this.match(HiveSqlParser.DOT); - this.state = 4708; + this.state = 4462; localContext._triggerName = this.id_(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4710; + this.state = 4464; this.match(HiveSqlParser.KW_CREATE); - this.state = 4711; + this.state = 4465; this.match(HiveSqlParser.KW_POOL); - this.state = 4712; + this.state = 4466; localContext._rpName = this.id_(); - this.state = 4713; + this.state = 4467; this.match(HiveSqlParser.DOT); - this.state = 4714; + this.state = 4468; this.poolPath(); - this.state = 4715; + this.state = 4469; this.match(HiveSqlParser.KW_WITH); - this.state = 4716; + this.state = 4470; this.poolAssignList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4718; + this.state = 4472; this.match(HiveSqlParser.KW_ALTER); - this.state = 4719; + this.state = 4473; this.match(HiveSqlParser.KW_POOL); - this.state = 4720; + this.state = 4474; localContext._rpName = this.id_(); - this.state = 4721; + this.state = 4475; this.match(HiveSqlParser.DOT); - this.state = 4722; + this.state = 4476; this.poolPath(); - this.state = 4730; + this.state = 4484; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 4723; + this.state = 4477; this.match(HiveSqlParser.KW_SET); - this.state = 4724; + this.state = 4478; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4725; + this.state = 4479; this.match(HiveSqlParser.KW_UNSET); - this.state = 4726; + this.state = 4480; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4727; + this.state = 4481; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -25175,9 +24107,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4728; + this.state = 4482; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4729; + this.state = 4483; localContext._triggerName = this.id_(); } break; @@ -25189,22 +24121,22 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4732; + this.state = 4486; this.match(HiveSqlParser.KW_DROP); - this.state = 4733; + this.state = 4487; this.match(HiveSqlParser.KW_POOL); - this.state = 4734; + this.state = 4488; localContext._rpName = this.id_(); - this.state = 4735; + this.state = 4489; this.match(HiveSqlParser.DOT); - this.state = 4736; + this.state = 4490; this.poolPath(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4738; + this.state = 4492; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 58)) { this.errorHandler.recoverInline(this); @@ -25213,46 +24145,46 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4739; + this.state = 4493; localContext._mappingType = this.mappingTypes(); - this.state = 4740; + this.state = 4494; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4741; + this.state = 4495; this.match(HiveSqlParser.StringLiteral); - this.state = 4742; + this.state = 4496; this.match(HiveSqlParser.KW_IN); - this.state = 4743; + this.state = 4497; localContext._rpName = this.id_(); - this.state = 4747; + this.state = 4501; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 4744; + this.state = 4498; this.match(HiveSqlParser.KW_TO); - this.state = 4745; + this.state = 4499; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4746; + this.state = 4500; this.match(HiveSqlParser.KW_UNMANAGED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4752; + this.state = 4506; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4749; + this.state = 4503; this.match(HiveSqlParser.KW_WITH); - this.state = 4750; + this.state = 4504; this.match(HiveSqlParser.KW_ORDER); - this.state = 4751; + this.state = 4505; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -25262,17 +24194,17 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4754; + this.state = 4508; this.match(HiveSqlParser.KW_DROP); - this.state = 4755; + this.state = 4509; localContext._mappingType = this.mappingTypes(); - this.state = 4756; + this.state = 4510; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4757; + this.state = 4511; this.match(HiveSqlParser.StringLiteral); - this.state = 4758; + this.state = 4512; this.match(HiveSqlParser.KW_IN); - this.state = 4759; + this.state = 4513; localContext._rpName = this.id_(); } break; @@ -25294,12 +24226,12 @@ export class HiveSqlParser extends SQLParserBase { } public mappingTypes(): MappingTypesContext { let localContext = new MappingTypesContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_mappingTypes); + this.enterRule(localContext, 604, HiveSqlParser.RULE_mappingTypes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4763; + this.state = 4517; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 144 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -25326,32 +24258,32 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 606, HiveSqlParser.RULE_rpAssign); try { - this.state = 4772; + this.state = 4526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4765; + this.state = 4519; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4766; + this.state = 4520; this.match(HiveSqlParser.EQUAL); - this.state = 4767; + this.state = 4521; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4768; + this.state = 4522; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4769; + this.state = 4523; this.match(HiveSqlParser.KW_POOL); - this.state = 4770; + this.state = 4524; this.match(HiveSqlParser.EQUAL); - this.state = 4771; + this.state = 4525; this.poolPath(); } break; @@ -25375,26 +24307,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 608, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4774; + this.state = 4528; this.rpAssign(); - this.state = 4779; + this.state = 4533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4775; + this.state = 4529; this.match(HiveSqlParser.COMMA); - this.state = 4776; + this.state = 4530; this.rpAssign(); } } - this.state = 4781; + this.state = 4535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25416,24 +24348,24 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 610, HiveSqlParser.RULE_rpUnassign); try { - this.state = 4785; + this.state = 4539; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4782; + this.state = 4536; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4783; + this.state = 4537; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4784; + this.state = 4538; this.match(HiveSqlParser.KW_POOL); } break; @@ -25457,20 +24389,20 @@ export class HiveSqlParser extends SQLParserBase { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 612, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4787; + this.state = 4541; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 4790; + this.state = 4544; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: { - this.state = 4788; + this.state = 4542; this.match(HiveSqlParser.KW_WITH); - this.state = 4789; + this.state = 4543; this.match(HiveSqlParser.KW_REPLACE); } break; @@ -25493,12 +24425,12 @@ export class HiveSqlParser extends SQLParserBase { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 614, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4792; + this.state = 4546; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -25525,12 +24457,12 @@ export class HiveSqlParser extends SQLParserBase { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 616, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4794; + this.state = 4548; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -25555,265 +24487,9 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public year(): YearContext { - let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_year); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4796; - _la = this.tokenStream.LA(1); - if(!(_la === 392 || _la === 393)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public month(): MonthContext { - let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_month); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4798; - _la = this.tokenStream.LA(1); - if(!(_la === 208 || _la === 209)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public week(): WeekContext { - let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_week); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4800; - _la = this.tokenStream.LA(1); - if(!(_la === 381 || _la === 382)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public day(): DayContext { - let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_day); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4802; - _la = this.tokenStream.LA(1); - if(!(_la === 73 || _la === 74)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public hour(): HourContext { - let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_hour); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4804; - _la = this.tokenStream.LA(1); - if(!(_la === 148 || _la === 149)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public minute(): MinuteContext { - let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 692, HiveSqlParser.RULE_minute); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4806; - _la = this.tokenStream.LA(1); - if(!(_la === 206 || _la === 207)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public second(): SecondContext { - let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 694, HiveSqlParser.RULE_second); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4808; - _la = this.tokenStream.LA(1); - if(!(_la === 297 || _la === 298)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public decimal(): DecimalContext { - let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 696, HiveSqlParser.RULE_decimal); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4810; - _la = this.tokenStream.LA(1); - if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } public emptyColumn(): EmptyColumnContext { let localContext = new EmptyColumnContext(this.context, this.state); - this.enterRule(localContext, 698, HiveSqlParser.RULE_emptyColumn); + this.enterRule(localContext, 618, HiveSqlParser.RULE_emptyColumn); try { this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -25836,30 +24512,30 @@ export class HiveSqlParser extends SQLParserBase { } public poolPath(): PoolPathContext { let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 700, HiveSqlParser.RULE_poolPath); + this.enterRule(localContext, 620, HiveSqlParser.RULE_poolPath); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4814; + this.state = 4552; this.id_(); - this.state = 4819; + this.state = 4557; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 599, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4815; + this.state = 4553; this.match(HiveSqlParser.DOT); - this.state = 4816; + this.state = 4554; this.id_(); } } } - this.state = 4821; + this.state = 4559; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 599, this.context); } } } @@ -25879,63 +24555,63 @@ export class HiveSqlParser extends SQLParserBase { } public poolPathAllowEmpty(): PoolPathAllowEmptyContext { let localContext = new PoolPathAllowEmptyContext(this.context, this.state); - this.enterRule(localContext, 702, HiveSqlParser.RULE_poolPathAllowEmpty); + this.enterRule(localContext, 622, HiveSqlParser.RULE_poolPathAllowEmpty); try { let alternative: number; - this.state = 4839; + this.state = 4577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4822; + this.state = 4560; this.id_(); - this.state = 4827; + this.state = 4565; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4823; + this.state = 4561; this.match(HiveSqlParser.DOT); - this.state = 4824; + this.state = 4562; this.id_(); } } } - this.state = 4829; + this.state = 4567; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4830; + this.state = 4568; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 4831; + this.state = 4569; this.id_(); - this.state = 4836; + this.state = 4574; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 601, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4832; + this.state = 4570; this.match(HiveSqlParser.DOT); - this.state = 4833; + this.state = 4571; this.emptyColumn(); } } } - this.state = 4838; + this.state = 4576; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 601, this.context); } } break; @@ -25957,16 +24633,16 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 704, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 624, HiveSqlParser.RULE_triggerAtomExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4841; + this.state = 4579; this.id_(); - this.state = 4842; + this.state = 4580; this.match(HiveSqlParser.GREATERTHAN); - this.state = 4843; + this.state = 4581; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -25993,26 +24669,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 706, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 626, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 4849; + this.state = 4587; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 4845; + this.state = 4583; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4846; + this.state = 4584; this.match(HiveSqlParser.KW_MOVE); - this.state = 4847; + this.state = 4585; this.match(HiveSqlParser.KW_TO); - this.state = 4848; + this.state = 4586; this.poolPath(); } break; @@ -26036,50 +24712,50 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 708, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 628, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 4863; + this.state = 4601; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 4851; + this.state = 4589; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 4852; + this.state = 4590; this.match(HiveSqlParser.EQUAL); - this.state = 4853; + this.state = 4591; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 4854; + this.state = 4592; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4855; + this.state = 4593; this.match(HiveSqlParser.EQUAL); - this.state = 4856; + this.state = 4594; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 4857; + this.state = 4595; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 4858; + this.state = 4596; this.match(HiveSqlParser.EQUAL); - this.state = 4859; + this.state = 4597; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 4860; + this.state = 4598; this.match(HiveSqlParser.KW_PATH); - this.state = 4861; + this.state = 4599; this.match(HiveSqlParser.EQUAL); - this.state = 4862; + this.state = 4600; localContext._path = this.poolPath(); } break; @@ -26104,26 +24780,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 710, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 630, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4865; + this.state = 4603; this.poolAssign(); - this.state = 4870; + this.state = 4608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4866; + this.state = 4604; this.match(HiveSqlParser.COMMA); - this.state = 4867; + this.state = 4605; this.poolAssign(); } } - this.state = 4872; + this.state = 4610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26146,13 +24822,13 @@ export class HiveSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 128: + case 111: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 130: + case 113: return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); - case 257: + case 229: return this.selectItem_sempred(localContext as SelectItemContext, predIndex); - case 351: + case 311: return this.poolPathAllowEmpty_sempred(localContext as PoolPathAllowEmptyContext, predIndex); } return true; @@ -26187,7 +24863,7 @@ export class HiveSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,438,4874,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,438,4612,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -26241,2112 +24917,2005 @@ export class HiveSqlParser extends SQLParserBase { 7,296,2,297,7,297,2,298,7,298,2,299,7,299,2,300,7,300,2,301,7,301, 2,302,7,302,2,303,7,303,2,304,7,304,2,305,7,305,2,306,7,306,2,307, 7,307,2,308,7,308,2,309,7,309,2,310,7,310,2,311,7,311,2,312,7,312, - 2,313,7,313,2,314,7,314,2,315,7,315,2,316,7,316,2,317,7,317,2,318, - 7,318,2,319,7,319,2,320,7,320,2,321,7,321,2,322,7,322,2,323,7,323, - 2,324,7,324,2,325,7,325,2,326,7,326,2,327,7,327,2,328,7,328,2,329, - 7,329,2,330,7,330,2,331,7,331,2,332,7,332,2,333,7,333,2,334,7,334, - 2,335,7,335,2,336,7,336,2,337,7,337,2,338,7,338,2,339,7,339,2,340, - 7,340,2,341,7,341,2,342,7,342,2,343,7,343,2,344,7,344,2,345,7,345, - 2,346,7,346,2,347,7,347,2,348,7,348,2,349,7,349,2,350,7,350,2,351, - 7,351,2,352,7,352,2,353,7,353,2,354,7,354,2,355,7,355,1,0,5,0,714, - 8,0,10,0,12,0,717,9,0,1,0,1,0,1,1,1,1,3,1,723,8,1,1,1,3,1,726,8, - 1,1,2,1,2,5,2,730,8,2,10,2,12,2,733,9,2,1,2,1,2,1,2,3,2,738,8,2, - 1,3,1,3,1,3,1,3,1,3,3,3,745,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, - 3,3,755,8,3,1,3,3,3,758,8,3,1,3,1,3,3,3,762,8,3,1,4,1,4,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,777,8,5,1,5,1,5,1,5,1,5, - 1,5,3,5,784,8,5,1,5,1,5,1,5,1,5,3,5,790,8,5,1,5,1,5,1,5,3,5,795, - 8,5,1,5,1,5,1,5,3,5,800,8,5,1,5,3,5,803,8,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,5,5, - 825,8,5,10,5,12,5,828,9,5,1,5,1,5,5,5,832,8,5,10,5,12,5,835,9,5, - 3,5,837,8,5,1,6,1,6,1,6,3,6,842,8,6,1,6,1,6,1,6,3,6,847,8,6,1,6, - 1,6,1,6,1,6,3,6,853,8,6,1,7,1,7,3,7,857,8,7,1,7,1,7,1,7,1,7,1,7, - 1,8,1,8,1,8,1,8,1,8,1,8,3,8,870,8,8,1,9,1,9,3,9,874,8,9,1,9,1,9, - 3,9,878,8,9,1,9,1,9,1,9,3,9,883,8,9,1,10,1,10,1,10,1,10,1,10,3,10, - 890,8,10,1,10,1,10,3,10,894,8,10,1,11,1,11,1,11,3,11,899,8,11,1, - 12,1,12,1,12,1,12,1,12,3,12,906,8,12,1,12,1,12,3,12,910,8,12,1,13, - 1,13,1,13,3,13,915,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,4,14,961,8,14, - 11,14,12,14,962,1,14,1,14,1,14,4,14,968,8,14,11,14,12,14,969,1,14, - 1,14,1,14,3,14,975,8,14,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1,17, - 1,17,1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21,1,21, - 3,21,998,8,21,1,21,1,21,3,21,1002,8,21,1,21,1,21,3,21,1006,8,21, - 1,21,3,21,1009,8,21,1,21,1,21,3,21,1013,8,21,1,21,1,21,1,21,3,21, - 1018,8,21,1,21,1,21,1,21,1,21,3,21,1024,8,21,1,21,1,21,3,21,1028, - 8,21,1,21,1,21,1,21,1,21,3,21,1034,8,21,3,21,1036,8,21,1,22,1,22, - 1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24,1047,8,24,1,24,1,24,3,24, - 1051,8,24,1,25,1,25,1,25,1,26,1,26,3,26,1058,8,26,1,26,1,26,1,26, - 1,26,1,26,1,26,3,26,1066,8,26,1,26,3,26,1069,8,26,1,27,1,27,1,27, - 3,27,1074,8,27,1,27,1,27,3,27,1078,8,27,1,27,3,27,1081,8,27,1,28, - 1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29,1091,8,29,1,29,1,29,1,29, - 1,29,1,29,1,29,3,29,1099,8,29,5,29,1101,8,29,10,29,12,29,1104,9, - 29,3,29,1106,8,29,1,30,1,30,3,30,1110,8,30,1,31,1,31,3,31,1114,8, - 31,1,31,3,31,1117,8,31,1,32,1,32,1,32,3,32,1122,8,32,1,32,1,32,1, - 32,1,32,3,32,1128,8,32,1,32,1,32,1,32,3,32,1133,8,32,1,32,1,32,1, - 32,3,32,1138,8,32,1,32,1,32,3,32,1142,8,32,1,33,1,33,1,33,1,33,1, - 33,1,33,1,33,1,33,1,33,3,33,1153,8,33,3,33,1155,8,33,1,33,1,33,3, - 33,1159,8,33,1,34,1,34,1,35,1,35,1,36,1,36,1,36,1,36,3,36,1169,8, - 36,1,36,1,36,3,36,1173,8,36,1,36,1,36,1,36,1,36,3,36,1179,8,36,1, - 36,3,36,1182,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1189,8,36,1,36,1, - 36,1,36,3,36,1194,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1202,8, - 36,1,36,1,36,1,36,3,36,1207,8,36,1,36,1,36,3,36,1211,8,36,1,36,1, - 36,1,36,1,36,1,36,1,36,3,36,1219,8,36,1,36,1,36,1,36,3,36,1224,8, - 36,1,36,1,36,1,36,1,36,3,36,1230,8,36,1,36,1,36,1,36,1,36,3,36,1236, - 8,36,1,36,3,36,1239,8,36,1,36,3,36,1242,8,36,1,36,3,36,1245,8,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1254,8,36,1,36,1,36,1,36, - 1,36,1,36,1,36,3,36,1262,8,36,1,36,1,36,1,36,3,36,1267,8,36,1,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1275,8,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1282,8,36,1,36,3,36,1285,8,36,1,36,3,36,1288,8,36,3,36,1290, - 8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1301,8,36, - 3,36,1303,8,36,1,36,3,36,1306,8,36,1,36,3,36,1309,8,36,1,36,3,36, - 1312,8,36,1,36,3,36,1315,8,36,1,36,3,36,1318,8,36,3,36,1320,8,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1332,8,36, - 1,36,1,36,1,36,1,36,3,36,1338,8,36,1,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1346,8,36,3,36,1348,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,3,37,1358,8,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39, - 1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,43,1,43, - 1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,3,45,1391,8,45,1,45, - 1,45,1,45,3,45,1396,8,45,1,46,1,46,3,46,1400,8,46,1,46,1,46,3,46, - 1404,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1411,8,47,1,47,1,47,1,47, - 5,47,1416,8,47,10,47,12,47,1419,9,47,1,47,1,47,1,47,3,47,1424,8, - 47,1,48,1,48,3,48,1428,8,48,1,48,3,48,1431,8,48,1,48,1,48,1,48,5, - 48,1436,8,48,10,48,12,48,1439,9,48,1,48,1,48,1,48,1,49,1,49,1,49, - 1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52, - 1,52,3,52,1461,8,52,1,53,1,53,1,53,3,53,1466,8,53,1,53,1,53,3,53, - 1470,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55,1478,8,55,1,56,1,56, - 1,56,1,57,1,57,1,57,1,57,3,57,1487,8,57,1,57,1,57,1,57,1,57,1,57, - 3,57,1494,8,57,1,58,1,58,1,58,1,58,3,58,1500,8,58,1,58,1,58,1,58, - 1,58,1,58,3,58,1507,8,58,1,58,3,58,1510,8,58,1,58,1,58,1,58,1,58, - 3,58,1516,8,58,1,59,1,59,1,59,5,59,1521,8,59,10,59,12,59,1524,9, - 59,1,60,1,60,1,60,1,60,1,60,3,60,1531,8,60,1,61,1,61,1,62,1,62,1, - 62,5,62,1538,8,62,10,62,12,62,1541,9,62,1,63,1,63,1,63,1,63,1,63, - 1,63,3,63,1549,8,63,1,64,1,64,1,64,1,64,1,64,3,64,1556,8,64,1,65, - 1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,68,1,68, - 1,68,1,68,1,69,1,69,3,69,1576,8,69,1,69,1,69,1,69,1,69,1,69,3,69, - 1583,8,69,3,69,1585,8,69,1,70,1,70,1,70,5,70,1590,8,70,10,70,12, - 70,1593,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1,73,3,73,1602,8,73,1, - 73,1,73,1,73,1,73,1,73,1,73,3,73,1610,8,73,1,74,1,74,3,74,1614,8, - 74,1,74,1,74,3,74,1618,8,74,1,74,1,74,1,75,1,75,1,75,1,76,1,76,1, - 76,1,76,1,76,1,76,3,76,1631,8,76,1,76,1,76,1,76,1,77,1,77,1,77,1, - 77,3,77,1640,8,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, - 78,1,78,1,78,1,78,1,78,3,78,1656,8,78,1,78,1,78,3,78,1660,8,78,1, - 78,1,78,1,78,3,78,1665,8,78,1,78,1,78,1,78,3,78,1670,8,78,1,78,3, - 78,1673,8,78,1,78,3,78,1676,8,78,1,78,3,78,1679,8,78,1,78,3,78,1682, - 8,78,1,78,3,78,1685,8,78,1,79,1,79,1,79,3,79,1690,8,79,1,79,1,79, - 1,79,1,79,1,80,1,80,1,80,3,80,1699,8,80,1,80,1,80,3,80,1703,8,80, - 1,80,1,80,1,80,1,80,1,80,3,80,1710,8,80,1,80,3,80,1713,8,80,1,80, - 3,80,1716,8,80,1,80,3,80,1719,8,80,1,80,1,80,1,80,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,3,81,1731,8,81,1,81,1,81,1,82,1,82,3,82,1737, - 8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,85,1,85,1,85, - 1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,3,87, - 1763,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88,1771,8,88,1,88,1,88, - 3,88,1775,8,88,1,88,3,88,1778,8,88,1,88,3,88,1781,8,88,1,88,3,88, - 1784,8,88,1,88,3,88,1787,8,88,1,88,3,88,1790,8,88,1,88,3,88,1793, - 8,88,1,88,3,88,1796,8,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,3,89, - 1805,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1815,8,90, - 1,90,3,90,1818,8,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92, - 1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,3,93,1838,8,93,1,94, - 1,94,1,94,1,94,3,94,1844,8,94,1,94,1,94,1,94,1,94,3,94,1850,8,94, - 1,94,3,94,1853,8,94,3,94,1855,8,94,1,95,1,95,1,95,1,95,1,96,3,96, - 1862,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1869,8,97,1,98,1,98,1,98, - 1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100,3,100,1882,8,100,1, - 100,1,100,1,100,3,100,1887,8,100,1,100,1,100,1,101,1,101,1,101,5, - 101,1894,8,101,10,101,12,101,1897,9,101,1,102,1,102,1,102,5,102, - 1902,8,102,10,102,12,102,1905,9,102,1,103,1,103,1,103,1,103,1,103, - 3,103,1912,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,3,103,1925,8,103,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,3,104,1938,8,104,1,104,1,104, - 1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,3,105,1954,8,105,1,106,1,106,3,106,1958,8,106,1,107,1,107, - 1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 3,109,1973,8,109,1,110,1,110,1,110,1,110,3,110,1979,8,110,1,110, - 3,110,1982,8,110,1,110,3,110,1985,8,110,1,110,3,110,1988,8,110,1, - 110,3,110,1991,8,110,1,111,1,111,3,111,1995,8,111,1,112,1,112,1, - 112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,5,114,2008,8, - 114,10,114,12,114,2011,9,114,3,114,2013,8,114,1,115,1,115,1,115, - 1,115,1,116,1,116,1,116,5,116,2022,8,116,10,116,12,116,2025,9,116, - 1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 3,118,2038,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120, - 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,122,1,122, - 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,3,123,2072,8,123,1,123,1,123,1,123,1,123,1,123,1,123, - 3,123,2080,8,123,1,123,1,123,1,123,3,123,2085,8,123,1,123,1,123, - 1,123,1,123,1,123,1,123,3,123,2093,8,123,1,123,1,123,1,123,3,123, - 2098,8,123,1,123,1,123,1,123,3,123,2103,8,123,1,124,1,124,1,124, - 5,124,2108,8,124,10,124,12,124,2111,9,124,1,125,1,125,1,125,5,125, - 2116,8,125,10,125,12,125,2119,9,125,1,126,1,126,1,126,5,126,2124, - 8,126,10,126,12,126,2127,9,126,1,127,1,127,1,127,5,127,2132,8,127, - 10,127,12,127,2135,9,127,1,128,1,128,1,128,3,128,2140,8,128,1,129, - 1,129,1,130,1,130,1,130,3,130,2147,8,130,1,131,1,131,1,132,1,132, - 1,132,1,132,1,132,1,132,3,132,2157,8,132,5,132,2159,8,132,10,132, - 12,132,2162,9,132,1,133,1,133,1,133,5,133,2167,8,133,10,133,12,133, - 2170,9,133,1,134,1,134,1,134,1,134,1,135,1,135,3,135,2178,8,135, - 1,135,3,135,2181,8,135,1,136,1,136,3,136,2185,8,136,1,137,1,137, - 1,138,1,138,1,138,3,138,2192,8,138,1,139,1,139,1,140,1,140,3,140, - 2198,8,140,1,140,1,140,3,140,2202,8,140,1,141,1,141,1,141,1,141, - 3,141,2208,8,141,1,142,1,142,3,142,2212,8,142,1,143,1,143,1,143, - 1,144,1,144,1,144,1,144,1,144,1,145,1,145,3,145,2224,8,145,1,145, - 1,145,1,145,1,145,1,145,1,145,1,145,3,145,2233,8,145,1,146,1,146, - 1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,2244,8,146,1,147, - 1,147,3,147,2248,8,147,1,148,1,148,1,148,5,148,2253,8,148,10,148, - 12,148,2256,9,148,1,149,1,149,1,149,1,149,1,150,1,150,1,150,5,150, - 2265,8,150,10,150,12,150,2268,9,150,1,151,1,151,1,152,1,152,1,152, - 1,153,1,153,3,153,2277,8,153,1,153,3,153,2280,8,153,1,154,1,154, - 1,154,5,154,2285,8,154,10,154,12,154,2288,9,154,1,155,1,155,1,155, - 3,155,2293,8,155,1,156,1,156,3,156,2297,8,156,1,156,3,156,2300,8, - 156,1,156,3,156,2303,8,156,1,157,1,157,1,157,1,157,3,157,2309,8, - 157,1,158,1,158,3,158,2313,8,158,1,159,1,159,3,159,2317,8,159,1, - 160,1,160,1,160,3,160,2322,8,160,1,160,1,160,3,160,2326,8,160,1, - 161,1,161,3,161,2330,8,161,1,162,1,162,3,162,2334,8,162,1,162,1, - 162,1,162,1,162,1,162,1,162,3,162,2342,8,162,1,163,1,163,3,163,2346, - 8,163,1,163,1,163,3,163,2350,8,163,1,164,1,164,3,164,2354,8,164, - 1,165,1,165,3,165,2358,8,165,1,165,1,165,1,165,1,165,1,165,1,165, - 3,165,2366,8,165,1,166,1,166,3,166,2370,8,166,1,166,1,166,3,166, - 2374,8,166,1,167,1,167,1,167,1,167,1,167,1,167,3,167,2382,8,167, - 1,168,1,168,1,168,3,168,2387,8,168,1,169,1,169,1,169,3,169,2392, - 8,169,1,170,1,170,3,170,2396,8,170,1,171,1,171,3,171,2400,8,171, - 1,172,1,172,1,172,1,172,1,172,3,172,2407,8,172,1,173,1,173,1,174, - 1,174,1,174,5,174,2414,8,174,10,174,12,174,2417,9,174,1,175,1,175, - 1,175,1,175,1,175,3,175,2424,8,175,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,1,176,1,176,1,176,3,176,2436,8,176,1,176,1,176,1,176, - 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,3,176,2454,8,176,1,176,3,176,2457,8,176,1,176,1,176, - 1,176,1,176,3,176,2463,8,176,1,177,1,177,1,177,1,177,1,177,1,178, - 1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 1,180,1,180,1,180,1,180,1,180,1,181,1,181,3,181,2489,8,181,1,182, - 3,182,2492,8,182,1,182,1,182,1,183,1,183,3,183,2498,8,183,1,184, - 1,184,1,184,1,184,5,184,2504,8,184,10,184,12,184,2507,9,184,1,185, - 1,185,1,185,1,185,1,185,3,185,2514,8,185,1,185,1,185,1,185,1,185, - 1,185,1,186,1,186,1,186,1,186,5,186,2525,8,186,10,186,12,186,2528, - 9,186,1,187,1,187,1,187,1,187,3,187,2534,8,187,1,187,3,187,2537, - 8,187,1,187,3,187,2540,8,187,1,187,3,187,2543,8,187,1,187,3,187, - 2546,8,187,1,187,3,187,2549,8,187,1,187,3,187,2552,8,187,1,187,3, - 187,2555,8,187,1,187,3,187,2558,8,187,1,187,3,187,2561,8,187,1,187, - 3,187,2564,8,187,1,187,1,187,1,187,3,187,2569,8,187,1,187,3,187, - 2572,8,187,1,187,3,187,2575,8,187,1,187,3,187,2578,8,187,1,187,3, - 187,2581,8,187,1,187,3,187,2584,8,187,1,187,3,187,2587,8,187,1,187, - 3,187,2590,8,187,1,187,3,187,2593,8,187,1,187,3,187,2596,8,187,1, - 187,3,187,2599,8,187,3,187,2601,8,187,1,188,1,188,1,188,1,188,3, - 188,2607,8,188,1,189,1,189,3,189,2611,8,189,1,189,3,189,2614,8,189, - 1,189,3,189,2617,8,189,1,189,3,189,2620,8,189,1,189,3,189,2623,8, - 189,1,189,3,189,2626,8,189,1,189,1,189,1,189,1,189,1,189,3,189,2633, - 8,189,1,190,1,190,3,190,2637,8,190,1,190,3,190,2640,8,190,1,190, - 3,190,2643,8,190,1,190,3,190,2646,8,190,1,190,3,190,2649,8,190,1, - 190,3,190,2652,8,190,1,191,1,191,1,191,4,191,2657,8,191,11,191,12, - 191,2658,1,192,3,192,2662,8,192,1,192,1,192,1,193,1,193,1,193,1, - 193,3,193,2670,8,193,1,193,1,193,3,193,2674,8,193,1,193,1,193,1, - 193,1,193,1,193,3,193,2681,8,193,3,193,2683,8,193,1,194,3,194,2686, - 8,194,1,194,1,194,1,194,3,194,2691,8,194,1,194,3,194,2694,8,194, - 1,194,1,194,3,194,2698,8,194,1,195,1,195,1,195,3,195,2703,8,195, - 1,195,1,195,1,195,1,195,3,195,2709,8,195,1,196,1,196,1,196,1,196, - 1,197,1,197,3,197,2717,8,197,1,198,1,198,1,198,1,198,5,198,2723, - 8,198,10,198,12,198,2726,9,198,1,199,1,199,1,199,1,199,1,199,5,199, - 2733,8,199,10,199,12,199,2736,9,199,3,199,2738,8,199,1,199,1,199, - 3,199,2742,8,199,1,199,1,199,3,199,2746,8,199,1,199,1,199,1,199, - 3,199,2751,8,199,1,200,1,200,1,200,1,200,1,200,3,200,2758,8,200, - 1,201,1,201,5,201,2762,8,201,10,201,12,201,2765,9,201,1,201,3,201, - 2768,8,201,1,202,1,202,1,202,1,202,1,202,3,202,2775,8,202,1,202, - 1,202,1,202,3,202,2780,8,202,1,202,1,202,1,202,1,203,1,203,1,203, - 1,203,1,203,1,203,1,203,1,203,3,203,2793,8,203,1,204,1,204,1,204, - 1,204,1,204,1,204,3,204,2801,8,204,1,205,1,205,1,205,1,206,1,206, - 1,206,1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,3,208,2820,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,3,208,2830,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,3,208,2843,8,208,1,209,1,209,1,209,1,209, - 1,209,1,209,1,209,1,209,3,209,2853,8,209,1,209,1,209,3,209,2857, - 8,209,4,209,2859,8,209,11,209,12,209,2860,1,209,1,209,5,209,2865, - 8,209,10,209,12,209,2868,9,209,1,209,1,209,5,209,2872,8,209,10,209, - 12,209,2875,9,209,1,209,1,209,5,209,2879,8,209,10,209,12,209,2882, - 9,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,2890,8,209,1,209, - 1,209,1,209,1,209,1,209,3,209,2897,8,209,1,209,1,209,1,209,1,209, - 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 1,209,1,209,1,209,3,209,2917,8,209,1,209,3,209,2920,8,209,1,209, - 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 3,209,2934,8,209,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,1,210,1,210,1,210,3,210,2949,8,210,1,210,1,210,3,210, - 2953,8,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,1,210,1,210,1,210,1,210,1,210,5,210,2971,8,210,10,210, - 12,210,2974,9,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,3,210,2985,8,210,1,210,1,210,1,210,1,210,3,210,2991,8,210, - 1,210,3,210,2994,8,210,1,210,3,210,2997,8,210,1,210,1,210,1,210, - 1,210,3,210,3003,8,210,1,210,1,210,1,210,1,210,3,210,3009,8,210, - 1,210,1,210,1,210,1,210,1,210,3,210,3016,8,210,1,210,1,210,1,210, - 1,210,1,210,1,210,3,210,3024,8,210,1,210,1,210,1,210,1,210,3,210, - 3030,8,210,1,210,1,210,3,210,3034,8,210,1,210,1,210,1,210,3,210, - 3039,8,210,1,210,3,210,3042,8,210,1,210,1,210,3,210,3046,8,210,1, - 210,1,210,1,210,1,210,1,210,3,210,3053,8,210,1,210,1,210,1,210,3, - 210,3058,8,210,1,210,1,210,1,210,3,210,3063,8,210,1,210,3,210,3066, - 8,210,3,210,3068,8,210,1,211,1,211,1,211,1,211,1,211,1,211,3,211, - 3076,8,211,1,211,1,211,1,211,1,211,1,211,1,211,3,211,3084,8,211, - 1,211,1,211,3,211,3088,8,211,4,211,3090,8,211,11,211,12,211,3091, - 1,211,1,211,3,211,3096,8,211,1,212,1,212,1,212,1,212,1,212,1,212, - 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,3,212,3113, - 8,212,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,3,213,3130,8,213,1,214,1,214,1,214, - 1,215,1,215,3,215,3137,8,215,1,215,1,215,1,215,1,215,1,215,5,215, - 3144,8,215,10,215,12,215,3147,9,215,1,215,1,215,3,215,3151,8,215, - 1,215,3,215,3154,8,215,1,215,3,215,3157,8,215,1,216,1,216,3,216, - 3161,8,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,1,217,1,217,3,217,3176,8,217,1,217,1,217,1,218,1,218, - 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3190,8,218, - 1,218,3,218,3193,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219, - 1,219,1,219,3,219,3204,8,219,1,220,1,220,3,220,3208,8,220,1,220, - 3,220,3211,8,220,1,220,3,220,3214,8,220,1,220,1,220,3,220,3218,8, - 220,1,220,1,220,1,220,3,220,3223,8,220,1,220,3,220,3226,8,220,1, - 220,3,220,3229,8,220,1,220,3,220,3232,8,220,1,220,3,220,3235,8,220, - 1,220,3,220,3238,8,220,1,220,1,220,1,220,1,220,3,220,3244,8,220, - 1,220,3,220,3247,8,220,1,220,3,220,3250,8,220,1,220,3,220,3253,8, - 220,1,220,3,220,3256,8,220,1,220,3,220,3259,8,220,1,220,3,220,3262, - 8,220,1,220,3,220,3265,8,220,1,220,3,220,3268,8,220,1,220,3,220, - 3271,8,220,1,220,1,220,3,220,3275,8,220,3,220,3277,8,220,1,220,1, - 220,1,220,1,220,3,220,3283,8,220,1,220,1,220,1,220,3,220,3288,8, - 220,1,220,3,220,3291,8,220,1,220,3,220,3294,8,220,1,220,3,220,3297, - 8,220,1,220,3,220,3300,8,220,1,220,1,220,1,220,1,220,3,220,3306, - 8,220,1,220,3,220,3309,8,220,1,220,3,220,3312,8,220,1,220,3,220, - 3315,8,220,1,220,3,220,3318,8,220,1,220,3,220,3321,8,220,1,220,3, - 220,3324,8,220,1,220,3,220,3327,8,220,1,220,3,220,3330,8,220,1,220, - 3,220,3333,8,220,1,220,1,220,3,220,3337,8,220,3,220,3339,8,220,3, - 220,3341,8,220,1,221,1,221,1,221,3,221,3346,8,221,1,221,1,221,1, - 221,3,221,3351,8,221,1,221,1,221,3,221,3355,8,221,1,221,1,221,3, - 221,3359,8,221,1,221,1,221,1,221,3,221,3364,8,221,1,222,1,222,1, - 222,3,222,3369,8,222,1,222,1,222,1,223,1,223,1,223,5,223,3376,8, - 223,10,223,12,223,3379,9,223,1,223,1,223,1,224,1,224,1,224,5,224, - 3386,8,224,10,224,12,224,3389,9,224,1,225,1,225,1,225,5,225,3394, - 8,225,10,225,12,225,3397,9,225,1,226,1,226,1,226,1,227,1,227,1,227, - 1,227,4,227,3406,8,227,11,227,12,227,3407,1,227,3,227,3411,8,227, - 1,228,1,228,5,228,3415,8,228,10,228,12,228,3418,9,228,1,228,1,228, - 5,228,3422,8,228,10,228,12,228,3425,9,228,1,228,1,228,5,228,3429, - 8,228,10,228,12,228,3432,9,228,1,228,1,228,5,228,3436,8,228,10,228, - 12,228,3439,9,228,1,228,1,228,1,228,1,228,3,228,3445,8,228,1,229, - 1,229,1,229,1,229,1,229,1,229,1,229,1,229,3,229,3455,8,229,3,229, - 3457,8,229,1,229,1,229,3,229,3461,8,229,5,229,3463,8,229,10,229, - 12,229,3466,9,229,1,230,1,230,1,230,1,230,3,230,3472,8,230,1,230, - 5,230,3475,8,230,10,230,12,230,3478,9,230,1,231,3,231,3481,8,231, - 1,231,1,231,3,231,3485,8,231,1,231,3,231,3488,8,231,1,231,3,231, - 3491,8,231,1,231,1,231,1,231,1,231,1,232,1,232,1,232,1,232,1,232, - 3,232,3502,8,232,1,232,1,232,3,232,3506,8,232,3,232,3508,8,232,1, - 232,3,232,3511,8,232,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1, - 233,1,233,5,233,3522,8,233,10,233,12,233,3525,9,233,3,233,3527,8, - 233,1,233,3,233,3530,8,233,1,233,1,233,1,233,1,233,1,233,1,233,1, - 233,1,233,5,233,3540,8,233,10,233,12,233,3543,9,233,3,233,3545,8, - 233,1,233,1,233,1,233,1,233,1,233,3,233,3552,8,233,1,233,1,233,1, - 233,1,233,1,233,5,233,3559,8,233,10,233,12,233,3562,9,233,1,233, - 1,233,3,233,3566,8,233,3,233,3568,8,233,3,233,3570,8,233,1,234,1, - 234,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235, - 1,235,5,235,3585,8,235,10,235,12,235,3588,9,235,3,235,3590,8,235, - 1,235,1,235,1,235,1,235,1,235,1,235,3,235,3598,8,235,1,235,3,235, - 3601,8,235,1,236,1,236,3,236,3605,8,236,1,236,3,236,3608,8,236,1, - 236,3,236,3611,8,236,1,236,3,236,3614,8,236,1,236,3,236,3617,8,236, - 1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,3,237, - 3629,8,237,1,238,1,238,1,239,1,239,1,240,1,240,3,240,3637,8,240, - 1,241,1,241,1,241,1,241,1,241,3,241,3644,8,241,1,241,3,241,3647, - 8,241,1,242,1,242,1,242,1,242,1,242,3,242,3654,8,242,1,242,3,242, - 3657,8,242,1,243,1,243,1,243,3,243,3662,8,243,1,243,1,243,1,244, - 1,244,1,244,3,244,3669,8,244,1,244,1,244,1,245,1,245,1,245,1,245, - 3,245,3677,8,245,1,245,1,245,1,246,1,246,3,246,3683,8,246,1,246, - 1,246,1,246,3,246,3688,8,246,1,246,1,246,3,246,3692,8,246,1,247, - 1,247,1,247,3,247,3697,8,247,1,248,1,248,3,248,3701,8,248,1,249, - 1,249,1,249,1,249,1,249,3,249,3708,8,249,1,249,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,1,249,1,249,5,249,3720,8,249,10,249,12,249, - 3723,9,249,3,249,3725,8,249,1,249,1,249,1,250,1,250,1,250,3,250, - 3732,8,250,1,251,1,251,1,251,1,251,5,251,3738,8,251,10,251,12,251, - 3741,9,251,1,251,1,251,1,251,1,251,1,251,5,251,3748,8,251,10,251, - 12,251,3751,9,251,3,251,3753,8,251,1,252,1,252,1,252,1,252,1,252, - 1,253,1,253,3,253,3762,8,253,1,253,1,253,1,253,1,253,1,253,5,253, - 3769,8,253,10,253,12,253,3772,9,253,3,253,3774,8,253,1,253,1,253, - 1,254,1,254,3,254,3780,8,254,1,254,3,254,3783,8,254,1,254,1,254, - 1,254,3,254,3788,8,254,1,254,3,254,3791,8,254,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,3804,8,255, - 1,255,1,255,1,255,1,255,3,255,3810,8,255,3,255,3812,8,255,1,255, - 1,255,1,255,1,256,1,256,1,256,5,256,3820,8,256,10,256,12,256,3823, - 9,256,1,257,1,257,1,257,3,257,3828,8,257,1,257,3,257,3831,8,257, - 1,257,1,257,1,257,1,257,1,257,1,257,5,257,3839,8,257,10,257,12,257, - 3842,9,257,1,257,1,257,3,257,3846,8,257,1,257,1,257,3,257,3850,8, - 257,1,258,1,258,1,259,1,259,1,260,1,260,1,260,1,260,1,260,1,260, - 1,260,1,260,1,260,1,260,3,260,3866,8,260,1,260,1,260,1,260,1,260, - 3,260,3872,8,260,3,260,3874,8,260,1,260,1,260,1,260,1,261,1,261, - 3,261,3881,8,261,1,262,1,262,1,262,5,262,3886,8,262,10,262,12,262, - 3889,9,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, - 5,263,3900,8,263,10,263,12,263,3903,9,263,1,264,1,264,1,264,3,264, - 3908,8,264,1,264,3,264,3911,8,264,1,264,3,264,3914,8,264,1,264,3, - 264,3917,8,264,1,265,1,265,1,265,1,265,1,265,1,265,1,265,3,265,3926, - 8,265,1,265,1,265,1,265,1,265,1,265,3,265,3933,8,265,1,266,1,266, - 1,266,1,266,3,266,3939,8,266,1,267,1,267,1,267,1,267,1,267,1,267, - 1,267,3,267,3948,8,267,1,268,1,268,3,268,3952,8,268,1,268,1,268, - 1,268,1,268,5,268,3958,8,268,10,268,12,268,3961,9,268,1,268,1,268, - 1,269,1,269,1,269,1,269,1,269,3,269,3970,8,269,1,269,1,269,1,269, - 1,269,1,269,1,269,5,269,3978,8,269,10,269,12,269,3981,9,269,1,269, - 1,269,3,269,3985,8,269,1,270,1,270,3,270,3989,8,270,1,270,1,270, - 5,270,3993,8,270,10,270,12,270,3996,9,270,1,270,1,270,3,270,4000, - 8,270,1,271,1,271,1,271,3,271,4005,8,271,1,272,1,272,1,272,1,273, - 1,273,3,273,4012,8,273,1,274,1,274,3,274,4016,8,274,1,274,3,274, - 4019,8,274,1,274,1,274,1,274,3,274,4024,8,274,1,274,3,274,4027,8, - 274,5,274,4029,8,274,10,274,12,274,4032,9,274,1,275,1,275,3,275, - 4036,8,275,1,276,1,276,1,276,1,276,1,277,1,277,1,277,4,277,4045, - 8,277,11,277,12,277,4046,3,277,4049,8,277,1,278,1,278,1,278,1,278, - 1,278,5,278,4056,8,278,10,278,12,278,4059,9,278,1,279,1,279,1,279, - 1,279,1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,282,1,282, - 1,282,1,282,1,282,1,282,5,282,4079,8,282,10,282,12,282,4082,9,282, - 1,282,1,282,1,282,1,282,1,282,5,282,4089,8,282,10,282,12,282,4092, - 9,282,3,282,4094,8,282,1,283,1,283,1,283,1,283,1,283,3,283,4101, - 8,283,1,283,3,283,4104,8,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,3,283,4114,8,283,1,283,1,283,1,283,5,283,4119,8,283, - 10,283,12,283,4122,9,283,3,283,4124,8,283,3,283,4126,8,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4137,8,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4147,8,283, - 3,283,4149,8,283,1,284,1,284,1,284,1,285,1,285,1,286,1,286,3,286, - 4158,8,286,1,287,1,287,1,287,3,287,4163,8,287,1,288,1,288,1,288, - 1,288,1,288,1,288,1,288,3,288,4172,8,288,1,288,1,288,1,289,1,289, - 1,289,1,289,1,289,1,289,1,289,4,289,4183,8,289,11,289,12,289,4184, - 1,289,1,289,3,289,4189,8,289,1,289,1,289,1,290,1,290,1,290,1,290, - 1,290,1,290,4,290,4199,8,290,11,290,12,290,4200,1,290,1,290,3,290, - 4205,8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,3,291,4214, - 8,291,1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4233,8,293,1,294, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, - 1,294,1,294,5,294,4249,8,294,10,294,12,294,4252,9,294,1,294,1,294, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,3,294,4263,8,294,1,295, - 1,295,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296, - 1,296,3,296,4278,8,296,1,296,1,296,3,296,4282,8,296,1,297,1,297, - 1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297, - 1,297,3,297,4298,8,297,1,298,1,298,1,298,5,298,4303,8,298,10,298, - 12,298,4306,9,298,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,3,299,4319,8,299,1,300,5,300,4322,8,300,10,300, - 12,300,4325,9,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,5,300, - 4334,8,300,10,300,12,300,4337,9,300,1,301,1,301,1,301,5,301,4342, - 8,301,10,301,12,301,4345,9,301,1,302,1,302,1,302,5,302,4350,8,302, - 10,302,12,302,4353,9,302,1,303,1,303,1,303,5,303,4358,8,303,10,303, - 12,303,4361,9,303,1,304,1,304,1,304,5,304,4366,8,304,10,304,12,304, - 4369,9,304,1,305,1,305,1,305,5,305,4374,8,305,10,305,12,305,4377, - 9,305,1,306,1,306,1,306,5,306,4382,8,306,10,306,12,306,4385,9,306, - 1,307,1,307,1,308,1,308,1,308,1,308,1,309,1,309,3,309,4395,8,309, - 1,309,1,309,3,309,4399,8,309,1,310,1,310,1,310,1,310,1,310,1,310, - 3,310,4407,8,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, - 1,311,1,311,1,311,1,311,1,311,1,311,3,311,4423,8,311,1,312,1,312, - 3,312,4427,8,312,1,313,1,313,1,313,3,313,4432,8,313,1,314,1,314, - 1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,3,315,4445, - 8,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,5,316,4454,8,316, - 10,316,12,316,4457,9,316,1,317,1,317,1,317,1,317,1,317,1,317,3,317, - 4465,8,317,1,318,5,318,4468,8,318,10,318,12,318,4471,9,318,1,318, - 1,318,1,318,3,318,4476,8,318,1,319,1,319,1,319,5,319,4481,8,319, - 10,319,12,319,4484,9,319,1,320,1,320,3,320,4488,8,320,1,321,1,321, - 1,321,1,321,1,321,5,321,4495,8,321,10,321,12,321,4498,9,321,1,321, - 1,321,1,322,1,322,1,322,3,322,4505,8,322,1,323,1,323,1,323,1,323, - 5,323,4511,8,323,10,323,12,323,4514,9,323,1,323,1,323,1,324,1,324, - 1,324,3,324,4521,8,324,1,324,1,324,1,325,1,325,1,326,1,326,1,327, - 1,327,3,327,4531,8,327,1,328,1,328,1,328,3,328,4536,8,328,1,329, - 1,329,1,330,1,330,1,331,1,331,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,3,332,4595,8,332,1,333,1,333,1,333,1,333,3,333,4601,8,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4610,8,333,3,333, - 4612,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,5,333,4626,8,333,10,333,12,333,4629,9,333,1,333, - 1,333,1,333,1,333,1,333,3,333,4636,8,333,1,333,1,333,3,333,4640, - 8,333,3,333,4642,8,333,1,333,1,333,1,333,1,333,3,333,4648,8,333, - 1,333,1,333,1,333,3,333,4653,8,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333, - 4670,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,3,333,4696,8,333,1,333,1,333,1,333,3,333, - 4701,8,333,3,333,4703,8,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4731, - 8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,3,333,4748,8,333,1,333,1,333,1,333, - 3,333,4753,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333, - 4762,8,333,1,334,1,334,1,335,1,335,1,335,1,335,1,335,1,335,1,335, - 3,335,4773,8,335,1,336,1,336,1,336,5,336,4778,8,336,10,336,12,336, - 4781,9,336,1,337,1,337,1,337,3,337,4786,8,337,1,338,1,338,1,338, - 3,338,4791,8,338,1,339,1,339,1,340,1,340,1,341,1,341,1,342,1,342, - 1,343,1,343,1,344,1,344,1,345,1,345,1,346,1,346,1,347,1,347,1,348, - 1,348,1,349,1,349,1,350,1,350,1,350,5,350,4818,8,350,10,350,12,350, - 4821,9,350,1,351,1,351,1,351,5,351,4826,8,351,10,351,12,351,4829, - 9,351,1,351,1,351,1,351,1,351,5,351,4835,8,351,10,351,12,351,4838, - 9,351,3,351,4840,8,351,1,352,1,352,1,352,1,352,1,353,1,353,1,353, - 1,353,3,353,4850,8,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,1,354,3,354,4864,8,354,1,355,1,355,1,355, - 5,355,4869,8,355,10,355,12,355,4872,9,355,1,355,1,833,0,356,0,2, - 4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48, - 50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92, - 94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126, - 128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158, - 160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190, - 192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222, - 224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254, - 256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286, - 288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318, - 320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350, - 352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382, - 384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414, - 416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446, - 448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478, - 480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510, - 512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542, - 544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574, - 576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606, - 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, - 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, - 672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702, - 704,706,708,710,0,61,2,0,57,57,172,172,4,0,91,91,121,121,226,226, - 325,325,1,0,395,396,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90, - 2,0,139,139,154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155, - 156,2,0,114,114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155, - 161,161,190,190,299,299,309,309,365,365,3,0,4,4,101,101,326,326, - 3,0,15,15,128,128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217, - 217,373,373,2,0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177, - 177,2,0,39,39,376,376,4,0,112,112,164,164,205,205,356,356,2,0,7, - 7,96,96,2,0,125,125,350,350,2,0,225,225,391,391,2,0,42,42,315,315, - 2,0,189,189,196,196,2,0,426,426,431,431,2,0,140,140,285,285,3,0, - 12,12,231,231,300,300,2,0,241,241,292,292,2,0,198,198,268,268,2, - 0,260,260,292,292,2,0,354,354,431,431,2,0,133,133,247,247,2,0,152, - 152,281,281,3,0,413,414,418,418,420,420,2,0,412,412,415,417,1,0, - 413,414,4,0,184,184,270,270,286,286,408,411,2,0,7,7,13,13,3,0,7, - 7,13,13,313,313,3,0,184,184,270,270,286,286,4,0,125,125,219,219, - 350,350,360,360,2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35, - 100,100,131,132,151,151,154,154,162,163,184,184,198,198,216,216, - 228,228,264,264,270,270,286,286,311,311,323,324,340,340,357,357, - 383,383,405,417,419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22, - 24,30,31,33,34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68, - 68,72,77,79,79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114, - 116,118,121,127,130,137,138,142,142,147,150,152,152,155,156,158, - 160,168,170,172,177,182,183,185,187,189,193,195,197,199,202,204, - 204,206,209,211,212,214,215,217,218,220,220,222,223,226,227,232, - 233,235,236,238,240,243,246,252,252,254,255,257,259,261,262,265, - 267,271,282,284,284,287,288,293,298,300,303,305,310,312,312,314, - 317,319,325,327,328,330,330,332,334,339,340,342,342,344,346,349, - 349,352,353,355,355,357,357,360,364,366,368,371,373,375,375,377, - 382,385,385,388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131, - 145,145,151,151,162,163,198,198,264,264,311,311,337,337,2,0,4,4, - 101,101,2,0,9,9,58,58,3,0,14,14,144,144,369,369,1,0,106,107,1,0, - 94,95,1,0,392,393,1,0,208,209,1,0,381,382,1,0,73,74,1,0,148,149, - 1,0,206,207,1,0,297,298,1,0,80,82,5464,0,715,1,0,0,0,2,722,1,0,0, - 0,4,727,1,0,0,0,6,761,1,0,0,0,8,763,1,0,0,0,10,836,1,0,0,0,12,838, - 1,0,0,0,14,854,1,0,0,0,16,863,1,0,0,0,18,871,1,0,0,0,20,884,1,0, - 0,0,22,895,1,0,0,0,24,900,1,0,0,0,26,911,1,0,0,0,28,974,1,0,0,0, - 30,976,1,0,0,0,32,979,1,0,0,0,34,983,1,0,0,0,36,985,1,0,0,0,38,988, - 1,0,0,0,40,991,1,0,0,0,42,1035,1,0,0,0,44,1037,1,0,0,0,46,1040,1, - 0,0,0,48,1043,1,0,0,0,50,1052,1,0,0,0,52,1055,1,0,0,0,54,1070,1, - 0,0,0,56,1082,1,0,0,0,58,1087,1,0,0,0,60,1107,1,0,0,0,62,1111,1, - 0,0,0,64,1118,1,0,0,0,66,1143,1,0,0,0,68,1160,1,0,0,0,70,1162,1, - 0,0,0,72,1347,1,0,0,0,74,1357,1,0,0,0,76,1359,1,0,0,0,78,1364,1, - 0,0,0,80,1369,1,0,0,0,82,1371,1,0,0,0,84,1375,1,0,0,0,86,1379,1, - 0,0,0,88,1383,1,0,0,0,90,1387,1,0,0,0,92,1397,1,0,0,0,94,1408,1, - 0,0,0,96,1425,1,0,0,0,98,1443,1,0,0,0,100,1448,1,0,0,0,102,1451, - 1,0,0,0,104,1455,1,0,0,0,106,1462,1,0,0,0,108,1471,1,0,0,0,110,1477, - 1,0,0,0,112,1479,1,0,0,0,114,1493,1,0,0,0,116,1515,1,0,0,0,118,1517, - 1,0,0,0,120,1525,1,0,0,0,122,1532,1,0,0,0,124,1534,1,0,0,0,126,1548, - 1,0,0,0,128,1555,1,0,0,0,130,1557,1,0,0,0,132,1561,1,0,0,0,134,1565, - 1,0,0,0,136,1569,1,0,0,0,138,1573,1,0,0,0,140,1586,1,0,0,0,142,1594, - 1,0,0,0,144,1597,1,0,0,0,146,1599,1,0,0,0,148,1611,1,0,0,0,150,1621, - 1,0,0,0,152,1624,1,0,0,0,154,1635,1,0,0,0,156,1643,1,0,0,0,158,1686, - 1,0,0,0,160,1695,1,0,0,0,162,1723,1,0,0,0,164,1736,1,0,0,0,166,1738, - 1,0,0,0,168,1744,1,0,0,0,170,1747,1,0,0,0,172,1753,1,0,0,0,174,1759, - 1,0,0,0,176,1766,1,0,0,0,178,1800,1,0,0,0,180,1808,1,0,0,0,182,1821, - 1,0,0,0,184,1826,1,0,0,0,186,1837,1,0,0,0,188,1854,1,0,0,0,190,1856, - 1,0,0,0,192,1861,1,0,0,0,194,1868,1,0,0,0,196,1870,1,0,0,0,198,1873, - 1,0,0,0,200,1876,1,0,0,0,202,1890,1,0,0,0,204,1898,1,0,0,0,206,1924, - 1,0,0,0,208,1926,1,0,0,0,210,1943,1,0,0,0,212,1957,1,0,0,0,214,1959, - 1,0,0,0,216,1962,1,0,0,0,218,1965,1,0,0,0,220,1974,1,0,0,0,222,1994, - 1,0,0,0,224,1996,1,0,0,0,226,1999,1,0,0,0,228,2012,1,0,0,0,230,2014, - 1,0,0,0,232,2018,1,0,0,0,234,2026,1,0,0,0,236,2030,1,0,0,0,238,2039, - 1,0,0,0,240,2045,1,0,0,0,242,2051,1,0,0,0,244,2056,1,0,0,0,246,2102, - 1,0,0,0,248,2104,1,0,0,0,250,2112,1,0,0,0,252,2120,1,0,0,0,254,2128, - 1,0,0,0,256,2139,1,0,0,0,258,2141,1,0,0,0,260,2146,1,0,0,0,262,2148, - 1,0,0,0,264,2150,1,0,0,0,266,2163,1,0,0,0,268,2171,1,0,0,0,270,2180, - 1,0,0,0,272,2184,1,0,0,0,274,2186,1,0,0,0,276,2191,1,0,0,0,278,2193, - 1,0,0,0,280,2197,1,0,0,0,282,2203,1,0,0,0,284,2211,1,0,0,0,286,2213, - 1,0,0,0,288,2216,1,0,0,0,290,2223,1,0,0,0,292,2234,1,0,0,0,294,2247, - 1,0,0,0,296,2249,1,0,0,0,298,2257,1,0,0,0,300,2261,1,0,0,0,302,2269, - 1,0,0,0,304,2271,1,0,0,0,306,2274,1,0,0,0,308,2281,1,0,0,0,310,2289, - 1,0,0,0,312,2296,1,0,0,0,314,2304,1,0,0,0,316,2312,1,0,0,0,318,2316, - 1,0,0,0,320,2318,1,0,0,0,322,2329,1,0,0,0,324,2333,1,0,0,0,326,2345, - 1,0,0,0,328,2353,1,0,0,0,330,2357,1,0,0,0,332,2369,1,0,0,0,334,2381, - 1,0,0,0,336,2386,1,0,0,0,338,2391,1,0,0,0,340,2393,1,0,0,0,342,2397, - 1,0,0,0,344,2401,1,0,0,0,346,2408,1,0,0,0,348,2410,1,0,0,0,350,2423, - 1,0,0,0,352,2462,1,0,0,0,354,2464,1,0,0,0,356,2469,1,0,0,0,358,2474, - 1,0,0,0,360,2481,1,0,0,0,362,2486,1,0,0,0,364,2491,1,0,0,0,366,2497, - 1,0,0,0,368,2499,1,0,0,0,370,2508,1,0,0,0,372,2520,1,0,0,0,374,2600, - 1,0,0,0,376,2606,1,0,0,0,378,2632,1,0,0,0,380,2634,1,0,0,0,382,2656, - 1,0,0,0,384,2661,1,0,0,0,386,2665,1,0,0,0,388,2697,1,0,0,0,390,2699, - 1,0,0,0,392,2710,1,0,0,0,394,2716,1,0,0,0,396,2718,1,0,0,0,398,2750, - 1,0,0,0,400,2757,1,0,0,0,402,2763,1,0,0,0,404,2769,1,0,0,0,406,2784, - 1,0,0,0,408,2794,1,0,0,0,410,2802,1,0,0,0,412,2805,1,0,0,0,414,2808, - 1,0,0,0,416,2811,1,0,0,0,418,2933,1,0,0,0,420,3067,1,0,0,0,422,3095, - 1,0,0,0,424,3112,1,0,0,0,426,3129,1,0,0,0,428,3131,1,0,0,0,430,3134, - 1,0,0,0,432,3160,1,0,0,0,434,3165,1,0,0,0,436,3192,1,0,0,0,438,3203, - 1,0,0,0,440,3340,1,0,0,0,442,3342,1,0,0,0,444,3365,1,0,0,0,446,3377, - 1,0,0,0,448,3382,1,0,0,0,450,3390,1,0,0,0,452,3398,1,0,0,0,454,3410, - 1,0,0,0,456,3444,1,0,0,0,458,3446,1,0,0,0,460,3471,1,0,0,0,462,3480, - 1,0,0,0,464,3510,1,0,0,0,466,3569,1,0,0,0,468,3571,1,0,0,0,470,3600, - 1,0,0,0,472,3602,1,0,0,0,474,3618,1,0,0,0,476,3630,1,0,0,0,478,3632, - 1,0,0,0,480,3636,1,0,0,0,482,3646,1,0,0,0,484,3656,1,0,0,0,486,3661, - 1,0,0,0,488,3668,1,0,0,0,490,3672,1,0,0,0,492,3691,1,0,0,0,494,3696, - 1,0,0,0,496,3698,1,0,0,0,498,3702,1,0,0,0,500,3728,1,0,0,0,502,3733, - 1,0,0,0,504,3754,1,0,0,0,506,3759,1,0,0,0,508,3790,1,0,0,0,510,3792, - 1,0,0,0,512,3816,1,0,0,0,514,3849,1,0,0,0,516,3851,1,0,0,0,518,3853, - 1,0,0,0,520,3855,1,0,0,0,522,3880,1,0,0,0,524,3882,1,0,0,0,526,3890, - 1,0,0,0,528,3916,1,0,0,0,530,3918,1,0,0,0,532,3938,1,0,0,0,534,3940, - 1,0,0,0,536,3951,1,0,0,0,538,3964,1,0,0,0,540,3999,1,0,0,0,542,4001, - 1,0,0,0,544,4006,1,0,0,0,546,4011,1,0,0,0,548,4013,1,0,0,0,550,4035, - 1,0,0,0,552,4037,1,0,0,0,554,4041,1,0,0,0,556,4050,1,0,0,0,558,4060, - 1,0,0,0,560,4064,1,0,0,0,562,4068,1,0,0,0,564,4072,1,0,0,0,566,4148, - 1,0,0,0,568,4150,1,0,0,0,570,4153,1,0,0,0,572,4157,1,0,0,0,574,4162, - 1,0,0,0,576,4164,1,0,0,0,578,4175,1,0,0,0,580,4192,1,0,0,0,582,4208, - 1,0,0,0,584,4217,1,0,0,0,586,4232,1,0,0,0,588,4262,1,0,0,0,590,4264, - 1,0,0,0,592,4281,1,0,0,0,594,4297,1,0,0,0,596,4299,1,0,0,0,598,4318, - 1,0,0,0,600,4323,1,0,0,0,602,4338,1,0,0,0,604,4346,1,0,0,0,606,4354, - 1,0,0,0,608,4362,1,0,0,0,610,4370,1,0,0,0,612,4378,1,0,0,0,614,4386, - 1,0,0,0,616,4388,1,0,0,0,618,4398,1,0,0,0,620,4406,1,0,0,0,622,4422, - 1,0,0,0,624,4426,1,0,0,0,626,4431,1,0,0,0,628,4433,1,0,0,0,630,4444, - 1,0,0,0,632,4446,1,0,0,0,634,4464,1,0,0,0,636,4469,1,0,0,0,638,4477, - 1,0,0,0,640,4485,1,0,0,0,642,4489,1,0,0,0,644,4501,1,0,0,0,646,4506, - 1,0,0,0,648,4517,1,0,0,0,650,4524,1,0,0,0,652,4526,1,0,0,0,654,4530, - 1,0,0,0,656,4532,1,0,0,0,658,4537,1,0,0,0,660,4539,1,0,0,0,662,4541, - 1,0,0,0,664,4594,1,0,0,0,666,4761,1,0,0,0,668,4763,1,0,0,0,670,4772, - 1,0,0,0,672,4774,1,0,0,0,674,4785,1,0,0,0,676,4787,1,0,0,0,678,4792, - 1,0,0,0,680,4794,1,0,0,0,682,4796,1,0,0,0,684,4798,1,0,0,0,686,4800, - 1,0,0,0,688,4802,1,0,0,0,690,4804,1,0,0,0,692,4806,1,0,0,0,694,4808, - 1,0,0,0,696,4810,1,0,0,0,698,4812,1,0,0,0,700,4814,1,0,0,0,702,4839, - 1,0,0,0,704,4841,1,0,0,0,706,4849,1,0,0,0,708,4863,1,0,0,0,710,4865, - 1,0,0,0,712,714,3,2,1,0,713,712,1,0,0,0,714,717,1,0,0,0,715,713, - 1,0,0,0,715,716,1,0,0,0,716,718,1,0,0,0,717,715,1,0,0,0,718,719, - 5,0,0,1,719,1,1,0,0,0,720,723,3,4,2,0,721,723,3,10,5,0,722,720,1, - 0,0,0,722,721,1,0,0,0,723,725,1,0,0,0,724,726,5,398,0,0,725,724, - 1,0,0,0,725,726,1,0,0,0,726,3,1,0,0,0,727,737,5,119,0,0,728,730, - 3,6,3,0,729,728,1,0,0,0,730,733,1,0,0,0,731,729,1,0,0,0,731,732, - 1,0,0,0,732,734,1,0,0,0,733,731,1,0,0,0,734,738,3,10,5,0,735,736, - 5,284,0,0,736,738,3,364,182,0,737,731,1,0,0,0,737,735,1,0,0,0,738, - 5,1,0,0,0,739,762,5,122,0,0,740,762,5,138,0,0,741,762,5,88,0,0,742, - 744,5,37,0,0,743,745,7,0,0,0,744,743,1,0,0,0,744,745,1,0,0,0,745, - 762,1,0,0,0,746,762,5,192,0,0,747,762,5,21,0,0,748,762,5,10,0,0, - 749,762,5,275,0,0,750,762,5,191,0,0,751,762,5,19,0,0,752,754,5,377, - 0,0,753,755,5,225,0,0,754,753,1,0,0,0,754,755,1,0,0,0,755,757,1, - 0,0,0,756,758,3,8,4,0,757,756,1,0,0,0,757,758,1,0,0,0,758,762,1, - 0,0,0,759,762,5,79,0,0,760,762,5,78,0,0,761,739,1,0,0,0,761,740, - 1,0,0,0,761,741,1,0,0,0,761,742,1,0,0,0,761,746,1,0,0,0,761,747, - 1,0,0,0,761,748,1,0,0,0,761,749,1,0,0,0,761,750,1,0,0,0,761,751, - 1,0,0,0,761,752,1,0,0,0,761,759,1,0,0,0,761,760,1,0,0,0,762,7,1, - 0,0,0,763,764,7,1,0,0,764,9,1,0,0,0,765,837,3,364,182,0,766,837, - 3,12,6,0,767,837,3,16,8,0,768,837,3,18,9,0,769,837,3,20,10,0,770, - 837,3,24,12,0,771,772,5,277,0,0,772,773,5,320,0,0,773,776,3,476, - 238,0,774,775,5,387,0,0,775,777,3,230,115,0,776,774,1,0,0,0,776, - 777,1,0,0,0,777,837,1,0,0,0,778,837,3,28,14,0,779,780,5,86,0,0,780, - 781,5,139,0,0,781,783,3,482,241,0,782,784,3,500,250,0,783,782,1, - 0,0,0,783,784,1,0,0,0,784,837,1,0,0,0,785,786,5,365,0,0,786,787, - 3,482,241,0,787,789,3,396,198,0,788,790,3,500,250,0,789,788,1,0, - 0,0,789,790,1,0,0,0,790,837,1,0,0,0,791,837,3,398,199,0,792,794, - 5,203,0,0,793,795,5,436,0,0,794,793,1,0,0,0,794,795,1,0,0,0,795, - 796,1,0,0,0,796,797,5,166,0,0,797,802,3,482,241,0,798,800,5,17,0, - 0,799,798,1,0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,803,3,654, - 327,0,802,799,1,0,0,0,802,803,1,0,0,0,803,804,1,0,0,0,804,805,5, - 370,0,0,805,806,3,460,230,0,806,807,5,224,0,0,807,808,3,596,298, - 0,808,809,3,402,201,0,809,837,1,0,0,0,810,811,5,249,0,0,811,812, - 3,654,327,0,812,813,5,139,0,0,813,814,3,364,182,0,814,837,1,0,0, - 0,815,816,5,115,0,0,816,817,3,654,327,0,817,818,5,370,0,0,818,819, - 3,300,150,0,819,837,1,0,0,0,820,821,5,304,0,0,821,826,3,664,332, - 0,822,823,7,2,0,0,823,825,3,664,332,0,824,822,1,0,0,0,825,828,1, - 0,0,0,826,824,1,0,0,0,826,827,1,0,0,0,827,829,1,0,0,0,828,826,1, - 0,0,0,829,833,5,405,0,0,830,832,9,0,0,0,831,830,1,0,0,0,832,835, - 1,0,0,0,833,834,1,0,0,0,833,831,1,0,0,0,834,837,1,0,0,0,835,833, - 1,0,0,0,836,765,1,0,0,0,836,766,1,0,0,0,836,767,1,0,0,0,836,768, - 1,0,0,0,836,769,1,0,0,0,836,770,1,0,0,0,836,771,1,0,0,0,836,778, - 1,0,0,0,836,779,1,0,0,0,836,785,1,0,0,0,836,791,1,0,0,0,836,792, - 1,0,0,0,836,810,1,0,0,0,836,815,1,0,0,0,836,820,1,0,0,0,837,11,1, - 0,0,0,838,839,5,187,0,0,839,841,5,66,0,0,840,842,5,188,0,0,841,840, - 1,0,0,0,841,842,1,0,0,0,842,843,1,0,0,0,843,844,5,158,0,0,844,846, - 5,426,0,0,845,847,5,235,0,0,846,845,1,0,0,0,846,847,1,0,0,0,847, - 848,1,0,0,0,848,849,5,166,0,0,849,850,5,329,0,0,850,852,3,640,320, - 0,851,853,3,56,28,0,852,851,1,0,0,0,852,853,1,0,0,0,853,13,1,0,0, - 0,854,856,5,134,0,0,855,857,5,204,0,0,856,855,1,0,0,0,856,857,1, - 0,0,0,857,858,1,0,0,0,858,859,5,279,0,0,859,860,5,399,0,0,860,861, - 5,426,0,0,861,862,5,400,0,0,862,15,1,0,0,0,863,864,5,120,0,0,864, - 865,5,329,0,0,865,866,3,640,320,0,866,867,5,341,0,0,867,869,5,426, - 0,0,868,870,3,14,7,0,869,868,1,0,0,0,869,870,1,0,0,0,870,17,1,0, - 0,0,871,877,5,153,0,0,872,874,5,123,0,0,873,872,1,0,0,0,873,874, - 1,0,0,0,874,875,1,0,0,0,875,876,5,329,0,0,876,878,3,640,320,0,877, - 873,1,0,0,0,877,878,1,0,0,0,878,879,1,0,0,0,879,880,5,139,0,0,880, - 882,5,426,0,0,881,883,3,428,214,0,882,881,1,0,0,0,882,883,1,0,0, - 0,883,19,1,0,0,0,884,885,5,277,0,0,885,886,5,103,0,0,886,889,3,22, - 11,0,887,888,5,278,0,0,888,890,3,22,11,0,889,887,1,0,0,0,889,890, - 1,0,0,0,890,893,1,0,0,0,891,892,5,387,0,0,892,894,3,230,115,0,893, - 891,1,0,0,0,893,894,1,0,0,0,894,21,1,0,0,0,895,898,3,476,238,0,896, - 897,5,395,0,0,897,899,3,26,13,0,898,896,1,0,0,0,898,899,1,0,0,0, - 899,23,1,0,0,0,900,901,5,277,0,0,901,902,5,187,0,0,902,905,3,22, - 11,0,903,904,5,166,0,0,904,906,3,476,238,0,905,903,1,0,0,0,905,906, - 1,0,0,0,906,909,1,0,0,0,907,908,5,387,0,0,908,910,3,230,115,0,909, - 907,1,0,0,0,909,910,1,0,0,0,910,25,1,0,0,0,911,914,5,426,0,0,912, - 913,5,395,0,0,913,915,5,426,0,0,914,912,1,0,0,0,914,915,1,0,0,0, - 915,27,1,0,0,0,916,975,3,42,21,0,917,975,3,46,23,0,918,975,3,48, - 24,0,919,975,3,440,220,0,920,975,3,54,27,0,921,975,3,52,26,0,922, - 975,3,416,208,0,923,975,3,64,32,0,924,975,3,72,36,0,925,975,3,138, - 69,0,926,975,3,160,80,0,927,975,3,176,88,0,928,975,3,180,90,0,929, - 975,3,184,92,0,930,975,3,182,91,0,931,975,3,174,87,0,932,975,3,178, - 89,0,933,975,3,146,73,0,934,975,3,152,76,0,935,975,3,148,74,0,936, - 975,3,150,75,0,937,975,3,154,77,0,938,975,3,156,78,0,939,975,3,158, - 79,0,940,975,3,66,33,0,941,975,3,76,38,0,942,975,3,82,41,0,943,975, - 3,78,39,0,944,975,3,84,42,0,945,975,3,86,43,0,946,975,3,88,44,0, - 947,975,3,90,45,0,948,975,3,92,46,0,949,975,3,106,53,0,950,975,3, - 98,49,0,951,975,3,108,54,0,952,975,3,100,50,0,953,975,3,94,47,0, - 954,975,3,96,48,0,955,975,3,104,52,0,956,975,3,102,51,0,957,958, - 5,1,0,0,958,960,7,3,0,0,959,961,5,431,0,0,960,959,1,0,0,0,961,962, - 1,0,0,0,962,960,1,0,0,0,962,963,1,0,0,0,963,975,1,0,0,0,964,965, - 5,176,0,0,965,967,5,258,0,0,966,968,5,426,0,0,967,966,1,0,0,0,968, - 969,1,0,0,0,969,967,1,0,0,0,969,970,1,0,0,0,970,975,1,0,0,0,971, - 975,3,666,333,0,972,975,3,442,221,0,973,975,3,444,222,0,974,916, - 1,0,0,0,974,917,1,0,0,0,974,918,1,0,0,0,974,919,1,0,0,0,974,920, - 1,0,0,0,974,921,1,0,0,0,974,922,1,0,0,0,974,923,1,0,0,0,974,924, - 1,0,0,0,974,925,1,0,0,0,974,926,1,0,0,0,974,927,1,0,0,0,974,928, - 1,0,0,0,974,929,1,0,0,0,974,930,1,0,0,0,974,931,1,0,0,0,974,932, - 1,0,0,0,974,933,1,0,0,0,974,934,1,0,0,0,974,935,1,0,0,0,974,936, - 1,0,0,0,974,937,1,0,0,0,974,938,1,0,0,0,974,939,1,0,0,0,974,940, - 1,0,0,0,974,941,1,0,0,0,974,942,1,0,0,0,974,943,1,0,0,0,974,944, - 1,0,0,0,974,945,1,0,0,0,974,946,1,0,0,0,974,947,1,0,0,0,974,948, - 1,0,0,0,974,949,1,0,0,0,974,950,1,0,0,0,974,951,1,0,0,0,974,952, - 1,0,0,0,974,953,1,0,0,0,974,954,1,0,0,0,974,955,1,0,0,0,974,956, - 1,0,0,0,974,957,1,0,0,0,974,964,1,0,0,0,974,971,1,0,0,0,974,972, - 1,0,0,0,974,973,1,0,0,0,975,29,1,0,0,0,976,977,5,151,0,0,977,978, - 5,117,0,0,978,31,1,0,0,0,979,980,5,151,0,0,980,981,5,216,0,0,981, - 982,5,117,0,0,982,33,1,0,0,0,983,984,7,4,0,0,984,35,1,0,0,0,985, - 986,3,678,339,0,986,987,5,284,0,0,987,37,1,0,0,0,988,989,3,680,340, - 0,989,990,5,284,0,0,990,39,1,0,0,0,991,992,5,321,0,0,992,993,5,17, - 0,0,993,994,5,92,0,0,994,41,1,0,0,0,995,997,5,58,0,0,996,998,5,273, - 0,0,997,996,1,0,0,0,997,998,1,0,0,0,998,999,1,0,0,0,999,1001,3,70, - 35,0,1000,1002,3,32,16,0,1001,1000,1,0,0,0,1001,1002,1,0,0,0,1002, - 1003,1,0,0,0,1003,1005,3,478,239,0,1004,1006,3,50,25,0,1005,1004, - 1,0,0,0,1005,1006,1,0,0,0,1006,1008,1,0,0,0,1007,1009,3,428,214, - 0,1008,1007,1,0,0,0,1008,1009,1,0,0,0,1009,1012,1,0,0,0,1010,1011, - 5,196,0,0,1011,1013,5,426,0,0,1012,1010,1,0,0,0,1012,1013,1,0,0, - 0,1013,1017,1,0,0,0,1014,1015,5,387,0,0,1015,1016,5,76,0,0,1016, - 1018,3,230,115,0,1017,1014,1,0,0,0,1017,1018,1,0,0,0,1018,1036,1, - 0,0,0,1019,1020,5,58,0,0,1020,1021,5,273,0,0,1021,1023,3,70,35,0, - 1022,1024,3,32,16,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025, - 1,0,0,0,1025,1027,3,478,239,0,1026,1028,3,50,25,0,1027,1026,1,0, - 0,0,1027,1028,1,0,0,0,1028,1029,1,0,0,0,1029,1033,3,44,22,0,1030, - 1031,5,387,0,0,1031,1032,5,76,0,0,1032,1034,3,230,115,0,1033,1030, - 1,0,0,0,1033,1034,1,0,0,0,1034,1036,1,0,0,0,1035,995,1,0,0,0,1035, - 1019,1,0,0,0,1036,43,1,0,0,0,1037,1038,5,370,0,0,1038,1039,3,476, - 238,0,1039,45,1,0,0,0,1040,1041,5,368,0,0,1041,1042,3,476,238,0, - 1042,47,1,0,0,0,1043,1044,5,101,0,0,1044,1046,3,70,35,0,1045,1047, - 3,30,15,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0,0,0, - 1048,1050,3,476,238,0,1049,1051,3,34,17,0,1050,1049,1,0,0,0,1050, - 1051,1,0,0,0,1051,49,1,0,0,0,1052,1053,5,47,0,0,1053,1054,5,426, - 0,0,1054,51,1,0,0,0,1055,1057,5,351,0,0,1056,1058,5,329,0,0,1057, - 1056,1,0,0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1065,3,640, - 320,0,1060,1061,5,46,0,0,1061,1062,5,399,0,0,1062,1063,3,254,127, - 0,1063,1064,5,400,0,0,1064,1066,1,0,0,0,1065,1060,1,0,0,0,1065,1066, - 1,0,0,0,1066,1068,1,0,0,0,1067,1069,5,135,0,0,1068,1067,1,0,0,0, - 1068,1069,1,0,0,0,1069,53,1,0,0,0,1070,1071,5,101,0,0,1071,1073, - 5,329,0,0,1072,1074,3,30,15,0,1073,1072,1,0,0,0,1073,1074,1,0,0, - 0,1074,1075,1,0,0,0,1075,1077,3,482,241,0,1076,1078,5,255,0,0,1077, - 1076,1,0,0,0,1077,1078,1,0,0,0,1078,1080,1,0,0,0,1079,1081,3,14, - 7,0,1080,1079,1,0,0,0,1080,1081,1,0,0,0,1081,55,1,0,0,0,1082,1083, - 5,160,0,0,1083,1084,5,426,0,0,1084,1085,5,301,0,0,1085,1086,5,426, - 0,0,1086,57,1,0,0,0,1087,1090,3,654,327,0,1088,1089,5,395,0,0,1089, - 1091,3,654,327,0,1090,1088,1,0,0,0,1090,1091,1,0,0,0,1091,1105,1, - 0,0,0,1092,1102,3,654,327,0,1093,1098,5,395,0,0,1094,1099,5,104, - 0,0,1095,1099,5,175,0,0,1096,1099,5,375,0,0,1097,1099,3,654,327, - 0,1098,1094,1,0,0,0,1098,1095,1,0,0,0,1098,1096,1,0,0,0,1098,1097, - 1,0,0,0,1099,1101,1,0,0,0,1100,1093,1,0,0,0,1101,1104,1,0,0,0,1102, - 1100,1,0,0,0,1102,1103,1,0,0,0,1103,1106,1,0,0,0,1104,1102,1,0,0, - 0,1105,1092,1,0,0,0,1105,1106,1,0,0,0,1106,59,1,0,0,0,1107,1109, - 3,58,29,0,1108,1110,3,642,321,0,1109,1108,1,0,0,0,1109,1110,1,0, - 0,0,1110,61,1,0,0,0,1111,1113,3,480,240,0,1112,1114,3,642,321,0, - 1113,1112,1,0,0,0,1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1117, - 3,264,132,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117,63,1,0,0,0, - 1118,1141,7,5,0,0,1119,1121,3,70,35,0,1120,1122,5,122,0,0,1121,1120, - 1,0,0,0,1121,1122,1,0,0,0,1122,1123,1,0,0,0,1123,1124,3,476,238, - 0,1124,1142,1,0,0,0,1125,1127,5,69,0,0,1126,1128,5,122,0,0,1127, - 1126,1,0,0,0,1127,1128,1,0,0,0,1128,1129,1,0,0,0,1129,1142,3,476, - 238,0,1130,1132,5,141,0,0,1131,1133,5,122,0,0,1132,1131,1,0,0,0, - 1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1142,3,572,286,0,1135,1138, - 5,138,0,0,1136,1138,5,122,0,0,1137,1135,1,0,0,0,1137,1136,1,0,0, - 0,1138,1139,1,0,0,0,1139,1142,3,62,31,0,1140,1142,3,62,31,0,1141, - 1119,1,0,0,0,1141,1125,1,0,0,0,1141,1130,1,0,0,0,1141,1137,1,0,0, - 0,1141,1140,1,0,0,0,1142,65,1,0,0,0,1143,1144,5,10,0,0,1144,1145, - 5,329,0,0,1145,1158,3,640,320,0,1146,1147,5,52,0,0,1147,1154,5,319, - 0,0,1148,1155,5,215,0,0,1149,1150,5,134,0,0,1150,1152,5,46,0,0,1151, - 1153,3,254,127,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1155,1, - 0,0,0,1154,1148,1,0,0,0,1154,1149,1,0,0,0,1154,1155,1,0,0,0,1155, - 1159,1,0,0,0,1156,1157,5,33,0,0,1157,1159,5,204,0,0,1158,1146,1, - 0,0,0,1158,1156,1,0,0,0,1159,67,1,0,0,0,1160,1161,7,6,0,0,1161,69, - 1,0,0,0,1162,1163,7,7,0,0,1163,71,1,0,0,0,1164,1165,5,308,0,0,1165, - 1168,7,8,0,0,1166,1167,5,184,0,0,1167,1169,3,194,97,0,1168,1166, - 1,0,0,0,1168,1169,1,0,0,0,1169,1348,1,0,0,0,1170,1172,5,308,0,0, - 1171,1173,5,122,0,0,1172,1171,1,0,0,0,1172,1173,1,0,0,0,1173,1174, - 1,0,0,0,1174,1178,5,330,0,0,1175,1176,3,68,34,0,1176,1177,3,476, - 238,0,1177,1179,1,0,0,0,1178,1175,1,0,0,0,1178,1179,1,0,0,0,1179, - 1181,1,0,0,0,1180,1182,3,74,37,0,1181,1180,1,0,0,0,1181,1182,1,0, - 0,0,1182,1348,1,0,0,0,1183,1184,5,308,0,0,1184,1188,5,379,0,0,1185, - 1186,3,68,34,0,1186,1187,3,476,238,0,1187,1189,1,0,0,0,1188,1185, - 1,0,0,0,1188,1189,1,0,0,0,1189,1193,1,0,0,0,1190,1191,5,184,0,0, - 1191,1194,3,194,97,0,1192,1194,3,194,97,0,1193,1190,1,0,0,0,1193, - 1192,1,0,0,0,1193,1194,1,0,0,0,1194,1348,1,0,0,0,1195,1196,5,308, - 0,0,1196,1197,5,202,0,0,1197,1201,5,379,0,0,1198,1199,3,68,34,0, - 1199,1200,3,476,238,0,1200,1202,1,0,0,0,1201,1198,1,0,0,0,1201,1202, - 1,0,0,0,1202,1206,1,0,0,0,1203,1204,5,184,0,0,1204,1207,3,194,97, - 0,1205,1207,3,194,97,0,1206,1203,1,0,0,0,1206,1205,1,0,0,0,1206, - 1207,1,0,0,0,1207,1348,1,0,0,0,1208,1210,5,308,0,0,1209,1211,5,315, - 0,0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1212,1,0,0,0,1212,1213, - 5,46,0,0,1213,1214,3,68,34,0,1214,1218,3,480,240,0,1215,1216,3,68, - 34,0,1216,1217,3,476,238,0,1217,1219,1,0,0,0,1218,1215,1,0,0,0,1218, - 1219,1,0,0,0,1219,1223,1,0,0,0,1220,1221,5,184,0,0,1221,1224,3,194, - 97,0,1222,1224,3,194,97,0,1223,1220,1,0,0,0,1223,1222,1,0,0,0,1223, - 1224,1,0,0,0,1224,1348,1,0,0,0,1225,1226,5,308,0,0,1226,1229,5,142, - 0,0,1227,1228,5,184,0,0,1228,1230,3,572,286,0,1229,1227,1,0,0,0, - 1229,1230,1,0,0,0,1230,1348,1,0,0,0,1231,1232,5,308,0,0,1232,1233, - 5,239,0,0,1233,1235,3,480,240,0,1234,1236,3,642,321,0,1235,1234, - 1,0,0,0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237,1239,3,500,250, - 0,1238,1237,1,0,0,0,1238,1239,1,0,0,0,1239,1241,1,0,0,0,1240,1242, - 3,556,278,0,1241,1240,1,0,0,0,1241,1242,1,0,0,0,1242,1244,1,0,0, - 0,1243,1245,3,390,195,0,1244,1243,1,0,0,0,1244,1245,1,0,0,0,1245, - 1348,1,0,0,0,1246,1247,5,308,0,0,1247,1253,5,58,0,0,1248,1249,3, - 70,35,0,1249,1250,3,476,238,0,1250,1254,1,0,0,0,1251,1252,5,329, - 0,0,1252,1254,3,482,241,0,1253,1248,1,0,0,0,1253,1251,1,0,0,0,1254, - 1348,1,0,0,0,1255,1256,5,308,0,0,1256,1257,5,329,0,0,1257,1261,5, - 122,0,0,1258,1259,3,68,34,0,1259,1260,3,476,238,0,1260,1262,1,0, - 0,0,1261,1258,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1264, - 5,184,0,0,1264,1266,3,194,97,0,1265,1267,3,642,321,0,1266,1265,1, - 0,0,0,1266,1267,1,0,0,0,1267,1348,1,0,0,0,1268,1269,5,308,0,0,1269, - 1270,5,332,0,0,1270,1274,3,482,241,0,1271,1272,5,399,0,0,1272,1273, - 5,426,0,0,1273,1275,5,400,0,0,1274,1271,1,0,0,0,1274,1275,1,0,0, - 0,1275,1348,1,0,0,0,1276,1277,5,308,0,0,1277,1289,5,191,0,0,1278, - 1279,3,70,35,0,1279,1281,3,476,238,0,1280,1282,5,122,0,0,1281,1280, - 1,0,0,0,1281,1282,1,0,0,0,1282,1290,1,0,0,0,1283,1285,3,60,30,0, - 1284,1283,1,0,0,0,1284,1285,1,0,0,0,1285,1287,1,0,0,0,1286,1288, - 5,122,0,0,1287,1286,1,0,0,0,1287,1288,1,0,0,0,1288,1290,1,0,0,0, - 1289,1278,1,0,0,0,1289,1284,1,0,0,0,1290,1348,1,0,0,0,1291,1292, - 5,308,0,0,1292,1319,5,50,0,0,1293,1294,5,51,0,0,1294,1295,5,405, - 0,0,1295,1320,5,431,0,0,1296,1297,3,70,35,0,1297,1298,3,476,238, - 0,1298,1303,1,0,0,0,1299,1301,3,60,30,0,1300,1299,1,0,0,0,1300,1301, - 1,0,0,0,1301,1303,1,0,0,0,1302,1296,1,0,0,0,1302,1300,1,0,0,0,1303, - 1305,1,0,0,0,1304,1306,3,410,205,0,1305,1304,1,0,0,0,1305,1306,1, - 0,0,0,1306,1308,1,0,0,0,1307,1309,3,412,206,0,1308,1307,1,0,0,0, - 1308,1309,1,0,0,0,1309,1311,1,0,0,0,1310,1312,3,414,207,0,1311,1310, - 1,0,0,0,1311,1312,1,0,0,0,1312,1314,1,0,0,0,1313,1315,3,556,278, - 0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1317,1,0,0,0,1316,1318, - 3,390,195,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0, - 0,1319,1293,1,0,0,0,1319,1302,1,0,0,0,1320,1348,1,0,0,0,1321,1322, - 5,308,0,0,1322,1348,5,346,0,0,1323,1324,5,308,0,0,1324,1325,5,54, - 0,0,1325,1348,5,426,0,0,1326,1327,5,308,0,0,1327,1331,5,280,0,0, - 1328,1329,5,243,0,0,1329,1332,3,654,327,0,1330,1332,5,244,0,0,1331, - 1328,1,0,0,0,1331,1330,1,0,0,0,1332,1348,1,0,0,0,1333,1334,5,308, - 0,0,1334,1348,5,70,0,0,1335,1337,5,308,0,0,1336,1338,5,138,0,0,1337, - 1336,1,0,0,0,1337,1338,1,0,0,0,1338,1339,1,0,0,0,1339,1340,7,9,0, - 0,1340,1341,5,224,0,0,1341,1345,3,482,241,0,1342,1343,3,68,34,0, - 1343,1344,3,476,238,0,1344,1346,1,0,0,0,1345,1342,1,0,0,0,1345,1346, - 1,0,0,0,1346,1348,1,0,0,0,1347,1164,1,0,0,0,1347,1170,1,0,0,0,1347, - 1183,1,0,0,0,1347,1195,1,0,0,0,1347,1208,1,0,0,0,1347,1225,1,0,0, - 0,1347,1231,1,0,0,0,1347,1246,1,0,0,0,1347,1255,1,0,0,0,1347,1268, - 1,0,0,0,1347,1276,1,0,0,0,1347,1291,1,0,0,0,1347,1321,1,0,0,0,1347, - 1323,1,0,0,0,1347,1326,1,0,0,0,1347,1333,1,0,0,0,1347,1335,1,0,0, - 0,1348,73,1,0,0,0,1349,1350,5,384,0,0,1350,1351,3,654,327,0,1351, - 1352,5,405,0,0,1352,1353,5,426,0,0,1353,1358,1,0,0,0,1354,1355,5, - 184,0,0,1355,1358,3,194,97,0,1356,1358,3,194,97,0,1357,1349,1,0, - 0,0,1357,1354,1,0,0,0,1357,1356,1,0,0,0,1358,75,1,0,0,0,1359,1360, - 5,190,0,0,1360,1361,5,329,0,0,1361,1362,3,640,320,0,1362,1363,3, - 80,40,0,1363,77,1,0,0,0,1364,1365,5,190,0,0,1365,1366,3,70,35,0, - 1366,1367,3,476,238,0,1367,1368,3,80,40,0,1368,79,1,0,0,0,1369,1370, - 7,10,0,0,1370,81,1,0,0,0,1371,1372,5,361,0,0,1372,1373,5,329,0,0, - 1373,1374,3,640,320,0,1374,83,1,0,0,0,1375,1376,5,361,0,0,1376,1377, - 3,70,35,0,1377,1378,3,476,238,0,1378,85,1,0,0,0,1379,1380,5,58,0, - 0,1380,1381,5,287,0,0,1381,1382,3,654,327,0,1382,87,1,0,0,0,1383, - 1384,5,101,0,0,1384,1385,5,287,0,0,1385,1386,3,654,327,0,1386,89, - 1,0,0,0,1387,1388,5,143,0,0,1388,1390,3,118,59,0,1389,1391,3,112, - 56,0,1390,1389,1,0,0,0,1390,1391,1,0,0,0,1391,1392,1,0,0,0,1392, - 1393,5,341,0,0,1393,1395,3,124,62,0,1394,1396,3,130,65,0,1395,1394, - 1,0,0,0,1395,1396,1,0,0,0,1396,91,1,0,0,0,1397,1399,5,283,0,0,1398, - 1400,3,132,66,0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1401,1, - 0,0,0,1401,1403,3,118,59,0,1402,1404,3,112,56,0,1403,1402,1,0,0, - 0,1403,1404,1,0,0,0,1404,1405,1,0,0,0,1405,1406,5,139,0,0,1406,1407, - 3,124,62,0,1407,93,1,0,0,0,1408,1410,5,143,0,0,1409,1411,5,287,0, - 0,1410,1409,1,0,0,0,1410,1411,1,0,0,0,1411,1412,1,0,0,0,1412,1417, - 3,654,327,0,1413,1414,5,397,0,0,1414,1416,3,654,327,0,1415,1413, - 1,0,0,0,1416,1419,1,0,0,0,1417,1415,1,0,0,0,1417,1418,1,0,0,0,1418, - 1420,1,0,0,0,1419,1417,1,0,0,0,1420,1421,5,341,0,0,1421,1423,3,124, - 62,0,1422,1424,3,136,68,0,1423,1422,1,0,0,0,1423,1424,1,0,0,0,1424, - 95,1,0,0,0,1425,1427,5,283,0,0,1426,1428,3,134,67,0,1427,1426,1, - 0,0,0,1427,1428,1,0,0,0,1428,1430,1,0,0,0,1429,1431,5,287,0,0,1430, - 1429,1,0,0,0,1430,1431,1,0,0,0,1431,1432,1,0,0,0,1432,1437,3,654, - 327,0,1433,1434,5,397,0,0,1434,1436,3,654,327,0,1435,1433,1,0,0, - 0,1436,1439,1,0,0,0,1437,1435,1,0,0,0,1437,1438,1,0,0,0,1438,1440, - 1,0,0,0,1439,1437,1,0,0,0,1440,1441,5,139,0,0,1441,1442,3,124,62, - 0,1442,97,1,0,0,0,1443,1444,5,308,0,0,1444,1445,5,287,0,0,1445,1446, - 5,143,0,0,1446,1447,3,126,63,0,1447,99,1,0,0,0,1448,1449,5,308,0, - 0,1449,1450,5,288,0,0,1450,101,1,0,0,0,1451,1452,5,308,0,0,1452, - 1453,5,62,0,0,1453,1454,5,288,0,0,1454,103,1,0,0,0,1455,1456,5,304, - 0,0,1456,1460,5,287,0,0,1457,1461,5,7,0,0,1458,1461,5,213,0,0,1459, - 1461,3,654,327,0,1460,1457,1,0,0,0,1460,1458,1,0,0,0,1460,1459,1, - 0,0,0,1461,105,1,0,0,0,1462,1463,5,308,0,0,1463,1465,5,143,0,0,1464, - 1466,3,126,63,0,1465,1464,1,0,0,0,1465,1466,1,0,0,0,1466,1469,1, - 0,0,0,1467,1468,5,224,0,0,1468,1470,3,110,55,0,1469,1467,1,0,0,0, - 1469,1470,1,0,0,0,1470,107,1,0,0,0,1471,1472,5,308,0,0,1472,1473, - 5,252,0,0,1473,1474,3,654,327,0,1474,109,1,0,0,0,1475,1478,5,7,0, - 0,1476,1478,3,116,58,0,1477,1475,1,0,0,0,1477,1476,1,0,0,0,1478, - 111,1,0,0,0,1479,1480,5,224,0,0,1480,1481,3,114,57,0,1481,113,1, - 0,0,0,1482,1483,3,70,35,0,1483,1484,3,476,238,0,1484,1494,1,0,0, - 0,1485,1487,5,329,0,0,1486,1485,1,0,0,0,1486,1487,1,0,0,0,1487,1488, - 1,0,0,0,1488,1494,3,640,320,0,1489,1490,5,366,0,0,1490,1494,5,426, - 0,0,1491,1492,5,303,0,0,1492,1494,3,654,327,0,1493,1482,1,0,0,0, - 1493,1486,1,0,0,0,1493,1489,1,0,0,0,1493,1491,1,0,0,0,1494,115,1, - 0,0,0,1495,1496,3,70,35,0,1496,1497,3,476,238,0,1497,1516,1,0,0, - 0,1498,1500,5,329,0,0,1499,1498,1,0,0,0,1499,1500,1,0,0,0,1500,1501, - 1,0,0,0,1501,1506,3,482,241,0,1502,1503,5,399,0,0,1503,1504,3,254, - 127,0,1504,1505,5,400,0,0,1505,1507,1,0,0,0,1506,1502,1,0,0,0,1506, - 1507,1,0,0,0,1507,1509,1,0,0,0,1508,1510,3,642,321,0,1509,1508,1, - 0,0,0,1509,1510,1,0,0,0,1510,1516,1,0,0,0,1511,1512,5,366,0,0,1512, - 1516,5,426,0,0,1513,1514,5,303,0,0,1514,1516,3,654,327,0,1515,1495, - 1,0,0,0,1515,1499,1,0,0,0,1515,1511,1,0,0,0,1515,1513,1,0,0,0,1516, - 117,1,0,0,0,1517,1522,3,120,60,0,1518,1519,5,397,0,0,1519,1521,3, - 120,60,0,1520,1518,1,0,0,0,1521,1524,1,0,0,0,1522,1520,1,0,0,0,1522, - 1523,1,0,0,0,1523,119,1,0,0,0,1524,1522,1,0,0,0,1525,1530,3,122, - 61,0,1526,1527,5,399,0,0,1527,1528,3,254,127,0,1528,1529,5,400,0, - 0,1529,1531,1,0,0,0,1530,1526,1,0,0,0,1530,1531,1,0,0,0,1531,121, - 1,0,0,0,1532,1533,7,11,0,0,1533,123,1,0,0,0,1534,1539,3,126,63,0, - 1535,1536,5,397,0,0,1536,1538,3,126,63,0,1537,1535,1,0,0,0,1538, - 1541,1,0,0,0,1539,1537,1,0,0,0,1539,1540,1,0,0,0,1540,125,1,0,0, - 0,1541,1539,1,0,0,0,1542,1543,5,369,0,0,1543,1549,3,658,329,0,1544, - 1545,5,144,0,0,1545,1549,3,658,329,0,1546,1547,5,287,0,0,1547,1549, - 3,654,327,0,1548,1542,1,0,0,0,1548,1544,1,0,0,0,1548,1546,1,0,0, - 0,1549,127,1,0,0,0,1550,1551,5,369,0,0,1551,1556,3,658,329,0,1552, - 1553,5,287,0,0,1553,1556,3,654,327,0,1554,1556,3,654,327,0,1555, - 1550,1,0,0,0,1555,1552,1,0,0,0,1555,1554,1,0,0,0,1556,129,1,0,0, - 0,1557,1558,5,387,0,0,1558,1559,5,143,0,0,1559,1560,5,227,0,0,1560, - 131,1,0,0,0,1561,1562,5,143,0,0,1562,1563,5,227,0,0,1563,1564,5, - 134,0,0,1564,133,1,0,0,0,1565,1566,5,5,0,0,1566,1567,5,227,0,0,1567, - 1568,5,134,0,0,1568,135,1,0,0,0,1569,1570,5,387,0,0,1570,1571,5, - 5,0,0,1571,1572,5,227,0,0,1572,137,1,0,0,0,1573,1575,5,212,0,0,1574, - 1576,5,276,0,0,1575,1574,1,0,0,0,1575,1576,1,0,0,0,1576,1577,1,0, - 0,0,1577,1578,5,329,0,0,1578,1584,3,482,241,0,1579,1580,7,12,0,0, - 1580,1582,5,239,0,0,1581,1583,3,646,323,0,1582,1581,1,0,0,0,1582, - 1583,1,0,0,0,1583,1585,1,0,0,0,1584,1579,1,0,0,0,1584,1585,1,0,0, - 0,1585,139,1,0,0,0,1586,1591,3,142,71,0,1587,1588,5,397,0,0,1588, - 1590,3,142,71,0,1589,1587,1,0,0,0,1590,1593,1,0,0,0,1591,1589,1, - 0,0,0,1591,1592,1,0,0,0,1592,141,1,0,0,0,1593,1591,1,0,0,0,1594, - 1595,3,144,72,0,1595,1596,5,426,0,0,1596,143,1,0,0,0,1597,1598,7, - 13,0,0,1598,145,1,0,0,0,1599,1601,5,58,0,0,1600,1602,5,333,0,0,1601, - 1600,1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0,0,1603,1604,5,141, - 0,0,1604,1605,3,570,285,0,1605,1606,5,17,0,0,1606,1609,5,426,0,0, - 1607,1608,5,370,0,0,1608,1610,3,140,70,0,1609,1607,1,0,0,0,1609, - 1610,1,0,0,0,1610,147,1,0,0,0,1611,1613,5,101,0,0,1612,1614,5,333, - 0,0,1613,1612,1,0,0,0,1613,1614,1,0,0,0,1614,1615,1,0,0,0,1615,1617, - 5,141,0,0,1616,1618,3,30,15,0,1617,1616,1,0,0,0,1617,1618,1,0,0, - 0,1618,1619,1,0,0,0,1619,1620,3,572,286,0,1620,149,1,0,0,0,1621, - 1622,5,271,0,0,1622,1623,7,14,0,0,1623,151,1,0,0,0,1624,1625,5,58, - 0,0,1625,1626,5,333,0,0,1626,1627,5,194,0,0,1627,1628,5,432,0,0, - 1628,1630,5,399,0,0,1629,1631,3,248,124,0,1630,1629,1,0,0,0,1630, - 1631,1,0,0,0,1631,1632,1,0,0,0,1632,1633,5,400,0,0,1633,1634,3,596, - 298,0,1634,153,1,0,0,0,1635,1636,5,101,0,0,1636,1637,5,333,0,0,1637, - 1639,5,194,0,0,1638,1640,3,30,15,0,1639,1638,1,0,0,0,1639,1640,1, - 0,0,0,1640,1641,1,0,0,0,1641,1642,5,432,0,0,1642,155,1,0,0,0,1643, - 1644,5,58,0,0,1644,1645,5,155,0,0,1645,1646,3,654,327,0,1646,1647, - 5,224,0,0,1647,1648,5,329,0,0,1648,1649,3,482,241,0,1649,1650,3, - 268,134,0,1650,1651,5,17,0,0,1651,1655,5,426,0,0,1652,1653,5,387, - 0,0,1653,1654,5,84,0,0,1654,1656,5,265,0,0,1655,1652,1,0,0,0,1655, - 1656,1,0,0,0,1656,1659,1,0,0,0,1657,1658,5,150,0,0,1658,1660,3,226, - 113,0,1659,1657,1,0,0,0,1659,1660,1,0,0,0,1660,1664,1,0,0,0,1661, - 1662,5,154,0,0,1662,1663,5,329,0,0,1663,1665,3,482,241,0,1664,1661, - 1,0,0,0,1664,1665,1,0,0,0,1665,1669,1,0,0,0,1666,1667,5,238,0,0, - 1667,1668,5,32,0,0,1668,1670,3,268,134,0,1669,1666,1,0,0,0,1669, - 1670,1,0,0,0,1670,1675,1,0,0,0,1671,1673,3,222,111,0,1672,1671,1, - 0,0,0,1672,1673,1,0,0,0,1673,1674,1,0,0,0,1674,1676,3,246,123,0, - 1675,1672,1,0,0,0,1675,1676,1,0,0,0,1676,1678,1,0,0,0,1677,1679, - 3,428,214,0,1678,1677,1,0,0,0,1678,1679,1,0,0,0,1679,1681,1,0,0, - 0,1680,1682,3,224,112,0,1681,1680,1,0,0,0,1681,1682,1,0,0,0,1682, - 1684,1,0,0,0,1683,1685,3,196,98,0,1684,1683,1,0,0,0,1684,1685,1, - 0,0,0,1685,157,1,0,0,0,1686,1687,5,101,0,0,1687,1689,5,155,0,0,1688, - 1690,3,30,15,0,1689,1688,1,0,0,0,1689,1690,1,0,0,0,1690,1691,1,0, - 0,0,1691,1692,3,654,327,0,1692,1693,5,224,0,0,1693,1694,3,482,241, - 0,1694,159,1,0,0,0,1695,1698,5,58,0,0,1696,1697,5,228,0,0,1697,1699, - 5,278,0,0,1698,1696,1,0,0,0,1698,1699,1,0,0,0,1699,1700,1,0,0,0, - 1700,1702,5,378,0,0,1701,1703,3,32,16,0,1702,1701,1,0,0,0,1702,1703, - 1,0,0,0,1703,1704,1,0,0,0,1704,1709,3,488,244,0,1705,1706,5,399, - 0,0,1706,1707,3,308,154,0,1707,1708,5,400,0,0,1708,1710,1,0,0,0, - 1709,1705,1,0,0,0,1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713, - 3,196,98,0,1712,1711,1,0,0,0,1712,1713,1,0,0,0,1713,1715,1,0,0,0, - 1714,1716,3,162,81,0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1718, - 1,0,0,0,1717,1719,3,224,112,0,1718,1717,1,0,0,0,1718,1719,1,0,0, - 0,1719,1720,1,0,0,0,1720,1721,5,17,0,0,1721,1722,3,384,192,0,1722, - 161,1,0,0,0,1723,1724,5,238,0,0,1724,1730,5,224,0,0,1725,1726,5, - 399,0,0,1726,1731,3,254,127,0,1727,1728,5,316,0,0,1728,1729,5,399, - 0,0,1729,1731,3,204,102,0,1730,1725,1,0,0,0,1730,1727,1,0,0,0,1731, - 1732,1,0,0,0,1732,1733,5,400,0,0,1733,163,1,0,0,0,1734,1737,3,166, - 83,0,1735,1737,3,168,84,0,1736,1734,1,0,0,0,1736,1735,1,0,0,0,1737, - 165,1,0,0,0,1738,1739,5,42,0,0,1739,1740,5,224,0,0,1740,1741,5,399, - 0,0,1741,1742,3,254,127,0,1742,1743,5,400,0,0,1743,167,1,0,0,0,1744, - 1745,3,170,85,0,1745,1746,3,172,86,0,1746,169,1,0,0,0,1747,1748, - 5,98,0,0,1748,1749,5,224,0,0,1749,1750,5,399,0,0,1750,1751,3,254, - 127,0,1751,1752,5,400,0,0,1752,171,1,0,0,0,1753,1754,5,315,0,0,1754, - 1755,5,224,0,0,1755,1756,5,399,0,0,1756,1757,3,254,127,0,1757,1758, - 5,400,0,0,1758,173,1,0,0,0,1759,1760,5,101,0,0,1760,1762,5,378,0, - 0,1761,1763,3,30,15,0,1762,1761,1,0,0,0,1762,1763,1,0,0,0,1763,1764, - 1,0,0,0,1764,1765,3,486,243,0,1765,175,1,0,0,0,1766,1767,5,58,0, - 0,1767,1768,5,202,0,0,1768,1770,5,378,0,0,1769,1771,3,32,16,0,1770, - 1769,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0,0,0,1772,1774,3,488, - 244,0,1773,1775,3,38,19,0,1774,1773,1,0,0,0,1774,1775,1,0,0,0,1775, - 1777,1,0,0,0,1776,1778,3,196,98,0,1777,1776,1,0,0,0,1777,1778,1, - 0,0,0,1778,1780,1,0,0,0,1779,1781,3,162,81,0,1780,1779,1,0,0,0,1780, - 1781,1,0,0,0,1781,1783,1,0,0,0,1782,1784,3,164,82,0,1783,1782,1, - 0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0,0,1785,1787,3,222,111,0, - 1786,1785,1,0,0,0,1786,1787,1,0,0,0,1787,1789,1,0,0,0,1788,1790, - 3,246,123,0,1789,1788,1,0,0,0,1789,1790,1,0,0,0,1790,1792,1,0,0, - 0,1791,1793,3,428,214,0,1792,1791,1,0,0,0,1792,1793,1,0,0,0,1793, - 1795,1,0,0,0,1794,1796,3,224,112,0,1795,1794,1,0,0,0,1795,1796,1, - 0,0,0,1796,1797,1,0,0,0,1797,1798,5,17,0,0,1798,1799,3,384,192,0, - 1799,177,1,0,0,0,1800,1801,5,101,0,0,1801,1802,5,202,0,0,1802,1804, - 5,378,0,0,1803,1805,3,30,15,0,1804,1803,1,0,0,0,1804,1805,1,0,0, - 0,1805,1806,1,0,0,0,1806,1807,3,486,243,0,1807,179,1,0,0,0,1808, - 1809,5,58,0,0,1809,1810,5,293,0,0,1810,1811,5,258,0,0,1811,1812, - 3,654,327,0,1812,1814,3,188,94,0,1813,1815,3,190,95,0,1814,1813, - 1,0,0,0,1814,1815,1,0,0,0,1815,1817,1,0,0,0,1816,1818,3,272,136, - 0,1817,1816,1,0,0,0,1817,1818,1,0,0,0,1818,1819,1,0,0,0,1819,1820, - 3,192,96,0,1820,181,1,0,0,0,1821,1822,5,101,0,0,1822,1823,5,293, - 0,0,1823,1824,5,258,0,0,1824,1825,3,654,327,0,1825,183,1,0,0,0,1826, - 1827,5,9,0,0,1827,1828,5,293,0,0,1828,1829,5,258,0,0,1829,1830,3, - 654,327,0,1830,1831,3,186,93,0,1831,185,1,0,0,0,1832,1838,3,188, - 94,0,1833,1838,3,190,95,0,1834,1838,3,272,136,0,1835,1838,3,192, - 96,0,1836,1838,5,115,0,0,1837,1832,1,0,0,0,1837,1833,1,0,0,0,1837, - 1834,1,0,0,0,1837,1835,1,0,0,0,1837,1836,1,0,0,0,1838,187,1,0,0, - 0,1839,1840,5,59,0,0,1840,1855,5,426,0,0,1841,1843,5,111,0,0,1842, - 1844,5,431,0,0,1843,1842,1,0,0,0,1843,1844,1,0,0,0,1844,1845,1,0, - 0,0,1845,1852,3,594,297,0,1846,1850,5,20,0,0,1847,1848,5,223,0,0, - 1848,1850,5,32,0,0,1849,1846,1,0,0,0,1849,1847,1,0,0,0,1850,1851, - 1,0,0,0,1851,1853,5,426,0,0,1852,1849,1,0,0,0,1852,1853,1,0,0,0, - 1853,1855,1,0,0,0,1854,1839,1,0,0,0,1854,1841,1,0,0,0,1855,189,1, - 0,0,0,1856,1857,5,116,0,0,1857,1858,5,17,0,0,1858,1859,5,426,0,0, - 1859,191,1,0,0,0,1860,1862,5,85,0,0,1861,1860,1,0,0,0,1861,1862, - 1,0,0,0,1862,1863,1,0,0,0,1863,1864,5,17,0,0,1864,1865,3,2,1,0,1865, - 193,1,0,0,0,1866,1869,3,654,327,0,1867,1869,5,426,0,0,1868,1866, - 1,0,0,0,1868,1867,1,0,0,0,1869,195,1,0,0,0,1870,1871,5,47,0,0,1871, - 1872,5,426,0,0,1872,197,1,0,0,0,1873,1874,5,183,0,0,1874,1875,5, - 431,0,0,1875,199,1,0,0,0,1876,1877,5,238,0,0,1877,1886,5,32,0,0, - 1878,1881,5,399,0,0,1879,1882,3,202,101,0,1880,1882,3,254,127,0, - 1881,1879,1,0,0,0,1881,1880,1,0,0,0,1882,1887,1,0,0,0,1883,1884, - 5,316,0,0,1884,1885,5,399,0,0,1885,1887,3,204,102,0,1886,1878,1, - 0,0,0,1886,1883,1,0,0,0,1887,1888,1,0,0,0,1888,1889,5,400,0,0,1889, - 201,1,0,0,0,1890,1895,3,320,160,0,1891,1892,5,397,0,0,1892,1894, - 3,320,160,0,1893,1891,1,0,0,0,1894,1897,1,0,0,0,1895,1893,1,0,0, - 0,1895,1896,1,0,0,0,1896,203,1,0,0,0,1897,1895,1,0,0,0,1898,1903, - 3,206,103,0,1899,1900,5,397,0,0,1900,1902,3,206,103,0,1901,1899, - 1,0,0,0,1902,1905,1,0,0,0,1903,1901,1,0,0,0,1903,1904,1,0,0,0,1904, - 205,1,0,0,0,1905,1903,1,0,0,0,1906,1925,3,256,128,0,1907,1912,3, - 682,341,0,1908,1912,3,684,342,0,1909,1912,3,688,344,0,1910,1912, - 3,690,345,0,1911,1907,1,0,0,0,1911,1908,1,0,0,0,1911,1909,1,0,0, - 0,1911,1910,1,0,0,0,1912,1913,1,0,0,0,1913,1914,5,399,0,0,1914,1915, - 3,256,128,0,1915,1916,5,400,0,0,1916,1925,1,0,0,0,1917,1918,7,15, - 0,0,1918,1919,5,399,0,0,1919,1920,5,431,0,0,1920,1921,5,397,0,0, - 1921,1922,3,256,128,0,1922,1923,5,400,0,0,1923,1925,1,0,0,0,1924, - 1906,1,0,0,0,1924,1911,1,0,0,0,1924,1917,1,0,0,0,1925,207,1,0,0, - 0,1926,1927,5,42,0,0,1927,1928,5,32,0,0,1928,1929,5,399,0,0,1929, - 1930,3,254,127,0,1930,1937,5,400,0,0,1931,1932,5,315,0,0,1932,1933, - 5,32,0,0,1933,1934,5,399,0,0,1934,1935,3,266,133,0,1935,1936,5,400, - 0,0,1936,1938,1,0,0,0,1937,1931,1,0,0,0,1937,1938,1,0,0,0,1938,1939, - 1,0,0,0,1939,1940,5,166,0,0,1940,1941,5,431,0,0,1941,1942,5,31,0, - 0,1942,209,1,0,0,0,1943,1944,5,310,0,0,1944,1945,5,32,0,0,1945,1946, - 5,399,0,0,1946,1947,3,254,127,0,1947,1948,5,400,0,0,1948,1949,5, - 224,0,0,1949,1950,5,399,0,0,1950,1951,3,294,147,0,1951,1953,5,400, - 0,0,1952,1954,3,40,20,0,1953,1952,1,0,0,0,1953,1954,1,0,0,0,1954, - 211,1,0,0,0,1955,1958,3,218,109,0,1956,1958,3,220,110,0,1957,1955, - 1,0,0,0,1957,1956,1,0,0,0,1958,213,1,0,0,0,1959,1960,5,266,0,0,1960, - 1961,5,426,0,0,1961,215,1,0,0,0,1962,1963,5,267,0,0,1963,1964,5, - 426,0,0,1964,217,1,0,0,0,1965,1966,5,291,0,0,1966,1967,5,137,0,0, - 1967,1968,5,301,0,0,1968,1972,5,426,0,0,1969,1970,5,387,0,0,1970, - 1971,5,302,0,0,1971,1973,3,226,113,0,1972,1969,1,0,0,0,1972,1973, - 1,0,0,0,1973,219,1,0,0,0,1974,1975,5,291,0,0,1975,1976,5,137,0,0, - 1976,1978,5,87,0,0,1977,1979,3,236,118,0,1978,1977,1,0,0,0,1978, - 1979,1,0,0,0,1979,1981,1,0,0,0,1980,1982,3,238,119,0,1981,1980,1, - 0,0,0,1981,1982,1,0,0,0,1982,1984,1,0,0,0,1983,1985,3,240,120,0, - 1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985,1987,1,0,0,0,1986,1988, - 3,242,121,0,1987,1986,1,0,0,0,1987,1988,1,0,0,0,1988,1990,1,0,0, - 0,1989,1991,3,244,122,0,1990,1989,1,0,0,0,1990,1991,1,0,0,0,1991, - 221,1,0,0,0,1992,1995,3,220,110,0,1993,1995,3,218,109,0,1994,1992, - 1,0,0,0,1994,1993,1,0,0,0,1995,223,1,0,0,0,1996,1997,5,332,0,0,1997, - 1998,3,226,113,0,1998,225,1,0,0,0,1999,2000,5,399,0,0,2000,2001, - 3,228,114,0,2001,2002,5,400,0,0,2002,227,1,0,0,0,2003,2013,3,232, - 116,0,2004,2009,5,426,0,0,2005,2006,5,397,0,0,2006,2008,5,426,0, - 0,2007,2005,1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2009,2010, - 1,0,0,0,2010,2013,1,0,0,0,2011,2009,1,0,0,0,2012,2003,1,0,0,0,2012, - 2004,1,0,0,0,2013,229,1,0,0,0,2014,2015,5,399,0,0,2015,2016,3,232, - 116,0,2016,2017,5,400,0,0,2017,231,1,0,0,0,2018,2023,3,234,117,0, - 2019,2020,5,397,0,0,2020,2022,3,234,117,0,2021,2019,1,0,0,0,2022, - 2025,1,0,0,0,2023,2021,1,0,0,0,2023,2024,1,0,0,0,2024,233,1,0,0, - 0,2025,2023,1,0,0,0,2026,2027,5,426,0,0,2027,2028,5,405,0,0,2028, - 2029,5,426,0,0,2029,235,1,0,0,0,2030,2031,5,127,0,0,2031,2032,5, - 334,0,0,2032,2033,5,32,0,0,2033,2037,5,426,0,0,2034,2035,5,110,0, - 0,2035,2036,5,32,0,0,2036,2038,5,426,0,0,2037,2034,1,0,0,0,2037, - 2038,1,0,0,0,2038,237,1,0,0,0,2039,2040,5,44,0,0,2040,2041,5,169, - 0,0,2041,2042,5,334,0,0,2042,2043,5,32,0,0,2043,2044,5,426,0,0,2044, - 239,1,0,0,0,2045,2046,5,198,0,0,2046,2047,5,174,0,0,2047,2048,5, - 334,0,0,2048,2049,5,32,0,0,2049,2050,5,426,0,0,2050,241,1,0,0,0, - 2051,2052,5,186,0,0,2052,2053,5,334,0,0,2053,2054,5,32,0,0,2054, - 2055,5,426,0,0,2055,243,1,0,0,0,2056,2057,5,219,0,0,2057,2058,5, - 85,0,0,2058,2059,5,17,0,0,2059,2060,5,426,0,0,2060,245,1,0,0,0,2061, - 2062,5,321,0,0,2062,2063,5,17,0,0,2063,2064,5,160,0,0,2064,2065, - 5,426,0,0,2065,2066,5,233,0,0,2066,2071,5,426,0,0,2067,2068,5,159, - 0,0,2068,2069,5,426,0,0,2069,2070,5,232,0,0,2070,2072,5,426,0,0, - 2071,2067,1,0,0,0,2071,2072,1,0,0,0,2072,2103,1,0,0,0,2073,2074, - 5,321,0,0,2074,2075,5,32,0,0,2075,2079,5,426,0,0,2076,2077,5,387, - 0,0,2077,2078,5,302,0,0,2078,2080,3,226,113,0,2079,2076,1,0,0,0, - 2079,2080,1,0,0,0,2080,2084,1,0,0,0,2081,2082,5,321,0,0,2082,2083, - 5,17,0,0,2083,2085,3,654,327,0,2084,2081,1,0,0,0,2084,2085,1,0,0, - 0,2085,2103,1,0,0,0,2086,2087,5,321,0,0,2087,2088,5,32,0,0,2088, - 2092,3,654,327,0,2089,2090,5,387,0,0,2090,2091,5,302,0,0,2091,2093, - 3,226,113,0,2092,2089,1,0,0,0,2092,2093,1,0,0,0,2093,2097,1,0,0, - 0,2094,2095,5,321,0,0,2095,2096,5,17,0,0,2096,2098,3,654,327,0,2097, - 2094,1,0,0,0,2097,2098,1,0,0,0,2098,2103,1,0,0,0,2099,2100,5,321, - 0,0,2100,2101,5,17,0,0,2101,2103,3,654,327,0,2102,2061,1,0,0,0,2102, - 2073,1,0,0,0,2102,2086,1,0,0,0,2102,2099,1,0,0,0,2103,247,1,0,0, - 0,2104,2109,3,314,157,0,2105,2106,5,397,0,0,2106,2108,3,314,157, - 0,2107,2105,1,0,0,0,2108,2111,1,0,0,0,2109,2107,1,0,0,0,2109,2110, - 1,0,0,0,2110,249,1,0,0,0,2111,2109,1,0,0,0,2112,2117,3,316,158,0, - 2113,2114,5,397,0,0,2114,2116,3,316,158,0,2115,2113,1,0,0,0,2116, - 2119,1,0,0,0,2117,2115,1,0,0,0,2117,2118,1,0,0,0,2118,251,1,0,0, - 0,2119,2117,1,0,0,0,2120,2125,3,344,172,0,2121,2122,5,397,0,0,2122, - 2124,3,344,172,0,2123,2121,1,0,0,0,2124,2127,1,0,0,0,2125,2123,1, - 0,0,0,2125,2126,1,0,0,0,2126,253,1,0,0,0,2127,2125,1,0,0,0,2128, - 2133,3,256,128,0,2129,2130,5,397,0,0,2130,2132,3,256,128,0,2131, - 2129,1,0,0,0,2132,2135,1,0,0,0,2133,2131,1,0,0,0,2133,2134,1,0,0, - 0,2134,255,1,0,0,0,2135,2133,1,0,0,0,2136,2140,3,702,351,0,2137, - 2138,4,128,0,0,2138,2140,3,698,349,0,2139,2136,1,0,0,0,2139,2137, - 1,0,0,0,2140,257,1,0,0,0,2141,2142,3,700,350,0,2142,259,1,0,0,0, - 2143,2147,3,702,351,0,2144,2145,4,130,1,0,2145,2147,3,698,349,0, - 2146,2143,1,0,0,0,2146,2144,1,0,0,0,2147,261,1,0,0,0,2148,2149,3, - 654,327,0,2149,263,1,0,0,0,2150,2160,3,256,128,0,2151,2156,5,395, - 0,0,2152,2157,5,104,0,0,2153,2157,5,175,0,0,2154,2157,5,375,0,0, - 2155,2157,3,654,327,0,2156,2152,1,0,0,0,2156,2153,1,0,0,0,2156,2154, - 1,0,0,0,2156,2155,1,0,0,0,2157,2159,1,0,0,0,2158,2151,1,0,0,0,2159, - 2162,1,0,0,0,2160,2158,1,0,0,0,2160,2161,1,0,0,0,2161,265,1,0,0, - 0,2162,2160,1,0,0,0,2163,2168,3,306,153,0,2164,2165,5,397,0,0,2165, - 2167,3,306,153,0,2166,2164,1,0,0,0,2167,2170,1,0,0,0,2168,2166,1, - 0,0,0,2168,2169,1,0,0,0,2169,267,1,0,0,0,2170,2168,1,0,0,0,2171, - 2172,5,399,0,0,2172,2173,3,254,127,0,2173,2174,5,400,0,0,2174,269, - 1,0,0,0,2175,2177,3,272,136,0,2176,2178,3,274,137,0,2177,2176,1, - 0,0,0,2177,2178,1,0,0,0,2178,2181,1,0,0,0,2179,2181,3,276,138,0, - 2180,2175,1,0,0,0,2180,2179,1,0,0,0,2181,271,1,0,0,0,2182,2185,3, - 678,339,0,2183,2185,3,680,340,0,2184,2182,1,0,0,0,2184,2183,1,0, - 0,0,2185,273,1,0,0,0,2186,2187,7,16,0,0,2187,275,1,0,0,0,2188,2192, - 5,109,0,0,2189,2190,5,216,0,0,2190,2192,5,109,0,0,2191,2188,1,0, - 0,0,2191,2189,1,0,0,0,2192,277,1,0,0,0,2193,2194,7,17,0,0,2194,279, - 1,0,0,0,2195,2196,5,55,0,0,2196,2198,3,654,327,0,2197,2195,1,0,0, - 0,2197,2198,1,0,0,0,2198,2199,1,0,0,0,2199,2201,3,284,142,0,2200, - 2202,3,340,170,0,2201,2200,1,0,0,0,2201,2202,1,0,0,0,2202,281,1, - 0,0,0,2203,2204,5,55,0,0,2204,2205,3,654,327,0,2205,2207,3,284,142, - 0,2206,2208,3,342,171,0,2207,2206,1,0,0,0,2207,2208,1,0,0,0,2208, - 283,1,0,0,0,2209,2212,3,286,143,0,2210,2212,3,288,144,0,2211,2209, - 1,0,0,0,2211,2210,1,0,0,0,2212,285,1,0,0,0,2213,2214,3,338,169,0, - 2214,2215,3,268,134,0,2215,287,1,0,0,0,2216,2217,5,40,0,0,2217,2218, - 5,399,0,0,2218,2219,3,596,298,0,2219,2220,5,400,0,0,2220,289,1,0, - 0,0,2221,2222,5,55,0,0,2222,2224,3,654,327,0,2223,2221,1,0,0,0,2223, - 2224,1,0,0,0,2224,2225,1,0,0,0,2225,2226,5,136,0,0,2226,2227,5,173, - 0,0,2227,2228,3,268,134,0,2228,2229,5,269,0,0,2229,2230,3,482,241, - 0,2230,2232,3,268,134,0,2231,2233,3,340,170,0,2232,2231,1,0,0,0, - 2232,2233,1,0,0,0,2233,291,1,0,0,0,2234,2235,5,55,0,0,2235,2236, - 3,654,327,0,2236,2237,5,136,0,0,2237,2238,5,173,0,0,2238,2239,3, - 268,134,0,2239,2240,5,269,0,0,2240,2241,3,482,241,0,2241,2243,3, - 268,134,0,2242,2244,3,342,171,0,2243,2242,1,0,0,0,2243,2244,1,0, - 0,0,2244,293,1,0,0,0,2245,2248,3,300,150,0,2246,2248,3,296,148,0, - 2247,2245,1,0,0,0,2247,2246,1,0,0,0,2248,295,1,0,0,0,2249,2254,3, - 298,149,0,2250,2251,5,397,0,0,2251,2253,3,298,149,0,2252,2250,1, - 0,0,0,2253,2256,1,0,0,0,2254,2252,1,0,0,0,2254,2255,1,0,0,0,2255, - 297,1,0,0,0,2256,2254,1,0,0,0,2257,2258,5,399,0,0,2258,2259,3,300, - 150,0,2259,2260,5,400,0,0,2260,299,1,0,0,0,2261,2266,3,588,294,0, - 2262,2263,5,397,0,0,2263,2265,3,588,294,0,2264,2262,1,0,0,0,2265, - 2268,1,0,0,0,2266,2264,1,0,0,0,2266,2267,1,0,0,0,2267,301,1,0,0, - 0,2268,2266,1,0,0,0,2269,2270,7,18,0,0,2270,303,1,0,0,0,2271,2272, - 5,220,0,0,2272,2273,7,19,0,0,2273,305,1,0,0,0,2274,2276,3,256,128, - 0,2275,2277,3,302,151,0,2276,2275,1,0,0,0,2276,2277,1,0,0,0,2277, - 2279,1,0,0,0,2278,2280,3,304,152,0,2279,2278,1,0,0,0,2279,2280,1, - 0,0,0,2280,307,1,0,0,0,2281,2286,3,310,155,0,2282,2283,5,397,0,0, - 2283,2285,3,310,155,0,2284,2282,1,0,0,0,2285,2288,1,0,0,0,2286,2284, - 1,0,0,0,2286,2287,1,0,0,0,2287,309,1,0,0,0,2288,2286,1,0,0,0,2289, - 2292,3,262,131,0,2290,2291,5,47,0,0,2291,2293,5,426,0,0,2292,2290, - 1,0,0,0,2292,2293,1,0,0,0,2293,311,1,0,0,0,2294,2297,3,256,128,0, - 2295,2297,3,596,298,0,2296,2294,1,0,0,0,2296,2295,1,0,0,0,2297,2299, - 1,0,0,0,2298,2300,3,302,151,0,2299,2298,1,0,0,0,2299,2300,1,0,0, - 0,2300,2302,1,0,0,0,2301,2303,3,304,152,0,2302,2301,1,0,0,0,2302, - 2303,1,0,0,0,2303,313,1,0,0,0,2304,2305,3,262,131,0,2305,2308,3, - 346,173,0,2306,2307,5,47,0,0,2307,2309,5,426,0,0,2308,2306,1,0,0, - 0,2308,2309,1,0,0,0,2309,315,1,0,0,0,2310,2313,3,318,159,0,2311, - 2313,3,320,160,0,2312,2310,1,0,0,0,2312,2311,1,0,0,0,2313,317,1, - 0,0,0,2314,2317,3,290,145,0,2315,2317,3,280,140,0,2316,2314,1,0, - 0,0,2316,2315,1,0,0,0,2317,319,1,0,0,0,2318,2319,3,262,131,0,2319, - 2321,3,346,173,0,2320,2322,3,322,161,0,2321,2320,1,0,0,0,2321,2322, - 1,0,0,0,2322,2325,1,0,0,0,2323,2324,5,47,0,0,2324,2326,5,426,0,0, - 2325,2323,1,0,0,0,2325,2326,1,0,0,0,2326,321,1,0,0,0,2327,2330,3, - 324,162,0,2328,2330,3,326,163,0,2329,2327,1,0,0,0,2329,2328,1,0, - 0,0,2330,323,1,0,0,0,2331,2332,5,55,0,0,2332,2334,3,654,327,0,2333, - 2331,1,0,0,0,2333,2334,1,0,0,0,2334,2335,1,0,0,0,2335,2336,5,269, - 0,0,2336,2337,3,482,241,0,2337,2338,5,399,0,0,2338,2339,3,256,128, - 0,2339,2341,5,400,0,0,2340,2342,3,340,170,0,2341,2340,1,0,0,0,2341, - 2342,1,0,0,0,2342,325,1,0,0,0,2343,2344,5,55,0,0,2344,2346,3,654, - 327,0,2345,2343,1,0,0,0,2345,2346,1,0,0,0,2346,2347,1,0,0,0,2347, - 2349,3,334,167,0,2348,2350,3,340,170,0,2349,2348,1,0,0,0,2349,2350, - 1,0,0,0,2350,327,1,0,0,0,2351,2354,3,330,165,0,2352,2354,3,332,166, - 0,2353,2351,1,0,0,0,2353,2352,1,0,0,0,2354,329,1,0,0,0,2355,2356, - 5,55,0,0,2356,2358,3,654,327,0,2357,2355,1,0,0,0,2357,2358,1,0,0, - 0,2358,2359,1,0,0,0,2359,2360,5,269,0,0,2360,2361,3,482,241,0,2361, - 2362,5,399,0,0,2362,2363,3,256,128,0,2363,2365,5,400,0,0,2364,2366, - 3,342,171,0,2365,2364,1,0,0,0,2365,2366,1,0,0,0,2366,331,1,0,0,0, - 2367,2368,5,55,0,0,2368,2370,3,654,327,0,2369,2367,1,0,0,0,2369, - 2370,1,0,0,0,2370,2371,1,0,0,0,2371,2373,3,334,167,0,2372,2374,3, - 342,171,0,2373,2372,1,0,0,0,2373,2374,1,0,0,0,2374,333,1,0,0,0,2375, - 2376,5,216,0,0,2376,2382,5,219,0,0,2377,2378,5,83,0,0,2378,2382, - 3,336,168,0,2379,2382,3,288,144,0,2380,2382,3,338,169,0,2381,2375, - 1,0,0,0,2381,2377,1,0,0,0,2381,2379,1,0,0,0,2381,2380,1,0,0,0,2382, - 335,1,0,0,0,2383,2387,3,588,294,0,2384,2387,3,566,283,0,2385,2387, - 3,576,288,0,2386,2383,1,0,0,0,2386,2384,1,0,0,0,2386,2385,1,0,0, - 0,2387,337,1,0,0,0,2388,2389,5,251,0,0,2389,2392,5,173,0,0,2390, - 2392,5,358,0,0,2391,2388,1,0,0,0,2391,2390,1,0,0,0,2392,339,1,0, - 0,0,2393,2395,3,270,135,0,2394,2396,3,278,139,0,2395,2394,1,0,0, - 0,2395,2396,1,0,0,0,2396,341,1,0,0,0,2397,2399,3,270,135,0,2398, - 2400,3,278,139,0,2399,2398,1,0,0,0,2399,2400,1,0,0,0,2400,343,1, - 0,0,0,2401,2402,3,262,131,0,2402,2403,5,396,0,0,2403,2406,3,346, - 173,0,2404,2405,5,47,0,0,2405,2407,5,426,0,0,2406,2404,1,0,0,0,2406, - 2407,1,0,0,0,2407,345,1,0,0,0,2408,2409,3,350,175,0,2409,347,1,0, - 0,0,2410,2415,3,346,173,0,2411,2412,5,397,0,0,2412,2414,3,346,173, - 0,2413,2411,1,0,0,0,2414,2417,1,0,0,0,2415,2413,1,0,0,0,2415,2416, - 1,0,0,0,2416,349,1,0,0,0,2417,2415,1,0,0,0,2418,2424,3,352,176,0, - 2419,2424,3,354,177,0,2420,2424,3,356,178,0,2421,2424,3,358,179, - 0,2422,2424,3,360,180,0,2423,2418,1,0,0,0,2423,2419,1,0,0,0,2423, - 2420,1,0,0,0,2423,2421,1,0,0,0,2423,2422,1,0,0,0,2424,351,1,0,0, - 0,2425,2463,5,340,0,0,2426,2463,5,311,0,0,2427,2463,5,162,0,0,2428, - 2463,5,163,0,0,2429,2463,5,26,0,0,2430,2463,5,28,0,0,2431,2463,5, - 131,0,0,2432,2463,5,264,0,0,2433,2435,5,100,0,0,2434,2436,5,248, - 0,0,2435,2434,1,0,0,0,2435,2436,1,0,0,0,2436,2463,1,0,0,0,2437,2463, - 5,71,0,0,2438,2463,5,72,0,0,2439,2463,5,337,0,0,2440,2463,5,338, - 0,0,2441,2442,5,337,0,0,2442,2443,5,387,0,0,2443,2444,5,188,0,0, - 2444,2445,5,336,0,0,2445,2463,5,394,0,0,2446,2463,5,323,0,0,2447, - 2463,5,27,0,0,2448,2456,3,696,348,0,2449,2450,5,399,0,0,2450,2453, - 5,431,0,0,2451,2452,5,397,0,0,2452,2454,5,431,0,0,2453,2451,1,0, - 0,0,2453,2454,1,0,0,0,2454,2455,1,0,0,0,2455,2457,5,400,0,0,2456, - 2449,1,0,0,0,2456,2457,1,0,0,0,2457,2463,1,0,0,0,2458,2459,7,20, - 0,0,2459,2460,5,399,0,0,2460,2461,5,431,0,0,2461,2463,5,400,0,0, - 2462,2425,1,0,0,0,2462,2426,1,0,0,0,2462,2427,1,0,0,0,2462,2428, - 1,0,0,0,2462,2429,1,0,0,0,2462,2430,1,0,0,0,2462,2431,1,0,0,0,2462, - 2432,1,0,0,0,2462,2433,1,0,0,0,2462,2437,1,0,0,0,2462,2438,1,0,0, - 0,2462,2439,1,0,0,0,2462,2440,1,0,0,0,2462,2441,1,0,0,0,2462,2446, - 1,0,0,0,2462,2447,1,0,0,0,2462,2448,1,0,0,0,2462,2458,1,0,0,0,2463, - 353,1,0,0,0,2464,2465,5,16,0,0,2465,2466,5,409,0,0,2466,2467,3,350, - 175,0,2467,2468,5,411,0,0,2468,355,1,0,0,0,2469,2470,5,324,0,0,2470, - 2471,5,409,0,0,2471,2472,3,252,126,0,2472,2473,5,411,0,0,2473,357, - 1,0,0,0,2474,2475,5,198,0,0,2475,2476,5,409,0,0,2476,2477,3,352, - 176,0,2477,2478,5,397,0,0,2478,2479,3,350,175,0,2479,2480,5,411, - 0,0,2480,359,1,0,0,0,2481,2482,5,357,0,0,2482,2483,5,409,0,0,2483, - 2484,3,348,174,0,2484,2485,5,411,0,0,2485,361,1,0,0,0,2486,2488, - 7,21,0,0,2487,2489,7,22,0,0,2488,2487,1,0,0,0,2488,2489,1,0,0,0, - 2489,363,1,0,0,0,2490,2492,3,368,184,0,2491,2490,1,0,0,0,2491,2492, - 1,0,0,0,2492,2493,1,0,0,0,2493,2494,3,366,183,0,2494,365,1,0,0,0, - 2495,2498,3,372,186,0,2496,2498,3,376,188,0,2497,2495,1,0,0,0,2497, - 2496,1,0,0,0,2498,367,1,0,0,0,2499,2500,5,387,0,0,2500,2505,3,370, - 185,0,2501,2502,5,397,0,0,2502,2504,3,370,185,0,2503,2501,1,0,0, - 0,2504,2507,1,0,0,0,2505,2503,1,0,0,0,2505,2506,1,0,0,0,2506,369, - 1,0,0,0,2507,2505,1,0,0,0,2508,2513,3,654,327,0,2509,2510,5,399, - 0,0,2510,2511,3,254,127,0,2511,2512,5,400,0,0,2512,2514,1,0,0,0, - 2513,2509,1,0,0,0,2513,2514,1,0,0,0,2514,2515,1,0,0,0,2515,2516, - 5,17,0,0,2516,2517,5,399,0,0,2517,2518,3,364,182,0,2518,2519,5,400, - 0,0,2519,371,1,0,0,0,2520,2526,3,374,187,0,2521,2522,3,362,181,0, - 2522,2523,3,374,187,0,2523,2525,1,0,0,0,2524,2521,1,0,0,0,2525,2528, - 1,0,0,0,2526,2524,1,0,0,0,2526,2527,1,0,0,0,2527,373,1,0,0,0,2528, - 2526,1,0,0,0,2529,2530,3,452,226,0,2530,2531,3,386,193,0,2531,2533, - 3,508,254,0,2532,2534,3,466,233,0,2533,2532,1,0,0,0,2533,2534,1, - 0,0,0,2534,2536,1,0,0,0,2535,2537,3,500,250,0,2536,2535,1,0,0,0, - 2536,2537,1,0,0,0,2537,2539,1,0,0,0,2538,2540,3,534,267,0,2539,2538, - 1,0,0,0,2539,2540,1,0,0,0,2540,2542,1,0,0,0,2541,2543,3,542,271, - 0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2546, - 3,526,263,0,2545,2544,1,0,0,0,2545,2546,1,0,0,0,2546,2548,1,0,0, - 0,2547,2549,3,544,272,0,2548,2547,1,0,0,0,2548,2549,1,0,0,0,2549, - 2551,1,0,0,0,2550,2552,3,556,278,0,2551,2550,1,0,0,0,2551,2552,1, - 0,0,0,2552,2554,1,0,0,0,2553,2555,3,560,280,0,2554,2553,1,0,0,0, - 2554,2555,1,0,0,0,2555,2557,1,0,0,0,2556,2558,3,562,281,0,2557,2556, - 1,0,0,0,2557,2558,1,0,0,0,2558,2560,1,0,0,0,2559,2561,3,564,282, - 0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2563,1,0,0,0,2562,2564, - 3,390,195,0,2563,2562,1,0,0,0,2563,2564,1,0,0,0,2564,2601,1,0,0, - 0,2565,2566,3,452,226,0,2566,2568,3,508,254,0,2567,2569,3,466,233, - 0,2568,2567,1,0,0,0,2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570,2572, - 3,500,250,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2574,1,0,0, - 0,2573,2575,3,534,267,0,2574,2573,1,0,0,0,2574,2575,1,0,0,0,2575, - 2577,1,0,0,0,2576,2578,3,542,271,0,2577,2576,1,0,0,0,2577,2578,1, - 0,0,0,2578,2580,1,0,0,0,2579,2581,3,526,263,0,2580,2579,1,0,0,0, - 2580,2581,1,0,0,0,2581,2583,1,0,0,0,2582,2584,3,544,272,0,2583,2582, - 1,0,0,0,2583,2584,1,0,0,0,2584,2586,1,0,0,0,2585,2587,3,556,278, - 0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2589,1,0,0,0,2588,2590, - 3,560,280,0,2589,2588,1,0,0,0,2589,2590,1,0,0,0,2590,2592,1,0,0, - 0,2591,2593,3,562,281,0,2592,2591,1,0,0,0,2592,2593,1,0,0,0,2593, - 2595,1,0,0,0,2594,2596,3,564,282,0,2595,2594,1,0,0,0,2595,2596,1, - 0,0,0,2596,2598,1,0,0,0,2597,2599,3,390,195,0,2598,2597,1,0,0,0, - 2598,2599,1,0,0,0,2599,2601,1,0,0,0,2600,2529,1,0,0,0,2600,2565, - 1,0,0,0,2601,375,1,0,0,0,2602,2603,3,386,193,0,2603,2604,3,380,190, - 0,2604,2607,1,0,0,0,2605,2607,3,380,190,0,2606,2602,1,0,0,0,2606, - 2605,1,0,0,0,2607,377,1,0,0,0,2608,2610,3,508,254,0,2609,2611,3, - 452,226,0,2610,2609,1,0,0,0,2610,2611,1,0,0,0,2611,2613,1,0,0,0, - 2612,2614,3,500,250,0,2613,2612,1,0,0,0,2613,2614,1,0,0,0,2614,2616, - 1,0,0,0,2615,2617,3,534,267,0,2616,2615,1,0,0,0,2616,2617,1,0,0, - 0,2617,2619,1,0,0,0,2618,2620,3,542,271,0,2619,2618,1,0,0,0,2619, - 2620,1,0,0,0,2620,2622,1,0,0,0,2621,2623,3,526,263,0,2622,2621,1, - 0,0,0,2622,2623,1,0,0,0,2623,2625,1,0,0,0,2624,2626,3,544,272,0, - 2625,2624,1,0,0,0,2625,2626,1,0,0,0,2626,2633,1,0,0,0,2627,2628, - 5,399,0,0,2628,2629,3,380,190,0,2629,2630,5,400,0,0,2630,2633,1, - 0,0,0,2631,2633,3,502,251,0,2632,2608,1,0,0,0,2632,2627,1,0,0,0, - 2632,2631,1,0,0,0,2633,379,1,0,0,0,2634,2636,3,378,189,0,2635,2637, - 3,382,191,0,2636,2635,1,0,0,0,2636,2637,1,0,0,0,2637,2639,1,0,0, - 0,2638,2640,3,556,278,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640, - 2642,1,0,0,0,2641,2643,3,560,280,0,2642,2641,1,0,0,0,2642,2643,1, - 0,0,0,2643,2645,1,0,0,0,2644,2646,3,562,281,0,2645,2644,1,0,0,0, - 2645,2646,1,0,0,0,2646,2648,1,0,0,0,2647,2649,3,564,282,0,2648,2647, - 1,0,0,0,2648,2649,1,0,0,0,2649,2651,1,0,0,0,2650,2652,3,390,195, - 0,2651,2650,1,0,0,0,2651,2652,1,0,0,0,2652,381,1,0,0,0,2653,2654, - 3,362,181,0,2654,2655,3,378,189,0,2655,2657,1,0,0,0,2656,2653,1, - 0,0,0,2657,2658,1,0,0,0,2658,2656,1,0,0,0,2658,2659,1,0,0,0,2659, - 383,1,0,0,0,2660,2662,3,368,184,0,2661,2660,1,0,0,0,2661,2662,1, - 0,0,0,2662,2663,1,0,0,0,2663,2664,3,380,190,0,2664,385,1,0,0,0,2665, - 2682,5,161,0,0,2666,2667,5,235,0,0,2667,2669,3,388,194,0,2668,2670, - 3,32,16,0,2669,2668,1,0,0,0,2669,2670,1,0,0,0,2670,2683,1,0,0,0, - 2671,2673,5,166,0,0,2672,2674,5,329,0,0,2673,2672,1,0,0,0,2673,2674, - 1,0,0,0,2674,2675,1,0,0,0,2675,2680,3,640,320,0,2676,2677,5,399, - 0,0,2677,2678,3,254,127,0,2678,2679,5,400,0,0,2679,2681,1,0,0,0, - 2680,2676,1,0,0,0,2680,2681,1,0,0,0,2681,2683,1,0,0,0,2682,2666, - 1,0,0,0,2682,2671,1,0,0,0,2683,387,1,0,0,0,2684,2686,5,188,0,0,2685, - 2684,1,0,0,0,2685,2686,1,0,0,0,2686,2687,1,0,0,0,2687,2688,5,93, - 0,0,2688,2690,5,426,0,0,2689,2691,3,222,111,0,2690,2689,1,0,0,0, - 2690,2691,1,0,0,0,2691,2693,1,0,0,0,2692,2694,3,246,123,0,2693,2692, - 1,0,0,0,2693,2694,1,0,0,0,2694,2698,1,0,0,0,2695,2696,5,329,0,0, - 2696,2698,3,640,320,0,2697,2685,1,0,0,0,2697,2695,1,0,0,0,2698,389, - 1,0,0,0,2699,2708,5,185,0,0,2700,2701,5,431,0,0,2701,2703,5,397, - 0,0,2702,2700,1,0,0,0,2702,2703,1,0,0,0,2703,2704,1,0,0,0,2704,2709, - 5,431,0,0,2705,2706,5,431,0,0,2706,2707,5,223,0,0,2707,2709,5,431, - 0,0,2708,2702,1,0,0,0,2708,2705,1,0,0,0,2709,391,1,0,0,0,2710,2711, - 3,256,128,0,2711,2712,5,405,0,0,2712,2713,3,394,197,0,2713,393,1, - 0,0,0,2714,2717,5,83,0,0,2715,2717,3,606,303,0,2716,2714,1,0,0,0, - 2716,2715,1,0,0,0,2717,395,1,0,0,0,2718,2719,5,304,0,0,2719,2724, - 3,392,196,0,2720,2721,5,397,0,0,2721,2723,3,392,196,0,2722,2720, - 1,0,0,0,2723,2726,1,0,0,0,2724,2722,1,0,0,0,2724,2725,1,0,0,0,2725, - 397,1,0,0,0,2726,2724,1,0,0,0,2727,2728,5,318,0,0,2728,2737,5,344, - 0,0,2729,2734,3,400,200,0,2730,2731,5,397,0,0,2731,2733,3,400,200, - 0,2732,2730,1,0,0,0,2733,2736,1,0,0,0,2734,2732,1,0,0,0,2734,2735, - 1,0,0,0,2735,2738,1,0,0,0,2736,2734,1,0,0,0,2737,2729,1,0,0,0,2737, - 2738,1,0,0,0,2738,2751,1,0,0,0,2739,2741,5,48,0,0,2740,2742,5,389, - 0,0,2741,2740,1,0,0,0,2741,2742,1,0,0,0,2742,2751,1,0,0,0,2743,2745, - 5,289,0,0,2744,2746,5,389,0,0,2745,2744,1,0,0,0,2745,2746,1,0,0, - 0,2746,2751,1,0,0,0,2747,2748,5,304,0,0,2748,2749,5,22,0,0,2749, - 2751,7,23,0,0,2750,2727,1,0,0,0,2750,2739,1,0,0,0,2750,2743,1,0, - 0,0,2750,2747,1,0,0,0,2751,399,1,0,0,0,2752,2753,5,168,0,0,2753, - 2754,5,182,0,0,2754,2758,5,312,0,0,2755,2756,5,261,0,0,2756,2758, - 7,24,0,0,2757,2752,1,0,0,0,2757,2755,1,0,0,0,2758,401,1,0,0,0,2759, - 2762,3,406,203,0,2760,2762,3,408,204,0,2761,2759,1,0,0,0,2761,2760, - 1,0,0,0,2762,2765,1,0,0,0,2763,2761,1,0,0,0,2763,2764,1,0,0,0,2764, - 2767,1,0,0,0,2765,2763,1,0,0,0,2766,2768,3,404,202,0,2767,2766,1, - 0,0,0,2767,2768,1,0,0,0,2768,403,1,0,0,0,2769,2770,5,383,0,0,2770, - 2771,5,216,0,0,2771,2774,5,201,0,0,2772,2773,5,11,0,0,2773,2775, - 3,596,298,0,2774,2772,1,0,0,0,2774,2775,1,0,0,0,2775,2776,1,0,0, - 0,2776,2777,5,335,0,0,2777,2779,5,161,0,0,2778,2780,3,268,134,0, - 2779,2778,1,0,0,0,2779,2780,1,0,0,0,2780,2781,1,0,0,0,2781,2782, - 5,374,0,0,2782,2783,3,552,276,0,2783,405,1,0,0,0,2784,2785,5,383, - 0,0,2785,2786,5,201,0,0,2786,2787,5,11,0,0,2787,2788,3,596,298,0, - 2788,2792,5,335,0,0,2789,2790,5,365,0,0,2790,2793,3,396,198,0,2791, - 2793,5,86,0,0,2792,2789,1,0,0,0,2792,2791,1,0,0,0,2793,407,1,0,0, - 0,2794,2795,5,383,0,0,2795,2796,5,201,0,0,2796,2800,5,335,0,0,2797, - 2798,5,365,0,0,2798,2801,3,396,198,0,2799,2801,5,86,0,0,2800,2797, - 1,0,0,0,2800,2799,1,0,0,0,2801,409,1,0,0,0,2802,2803,5,246,0,0,2803, - 2804,5,426,0,0,2804,411,1,0,0,0,2805,2806,5,352,0,0,2806,2807,5, - 426,0,0,2807,413,1,0,0,0,2808,2809,5,320,0,0,2809,2810,5,426,0,0, - 2810,415,1,0,0,0,2811,2842,5,9,0,0,2812,2813,5,329,0,0,2813,2814, - 3,482,241,0,2814,2815,3,418,209,0,2815,2843,1,0,0,0,2816,2817,5, - 378,0,0,2817,2819,3,486,243,0,2818,2820,5,17,0,0,2819,2818,1,0,0, - 0,2819,2820,1,0,0,0,2820,2821,1,0,0,0,2821,2822,3,422,211,0,2822, - 2843,1,0,0,0,2823,2824,5,202,0,0,2824,2825,5,378,0,0,2825,2829,3, - 486,243,0,2826,2830,3,36,18,0,2827,2830,3,38,19,0,2828,2830,5,265, - 0,0,2829,2826,1,0,0,0,2829,2827,1,0,0,0,2829,2828,1,0,0,0,2830,2843, - 1,0,0,0,2831,2832,3,70,35,0,2832,2833,3,424,212,0,2833,2843,1,0, - 0,0,2834,2835,5,69,0,0,2835,2843,3,426,213,0,2836,2837,5,155,0,0, - 2837,2838,3,654,327,0,2838,2839,5,224,0,0,2839,2840,3,640,320,0, - 2840,2841,5,265,0,0,2841,2843,1,0,0,0,2842,2812,1,0,0,0,2842,2816, - 1,0,0,0,2842,2823,1,0,0,0,2842,2831,1,0,0,0,2842,2834,1,0,0,0,2842, - 2836,1,0,0,0,2843,417,1,0,0,0,2844,2845,5,274,0,0,2845,2846,5,341, - 0,0,2846,2934,3,484,242,0,2847,2848,5,102,0,0,2848,2934,5,239,0, - 0,2849,2934,3,430,215,0,2850,2852,5,4,0,0,2851,2853,3,32,16,0,2852, - 2851,1,0,0,0,2852,2853,1,0,0,0,2853,2858,1,0,0,0,2854,2856,3,642, - 321,0,2855,2857,3,428,214,0,2856,2855,1,0,0,0,2856,2857,1,0,0,0, - 2857,2859,1,0,0,0,2858,2854,1,0,0,0,2859,2860,1,0,0,0,2860,2858, - 1,0,0,0,2860,2861,1,0,0,0,2861,2934,1,0,0,0,2862,2866,5,342,0,0, - 2863,2865,3,642,321,0,2864,2863,1,0,0,0,2865,2868,1,0,0,0,2866,2864, - 1,0,0,0,2866,2867,1,0,0,0,2867,2934,1,0,0,0,2868,2866,1,0,0,0,2869, - 2873,5,15,0,0,2870,2872,3,642,321,0,2871,2870,1,0,0,0,2872,2875, - 1,0,0,0,2873,2871,1,0,0,0,2873,2874,1,0,0,0,2874,2934,1,0,0,0,2875, - 2873,1,0,0,0,2876,2880,5,353,0,0,2877,2879,3,642,321,0,2878,2877, - 1,0,0,0,2879,2882,1,0,0,0,2880,2878,1,0,0,0,2880,2881,1,0,0,0,2881, - 2934,1,0,0,0,2882,2880,1,0,0,0,2883,2884,5,304,0,0,2884,2885,5,332, - 0,0,2885,2934,3,226,113,0,2886,2887,5,363,0,0,2887,2889,5,332,0, - 0,2888,2890,3,30,15,0,2889,2888,1,0,0,0,2889,2890,1,0,0,0,2890,2891, - 1,0,0,0,2891,2934,3,226,113,0,2892,2934,3,210,105,0,2893,2896,5, - 216,0,0,2894,2897,5,310,0,0,2895,2897,3,40,20,0,2896,2894,1,0,0, - 0,2896,2895,1,0,0,0,2897,2934,1,0,0,0,2898,2899,5,113,0,0,2899,2900, - 3,642,321,0,2900,2901,5,387,0,0,2901,2902,5,329,0,0,2902,2903,3, - 482,241,0,2903,2934,1,0,0,0,2904,2905,5,237,0,0,2905,2906,5,45,0, - 0,2906,2907,5,399,0,0,2907,2908,3,314,157,0,2908,2909,5,400,0,0, - 2909,2934,1,0,0,0,2910,2911,5,101,0,0,2911,2912,5,55,0,0,2912,2934, - 3,654,327,0,2913,2916,5,4,0,0,2914,2917,3,292,146,0,2915,2917,3, - 282,141,0,2916,2914,1,0,0,0,2916,2915,1,0,0,0,2917,2934,1,0,0,0, - 2918,2920,3,642,321,0,2919,2918,1,0,0,0,2919,2920,1,0,0,0,2920,2921, - 1,0,0,0,2921,2934,3,420,210,0,2922,2923,5,304,0,0,2923,2924,5,236, - 0,0,2924,2934,3,126,63,0,2925,2926,5,304,0,0,2926,2927,5,237,0,0, - 2927,2928,5,316,0,0,2928,2929,5,399,0,0,2929,2930,3,204,102,0,2930, - 2931,5,400,0,0,2931,2934,1,0,0,0,2932,2934,3,434,217,0,2933,2844, - 1,0,0,0,2933,2847,1,0,0,0,2933,2849,1,0,0,0,2933,2850,1,0,0,0,2933, - 2862,1,0,0,0,2933,2869,1,0,0,0,2933,2876,1,0,0,0,2933,2883,1,0,0, - 0,2933,2886,1,0,0,0,2933,2892,1,0,0,0,2933,2893,1,0,0,0,2933,2898, - 1,0,0,0,2933,2904,1,0,0,0,2933,2910,1,0,0,0,2933,2913,1,0,0,0,2933, - 2919,1,0,0,0,2933,2922,1,0,0,0,2933,2925,1,0,0,0,2933,2932,1,0,0, - 0,2934,419,1,0,0,0,2935,2936,5,304,0,0,2936,2937,5,129,0,0,2937, - 3068,3,436,218,0,2938,2939,5,304,0,0,2939,2940,5,189,0,0,2940,3068, - 5,426,0,0,2941,3068,5,53,0,0,2942,2952,5,304,0,0,2943,2944,5,301, - 0,0,2944,2948,5,426,0,0,2945,2946,5,387,0,0,2946,2947,5,302,0,0, - 2947,2949,3,226,113,0,2948,2945,1,0,0,0,2948,2949,1,0,0,0,2949,2953, - 1,0,0,0,2950,2951,5,302,0,0,2951,2953,3,226,113,0,2952,2943,1,0, - 0,0,2952,2950,1,0,0,0,2953,3068,1,0,0,0,2954,2955,5,363,0,0,2955, - 2956,5,302,0,0,2956,3068,3,226,113,0,2957,2958,5,274,0,0,2958,2959, - 5,341,0,0,2959,3068,3,642,321,0,2960,2961,5,166,0,0,2961,2962,5, - 431,0,0,2962,3068,5,31,0,0,2963,2964,5,304,0,0,2964,2965,5,310,0, - 0,2965,2966,5,189,0,0,2966,2967,5,399,0,0,2967,2972,3,432,216,0, - 2968,2969,5,397,0,0,2969,2971,3,432,216,0,2970,2968,1,0,0,0,2971, - 2974,1,0,0,0,2972,2970,1,0,0,0,2972,2973,1,0,0,0,2973,2975,1,0,0, - 0,2974,2972,1,0,0,0,2975,2976,5,400,0,0,2976,3068,1,0,0,0,2977,2978, - 5,216,0,0,2978,3068,7,25,0,0,2979,3068,3,208,104,0,2980,2981,5,49, - 0,0,2981,2984,5,426,0,0,2982,2983,5,11,0,0,2983,2985,5,380,0,0,2984, - 2982,1,0,0,0,2984,2985,1,0,0,0,2985,2990,1,0,0,0,2986,2987,5,42, - 0,0,2987,2988,5,166,0,0,2988,2989,5,431,0,0,2989,2991,5,31,0,0,2990, - 2986,1,0,0,0,2990,2991,1,0,0,0,2991,2993,1,0,0,0,2992,2994,3,556, - 278,0,2993,2992,1,0,0,0,2993,2994,1,0,0,0,2994,2996,1,0,0,0,2995, - 2997,3,410,205,0,2996,2995,1,0,0,0,2996,2997,1,0,0,0,2997,3002,1, - 0,0,0,2998,2999,5,387,0,0,2999,3000,5,235,0,0,3000,3001,5,332,0, - 0,3001,3003,3,226,113,0,3002,2998,1,0,0,0,3002,3003,1,0,0,0,3003, - 3068,1,0,0,0,3004,3005,5,365,0,0,3005,3006,5,319,0,0,3006,3008,5, - 134,0,0,3007,3009,5,45,0,0,3008,3007,1,0,0,0,3008,3009,1,0,0,0,3009, - 3010,1,0,0,0,3010,3011,3,256,128,0,3011,3012,5,304,0,0,3012,3015, - 3,226,113,0,3013,3014,5,47,0,0,3014,3016,5,426,0,0,3015,3013,1,0, - 0,0,3015,3016,1,0,0,0,3016,3068,1,0,0,0,3017,3018,5,365,0,0,3018, - 3019,5,319,0,0,3019,3020,5,304,0,0,3020,3068,3,226,113,0,3021,3023, - 5,38,0,0,3022,3024,5,45,0,0,3023,3022,1,0,0,0,3023,3024,1,0,0,0, - 3024,3025,1,0,0,0,3025,3026,3,256,128,0,3026,3027,3,262,131,0,3027, - 3029,3,346,173,0,3028,3030,3,328,164,0,3029,3028,1,0,0,0,3029,3030, - 1,0,0,0,3030,3033,1,0,0,0,3031,3032,5,47,0,0,3032,3034,5,426,0,0, - 3033,3031,1,0,0,0,3033,3034,1,0,0,0,3034,3038,1,0,0,0,3035,3039, - 5,130,0,0,3036,3037,5,6,0,0,3037,3039,3,654,327,0,3038,3035,1,0, - 0,0,3038,3036,1,0,0,0,3038,3039,1,0,0,0,3039,3041,1,0,0,0,3040,3042, - 3,34,17,0,3041,3040,1,0,0,0,3041,3042,1,0,0,0,3042,3068,1,0,0,0, - 3043,3046,5,4,0,0,3044,3046,5,278,0,0,3045,3043,1,0,0,0,3045,3044, - 1,0,0,0,3046,3047,1,0,0,0,3047,3048,5,46,0,0,3048,3049,5,399,0,0, - 3049,3050,3,248,124,0,3050,3052,5,400,0,0,3051,3053,3,34,17,0,3052, - 3051,1,0,0,0,3052,3053,1,0,0,0,3053,3068,1,0,0,0,3054,3055,5,365, - 0,0,3055,3057,5,46,0,0,3056,3058,3,34,17,0,3057,3056,1,0,0,0,3057, - 3058,1,0,0,0,3058,3068,1,0,0,0,3059,3065,3,272,136,0,3060,3062,5, - 218,0,0,3061,3063,5,34,0,0,3062,3061,1,0,0,0,3062,3063,1,0,0,0,3063, - 3066,1,0,0,0,3064,3066,5,222,0,0,3065,3060,1,0,0,0,3065,3064,1,0, - 0,0,3066,3068,1,0,0,0,3067,2935,1,0,0,0,3067,2938,1,0,0,0,3067,2941, - 1,0,0,0,3067,2942,1,0,0,0,3067,2954,1,0,0,0,3067,2957,1,0,0,0,3067, - 2960,1,0,0,0,3067,2963,1,0,0,0,3067,2977,1,0,0,0,3067,2979,1,0,0, - 0,3067,2980,1,0,0,0,3067,3004,1,0,0,0,3067,3017,1,0,0,0,3067,3021, - 1,0,0,0,3067,3045,1,0,0,0,3067,3054,1,0,0,0,3067,3059,1,0,0,0,3068, - 421,1,0,0,0,3069,3070,5,304,0,0,3070,3071,5,332,0,0,3071,3096,3, - 226,113,0,3072,3073,5,363,0,0,3073,3075,5,332,0,0,3074,3076,3,30, - 15,0,3075,3074,1,0,0,0,3075,3076,1,0,0,0,3076,3077,1,0,0,0,3077, - 3096,3,226,113,0,3078,3079,5,274,0,0,3079,3080,5,341,0,0,3080,3096, - 3,484,242,0,3081,3083,5,4,0,0,3082,3084,3,32,16,0,3083,3082,1,0, - 0,0,3083,3084,1,0,0,0,3084,3089,1,0,0,0,3085,3087,3,642,321,0,3086, - 3088,3,428,214,0,3087,3086,1,0,0,0,3087,3088,1,0,0,0,3088,3090,1, - 0,0,0,3089,3085,1,0,0,0,3090,3091,1,0,0,0,3091,3089,1,0,0,0,3091, - 3092,1,0,0,0,3092,3096,1,0,0,0,3093,3096,3,430,215,0,3094,3096,3, - 384,192,0,3095,3069,1,0,0,0,3095,3072,1,0,0,0,3095,3078,1,0,0,0, - 3095,3081,1,0,0,0,3095,3093,1,0,0,0,3095,3094,1,0,0,0,3096,423,1, - 0,0,0,3097,3098,3,476,238,0,3098,3099,5,304,0,0,3099,3100,5,76,0, - 0,3100,3101,3,230,115,0,3101,3113,1,0,0,0,3102,3103,3,476,238,0, - 3103,3104,5,304,0,0,3104,3105,5,236,0,0,3105,3106,3,128,64,0,3106, - 3113,1,0,0,0,3107,3108,3,476,238,0,3108,3109,5,304,0,0,3109,3110, - 7,26,0,0,3110,3111,5,426,0,0,3111,3113,1,0,0,0,3112,3097,1,0,0,0, - 3112,3102,1,0,0,0,3112,3107,1,0,0,0,3113,425,1,0,0,0,3114,3115,3, - 476,238,0,3115,3116,5,304,0,0,3116,3117,5,77,0,0,3117,3118,3,230, - 115,0,3118,3130,1,0,0,0,3119,3120,3,476,238,0,3120,3121,5,304,0, - 0,3121,3122,5,236,0,0,3122,3123,3,128,64,0,3123,3130,1,0,0,0,3124, - 3125,3,476,238,0,3125,3126,5,304,0,0,3126,3127,5,367,0,0,3127,3128, - 5,426,0,0,3128,3130,1,0,0,0,3129,3114,1,0,0,0,3129,3119,1,0,0,0, - 3129,3124,1,0,0,0,3130,427,1,0,0,0,3131,3132,5,189,0,0,3132,3133, - 5,426,0,0,3133,429,1,0,0,0,3134,3136,5,101,0,0,3135,3137,3,30,15, - 0,3136,3135,1,0,0,0,3136,3137,1,0,0,0,3137,3138,1,0,0,0,3138,3139, - 5,237,0,0,3139,3145,3,646,323,0,3140,3141,5,397,0,0,3141,3142,5, - 237,0,0,3142,3144,3,646,323,0,3143,3140,1,0,0,0,3144,3147,1,0,0, - 0,3145,3143,1,0,0,0,3145,3146,1,0,0,0,3146,3150,1,0,0,0,3147,3145, - 1,0,0,0,3148,3149,5,152,0,0,3149,3151,5,254,0,0,3150,3148,1,0,0, - 0,3150,3151,1,0,0,0,3151,3153,1,0,0,0,3152,3154,5,255,0,0,3153,3152, - 1,0,0,0,3153,3154,1,0,0,0,3154,3156,1,0,0,0,3155,3157,3,14,7,0,3156, - 3155,1,0,0,0,3156,3157,1,0,0,0,3157,431,1,0,0,0,3158,3161,3,588, - 294,0,3159,3161,3,298,149,0,3160,3158,1,0,0,0,3160,3159,1,0,0,0, - 3161,3162,1,0,0,0,3162,3163,5,405,0,0,3163,3164,5,426,0,0,3164,433, - 1,0,0,0,3165,3175,5,115,0,0,3166,3167,5,289,0,0,3167,3168,5,399, - 0,0,3168,3176,7,27,0,0,3169,3170,5,118,0,0,3170,3171,5,399,0,0,3171, - 3176,5,426,0,0,3172,3173,5,306,0,0,3173,3174,5,399,0,0,3174,3176, - 5,431,0,0,3175,3166,1,0,0,0,3175,3169,1,0,0,0,3175,3172,1,0,0,0, - 3176,3177,1,0,0,0,3177,3178,5,400,0,0,3178,435,1,0,0,0,3179,3180, - 5,160,0,0,3180,3181,5,426,0,0,3181,3182,5,233,0,0,3182,3183,5,426, - 0,0,3183,3184,5,301,0,0,3184,3189,5,426,0,0,3185,3186,5,159,0,0, - 3186,3187,5,426,0,0,3187,3188,5,232,0,0,3188,3190,5,426,0,0,3189, - 3185,1,0,0,0,3189,3190,1,0,0,0,3190,3193,1,0,0,0,3191,3193,3,654, - 327,0,3192,3179,1,0,0,0,3192,3191,1,0,0,0,3193,437,1,0,0,0,3194, - 3195,5,184,0,0,3195,3204,5,128,0,0,3196,3197,5,184,0,0,3197,3198, - 5,128,0,0,3198,3199,3,654,327,0,3199,3200,5,426,0,0,3200,3204,1, - 0,0,0,3201,3202,5,184,0,0,3202,3204,3,482,241,0,3203,3194,1,0,0, - 0,3203,3196,1,0,0,0,3203,3201,1,0,0,0,3204,439,1,0,0,0,3205,3207, - 5,58,0,0,3206,3208,5,333,0,0,3207,3206,1,0,0,0,3207,3208,1,0,0,0, - 3208,3210,1,0,0,0,3209,3211,5,345,0,0,3210,3209,1,0,0,0,3210,3211, - 1,0,0,0,3211,3213,1,0,0,0,3212,3214,5,123,0,0,3213,3212,1,0,0,0, - 3213,3214,1,0,0,0,3214,3215,1,0,0,0,3215,3217,5,329,0,0,3216,3218, - 3,32,16,0,3217,3216,1,0,0,0,3217,3218,1,0,0,0,3218,3219,1,0,0,0, - 3219,3276,3,484,242,0,3220,3222,3,438,219,0,3221,3223,3,200,100, - 0,3222,3221,1,0,0,0,3222,3223,1,0,0,0,3223,3225,1,0,0,0,3224,3226, - 3,222,111,0,3225,3224,1,0,0,0,3225,3226,1,0,0,0,3226,3228,1,0,0, - 0,3227,3229,3,246,123,0,3228,3227,1,0,0,0,3228,3229,1,0,0,0,3229, - 3231,1,0,0,0,3230,3232,3,428,214,0,3231,3230,1,0,0,0,3231,3232,1, - 0,0,0,3232,3234,1,0,0,0,3233,3235,3,224,112,0,3234,3233,1,0,0,0, - 3234,3235,1,0,0,0,3235,3237,1,0,0,0,3236,3238,3,198,99,0,3237,3236, - 1,0,0,0,3237,3238,1,0,0,0,3238,3277,1,0,0,0,3239,3240,5,399,0,0, - 3240,3241,3,250,125,0,3241,3242,5,400,0,0,3242,3244,1,0,0,0,3243, - 3239,1,0,0,0,3243,3244,1,0,0,0,3244,3246,1,0,0,0,3245,3247,3,196, - 98,0,3246,3245,1,0,0,0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248, - 3250,3,200,100,0,3249,3248,1,0,0,0,3249,3250,1,0,0,0,3250,3252,1, - 0,0,0,3251,3253,3,208,104,0,3252,3251,1,0,0,0,3252,3253,1,0,0,0, - 3253,3255,1,0,0,0,3254,3256,3,210,105,0,3255,3254,1,0,0,0,3255,3256, - 1,0,0,0,3256,3258,1,0,0,0,3257,3259,3,222,111,0,3258,3257,1,0,0, - 0,3258,3259,1,0,0,0,3259,3261,1,0,0,0,3260,3262,3,246,123,0,3261, - 3260,1,0,0,0,3261,3262,1,0,0,0,3262,3264,1,0,0,0,3263,3265,3,428, - 214,0,3264,3263,1,0,0,0,3264,3265,1,0,0,0,3265,3267,1,0,0,0,3266, - 3268,3,224,112,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268,3270,1, - 0,0,0,3269,3271,3,198,99,0,3270,3269,1,0,0,0,3270,3271,1,0,0,0,3271, - 3274,1,0,0,0,3272,3273,5,17,0,0,3273,3275,3,384,192,0,3274,3272, - 1,0,0,0,3274,3275,1,0,0,0,3275,3277,1,0,0,0,3276,3220,1,0,0,0,3276, - 3243,1,0,0,0,3277,3341,1,0,0,0,3278,3279,5,58,0,0,3279,3280,5,195, - 0,0,3280,3282,5,329,0,0,3281,3283,3,32,16,0,3282,3281,1,0,0,0,3282, - 3283,1,0,0,0,3283,3284,1,0,0,0,3284,3338,3,484,242,0,3285,3287,3, - 438,219,0,3286,3288,3,222,111,0,3287,3286,1,0,0,0,3287,3288,1,0, - 0,0,3288,3290,1,0,0,0,3289,3291,3,246,123,0,3290,3289,1,0,0,0,3290, - 3291,1,0,0,0,3291,3293,1,0,0,0,3292,3294,3,428,214,0,3293,3292,1, - 0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0,0,3295,3297,3,224,112,0, - 3296,3295,1,0,0,0,3296,3297,1,0,0,0,3297,3299,1,0,0,0,3298,3300, - 3,198,99,0,3299,3298,1,0,0,0,3299,3300,1,0,0,0,3300,3339,1,0,0,0, - 3301,3302,5,399,0,0,3302,3303,3,250,125,0,3303,3304,5,400,0,0,3304, - 3306,1,0,0,0,3305,3301,1,0,0,0,3305,3306,1,0,0,0,3306,3308,1,0,0, - 0,3307,3309,3,196,98,0,3308,3307,1,0,0,0,3308,3309,1,0,0,0,3309, - 3311,1,0,0,0,3310,3312,3,200,100,0,3311,3310,1,0,0,0,3311,3312,1, - 0,0,0,3312,3314,1,0,0,0,3313,3315,3,208,104,0,3314,3313,1,0,0,0, - 3314,3315,1,0,0,0,3315,3317,1,0,0,0,3316,3318,3,210,105,0,3317,3316, - 1,0,0,0,3317,3318,1,0,0,0,3318,3320,1,0,0,0,3319,3321,3,222,111, - 0,3320,3319,1,0,0,0,3320,3321,1,0,0,0,3321,3323,1,0,0,0,3322,3324, - 3,246,123,0,3323,3322,1,0,0,0,3323,3324,1,0,0,0,3324,3326,1,0,0, - 0,3325,3327,3,428,214,0,3326,3325,1,0,0,0,3326,3327,1,0,0,0,3327, - 3329,1,0,0,0,3328,3330,3,224,112,0,3329,3328,1,0,0,0,3329,3330,1, - 0,0,0,3330,3332,1,0,0,0,3331,3333,3,198,99,0,3332,3331,1,0,0,0,3332, - 3333,1,0,0,0,3333,3336,1,0,0,0,3334,3335,5,17,0,0,3335,3337,3,384, - 192,0,3336,3334,1,0,0,0,3336,3337,1,0,0,0,3337,3339,1,0,0,0,3338, - 3285,1,0,0,0,3338,3305,1,0,0,0,3339,3341,1,0,0,0,3340,3205,1,0,0, - 0,3340,3278,1,0,0,0,3341,441,1,0,0,0,3342,3343,5,58,0,0,3343,3345, - 5,69,0,0,3344,3346,3,32,16,0,3345,3344,1,0,0,0,3345,3346,1,0,0,0, - 3346,3347,1,0,0,0,3347,3350,3,654,327,0,3348,3349,5,352,0,0,3349, - 3351,5,426,0,0,3350,3348,1,0,0,0,3350,3351,1,0,0,0,3351,3354,1,0, - 0,0,3352,3353,5,367,0,0,3353,3355,5,426,0,0,3354,3352,1,0,0,0,3354, - 3355,1,0,0,0,3355,3358,1,0,0,0,3356,3357,5,47,0,0,3357,3359,5,426, - 0,0,3358,3356,1,0,0,0,3358,3359,1,0,0,0,3359,3363,1,0,0,0,3360,3361, - 5,387,0,0,3361,3362,5,77,0,0,3362,3364,3,230,115,0,3363,3360,1,0, - 0,0,3363,3364,1,0,0,0,3364,443,1,0,0,0,3365,3366,5,101,0,0,3366, - 3368,5,69,0,0,3367,3369,3,30,15,0,3368,3367,1,0,0,0,3368,3369,1, - 0,0,0,3369,3370,1,0,0,0,3370,3371,3,654,327,0,3371,445,1,0,0,0,3372, - 3373,3,654,327,0,3373,3374,5,395,0,0,3374,3376,1,0,0,0,3375,3372, - 1,0,0,0,3376,3379,1,0,0,0,3377,3375,1,0,0,0,3377,3378,1,0,0,0,3378, - 3380,1,0,0,0,3379,3377,1,0,0,0,3380,3381,5,415,0,0,3381,447,1,0, - 0,0,3382,3387,3,596,298,0,3383,3384,5,397,0,0,3384,3386,3,596,298, - 0,3385,3383,1,0,0,0,3386,3389,1,0,0,0,3387,3385,1,0,0,0,3387,3388, - 1,0,0,0,3388,449,1,0,0,0,3389,3387,1,0,0,0,3390,3395,3,654,327,0, - 3391,3392,5,397,0,0,3392,3394,3,654,327,0,3393,3391,1,0,0,0,3394, - 3397,1,0,0,0,3395,3393,1,0,0,0,3395,3396,1,0,0,0,3396,451,1,0,0, - 0,3397,3395,1,0,0,0,3398,3399,5,139,0,0,3399,3400,3,454,227,0,3400, - 453,1,0,0,0,3401,3402,5,359,0,0,3402,3405,3,462,231,0,3403,3404, - 5,397,0,0,3404,3406,3,462,231,0,3405,3403,1,0,0,0,3406,3407,1,0, - 0,0,3407,3405,1,0,0,0,3407,3408,1,0,0,0,3408,3411,1,0,0,0,3409,3411, - 3,458,229,0,3410,3401,1,0,0,0,3410,3409,1,0,0,0,3411,455,1,0,0,0, - 3412,3416,3,472,236,0,3413,3415,3,466,233,0,3414,3413,1,0,0,0,3415, - 3418,1,0,0,0,3416,3414,1,0,0,0,3416,3417,1,0,0,0,3417,3445,1,0,0, - 0,3418,3416,1,0,0,0,3419,3423,3,506,253,0,3420,3422,3,466,233,0, - 3421,3420,1,0,0,0,3422,3425,1,0,0,0,3423,3421,1,0,0,0,3423,3424, - 1,0,0,0,3424,3445,1,0,0,0,3425,3423,1,0,0,0,3426,3430,3,490,245, - 0,3427,3429,3,466,233,0,3428,3427,1,0,0,0,3429,3432,1,0,0,0,3430, - 3428,1,0,0,0,3430,3431,1,0,0,0,3431,3445,1,0,0,0,3432,3430,1,0,0, - 0,3433,3437,3,496,248,0,3434,3436,3,466,233,0,3435,3434,1,0,0,0, - 3436,3439,1,0,0,0,3437,3435,1,0,0,0,3437,3438,1,0,0,0,3438,3445, - 1,0,0,0,3439,3437,1,0,0,0,3440,3441,5,399,0,0,3441,3442,3,458,229, - 0,3442,3443,5,400,0,0,3443,3445,1,0,0,0,3444,3412,1,0,0,0,3444,3419, - 1,0,0,0,3444,3426,1,0,0,0,3444,3433,1,0,0,0,3444,3440,1,0,0,0,3445, - 457,1,0,0,0,3446,3464,3,456,228,0,3447,3448,3,464,232,0,3448,3460, - 3,460,230,0,3449,3456,5,224,0,0,3450,3457,3,596,298,0,3451,3454, - 3,260,130,0,3452,3453,5,405,0,0,3453,3455,3,260,130,0,3454,3452, - 1,0,0,0,3454,3455,1,0,0,0,3455,3457,1,0,0,0,3456,3450,1,0,0,0,3456, - 3451,1,0,0,0,3457,3461,1,0,0,0,3458,3459,5,370,0,0,3459,3461,3,268, - 134,0,3460,3449,1,0,0,0,3460,3458,1,0,0,0,3460,3461,1,0,0,0,3461, - 3463,1,0,0,0,3462,3447,1,0,0,0,3463,3466,1,0,0,0,3464,3462,1,0,0, - 0,3464,3465,1,0,0,0,3465,459,1,0,0,0,3466,3464,1,0,0,0,3467,3472, - 3,472,236,0,3468,3472,3,506,253,0,3469,3472,3,490,245,0,3470,3472, - 3,496,248,0,3471,3467,1,0,0,0,3471,3468,1,0,0,0,3471,3469,1,0,0, - 0,3471,3470,1,0,0,0,3472,3476,1,0,0,0,3473,3475,3,466,233,0,3474, - 3473,1,0,0,0,3475,3478,1,0,0,0,3476,3474,1,0,0,0,3476,3477,1,0,0, - 0,3477,461,1,0,0,0,3478,3476,1,0,0,0,3479,3481,5,250,0,0,3480,3479, - 1,0,0,0,3480,3481,1,0,0,0,3481,3482,1,0,0,0,3482,3484,3,480,240, - 0,3483,3485,3,470,235,0,3484,3483,1,0,0,0,3484,3485,1,0,0,0,3485, - 3490,1,0,0,0,3486,3488,5,17,0,0,3487,3486,1,0,0,0,3487,3488,1,0, - 0,0,3488,3489,1,0,0,0,3489,3491,3,654,327,0,3490,3487,1,0,0,0,3490, - 3491,1,0,0,0,3491,3492,1,0,0,0,3492,3493,5,399,0,0,3493,3494,3,448, - 224,0,3494,3495,5,400,0,0,3495,463,1,0,0,0,3496,3511,5,397,0,0,3497, - 3508,5,157,0,0,3498,3508,5,60,0,0,3499,3501,7,28,0,0,3500,3502,5, - 231,0,0,3501,3500,1,0,0,0,3501,3502,1,0,0,0,3502,3508,1,0,0,0,3503, - 3505,5,180,0,0,3504,3506,7,29,0,0,3505,3504,1,0,0,0,3505,3506,1, - 0,0,0,3506,3508,1,0,0,0,3507,3497,1,0,0,0,3507,3498,1,0,0,0,3507, - 3499,1,0,0,0,3507,3503,1,0,0,0,3507,3508,1,0,0,0,3508,3509,1,0,0, - 0,3509,3511,5,171,0,0,3510,3496,1,0,0,0,3510,3507,1,0,0,0,3511,465, - 1,0,0,0,3512,3513,5,178,0,0,3513,3514,5,378,0,0,3514,3515,5,231, - 0,0,3515,3516,3,566,283,0,3516,3526,3,468,234,0,3517,3518,5,17,0, - 0,3518,3523,3,654,327,0,3519,3520,5,397,0,0,3520,3522,3,654,327, - 0,3521,3519,1,0,0,0,3522,3525,1,0,0,0,3523,3521,1,0,0,0,3523,3524, - 1,0,0,0,3524,3527,1,0,0,0,3525,3523,1,0,0,0,3526,3517,1,0,0,0,3526, - 3527,1,0,0,0,3527,3570,1,0,0,0,3528,3530,5,397,0,0,3529,3528,1,0, - 0,0,3529,3530,1,0,0,0,3530,3531,1,0,0,0,3531,3567,5,178,0,0,3532, - 3533,5,378,0,0,3533,3534,3,566,283,0,3534,3544,3,468,234,0,3535, - 3536,5,17,0,0,3536,3541,3,654,327,0,3537,3538,5,397,0,0,3538,3540, - 3,654,327,0,3539,3537,1,0,0,0,3540,3543,1,0,0,0,3541,3539,1,0,0, - 0,3541,3542,1,0,0,0,3542,3545,1,0,0,0,3543,3541,1,0,0,0,3544,3535, - 1,0,0,0,3544,3545,1,0,0,0,3545,3568,1,0,0,0,3546,3547,5,329,0,0, - 3547,3548,5,399,0,0,3548,3549,3,502,251,0,3549,3551,5,400,0,0,3550, - 3552,5,17,0,0,3551,3550,1,0,0,0,3551,3552,1,0,0,0,3552,3553,1,0, - 0,0,3553,3565,3,468,234,0,3554,3555,5,399,0,0,3555,3560,3,654,327, - 0,3556,3557,5,397,0,0,3557,3559,3,654,327,0,3558,3556,1,0,0,0,3559, - 3562,1,0,0,0,3560,3558,1,0,0,0,3560,3561,1,0,0,0,3561,3563,1,0,0, - 0,3562,3560,1,0,0,0,3563,3564,5,400,0,0,3564,3566,1,0,0,0,3565,3554, - 1,0,0,0,3565,3566,1,0,0,0,3566,3568,1,0,0,0,3567,3532,1,0,0,0,3567, - 3546,1,0,0,0,3568,3570,1,0,0,0,3569,3512,1,0,0,0,3569,3529,1,0,0, - 0,3570,467,1,0,0,0,3571,3572,3,654,327,0,3572,469,1,0,0,0,3573,3574, - 5,331,0,0,3574,3575,5,399,0,0,3575,3576,5,30,0,0,3576,3577,5,431, - 0,0,3577,3578,5,230,0,0,3578,3579,5,221,0,0,3579,3589,5,431,0,0, - 3580,3581,5,224,0,0,3581,3586,3,596,298,0,3582,3583,5,397,0,0,3583, - 3585,3,596,298,0,3584,3582,1,0,0,0,3585,3588,1,0,0,0,3586,3584,1, - 0,0,0,3586,3587,1,0,0,0,3587,3590,1,0,0,0,3588,3586,1,0,0,0,3589, - 3580,1,0,0,0,3589,3590,1,0,0,0,3590,3591,1,0,0,0,3591,3601,5,400, - 0,0,3592,3593,5,331,0,0,3593,3597,5,399,0,0,3594,3595,5,431,0,0, - 3595,3598,7,30,0,0,3596,3598,5,430,0,0,3597,3594,1,0,0,0,3597,3596, - 1,0,0,0,3598,3599,1,0,0,0,3599,3601,5,400,0,0,3600,3573,1,0,0,0, - 3600,3592,1,0,0,0,3601,471,1,0,0,0,3602,3604,3,480,240,0,3603,3605, - 3,226,113,0,3604,3603,1,0,0,0,3604,3605,1,0,0,0,3605,3607,1,0,0, - 0,3606,3608,3,470,235,0,3607,3606,1,0,0,0,3607,3608,1,0,0,0,3608, - 3610,1,0,0,0,3609,3611,3,474,237,0,3610,3609,1,0,0,0,3610,3611,1, - 0,0,0,3611,3616,1,0,0,0,3612,3614,5,17,0,0,3613,3612,1,0,0,0,3613, - 3614,1,0,0,0,3614,3615,1,0,0,0,3615,3617,3,654,327,0,3616,3613,1, - 0,0,0,3616,3617,1,0,0,0,3617,473,1,0,0,0,3618,3628,5,134,0,0,3619, - 3620,5,327,0,0,3620,3621,5,17,0,0,3621,3622,5,221,0,0,3622,3629, - 3,596,298,0,3623,3624,5,134,0,0,3624,3625,5,328,0,0,3625,3626,5, - 17,0,0,3626,3627,5,221,0,0,3627,3629,5,431,0,0,3628,3619,1,0,0,0, - 3628,3623,1,0,0,0,3629,475,1,0,0,0,3630,3631,3,654,327,0,3631,477, - 1,0,0,0,3632,3633,3,654,327,0,3633,479,1,0,0,0,3634,3637,3,482,241, - 0,3635,3637,3,486,243,0,3636,3634,1,0,0,0,3636,3635,1,0,0,0,3637, - 481,1,0,0,0,3638,3639,3,654,327,0,3639,3640,5,395,0,0,3640,3643, - 3,654,327,0,3641,3642,5,395,0,0,3642,3644,3,654,327,0,3643,3641, - 1,0,0,0,3643,3644,1,0,0,0,3644,3647,1,0,0,0,3645,3647,3,654,327, - 0,3646,3638,1,0,0,0,3646,3645,1,0,0,0,3647,483,1,0,0,0,3648,3649, - 3,654,327,0,3649,3650,5,395,0,0,3650,3653,3,654,327,0,3651,3652, - 5,395,0,0,3652,3654,3,654,327,0,3653,3651,1,0,0,0,3653,3654,1,0, - 0,0,3654,3657,1,0,0,0,3655,3657,3,654,327,0,3656,3648,1,0,0,0,3656, - 3655,1,0,0,0,3657,485,1,0,0,0,3658,3659,3,654,327,0,3659,3660,5, - 395,0,0,3660,3662,1,0,0,0,3661,3658,1,0,0,0,3661,3662,1,0,0,0,3662, - 3663,1,0,0,0,3663,3664,3,654,327,0,3664,487,1,0,0,0,3665,3666,3, - 654,327,0,3666,3667,5,395,0,0,3667,3669,1,0,0,0,3668,3665,1,0,0, - 0,3668,3669,1,0,0,0,3669,3670,1,0,0,0,3670,3671,3,654,327,0,3671, - 489,1,0,0,0,3672,3673,5,399,0,0,3673,3674,3,364,182,0,3674,3676, - 5,400,0,0,3675,3677,5,17,0,0,3676,3675,1,0,0,0,3676,3677,1,0,0,0, - 3677,3678,1,0,0,0,3678,3679,3,654,327,0,3679,491,1,0,0,0,3680,3682, - 3,558,279,0,3681,3683,3,556,278,0,3682,3681,1,0,0,0,3682,3683,1, - 0,0,0,3683,3692,1,0,0,0,3684,3692,3,556,278,0,3685,3687,3,562,281, - 0,3686,3688,3,564,282,0,3687,3686,1,0,0,0,3687,3688,1,0,0,0,3688, - 3692,1,0,0,0,3689,3692,3,564,282,0,3690,3692,3,560,280,0,3691,3680, - 1,0,0,0,3691,3684,1,0,0,0,3691,3685,1,0,0,0,3691,3689,1,0,0,0,3691, - 3690,1,0,0,0,3692,493,1,0,0,0,3693,3697,3,490,245,0,3694,3697,3, - 472,236,0,3695,3697,3,496,248,0,3696,3693,1,0,0,0,3696,3694,1,0, - 0,0,3696,3695,1,0,0,0,3697,495,1,0,0,0,3698,3700,3,498,249,0,3699, - 3701,3,654,327,0,3700,3699,1,0,0,0,3700,3701,1,0,0,0,3701,497,1, - 0,0,0,3702,3703,3,654,327,0,3703,3704,5,399,0,0,3704,3705,5,224, - 0,0,3705,3707,3,494,247,0,3706,3708,3,492,246,0,3707,3706,1,0,0, - 0,3707,3708,1,0,0,0,3708,3724,1,0,0,0,3709,3710,5,432,0,0,3710,3711, - 5,399,0,0,3711,3712,3,596,298,0,3712,3721,5,400,0,0,3713,3714,5, - 397,0,0,3714,3715,5,432,0,0,3715,3716,5,399,0,0,3716,3717,3,596, - 298,0,3717,3718,5,400,0,0,3718,3720,1,0,0,0,3719,3713,1,0,0,0,3720, - 3723,1,0,0,0,3721,3719,1,0,0,0,3721,3722,1,0,0,0,3722,3725,1,0,0, - 0,3723,3721,1,0,0,0,3724,3709,1,0,0,0,3724,3725,1,0,0,0,3725,3726, - 1,0,0,0,3726,3727,5,400,0,0,3727,499,1,0,0,0,3728,3731,5,384,0,0, - 3729,3732,3,596,298,0,3730,3732,3,260,130,0,3731,3729,1,0,0,0,3731, - 3730,1,0,0,0,3732,501,1,0,0,0,3733,3752,5,374,0,0,3734,3739,3,552, - 276,0,3735,3736,5,397,0,0,3736,3738,3,552,276,0,3737,3735,1,0,0, - 0,3738,3741,1,0,0,0,3739,3737,1,0,0,0,3739,3740,1,0,0,0,3740,3753, - 1,0,0,0,3741,3739,1,0,0,0,3742,3743,5,399,0,0,3743,3744,3,548,274, - 0,3744,3749,5,400,0,0,3745,3746,5,397,0,0,3746,3748,3,552,276,0, - 3747,3745,1,0,0,0,3748,3751,1,0,0,0,3749,3747,1,0,0,0,3749,3750, - 1,0,0,0,3750,3753,1,0,0,0,3751,3749,1,0,0,0,3752,3734,1,0,0,0,3752, - 3742,1,0,0,0,3753,503,1,0,0,0,3754,3755,5,329,0,0,3755,3756,5,399, - 0,0,3756,3757,3,502,251,0,3757,3758,5,400,0,0,3758,505,1,0,0,0,3759, - 3761,3,504,252,0,3760,3762,5,17,0,0,3761,3760,1,0,0,0,3761,3762, - 1,0,0,0,3762,3763,1,0,0,0,3763,3773,3,468,234,0,3764,3765,5,399, - 0,0,3765,3770,3,654,327,0,3766,3767,5,397,0,0,3767,3769,3,654,327, - 0,3768,3766,1,0,0,0,3769,3772,1,0,0,0,3770,3768,1,0,0,0,3770,3771, - 1,0,0,0,3771,3774,1,0,0,0,3772,3770,1,0,0,0,3773,3764,1,0,0,0,3773, - 3774,1,0,0,0,3774,3775,1,0,0,0,3775,3776,5,400,0,0,3776,507,1,0, - 0,0,3777,3779,5,299,0,0,3778,3780,5,436,0,0,3779,3778,1,0,0,0,3779, - 3780,1,0,0,0,3780,3787,1,0,0,0,3781,3783,7,22,0,0,3782,3781,1,0, - 0,0,3782,3783,1,0,0,0,3783,3784,1,0,0,0,3784,3788,3,512,256,0,3785, - 3786,5,347,0,0,3786,3788,3,510,255,0,3787,3782,1,0,0,0,3787,3785, - 1,0,0,0,3788,3791,1,0,0,0,3789,3791,3,520,260,0,3790,3777,1,0,0, - 0,3790,3789,1,0,0,0,3791,509,1,0,0,0,3792,3793,5,399,0,0,3793,3794, - 3,524,262,0,3794,3795,5,400,0,0,3795,3796,3,212,106,0,3796,3797, - 3,216,108,0,3797,3798,5,370,0,0,3798,3811,5,426,0,0,3799,3809,5, - 17,0,0,3800,3803,5,399,0,0,3801,3804,3,450,225,0,3802,3804,3,248, - 124,0,3803,3801,1,0,0,0,3803,3802,1,0,0,0,3804,3805,1,0,0,0,3805, - 3806,5,400,0,0,3806,3810,1,0,0,0,3807,3810,3,450,225,0,3808,3810, - 3,248,124,0,3809,3800,1,0,0,0,3809,3807,1,0,0,0,3809,3808,1,0,0, - 0,3810,3812,1,0,0,0,3811,3799,1,0,0,0,3811,3812,1,0,0,0,3812,3813, - 1,0,0,0,3813,3814,3,212,106,0,3814,3815,3,214,107,0,3815,511,1,0, - 0,0,3816,3821,3,514,257,0,3817,3818,5,397,0,0,3818,3820,3,514,257, - 0,3819,3817,1,0,0,0,3820,3823,1,0,0,0,3821,3819,1,0,0,0,3821,3822, - 1,0,0,0,3822,513,1,0,0,0,3823,3821,1,0,0,0,3824,3850,3,446,223,0, - 3825,3828,3,516,258,0,3826,3828,3,518,259,0,3827,3825,1,0,0,0,3827, - 3826,1,0,0,0,3828,3845,1,0,0,0,3829,3831,5,17,0,0,3830,3829,1,0, - 0,0,3830,3831,1,0,0,0,3831,3832,1,0,0,0,3832,3846,3,654,327,0,3833, - 3834,5,17,0,0,3834,3835,5,399,0,0,3835,3840,3,654,327,0,3836,3837, - 5,397,0,0,3837,3839,3,654,327,0,3838,3836,1,0,0,0,3839,3842,1,0, - 0,0,3840,3838,1,0,0,0,3840,3841,1,0,0,0,3841,3843,1,0,0,0,3842,3840, - 1,0,0,0,3843,3844,5,400,0,0,3844,3846,1,0,0,0,3845,3830,1,0,0,0, - 3845,3833,1,0,0,0,3845,3846,1,0,0,0,3846,3850,1,0,0,0,3847,3848, - 4,257,2,0,3848,3850,3,698,349,0,3849,3824,1,0,0,0,3849,3827,1,0, - 0,0,3849,3847,1,0,0,0,3850,515,1,0,0,0,3851,3852,3,256,128,0,3852, - 517,1,0,0,0,3853,3854,3,596,298,0,3854,519,1,0,0,0,3855,3856,7,31, - 0,0,3856,3857,3,524,262,0,3857,3858,3,212,106,0,3858,3859,3,216, - 108,0,3859,3860,5,370,0,0,3860,3873,5,426,0,0,3861,3871,5,17,0,0, - 3862,3865,5,399,0,0,3863,3866,3,450,225,0,3864,3866,3,248,124,0, - 3865,3863,1,0,0,0,3865,3864,1,0,0,0,3866,3867,1,0,0,0,3867,3868, - 5,400,0,0,3868,3872,1,0,0,0,3869,3872,3,450,225,0,3870,3872,3,248, - 124,0,3871,3862,1,0,0,0,3871,3869,1,0,0,0,3871,3870,1,0,0,0,3872, - 3874,1,0,0,0,3873,3861,1,0,0,0,3873,3874,1,0,0,0,3874,3875,1,0,0, - 0,3875,3876,3,212,106,0,3876,3877,3,214,107,0,3877,521,1,0,0,0,3878, - 3881,3,446,223,0,3879,3881,3,596,298,0,3880,3878,1,0,0,0,3880,3879, - 1,0,0,0,3881,523,1,0,0,0,3882,3887,3,522,261,0,3883,3884,5,397,0, - 0,3884,3886,3,522,261,0,3885,3883,1,0,0,0,3886,3889,1,0,0,0,3887, - 3885,1,0,0,0,3887,3888,1,0,0,0,3888,525,1,0,0,0,3889,3887,1,0,0, - 0,3890,3891,5,386,0,0,3891,3892,3,654,327,0,3892,3893,5,17,0,0,3893, - 3901,3,528,264,0,3894,3895,5,397,0,0,3895,3896,3,654,327,0,3896, - 3897,5,17,0,0,3897,3898,3,528,264,0,3898,3900,1,0,0,0,3899,3894, - 1,0,0,0,3900,3903,1,0,0,0,3901,3899,1,0,0,0,3901,3902,1,0,0,0,3902, - 527,1,0,0,0,3903,3901,1,0,0,0,3904,3917,3,654,327,0,3905,3907,5, - 399,0,0,3906,3908,3,654,327,0,3907,3906,1,0,0,0,3907,3908,1,0,0, - 0,3908,3910,1,0,0,0,3909,3911,3,492,246,0,3910,3909,1,0,0,0,3910, - 3911,1,0,0,0,3911,3913,1,0,0,0,3912,3914,3,530,265,0,3913,3912,1, - 0,0,0,3913,3914,1,0,0,0,3914,3915,1,0,0,0,3915,3917,5,400,0,0,3916, - 3904,1,0,0,0,3916,3905,1,0,0,0,3917,529,1,0,0,0,3918,3932,7,32,0, - 0,3919,3920,5,354,0,0,3920,3926,5,247,0,0,3921,3922,5,62,0,0,3922, - 3926,5,291,0,0,3923,3924,5,431,0,0,3924,3926,5,247,0,0,3925,3919, - 1,0,0,0,3925,3921,1,0,0,0,3925,3923,1,0,0,0,3926,3933,1,0,0,0,3927, - 3928,5,25,0,0,3928,3929,3,532,266,0,3929,3930,5,11,0,0,3930,3931, - 3,532,266,0,3931,3933,1,0,0,0,3932,3925,1,0,0,0,3932,3927,1,0,0, - 0,3933,531,1,0,0,0,3934,3935,7,33,0,0,3935,3939,7,34,0,0,3936,3937, - 5,62,0,0,3937,3939,5,291,0,0,3938,3934,1,0,0,0,3938,3936,1,0,0,0, - 3939,533,1,0,0,0,3940,3941,5,144,0,0,3941,3947,5,32,0,0,3942,3948, - 3,256,128,0,3943,3948,3,536,268,0,3944,3948,3,538,269,0,3945,3946, - 5,399,0,0,3946,3948,5,400,0,0,3947,3942,1,0,0,0,3947,3943,1,0,0, - 0,3947,3944,1,0,0,0,3947,3945,1,0,0,0,3948,535,1,0,0,0,3949,3952, - 5,290,0,0,3950,3952,5,61,0,0,3951,3949,1,0,0,0,3951,3950,1,0,0,0, - 3952,3953,1,0,0,0,3953,3954,5,399,0,0,3954,3959,3,596,298,0,3955, - 3956,5,397,0,0,3956,3958,3,596,298,0,3957,3955,1,0,0,0,3958,3961, - 1,0,0,0,3959,3957,1,0,0,0,3959,3960,1,0,0,0,3960,3962,1,0,0,0,3961, - 3959,1,0,0,0,3962,3963,5,400,0,0,3963,537,1,0,0,0,3964,3969,3,554, - 277,0,3965,3966,5,387,0,0,3966,3970,5,290,0,0,3967,3968,5,387,0, - 0,3968,3970,5,61,0,0,3969,3965,1,0,0,0,3969,3967,1,0,0,0,3969,3970, - 1,0,0,0,3970,3984,1,0,0,0,3971,3972,5,145,0,0,3972,3973,5,305,0, - 0,3973,3974,5,399,0,0,3974,3979,3,540,270,0,3975,3976,5,397,0,0, - 3976,3978,3,540,270,0,3977,3975,1,0,0,0,3978,3981,1,0,0,0,3979,3977, - 1,0,0,0,3979,3980,1,0,0,0,3980,3982,1,0,0,0,3981,3979,1,0,0,0,3982, - 3983,5,400,0,0,3983,3985,1,0,0,0,3984,3971,1,0,0,0,3984,3985,1,0, - 0,0,3985,539,1,0,0,0,3986,3988,5,399,0,0,3987,3989,3,596,298,0,3988, - 3987,1,0,0,0,3988,3989,1,0,0,0,3989,3994,1,0,0,0,3990,3991,5,397, - 0,0,3991,3993,3,596,298,0,3992,3990,1,0,0,0,3993,3996,1,0,0,0,3994, - 3992,1,0,0,0,3994,3995,1,0,0,0,3995,3997,1,0,0,0,3996,3994,1,0,0, - 0,3997,4000,5,400,0,0,3998,4000,3,596,298,0,3999,3986,1,0,0,0,3999, - 3998,1,0,0,0,4000,541,1,0,0,0,4001,4004,5,146,0,0,4002,4005,3,596, - 298,0,4003,4005,3,260,130,0,4004,4002,1,0,0,0,4004,4003,1,0,0,0, - 4005,543,1,0,0,0,4006,4007,5,256,0,0,4007,4008,3,596,298,0,4008, - 545,1,0,0,0,4009,4012,5,83,0,0,4010,4012,3,596,298,0,4011,4009,1, - 0,0,0,4011,4010,1,0,0,0,4012,547,1,0,0,0,4013,4015,3,596,298,0,4014, - 4016,5,17,0,0,4015,4014,1,0,0,0,4015,4016,1,0,0,0,4016,4018,1,0, - 0,0,4017,4019,3,654,327,0,4018,4017,1,0,0,0,4018,4019,1,0,0,0,4019, - 4030,1,0,0,0,4020,4021,5,397,0,0,4021,4023,3,596,298,0,4022,4024, - 5,17,0,0,4023,4022,1,0,0,0,4023,4024,1,0,0,0,4024,4026,1,0,0,0,4025, - 4027,3,654,327,0,4026,4025,1,0,0,0,4026,4027,1,0,0,0,4027,4029,1, - 0,0,0,4028,4020,1,0,0,0,4029,4032,1,0,0,0,4030,4028,1,0,0,0,4030, - 4031,1,0,0,0,4031,549,1,0,0,0,4032,4030,1,0,0,0,4033,4036,3,552, - 276,0,4034,4036,3,554,277,0,4035,4033,1,0,0,0,4035,4034,1,0,0,0, - 4036,551,1,0,0,0,4037,4038,5,399,0,0,4038,4039,3,554,277,0,4039, - 4040,5,400,0,0,4040,553,1,0,0,0,4041,4048,3,546,273,0,4042,4043, - 5,397,0,0,4043,4045,3,546,273,0,4044,4042,1,0,0,0,4045,4046,1,0, - 0,0,4046,4044,1,0,0,0,4046,4047,1,0,0,0,4047,4049,1,0,0,0,4048,4044, - 1,0,0,0,4048,4049,1,0,0,0,4049,555,1,0,0,0,4050,4051,5,229,0,0,4051, - 4052,5,32,0,0,4052,4057,3,312,156,0,4053,4054,5,397,0,0,4054,4056, - 3,312,156,0,4055,4053,1,0,0,0,4056,4059,1,0,0,0,4057,4055,1,0,0, - 0,4057,4058,1,0,0,0,4058,557,1,0,0,0,4059,4057,1,0,0,0,4060,4061, - 5,237,0,0,4061,4062,5,32,0,0,4062,4063,3,550,275,0,4063,559,1,0, - 0,0,4064,4065,5,41,0,0,4065,4066,5,32,0,0,4066,4067,3,550,275,0, - 4067,561,1,0,0,0,4068,4069,5,97,0,0,4069,4070,5,32,0,0,4070,4071, - 3,550,275,0,4071,563,1,0,0,0,4072,4073,5,314,0,0,4073,4093,5,32, - 0,0,4074,4075,5,399,0,0,4075,4080,3,312,156,0,4076,4077,5,397,0, - 0,4077,4079,3,312,156,0,4078,4076,1,0,0,0,4079,4082,1,0,0,0,4080, - 4078,1,0,0,0,4080,4081,1,0,0,0,4081,4083,1,0,0,0,4082,4080,1,0,0, - 0,4083,4084,5,400,0,0,4084,4094,1,0,0,0,4085,4090,3,312,156,0,4086, - 4087,5,397,0,0,4087,4089,3,312,156,0,4088,4086,1,0,0,0,4089,4092, - 1,0,0,0,4090,4088,1,0,0,0,4090,4091,1,0,0,0,4091,4094,1,0,0,0,4092, - 4090,1,0,0,0,4093,4074,1,0,0,0,4093,4085,1,0,0,0,4094,565,1,0,0, - 0,4095,4096,5,349,0,0,4096,4100,5,399,0,0,4097,4101,5,179,0,0,4098, - 4101,5,343,0,0,4099,4101,5,29,0,0,4100,4097,1,0,0,0,4100,4098,1, - 0,0,0,4100,4099,1,0,0,0,4100,4101,1,0,0,0,4101,4103,1,0,0,0,4102, - 4104,3,522,261,0,4103,4102,1,0,0,0,4103,4104,1,0,0,0,4104,4105,1, - 0,0,0,4105,4106,5,139,0,0,4106,4107,3,522,261,0,4107,4108,5,400, - 0,0,4108,4149,1,0,0,0,4109,4110,3,574,287,0,4110,4125,5,399,0,0, - 4111,4126,5,415,0,0,4112,4114,7,22,0,0,4113,4112,1,0,0,0,4113,4114, - 1,0,0,0,4114,4123,1,0,0,0,4115,4120,3,522,261,0,4116,4117,5,397, - 0,0,4117,4119,3,522,261,0,4118,4116,1,0,0,0,4119,4122,1,0,0,0,4120, - 4118,1,0,0,0,4120,4121,1,0,0,0,4121,4124,1,0,0,0,4122,4120,1,0,0, - 0,4123,4115,1,0,0,0,4123,4124,1,0,0,0,4124,4126,1,0,0,0,4125,4111, - 1,0,0,0,4125,4113,1,0,0,0,4126,4146,1,0,0,0,4127,4128,5,400,0,0, - 4128,4129,5,388,0,0,4129,4130,5,144,0,0,4130,4131,5,399,0,0,4131, - 4132,3,556,278,0,4132,4133,5,400,0,0,4133,4147,1,0,0,0,4134,4136, - 5,400,0,0,4135,4137,3,568,284,0,4136,4135,1,0,0,0,4136,4137,1,0, - 0,0,4137,4138,1,0,0,0,4138,4139,5,234,0,0,4139,4147,3,528,264,0, - 4140,4141,3,568,284,0,4141,4142,5,400,0,0,4142,4143,5,234,0,0,4143, - 4144,3,528,264,0,4144,4147,1,0,0,0,4145,4147,5,400,0,0,4146,4127, - 1,0,0,0,4146,4134,1,0,0,0,4146,4140,1,0,0,0,4146,4145,1,0,0,0,4147, - 4149,1,0,0,0,4148,4095,1,0,0,0,4148,4109,1,0,0,0,4149,567,1,0,0, - 0,4150,4151,7,35,0,0,4151,4152,5,220,0,0,4152,569,1,0,0,0,4153,4154, - 3,656,328,0,4154,571,1,0,0,0,4155,4158,3,656,328,0,4156,4158,5,426, - 0,0,4157,4155,1,0,0,0,4157,4156,1,0,0,0,4158,573,1,0,0,0,4159,4163, - 3,656,328,0,4160,4163,3,662,331,0,4161,4163,3,652,326,0,4162,4159, - 1,0,0,0,4162,4160,1,0,0,0,4162,4161,1,0,0,0,4163,575,1,0,0,0,4164, - 4165,5,36,0,0,4165,4166,5,399,0,0,4166,4167,3,596,298,0,4167,4168, - 5,17,0,0,4168,4171,3,352,176,0,4169,4170,5,137,0,0,4170,4172,5,426, - 0,0,4171,4169,1,0,0,0,4171,4172,1,0,0,0,4172,4173,1,0,0,0,4173,4174, - 5,400,0,0,4174,577,1,0,0,0,4175,4176,5,35,0,0,4176,4182,3,596,298, - 0,4177,4178,5,383,0,0,4178,4179,3,596,298,0,4179,4180,5,335,0,0, - 4180,4181,3,596,298,0,4181,4183,1,0,0,0,4182,4177,1,0,0,0,4183,4184, - 1,0,0,0,4184,4182,1,0,0,0,4184,4185,1,0,0,0,4185,4188,1,0,0,0,4186, - 4187,5,105,0,0,4187,4189,3,596,298,0,4188,4186,1,0,0,0,4188,4189, - 1,0,0,0,4189,4190,1,0,0,0,4190,4191,5,108,0,0,4191,579,1,0,0,0,4192, - 4198,5,35,0,0,4193,4194,5,383,0,0,4194,4195,3,596,298,0,4195,4196, - 5,335,0,0,4196,4197,3,596,298,0,4197,4199,1,0,0,0,4198,4193,1,0, - 0,0,4199,4200,1,0,0,0,4200,4198,1,0,0,0,4200,4201,1,0,0,0,4201,4204, - 1,0,0,0,4202,4203,5,105,0,0,4203,4205,3,596,298,0,4204,4202,1,0, - 0,0,4204,4205,1,0,0,0,4205,4206,1,0,0,0,4206,4207,5,108,0,0,4207, - 581,1,0,0,0,4208,4209,5,132,0,0,4209,4210,5,399,0,0,4210,4213,3, - 596,298,0,4211,4212,5,341,0,0,4212,4214,3,586,293,0,4213,4211,1, - 0,0,0,4213,4214,1,0,0,0,4214,4215,1,0,0,0,4215,4216,5,400,0,0,4216, - 583,1,0,0,0,4217,4218,5,124,0,0,4218,4219,5,399,0,0,4219,4220,3, - 586,293,0,4220,4221,5,139,0,0,4221,4222,3,596,298,0,4222,4223,5, - 400,0,0,4223,585,1,0,0,0,4224,4233,3,682,341,0,4225,4233,5,257,0, - 0,4226,4233,3,684,342,0,4227,4233,3,686,343,0,4228,4233,3,688,344, - 0,4229,4233,3,690,345,0,4230,4233,3,692,346,0,4231,4233,3,694,347, - 0,4232,4224,1,0,0,0,4232,4225,1,0,0,0,4232,4226,1,0,0,0,4232,4227, - 1,0,0,0,4232,4228,1,0,0,0,4232,4229,1,0,0,0,4232,4230,1,0,0,0,4232, - 4231,1,0,0,0,4233,587,1,0,0,0,4234,4235,3,590,295,0,4235,4236,3, - 594,297,0,4236,4263,1,0,0,0,4237,4263,5,431,0,0,4238,4239,5,71,0, - 0,4239,4263,5,426,0,0,4240,4263,5,63,0,0,4241,4242,5,337,0,0,4242, - 4263,5,426,0,0,4243,4263,5,64,0,0,4244,4245,5,338,0,0,4245,4263, - 5,426,0,0,4246,4250,5,426,0,0,4247,4249,5,426,0,0,4248,4247,1,0, - 0,0,4249,4252,1,0,0,0,4250,4248,1,0,0,0,4250,4251,1,0,0,0,4251,4263, - 1,0,0,0,4252,4250,1,0,0,0,4253,4263,5,428,0,0,4254,4263,5,429,0, - 0,4255,4256,5,433,0,0,4256,4263,5,427,0,0,4257,4263,5,350,0,0,4258, - 4263,5,125,0,0,4259,4263,5,219,0,0,4260,4263,5,424,0,0,4261,4263, - 3,258,129,0,4262,4234,1,0,0,0,4262,4237,1,0,0,0,4262,4238,1,0,0, - 0,4262,4240,1,0,0,0,4262,4241,1,0,0,0,4262,4243,1,0,0,0,4262,4244, - 1,0,0,0,4262,4246,1,0,0,0,4262,4253,1,0,0,0,4262,4254,1,0,0,0,4262, - 4255,1,0,0,0,4262,4257,1,0,0,0,4262,4258,1,0,0,0,4262,4259,1,0,0, - 0,4262,4260,1,0,0,0,4262,4261,1,0,0,0,4263,589,1,0,0,0,4264,4265, - 7,27,0,0,4265,591,1,0,0,0,4266,4267,5,399,0,0,4267,4268,3,590,295, - 0,4268,4269,5,400,0,0,4269,4270,3,594,297,0,4270,4282,1,0,0,0,4271, - 4277,5,165,0,0,4272,4278,3,590,295,0,4273,4274,5,399,0,0,4274,4275, - 3,596,298,0,4275,4276,5,400,0,0,4276,4278,1,0,0,0,4277,4272,1,0, - 0,0,4277,4273,1,0,0,0,4278,4279,1,0,0,0,4279,4280,3,594,297,0,4280, - 4282,1,0,0,0,4281,4266,1,0,0,0,4281,4271,1,0,0,0,4282,593,1,0,0, - 0,4283,4284,3,682,341,0,4284,4285,5,341,0,0,4285,4286,3,684,342, - 0,4286,4298,1,0,0,0,4287,4288,3,688,344,0,4288,4289,5,341,0,0,4289, - 4290,3,694,347,0,4290,4298,1,0,0,0,4291,4298,3,682,341,0,4292,4298, - 3,684,342,0,4293,4298,3,688,344,0,4294,4298,3,690,345,0,4295,4298, - 3,692,346,0,4296,4298,3,694,347,0,4297,4283,1,0,0,0,4297,4287,1, - 0,0,0,4297,4291,1,0,0,0,4297,4292,1,0,0,0,4297,4293,1,0,0,0,4297, - 4294,1,0,0,0,4297,4295,1,0,0,0,4297,4296,1,0,0,0,4298,595,1,0,0, - 0,4299,4304,3,638,319,0,4300,4301,5,228,0,0,4301,4303,3,638,319, - 0,4302,4300,1,0,0,0,4303,4306,1,0,0,0,4304,4302,1,0,0,0,4304,4305, - 1,0,0,0,4305,597,1,0,0,0,4306,4304,1,0,0,0,4307,4319,3,588,294,0, - 4308,4319,3,592,296,0,4309,4319,3,576,288,0,4310,4319,3,584,292, - 0,4311,4319,3,582,291,0,4312,4319,3,578,289,0,4313,4319,3,580,290, - 0,4314,4319,3,616,308,0,4315,4319,3,566,283,0,4316,4319,3,552,276, - 0,4317,4319,3,654,327,0,4318,4307,1,0,0,0,4318,4308,1,0,0,0,4318, - 4309,1,0,0,0,4318,4310,1,0,0,0,4318,4311,1,0,0,0,4318,4312,1,0,0, - 0,4318,4313,1,0,0,0,4318,4314,1,0,0,0,4318,4315,1,0,0,0,4318,4316, - 1,0,0,0,4318,4317,1,0,0,0,4319,599,1,0,0,0,4320,4322,7,36,0,0,4321, - 4320,1,0,0,0,4322,4325,1,0,0,0,4323,4321,1,0,0,0,4323,4324,1,0,0, - 0,4324,4326,1,0,0,0,4325,4323,1,0,0,0,4326,4335,3,598,299,0,4327, - 4328,5,401,0,0,4328,4329,3,596,298,0,4329,4330,5,402,0,0,4330,4334, - 1,0,0,0,4331,4332,5,395,0,0,4332,4334,3,654,327,0,4333,4327,1,0, - 0,0,4333,4331,1,0,0,0,4334,4337,1,0,0,0,4335,4333,1,0,0,0,4335,4336, - 1,0,0,0,4336,601,1,0,0,0,4337,4335,1,0,0,0,4338,4343,3,600,300,0, - 4339,4340,5,423,0,0,4340,4342,3,600,300,0,4341,4339,1,0,0,0,4342, - 4345,1,0,0,0,4343,4341,1,0,0,0,4343,4344,1,0,0,0,4344,603,1,0,0, - 0,4345,4343,1,0,0,0,4346,4351,3,602,301,0,4347,4348,7,37,0,0,4348, - 4350,3,602,301,0,4349,4347,1,0,0,0,4350,4353,1,0,0,0,4351,4349,1, - 0,0,0,4351,4352,1,0,0,0,4352,605,1,0,0,0,4353,4351,1,0,0,0,4354, - 4359,3,604,302,0,4355,4356,7,38,0,0,4356,4358,3,604,302,0,4357,4355, - 1,0,0,0,4358,4361,1,0,0,0,4359,4357,1,0,0,0,4359,4360,1,0,0,0,4360, - 607,1,0,0,0,4361,4359,1,0,0,0,4362,4367,3,606,303,0,4363,4364,5, - 422,0,0,4364,4366,3,606,303,0,4365,4363,1,0,0,0,4366,4369,1,0,0, - 0,4367,4365,1,0,0,0,4367,4368,1,0,0,0,4368,609,1,0,0,0,4369,4367, - 1,0,0,0,4370,4375,3,608,304,0,4371,4372,5,419,0,0,4372,4374,3,608, - 304,0,4373,4371,1,0,0,0,4374,4377,1,0,0,0,4375,4373,1,0,0,0,4375, - 4376,1,0,0,0,4376,611,1,0,0,0,4377,4375,1,0,0,0,4378,4383,3,610, - 305,0,4379,4380,5,421,0,0,4380,4382,3,610,305,0,4381,4379,1,0,0, - 0,4382,4385,1,0,0,0,4383,4381,1,0,0,0,4383,4384,1,0,0,0,4384,613, - 1,0,0,0,4385,4383,1,0,0,0,4386,4387,7,39,0,0,4387,615,1,0,0,0,4388, - 4389,5,399,0,0,4389,4390,3,380,190,0,4390,4391,5,400,0,0,4391,617, - 1,0,0,0,4392,4394,3,612,306,0,4393,4395,3,620,310,0,4394,4393,1, - 0,0,0,4394,4395,1,0,0,0,4395,4399,1,0,0,0,4396,4397,5,117,0,0,4397, - 4399,3,616,308,0,4398,4392,1,0,0,0,4398,4396,1,0,0,0,4399,619,1, - 0,0,0,4400,4401,3,614,307,0,4401,4402,3,612,306,0,4402,4407,1,0, - 0,0,4403,4407,3,622,311,0,4404,4405,5,216,0,0,4405,4407,3,626,313, - 0,4406,4400,1,0,0,0,4406,4403,1,0,0,0,4406,4404,1,0,0,0,4407,621, - 1,0,0,0,4408,4409,5,154,0,0,4409,4423,3,624,312,0,4410,4411,5,25, - 0,0,4411,4412,3,612,306,0,4412,4413,5,11,0,0,4413,4414,3,612,306, - 0,4414,4423,1,0,0,0,4415,4416,5,184,0,0,4416,4417,7,40,0,0,4417, - 4423,3,552,276,0,4418,4419,3,650,325,0,4419,4420,7,41,0,0,4420,4421, - 3,616,308,0,4421,4423,1,0,0,0,4422,4408,1,0,0,0,4422,4410,1,0,0, - 0,4422,4415,1,0,0,0,4422,4418,1,0,0,0,4423,623,1,0,0,0,4424,4427, - 3,616,308,0,4425,4427,3,552,276,0,4426,4424,1,0,0,0,4426,4425,1, - 0,0,0,4427,625,1,0,0,0,4428,4429,7,42,0,0,4429,4432,3,612,306,0, - 4430,4432,3,622,311,0,4431,4428,1,0,0,0,4431,4430,1,0,0,0,4432,627, - 1,0,0,0,4433,4434,5,167,0,0,4434,4435,5,96,0,0,4435,4436,5,139,0, - 0,4436,629,1,0,0,0,4437,4445,5,405,0,0,4438,4445,5,406,0,0,4439, - 4445,5,407,0,0,4440,4441,5,167,0,0,4441,4442,5,216,0,0,4442,4443, - 5,96,0,0,4443,4445,5,139,0,0,4444,4437,1,0,0,0,4444,4438,1,0,0,0, - 4444,4439,1,0,0,0,4444,4440,1,0,0,0,4445,631,1,0,0,0,4446,4455,3, - 618,309,0,4447,4448,3,630,315,0,4448,4449,3,618,309,0,4449,4454, - 1,0,0,0,4450,4451,3,628,314,0,4451,4452,3,618,309,0,4452,4454,1, - 0,0,0,4453,4447,1,0,0,0,4453,4450,1,0,0,0,4454,4457,1,0,0,0,4455, - 4453,1,0,0,0,4455,4456,1,0,0,0,4456,633,1,0,0,0,4457,4455,1,0,0, - 0,4458,4465,5,219,0,0,4459,4465,5,350,0,0,4460,4465,5,125,0,0,4461, - 4465,5,360,0,0,4462,4463,5,216,0,0,4463,4465,7,43,0,0,4464,4458, - 1,0,0,0,4464,4459,1,0,0,0,4464,4460,1,0,0,0,4464,4461,1,0,0,0,4464, - 4462,1,0,0,0,4465,635,1,0,0,0,4466,4468,5,216,0,0,4467,4466,1,0, - 0,0,4468,4471,1,0,0,0,4469,4467,1,0,0,0,4469,4470,1,0,0,0,4470,4472, - 1,0,0,0,4471,4469,1,0,0,0,4472,4475,3,632,316,0,4473,4474,5,167, - 0,0,4474,4476,3,634,317,0,4475,4473,1,0,0,0,4475,4476,1,0,0,0,4476, - 637,1,0,0,0,4477,4482,3,636,318,0,4478,4479,5,11,0,0,4479,4481,3, - 636,318,0,4480,4478,1,0,0,0,4481,4484,1,0,0,0,4482,4480,1,0,0,0, - 4482,4483,1,0,0,0,4483,639,1,0,0,0,4484,4482,1,0,0,0,4485,4487,3, - 482,241,0,4486,4488,3,642,321,0,4487,4486,1,0,0,0,4487,4488,1,0, - 0,0,4488,641,1,0,0,0,4489,4490,5,237,0,0,4490,4491,5,399,0,0,4491, - 4496,3,644,322,0,4492,4493,5,397,0,0,4493,4495,3,644,322,0,4494, - 4492,1,0,0,0,4495,4498,1,0,0,0,4496,4494,1,0,0,0,4496,4497,1,0,0, - 0,4497,4499,1,0,0,0,4498,4496,1,0,0,0,4499,4500,5,400,0,0,4500,643, - 1,0,0,0,4501,4504,3,654,327,0,4502,4503,5,405,0,0,4503,4505,3,588, - 294,0,4504,4502,1,0,0,0,4504,4505,1,0,0,0,4505,645,1,0,0,0,4506, - 4507,5,399,0,0,4507,4512,3,648,324,0,4508,4509,5,397,0,0,4509,4511, - 3,648,324,0,4510,4508,1,0,0,0,4511,4514,1,0,0,0,4512,4510,1,0,0, - 0,4512,4513,1,0,0,0,4513,4515,1,0,0,0,4514,4512,1,0,0,0,4515,4516, - 5,400,0,0,4516,647,1,0,0,0,4517,4520,3,654,327,0,4518,4521,5,184, - 0,0,4519,4521,3,650,325,0,4520,4518,1,0,0,0,4520,4519,1,0,0,0,4521, - 4522,1,0,0,0,4522,4523,3,588,294,0,4523,649,1,0,0,0,4524,4525,7, - 44,0,0,4525,651,1,0,0,0,4526,4527,7,45,0,0,4527,653,1,0,0,0,4528, - 4531,5,432,0,0,4529,4531,3,660,330,0,4530,4528,1,0,0,0,4530,4529, - 1,0,0,0,4531,655,1,0,0,0,4532,4535,3,654,327,0,4533,4534,5,395,0, - 0,4534,4536,3,654,327,0,4535,4533,1,0,0,0,4535,4536,1,0,0,0,4536, - 657,1,0,0,0,4537,4538,3,654,327,0,4538,659,1,0,0,0,4539,4540,7,46, - 0,0,4540,661,1,0,0,0,4541,4542,7,47,0,0,4542,663,1,0,0,0,4543,4595, - 3,654,327,0,4544,4595,5,299,0,0,4545,4595,5,171,0,0,4546,4595,5, - 237,0,0,4547,4595,5,198,0,0,4548,4595,5,268,0,0,4549,4595,5,369, - 0,0,4550,4595,5,241,0,0,4551,4595,5,165,0,0,4552,4595,5,292,0,0, - 4553,4595,5,356,0,0,4554,4595,5,144,0,0,4555,4595,5,203,0,0,4556, - 4595,5,219,0,0,4557,4595,5,126,0,0,4558,4595,5,188,0,0,4559,4595, - 5,101,0,0,4560,4595,5,329,0,0,4561,4595,5,224,0,0,4562,4595,5,291, - 0,0,4563,4595,5,145,0,0,4564,4595,5,304,0,0,4565,4595,5,135,0,0, - 4566,4595,5,318,0,0,4567,4595,5,161,0,0,4568,4595,5,54,0,0,4569, - 4595,5,166,0,0,4570,4595,5,358,0,0,4571,4595,5,45,0,0,4572,4595, - 5,347,0,0,4573,4595,5,96,0,0,4574,4595,5,154,0,0,4575,4595,5,269, - 0,0,4576,4595,5,337,0,0,4577,4595,5,225,0,0,4578,4595,5,108,0,0, - 4579,4595,5,141,0,0,4580,4595,5,365,0,0,4581,4595,5,21,0,0,4582, - 4595,5,78,0,0,4583,4595,5,374,0,0,4584,4595,5,336,0,0,4585,4595, - 5,167,0,0,4586,4595,5,134,0,0,4587,4595,5,216,0,0,4588,4595,5,27, - 0,0,4589,4595,5,370,0,0,4590,4595,5,263,0,0,4591,4595,5,25,0,0,4592, - 4595,5,62,0,0,4593,4595,5,17,0,0,4594,4543,1,0,0,0,4594,4544,1,0, - 0,0,4594,4545,1,0,0,0,4594,4546,1,0,0,0,4594,4547,1,0,0,0,4594,4548, - 1,0,0,0,4594,4549,1,0,0,0,4594,4550,1,0,0,0,4594,4551,1,0,0,0,4594, - 4552,1,0,0,0,4594,4553,1,0,0,0,4594,4554,1,0,0,0,4594,4555,1,0,0, - 0,4594,4556,1,0,0,0,4594,4557,1,0,0,0,4594,4558,1,0,0,0,4594,4559, - 1,0,0,0,4594,4560,1,0,0,0,4594,4561,1,0,0,0,4594,4562,1,0,0,0,4594, - 4563,1,0,0,0,4594,4564,1,0,0,0,4594,4565,1,0,0,0,4594,4566,1,0,0, - 0,4594,4567,1,0,0,0,4594,4568,1,0,0,0,4594,4569,1,0,0,0,4594,4570, - 1,0,0,0,4594,4571,1,0,0,0,4594,4572,1,0,0,0,4594,4573,1,0,0,0,4594, - 4574,1,0,0,0,4594,4575,1,0,0,0,4594,4576,1,0,0,0,4594,4577,1,0,0, - 0,4594,4578,1,0,0,0,4594,4579,1,0,0,0,4594,4580,1,0,0,0,4594,4581, - 1,0,0,0,4594,4582,1,0,0,0,4594,4583,1,0,0,0,4594,4584,1,0,0,0,4594, - 4585,1,0,0,0,4594,4586,1,0,0,0,4594,4587,1,0,0,0,4594,4588,1,0,0, - 0,4594,4589,1,0,0,0,4594,4590,1,0,0,0,4594,4591,1,0,0,0,4594,4592, - 1,0,0,0,4594,4593,1,0,0,0,4595,665,1,0,0,0,4596,4597,5,58,0,0,4597, - 4598,5,280,0,0,4598,4600,5,243,0,0,4599,4601,3,32,16,0,4600,4599, - 1,0,0,0,4600,4601,1,0,0,0,4601,4611,1,0,0,0,4602,4603,3,654,327, - 0,4603,4604,5,184,0,0,4604,4605,3,654,327,0,4605,4612,1,0,0,0,4606, - 4609,3,654,327,0,4607,4608,5,387,0,0,4608,4610,3,672,336,0,4609, - 4607,1,0,0,0,4609,4610,1,0,0,0,4610,4612,1,0,0,0,4611,4602,1,0,0, - 0,4611,4606,1,0,0,0,4612,4762,1,0,0,0,4613,4614,5,9,0,0,4614,4615, - 5,280,0,0,4615,4616,5,243,0,0,4616,4641,3,654,327,0,4617,4642,5, - 373,0,0,4618,4642,3,680,340,0,4619,4620,5,304,0,0,4620,4642,3,672, - 336,0,4621,4622,5,363,0,0,4622,4627,3,674,337,0,4623,4624,5,397, - 0,0,4624,4626,3,674,337,0,4625,4623,1,0,0,0,4626,4629,1,0,0,0,4627, - 4625,1,0,0,0,4627,4628,1,0,0,0,4628,4642,1,0,0,0,4629,4627,1,0,0, - 0,4630,4631,5,274,0,0,4631,4632,5,341,0,0,4632,4642,3,654,327,0, - 4633,4635,3,676,338,0,4634,4636,3,678,339,0,4635,4634,1,0,0,0,4635, - 4636,1,0,0,0,4636,4642,1,0,0,0,4637,4639,3,678,339,0,4638,4640,3, - 676,338,0,4639,4638,1,0,0,0,4639,4640,1,0,0,0,4640,4642,1,0,0,0, - 4641,4617,1,0,0,0,4641,4618,1,0,0,0,4641,4619,1,0,0,0,4641,4621, - 1,0,0,0,4641,4630,1,0,0,0,4641,4633,1,0,0,0,4641,4637,1,0,0,0,4642, - 4762,1,0,0,0,4643,4644,5,101,0,0,4644,4645,5,280,0,0,4645,4647,5, - 243,0,0,4646,4648,3,30,15,0,4647,4646,1,0,0,0,4647,4648,1,0,0,0, - 4648,4649,1,0,0,0,4649,4762,3,654,327,0,4650,4653,3,678,339,0,4651, - 4653,3,680,340,0,4652,4650,1,0,0,0,4652,4651,1,0,0,0,4653,4654,1, - 0,0,0,4654,4655,5,390,0,0,4655,4656,5,197,0,0,4656,4762,1,0,0,0, - 4657,4669,5,278,0,0,4658,4659,5,3,0,0,4659,4660,5,280,0,0,4660,4661, - 5,243,0,0,4661,4662,5,387,0,0,4662,4670,3,654,327,0,4663,4664,5, - 280,0,0,4664,4665,5,243,0,0,4665,4666,3,654,327,0,4666,4667,5,387, - 0,0,4667,4668,3,654,327,0,4668,4670,1,0,0,0,4669,4658,1,0,0,0,4669, - 4663,1,0,0,0,4670,4762,1,0,0,0,4671,4672,5,58,0,0,4672,4673,5,348, - 0,0,4673,4674,3,654,327,0,4674,4675,5,395,0,0,4675,4676,3,654,327, - 0,4676,4677,5,383,0,0,4677,4678,3,704,352,0,4678,4679,5,99,0,0,4679, - 4680,3,706,353,0,4680,4762,1,0,0,0,4681,4682,5,9,0,0,4682,4683,5, - 348,0,0,4683,4684,3,654,327,0,4684,4685,5,395,0,0,4685,4702,3,654, - 327,0,4686,4687,5,383,0,0,4687,4688,3,704,352,0,4688,4689,5,99,0, - 0,4689,4690,3,706,353,0,4690,4703,1,0,0,0,4691,4692,5,4,0,0,4692, - 4696,5,341,0,0,4693,4694,5,101,0,0,4694,4696,5,139,0,0,4695,4691, - 1,0,0,0,4695,4693,1,0,0,0,4696,4700,1,0,0,0,4697,4698,5,246,0,0, - 4698,4701,3,700,350,0,4699,4701,5,362,0,0,4700,4697,1,0,0,0,4700, - 4699,1,0,0,0,4701,4703,1,0,0,0,4702,4686,1,0,0,0,4702,4695,1,0,0, - 0,4703,4762,1,0,0,0,4704,4705,5,101,0,0,4705,4706,5,348,0,0,4706, - 4707,3,654,327,0,4707,4708,5,395,0,0,4708,4709,3,654,327,0,4709, - 4762,1,0,0,0,4710,4711,5,58,0,0,4711,4712,5,246,0,0,4712,4713,3, - 654,327,0,4713,4714,5,395,0,0,4714,4715,3,700,350,0,4715,4716,5, - 387,0,0,4716,4717,3,710,355,0,4717,4762,1,0,0,0,4718,4719,5,9,0, - 0,4719,4720,5,246,0,0,4720,4721,3,654,327,0,4721,4722,5,395,0,0, - 4722,4730,3,700,350,0,4723,4724,5,304,0,0,4724,4731,3,710,355,0, - 4725,4726,5,363,0,0,4726,4731,5,294,0,0,4727,4728,7,48,0,0,4728, - 4729,5,348,0,0,4729,4731,3,654,327,0,4730,4723,1,0,0,0,4730,4725, - 1,0,0,0,4730,4727,1,0,0,0,4731,4762,1,0,0,0,4732,4733,5,101,0,0, - 4733,4734,5,246,0,0,4734,4735,3,654,327,0,4735,4736,5,395,0,0,4736, - 4737,3,700,350,0,4737,4762,1,0,0,0,4738,4739,7,49,0,0,4739,4740, - 3,668,334,0,4740,4741,5,200,0,0,4741,4742,5,426,0,0,4742,4743,5, - 154,0,0,4743,4747,3,654,327,0,4744,4745,5,341,0,0,4745,4748,3,700, - 350,0,4746,4748,5,362,0,0,4747,4744,1,0,0,0,4747,4746,1,0,0,0,4748, - 4752,1,0,0,0,4749,4750,5,387,0,0,4750,4751,5,229,0,0,4751,4753,5, - 431,0,0,4752,4749,1,0,0,0,4752,4753,1,0,0,0,4753,4762,1,0,0,0,4754, - 4755,5,101,0,0,4755,4756,3,668,334,0,4756,4757,5,200,0,0,4757,4758, - 5,426,0,0,4758,4759,5,154,0,0,4759,4760,3,654,327,0,4760,4762,1, - 0,0,0,4761,4596,1,0,0,0,4761,4613,1,0,0,0,4761,4643,1,0,0,0,4761, - 4652,1,0,0,0,4761,4657,1,0,0,0,4761,4671,1,0,0,0,4761,4681,1,0,0, - 0,4761,4704,1,0,0,0,4761,4710,1,0,0,0,4761,4718,1,0,0,0,4761,4732, - 1,0,0,0,4761,4738,1,0,0,0,4761,4754,1,0,0,0,4762,667,1,0,0,0,4763, - 4764,7,50,0,0,4764,669,1,0,0,0,4765,4766,5,259,0,0,4766,4767,5,405, - 0,0,4767,4773,5,431,0,0,4768,4769,5,83,0,0,4769,4770,5,246,0,0,4770, - 4771,5,405,0,0,4771,4773,3,700,350,0,4772,4765,1,0,0,0,4772,4768, - 1,0,0,0,4773,671,1,0,0,0,4774,4779,3,670,335,0,4775,4776,5,397,0, - 0,4776,4778,3,670,335,0,4777,4775,1,0,0,0,4778,4781,1,0,0,0,4779, - 4777,1,0,0,0,4779,4780,1,0,0,0,4780,673,1,0,0,0,4781,4779,1,0,0, - 0,4782,4786,5,259,0,0,4783,4784,5,83,0,0,4784,4786,5,246,0,0,4785, - 4782,1,0,0,0,4785,4783,1,0,0,0,4786,675,1,0,0,0,4787,4790,5,2,0, - 0,4788,4789,5,387,0,0,4789,4791,5,278,0,0,4790,4788,1,0,0,0,4790, - 4791,1,0,0,0,4791,677,1,0,0,0,4792,4793,7,51,0,0,4793,679,1,0,0, - 0,4794,4795,7,52,0,0,4795,681,1,0,0,0,4796,4797,7,53,0,0,4797,683, - 1,0,0,0,4798,4799,7,54,0,0,4799,685,1,0,0,0,4800,4801,7,55,0,0,4801, - 687,1,0,0,0,4802,4803,7,56,0,0,4803,689,1,0,0,0,4804,4805,7,57,0, - 0,4805,691,1,0,0,0,4806,4807,7,58,0,0,4807,693,1,0,0,0,4808,4809, - 7,59,0,0,4809,695,1,0,0,0,4810,4811,7,60,0,0,4811,697,1,0,0,0,4812, - 4813,1,0,0,0,4813,699,1,0,0,0,4814,4819,3,654,327,0,4815,4816,5, - 395,0,0,4816,4818,3,654,327,0,4817,4815,1,0,0,0,4818,4821,1,0,0, - 0,4819,4817,1,0,0,0,4819,4820,1,0,0,0,4820,701,1,0,0,0,4821,4819, - 1,0,0,0,4822,4827,3,654,327,0,4823,4824,5,395,0,0,4824,4826,3,654, - 327,0,4825,4823,1,0,0,0,4826,4829,1,0,0,0,4827,4825,1,0,0,0,4827, - 4828,1,0,0,0,4828,4840,1,0,0,0,4829,4827,1,0,0,0,4830,4831,4,351, - 3,0,4831,4836,3,654,327,0,4832,4833,5,395,0,0,4833,4835,3,698,349, - 0,4834,4832,1,0,0,0,4835,4838,1,0,0,0,4836,4834,1,0,0,0,4836,4837, - 1,0,0,0,4837,4840,1,0,0,0,4838,4836,1,0,0,0,4839,4822,1,0,0,0,4839, - 4830,1,0,0,0,4840,703,1,0,0,0,4841,4842,3,654,327,0,4842,4843,5, - 411,0,0,4843,4844,7,27,0,0,4844,705,1,0,0,0,4845,4850,5,176,0,0, - 4846,4847,5,211,0,0,4847,4848,5,341,0,0,4848,4850,3,700,350,0,4849, - 4845,1,0,0,0,4849,4846,1,0,0,0,4850,707,1,0,0,0,4851,4852,5,8,0, - 0,4852,4853,5,405,0,0,4853,4864,5,431,0,0,4854,4855,5,259,0,0,4855, - 4856,5,405,0,0,4856,4864,5,431,0,0,4857,4858,5,294,0,0,4858,4859, - 5,405,0,0,4859,4864,5,426,0,0,4860,4861,5,240,0,0,4861,4862,5,405, - 0,0,4862,4864,3,700,350,0,4863,4851,1,0,0,0,4863,4854,1,0,0,0,4863, - 4857,1,0,0,0,4863,4860,1,0,0,0,4864,709,1,0,0,0,4865,4870,3,708, - 354,0,4866,4867,5,397,0,0,4867,4869,3,708,354,0,4868,4866,1,0,0, - 0,4869,4872,1,0,0,0,4870,4868,1,0,0,0,4870,4871,1,0,0,0,4871,711, - 1,0,0,0,4872,4870,1,0,0,0,629,715,722,725,731,737,744,754,757,761, - 776,783,789,794,799,802,826,833,836,841,846,852,856,869,873,877, - 882,889,893,898,905,909,914,962,969,974,997,1001,1005,1008,1012, - 1017,1023,1027,1033,1035,1046,1050,1057,1065,1068,1073,1077,1080, - 1090,1098,1102,1105,1109,1113,1116,1121,1127,1132,1137,1141,1152, - 1154,1158,1168,1172,1178,1181,1188,1193,1201,1206,1210,1218,1223, - 1229,1235,1238,1241,1244,1253,1261,1266,1274,1281,1284,1287,1289, - 1300,1302,1305,1308,1311,1314,1317,1319,1331,1337,1345,1347,1357, - 1390,1395,1399,1403,1410,1417,1423,1427,1430,1437,1460,1465,1469, - 1477,1486,1493,1499,1506,1509,1515,1522,1530,1539,1548,1555,1575, - 1582,1584,1591,1601,1609,1613,1617,1630,1639,1655,1659,1664,1669, - 1672,1675,1678,1681,1684,1689,1698,1702,1709,1712,1715,1718,1730, - 1736,1762,1770,1774,1777,1780,1783,1786,1789,1792,1795,1804,1814, - 1817,1837,1843,1849,1852,1854,1861,1868,1881,1886,1895,1903,1911, - 1924,1937,1953,1957,1972,1978,1981,1984,1987,1990,1994,2009,2012, - 2023,2037,2071,2079,2084,2092,2097,2102,2109,2117,2125,2133,2139, - 2146,2156,2160,2168,2177,2180,2184,2191,2197,2201,2207,2211,2223, - 2232,2243,2247,2254,2266,2276,2279,2286,2292,2296,2299,2302,2308, - 2312,2316,2321,2325,2329,2333,2341,2345,2349,2353,2357,2365,2369, - 2373,2381,2386,2391,2395,2399,2406,2415,2423,2435,2453,2456,2462, - 2488,2491,2497,2505,2513,2526,2533,2536,2539,2542,2545,2548,2551, - 2554,2557,2560,2563,2568,2571,2574,2577,2580,2583,2586,2589,2592, - 2595,2598,2600,2606,2610,2613,2616,2619,2622,2625,2632,2636,2639, - 2642,2645,2648,2651,2658,2661,2669,2673,2680,2682,2685,2690,2693, - 2697,2702,2708,2716,2724,2734,2737,2741,2745,2750,2757,2761,2763, - 2767,2774,2779,2792,2800,2819,2829,2842,2852,2856,2860,2866,2873, - 2880,2889,2896,2916,2919,2933,2948,2952,2972,2984,2990,2993,2996, - 3002,3008,3015,3023,3029,3033,3038,3041,3045,3052,3057,3062,3065, - 3067,3075,3083,3087,3091,3095,3112,3129,3136,3145,3150,3153,3156, - 3160,3175,3189,3192,3203,3207,3210,3213,3217,3222,3225,3228,3231, - 3234,3237,3243,3246,3249,3252,3255,3258,3261,3264,3267,3270,3274, - 3276,3282,3287,3290,3293,3296,3299,3305,3308,3311,3314,3317,3320, - 3323,3326,3329,3332,3336,3338,3340,3345,3350,3354,3358,3363,3368, - 3377,3387,3395,3407,3410,3416,3423,3430,3437,3444,3454,3456,3460, - 3464,3471,3476,3480,3484,3487,3490,3501,3505,3507,3510,3523,3526, - 3529,3541,3544,3551,3560,3565,3567,3569,3586,3589,3597,3600,3604, - 3607,3610,3613,3616,3628,3636,3643,3646,3653,3656,3661,3668,3676, - 3682,3687,3691,3696,3700,3707,3721,3724,3731,3739,3749,3752,3761, - 3770,3773,3779,3782,3787,3790,3803,3809,3811,3821,3827,3830,3840, - 3845,3849,3865,3871,3873,3880,3887,3901,3907,3910,3913,3916,3925, - 3932,3938,3947,3951,3959,3969,3979,3984,3988,3994,3999,4004,4011, - 4015,4018,4023,4026,4030,4035,4046,4048,4057,4080,4090,4093,4100, - 4103,4113,4120,4123,4125,4136,4146,4148,4157,4162,4171,4184,4188, - 4200,4204,4213,4232,4250,4262,4277,4281,4297,4304,4318,4323,4333, - 4335,4343,4351,4359,4367,4375,4383,4394,4398,4406,4422,4426,4431, - 4444,4453,4455,4464,4469,4475,4482,4487,4496,4504,4512,4520,4530, - 4535,4594,4600,4609,4611,4627,4635,4639,4641,4647,4652,4669,4695, - 4700,4702,4730,4747,4752,4761,4772,4779,4785,4790,4819,4827,4836, - 4839,4849,4863,4870 + 2,313,7,313,2,314,7,314,2,315,7,315,1,0,5,0,634,8,0,10,0,12,0,637, + 9,0,1,0,1,0,1,1,1,1,3,1,643,8,1,1,1,3,1,646,8,1,1,2,1,2,5,2,650, + 8,2,10,2,12,2,653,9,2,1,2,1,2,1,2,3,2,658,8,2,1,3,1,3,1,3,1,3,1, + 3,3,3,665,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,3,3,675,8,3,1,3,3, + 3,678,8,3,1,3,1,3,3,3,682,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,3,5,697,8,5,1,5,1,5,1,5,1,5,1,5,3,5,704,8,5,1, + 5,1,5,1,5,1,5,3,5,710,8,5,1,5,1,5,1,5,3,5,715,8,5,1,5,1,5,1,5,3, + 5,720,8,5,1,5,3,5,723,8,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,5,5,745,8,5,10,5,12,5, + 748,9,5,1,5,1,5,5,5,752,8,5,10,5,12,5,755,9,5,3,5,757,8,5,1,6,1, + 6,1,6,3,6,762,8,6,1,6,1,6,1,6,3,6,767,8,6,1,6,1,6,1,6,1,6,1,6,1, + 6,1,6,3,6,776,8,6,1,7,1,7,3,7,780,8,7,1,7,1,7,1,7,1,7,1,7,1,8,1, + 8,1,8,1,8,1,8,1,8,3,8,793,8,8,1,9,1,9,3,9,797,8,9,1,9,1,9,3,9,801, + 8,9,1,9,1,9,1,9,3,9,806,8,9,1,10,1,10,1,10,1,10,1,10,3,10,813,8, + 10,1,10,1,10,3,10,817,8,10,1,11,1,11,1,11,3,11,822,8,11,1,12,1,12, + 1,12,1,12,1,12,3,12,829,8,12,1,12,1,12,3,12,833,8,12,1,13,1,13,1, + 13,3,13,838,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, + 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, + 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, + 14,1,14,1,14,1,14,1,14,4,14,880,8,14,11,14,12,14,881,1,14,1,14,1, + 14,4,14,887,8,14,11,14,12,14,888,1,14,1,14,1,14,3,14,894,8,14,1, + 15,1,15,1,15,1,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18,1,18,1,18,1, + 19,1,19,1,19,1,20,1,20,1,20,1,21,1,21,3,21,917,8,21,1,21,1,21,3, + 21,921,8,21,1,21,1,21,1,21,3,21,926,8,21,1,21,3,21,929,8,21,1,21, + 1,21,3,21,933,8,21,1,21,1,21,1,21,3,21,938,8,21,1,21,1,21,1,21,1, + 21,3,21,944,8,21,1,21,1,21,1,21,3,21,949,8,21,1,21,1,21,1,21,1,21, + 1,21,3,21,956,8,21,3,21,958,8,21,1,22,1,22,1,22,1,23,1,23,1,23,3, + 23,966,8,23,1,23,1,23,3,23,970,8,23,1,24,1,24,3,24,974,8,24,1,24, + 1,24,1,24,1,24,1,24,1,24,3,24,982,8,24,1,24,3,24,985,8,24,1,25,1, + 25,1,25,3,25,990,8,25,1,25,1,25,3,25,994,8,25,1,25,3,25,997,8,25, + 1,26,1,26,1,26,3,26,1002,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26, + 1010,8,26,5,26,1012,8,26,10,26,12,26,1015,9,26,3,26,1017,8,26,1, + 27,1,27,3,27,1021,8,27,1,28,1,28,3,28,1025,8,28,1,28,3,28,1028,8, + 28,1,29,1,29,1,29,3,29,1033,8,29,1,29,1,29,1,29,1,29,3,29,1039,8, + 29,1,29,1,29,1,29,3,29,1044,8,29,1,29,1,29,1,29,3,29,1049,8,29,1, + 29,1,29,3,29,1053,8,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1, + 30,3,30,1064,8,30,3,30,1066,8,30,1,30,1,30,3,30,1070,8,30,1,31,1, + 31,1,32,1,32,1,33,1,33,1,33,1,33,3,33,1080,8,33,1,33,3,33,1083,8, + 33,1,33,1,33,1,33,1,33,3,33,1089,8,33,1,33,3,33,1092,8,33,1,33,1, + 33,1,33,1,33,3,33,1098,8,33,1,33,1,33,1,33,3,33,1103,8,33,1,33,1, + 33,1,33,1,33,1,33,3,33,1110,8,33,1,33,1,33,1,33,3,33,1115,8,33,1, + 33,3,33,1118,8,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1126,8,33,1, + 33,1,33,1,33,3,33,1131,8,33,1,33,1,33,1,33,3,33,1136,8,33,1,33,1, + 33,1,33,3,33,1141,8,33,1,33,3,33,1144,8,33,1,33,3,33,1147,8,33,1, + 33,3,33,1150,8,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1158,8,33,1, + 33,1,33,1,33,1,33,1,33,3,33,1165,8,33,1,33,1,33,1,33,3,33,1170,8, + 33,1,33,1,33,1,33,1,33,1,33,3,33,1177,8,33,1,33,1,33,1,33,1,33,3, + 33,1183,8,33,1,33,3,33,1186,8,33,1,33,3,33,1189,8,33,3,33,1191,8, + 33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1201,8,33,3,33,1203, + 8,33,1,33,1,33,3,33,1207,8,33,1,33,1,33,3,33,1211,8,33,1,33,1,33, + 3,33,1215,8,33,1,33,3,33,1218,8,33,1,33,3,33,1221,8,33,3,33,1223, + 8,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1232,8,33,1,33,1,33, + 3,33,1236,8,33,1,33,1,33,1,33,1,33,1,33,1,33,3,33,1244,8,33,3,33, + 1246,8,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,1256,8,34, + 1,35,1,35,1,35,1,35,3,35,1262,8,35,1,36,1,36,1,36,1,36,3,36,1268, + 8,36,1,37,1,37,1,37,1,37,1,38,1,38,1,38,3,38,1277,8,38,1,38,1,38, + 1,38,1,38,1,38,3,38,1284,8,38,1,39,1,39,1,39,1,39,3,39,1290,8,39, + 1,39,1,39,3,39,1294,8,39,1,39,1,39,1,39,1,40,1,40,3,40,1301,8,40, + 1,40,1,40,1,40,5,40,1306,8,40,10,40,12,40,1309,9,40,1,40,1,40,1, + 40,1,40,1,40,3,40,1316,8,40,1,41,1,41,1,41,1,41,3,41,1322,8,41,1, + 41,3,41,1325,8,41,1,41,1,41,1,41,5,41,1330,8,41,10,41,12,41,1333, + 9,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,44, + 1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,45,3,45,1355,8,45,1,46,1,46, + 1,46,3,46,1360,8,46,1,46,1,46,3,46,1364,8,46,1,47,1,47,1,47,1,47, + 1,48,1,48,3,48,1372,8,48,1,49,1,49,1,49,1,50,1,50,1,50,1,50,3,50, + 1381,8,50,1,50,1,50,1,50,1,50,1,50,3,50,1388,8,50,1,51,1,51,1,51, + 1,51,3,51,1394,8,51,1,51,1,51,1,51,1,51,1,51,3,51,1401,8,51,1,51, + 3,51,1404,8,51,1,51,1,51,1,51,1,51,3,51,1410,8,51,1,52,1,52,1,52, + 5,52,1415,8,52,10,52,12,52,1418,9,52,1,53,1,53,1,53,1,53,1,53,3, + 53,1425,8,53,1,54,1,54,1,55,1,55,1,55,5,55,1432,8,55,10,55,12,55, + 1435,9,55,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1443,8,56,1,57,1,57, + 1,57,1,57,1,57,3,57,1450,8,57,1,58,1,58,3,58,1454,8,58,1,58,1,58, + 1,58,1,58,1,58,3,58,1461,8,58,3,58,1463,8,58,1,59,1,59,1,60,1,60, + 3,60,1469,8,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60,1,60, + 1,60,5,60,1482,8,60,10,60,12,60,1485,9,60,3,60,1487,8,60,1,61,1, + 61,3,61,1491,8,61,1,61,1,61,3,61,1495,8,61,1,61,1,61,1,62,1,62,1, + 62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1508,8,63,1,63,1,63,1,63,1, + 64,1,64,1,64,1,64,3,64,1517,8,64,1,64,1,64,1,65,1,65,1,65,1,65,1, + 65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1533,8,65,1,65,1,65,3, + 65,1537,8,65,1,65,1,65,1,65,3,65,1542,8,65,1,65,1,65,1,65,3,65,1547, + 8,65,1,65,3,65,1550,8,65,1,65,3,65,1553,8,65,1,65,3,65,1556,8,65, + 1,65,3,65,1559,8,65,1,65,3,65,1562,8,65,1,66,1,66,1,66,3,66,1567, + 8,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,3,67,1576,8,67,1,67,1,67, + 3,67,1580,8,67,1,67,1,67,1,67,1,67,1,67,3,67,1587,8,67,1,67,3,67, + 1590,8,67,1,67,3,67,1593,8,67,1,67,3,67,1596,8,67,1,67,1,67,1,67, + 1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,1608,8,68,1,68,1,68,1,69, + 1,69,3,69,1614,8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71, + 1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,73,1,74, + 1,74,3,74,1639,8,74,1,74,1,74,3,74,1643,8,74,1,74,1,74,1,75,1,75, + 1,75,1,75,3,75,1651,8,75,1,75,1,75,3,75,1655,8,75,1,75,3,75,1658, + 8,75,1,75,3,75,1661,8,75,1,75,3,75,1664,8,75,1,75,3,75,1667,8,75, + 1,75,3,75,1670,8,75,1,75,3,75,1673,8,75,1,75,3,75,1676,8,75,1,75, + 1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,3,76,1687,8,76,1,76,3,76, + 1690,8,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78, + 1,78,1,78,1,79,1,79,1,79,1,79,1,79,3,79,1710,8,79,1,80,1,80,1,80, + 1,80,3,80,1716,8,80,1,80,1,80,1,80,1,80,3,80,1722,8,80,1,80,3,80, + 1725,8,80,3,80,1727,8,80,1,81,1,81,1,81,1,81,1,82,3,82,1734,8,82, + 1,82,1,82,1,82,1,83,1,83,3,83,1741,8,83,1,84,1,84,1,84,1,85,1,85, + 1,85,1,86,1,86,1,86,1,86,1,86,3,86,1754,8,86,1,86,1,86,1,86,3,86, + 1759,8,86,1,86,1,86,1,87,1,87,1,87,5,87,1766,8,87,10,87,12,87,1769, + 9,87,1,88,1,88,1,88,5,88,1774,8,88,10,88,12,88,1777,9,88,1,89,1, + 89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1,89,3,89,1792, + 8,89,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90, + 1805,8,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,91,1,91, + 1,91,1,91,1,91,3,91,1821,8,91,1,92,1,92,3,92,1825,8,92,1,93,1,93, + 1,93,1,93,1,93,1,93,1,93,3,93,1834,8,93,1,94,1,94,1,94,1,94,3,94, + 1840,8,94,1,94,3,94,1843,8,94,1,94,3,94,1846,8,94,1,94,3,94,1849, + 8,94,1,94,3,94,1852,8,94,1,95,1,95,1,95,1,96,1,96,1,96,1,96,1,97, + 1,97,1,97,1,97,5,97,1865,8,97,10,97,12,97,1868,9,97,3,97,1870,8, + 97,1,98,1,98,1,98,1,98,1,99,1,99,1,99,5,99,1879,8,99,10,99,12,99, + 1882,9,99,1,100,1,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101, + 1,101,1,101,3,101,1895,8,101,1,102,1,102,1,102,1,102,1,102,1,102, + 1,103,1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104, + 1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,3,106,1929,8,106,1,106,1,106,1,106,1,106, + 1,106,1,106,3,106,1937,8,106,1,106,1,106,1,106,3,106,1942,8,106, + 1,106,1,106,1,106,1,106,1,106,1,106,3,106,1950,8,106,1,106,1,106, + 1,106,3,106,1955,8,106,1,106,1,106,1,106,3,106,1960,8,106,1,107, + 1,107,1,107,5,107,1965,8,107,10,107,12,107,1968,9,107,1,108,1,108, + 1,108,5,108,1973,8,108,10,108,12,108,1976,9,108,1,109,1,109,1,109, + 5,109,1981,8,109,10,109,12,109,1984,9,109,1,110,1,110,1,110,5,110, + 1989,8,110,10,110,12,110,1992,9,110,1,111,1,111,1,111,3,111,1997, + 8,111,1,112,1,112,1,113,1,113,1,113,3,113,2004,8,113,1,114,1,114, + 1,115,1,115,1,115,1,115,1,115,1,115,3,115,2014,8,115,5,115,2016, + 8,115,10,115,12,115,2019,9,115,1,116,1,116,1,116,5,116,2024,8,116, + 10,116,12,116,2027,9,116,1,117,1,117,1,117,1,117,1,118,1,118,3,118, + 2035,8,118,1,118,3,118,2038,8,118,1,119,1,119,3,119,2042,8,119,1, + 120,1,120,1,120,3,120,2047,8,120,1,121,1,121,3,121,2051,8,121,1, + 121,1,121,3,121,2055,8,121,1,122,1,122,1,122,1,122,3,122,2061,8, + 122,1,123,1,123,3,123,2065,8,123,1,124,1,124,1,124,1,125,1,125,1, + 125,1,125,1,125,1,126,1,126,3,126,2077,8,126,1,126,1,126,1,126,1, + 126,1,126,1,126,1,126,3,126,2086,8,126,1,127,1,127,1,127,1,127,1, + 127,1,127,1,127,1,127,1,127,3,127,2097,8,127,1,128,1,128,3,128,2101, + 8,128,1,129,1,129,1,129,5,129,2106,8,129,10,129,12,129,2109,9,129, + 1,130,1,130,1,130,1,130,1,131,1,131,1,131,5,131,2118,8,131,10,131, + 12,131,2121,9,131,1,132,1,132,1,133,1,133,1,133,1,134,1,134,3,134, + 2130,8,134,1,134,3,134,2133,8,134,1,135,1,135,1,135,5,135,2138,8, + 135,10,135,12,135,2141,9,135,1,136,1,136,1,136,3,136,2146,8,136, + 1,137,1,137,3,137,2150,8,137,1,137,3,137,2153,8,137,1,137,3,137, + 2156,8,137,1,138,1,138,1,138,1,138,3,138,2162,8,138,1,139,1,139, + 3,139,2166,8,139,1,140,1,140,3,140,2170,8,140,1,141,1,141,1,141, + 3,141,2175,8,141,1,141,1,141,3,141,2179,8,141,1,142,1,142,3,142, + 2183,8,142,1,143,1,143,3,143,2187,8,143,1,143,1,143,1,143,1,143, + 1,143,1,143,3,143,2195,8,143,1,144,1,144,3,144,2199,8,144,1,144, + 1,144,3,144,2203,8,144,1,145,1,145,1,145,1,145,1,145,1,145,3,145, + 2211,8,145,1,145,1,145,3,145,2215,8,145,1,146,1,146,1,146,3,146, + 2220,8,146,1,147,1,147,3,147,2224,8,147,1,148,1,148,1,148,1,148, + 1,148,3,148,2231,8,148,1,149,1,149,1,149,5,149,2236,8,149,10,149, + 12,149,2239,9,149,1,150,1,150,1,150,1,150,1,150,3,150,2246,8,150, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151, + 2258,8,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,2276,8,151,1,151, + 3,151,2279,8,151,1,151,1,151,1,151,1,151,3,151,2285,8,151,1,152, + 1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,154,1,154, + 1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155,1,155,1,156, + 1,156,3,156,2311,8,156,1,157,3,157,2314,8,157,1,157,1,157,1,158, + 1,158,3,158,2320,8,158,1,159,1,159,1,159,1,159,5,159,2326,8,159, + 10,159,12,159,2329,9,159,1,160,1,160,1,160,1,160,1,160,3,160,2336, + 8,160,1,160,1,160,1,160,1,160,1,160,1,161,1,161,1,161,1,161,5,161, + 2347,8,161,10,161,12,161,2350,9,161,1,162,1,162,1,162,1,162,3,162, + 2356,8,162,1,162,3,162,2359,8,162,1,162,3,162,2362,8,162,1,162,3, + 162,2365,8,162,1,162,3,162,2368,8,162,1,162,3,162,2371,8,162,1,162, + 3,162,2374,8,162,1,162,3,162,2377,8,162,1,162,3,162,2380,8,162,1, + 162,3,162,2383,8,162,1,162,3,162,2386,8,162,1,162,1,162,1,162,3, + 162,2391,8,162,1,162,3,162,2394,8,162,1,162,3,162,2397,8,162,1,162, + 3,162,2400,8,162,1,162,3,162,2403,8,162,1,162,3,162,2406,8,162,1, + 162,3,162,2409,8,162,1,162,3,162,2412,8,162,1,162,3,162,2415,8,162, + 1,162,3,162,2418,8,162,1,162,3,162,2421,8,162,3,162,2423,8,162,1, + 163,1,163,1,163,1,163,3,163,2429,8,163,1,164,1,164,3,164,2433,8, + 164,1,164,3,164,2436,8,164,1,164,3,164,2439,8,164,1,164,3,164,2442, + 8,164,1,164,3,164,2445,8,164,1,164,3,164,2448,8,164,1,164,1,164, + 1,164,1,164,1,164,3,164,2455,8,164,1,165,1,165,3,165,2459,8,165, + 1,165,3,165,2462,8,165,1,165,3,165,2465,8,165,1,165,3,165,2468,8, + 165,1,165,3,165,2471,8,165,1,165,3,165,2474,8,165,1,166,1,166,1, + 166,4,166,2479,8,166,11,166,12,166,2480,1,167,3,167,2484,8,167,1, + 167,1,167,1,168,1,168,1,168,1,168,3,168,2492,8,168,1,168,1,168,3, + 168,2496,8,168,1,168,1,168,1,168,1,168,1,168,3,168,2503,8,168,3, + 168,2505,8,168,1,169,3,169,2508,8,169,1,169,1,169,1,169,3,169,2513, + 8,169,1,169,3,169,2516,8,169,1,169,1,169,3,169,2520,8,169,1,170, + 1,170,1,170,3,170,2525,8,170,1,170,1,170,1,170,1,170,3,170,2531, + 8,170,1,171,1,171,1,171,1,171,1,172,1,172,3,172,2539,8,172,1,173, + 1,173,1,173,1,173,5,173,2545,8,173,10,173,12,173,2548,9,173,1,174, + 1,174,1,174,1,174,1,174,5,174,2555,8,174,10,174,12,174,2558,9,174, + 3,174,2560,8,174,1,174,1,174,3,174,2564,8,174,1,174,1,174,3,174, + 2568,8,174,1,174,1,174,1,174,3,174,2573,8,174,1,175,1,175,1,175, + 1,175,1,175,3,175,2580,8,175,1,176,1,176,5,176,2584,8,176,10,176, + 12,176,2587,9,176,1,176,3,176,2590,8,176,1,177,1,177,1,177,1,177, + 1,177,3,177,2597,8,177,1,177,1,177,1,177,3,177,2602,8,177,1,177, + 1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,3,178, + 2615,8,178,1,179,1,179,1,179,1,179,1,179,1,179,3,179,2623,8,179, + 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,2633,8,180, + 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,2643,8,180, + 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180, + 3,180,2656,8,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 3,181,2666,8,181,1,181,1,181,3,181,2670,8,181,4,181,2672,8,181,11, + 181,12,181,2673,1,181,1,181,5,181,2678,8,181,10,181,12,181,2681, + 9,181,1,181,1,181,5,181,2685,8,181,10,181,12,181,2688,9,181,1,181, + 1,181,5,181,2692,8,181,10,181,12,181,2695,9,181,1,181,1,181,1,181, + 1,181,1,181,1,181,3,181,2703,8,181,1,181,1,181,1,181,1,181,1,181, + 3,181,2710,8,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181, + 2730,8,181,1,181,3,181,2733,8,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,2747,8,181,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,3,182,2762,8,182,1,182,1,182,3,182,2766,8,182,1,182,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,182,5,182,2784,8,182,10,182,12,182,2787,9,182,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,3,182,2798,8,182, + 1,182,1,182,1,182,1,182,3,182,2804,8,182,1,182,3,182,2807,8,182, + 1,182,1,182,3,182,2811,8,182,1,182,1,182,1,182,1,182,3,182,2817, + 8,182,1,182,1,182,1,182,1,182,3,182,2823,8,182,1,182,1,182,1,182, + 1,182,1,182,3,182,2830,8,182,1,182,1,182,1,182,1,182,1,182,1,182, + 3,182,2838,8,182,1,182,1,182,1,182,1,182,3,182,2844,8,182,1,182, + 1,182,3,182,2848,8,182,1,182,1,182,1,182,3,182,2853,8,182,1,182, + 3,182,2856,8,182,1,182,1,182,3,182,2860,8,182,1,182,1,182,1,182, + 1,182,1,182,3,182,2867,8,182,1,182,1,182,1,182,3,182,2872,8,182, + 1,182,1,182,1,182,3,182,2877,8,182,1,182,3,182,2880,8,182,3,182, + 2882,8,182,1,183,1,183,1,183,1,183,1,183,1,183,3,183,2890,8,183, + 1,183,1,183,1,183,1,183,1,183,1,183,3,183,2898,8,183,1,183,1,183, + 3,183,2902,8,183,4,183,2904,8,183,11,183,12,183,2905,1,183,1,183, + 3,183,2910,8,183,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184, + 1,184,1,184,1,184,1,184,1,184,1,184,1,184,3,184,2927,8,184,1,185, + 1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, + 1,185,1,185,1,185,3,185,2944,8,185,1,186,1,186,1,186,1,187,1,187, + 3,187,2951,8,187,1,187,1,187,1,187,1,187,1,187,5,187,2958,8,187, + 10,187,12,187,2961,9,187,1,187,1,187,3,187,2965,8,187,1,187,3,187, + 2968,8,187,1,187,3,187,2971,8,187,1,188,1,188,3,188,2975,8,188,1, + 188,1,188,1,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, + 1,189,1,189,3,189,2990,8,189,1,189,1,189,1,190,1,190,1,190,1,190, + 1,190,1,190,1,190,1,190,1,190,1,190,3,190,3004,8,190,1,190,3,190, + 3007,8,190,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191, + 3,191,3018,8,191,1,192,1,192,3,192,3022,8,192,1,192,3,192,3025,8, + 192,1,192,3,192,3028,8,192,1,192,3,192,3031,8,192,1,192,1,192,3, + 192,3035,8,192,1,192,1,192,1,192,3,192,3040,8,192,1,192,3,192,3043, + 8,192,1,192,3,192,3046,8,192,1,192,3,192,3049,8,192,1,192,3,192, + 3052,8,192,1,192,3,192,3055,8,192,1,192,1,192,1,192,1,192,3,192, + 3061,8,192,1,192,3,192,3064,8,192,1,192,3,192,3067,8,192,1,192,3, + 192,3070,8,192,1,192,3,192,3073,8,192,1,192,3,192,3076,8,192,1,192, + 3,192,3079,8,192,1,192,3,192,3082,8,192,1,192,3,192,3085,8,192,1, + 192,3,192,3088,8,192,1,192,1,192,3,192,3092,8,192,3,192,3094,8,192, + 1,193,1,193,1,193,3,193,3099,8,193,1,193,1,193,1,193,3,193,3104, + 8,193,1,193,1,193,3,193,3108,8,193,1,193,1,193,3,193,3112,8,193, + 1,193,1,193,1,193,3,193,3117,8,193,1,194,1,194,1,194,3,194,3122, + 8,194,1,194,1,194,1,195,1,195,1,195,5,195,3129,8,195,10,195,12,195, + 3132,9,195,1,195,1,195,1,196,1,196,1,196,5,196,3139,8,196,10,196, + 12,196,3142,9,196,1,197,1,197,1,197,5,197,3147,8,197,10,197,12,197, + 3150,9,197,1,198,1,198,1,198,1,199,1,199,1,199,1,199,4,199,3159, + 8,199,11,199,12,199,3160,1,199,3,199,3164,8,199,1,200,1,200,5,200, + 3168,8,200,10,200,12,200,3171,9,200,1,200,1,200,5,200,3175,8,200, + 10,200,12,200,3178,9,200,1,200,1,200,5,200,3182,8,200,10,200,12, + 200,3185,9,200,1,200,1,200,5,200,3189,8,200,10,200,12,200,3192,9, + 200,1,200,1,200,1,200,1,200,3,200,3198,8,200,1,201,1,201,1,201,1, + 201,1,201,1,201,1,201,1,201,3,201,3208,8,201,3,201,3210,8,201,1, + 201,1,201,3,201,3214,8,201,5,201,3216,8,201,10,201,12,201,3219,9, + 201,1,202,1,202,1,202,1,202,3,202,3225,8,202,1,202,5,202,3228,8, + 202,10,202,12,202,3231,9,202,1,203,3,203,3234,8,203,1,203,1,203, + 3,203,3238,8,203,1,203,3,203,3241,8,203,1,203,3,203,3244,8,203,1, + 203,1,203,1,203,1,203,1,204,1,204,1,204,1,204,1,204,3,204,3255,8, + 204,1,204,1,204,3,204,3259,8,204,3,204,3261,8,204,1,204,3,204,3264, + 8,204,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,5,205, + 3275,8,205,10,205,12,205,3278,9,205,3,205,3280,8,205,1,205,3,205, + 3283,8,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,5,205, + 3293,8,205,10,205,12,205,3296,9,205,3,205,3298,8,205,1,205,1,205, + 1,205,1,205,1,205,3,205,3305,8,205,1,205,1,205,1,205,1,205,1,205, + 5,205,3312,8,205,10,205,12,205,3315,9,205,1,205,1,205,3,205,3319, + 8,205,3,205,3321,8,205,3,205,3323,8,205,1,206,1,206,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,5,207,3338, + 8,207,10,207,12,207,3341,9,207,3,207,3343,8,207,1,207,1,207,1,207, + 1,207,1,207,1,207,3,207,3351,8,207,1,207,3,207,3354,8,207,1,208, + 1,208,3,208,3358,8,208,1,208,3,208,3361,8,208,1,208,3,208,3364,8, + 208,1,208,3,208,3367,8,208,1,208,3,208,3370,8,208,1,209,1,209,1, + 209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,3382,8,209,1, + 210,1,210,1,211,1,211,1,212,1,212,3,212,3390,8,212,1,213,1,213,1, + 213,1,213,1,213,3,213,3397,8,213,1,213,3,213,3400,8,213,1,214,1, + 214,1,214,1,214,1,214,3,214,3407,8,214,1,214,3,214,3410,8,214,1, + 215,1,215,1,215,3,215,3415,8,215,1,215,1,215,1,216,1,216,1,216,3, + 216,3422,8,216,1,216,1,216,1,217,1,217,1,217,1,217,3,217,3430,8, + 217,1,217,1,217,1,218,1,218,3,218,3436,8,218,1,218,1,218,1,218,3, + 218,3441,8,218,1,218,1,218,3,218,3445,8,218,1,219,1,219,1,219,3, + 219,3450,8,219,1,220,1,220,3,220,3454,8,220,1,221,1,221,1,221,1, + 221,1,221,3,221,3461,8,221,1,221,1,221,1,221,1,221,1,221,1,221,1, + 221,1,221,1,221,1,221,5,221,3473,8,221,10,221,12,221,3476,9,221, + 3,221,3478,8,221,1,221,1,221,1,222,1,222,1,222,3,222,3485,8,222, + 1,223,1,223,1,223,1,223,5,223,3491,8,223,10,223,12,223,3494,9,223, + 1,223,1,223,1,223,1,223,1,223,5,223,3501,8,223,10,223,12,223,3504, + 9,223,3,223,3506,8,223,1,224,1,224,1,224,1,224,1,224,1,225,1,225, + 3,225,3515,8,225,1,225,1,225,1,225,1,225,1,225,5,225,3522,8,225, + 10,225,12,225,3525,9,225,3,225,3527,8,225,1,225,1,225,1,226,1,226, + 3,226,3533,8,226,1,226,3,226,3536,8,226,1,226,1,226,1,226,3,226, + 3541,8,226,1,226,3,226,3544,8,226,1,227,1,227,1,227,1,227,1,227, + 1,227,1,227,1,227,1,227,1,227,1,227,1,227,3,227,3558,8,227,1,227, + 1,227,1,227,1,227,3,227,3564,8,227,3,227,3566,8,227,1,227,1,227, + 1,227,1,227,1,228,1,228,1,228,5,228,3575,8,228,10,228,12,228,3578, + 9,228,1,229,1,229,1,229,3,229,3583,8,229,1,229,3,229,3586,8,229, + 1,229,1,229,1,229,1,229,1,229,1,229,5,229,3594,8,229,10,229,12,229, + 3597,9,229,1,229,1,229,3,229,3601,8,229,1,229,1,229,3,229,3605,8, + 229,1,230,1,230,1,231,1,231,1,232,1,232,1,232,1,232,1,232,1,232, + 1,232,1,232,1,232,1,232,1,232,3,232,3622,8,232,1,232,1,232,1,232, + 1,232,3,232,3628,8,232,3,232,3630,8,232,1,232,1,232,1,232,1,232, + 1,233,1,233,3,233,3638,8,233,1,234,1,234,1,234,5,234,3643,8,234, + 10,234,12,234,3646,9,234,1,235,1,235,1,235,1,235,1,235,1,235,1,235, + 1,235,1,235,5,235,3657,8,235,10,235,12,235,3660,9,235,1,236,1,236, + 1,236,3,236,3665,8,236,1,236,3,236,3668,8,236,1,236,3,236,3671,8, + 236,1,236,3,236,3674,8,236,1,237,1,237,1,237,1,237,1,237,1,237,1, + 237,3,237,3683,8,237,1,237,1,237,1,237,1,237,1,237,3,237,3690,8, + 237,1,238,1,238,1,238,1,238,3,238,3696,8,238,1,239,1,239,1,239,1, + 239,1,239,1,239,1,239,3,239,3705,8,239,1,240,1,240,3,240,3709,8, + 240,1,240,1,240,1,240,1,240,5,240,3715,8,240,10,240,12,240,3718, + 9,240,1,240,1,240,1,241,1,241,1,241,1,241,1,241,3,241,3727,8,241, + 1,241,1,241,1,241,1,241,1,241,1,241,5,241,3735,8,241,10,241,12,241, + 3738,9,241,1,241,1,241,3,241,3742,8,241,1,242,1,242,3,242,3746,8, + 242,1,242,1,242,5,242,3750,8,242,10,242,12,242,3753,9,242,1,242, + 1,242,3,242,3757,8,242,1,243,1,243,1,243,3,243,3762,8,243,1,244, + 1,244,1,244,1,245,1,245,3,245,3769,8,245,1,245,3,245,3772,8,245, + 1,245,1,245,1,245,3,245,3777,8,245,1,245,3,245,3780,8,245,5,245, + 3782,8,245,10,245,12,245,3785,9,245,1,246,1,246,3,246,3789,8,246, + 1,247,1,247,1,247,1,247,1,248,1,248,3,248,3797,8,248,1,248,1,248, + 1,248,3,248,3802,8,248,4,248,3804,8,248,11,248,12,248,3805,3,248, + 3808,8,248,1,249,1,249,1,249,1,249,1,249,5,249,3815,8,249,10,249, + 12,249,3818,9,249,1,250,1,250,1,250,1,250,1,251,1,251,1,251,1,251, + 1,252,1,252,1,252,1,252,1,253,1,253,1,253,1,253,1,253,1,253,5,253, + 3838,8,253,10,253,12,253,3841,9,253,1,253,1,253,1,253,1,253,1,253, + 5,253,3848,8,253,10,253,12,253,3851,9,253,3,253,3853,8,253,1,254, + 1,254,1,254,1,254,1,254,3,254,3860,8,254,1,254,3,254,3863,8,254, + 1,254,1,254,1,254,1,254,1,254,1,254,1,254,1,254,3,254,3873,8,254, + 1,254,1,254,1,254,5,254,3878,8,254,10,254,12,254,3881,9,254,3,254, + 3883,8,254,3,254,3885,8,254,1,254,1,254,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,1,254,3,254,3897,8,254,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,1,254,1,254,3,254,3908,8,254,3,254,3910,8,254, + 1,255,1,255,1,256,1,256,3,256,3916,8,256,1,257,1,257,1,257,3,257, + 3921,8,257,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,3930, + 8,258,1,258,1,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,4,259, + 3941,8,259,11,259,12,259,3942,1,259,1,259,3,259,3947,8,259,1,259, + 1,259,1,260,1,260,1,260,1,260,1,260,1,260,4,260,3957,8,260,11,260, + 12,260,3958,1,260,1,260,3,260,3963,8,260,1,260,1,260,1,261,1,261, + 1,261,1,261,1,261,3,261,3972,8,261,1,261,1,261,1,262,1,262,1,262, + 1,262,1,262,1,262,1,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263, + 1,263,3,263,3991,8,263,1,264,1,264,1,264,1,264,1,264,1,264,1,264, + 1,264,1,264,1,264,1,264,1,264,1,264,1,264,5,264,4007,8,264,10,264, + 12,264,4010,9,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264, + 1,264,3,264,4021,8,264,1,265,1,265,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,3,266,4036,8,266,1,266,1,266, + 3,266,4040,8,266,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,1,267,1,267,1,267,3,267,4054,8,267,1,268,1,268,1,268,5,268, + 4059,8,268,10,268,12,268,4062,9,268,1,269,1,269,1,269,1,269,1,269, + 1,269,1,269,1,269,1,269,1,269,1,269,3,269,4075,8,269,1,270,5,270, + 4078,8,270,10,270,12,270,4081,9,270,1,270,1,270,1,270,1,270,1,270, + 1,270,1,270,5,270,4090,8,270,10,270,12,270,4093,9,270,1,271,1,271, + 1,271,5,271,4098,8,271,10,271,12,271,4101,9,271,1,272,1,272,1,272, + 5,272,4106,8,272,10,272,12,272,4109,9,272,1,273,1,273,1,273,5,273, + 4114,8,273,10,273,12,273,4117,9,273,1,274,1,274,1,274,5,274,4122, + 8,274,10,274,12,274,4125,9,274,1,275,1,275,1,275,5,275,4130,8,275, + 10,275,12,275,4133,9,275,1,276,1,276,1,276,5,276,4138,8,276,10,276, + 12,276,4141,9,276,1,277,1,277,1,277,1,277,1,278,1,278,1,279,1,279, + 3,279,4151,8,279,1,279,1,279,3,279,4155,8,279,1,280,1,280,1,280, + 1,280,1,280,1,280,1,280,1,280,3,280,4165,8,280,3,280,4167,8,280, + 1,281,1,281,1,281,3,281,4172,8,281,1,281,1,281,1,281,1,281,1,281, + 1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281,4186,8,281,1,282, + 1,282,1,282,1,282,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283, + 4199,8,283,1,284,1,284,1,284,1,284,1,284,1,284,1,284,5,284,4208, + 8,284,10,284,12,284,4211,9,284,1,285,1,285,1,285,1,285,1,285,1,285, + 3,285,4219,8,285,1,286,5,286,4222,8,286,10,286,12,286,4225,9,286, + 1,286,1,286,1,286,3,286,4230,8,286,1,287,1,287,1,287,5,287,4235, + 8,287,10,287,12,287,4238,9,287,1,288,1,288,3,288,4242,8,288,1,289, + 1,289,1,289,1,289,1,289,5,289,4249,8,289,10,289,12,289,4252,9,289, + 1,289,1,289,1,290,1,290,1,290,3,290,4259,8,290,1,291,1,291,1,291, + 1,291,5,291,4265,8,291,10,291,12,291,4268,9,291,1,291,1,291,1,292, + 1,292,1,292,3,292,4275,8,292,1,292,1,292,1,293,1,293,1,294,1,294, + 1,295,1,295,3,295,4285,8,295,1,296,1,296,1,296,3,296,4290,8,296, + 1,297,1,297,1,298,1,298,1,299,1,299,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300, + 1,300,1,300,3,300,4349,8,300,1,301,1,301,1,301,1,301,3,301,4355, + 8,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,3,301,4364,8,301, + 3,301,4366,8,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 1,301,1,301,1,301,1,301,5,301,4380,8,301,10,301,12,301,4383,9,301, + 1,301,1,301,1,301,1,301,1,301,3,301,4390,8,301,1,301,1,301,3,301, + 4394,8,301,3,301,4396,8,301,1,301,1,301,1,301,1,301,3,301,4402,8, + 301,1,301,1,301,1,301,3,301,4407,8,301,1,301,1,301,1,301,1,301,1, + 301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 3,301,4424,8,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 1,301,1,301,1,301,1,301,1,301,3,301,4450,8,301,1,301,1,301,1,301, + 3,301,4455,8,301,3,301,4457,8,301,1,301,1,301,1,301,1,301,1,301, + 1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,3,301, + 4485,8,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 1,301,1,301,1,301,1,301,1,301,1,301,3,301,4502,8,301,1,301,1,301, + 1,301,3,301,4507,8,301,1,301,1,301,1,301,1,301,1,301,1,301,1,301, + 3,301,4516,8,301,1,302,1,302,1,303,1,303,1,303,1,303,1,303,1,303, + 1,303,3,303,4527,8,303,1,304,1,304,1,304,5,304,4532,8,304,10,304, + 12,304,4535,9,304,1,305,1,305,1,305,3,305,4540,8,305,1,306,1,306, + 1,306,3,306,4545,8,306,1,307,1,307,1,308,1,308,1,309,1,309,1,310, + 1,310,1,310,5,310,4556,8,310,10,310,12,310,4559,9,310,1,311,1,311, + 1,311,5,311,4564,8,311,10,311,12,311,4567,9,311,1,311,1,311,1,311, + 1,311,5,311,4573,8,311,10,311,12,311,4576,9,311,3,311,4578,8,311, + 1,312,1,312,1,312,1,312,1,313,1,313,1,313,1,313,3,313,4588,8,313, + 1,314,1,314,1,314,1,314,1,314,1,314,1,314,1,314,1,314,1,314,1,314, + 1,314,3,314,4602,8,314,1,315,1,315,1,315,5,315,4607,8,315,10,315, + 12,315,4610,9,315,1,315,1,753,0,316,0,2,4,6,8,10,12,14,16,18,20, + 22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64, + 66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106, + 108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138, + 140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170, + 172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202, + 204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234, + 236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266, + 268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298, + 300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330, + 332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362, + 364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394, + 396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426, + 428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458, + 460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490, + 492,494,496,498,500,502,504,506,508,510,512,514,516,518,520,522, + 524,526,528,530,532,534,536,538,540,542,544,546,548,550,552,554, + 556,558,560,562,564,566,568,570,572,574,576,578,580,582,584,586, + 588,590,592,594,596,598,600,602,604,606,608,610,612,614,616,618, + 620,622,624,626,628,630,0,64,2,0,57,57,172,172,4,0,91,91,121,121, + 226,226,325,325,1,0,395,396,2,0,50,50,346,346,2,0,34,34,282,282, + 1,0,89,90,2,0,139,139,154,154,2,0,67,67,295,295,2,0,68,68,296,296, + 1,0,155,156,2,0,190,190,361,361,2,0,114,114,307,307,2,0,58,58,101, + 101,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161,190,190,299, + 299,309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15,128,128,170, + 170,1,0,141,142,4,0,73,74,148,149,208,209,392,393,2,0,30,30,351, + 351,2,0,217,217,373,373,2,0,18,18,89,89,2,0,130,130,177,177,2,0, + 214,214,272,272,1,0,80,82,2,0,39,39,376,376,4,0,112,112,164,164, + 205,205,356,356,2,0,7,7,96,96,2,0,125,125,350,350,2,0,225,225,391, + 391,2,0,42,42,315,315,2,0,189,189,196,196,2,0,426,426,431,431,2, + 0,140,140,285,285,3,0,12,12,231,231,300,300,2,0,241,241,292,292, + 2,0,198,198,268,268,2,0,260,260,292,292,2,0,354,354,431,431,2,0, + 133,133,247,247,2,0,152,152,281,281,1,0,392,393,1,0,208,209,1,0, + 381,382,1,0,73,74,1,0,148,149,1,0,206,207,1,0,297,298,3,0,413,414, + 418,418,420,420,2,0,412,412,415,417,1,0,413,414,4,0,184,184,270, + 270,286,286,408,411,3,0,184,184,270,270,286,286,2,0,7,7,13,13,3, + 0,7,7,13,13,313,313,4,0,125,125,219,219,350,350,360,360,2,0,405, + 405,407,411,24,0,11,11,16,16,25,28,35,35,100,100,131,132,151,151, + 154,154,162,163,184,184,198,198,216,216,228,228,264,264,270,270, + 286,286,311,311,323,324,340,340,357,357,383,383,405,417,419,421, + 423,423,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30,31,33,34,37,38,40, + 44,46,47,49,50,52,53,56,57,59,59,66,66,68,68,72,77,79,79,83,85,87, + 89,91,95,97,99,103,104,106,107,109,111,114,116,118,121,127,130,137, + 138,142,142,147,150,152,152,155,156,158,160,168,170,172,177,182, + 183,185,187,189,193,195,197,199,202,204,204,206,209,211,212,214, + 215,217,218,220,220,222,223,226,227,232,233,235,236,238,240,243, + 246,252,252,254,255,257,259,261,262,265,267,271,282,284,284,287, + 288,293,298,300,303,305,310,312,312,314,317,319,325,327,328,330, + 330,332,334,339,340,342,342,344,346,349,349,352,353,355,355,357, + 357,360,364,366,368,371,373,375,375,377,382,385,385,388,394,13,0, + 16,16,26,28,63,64,71,71,100,100,131,131,145,145,151,151,162,163, + 198,198,264,264,311,311,337,337,2,0,4,4,101,101,2,0,9,9,58,58,3, + 0,14,14,144,144,369,369,1,0,106,107,1,0,94,95,5213,0,635,1,0,0,0, + 2,642,1,0,0,0,4,647,1,0,0,0,6,681,1,0,0,0,8,683,1,0,0,0,10,756,1, + 0,0,0,12,758,1,0,0,0,14,777,1,0,0,0,16,786,1,0,0,0,18,794,1,0,0, + 0,20,807,1,0,0,0,22,818,1,0,0,0,24,823,1,0,0,0,26,834,1,0,0,0,28, + 893,1,0,0,0,30,895,1,0,0,0,32,898,1,0,0,0,34,902,1,0,0,0,36,904, + 1,0,0,0,38,908,1,0,0,0,40,911,1,0,0,0,42,957,1,0,0,0,44,959,1,0, + 0,0,46,962,1,0,0,0,48,971,1,0,0,0,50,986,1,0,0,0,52,998,1,0,0,0, + 54,1018,1,0,0,0,56,1022,1,0,0,0,58,1029,1,0,0,0,60,1054,1,0,0,0, + 62,1071,1,0,0,0,64,1073,1,0,0,0,66,1075,1,0,0,0,68,1255,1,0,0,0, + 70,1257,1,0,0,0,72,1263,1,0,0,0,74,1269,1,0,0,0,76,1273,1,0,0,0, + 78,1285,1,0,0,0,80,1298,1,0,0,0,82,1317,1,0,0,0,84,1337,1,0,0,0, + 86,1342,1,0,0,0,88,1345,1,0,0,0,90,1349,1,0,0,0,92,1356,1,0,0,0, + 94,1365,1,0,0,0,96,1371,1,0,0,0,98,1373,1,0,0,0,100,1387,1,0,0,0, + 102,1409,1,0,0,0,104,1411,1,0,0,0,106,1419,1,0,0,0,108,1426,1,0, + 0,0,110,1428,1,0,0,0,112,1442,1,0,0,0,114,1449,1,0,0,0,116,1451, + 1,0,0,0,118,1464,1,0,0,0,120,1466,1,0,0,0,122,1488,1,0,0,0,124,1498, + 1,0,0,0,126,1501,1,0,0,0,128,1512,1,0,0,0,130,1520,1,0,0,0,132,1563, + 1,0,0,0,134,1572,1,0,0,0,136,1600,1,0,0,0,138,1613,1,0,0,0,140,1615, + 1,0,0,0,142,1621,1,0,0,0,144,1624,1,0,0,0,146,1630,1,0,0,0,148,1636, + 1,0,0,0,150,1646,1,0,0,0,152,1680,1,0,0,0,154,1693,1,0,0,0,156,1698, + 1,0,0,0,158,1709,1,0,0,0,160,1726,1,0,0,0,162,1728,1,0,0,0,164,1733, + 1,0,0,0,166,1740,1,0,0,0,168,1742,1,0,0,0,170,1745,1,0,0,0,172,1748, + 1,0,0,0,174,1762,1,0,0,0,176,1770,1,0,0,0,178,1791,1,0,0,0,180,1793, + 1,0,0,0,182,1810,1,0,0,0,184,1824,1,0,0,0,186,1826,1,0,0,0,188,1835, + 1,0,0,0,190,1853,1,0,0,0,192,1856,1,0,0,0,194,1869,1,0,0,0,196,1871, + 1,0,0,0,198,1875,1,0,0,0,200,1883,1,0,0,0,202,1887,1,0,0,0,204,1896, + 1,0,0,0,206,1902,1,0,0,0,208,1908,1,0,0,0,210,1913,1,0,0,0,212,1959, + 1,0,0,0,214,1961,1,0,0,0,216,1969,1,0,0,0,218,1977,1,0,0,0,220,1985, + 1,0,0,0,222,1996,1,0,0,0,224,1998,1,0,0,0,226,2003,1,0,0,0,228,2005, + 1,0,0,0,230,2007,1,0,0,0,232,2020,1,0,0,0,234,2028,1,0,0,0,236,2037, + 1,0,0,0,238,2041,1,0,0,0,240,2046,1,0,0,0,242,2050,1,0,0,0,244,2056, + 1,0,0,0,246,2064,1,0,0,0,248,2066,1,0,0,0,250,2069,1,0,0,0,252,2076, + 1,0,0,0,254,2087,1,0,0,0,256,2100,1,0,0,0,258,2102,1,0,0,0,260,2110, + 1,0,0,0,262,2114,1,0,0,0,264,2122,1,0,0,0,266,2124,1,0,0,0,268,2127, + 1,0,0,0,270,2134,1,0,0,0,272,2142,1,0,0,0,274,2149,1,0,0,0,276,2157, + 1,0,0,0,278,2165,1,0,0,0,280,2169,1,0,0,0,282,2171,1,0,0,0,284,2182, + 1,0,0,0,286,2186,1,0,0,0,288,2198,1,0,0,0,290,2214,1,0,0,0,292,2219, + 1,0,0,0,294,2221,1,0,0,0,296,2225,1,0,0,0,298,2232,1,0,0,0,300,2245, + 1,0,0,0,302,2284,1,0,0,0,304,2286,1,0,0,0,306,2291,1,0,0,0,308,2296, + 1,0,0,0,310,2303,1,0,0,0,312,2308,1,0,0,0,314,2313,1,0,0,0,316,2319, + 1,0,0,0,318,2321,1,0,0,0,320,2330,1,0,0,0,322,2342,1,0,0,0,324,2422, + 1,0,0,0,326,2428,1,0,0,0,328,2454,1,0,0,0,330,2456,1,0,0,0,332,2478, + 1,0,0,0,334,2483,1,0,0,0,336,2487,1,0,0,0,338,2519,1,0,0,0,340,2521, + 1,0,0,0,342,2532,1,0,0,0,344,2538,1,0,0,0,346,2540,1,0,0,0,348,2572, + 1,0,0,0,350,2579,1,0,0,0,352,2585,1,0,0,0,354,2591,1,0,0,0,356,2606, + 1,0,0,0,358,2616,1,0,0,0,360,2624,1,0,0,0,362,2746,1,0,0,0,364,2881, + 1,0,0,0,366,2909,1,0,0,0,368,2926,1,0,0,0,370,2943,1,0,0,0,372,2945, + 1,0,0,0,374,2948,1,0,0,0,376,2974,1,0,0,0,378,2979,1,0,0,0,380,3006, + 1,0,0,0,382,3017,1,0,0,0,384,3019,1,0,0,0,386,3095,1,0,0,0,388,3118, + 1,0,0,0,390,3130,1,0,0,0,392,3135,1,0,0,0,394,3143,1,0,0,0,396,3151, + 1,0,0,0,398,3163,1,0,0,0,400,3197,1,0,0,0,402,3199,1,0,0,0,404,3224, + 1,0,0,0,406,3233,1,0,0,0,408,3263,1,0,0,0,410,3322,1,0,0,0,412,3324, + 1,0,0,0,414,3353,1,0,0,0,416,3355,1,0,0,0,418,3371,1,0,0,0,420,3383, + 1,0,0,0,422,3385,1,0,0,0,424,3389,1,0,0,0,426,3399,1,0,0,0,428,3409, + 1,0,0,0,430,3414,1,0,0,0,432,3421,1,0,0,0,434,3425,1,0,0,0,436,3444, + 1,0,0,0,438,3449,1,0,0,0,440,3451,1,0,0,0,442,3455,1,0,0,0,444,3481, + 1,0,0,0,446,3486,1,0,0,0,448,3507,1,0,0,0,450,3512,1,0,0,0,452,3543, + 1,0,0,0,454,3545,1,0,0,0,456,3571,1,0,0,0,458,3604,1,0,0,0,460,3606, + 1,0,0,0,462,3608,1,0,0,0,464,3610,1,0,0,0,466,3637,1,0,0,0,468,3639, + 1,0,0,0,470,3647,1,0,0,0,472,3673,1,0,0,0,474,3675,1,0,0,0,476,3695, + 1,0,0,0,478,3697,1,0,0,0,480,3708,1,0,0,0,482,3721,1,0,0,0,484,3756, + 1,0,0,0,486,3758,1,0,0,0,488,3763,1,0,0,0,490,3766,1,0,0,0,492,3788, + 1,0,0,0,494,3790,1,0,0,0,496,3796,1,0,0,0,498,3809,1,0,0,0,500,3819, + 1,0,0,0,502,3823,1,0,0,0,504,3827,1,0,0,0,506,3831,1,0,0,0,508,3909, + 1,0,0,0,510,3911,1,0,0,0,512,3915,1,0,0,0,514,3920,1,0,0,0,516,3922, + 1,0,0,0,518,3933,1,0,0,0,520,3950,1,0,0,0,522,3966,1,0,0,0,524,3975, + 1,0,0,0,526,3990,1,0,0,0,528,4020,1,0,0,0,530,4022,1,0,0,0,532,4039, + 1,0,0,0,534,4053,1,0,0,0,536,4055,1,0,0,0,538,4074,1,0,0,0,540,4079, + 1,0,0,0,542,4094,1,0,0,0,544,4102,1,0,0,0,546,4110,1,0,0,0,548,4118, + 1,0,0,0,550,4126,1,0,0,0,552,4134,1,0,0,0,554,4142,1,0,0,0,556,4146, + 1,0,0,0,558,4154,1,0,0,0,560,4166,1,0,0,0,562,4185,1,0,0,0,564,4187, + 1,0,0,0,566,4198,1,0,0,0,568,4200,1,0,0,0,570,4218,1,0,0,0,572,4223, + 1,0,0,0,574,4231,1,0,0,0,576,4239,1,0,0,0,578,4243,1,0,0,0,580,4255, + 1,0,0,0,582,4260,1,0,0,0,584,4271,1,0,0,0,586,4278,1,0,0,0,588,4280, + 1,0,0,0,590,4284,1,0,0,0,592,4286,1,0,0,0,594,4291,1,0,0,0,596,4293, + 1,0,0,0,598,4295,1,0,0,0,600,4348,1,0,0,0,602,4515,1,0,0,0,604,4517, + 1,0,0,0,606,4526,1,0,0,0,608,4528,1,0,0,0,610,4539,1,0,0,0,612,4541, + 1,0,0,0,614,4546,1,0,0,0,616,4548,1,0,0,0,618,4550,1,0,0,0,620,4552, + 1,0,0,0,622,4577,1,0,0,0,624,4579,1,0,0,0,626,4587,1,0,0,0,628,4601, + 1,0,0,0,630,4603,1,0,0,0,632,634,3,2,1,0,633,632,1,0,0,0,634,637, + 1,0,0,0,635,633,1,0,0,0,635,636,1,0,0,0,636,638,1,0,0,0,637,635, + 1,0,0,0,638,639,5,0,0,1,639,1,1,0,0,0,640,643,3,4,2,0,641,643,3, + 10,5,0,642,640,1,0,0,0,642,641,1,0,0,0,643,645,1,0,0,0,644,646,5, + 398,0,0,645,644,1,0,0,0,645,646,1,0,0,0,646,3,1,0,0,0,647,657,5, + 119,0,0,648,650,3,6,3,0,649,648,1,0,0,0,650,653,1,0,0,0,651,649, + 1,0,0,0,651,652,1,0,0,0,652,654,1,0,0,0,653,651,1,0,0,0,654,658, + 3,10,5,0,655,656,5,284,0,0,656,658,3,314,157,0,657,651,1,0,0,0,657, + 655,1,0,0,0,658,5,1,0,0,0,659,682,5,122,0,0,660,682,5,138,0,0,661, + 682,5,88,0,0,662,664,5,37,0,0,663,665,7,0,0,0,664,663,1,0,0,0,664, + 665,1,0,0,0,665,682,1,0,0,0,666,682,5,192,0,0,667,682,5,21,0,0,668, + 682,5,10,0,0,669,682,5,275,0,0,670,682,5,191,0,0,671,682,5,19,0, + 0,672,674,5,377,0,0,673,675,5,225,0,0,674,673,1,0,0,0,674,675,1, + 0,0,0,675,677,1,0,0,0,676,678,3,8,4,0,677,676,1,0,0,0,677,678,1, + 0,0,0,678,682,1,0,0,0,679,682,5,79,0,0,680,682,5,78,0,0,681,659, + 1,0,0,0,681,660,1,0,0,0,681,661,1,0,0,0,681,662,1,0,0,0,681,666, + 1,0,0,0,681,667,1,0,0,0,681,668,1,0,0,0,681,669,1,0,0,0,681,670, + 1,0,0,0,681,671,1,0,0,0,681,672,1,0,0,0,681,679,1,0,0,0,681,680, + 1,0,0,0,682,7,1,0,0,0,683,684,7,1,0,0,684,9,1,0,0,0,685,757,3,314, + 157,0,686,757,3,12,6,0,687,757,3,16,8,0,688,757,3,18,9,0,689,757, + 3,20,10,0,690,757,3,24,12,0,691,692,5,277,0,0,692,693,5,320,0,0, + 693,696,3,420,210,0,694,695,5,387,0,0,695,697,3,196,98,0,696,694, + 1,0,0,0,696,697,1,0,0,0,697,757,1,0,0,0,698,757,3,28,14,0,699,700, + 5,86,0,0,700,701,5,139,0,0,701,703,3,426,213,0,702,704,3,444,222, + 0,703,702,1,0,0,0,703,704,1,0,0,0,704,757,1,0,0,0,705,706,5,365, + 0,0,706,707,3,426,213,0,707,709,3,346,173,0,708,710,3,444,222,0, + 709,708,1,0,0,0,709,710,1,0,0,0,710,757,1,0,0,0,711,757,3,348,174, + 0,712,714,5,203,0,0,713,715,5,436,0,0,714,713,1,0,0,0,714,715,1, + 0,0,0,715,716,1,0,0,0,716,717,5,166,0,0,717,722,3,426,213,0,718, + 720,5,17,0,0,719,718,1,0,0,0,719,720,1,0,0,0,720,721,1,0,0,0,721, + 723,3,590,295,0,722,719,1,0,0,0,722,723,1,0,0,0,723,724,1,0,0,0, + 724,725,5,370,0,0,725,726,3,404,202,0,726,727,5,224,0,0,727,728, + 3,536,268,0,728,729,3,352,176,0,729,757,1,0,0,0,730,731,5,249,0, + 0,731,732,3,590,295,0,732,733,5,139,0,0,733,734,3,314,157,0,734, + 757,1,0,0,0,735,736,5,115,0,0,736,737,3,590,295,0,737,738,5,370, + 0,0,738,739,3,262,131,0,739,757,1,0,0,0,740,741,5,304,0,0,741,746, + 3,600,300,0,742,743,7,2,0,0,743,745,3,600,300,0,744,742,1,0,0,0, + 745,748,1,0,0,0,746,744,1,0,0,0,746,747,1,0,0,0,747,749,1,0,0,0, + 748,746,1,0,0,0,749,753,5,405,0,0,750,752,9,0,0,0,751,750,1,0,0, + 0,752,755,1,0,0,0,753,754,1,0,0,0,753,751,1,0,0,0,754,757,1,0,0, + 0,755,753,1,0,0,0,756,685,1,0,0,0,756,686,1,0,0,0,756,687,1,0,0, + 0,756,688,1,0,0,0,756,689,1,0,0,0,756,690,1,0,0,0,756,691,1,0,0, + 0,756,698,1,0,0,0,756,699,1,0,0,0,756,705,1,0,0,0,756,711,1,0,0, + 0,756,712,1,0,0,0,756,730,1,0,0,0,756,735,1,0,0,0,756,740,1,0,0, + 0,757,11,1,0,0,0,758,759,5,187,0,0,759,761,5,66,0,0,760,762,5,188, + 0,0,761,760,1,0,0,0,761,762,1,0,0,0,762,763,1,0,0,0,763,764,5,158, + 0,0,764,766,5,426,0,0,765,767,5,235,0,0,766,765,1,0,0,0,766,767, + 1,0,0,0,767,768,1,0,0,0,768,769,5,166,0,0,769,770,5,329,0,0,770, + 775,3,576,288,0,771,772,5,160,0,0,772,773,5,426,0,0,773,774,5,301, + 0,0,774,776,5,426,0,0,775,771,1,0,0,0,775,776,1,0,0,0,776,13,1,0, + 0,0,777,779,5,134,0,0,778,780,5,204,0,0,779,778,1,0,0,0,779,780, + 1,0,0,0,780,781,1,0,0,0,781,782,5,279,0,0,782,783,5,399,0,0,783, + 784,5,426,0,0,784,785,5,400,0,0,785,15,1,0,0,0,786,787,5,120,0,0, + 787,788,5,329,0,0,788,789,3,576,288,0,789,790,5,341,0,0,790,792, + 5,426,0,0,791,793,3,14,7,0,792,791,1,0,0,0,792,793,1,0,0,0,793,17, + 1,0,0,0,794,800,5,153,0,0,795,797,5,123,0,0,796,795,1,0,0,0,796, + 797,1,0,0,0,797,798,1,0,0,0,798,799,5,329,0,0,799,801,3,576,288, + 0,800,796,1,0,0,0,800,801,1,0,0,0,801,802,1,0,0,0,802,803,5,139, + 0,0,803,805,5,426,0,0,804,806,3,372,186,0,805,804,1,0,0,0,805,806, + 1,0,0,0,806,19,1,0,0,0,807,808,5,277,0,0,808,809,5,103,0,0,809,812, + 3,22,11,0,810,811,5,278,0,0,811,813,3,22,11,0,812,810,1,0,0,0,812, + 813,1,0,0,0,813,816,1,0,0,0,814,815,5,387,0,0,815,817,3,196,98,0, + 816,814,1,0,0,0,816,817,1,0,0,0,817,21,1,0,0,0,818,821,3,420,210, + 0,819,820,5,395,0,0,820,822,3,26,13,0,821,819,1,0,0,0,821,822,1, + 0,0,0,822,23,1,0,0,0,823,824,5,277,0,0,824,825,5,187,0,0,825,828, + 3,22,11,0,826,827,5,166,0,0,827,829,3,420,210,0,828,826,1,0,0,0, + 828,829,1,0,0,0,829,832,1,0,0,0,830,831,5,387,0,0,831,833,3,196, + 98,0,832,830,1,0,0,0,832,833,1,0,0,0,833,25,1,0,0,0,834,837,5,426, + 0,0,835,836,5,395,0,0,836,838,5,426,0,0,837,835,1,0,0,0,837,838, + 1,0,0,0,838,27,1,0,0,0,839,894,3,42,21,0,840,894,3,44,22,0,841,894, + 3,46,23,0,842,894,3,384,192,0,843,894,3,50,25,0,844,894,3,48,24, + 0,845,894,3,360,180,0,846,894,3,58,29,0,847,894,3,66,33,0,848,894, + 3,116,58,0,849,894,3,134,67,0,850,894,3,150,75,0,851,894,3,152,76, + 0,852,894,3,156,78,0,853,894,3,154,77,0,854,894,3,148,74,0,855,894, + 3,120,60,0,856,894,3,126,63,0,857,894,3,122,61,0,858,894,3,124,62, + 0,859,894,3,128,64,0,860,894,3,130,65,0,861,894,3,132,66,0,862,894, + 3,60,30,0,863,894,3,70,35,0,864,894,3,72,36,0,865,894,3,74,37,0, + 866,894,3,76,38,0,867,894,3,78,39,0,868,894,3,92,46,0,869,894,3, + 84,42,0,870,894,3,94,47,0,871,894,3,86,43,0,872,894,3,80,40,0,873, + 894,3,82,41,0,874,894,3,90,45,0,875,894,3,88,44,0,876,877,5,1,0, + 0,877,879,7,3,0,0,878,880,5,431,0,0,879,878,1,0,0,0,880,881,1,0, + 0,0,881,879,1,0,0,0,881,882,1,0,0,0,882,894,1,0,0,0,883,884,5,176, + 0,0,884,886,5,258,0,0,885,887,5,426,0,0,886,885,1,0,0,0,887,888, + 1,0,0,0,888,886,1,0,0,0,888,889,1,0,0,0,889,894,1,0,0,0,890,894, + 3,602,301,0,891,894,3,386,193,0,892,894,3,388,194,0,893,839,1,0, + 0,0,893,840,1,0,0,0,893,841,1,0,0,0,893,842,1,0,0,0,893,843,1,0, + 0,0,893,844,1,0,0,0,893,845,1,0,0,0,893,846,1,0,0,0,893,847,1,0, + 0,0,893,848,1,0,0,0,893,849,1,0,0,0,893,850,1,0,0,0,893,851,1,0, + 0,0,893,852,1,0,0,0,893,853,1,0,0,0,893,854,1,0,0,0,893,855,1,0, + 0,0,893,856,1,0,0,0,893,857,1,0,0,0,893,858,1,0,0,0,893,859,1,0, + 0,0,893,860,1,0,0,0,893,861,1,0,0,0,893,862,1,0,0,0,893,863,1,0, + 0,0,893,864,1,0,0,0,893,865,1,0,0,0,893,866,1,0,0,0,893,867,1,0, + 0,0,893,868,1,0,0,0,893,869,1,0,0,0,893,870,1,0,0,0,893,871,1,0, + 0,0,893,872,1,0,0,0,893,873,1,0,0,0,893,874,1,0,0,0,893,875,1,0, + 0,0,893,876,1,0,0,0,893,883,1,0,0,0,893,890,1,0,0,0,893,891,1,0, + 0,0,893,892,1,0,0,0,894,29,1,0,0,0,895,896,5,151,0,0,896,897,5,117, + 0,0,897,31,1,0,0,0,898,899,5,151,0,0,899,900,5,216,0,0,900,901,5, + 117,0,0,901,33,1,0,0,0,902,903,7,4,0,0,903,35,1,0,0,0,904,905,5, + 321,0,0,905,906,5,17,0,0,906,907,5,92,0,0,907,37,1,0,0,0,908,909, + 3,614,307,0,909,910,5,284,0,0,910,39,1,0,0,0,911,912,3,616,308,0, + 912,913,5,284,0,0,913,41,1,0,0,0,914,916,5,58,0,0,915,917,5,273, + 0,0,916,915,1,0,0,0,916,917,1,0,0,0,917,918,1,0,0,0,918,920,3,64, + 32,0,919,921,3,32,16,0,920,919,1,0,0,0,920,921,1,0,0,0,921,922,1, + 0,0,0,922,925,3,422,211,0,923,924,5,47,0,0,924,926,5,426,0,0,925, + 923,1,0,0,0,925,926,1,0,0,0,926,928,1,0,0,0,927,929,3,372,186,0, + 928,927,1,0,0,0,928,929,1,0,0,0,929,932,1,0,0,0,930,931,5,196,0, + 0,931,933,5,426,0,0,932,930,1,0,0,0,932,933,1,0,0,0,933,937,1,0, + 0,0,934,935,5,387,0,0,935,936,5,76,0,0,936,938,3,196,98,0,937,934, + 1,0,0,0,937,938,1,0,0,0,938,958,1,0,0,0,939,940,5,58,0,0,940,941, + 5,273,0,0,941,943,3,64,32,0,942,944,3,32,16,0,943,942,1,0,0,0,943, + 944,1,0,0,0,944,945,1,0,0,0,945,948,3,422,211,0,946,947,5,47,0,0, + 947,949,5,426,0,0,948,946,1,0,0,0,948,949,1,0,0,0,949,950,1,0,0, + 0,950,951,5,370,0,0,951,955,3,420,210,0,952,953,5,387,0,0,953,954, + 5,76,0,0,954,956,3,196,98,0,955,952,1,0,0,0,955,956,1,0,0,0,956, + 958,1,0,0,0,957,914,1,0,0,0,957,939,1,0,0,0,958,43,1,0,0,0,959,960, + 5,368,0,0,960,961,3,420,210,0,961,45,1,0,0,0,962,963,5,101,0,0,963, + 965,3,64,32,0,964,966,3,30,15,0,965,964,1,0,0,0,965,966,1,0,0,0, + 966,967,1,0,0,0,967,969,3,420,210,0,968,970,3,34,17,0,969,968,1, + 0,0,0,969,970,1,0,0,0,970,47,1,0,0,0,971,973,5,351,0,0,972,974,5, + 329,0,0,973,972,1,0,0,0,973,974,1,0,0,0,974,975,1,0,0,0,975,981, + 3,576,288,0,976,977,5,46,0,0,977,978,5,399,0,0,978,979,3,220,110, + 0,979,980,5,400,0,0,980,982,1,0,0,0,981,976,1,0,0,0,981,982,1,0, + 0,0,982,984,1,0,0,0,983,985,5,135,0,0,984,983,1,0,0,0,984,985,1, + 0,0,0,985,49,1,0,0,0,986,987,5,101,0,0,987,989,5,329,0,0,988,990, + 3,30,15,0,989,988,1,0,0,0,989,990,1,0,0,0,990,991,1,0,0,0,991,993, + 3,426,213,0,992,994,5,255,0,0,993,992,1,0,0,0,993,994,1,0,0,0,994, + 996,1,0,0,0,995,997,3,14,7,0,996,995,1,0,0,0,996,997,1,0,0,0,997, + 51,1,0,0,0,998,1001,3,590,295,0,999,1000,5,395,0,0,1000,1002,3,590, + 295,0,1001,999,1,0,0,0,1001,1002,1,0,0,0,1002,1016,1,0,0,0,1003, + 1013,3,590,295,0,1004,1009,5,395,0,0,1005,1010,5,104,0,0,1006,1010, + 5,175,0,0,1007,1010,5,375,0,0,1008,1010,3,590,295,0,1009,1005,1, + 0,0,0,1009,1006,1,0,0,0,1009,1007,1,0,0,0,1009,1008,1,0,0,0,1010, + 1012,1,0,0,0,1011,1004,1,0,0,0,1012,1015,1,0,0,0,1013,1011,1,0,0, + 0,1013,1014,1,0,0,0,1014,1017,1,0,0,0,1015,1013,1,0,0,0,1016,1003, + 1,0,0,0,1016,1017,1,0,0,0,1017,53,1,0,0,0,1018,1020,3,52,26,0,1019, + 1021,3,578,289,0,1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,55,1,0, + 0,0,1022,1024,3,424,212,0,1023,1025,3,578,289,0,1024,1023,1,0,0, + 0,1024,1025,1,0,0,0,1025,1027,1,0,0,0,1026,1028,3,230,115,0,1027, + 1026,1,0,0,0,1027,1028,1,0,0,0,1028,57,1,0,0,0,1029,1052,7,5,0,0, + 1030,1032,3,64,32,0,1031,1033,5,122,0,0,1032,1031,1,0,0,0,1032,1033, + 1,0,0,0,1033,1034,1,0,0,0,1034,1035,3,420,210,0,1035,1053,1,0,0, + 0,1036,1038,5,69,0,0,1037,1039,5,122,0,0,1038,1037,1,0,0,0,1038, + 1039,1,0,0,0,1039,1040,1,0,0,0,1040,1053,3,420,210,0,1041,1043,5, + 141,0,0,1042,1044,5,122,0,0,1043,1042,1,0,0,0,1043,1044,1,0,0,0, + 1044,1045,1,0,0,0,1045,1053,3,512,256,0,1046,1049,5,138,0,0,1047, + 1049,5,122,0,0,1048,1046,1,0,0,0,1048,1047,1,0,0,0,1049,1050,1,0, + 0,0,1050,1053,3,56,28,0,1051,1053,3,56,28,0,1052,1030,1,0,0,0,1052, + 1036,1,0,0,0,1052,1041,1,0,0,0,1052,1048,1,0,0,0,1052,1051,1,0,0, + 0,1053,59,1,0,0,0,1054,1055,5,10,0,0,1055,1056,5,329,0,0,1056,1069, + 3,576,288,0,1057,1058,5,52,0,0,1058,1065,5,319,0,0,1059,1066,5,215, + 0,0,1060,1061,5,134,0,0,1061,1063,5,46,0,0,1062,1064,3,220,110,0, + 1063,1062,1,0,0,0,1063,1064,1,0,0,0,1064,1066,1,0,0,0,1065,1059, + 1,0,0,0,1065,1060,1,0,0,0,1065,1066,1,0,0,0,1066,1070,1,0,0,0,1067, + 1068,5,33,0,0,1068,1070,5,204,0,0,1069,1057,1,0,0,0,1069,1067,1, + 0,0,0,1070,61,1,0,0,0,1071,1072,7,6,0,0,1072,63,1,0,0,0,1073,1074, + 7,7,0,0,1074,65,1,0,0,0,1075,1245,5,308,0,0,1076,1079,7,8,0,0,1077, + 1078,5,184,0,0,1078,1080,3,166,83,0,1079,1077,1,0,0,0,1079,1080, + 1,0,0,0,1080,1246,1,0,0,0,1081,1083,5,122,0,0,1082,1081,1,0,0,0, + 1082,1083,1,0,0,0,1083,1084,1,0,0,0,1084,1088,5,330,0,0,1085,1086, + 3,62,31,0,1086,1087,3,420,210,0,1087,1089,1,0,0,0,1088,1085,1,0, + 0,0,1088,1089,1,0,0,0,1089,1091,1,0,0,0,1090,1092,3,68,34,0,1091, + 1090,1,0,0,0,1091,1092,1,0,0,0,1092,1246,1,0,0,0,1093,1097,5,379, + 0,0,1094,1095,3,62,31,0,1095,1096,3,420,210,0,1096,1098,1,0,0,0, + 1097,1094,1,0,0,0,1097,1098,1,0,0,0,1098,1102,1,0,0,0,1099,1100, + 5,184,0,0,1100,1103,3,166,83,0,1101,1103,3,166,83,0,1102,1099,1, + 0,0,0,1102,1101,1,0,0,0,1102,1103,1,0,0,0,1103,1246,1,0,0,0,1104, + 1105,5,202,0,0,1105,1109,5,379,0,0,1106,1107,3,62,31,0,1107,1108, + 3,420,210,0,1108,1110,1,0,0,0,1109,1106,1,0,0,0,1109,1110,1,0,0, + 0,1110,1114,1,0,0,0,1111,1112,5,184,0,0,1112,1115,3,166,83,0,1113, + 1115,3,166,83,0,1114,1111,1,0,0,0,1114,1113,1,0,0,0,1114,1115,1, + 0,0,0,1115,1246,1,0,0,0,1116,1118,5,315,0,0,1117,1116,1,0,0,0,1117, + 1118,1,0,0,0,1118,1119,1,0,0,0,1119,1120,5,46,0,0,1120,1121,3,62, + 31,0,1121,1125,3,424,212,0,1122,1123,3,62,31,0,1123,1124,3,420,210, + 0,1124,1126,1,0,0,0,1125,1122,1,0,0,0,1125,1126,1,0,0,0,1126,1130, + 1,0,0,0,1127,1128,5,184,0,0,1128,1131,3,166,83,0,1129,1131,3,166, + 83,0,1130,1127,1,0,0,0,1130,1129,1,0,0,0,1130,1131,1,0,0,0,1131, + 1246,1,0,0,0,1132,1135,5,142,0,0,1133,1134,5,184,0,0,1134,1136,3, + 512,256,0,1135,1133,1,0,0,0,1135,1136,1,0,0,0,1136,1246,1,0,0,0, + 1137,1138,5,239,0,0,1138,1140,3,424,212,0,1139,1141,3,578,289,0, + 1140,1139,1,0,0,0,1140,1141,1,0,0,0,1141,1143,1,0,0,0,1142,1144, + 3,444,222,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144,1146,1,0,0, + 0,1145,1147,3,498,249,0,1146,1145,1,0,0,0,1146,1147,1,0,0,0,1147, + 1149,1,0,0,0,1148,1150,3,340,170,0,1149,1148,1,0,0,0,1149,1150,1, + 0,0,0,1150,1246,1,0,0,0,1151,1157,5,58,0,0,1152,1153,3,64,32,0,1153, + 1154,3,420,210,0,1154,1158,1,0,0,0,1155,1156,5,329,0,0,1156,1158, + 3,426,213,0,1157,1152,1,0,0,0,1157,1155,1,0,0,0,1158,1246,1,0,0, + 0,1159,1160,5,329,0,0,1160,1164,5,122,0,0,1161,1162,3,62,31,0,1162, + 1163,3,420,210,0,1163,1165,1,0,0,0,1164,1161,1,0,0,0,1164,1165,1, + 0,0,0,1165,1166,1,0,0,0,1166,1167,5,184,0,0,1167,1169,3,166,83,0, + 1168,1170,3,578,289,0,1169,1168,1,0,0,0,1169,1170,1,0,0,0,1170,1246, + 1,0,0,0,1171,1172,5,332,0,0,1172,1176,3,426,213,0,1173,1174,5,399, + 0,0,1174,1175,5,426,0,0,1175,1177,5,400,0,0,1176,1173,1,0,0,0,1176, + 1177,1,0,0,0,1177,1246,1,0,0,0,1178,1190,5,191,0,0,1179,1180,3,64, + 32,0,1180,1182,3,420,210,0,1181,1183,5,122,0,0,1182,1181,1,0,0,0, + 1182,1183,1,0,0,0,1183,1191,1,0,0,0,1184,1186,3,54,27,0,1185,1184, + 1,0,0,0,1185,1186,1,0,0,0,1186,1188,1,0,0,0,1187,1189,5,122,0,0, + 1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1191,1,0,0,0,1190,1179, + 1,0,0,0,1190,1185,1,0,0,0,1191,1246,1,0,0,0,1192,1222,5,50,0,0,1193, + 1194,5,51,0,0,1194,1195,5,405,0,0,1195,1223,5,431,0,0,1196,1197, + 3,64,32,0,1197,1198,3,420,210,0,1198,1203,1,0,0,0,1199,1201,3,54, + 27,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201,1203,1,0,0,0,1202, + 1196,1,0,0,0,1202,1200,1,0,0,0,1203,1206,1,0,0,0,1204,1205,5,246, + 0,0,1205,1207,5,426,0,0,1206,1204,1,0,0,0,1206,1207,1,0,0,0,1207, + 1210,1,0,0,0,1208,1209,5,352,0,0,1209,1211,5,426,0,0,1210,1208,1, + 0,0,0,1210,1211,1,0,0,0,1211,1214,1,0,0,0,1212,1213,5,320,0,0,1213, + 1215,5,426,0,0,1214,1212,1,0,0,0,1214,1215,1,0,0,0,1215,1217,1,0, + 0,0,1216,1218,3,498,249,0,1217,1216,1,0,0,0,1217,1218,1,0,0,0,1218, + 1220,1,0,0,0,1219,1221,3,340,170,0,1220,1219,1,0,0,0,1220,1221,1, + 0,0,0,1221,1223,1,0,0,0,1222,1193,1,0,0,0,1222,1202,1,0,0,0,1223, + 1246,1,0,0,0,1224,1246,5,346,0,0,1225,1226,5,54,0,0,1226,1246,5, + 426,0,0,1227,1231,5,280,0,0,1228,1229,5,243,0,0,1229,1232,3,590, + 295,0,1230,1232,5,244,0,0,1231,1228,1,0,0,0,1231,1230,1,0,0,0,1232, + 1246,1,0,0,0,1233,1246,5,70,0,0,1234,1236,5,138,0,0,1235,1234,1, + 0,0,0,1235,1236,1,0,0,0,1236,1237,1,0,0,0,1237,1238,7,9,0,0,1238, + 1239,5,224,0,0,1239,1243,3,426,213,0,1240,1241,3,62,31,0,1241,1242, + 3,420,210,0,1242,1244,1,0,0,0,1243,1240,1,0,0,0,1243,1244,1,0,0, + 0,1244,1246,1,0,0,0,1245,1076,1,0,0,0,1245,1082,1,0,0,0,1245,1093, + 1,0,0,0,1245,1104,1,0,0,0,1245,1117,1,0,0,0,1245,1132,1,0,0,0,1245, + 1137,1,0,0,0,1245,1151,1,0,0,0,1245,1159,1,0,0,0,1245,1171,1,0,0, + 0,1245,1178,1,0,0,0,1245,1192,1,0,0,0,1245,1224,1,0,0,0,1245,1225, + 1,0,0,0,1245,1227,1,0,0,0,1245,1233,1,0,0,0,1245,1235,1,0,0,0,1246, + 67,1,0,0,0,1247,1248,5,384,0,0,1248,1249,3,590,295,0,1249,1250,5, + 405,0,0,1250,1251,5,426,0,0,1251,1256,1,0,0,0,1252,1253,5,184,0, + 0,1253,1256,3,166,83,0,1254,1256,3,166,83,0,1255,1247,1,0,0,0,1255, + 1252,1,0,0,0,1255,1254,1,0,0,0,1256,69,1,0,0,0,1257,1258,7,10,0, + 0,1258,1259,5,329,0,0,1259,1261,3,576,288,0,1260,1262,7,11,0,0,1261, + 1260,1,0,0,0,1261,1262,1,0,0,0,1262,71,1,0,0,0,1263,1264,7,10,0, + 0,1264,1265,3,64,32,0,1265,1267,3,420,210,0,1266,1268,7,11,0,0,1267, + 1266,1,0,0,0,1267,1268,1,0,0,0,1268,73,1,0,0,0,1269,1270,7,12,0, + 0,1270,1271,5,287,0,0,1271,1272,3,590,295,0,1272,75,1,0,0,0,1273, + 1274,5,143,0,0,1274,1276,3,104,52,0,1275,1277,3,98,49,0,1276,1275, + 1,0,0,0,1276,1277,1,0,0,0,1277,1278,1,0,0,0,1278,1279,5,341,0,0, + 1279,1283,3,110,55,0,1280,1281,5,387,0,0,1281,1282,5,143,0,0,1282, + 1284,5,227,0,0,1283,1280,1,0,0,0,1283,1284,1,0,0,0,1284,77,1,0,0, + 0,1285,1289,5,283,0,0,1286,1287,5,143,0,0,1287,1288,5,227,0,0,1288, + 1290,5,134,0,0,1289,1286,1,0,0,0,1289,1290,1,0,0,0,1290,1291,1,0, + 0,0,1291,1293,3,104,52,0,1292,1294,3,98,49,0,1293,1292,1,0,0,0,1293, + 1294,1,0,0,0,1294,1295,1,0,0,0,1295,1296,5,139,0,0,1296,1297,3,110, + 55,0,1297,79,1,0,0,0,1298,1300,5,143,0,0,1299,1301,5,287,0,0,1300, + 1299,1,0,0,0,1300,1301,1,0,0,0,1301,1302,1,0,0,0,1302,1307,3,590, + 295,0,1303,1304,5,397,0,0,1304,1306,3,590,295,0,1305,1303,1,0,0, + 0,1306,1309,1,0,0,0,1307,1305,1,0,0,0,1307,1308,1,0,0,0,1308,1310, + 1,0,0,0,1309,1307,1,0,0,0,1310,1311,5,341,0,0,1311,1315,3,110,55, + 0,1312,1313,5,387,0,0,1313,1314,5,5,0,0,1314,1316,5,227,0,0,1315, + 1312,1,0,0,0,1315,1316,1,0,0,0,1316,81,1,0,0,0,1317,1321,5,283,0, + 0,1318,1319,5,5,0,0,1319,1320,5,227,0,0,1320,1322,5,134,0,0,1321, + 1318,1,0,0,0,1321,1322,1,0,0,0,1322,1324,1,0,0,0,1323,1325,5,287, + 0,0,1324,1323,1,0,0,0,1324,1325,1,0,0,0,1325,1326,1,0,0,0,1326,1331, + 3,590,295,0,1327,1328,5,397,0,0,1328,1330,3,590,295,0,1329,1327, + 1,0,0,0,1330,1333,1,0,0,0,1331,1329,1,0,0,0,1331,1332,1,0,0,0,1332, + 1334,1,0,0,0,1333,1331,1,0,0,0,1334,1335,5,139,0,0,1335,1336,3,110, + 55,0,1336,83,1,0,0,0,1337,1338,5,308,0,0,1338,1339,5,287,0,0,1339, + 1340,5,143,0,0,1340,1341,3,112,56,0,1341,85,1,0,0,0,1342,1343,5, + 308,0,0,1343,1344,5,288,0,0,1344,87,1,0,0,0,1345,1346,5,308,0,0, + 1346,1347,5,62,0,0,1347,1348,5,288,0,0,1348,89,1,0,0,0,1349,1350, + 5,304,0,0,1350,1354,5,287,0,0,1351,1355,5,7,0,0,1352,1355,5,213, + 0,0,1353,1355,3,590,295,0,1354,1351,1,0,0,0,1354,1352,1,0,0,0,1354, + 1353,1,0,0,0,1355,91,1,0,0,0,1356,1357,5,308,0,0,1357,1359,5,143, + 0,0,1358,1360,3,112,56,0,1359,1358,1,0,0,0,1359,1360,1,0,0,0,1360, + 1363,1,0,0,0,1361,1362,5,224,0,0,1362,1364,3,96,48,0,1363,1361,1, + 0,0,0,1363,1364,1,0,0,0,1364,93,1,0,0,0,1365,1366,5,308,0,0,1366, + 1367,5,252,0,0,1367,1368,3,590,295,0,1368,95,1,0,0,0,1369,1372,5, + 7,0,0,1370,1372,3,102,51,0,1371,1369,1,0,0,0,1371,1370,1,0,0,0,1372, + 97,1,0,0,0,1373,1374,5,224,0,0,1374,1375,3,100,50,0,1375,99,1,0, + 0,0,1376,1377,3,64,32,0,1377,1378,3,420,210,0,1378,1388,1,0,0,0, + 1379,1381,5,329,0,0,1380,1379,1,0,0,0,1380,1381,1,0,0,0,1381,1382, + 1,0,0,0,1382,1388,3,576,288,0,1383,1384,5,366,0,0,1384,1388,5,426, + 0,0,1385,1386,5,303,0,0,1386,1388,3,590,295,0,1387,1376,1,0,0,0, + 1387,1380,1,0,0,0,1387,1383,1,0,0,0,1387,1385,1,0,0,0,1388,101,1, + 0,0,0,1389,1390,3,64,32,0,1390,1391,3,420,210,0,1391,1410,1,0,0, + 0,1392,1394,5,329,0,0,1393,1392,1,0,0,0,1393,1394,1,0,0,0,1394,1395, + 1,0,0,0,1395,1400,3,426,213,0,1396,1397,5,399,0,0,1397,1398,3,220, + 110,0,1398,1399,5,400,0,0,1399,1401,1,0,0,0,1400,1396,1,0,0,0,1400, + 1401,1,0,0,0,1401,1403,1,0,0,0,1402,1404,3,578,289,0,1403,1402,1, + 0,0,0,1403,1404,1,0,0,0,1404,1410,1,0,0,0,1405,1406,5,366,0,0,1406, + 1410,5,426,0,0,1407,1408,5,303,0,0,1408,1410,3,590,295,0,1409,1389, + 1,0,0,0,1409,1393,1,0,0,0,1409,1405,1,0,0,0,1409,1407,1,0,0,0,1410, + 103,1,0,0,0,1411,1416,3,106,53,0,1412,1413,5,397,0,0,1413,1415,3, + 106,53,0,1414,1412,1,0,0,0,1415,1418,1,0,0,0,1416,1414,1,0,0,0,1416, + 1417,1,0,0,0,1417,105,1,0,0,0,1418,1416,1,0,0,0,1419,1424,3,108, + 54,0,1420,1421,5,399,0,0,1421,1422,3,220,110,0,1422,1423,5,400,0, + 0,1423,1425,1,0,0,0,1424,1420,1,0,0,0,1424,1425,1,0,0,0,1425,107, + 1,0,0,0,1426,1427,7,13,0,0,1427,109,1,0,0,0,1428,1433,3,112,56,0, + 1429,1430,5,397,0,0,1430,1432,3,112,56,0,1431,1429,1,0,0,0,1432, + 1435,1,0,0,0,1433,1431,1,0,0,0,1433,1434,1,0,0,0,1434,111,1,0,0, + 0,1435,1433,1,0,0,0,1436,1437,5,369,0,0,1437,1443,3,594,297,0,1438, + 1439,5,144,0,0,1439,1443,3,594,297,0,1440,1441,5,287,0,0,1441,1443, + 3,590,295,0,1442,1436,1,0,0,0,1442,1438,1,0,0,0,1442,1440,1,0,0, + 0,1443,113,1,0,0,0,1444,1445,5,369,0,0,1445,1450,3,594,297,0,1446, + 1447,5,287,0,0,1447,1450,3,590,295,0,1448,1450,3,590,295,0,1449, + 1444,1,0,0,0,1449,1446,1,0,0,0,1449,1448,1,0,0,0,1450,115,1,0,0, + 0,1451,1453,5,212,0,0,1452,1454,5,276,0,0,1453,1452,1,0,0,0,1453, + 1454,1,0,0,0,1454,1455,1,0,0,0,1455,1456,5,329,0,0,1456,1462,3,426, + 213,0,1457,1458,7,14,0,0,1458,1460,5,239,0,0,1459,1461,3,582,291, + 0,1460,1459,1,0,0,0,1460,1461,1,0,0,0,1461,1463,1,0,0,0,1462,1457, + 1,0,0,0,1462,1463,1,0,0,0,1463,117,1,0,0,0,1464,1465,7,15,0,0,1465, + 119,1,0,0,0,1466,1468,5,58,0,0,1467,1469,5,333,0,0,1468,1467,1,0, + 0,0,1468,1469,1,0,0,0,1469,1470,1,0,0,0,1470,1471,5,141,0,0,1471, + 1472,3,510,255,0,1472,1473,5,17,0,0,1473,1486,5,426,0,0,1474,1475, + 5,370,0,0,1475,1476,3,118,59,0,1476,1483,5,426,0,0,1477,1478,5,397, + 0,0,1478,1479,3,118,59,0,1479,1480,5,426,0,0,1480,1482,1,0,0,0,1481, + 1477,1,0,0,0,1482,1485,1,0,0,0,1483,1481,1,0,0,0,1483,1484,1,0,0, + 0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1486,1474,1,0,0,0,1486,1487, + 1,0,0,0,1487,121,1,0,0,0,1488,1490,5,101,0,0,1489,1491,5,333,0,0, + 1490,1489,1,0,0,0,1490,1491,1,0,0,0,1491,1492,1,0,0,0,1492,1494, + 5,141,0,0,1493,1495,3,30,15,0,1494,1493,1,0,0,0,1494,1495,1,0,0, + 0,1495,1496,1,0,0,0,1496,1497,3,512,256,0,1497,123,1,0,0,0,1498, + 1499,5,271,0,0,1499,1500,7,16,0,0,1500,125,1,0,0,0,1501,1502,5,58, + 0,0,1502,1503,5,333,0,0,1503,1504,5,194,0,0,1504,1505,5,432,0,0, + 1505,1507,5,399,0,0,1506,1508,3,214,107,0,1507,1506,1,0,0,0,1507, + 1508,1,0,0,0,1508,1509,1,0,0,0,1509,1510,5,400,0,0,1510,1511,3,536, + 268,0,1511,127,1,0,0,0,1512,1513,5,101,0,0,1513,1514,5,333,0,0,1514, + 1516,5,194,0,0,1515,1517,3,30,15,0,1516,1515,1,0,0,0,1516,1517,1, + 0,0,0,1517,1518,1,0,0,0,1518,1519,5,432,0,0,1519,129,1,0,0,0,1520, + 1521,5,58,0,0,1521,1522,5,155,0,0,1522,1523,3,590,295,0,1523,1524, + 5,224,0,0,1524,1525,5,329,0,0,1525,1526,3,426,213,0,1526,1527,3, + 234,117,0,1527,1528,5,17,0,0,1528,1532,5,426,0,0,1529,1530,5,387, + 0,0,1530,1531,5,84,0,0,1531,1533,5,265,0,0,1532,1529,1,0,0,0,1532, + 1533,1,0,0,0,1533,1536,1,0,0,0,1534,1535,5,150,0,0,1535,1537,3,192, + 96,0,1536,1534,1,0,0,0,1536,1537,1,0,0,0,1537,1541,1,0,0,0,1538, + 1539,5,154,0,0,1539,1540,5,329,0,0,1540,1542,3,426,213,0,1541,1538, + 1,0,0,0,1541,1542,1,0,0,0,1542,1546,1,0,0,0,1543,1544,5,238,0,0, + 1544,1545,5,32,0,0,1545,1547,3,234,117,0,1546,1543,1,0,0,0,1546, + 1547,1,0,0,0,1547,1552,1,0,0,0,1548,1550,3,184,92,0,1549,1548,1, + 0,0,0,1549,1550,1,0,0,0,1550,1551,1,0,0,0,1551,1553,3,212,106,0, + 1552,1549,1,0,0,0,1552,1553,1,0,0,0,1553,1555,1,0,0,0,1554,1556, + 3,372,186,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556,1558,1,0,0, + 0,1557,1559,3,190,95,0,1558,1557,1,0,0,0,1558,1559,1,0,0,0,1559, + 1561,1,0,0,0,1560,1562,3,168,84,0,1561,1560,1,0,0,0,1561,1562,1, + 0,0,0,1562,131,1,0,0,0,1563,1564,5,101,0,0,1564,1566,5,155,0,0,1565, + 1567,3,30,15,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567,1568,1,0, + 0,0,1568,1569,3,590,295,0,1569,1570,5,224,0,0,1570,1571,3,426,213, + 0,1571,133,1,0,0,0,1572,1575,5,58,0,0,1573,1574,5,228,0,0,1574,1576, + 5,278,0,0,1575,1573,1,0,0,0,1575,1576,1,0,0,0,1576,1577,1,0,0,0, + 1577,1579,5,378,0,0,1578,1580,3,32,16,0,1579,1578,1,0,0,0,1579,1580, + 1,0,0,0,1580,1581,1,0,0,0,1581,1586,3,432,216,0,1582,1583,5,399, + 0,0,1583,1584,3,270,135,0,1584,1585,5,400,0,0,1585,1587,1,0,0,0, + 1586,1582,1,0,0,0,1586,1587,1,0,0,0,1587,1589,1,0,0,0,1588,1590, + 3,168,84,0,1589,1588,1,0,0,0,1589,1590,1,0,0,0,1590,1592,1,0,0,0, + 1591,1593,3,136,68,0,1592,1591,1,0,0,0,1592,1593,1,0,0,0,1593,1595, + 1,0,0,0,1594,1596,3,190,95,0,1595,1594,1,0,0,0,1595,1596,1,0,0,0, + 1596,1597,1,0,0,0,1597,1598,5,17,0,0,1598,1599,3,334,167,0,1599, + 135,1,0,0,0,1600,1601,5,238,0,0,1601,1607,5,224,0,0,1602,1603,5, + 399,0,0,1603,1608,3,220,110,0,1604,1605,5,316,0,0,1605,1606,5,399, + 0,0,1606,1608,3,176,88,0,1607,1602,1,0,0,0,1607,1604,1,0,0,0,1608, + 1609,1,0,0,0,1609,1610,5,400,0,0,1610,137,1,0,0,0,1611,1614,3,140, + 70,0,1612,1614,3,142,71,0,1613,1611,1,0,0,0,1613,1612,1,0,0,0,1614, + 139,1,0,0,0,1615,1616,5,42,0,0,1616,1617,5,224,0,0,1617,1618,5,399, + 0,0,1618,1619,3,220,110,0,1619,1620,5,400,0,0,1620,141,1,0,0,0,1621, + 1622,3,144,72,0,1622,1623,3,146,73,0,1623,143,1,0,0,0,1624,1625, + 5,98,0,0,1625,1626,5,224,0,0,1626,1627,5,399,0,0,1627,1628,3,220, + 110,0,1628,1629,5,400,0,0,1629,145,1,0,0,0,1630,1631,5,315,0,0,1631, + 1632,5,224,0,0,1632,1633,5,399,0,0,1633,1634,3,220,110,0,1634,1635, + 5,400,0,0,1635,147,1,0,0,0,1636,1638,5,101,0,0,1637,1639,5,202,0, + 0,1638,1637,1,0,0,0,1638,1639,1,0,0,0,1639,1640,1,0,0,0,1640,1642, + 5,378,0,0,1641,1643,3,30,15,0,1642,1641,1,0,0,0,1642,1643,1,0,0, + 0,1643,1644,1,0,0,0,1644,1645,3,430,215,0,1645,149,1,0,0,0,1646, + 1647,5,58,0,0,1647,1648,5,202,0,0,1648,1650,5,378,0,0,1649,1651, + 3,32,16,0,1650,1649,1,0,0,0,1650,1651,1,0,0,0,1651,1652,1,0,0,0, + 1652,1654,3,432,216,0,1653,1655,3,40,20,0,1654,1653,1,0,0,0,1654, + 1655,1,0,0,0,1655,1657,1,0,0,0,1656,1658,3,168,84,0,1657,1656,1, + 0,0,0,1657,1658,1,0,0,0,1658,1660,1,0,0,0,1659,1661,3,136,68,0,1660, + 1659,1,0,0,0,1660,1661,1,0,0,0,1661,1663,1,0,0,0,1662,1664,3,138, + 69,0,1663,1662,1,0,0,0,1663,1664,1,0,0,0,1664,1666,1,0,0,0,1665, + 1667,3,184,92,0,1666,1665,1,0,0,0,1666,1667,1,0,0,0,1667,1669,1, + 0,0,0,1668,1670,3,212,106,0,1669,1668,1,0,0,0,1669,1670,1,0,0,0, + 1670,1672,1,0,0,0,1671,1673,3,372,186,0,1672,1671,1,0,0,0,1672,1673, + 1,0,0,0,1673,1675,1,0,0,0,1674,1676,3,190,95,0,1675,1674,1,0,0,0, + 1675,1676,1,0,0,0,1676,1677,1,0,0,0,1677,1678,5,17,0,0,1678,1679, + 3,334,167,0,1679,151,1,0,0,0,1680,1681,5,58,0,0,1681,1682,5,293, + 0,0,1682,1683,5,258,0,0,1683,1684,3,590,295,0,1684,1686,3,160,80, + 0,1685,1687,3,162,81,0,1686,1685,1,0,0,0,1686,1687,1,0,0,0,1687, + 1689,1,0,0,0,1688,1690,3,238,119,0,1689,1688,1,0,0,0,1689,1690,1, + 0,0,0,1690,1691,1,0,0,0,1691,1692,3,164,82,0,1692,153,1,0,0,0,1693, + 1694,5,101,0,0,1694,1695,5,293,0,0,1695,1696,5,258,0,0,1696,1697, + 3,590,295,0,1697,155,1,0,0,0,1698,1699,5,9,0,0,1699,1700,5,293,0, + 0,1700,1701,5,258,0,0,1701,1702,3,590,295,0,1702,1703,3,158,79,0, + 1703,157,1,0,0,0,1704,1710,3,160,80,0,1705,1710,3,162,81,0,1706, + 1710,3,238,119,0,1707,1710,3,164,82,0,1708,1710,5,115,0,0,1709,1704, + 1,0,0,0,1709,1705,1,0,0,0,1709,1706,1,0,0,0,1709,1707,1,0,0,0,1709, + 1708,1,0,0,0,1710,159,1,0,0,0,1711,1712,5,59,0,0,1712,1727,5,426, + 0,0,1713,1715,5,111,0,0,1714,1716,5,431,0,0,1715,1714,1,0,0,0,1715, + 1716,1,0,0,0,1716,1717,1,0,0,0,1717,1724,3,534,267,0,1718,1722,5, + 20,0,0,1719,1720,5,223,0,0,1720,1722,5,32,0,0,1721,1718,1,0,0,0, + 1721,1719,1,0,0,0,1722,1723,1,0,0,0,1723,1725,5,426,0,0,1724,1721, + 1,0,0,0,1724,1725,1,0,0,0,1725,1727,1,0,0,0,1726,1711,1,0,0,0,1726, + 1713,1,0,0,0,1727,161,1,0,0,0,1728,1729,5,116,0,0,1729,1730,5,17, + 0,0,1730,1731,5,426,0,0,1731,163,1,0,0,0,1732,1734,5,85,0,0,1733, + 1732,1,0,0,0,1733,1734,1,0,0,0,1734,1735,1,0,0,0,1735,1736,5,17, + 0,0,1736,1737,3,2,1,0,1737,165,1,0,0,0,1738,1741,3,590,295,0,1739, + 1741,5,426,0,0,1740,1738,1,0,0,0,1740,1739,1,0,0,0,1741,167,1,0, + 0,0,1742,1743,5,47,0,0,1743,1744,5,426,0,0,1744,169,1,0,0,0,1745, + 1746,5,183,0,0,1746,1747,5,431,0,0,1747,171,1,0,0,0,1748,1749,5, + 238,0,0,1749,1758,5,32,0,0,1750,1753,5,399,0,0,1751,1754,3,174,87, + 0,1752,1754,3,220,110,0,1753,1751,1,0,0,0,1753,1752,1,0,0,0,1754, + 1759,1,0,0,0,1755,1756,5,316,0,0,1756,1757,5,399,0,0,1757,1759,3, + 176,88,0,1758,1750,1,0,0,0,1758,1755,1,0,0,0,1759,1760,1,0,0,0,1760, + 1761,5,400,0,0,1761,173,1,0,0,0,1762,1767,3,282,141,0,1763,1764, + 5,397,0,0,1764,1766,3,282,141,0,1765,1763,1,0,0,0,1766,1769,1,0, + 0,0,1767,1765,1,0,0,0,1767,1768,1,0,0,0,1768,175,1,0,0,0,1769,1767, + 1,0,0,0,1770,1775,3,178,89,0,1771,1772,5,397,0,0,1772,1774,3,178, + 89,0,1773,1771,1,0,0,0,1774,1777,1,0,0,0,1775,1773,1,0,0,0,1775, + 1776,1,0,0,0,1776,177,1,0,0,0,1777,1775,1,0,0,0,1778,1792,3,222, + 111,0,1779,1780,7,17,0,0,1780,1781,5,399,0,0,1781,1782,3,222,111, + 0,1782,1783,5,400,0,0,1783,1792,1,0,0,0,1784,1785,7,18,0,0,1785, + 1786,5,399,0,0,1786,1787,5,431,0,0,1787,1788,5,397,0,0,1788,1789, + 3,222,111,0,1789,1790,5,400,0,0,1790,1792,1,0,0,0,1791,1778,1,0, + 0,0,1791,1779,1,0,0,0,1791,1784,1,0,0,0,1792,179,1,0,0,0,1793,1794, + 5,42,0,0,1794,1795,5,32,0,0,1795,1796,5,399,0,0,1796,1797,3,220, + 110,0,1797,1804,5,400,0,0,1798,1799,5,315,0,0,1799,1800,5,32,0,0, + 1800,1801,5,399,0,0,1801,1802,3,232,116,0,1802,1803,5,400,0,0,1803, + 1805,1,0,0,0,1804,1798,1,0,0,0,1804,1805,1,0,0,0,1805,1806,1,0,0, + 0,1806,1807,5,166,0,0,1807,1808,5,431,0,0,1808,1809,5,31,0,0,1809, + 181,1,0,0,0,1810,1811,5,310,0,0,1811,1812,5,32,0,0,1812,1813,5,399, + 0,0,1813,1814,3,220,110,0,1814,1815,5,400,0,0,1815,1816,5,224,0, + 0,1816,1817,5,399,0,0,1817,1818,3,256,128,0,1818,1820,5,400,0,0, + 1819,1821,3,36,18,0,1820,1819,1,0,0,0,1820,1821,1,0,0,0,1821,183, + 1,0,0,0,1822,1825,3,186,93,0,1823,1825,3,188,94,0,1824,1822,1,0, + 0,0,1824,1823,1,0,0,0,1825,185,1,0,0,0,1826,1827,5,291,0,0,1827, + 1828,5,137,0,0,1828,1829,5,301,0,0,1829,1833,5,426,0,0,1830,1831, + 5,387,0,0,1831,1832,5,302,0,0,1832,1834,3,192,96,0,1833,1830,1,0, + 0,0,1833,1834,1,0,0,0,1834,187,1,0,0,0,1835,1836,5,291,0,0,1836, + 1837,5,137,0,0,1837,1839,5,87,0,0,1838,1840,3,202,101,0,1839,1838, + 1,0,0,0,1839,1840,1,0,0,0,1840,1842,1,0,0,0,1841,1843,3,204,102, + 0,1842,1841,1,0,0,0,1842,1843,1,0,0,0,1843,1845,1,0,0,0,1844,1846, + 3,206,103,0,1845,1844,1,0,0,0,1845,1846,1,0,0,0,1846,1848,1,0,0, + 0,1847,1849,3,208,104,0,1848,1847,1,0,0,0,1848,1849,1,0,0,0,1849, + 1851,1,0,0,0,1850,1852,3,210,105,0,1851,1850,1,0,0,0,1851,1852,1, + 0,0,0,1852,189,1,0,0,0,1853,1854,5,332,0,0,1854,1855,3,192,96,0, + 1855,191,1,0,0,0,1856,1857,5,399,0,0,1857,1858,3,194,97,0,1858,1859, + 5,400,0,0,1859,193,1,0,0,0,1860,1870,3,198,99,0,1861,1866,5,426, + 0,0,1862,1863,5,397,0,0,1863,1865,5,426,0,0,1864,1862,1,0,0,0,1865, + 1868,1,0,0,0,1866,1864,1,0,0,0,1866,1867,1,0,0,0,1867,1870,1,0,0, + 0,1868,1866,1,0,0,0,1869,1860,1,0,0,0,1869,1861,1,0,0,0,1870,195, + 1,0,0,0,1871,1872,5,399,0,0,1872,1873,3,198,99,0,1873,1874,5,400, + 0,0,1874,197,1,0,0,0,1875,1880,3,200,100,0,1876,1877,5,397,0,0,1877, + 1879,3,200,100,0,1878,1876,1,0,0,0,1879,1882,1,0,0,0,1880,1878,1, + 0,0,0,1880,1881,1,0,0,0,1881,199,1,0,0,0,1882,1880,1,0,0,0,1883, + 1884,5,426,0,0,1884,1885,5,405,0,0,1885,1886,5,426,0,0,1886,201, + 1,0,0,0,1887,1888,5,127,0,0,1888,1889,5,334,0,0,1889,1890,5,32,0, + 0,1890,1894,5,426,0,0,1891,1892,5,110,0,0,1892,1893,5,32,0,0,1893, + 1895,5,426,0,0,1894,1891,1,0,0,0,1894,1895,1,0,0,0,1895,203,1,0, + 0,0,1896,1897,5,44,0,0,1897,1898,5,169,0,0,1898,1899,5,334,0,0,1899, + 1900,5,32,0,0,1900,1901,5,426,0,0,1901,205,1,0,0,0,1902,1903,5,198, + 0,0,1903,1904,5,174,0,0,1904,1905,5,334,0,0,1905,1906,5,32,0,0,1906, + 1907,5,426,0,0,1907,207,1,0,0,0,1908,1909,5,186,0,0,1909,1910,5, + 334,0,0,1910,1911,5,32,0,0,1911,1912,5,426,0,0,1912,209,1,0,0,0, + 1913,1914,5,219,0,0,1914,1915,5,85,0,0,1915,1916,5,17,0,0,1916,1917, + 5,426,0,0,1917,211,1,0,0,0,1918,1919,5,321,0,0,1919,1920,5,17,0, + 0,1920,1921,5,160,0,0,1921,1922,5,426,0,0,1922,1923,5,233,0,0,1923, + 1928,5,426,0,0,1924,1925,5,159,0,0,1925,1926,5,426,0,0,1926,1927, + 5,232,0,0,1927,1929,5,426,0,0,1928,1924,1,0,0,0,1928,1929,1,0,0, + 0,1929,1960,1,0,0,0,1930,1931,5,321,0,0,1931,1932,5,32,0,0,1932, + 1936,5,426,0,0,1933,1934,5,387,0,0,1934,1935,5,302,0,0,1935,1937, + 3,192,96,0,1936,1933,1,0,0,0,1936,1937,1,0,0,0,1937,1941,1,0,0,0, + 1938,1939,5,321,0,0,1939,1940,5,17,0,0,1940,1942,3,590,295,0,1941, + 1938,1,0,0,0,1941,1942,1,0,0,0,1942,1960,1,0,0,0,1943,1944,5,321, + 0,0,1944,1945,5,32,0,0,1945,1949,3,590,295,0,1946,1947,5,387,0,0, + 1947,1948,5,302,0,0,1948,1950,3,192,96,0,1949,1946,1,0,0,0,1949, + 1950,1,0,0,0,1950,1954,1,0,0,0,1951,1952,5,321,0,0,1952,1953,5,17, + 0,0,1953,1955,3,590,295,0,1954,1951,1,0,0,0,1954,1955,1,0,0,0,1955, + 1960,1,0,0,0,1956,1957,5,321,0,0,1957,1958,5,17,0,0,1958,1960,3, + 590,295,0,1959,1918,1,0,0,0,1959,1930,1,0,0,0,1959,1943,1,0,0,0, + 1959,1956,1,0,0,0,1960,213,1,0,0,0,1961,1966,3,276,138,0,1962,1963, + 5,397,0,0,1963,1965,3,276,138,0,1964,1962,1,0,0,0,1965,1968,1,0, + 0,0,1966,1964,1,0,0,0,1966,1967,1,0,0,0,1967,215,1,0,0,0,1968,1966, + 1,0,0,0,1969,1974,3,278,139,0,1970,1971,5,397,0,0,1971,1973,3,278, + 139,0,1972,1970,1,0,0,0,1973,1976,1,0,0,0,1974,1972,1,0,0,0,1974, + 1975,1,0,0,0,1975,217,1,0,0,0,1976,1974,1,0,0,0,1977,1982,3,296, + 148,0,1978,1979,5,397,0,0,1979,1981,3,296,148,0,1980,1978,1,0,0, + 0,1981,1984,1,0,0,0,1982,1980,1,0,0,0,1982,1983,1,0,0,0,1983,219, + 1,0,0,0,1984,1982,1,0,0,0,1985,1990,3,222,111,0,1986,1987,5,397, + 0,0,1987,1989,3,222,111,0,1988,1986,1,0,0,0,1989,1992,1,0,0,0,1990, + 1988,1,0,0,0,1990,1991,1,0,0,0,1991,221,1,0,0,0,1992,1990,1,0,0, + 0,1993,1997,3,622,311,0,1994,1995,4,111,0,0,1995,1997,3,618,309, + 0,1996,1993,1,0,0,0,1996,1994,1,0,0,0,1997,223,1,0,0,0,1998,1999, + 3,620,310,0,1999,225,1,0,0,0,2000,2004,3,622,311,0,2001,2002,4,113, + 1,0,2002,2004,3,618,309,0,2003,2000,1,0,0,0,2003,2001,1,0,0,0,2004, + 227,1,0,0,0,2005,2006,3,590,295,0,2006,229,1,0,0,0,2007,2017,3,222, + 111,0,2008,2013,5,395,0,0,2009,2014,5,104,0,0,2010,2014,5,175,0, + 0,2011,2014,5,375,0,0,2012,2014,3,590,295,0,2013,2009,1,0,0,0,2013, + 2010,1,0,0,0,2013,2011,1,0,0,0,2013,2012,1,0,0,0,2014,2016,1,0,0, + 0,2015,2008,1,0,0,0,2016,2019,1,0,0,0,2017,2015,1,0,0,0,2017,2018, + 1,0,0,0,2018,231,1,0,0,0,2019,2017,1,0,0,0,2020,2025,3,268,134,0, + 2021,2022,5,397,0,0,2022,2024,3,268,134,0,2023,2021,1,0,0,0,2024, + 2027,1,0,0,0,2025,2023,1,0,0,0,2025,2026,1,0,0,0,2026,233,1,0,0, + 0,2027,2025,1,0,0,0,2028,2029,5,399,0,0,2029,2030,3,220,110,0,2030, + 2031,5,400,0,0,2031,235,1,0,0,0,2032,2034,3,238,119,0,2033,2035, + 7,19,0,0,2034,2033,1,0,0,0,2034,2035,1,0,0,0,2035,2038,1,0,0,0,2036, + 2038,3,240,120,0,2037,2032,1,0,0,0,2037,2036,1,0,0,0,2038,237,1, + 0,0,0,2039,2042,3,614,307,0,2040,2042,3,616,308,0,2041,2039,1,0, + 0,0,2041,2040,1,0,0,0,2042,239,1,0,0,0,2043,2047,5,109,0,0,2044, + 2045,5,216,0,0,2045,2047,5,109,0,0,2046,2043,1,0,0,0,2046,2044,1, + 0,0,0,2047,241,1,0,0,0,2048,2049,5,55,0,0,2049,2051,3,590,295,0, + 2050,2048,1,0,0,0,2050,2051,1,0,0,0,2051,2052,1,0,0,0,2052,2054, + 3,246,123,0,2053,2055,3,294,147,0,2054,2053,1,0,0,0,2054,2055,1, + 0,0,0,2055,243,1,0,0,0,2056,2057,5,55,0,0,2057,2058,3,590,295,0, + 2058,2060,3,246,123,0,2059,2061,3,294,147,0,2060,2059,1,0,0,0,2060, + 2061,1,0,0,0,2061,245,1,0,0,0,2062,2065,3,248,124,0,2063,2065,3, + 250,125,0,2064,2062,1,0,0,0,2064,2063,1,0,0,0,2065,247,1,0,0,0,2066, + 2067,3,292,146,0,2067,2068,3,234,117,0,2068,249,1,0,0,0,2069,2070, + 5,40,0,0,2070,2071,5,399,0,0,2071,2072,3,536,268,0,2072,2073,5,400, + 0,0,2073,251,1,0,0,0,2074,2075,5,55,0,0,2075,2077,3,590,295,0,2076, + 2074,1,0,0,0,2076,2077,1,0,0,0,2077,2078,1,0,0,0,2078,2079,5,136, + 0,0,2079,2080,5,173,0,0,2080,2081,3,234,117,0,2081,2082,5,269,0, + 0,2082,2083,3,426,213,0,2083,2085,3,234,117,0,2084,2086,3,294,147, + 0,2085,2084,1,0,0,0,2085,2086,1,0,0,0,2086,253,1,0,0,0,2087,2088, + 5,55,0,0,2088,2089,3,590,295,0,2089,2090,5,136,0,0,2090,2091,5,173, + 0,0,2091,2092,3,234,117,0,2092,2093,5,269,0,0,2093,2094,3,426,213, + 0,2094,2096,3,234,117,0,2095,2097,3,294,147,0,2096,2095,1,0,0,0, + 2096,2097,1,0,0,0,2097,255,1,0,0,0,2098,2101,3,262,131,0,2099,2101, + 3,258,129,0,2100,2098,1,0,0,0,2100,2099,1,0,0,0,2101,257,1,0,0,0, + 2102,2107,3,260,130,0,2103,2104,5,397,0,0,2104,2106,3,260,130,0, + 2105,2103,1,0,0,0,2106,2109,1,0,0,0,2107,2105,1,0,0,0,2107,2108, + 1,0,0,0,2108,259,1,0,0,0,2109,2107,1,0,0,0,2110,2111,5,399,0,0,2111, + 2112,3,262,131,0,2112,2113,5,400,0,0,2113,261,1,0,0,0,2114,2119, + 3,528,264,0,2115,2116,5,397,0,0,2116,2118,3,528,264,0,2117,2115, + 1,0,0,0,2118,2121,1,0,0,0,2119,2117,1,0,0,0,2119,2120,1,0,0,0,2120, + 263,1,0,0,0,2121,2119,1,0,0,0,2122,2123,7,20,0,0,2123,265,1,0,0, + 0,2124,2125,5,220,0,0,2125,2126,7,21,0,0,2126,267,1,0,0,0,2127,2129, + 3,222,111,0,2128,2130,3,264,132,0,2129,2128,1,0,0,0,2129,2130,1, + 0,0,0,2130,2132,1,0,0,0,2131,2133,3,266,133,0,2132,2131,1,0,0,0, + 2132,2133,1,0,0,0,2133,269,1,0,0,0,2134,2139,3,272,136,0,2135,2136, + 5,397,0,0,2136,2138,3,272,136,0,2137,2135,1,0,0,0,2138,2141,1,0, + 0,0,2139,2137,1,0,0,0,2139,2140,1,0,0,0,2140,271,1,0,0,0,2141,2139, + 1,0,0,0,2142,2145,3,228,114,0,2143,2144,5,47,0,0,2144,2146,5,426, + 0,0,2145,2143,1,0,0,0,2145,2146,1,0,0,0,2146,273,1,0,0,0,2147,2150, + 3,222,111,0,2148,2150,3,536,268,0,2149,2147,1,0,0,0,2149,2148,1, + 0,0,0,2150,2152,1,0,0,0,2151,2153,3,264,132,0,2152,2151,1,0,0,0, + 2152,2153,1,0,0,0,2153,2155,1,0,0,0,2154,2156,3,266,133,0,2155,2154, + 1,0,0,0,2155,2156,1,0,0,0,2156,275,1,0,0,0,2157,2158,3,228,114,0, + 2158,2161,3,300,150,0,2159,2160,5,47,0,0,2160,2162,5,426,0,0,2161, + 2159,1,0,0,0,2161,2162,1,0,0,0,2162,277,1,0,0,0,2163,2166,3,280, + 140,0,2164,2166,3,282,141,0,2165,2163,1,0,0,0,2165,2164,1,0,0,0, + 2166,279,1,0,0,0,2167,2170,3,252,126,0,2168,2170,3,242,121,0,2169, + 2167,1,0,0,0,2169,2168,1,0,0,0,2170,281,1,0,0,0,2171,2172,3,228, + 114,0,2172,2174,3,300,150,0,2173,2175,3,284,142,0,2174,2173,1,0, + 0,0,2174,2175,1,0,0,0,2175,2178,1,0,0,0,2176,2177,5,47,0,0,2177, + 2179,5,426,0,0,2178,2176,1,0,0,0,2178,2179,1,0,0,0,2179,283,1,0, + 0,0,2180,2183,3,286,143,0,2181,2183,3,288,144,0,2182,2180,1,0,0, + 0,2182,2181,1,0,0,0,2183,285,1,0,0,0,2184,2185,5,55,0,0,2185,2187, + 3,590,295,0,2186,2184,1,0,0,0,2186,2187,1,0,0,0,2187,2188,1,0,0, + 0,2188,2189,5,269,0,0,2189,2190,3,426,213,0,2190,2191,5,399,0,0, + 2191,2192,3,222,111,0,2192,2194,5,400,0,0,2193,2195,3,294,147,0, + 2194,2193,1,0,0,0,2194,2195,1,0,0,0,2195,287,1,0,0,0,2196,2197,5, + 55,0,0,2197,2199,3,590,295,0,2198,2196,1,0,0,0,2198,2199,1,0,0,0, + 2199,2200,1,0,0,0,2200,2202,3,290,145,0,2201,2203,3,294,147,0,2202, + 2201,1,0,0,0,2202,2203,1,0,0,0,2203,289,1,0,0,0,2204,2205,5,216, + 0,0,2205,2215,5,219,0,0,2206,2210,5,83,0,0,2207,2211,3,528,264,0, + 2208,2211,3,508,254,0,2209,2211,3,516,258,0,2210,2207,1,0,0,0,2210, + 2208,1,0,0,0,2210,2209,1,0,0,0,2211,2215,1,0,0,0,2212,2215,3,250, + 125,0,2213,2215,3,292,146,0,2214,2204,1,0,0,0,2214,2206,1,0,0,0, + 2214,2212,1,0,0,0,2214,2213,1,0,0,0,2215,291,1,0,0,0,2216,2217,5, + 251,0,0,2217,2220,5,173,0,0,2218,2220,5,358,0,0,2219,2216,1,0,0, + 0,2219,2218,1,0,0,0,2220,293,1,0,0,0,2221,2223,3,236,118,0,2222, + 2224,7,22,0,0,2223,2222,1,0,0,0,2223,2224,1,0,0,0,2224,295,1,0,0, + 0,2225,2226,3,228,114,0,2226,2227,5,396,0,0,2227,2230,3,300,150, + 0,2228,2229,5,47,0,0,2229,2231,5,426,0,0,2230,2228,1,0,0,0,2230, + 2231,1,0,0,0,2231,297,1,0,0,0,2232,2237,3,300,150,0,2233,2234,5, + 397,0,0,2234,2236,3,300,150,0,2235,2233,1,0,0,0,2236,2239,1,0,0, + 0,2237,2235,1,0,0,0,2237,2238,1,0,0,0,2238,299,1,0,0,0,2239,2237, + 1,0,0,0,2240,2246,3,302,151,0,2241,2246,3,304,152,0,2242,2246,3, + 306,153,0,2243,2246,3,308,154,0,2244,2246,3,310,155,0,2245,2240, + 1,0,0,0,2245,2241,1,0,0,0,2245,2242,1,0,0,0,2245,2243,1,0,0,0,2245, + 2244,1,0,0,0,2246,301,1,0,0,0,2247,2285,5,340,0,0,2248,2285,5,311, + 0,0,2249,2285,5,162,0,0,2250,2285,5,163,0,0,2251,2285,5,26,0,0,2252, + 2285,5,28,0,0,2253,2285,5,131,0,0,2254,2285,5,264,0,0,2255,2257, + 5,100,0,0,2256,2258,5,248,0,0,2257,2256,1,0,0,0,2257,2258,1,0,0, + 0,2258,2285,1,0,0,0,2259,2285,5,71,0,0,2260,2285,5,72,0,0,2261,2285, + 5,337,0,0,2262,2285,5,338,0,0,2263,2264,5,337,0,0,2264,2265,5,387, + 0,0,2265,2266,5,188,0,0,2266,2267,5,336,0,0,2267,2285,5,394,0,0, + 2268,2285,5,323,0,0,2269,2285,5,27,0,0,2270,2278,7,23,0,0,2271,2272, + 5,399,0,0,2272,2275,5,431,0,0,2273,2274,5,397,0,0,2274,2276,5,431, + 0,0,2275,2273,1,0,0,0,2275,2276,1,0,0,0,2276,2277,1,0,0,0,2277,2279, + 5,400,0,0,2278,2271,1,0,0,0,2278,2279,1,0,0,0,2279,2285,1,0,0,0, + 2280,2281,7,24,0,0,2281,2282,5,399,0,0,2282,2283,5,431,0,0,2283, + 2285,5,400,0,0,2284,2247,1,0,0,0,2284,2248,1,0,0,0,2284,2249,1,0, + 0,0,2284,2250,1,0,0,0,2284,2251,1,0,0,0,2284,2252,1,0,0,0,2284,2253, + 1,0,0,0,2284,2254,1,0,0,0,2284,2255,1,0,0,0,2284,2259,1,0,0,0,2284, + 2260,1,0,0,0,2284,2261,1,0,0,0,2284,2262,1,0,0,0,2284,2263,1,0,0, + 0,2284,2268,1,0,0,0,2284,2269,1,0,0,0,2284,2270,1,0,0,0,2284,2280, + 1,0,0,0,2285,303,1,0,0,0,2286,2287,5,16,0,0,2287,2288,5,409,0,0, + 2288,2289,3,300,150,0,2289,2290,5,411,0,0,2290,305,1,0,0,0,2291, + 2292,5,324,0,0,2292,2293,5,409,0,0,2293,2294,3,218,109,0,2294,2295, + 5,411,0,0,2295,307,1,0,0,0,2296,2297,5,198,0,0,2297,2298,5,409,0, + 0,2298,2299,3,302,151,0,2299,2300,5,397,0,0,2300,2301,3,300,150, + 0,2301,2302,5,411,0,0,2302,309,1,0,0,0,2303,2304,5,357,0,0,2304, + 2305,5,409,0,0,2305,2306,3,298,149,0,2306,2307,5,411,0,0,2307,311, + 1,0,0,0,2308,2310,7,25,0,0,2309,2311,7,26,0,0,2310,2309,1,0,0,0, + 2310,2311,1,0,0,0,2311,313,1,0,0,0,2312,2314,3,318,159,0,2313,2312, + 1,0,0,0,2313,2314,1,0,0,0,2314,2315,1,0,0,0,2315,2316,3,316,158, + 0,2316,315,1,0,0,0,2317,2320,3,322,161,0,2318,2320,3,326,163,0,2319, + 2317,1,0,0,0,2319,2318,1,0,0,0,2320,317,1,0,0,0,2321,2322,5,387, + 0,0,2322,2327,3,320,160,0,2323,2324,5,397,0,0,2324,2326,3,320,160, + 0,2325,2323,1,0,0,0,2326,2329,1,0,0,0,2327,2325,1,0,0,0,2327,2328, + 1,0,0,0,2328,319,1,0,0,0,2329,2327,1,0,0,0,2330,2335,3,590,295,0, + 2331,2332,5,399,0,0,2332,2333,3,220,110,0,2333,2334,5,400,0,0,2334, + 2336,1,0,0,0,2335,2331,1,0,0,0,2335,2336,1,0,0,0,2336,2337,1,0,0, + 0,2337,2338,5,17,0,0,2338,2339,5,399,0,0,2339,2340,3,314,157,0,2340, + 2341,5,400,0,0,2341,321,1,0,0,0,2342,2348,3,324,162,0,2343,2344, + 3,312,156,0,2344,2345,3,324,162,0,2345,2347,1,0,0,0,2346,2343,1, + 0,0,0,2347,2350,1,0,0,0,2348,2346,1,0,0,0,2348,2349,1,0,0,0,2349, + 323,1,0,0,0,2350,2348,1,0,0,0,2351,2352,3,396,198,0,2352,2353,3, + 336,168,0,2353,2355,3,452,226,0,2354,2356,3,410,205,0,2355,2354, + 1,0,0,0,2355,2356,1,0,0,0,2356,2358,1,0,0,0,2357,2359,3,444,222, + 0,2358,2357,1,0,0,0,2358,2359,1,0,0,0,2359,2361,1,0,0,0,2360,2362, + 3,478,239,0,2361,2360,1,0,0,0,2361,2362,1,0,0,0,2362,2364,1,0,0, + 0,2363,2365,3,486,243,0,2364,2363,1,0,0,0,2364,2365,1,0,0,0,2365, + 2367,1,0,0,0,2366,2368,3,470,235,0,2367,2366,1,0,0,0,2367,2368,1, + 0,0,0,2368,2370,1,0,0,0,2369,2371,3,488,244,0,2370,2369,1,0,0,0, + 2370,2371,1,0,0,0,2371,2373,1,0,0,0,2372,2374,3,498,249,0,2373,2372, + 1,0,0,0,2373,2374,1,0,0,0,2374,2376,1,0,0,0,2375,2377,3,502,251, + 0,2376,2375,1,0,0,0,2376,2377,1,0,0,0,2377,2379,1,0,0,0,2378,2380, + 3,504,252,0,2379,2378,1,0,0,0,2379,2380,1,0,0,0,2380,2382,1,0,0, + 0,2381,2383,3,506,253,0,2382,2381,1,0,0,0,2382,2383,1,0,0,0,2383, + 2385,1,0,0,0,2384,2386,3,340,170,0,2385,2384,1,0,0,0,2385,2386,1, + 0,0,0,2386,2423,1,0,0,0,2387,2388,3,396,198,0,2388,2390,3,452,226, + 0,2389,2391,3,410,205,0,2390,2389,1,0,0,0,2390,2391,1,0,0,0,2391, + 2393,1,0,0,0,2392,2394,3,444,222,0,2393,2392,1,0,0,0,2393,2394,1, + 0,0,0,2394,2396,1,0,0,0,2395,2397,3,478,239,0,2396,2395,1,0,0,0, + 2396,2397,1,0,0,0,2397,2399,1,0,0,0,2398,2400,3,486,243,0,2399,2398, + 1,0,0,0,2399,2400,1,0,0,0,2400,2402,1,0,0,0,2401,2403,3,470,235, + 0,2402,2401,1,0,0,0,2402,2403,1,0,0,0,2403,2405,1,0,0,0,2404,2406, + 3,488,244,0,2405,2404,1,0,0,0,2405,2406,1,0,0,0,2406,2408,1,0,0, + 0,2407,2409,3,498,249,0,2408,2407,1,0,0,0,2408,2409,1,0,0,0,2409, + 2411,1,0,0,0,2410,2412,3,502,251,0,2411,2410,1,0,0,0,2411,2412,1, + 0,0,0,2412,2414,1,0,0,0,2413,2415,3,504,252,0,2414,2413,1,0,0,0, + 2414,2415,1,0,0,0,2415,2417,1,0,0,0,2416,2418,3,506,253,0,2417,2416, + 1,0,0,0,2417,2418,1,0,0,0,2418,2420,1,0,0,0,2419,2421,3,340,170, + 0,2420,2419,1,0,0,0,2420,2421,1,0,0,0,2421,2423,1,0,0,0,2422,2351, + 1,0,0,0,2422,2387,1,0,0,0,2423,325,1,0,0,0,2424,2425,3,336,168,0, + 2425,2426,3,330,165,0,2426,2429,1,0,0,0,2427,2429,3,330,165,0,2428, + 2424,1,0,0,0,2428,2427,1,0,0,0,2429,327,1,0,0,0,2430,2432,3,452, + 226,0,2431,2433,3,396,198,0,2432,2431,1,0,0,0,2432,2433,1,0,0,0, + 2433,2435,1,0,0,0,2434,2436,3,444,222,0,2435,2434,1,0,0,0,2435,2436, + 1,0,0,0,2436,2438,1,0,0,0,2437,2439,3,478,239,0,2438,2437,1,0,0, + 0,2438,2439,1,0,0,0,2439,2441,1,0,0,0,2440,2442,3,486,243,0,2441, + 2440,1,0,0,0,2441,2442,1,0,0,0,2442,2444,1,0,0,0,2443,2445,3,470, + 235,0,2444,2443,1,0,0,0,2444,2445,1,0,0,0,2445,2447,1,0,0,0,2446, + 2448,3,488,244,0,2447,2446,1,0,0,0,2447,2448,1,0,0,0,2448,2455,1, + 0,0,0,2449,2450,5,399,0,0,2450,2451,3,330,165,0,2451,2452,5,400, + 0,0,2452,2455,1,0,0,0,2453,2455,3,446,223,0,2454,2430,1,0,0,0,2454, + 2449,1,0,0,0,2454,2453,1,0,0,0,2455,329,1,0,0,0,2456,2458,3,328, + 164,0,2457,2459,3,332,166,0,2458,2457,1,0,0,0,2458,2459,1,0,0,0, + 2459,2461,1,0,0,0,2460,2462,3,498,249,0,2461,2460,1,0,0,0,2461,2462, + 1,0,0,0,2462,2464,1,0,0,0,2463,2465,3,502,251,0,2464,2463,1,0,0, + 0,2464,2465,1,0,0,0,2465,2467,1,0,0,0,2466,2468,3,504,252,0,2467, + 2466,1,0,0,0,2467,2468,1,0,0,0,2468,2470,1,0,0,0,2469,2471,3,506, + 253,0,2470,2469,1,0,0,0,2470,2471,1,0,0,0,2471,2473,1,0,0,0,2472, + 2474,3,340,170,0,2473,2472,1,0,0,0,2473,2474,1,0,0,0,2474,331,1, + 0,0,0,2475,2476,3,312,156,0,2476,2477,3,328,164,0,2477,2479,1,0, + 0,0,2478,2475,1,0,0,0,2479,2480,1,0,0,0,2480,2478,1,0,0,0,2480,2481, + 1,0,0,0,2481,333,1,0,0,0,2482,2484,3,318,159,0,2483,2482,1,0,0,0, + 2483,2484,1,0,0,0,2484,2485,1,0,0,0,2485,2486,3,330,165,0,2486,335, + 1,0,0,0,2487,2504,5,161,0,0,2488,2489,5,235,0,0,2489,2491,3,338, + 169,0,2490,2492,3,32,16,0,2491,2490,1,0,0,0,2491,2492,1,0,0,0,2492, + 2505,1,0,0,0,2493,2495,5,166,0,0,2494,2496,5,329,0,0,2495,2494,1, + 0,0,0,2495,2496,1,0,0,0,2496,2497,1,0,0,0,2497,2502,3,576,288,0, + 2498,2499,5,399,0,0,2499,2500,3,220,110,0,2500,2501,5,400,0,0,2501, + 2503,1,0,0,0,2502,2498,1,0,0,0,2502,2503,1,0,0,0,2503,2505,1,0,0, + 0,2504,2488,1,0,0,0,2504,2493,1,0,0,0,2505,337,1,0,0,0,2506,2508, + 5,188,0,0,2507,2506,1,0,0,0,2507,2508,1,0,0,0,2508,2509,1,0,0,0, + 2509,2510,5,93,0,0,2510,2512,5,426,0,0,2511,2513,3,184,92,0,2512, + 2511,1,0,0,0,2512,2513,1,0,0,0,2513,2515,1,0,0,0,2514,2516,3,212, + 106,0,2515,2514,1,0,0,0,2515,2516,1,0,0,0,2516,2520,1,0,0,0,2517, + 2518,5,329,0,0,2518,2520,3,576,288,0,2519,2507,1,0,0,0,2519,2517, + 1,0,0,0,2520,339,1,0,0,0,2521,2530,5,185,0,0,2522,2523,5,431,0,0, + 2523,2525,5,397,0,0,2524,2522,1,0,0,0,2524,2525,1,0,0,0,2525,2526, + 1,0,0,0,2526,2531,5,431,0,0,2527,2528,5,431,0,0,2528,2529,5,223, + 0,0,2529,2531,5,431,0,0,2530,2524,1,0,0,0,2530,2527,1,0,0,0,2531, + 341,1,0,0,0,2532,2533,3,222,111,0,2533,2534,5,405,0,0,2534,2535, + 3,344,172,0,2535,343,1,0,0,0,2536,2539,5,83,0,0,2537,2539,3,546, + 273,0,2538,2536,1,0,0,0,2538,2537,1,0,0,0,2539,345,1,0,0,0,2540, + 2541,5,304,0,0,2541,2546,3,342,171,0,2542,2543,5,397,0,0,2543,2545, + 3,342,171,0,2544,2542,1,0,0,0,2545,2548,1,0,0,0,2546,2544,1,0,0, + 0,2546,2547,1,0,0,0,2547,347,1,0,0,0,2548,2546,1,0,0,0,2549,2550, + 5,318,0,0,2550,2559,5,344,0,0,2551,2556,3,350,175,0,2552,2553,5, + 397,0,0,2553,2555,3,350,175,0,2554,2552,1,0,0,0,2555,2558,1,0,0, + 0,2556,2554,1,0,0,0,2556,2557,1,0,0,0,2557,2560,1,0,0,0,2558,2556, + 1,0,0,0,2559,2551,1,0,0,0,2559,2560,1,0,0,0,2560,2573,1,0,0,0,2561, + 2563,5,48,0,0,2562,2564,5,389,0,0,2563,2562,1,0,0,0,2563,2564,1, + 0,0,0,2564,2573,1,0,0,0,2565,2567,5,289,0,0,2566,2568,5,389,0,0, + 2567,2566,1,0,0,0,2567,2568,1,0,0,0,2568,2573,1,0,0,0,2569,2570, + 5,304,0,0,2570,2571,5,22,0,0,2571,2573,7,27,0,0,2572,2549,1,0,0, + 0,2572,2561,1,0,0,0,2572,2565,1,0,0,0,2572,2569,1,0,0,0,2573,349, + 1,0,0,0,2574,2575,5,168,0,0,2575,2576,5,182,0,0,2576,2580,5,312, + 0,0,2577,2578,5,261,0,0,2578,2580,7,28,0,0,2579,2574,1,0,0,0,2579, + 2577,1,0,0,0,2580,351,1,0,0,0,2581,2584,3,356,178,0,2582,2584,3, + 358,179,0,2583,2581,1,0,0,0,2583,2582,1,0,0,0,2584,2587,1,0,0,0, + 2585,2583,1,0,0,0,2585,2586,1,0,0,0,2586,2589,1,0,0,0,2587,2585, + 1,0,0,0,2588,2590,3,354,177,0,2589,2588,1,0,0,0,2589,2590,1,0,0, + 0,2590,353,1,0,0,0,2591,2592,5,383,0,0,2592,2593,5,216,0,0,2593, + 2596,5,201,0,0,2594,2595,5,11,0,0,2595,2597,3,536,268,0,2596,2594, + 1,0,0,0,2596,2597,1,0,0,0,2597,2598,1,0,0,0,2598,2599,5,335,0,0, + 2599,2601,5,161,0,0,2600,2602,3,234,117,0,2601,2600,1,0,0,0,2601, + 2602,1,0,0,0,2602,2603,1,0,0,0,2603,2604,5,374,0,0,2604,2605,3,494, + 247,0,2605,355,1,0,0,0,2606,2607,5,383,0,0,2607,2608,5,201,0,0,2608, + 2609,5,11,0,0,2609,2610,3,536,268,0,2610,2614,5,335,0,0,2611,2612, + 5,365,0,0,2612,2615,3,346,173,0,2613,2615,5,86,0,0,2614,2611,1,0, + 0,0,2614,2613,1,0,0,0,2615,357,1,0,0,0,2616,2617,5,383,0,0,2617, + 2618,5,201,0,0,2618,2622,5,335,0,0,2619,2620,5,365,0,0,2620,2623, + 3,346,173,0,2621,2623,5,86,0,0,2622,2619,1,0,0,0,2622,2621,1,0,0, + 0,2623,359,1,0,0,0,2624,2655,5,9,0,0,2625,2626,5,329,0,0,2626,2627, + 3,426,213,0,2627,2628,3,362,181,0,2628,2656,1,0,0,0,2629,2630,5, + 378,0,0,2630,2632,3,430,215,0,2631,2633,5,17,0,0,2632,2631,1,0,0, + 0,2632,2633,1,0,0,0,2633,2634,1,0,0,0,2634,2635,3,366,183,0,2635, + 2656,1,0,0,0,2636,2637,5,202,0,0,2637,2638,5,378,0,0,2638,2642,3, + 430,215,0,2639,2643,3,38,19,0,2640,2643,3,40,20,0,2641,2643,5,265, + 0,0,2642,2639,1,0,0,0,2642,2640,1,0,0,0,2642,2641,1,0,0,0,2643,2656, + 1,0,0,0,2644,2645,3,64,32,0,2645,2646,3,368,184,0,2646,2656,1,0, + 0,0,2647,2648,5,69,0,0,2648,2656,3,370,185,0,2649,2650,5,155,0,0, + 2650,2651,3,590,295,0,2651,2652,5,224,0,0,2652,2653,3,576,288,0, + 2653,2654,5,265,0,0,2654,2656,1,0,0,0,2655,2625,1,0,0,0,2655,2629, + 1,0,0,0,2655,2636,1,0,0,0,2655,2644,1,0,0,0,2655,2647,1,0,0,0,2655, + 2649,1,0,0,0,2656,361,1,0,0,0,2657,2658,5,274,0,0,2658,2659,5,341, + 0,0,2659,2747,3,428,214,0,2660,2661,5,102,0,0,2661,2747,5,239,0, + 0,2662,2747,3,374,187,0,2663,2665,5,4,0,0,2664,2666,3,32,16,0,2665, + 2664,1,0,0,0,2665,2666,1,0,0,0,2666,2671,1,0,0,0,2667,2669,3,578, + 289,0,2668,2670,3,372,186,0,2669,2668,1,0,0,0,2669,2670,1,0,0,0, + 2670,2672,1,0,0,0,2671,2667,1,0,0,0,2672,2673,1,0,0,0,2673,2671, + 1,0,0,0,2673,2674,1,0,0,0,2674,2747,1,0,0,0,2675,2679,5,342,0,0, + 2676,2678,3,578,289,0,2677,2676,1,0,0,0,2678,2681,1,0,0,0,2679,2677, + 1,0,0,0,2679,2680,1,0,0,0,2680,2747,1,0,0,0,2681,2679,1,0,0,0,2682, + 2686,5,15,0,0,2683,2685,3,578,289,0,2684,2683,1,0,0,0,2685,2688, + 1,0,0,0,2686,2684,1,0,0,0,2686,2687,1,0,0,0,2687,2747,1,0,0,0,2688, + 2686,1,0,0,0,2689,2693,5,353,0,0,2690,2692,3,578,289,0,2691,2690, + 1,0,0,0,2692,2695,1,0,0,0,2693,2691,1,0,0,0,2693,2694,1,0,0,0,2694, + 2747,1,0,0,0,2695,2693,1,0,0,0,2696,2697,5,304,0,0,2697,2698,5,332, + 0,0,2698,2747,3,192,96,0,2699,2700,5,363,0,0,2700,2702,5,332,0,0, + 2701,2703,3,30,15,0,2702,2701,1,0,0,0,2702,2703,1,0,0,0,2703,2704, + 1,0,0,0,2704,2747,3,192,96,0,2705,2747,3,182,91,0,2706,2709,5,216, + 0,0,2707,2710,5,310,0,0,2708,2710,3,36,18,0,2709,2707,1,0,0,0,2709, + 2708,1,0,0,0,2710,2747,1,0,0,0,2711,2712,5,113,0,0,2712,2713,3,578, + 289,0,2713,2714,5,387,0,0,2714,2715,5,329,0,0,2715,2716,3,426,213, + 0,2716,2747,1,0,0,0,2717,2718,5,237,0,0,2718,2719,5,45,0,0,2719, + 2720,5,399,0,0,2720,2721,3,276,138,0,2721,2722,5,400,0,0,2722,2747, + 1,0,0,0,2723,2724,5,101,0,0,2724,2725,5,55,0,0,2725,2747,3,590,295, + 0,2726,2729,5,4,0,0,2727,2730,3,254,127,0,2728,2730,3,244,122,0, + 2729,2727,1,0,0,0,2729,2728,1,0,0,0,2730,2747,1,0,0,0,2731,2733, + 3,578,289,0,2732,2731,1,0,0,0,2732,2733,1,0,0,0,2733,2734,1,0,0, + 0,2734,2747,3,364,182,0,2735,2736,5,304,0,0,2736,2737,5,236,0,0, + 2737,2747,3,112,56,0,2738,2739,5,304,0,0,2739,2740,5,237,0,0,2740, + 2741,5,316,0,0,2741,2742,5,399,0,0,2742,2743,3,176,88,0,2743,2744, + 5,400,0,0,2744,2747,1,0,0,0,2745,2747,3,378,189,0,2746,2657,1,0, + 0,0,2746,2660,1,0,0,0,2746,2662,1,0,0,0,2746,2663,1,0,0,0,2746,2675, + 1,0,0,0,2746,2682,1,0,0,0,2746,2689,1,0,0,0,2746,2696,1,0,0,0,2746, + 2699,1,0,0,0,2746,2705,1,0,0,0,2746,2706,1,0,0,0,2746,2711,1,0,0, + 0,2746,2717,1,0,0,0,2746,2723,1,0,0,0,2746,2726,1,0,0,0,2746,2732, + 1,0,0,0,2746,2735,1,0,0,0,2746,2738,1,0,0,0,2746,2745,1,0,0,0,2747, + 363,1,0,0,0,2748,2749,5,304,0,0,2749,2750,5,129,0,0,2750,2882,3, + 380,190,0,2751,2752,5,304,0,0,2752,2753,5,189,0,0,2753,2882,5,426, + 0,0,2754,2882,5,53,0,0,2755,2765,5,304,0,0,2756,2757,5,301,0,0,2757, + 2761,5,426,0,0,2758,2759,5,387,0,0,2759,2760,5,302,0,0,2760,2762, + 3,192,96,0,2761,2758,1,0,0,0,2761,2762,1,0,0,0,2762,2766,1,0,0,0, + 2763,2764,5,302,0,0,2764,2766,3,192,96,0,2765,2756,1,0,0,0,2765, + 2763,1,0,0,0,2766,2882,1,0,0,0,2767,2768,5,363,0,0,2768,2769,5,302, + 0,0,2769,2882,3,192,96,0,2770,2771,5,274,0,0,2771,2772,5,341,0,0, + 2772,2882,3,578,289,0,2773,2774,5,166,0,0,2774,2775,5,431,0,0,2775, + 2882,5,31,0,0,2776,2777,5,304,0,0,2777,2778,5,310,0,0,2778,2779, + 5,189,0,0,2779,2780,5,399,0,0,2780,2785,3,376,188,0,2781,2782,5, + 397,0,0,2782,2784,3,376,188,0,2783,2781,1,0,0,0,2784,2787,1,0,0, + 0,2785,2783,1,0,0,0,2785,2786,1,0,0,0,2786,2788,1,0,0,0,2787,2785, + 1,0,0,0,2788,2789,5,400,0,0,2789,2882,1,0,0,0,2790,2791,5,216,0, + 0,2791,2882,7,29,0,0,2792,2882,3,180,90,0,2793,2794,5,49,0,0,2794, + 2797,5,426,0,0,2795,2796,5,11,0,0,2796,2798,5,380,0,0,2797,2795, + 1,0,0,0,2797,2798,1,0,0,0,2798,2803,1,0,0,0,2799,2800,5,42,0,0,2800, + 2801,5,166,0,0,2801,2802,5,431,0,0,2802,2804,5,31,0,0,2803,2799, + 1,0,0,0,2803,2804,1,0,0,0,2804,2806,1,0,0,0,2805,2807,3,498,249, + 0,2806,2805,1,0,0,0,2806,2807,1,0,0,0,2807,2810,1,0,0,0,2808,2809, + 5,246,0,0,2809,2811,5,426,0,0,2810,2808,1,0,0,0,2810,2811,1,0,0, + 0,2811,2816,1,0,0,0,2812,2813,5,387,0,0,2813,2814,5,235,0,0,2814, + 2815,5,332,0,0,2815,2817,3,192,96,0,2816,2812,1,0,0,0,2816,2817, + 1,0,0,0,2817,2882,1,0,0,0,2818,2819,5,365,0,0,2819,2820,5,319,0, + 0,2820,2822,5,134,0,0,2821,2823,5,45,0,0,2822,2821,1,0,0,0,2822, + 2823,1,0,0,0,2823,2824,1,0,0,0,2824,2825,3,222,111,0,2825,2826,5, + 304,0,0,2826,2829,3,192,96,0,2827,2828,5,47,0,0,2828,2830,5,426, + 0,0,2829,2827,1,0,0,0,2829,2830,1,0,0,0,2830,2882,1,0,0,0,2831,2832, + 5,365,0,0,2832,2833,5,319,0,0,2833,2834,5,304,0,0,2834,2882,3,192, + 96,0,2835,2837,5,38,0,0,2836,2838,5,45,0,0,2837,2836,1,0,0,0,2837, + 2838,1,0,0,0,2838,2839,1,0,0,0,2839,2840,3,222,111,0,2840,2841,3, + 228,114,0,2841,2843,3,300,150,0,2842,2844,3,284,142,0,2843,2842, + 1,0,0,0,2843,2844,1,0,0,0,2844,2847,1,0,0,0,2845,2846,5,47,0,0,2846, + 2848,5,426,0,0,2847,2845,1,0,0,0,2847,2848,1,0,0,0,2848,2852,1,0, + 0,0,2849,2853,5,130,0,0,2850,2851,5,6,0,0,2851,2853,3,590,295,0, + 2852,2849,1,0,0,0,2852,2850,1,0,0,0,2852,2853,1,0,0,0,2853,2855, + 1,0,0,0,2854,2856,3,34,17,0,2855,2854,1,0,0,0,2855,2856,1,0,0,0, + 2856,2882,1,0,0,0,2857,2860,5,4,0,0,2858,2860,5,278,0,0,2859,2857, + 1,0,0,0,2859,2858,1,0,0,0,2860,2861,1,0,0,0,2861,2862,5,46,0,0,2862, + 2863,5,399,0,0,2863,2864,3,214,107,0,2864,2866,5,400,0,0,2865,2867, + 3,34,17,0,2866,2865,1,0,0,0,2866,2867,1,0,0,0,2867,2882,1,0,0,0, + 2868,2869,5,365,0,0,2869,2871,5,46,0,0,2870,2872,3,34,17,0,2871, + 2870,1,0,0,0,2871,2872,1,0,0,0,2872,2882,1,0,0,0,2873,2879,3,238, + 119,0,2874,2876,5,218,0,0,2875,2877,5,34,0,0,2876,2875,1,0,0,0,2876, + 2877,1,0,0,0,2877,2880,1,0,0,0,2878,2880,5,222,0,0,2879,2874,1,0, + 0,0,2879,2878,1,0,0,0,2880,2882,1,0,0,0,2881,2748,1,0,0,0,2881,2751, + 1,0,0,0,2881,2754,1,0,0,0,2881,2755,1,0,0,0,2881,2767,1,0,0,0,2881, + 2770,1,0,0,0,2881,2773,1,0,0,0,2881,2776,1,0,0,0,2881,2790,1,0,0, + 0,2881,2792,1,0,0,0,2881,2793,1,0,0,0,2881,2818,1,0,0,0,2881,2831, + 1,0,0,0,2881,2835,1,0,0,0,2881,2859,1,0,0,0,2881,2868,1,0,0,0,2881, + 2873,1,0,0,0,2882,365,1,0,0,0,2883,2884,5,304,0,0,2884,2885,5,332, + 0,0,2885,2910,3,192,96,0,2886,2887,5,363,0,0,2887,2889,5,332,0,0, + 2888,2890,3,30,15,0,2889,2888,1,0,0,0,2889,2890,1,0,0,0,2890,2891, + 1,0,0,0,2891,2910,3,192,96,0,2892,2893,5,274,0,0,2893,2894,5,341, + 0,0,2894,2910,3,428,214,0,2895,2897,5,4,0,0,2896,2898,3,32,16,0, + 2897,2896,1,0,0,0,2897,2898,1,0,0,0,2898,2903,1,0,0,0,2899,2901, + 3,578,289,0,2900,2902,3,372,186,0,2901,2900,1,0,0,0,2901,2902,1, + 0,0,0,2902,2904,1,0,0,0,2903,2899,1,0,0,0,2904,2905,1,0,0,0,2905, + 2903,1,0,0,0,2905,2906,1,0,0,0,2906,2910,1,0,0,0,2907,2910,3,374, + 187,0,2908,2910,3,334,167,0,2909,2883,1,0,0,0,2909,2886,1,0,0,0, + 2909,2892,1,0,0,0,2909,2895,1,0,0,0,2909,2907,1,0,0,0,2909,2908, + 1,0,0,0,2910,367,1,0,0,0,2911,2912,3,420,210,0,2912,2913,5,304,0, + 0,2913,2914,5,76,0,0,2914,2915,3,196,98,0,2915,2927,1,0,0,0,2916, + 2917,3,420,210,0,2917,2918,5,304,0,0,2918,2919,5,236,0,0,2919,2920, + 3,114,57,0,2920,2927,1,0,0,0,2921,2922,3,420,210,0,2922,2923,5,304, + 0,0,2923,2924,7,30,0,0,2924,2925,5,426,0,0,2925,2927,1,0,0,0,2926, + 2911,1,0,0,0,2926,2916,1,0,0,0,2926,2921,1,0,0,0,2927,369,1,0,0, + 0,2928,2929,3,420,210,0,2929,2930,5,304,0,0,2930,2931,5,77,0,0,2931, + 2932,3,196,98,0,2932,2944,1,0,0,0,2933,2934,3,420,210,0,2934,2935, + 5,304,0,0,2935,2936,5,236,0,0,2936,2937,3,114,57,0,2937,2944,1,0, + 0,0,2938,2939,3,420,210,0,2939,2940,5,304,0,0,2940,2941,5,367,0, + 0,2941,2942,5,426,0,0,2942,2944,1,0,0,0,2943,2928,1,0,0,0,2943,2933, + 1,0,0,0,2943,2938,1,0,0,0,2944,371,1,0,0,0,2945,2946,5,189,0,0,2946, + 2947,5,426,0,0,2947,373,1,0,0,0,2948,2950,5,101,0,0,2949,2951,3, + 30,15,0,2950,2949,1,0,0,0,2950,2951,1,0,0,0,2951,2952,1,0,0,0,2952, + 2953,5,237,0,0,2953,2959,3,582,291,0,2954,2955,5,397,0,0,2955,2956, + 5,237,0,0,2956,2958,3,582,291,0,2957,2954,1,0,0,0,2958,2961,1,0, + 0,0,2959,2957,1,0,0,0,2959,2960,1,0,0,0,2960,2964,1,0,0,0,2961,2959, + 1,0,0,0,2962,2963,5,152,0,0,2963,2965,5,254,0,0,2964,2962,1,0,0, + 0,2964,2965,1,0,0,0,2965,2967,1,0,0,0,2966,2968,5,255,0,0,2967,2966, + 1,0,0,0,2967,2968,1,0,0,0,2968,2970,1,0,0,0,2969,2971,3,14,7,0,2970, + 2969,1,0,0,0,2970,2971,1,0,0,0,2971,375,1,0,0,0,2972,2975,3,528, + 264,0,2973,2975,3,260,130,0,2974,2972,1,0,0,0,2974,2973,1,0,0,0, + 2975,2976,1,0,0,0,2976,2977,5,405,0,0,2977,2978,5,426,0,0,2978,377, + 1,0,0,0,2979,2989,5,115,0,0,2980,2981,5,289,0,0,2981,2982,5,399, + 0,0,2982,2990,7,31,0,0,2983,2984,5,118,0,0,2984,2985,5,399,0,0,2985, + 2990,5,426,0,0,2986,2987,5,306,0,0,2987,2988,5,399,0,0,2988,2990, + 5,431,0,0,2989,2980,1,0,0,0,2989,2983,1,0,0,0,2989,2986,1,0,0,0, + 2990,2991,1,0,0,0,2991,2992,5,400,0,0,2992,379,1,0,0,0,2993,2994, + 5,160,0,0,2994,2995,5,426,0,0,2995,2996,5,233,0,0,2996,2997,5,426, + 0,0,2997,2998,5,301,0,0,2998,3003,5,426,0,0,2999,3000,5,159,0,0, + 3000,3001,5,426,0,0,3001,3002,5,232,0,0,3002,3004,5,426,0,0,3003, + 2999,1,0,0,0,3003,3004,1,0,0,0,3004,3007,1,0,0,0,3005,3007,3,590, + 295,0,3006,2993,1,0,0,0,3006,3005,1,0,0,0,3007,381,1,0,0,0,3008, + 3009,5,184,0,0,3009,3018,5,128,0,0,3010,3011,5,184,0,0,3011,3012, + 5,128,0,0,3012,3013,3,590,295,0,3013,3014,5,426,0,0,3014,3018,1, + 0,0,0,3015,3016,5,184,0,0,3016,3018,3,426,213,0,3017,3008,1,0,0, + 0,3017,3010,1,0,0,0,3017,3015,1,0,0,0,3018,383,1,0,0,0,3019,3021, + 5,58,0,0,3020,3022,5,333,0,0,3021,3020,1,0,0,0,3021,3022,1,0,0,0, + 3022,3024,1,0,0,0,3023,3025,5,345,0,0,3024,3023,1,0,0,0,3024,3025, + 1,0,0,0,3025,3027,1,0,0,0,3026,3028,5,123,0,0,3027,3026,1,0,0,0, + 3027,3028,1,0,0,0,3028,3030,1,0,0,0,3029,3031,5,195,0,0,3030,3029, + 1,0,0,0,3030,3031,1,0,0,0,3031,3032,1,0,0,0,3032,3034,5,329,0,0, + 3033,3035,3,32,16,0,3034,3033,1,0,0,0,3034,3035,1,0,0,0,3035,3036, + 1,0,0,0,3036,3093,3,428,214,0,3037,3039,3,382,191,0,3038,3040,3, + 172,86,0,3039,3038,1,0,0,0,3039,3040,1,0,0,0,3040,3042,1,0,0,0,3041, + 3043,3,184,92,0,3042,3041,1,0,0,0,3042,3043,1,0,0,0,3043,3045,1, + 0,0,0,3044,3046,3,212,106,0,3045,3044,1,0,0,0,3045,3046,1,0,0,0, + 3046,3048,1,0,0,0,3047,3049,3,372,186,0,3048,3047,1,0,0,0,3048,3049, + 1,0,0,0,3049,3051,1,0,0,0,3050,3052,3,190,95,0,3051,3050,1,0,0,0, + 3051,3052,1,0,0,0,3052,3054,1,0,0,0,3053,3055,3,170,85,0,3054,3053, + 1,0,0,0,3054,3055,1,0,0,0,3055,3094,1,0,0,0,3056,3057,5,399,0,0, + 3057,3058,3,216,108,0,3058,3059,5,400,0,0,3059,3061,1,0,0,0,3060, + 3056,1,0,0,0,3060,3061,1,0,0,0,3061,3063,1,0,0,0,3062,3064,3,168, + 84,0,3063,3062,1,0,0,0,3063,3064,1,0,0,0,3064,3066,1,0,0,0,3065, + 3067,3,172,86,0,3066,3065,1,0,0,0,3066,3067,1,0,0,0,3067,3069,1, + 0,0,0,3068,3070,3,180,90,0,3069,3068,1,0,0,0,3069,3070,1,0,0,0,3070, + 3072,1,0,0,0,3071,3073,3,182,91,0,3072,3071,1,0,0,0,3072,3073,1, + 0,0,0,3073,3075,1,0,0,0,3074,3076,3,184,92,0,3075,3074,1,0,0,0,3075, + 3076,1,0,0,0,3076,3078,1,0,0,0,3077,3079,3,212,106,0,3078,3077,1, + 0,0,0,3078,3079,1,0,0,0,3079,3081,1,0,0,0,3080,3082,3,372,186,0, + 3081,3080,1,0,0,0,3081,3082,1,0,0,0,3082,3084,1,0,0,0,3083,3085, + 3,190,95,0,3084,3083,1,0,0,0,3084,3085,1,0,0,0,3085,3087,1,0,0,0, + 3086,3088,3,170,85,0,3087,3086,1,0,0,0,3087,3088,1,0,0,0,3088,3091, + 1,0,0,0,3089,3090,5,17,0,0,3090,3092,3,334,167,0,3091,3089,1,0,0, + 0,3091,3092,1,0,0,0,3092,3094,1,0,0,0,3093,3037,1,0,0,0,3093,3060, + 1,0,0,0,3094,385,1,0,0,0,3095,3096,5,58,0,0,3096,3098,5,69,0,0,3097, + 3099,3,32,16,0,3098,3097,1,0,0,0,3098,3099,1,0,0,0,3099,3100,1,0, + 0,0,3100,3103,3,590,295,0,3101,3102,5,352,0,0,3102,3104,5,426,0, + 0,3103,3101,1,0,0,0,3103,3104,1,0,0,0,3104,3107,1,0,0,0,3105,3106, + 5,367,0,0,3106,3108,5,426,0,0,3107,3105,1,0,0,0,3107,3108,1,0,0, + 0,3108,3111,1,0,0,0,3109,3110,5,47,0,0,3110,3112,5,426,0,0,3111, + 3109,1,0,0,0,3111,3112,1,0,0,0,3112,3116,1,0,0,0,3113,3114,5,387, + 0,0,3114,3115,5,77,0,0,3115,3117,3,196,98,0,3116,3113,1,0,0,0,3116, + 3117,1,0,0,0,3117,387,1,0,0,0,3118,3119,5,101,0,0,3119,3121,5,69, + 0,0,3120,3122,3,30,15,0,3121,3120,1,0,0,0,3121,3122,1,0,0,0,3122, + 3123,1,0,0,0,3123,3124,3,590,295,0,3124,389,1,0,0,0,3125,3126,3, + 590,295,0,3126,3127,5,395,0,0,3127,3129,1,0,0,0,3128,3125,1,0,0, + 0,3129,3132,1,0,0,0,3130,3128,1,0,0,0,3130,3131,1,0,0,0,3131,3133, + 1,0,0,0,3132,3130,1,0,0,0,3133,3134,5,415,0,0,3134,391,1,0,0,0,3135, + 3140,3,536,268,0,3136,3137,5,397,0,0,3137,3139,3,536,268,0,3138, + 3136,1,0,0,0,3139,3142,1,0,0,0,3140,3138,1,0,0,0,3140,3141,1,0,0, + 0,3141,393,1,0,0,0,3142,3140,1,0,0,0,3143,3148,3,590,295,0,3144, + 3145,5,397,0,0,3145,3147,3,590,295,0,3146,3144,1,0,0,0,3147,3150, + 1,0,0,0,3148,3146,1,0,0,0,3148,3149,1,0,0,0,3149,395,1,0,0,0,3150, + 3148,1,0,0,0,3151,3152,5,139,0,0,3152,3153,3,398,199,0,3153,397, + 1,0,0,0,3154,3155,5,359,0,0,3155,3158,3,406,203,0,3156,3157,5,397, + 0,0,3157,3159,3,406,203,0,3158,3156,1,0,0,0,3159,3160,1,0,0,0,3160, + 3158,1,0,0,0,3160,3161,1,0,0,0,3161,3164,1,0,0,0,3162,3164,3,402, + 201,0,3163,3154,1,0,0,0,3163,3162,1,0,0,0,3164,399,1,0,0,0,3165, + 3169,3,416,208,0,3166,3168,3,410,205,0,3167,3166,1,0,0,0,3168,3171, + 1,0,0,0,3169,3167,1,0,0,0,3169,3170,1,0,0,0,3170,3198,1,0,0,0,3171, + 3169,1,0,0,0,3172,3176,3,450,225,0,3173,3175,3,410,205,0,3174,3173, + 1,0,0,0,3175,3178,1,0,0,0,3176,3174,1,0,0,0,3176,3177,1,0,0,0,3177, + 3198,1,0,0,0,3178,3176,1,0,0,0,3179,3183,3,434,217,0,3180,3182,3, + 410,205,0,3181,3180,1,0,0,0,3182,3185,1,0,0,0,3183,3181,1,0,0,0, + 3183,3184,1,0,0,0,3184,3198,1,0,0,0,3185,3183,1,0,0,0,3186,3190, + 3,440,220,0,3187,3189,3,410,205,0,3188,3187,1,0,0,0,3189,3192,1, + 0,0,0,3190,3188,1,0,0,0,3190,3191,1,0,0,0,3191,3198,1,0,0,0,3192, + 3190,1,0,0,0,3193,3194,5,399,0,0,3194,3195,3,402,201,0,3195,3196, + 5,400,0,0,3196,3198,1,0,0,0,3197,3165,1,0,0,0,3197,3172,1,0,0,0, + 3197,3179,1,0,0,0,3197,3186,1,0,0,0,3197,3193,1,0,0,0,3198,401,1, + 0,0,0,3199,3217,3,400,200,0,3200,3201,3,408,204,0,3201,3213,3,404, + 202,0,3202,3209,5,224,0,0,3203,3210,3,536,268,0,3204,3207,3,226, + 113,0,3205,3206,5,405,0,0,3206,3208,3,226,113,0,3207,3205,1,0,0, + 0,3207,3208,1,0,0,0,3208,3210,1,0,0,0,3209,3203,1,0,0,0,3209,3204, + 1,0,0,0,3210,3214,1,0,0,0,3211,3212,5,370,0,0,3212,3214,3,234,117, + 0,3213,3202,1,0,0,0,3213,3211,1,0,0,0,3213,3214,1,0,0,0,3214,3216, + 1,0,0,0,3215,3200,1,0,0,0,3216,3219,1,0,0,0,3217,3215,1,0,0,0,3217, + 3218,1,0,0,0,3218,403,1,0,0,0,3219,3217,1,0,0,0,3220,3225,3,416, + 208,0,3221,3225,3,450,225,0,3222,3225,3,434,217,0,3223,3225,3,440, + 220,0,3224,3220,1,0,0,0,3224,3221,1,0,0,0,3224,3222,1,0,0,0,3224, + 3223,1,0,0,0,3225,3229,1,0,0,0,3226,3228,3,410,205,0,3227,3226,1, + 0,0,0,3228,3231,1,0,0,0,3229,3227,1,0,0,0,3229,3230,1,0,0,0,3230, + 405,1,0,0,0,3231,3229,1,0,0,0,3232,3234,5,250,0,0,3233,3232,1,0, + 0,0,3233,3234,1,0,0,0,3234,3235,1,0,0,0,3235,3237,3,424,212,0,3236, + 3238,3,414,207,0,3237,3236,1,0,0,0,3237,3238,1,0,0,0,3238,3243,1, + 0,0,0,3239,3241,5,17,0,0,3240,3239,1,0,0,0,3240,3241,1,0,0,0,3241, + 3242,1,0,0,0,3242,3244,3,590,295,0,3243,3240,1,0,0,0,3243,3244,1, + 0,0,0,3244,3245,1,0,0,0,3245,3246,5,399,0,0,3246,3247,3,392,196, + 0,3247,3248,5,400,0,0,3248,407,1,0,0,0,3249,3264,5,397,0,0,3250, + 3261,5,157,0,0,3251,3261,5,60,0,0,3252,3254,7,32,0,0,3253,3255,5, + 231,0,0,3254,3253,1,0,0,0,3254,3255,1,0,0,0,3255,3261,1,0,0,0,3256, + 3258,5,180,0,0,3257,3259,7,33,0,0,3258,3257,1,0,0,0,3258,3259,1, + 0,0,0,3259,3261,1,0,0,0,3260,3250,1,0,0,0,3260,3251,1,0,0,0,3260, + 3252,1,0,0,0,3260,3256,1,0,0,0,3260,3261,1,0,0,0,3261,3262,1,0,0, + 0,3262,3264,5,171,0,0,3263,3249,1,0,0,0,3263,3260,1,0,0,0,3264,409, + 1,0,0,0,3265,3266,5,178,0,0,3266,3267,5,378,0,0,3267,3268,5,231, + 0,0,3268,3269,3,508,254,0,3269,3279,3,412,206,0,3270,3271,5,17,0, + 0,3271,3276,3,590,295,0,3272,3273,5,397,0,0,3273,3275,3,590,295, + 0,3274,3272,1,0,0,0,3275,3278,1,0,0,0,3276,3274,1,0,0,0,3276,3277, + 1,0,0,0,3277,3280,1,0,0,0,3278,3276,1,0,0,0,3279,3270,1,0,0,0,3279, + 3280,1,0,0,0,3280,3323,1,0,0,0,3281,3283,5,397,0,0,3282,3281,1,0, + 0,0,3282,3283,1,0,0,0,3283,3284,1,0,0,0,3284,3320,5,178,0,0,3285, + 3286,5,378,0,0,3286,3287,3,508,254,0,3287,3297,3,412,206,0,3288, + 3289,5,17,0,0,3289,3294,3,590,295,0,3290,3291,5,397,0,0,3291,3293, + 3,590,295,0,3292,3290,1,0,0,0,3293,3296,1,0,0,0,3294,3292,1,0,0, + 0,3294,3295,1,0,0,0,3295,3298,1,0,0,0,3296,3294,1,0,0,0,3297,3288, + 1,0,0,0,3297,3298,1,0,0,0,3298,3321,1,0,0,0,3299,3300,5,329,0,0, + 3300,3301,5,399,0,0,3301,3302,3,446,223,0,3302,3304,5,400,0,0,3303, + 3305,5,17,0,0,3304,3303,1,0,0,0,3304,3305,1,0,0,0,3305,3306,1,0, + 0,0,3306,3318,3,412,206,0,3307,3308,5,399,0,0,3308,3313,3,590,295, + 0,3309,3310,5,397,0,0,3310,3312,3,590,295,0,3311,3309,1,0,0,0,3312, + 3315,1,0,0,0,3313,3311,1,0,0,0,3313,3314,1,0,0,0,3314,3316,1,0,0, + 0,3315,3313,1,0,0,0,3316,3317,5,400,0,0,3317,3319,1,0,0,0,3318,3307, + 1,0,0,0,3318,3319,1,0,0,0,3319,3321,1,0,0,0,3320,3285,1,0,0,0,3320, + 3299,1,0,0,0,3321,3323,1,0,0,0,3322,3265,1,0,0,0,3322,3282,1,0,0, + 0,3323,411,1,0,0,0,3324,3325,3,590,295,0,3325,413,1,0,0,0,3326,3327, + 5,331,0,0,3327,3328,5,399,0,0,3328,3329,5,30,0,0,3329,3330,5,431, + 0,0,3330,3331,5,230,0,0,3331,3332,5,221,0,0,3332,3342,5,431,0,0, + 3333,3334,5,224,0,0,3334,3339,3,536,268,0,3335,3336,5,397,0,0,3336, + 3338,3,536,268,0,3337,3335,1,0,0,0,3338,3341,1,0,0,0,3339,3337,1, + 0,0,0,3339,3340,1,0,0,0,3340,3343,1,0,0,0,3341,3339,1,0,0,0,3342, + 3333,1,0,0,0,3342,3343,1,0,0,0,3343,3344,1,0,0,0,3344,3354,5,400, + 0,0,3345,3346,5,331,0,0,3346,3350,5,399,0,0,3347,3348,5,431,0,0, + 3348,3351,7,34,0,0,3349,3351,5,430,0,0,3350,3347,1,0,0,0,3350,3349, + 1,0,0,0,3351,3352,1,0,0,0,3352,3354,5,400,0,0,3353,3326,1,0,0,0, + 3353,3345,1,0,0,0,3354,415,1,0,0,0,3355,3357,3,424,212,0,3356,3358, + 3,192,96,0,3357,3356,1,0,0,0,3357,3358,1,0,0,0,3358,3360,1,0,0,0, + 3359,3361,3,414,207,0,3360,3359,1,0,0,0,3360,3361,1,0,0,0,3361,3363, + 1,0,0,0,3362,3364,3,418,209,0,3363,3362,1,0,0,0,3363,3364,1,0,0, + 0,3364,3369,1,0,0,0,3365,3367,5,17,0,0,3366,3365,1,0,0,0,3366,3367, + 1,0,0,0,3367,3368,1,0,0,0,3368,3370,3,590,295,0,3369,3366,1,0,0, + 0,3369,3370,1,0,0,0,3370,417,1,0,0,0,3371,3381,5,134,0,0,3372,3373, + 5,327,0,0,3373,3374,5,17,0,0,3374,3375,5,221,0,0,3375,3382,3,536, + 268,0,3376,3377,5,134,0,0,3377,3378,5,328,0,0,3378,3379,5,17,0,0, + 3379,3380,5,221,0,0,3380,3382,5,431,0,0,3381,3372,1,0,0,0,3381,3376, + 1,0,0,0,3382,419,1,0,0,0,3383,3384,3,590,295,0,3384,421,1,0,0,0, + 3385,3386,3,590,295,0,3386,423,1,0,0,0,3387,3390,3,426,213,0,3388, + 3390,3,430,215,0,3389,3387,1,0,0,0,3389,3388,1,0,0,0,3390,425,1, + 0,0,0,3391,3392,3,590,295,0,3392,3393,5,395,0,0,3393,3396,3,590, + 295,0,3394,3395,5,395,0,0,3395,3397,3,590,295,0,3396,3394,1,0,0, + 0,3396,3397,1,0,0,0,3397,3400,1,0,0,0,3398,3400,3,590,295,0,3399, + 3391,1,0,0,0,3399,3398,1,0,0,0,3400,427,1,0,0,0,3401,3402,3,590, + 295,0,3402,3403,5,395,0,0,3403,3406,3,590,295,0,3404,3405,5,395, + 0,0,3405,3407,3,590,295,0,3406,3404,1,0,0,0,3406,3407,1,0,0,0,3407, + 3410,1,0,0,0,3408,3410,3,590,295,0,3409,3401,1,0,0,0,3409,3408,1, + 0,0,0,3410,429,1,0,0,0,3411,3412,3,590,295,0,3412,3413,5,395,0,0, + 3413,3415,1,0,0,0,3414,3411,1,0,0,0,3414,3415,1,0,0,0,3415,3416, + 1,0,0,0,3416,3417,3,590,295,0,3417,431,1,0,0,0,3418,3419,3,590,295, + 0,3419,3420,5,395,0,0,3420,3422,1,0,0,0,3421,3418,1,0,0,0,3421,3422, + 1,0,0,0,3422,3423,1,0,0,0,3423,3424,3,590,295,0,3424,433,1,0,0,0, + 3425,3426,5,399,0,0,3426,3427,3,314,157,0,3427,3429,5,400,0,0,3428, + 3430,5,17,0,0,3429,3428,1,0,0,0,3429,3430,1,0,0,0,3430,3431,1,0, + 0,0,3431,3432,3,590,295,0,3432,435,1,0,0,0,3433,3435,3,500,250,0, + 3434,3436,3,498,249,0,3435,3434,1,0,0,0,3435,3436,1,0,0,0,3436,3445, + 1,0,0,0,3437,3445,3,498,249,0,3438,3440,3,504,252,0,3439,3441,3, + 506,253,0,3440,3439,1,0,0,0,3440,3441,1,0,0,0,3441,3445,1,0,0,0, + 3442,3445,3,506,253,0,3443,3445,3,502,251,0,3444,3433,1,0,0,0,3444, + 3437,1,0,0,0,3444,3438,1,0,0,0,3444,3442,1,0,0,0,3444,3443,1,0,0, + 0,3445,437,1,0,0,0,3446,3450,3,434,217,0,3447,3450,3,416,208,0,3448, + 3450,3,440,220,0,3449,3446,1,0,0,0,3449,3447,1,0,0,0,3449,3448,1, + 0,0,0,3450,439,1,0,0,0,3451,3453,3,442,221,0,3452,3454,3,590,295, + 0,3453,3452,1,0,0,0,3453,3454,1,0,0,0,3454,441,1,0,0,0,3455,3456, + 3,590,295,0,3456,3457,5,399,0,0,3457,3458,5,224,0,0,3458,3460,3, + 438,219,0,3459,3461,3,436,218,0,3460,3459,1,0,0,0,3460,3461,1,0, + 0,0,3461,3477,1,0,0,0,3462,3463,5,432,0,0,3463,3464,5,399,0,0,3464, + 3465,3,536,268,0,3465,3474,5,400,0,0,3466,3467,5,397,0,0,3467,3468, + 5,432,0,0,3468,3469,5,399,0,0,3469,3470,3,536,268,0,3470,3471,5, + 400,0,0,3471,3473,1,0,0,0,3472,3466,1,0,0,0,3473,3476,1,0,0,0,3474, + 3472,1,0,0,0,3474,3475,1,0,0,0,3475,3478,1,0,0,0,3476,3474,1,0,0, + 0,3477,3462,1,0,0,0,3477,3478,1,0,0,0,3478,3479,1,0,0,0,3479,3480, + 5,400,0,0,3480,443,1,0,0,0,3481,3484,5,384,0,0,3482,3485,3,536,268, + 0,3483,3485,3,226,113,0,3484,3482,1,0,0,0,3484,3483,1,0,0,0,3485, + 445,1,0,0,0,3486,3505,5,374,0,0,3487,3492,3,494,247,0,3488,3489, + 5,397,0,0,3489,3491,3,494,247,0,3490,3488,1,0,0,0,3491,3494,1,0, + 0,0,3492,3490,1,0,0,0,3492,3493,1,0,0,0,3493,3506,1,0,0,0,3494,3492, + 1,0,0,0,3495,3496,5,399,0,0,3496,3497,3,490,245,0,3497,3502,5,400, + 0,0,3498,3499,5,397,0,0,3499,3501,3,494,247,0,3500,3498,1,0,0,0, + 3501,3504,1,0,0,0,3502,3500,1,0,0,0,3502,3503,1,0,0,0,3503,3506, + 1,0,0,0,3504,3502,1,0,0,0,3505,3487,1,0,0,0,3505,3495,1,0,0,0,3506, + 447,1,0,0,0,3507,3508,5,329,0,0,3508,3509,5,399,0,0,3509,3510,3, + 446,223,0,3510,3511,5,400,0,0,3511,449,1,0,0,0,3512,3514,3,448,224, + 0,3513,3515,5,17,0,0,3514,3513,1,0,0,0,3514,3515,1,0,0,0,3515,3516, + 1,0,0,0,3516,3526,3,412,206,0,3517,3518,5,399,0,0,3518,3523,3,590, + 295,0,3519,3520,5,397,0,0,3520,3522,3,590,295,0,3521,3519,1,0,0, + 0,3522,3525,1,0,0,0,3523,3521,1,0,0,0,3523,3524,1,0,0,0,3524,3527, + 1,0,0,0,3525,3523,1,0,0,0,3526,3517,1,0,0,0,3526,3527,1,0,0,0,3527, + 3528,1,0,0,0,3528,3529,5,400,0,0,3529,451,1,0,0,0,3530,3532,5,299, + 0,0,3531,3533,5,436,0,0,3532,3531,1,0,0,0,3532,3533,1,0,0,0,3533, + 3540,1,0,0,0,3534,3536,7,26,0,0,3535,3534,1,0,0,0,3535,3536,1,0, + 0,0,3536,3537,1,0,0,0,3537,3541,3,456,228,0,3538,3539,5,347,0,0, + 3539,3541,3,454,227,0,3540,3535,1,0,0,0,3540,3538,1,0,0,0,3541,3544, + 1,0,0,0,3542,3544,3,464,232,0,3543,3530,1,0,0,0,3543,3542,1,0,0, + 0,3544,453,1,0,0,0,3545,3546,5,399,0,0,3546,3547,3,468,234,0,3547, + 3548,5,400,0,0,3548,3549,3,184,92,0,3549,3550,5,267,0,0,3550,3551, + 5,426,0,0,3551,3552,5,370,0,0,3552,3565,5,426,0,0,3553,3563,5,17, + 0,0,3554,3557,5,399,0,0,3555,3558,3,394,197,0,3556,3558,3,214,107, + 0,3557,3555,1,0,0,0,3557,3556,1,0,0,0,3558,3559,1,0,0,0,3559,3560, + 5,400,0,0,3560,3564,1,0,0,0,3561,3564,3,394,197,0,3562,3564,3,214, + 107,0,3563,3554,1,0,0,0,3563,3561,1,0,0,0,3563,3562,1,0,0,0,3564, + 3566,1,0,0,0,3565,3553,1,0,0,0,3565,3566,1,0,0,0,3566,3567,1,0,0, + 0,3567,3568,3,184,92,0,3568,3569,5,266,0,0,3569,3570,5,426,0,0,3570, + 455,1,0,0,0,3571,3576,3,458,229,0,3572,3573,5,397,0,0,3573,3575, + 3,458,229,0,3574,3572,1,0,0,0,3575,3578,1,0,0,0,3576,3574,1,0,0, + 0,3576,3577,1,0,0,0,3577,457,1,0,0,0,3578,3576,1,0,0,0,3579,3605, + 3,390,195,0,3580,3583,3,460,230,0,3581,3583,3,462,231,0,3582,3580, + 1,0,0,0,3582,3581,1,0,0,0,3583,3600,1,0,0,0,3584,3586,5,17,0,0,3585, + 3584,1,0,0,0,3585,3586,1,0,0,0,3586,3587,1,0,0,0,3587,3601,3,590, + 295,0,3588,3589,5,17,0,0,3589,3590,5,399,0,0,3590,3595,3,590,295, + 0,3591,3592,5,397,0,0,3592,3594,3,590,295,0,3593,3591,1,0,0,0,3594, + 3597,1,0,0,0,3595,3593,1,0,0,0,3595,3596,1,0,0,0,3596,3598,1,0,0, + 0,3597,3595,1,0,0,0,3598,3599,5,400,0,0,3599,3601,1,0,0,0,3600,3585, + 1,0,0,0,3600,3588,1,0,0,0,3600,3601,1,0,0,0,3601,3605,1,0,0,0,3602, + 3603,4,229,2,0,3603,3605,3,618,309,0,3604,3579,1,0,0,0,3604,3582, + 1,0,0,0,3604,3602,1,0,0,0,3605,459,1,0,0,0,3606,3607,3,222,111,0, + 3607,461,1,0,0,0,3608,3609,3,536,268,0,3609,463,1,0,0,0,3610,3611, + 7,35,0,0,3611,3612,3,468,234,0,3612,3613,3,184,92,0,3613,3614,5, + 267,0,0,3614,3615,5,426,0,0,3615,3616,5,370,0,0,3616,3629,5,426, + 0,0,3617,3627,5,17,0,0,3618,3621,5,399,0,0,3619,3622,3,394,197,0, + 3620,3622,3,214,107,0,3621,3619,1,0,0,0,3621,3620,1,0,0,0,3622,3623, + 1,0,0,0,3623,3624,5,400,0,0,3624,3628,1,0,0,0,3625,3628,3,394,197, + 0,3626,3628,3,214,107,0,3627,3618,1,0,0,0,3627,3625,1,0,0,0,3627, + 3626,1,0,0,0,3628,3630,1,0,0,0,3629,3617,1,0,0,0,3629,3630,1,0,0, + 0,3630,3631,1,0,0,0,3631,3632,3,184,92,0,3632,3633,5,266,0,0,3633, + 3634,5,426,0,0,3634,465,1,0,0,0,3635,3638,3,390,195,0,3636,3638, + 3,536,268,0,3637,3635,1,0,0,0,3637,3636,1,0,0,0,3638,467,1,0,0,0, + 3639,3644,3,466,233,0,3640,3641,5,397,0,0,3641,3643,3,466,233,0, + 3642,3640,1,0,0,0,3643,3646,1,0,0,0,3644,3642,1,0,0,0,3644,3645, + 1,0,0,0,3645,469,1,0,0,0,3646,3644,1,0,0,0,3647,3648,5,386,0,0,3648, + 3649,3,590,295,0,3649,3650,5,17,0,0,3650,3658,3,472,236,0,3651,3652, + 5,397,0,0,3652,3653,3,590,295,0,3653,3654,5,17,0,0,3654,3655,3,472, + 236,0,3655,3657,1,0,0,0,3656,3651,1,0,0,0,3657,3660,1,0,0,0,3658, + 3656,1,0,0,0,3658,3659,1,0,0,0,3659,471,1,0,0,0,3660,3658,1,0,0, + 0,3661,3674,3,590,295,0,3662,3664,5,399,0,0,3663,3665,3,590,295, + 0,3664,3663,1,0,0,0,3664,3665,1,0,0,0,3665,3667,1,0,0,0,3666,3668, + 3,436,218,0,3667,3666,1,0,0,0,3667,3668,1,0,0,0,3668,3670,1,0,0, + 0,3669,3671,3,474,237,0,3670,3669,1,0,0,0,3670,3671,1,0,0,0,3671, + 3672,1,0,0,0,3672,3674,5,400,0,0,3673,3661,1,0,0,0,3673,3662,1,0, + 0,0,3674,473,1,0,0,0,3675,3689,7,36,0,0,3676,3677,5,354,0,0,3677, + 3683,5,247,0,0,3678,3679,5,62,0,0,3679,3683,5,291,0,0,3680,3681, + 5,431,0,0,3681,3683,5,247,0,0,3682,3676,1,0,0,0,3682,3678,1,0,0, + 0,3682,3680,1,0,0,0,3683,3690,1,0,0,0,3684,3685,5,25,0,0,3685,3686, + 3,476,238,0,3686,3687,5,11,0,0,3687,3688,3,476,238,0,3688,3690,1, + 0,0,0,3689,3682,1,0,0,0,3689,3684,1,0,0,0,3690,475,1,0,0,0,3691, + 3692,7,37,0,0,3692,3696,7,38,0,0,3693,3694,5,62,0,0,3694,3696,5, + 291,0,0,3695,3691,1,0,0,0,3695,3693,1,0,0,0,3696,477,1,0,0,0,3697, + 3698,5,144,0,0,3698,3704,5,32,0,0,3699,3705,3,222,111,0,3700,3705, + 3,480,240,0,3701,3705,3,482,241,0,3702,3703,5,399,0,0,3703,3705, + 5,400,0,0,3704,3699,1,0,0,0,3704,3700,1,0,0,0,3704,3701,1,0,0,0, + 3704,3702,1,0,0,0,3705,479,1,0,0,0,3706,3709,5,290,0,0,3707,3709, + 5,61,0,0,3708,3706,1,0,0,0,3708,3707,1,0,0,0,3709,3710,1,0,0,0,3710, + 3711,5,399,0,0,3711,3716,3,536,268,0,3712,3713,5,397,0,0,3713,3715, + 3,536,268,0,3714,3712,1,0,0,0,3715,3718,1,0,0,0,3716,3714,1,0,0, + 0,3716,3717,1,0,0,0,3717,3719,1,0,0,0,3718,3716,1,0,0,0,3719,3720, + 5,400,0,0,3720,481,1,0,0,0,3721,3726,3,496,248,0,3722,3723,5,387, + 0,0,3723,3727,5,290,0,0,3724,3725,5,387,0,0,3725,3727,5,61,0,0,3726, + 3722,1,0,0,0,3726,3724,1,0,0,0,3726,3727,1,0,0,0,3727,3741,1,0,0, + 0,3728,3729,5,145,0,0,3729,3730,5,305,0,0,3730,3731,5,399,0,0,3731, + 3736,3,484,242,0,3732,3733,5,397,0,0,3733,3735,3,484,242,0,3734, + 3732,1,0,0,0,3735,3738,1,0,0,0,3736,3734,1,0,0,0,3736,3737,1,0,0, + 0,3737,3739,1,0,0,0,3738,3736,1,0,0,0,3739,3740,5,400,0,0,3740,3742, + 1,0,0,0,3741,3728,1,0,0,0,3741,3742,1,0,0,0,3742,483,1,0,0,0,3743, + 3745,5,399,0,0,3744,3746,3,536,268,0,3745,3744,1,0,0,0,3745,3746, + 1,0,0,0,3746,3751,1,0,0,0,3747,3748,5,397,0,0,3748,3750,3,536,268, + 0,3749,3747,1,0,0,0,3750,3753,1,0,0,0,3751,3749,1,0,0,0,3751,3752, + 1,0,0,0,3752,3754,1,0,0,0,3753,3751,1,0,0,0,3754,3757,5,400,0,0, + 3755,3757,3,536,268,0,3756,3743,1,0,0,0,3756,3755,1,0,0,0,3757,485, + 1,0,0,0,3758,3761,5,146,0,0,3759,3762,3,536,268,0,3760,3762,3,226, + 113,0,3761,3759,1,0,0,0,3761,3760,1,0,0,0,3762,487,1,0,0,0,3763, + 3764,5,256,0,0,3764,3765,3,536,268,0,3765,489,1,0,0,0,3766,3768, + 3,536,268,0,3767,3769,5,17,0,0,3768,3767,1,0,0,0,3768,3769,1,0,0, + 0,3769,3771,1,0,0,0,3770,3772,3,590,295,0,3771,3770,1,0,0,0,3771, + 3772,1,0,0,0,3772,3783,1,0,0,0,3773,3774,5,397,0,0,3774,3776,3,536, + 268,0,3775,3777,5,17,0,0,3776,3775,1,0,0,0,3776,3777,1,0,0,0,3777, + 3779,1,0,0,0,3778,3780,3,590,295,0,3779,3778,1,0,0,0,3779,3780,1, + 0,0,0,3780,3782,1,0,0,0,3781,3773,1,0,0,0,3782,3785,1,0,0,0,3783, + 3781,1,0,0,0,3783,3784,1,0,0,0,3784,491,1,0,0,0,3785,3783,1,0,0, + 0,3786,3789,3,494,247,0,3787,3789,3,496,248,0,3788,3786,1,0,0,0, + 3788,3787,1,0,0,0,3789,493,1,0,0,0,3790,3791,5,399,0,0,3791,3792, + 3,496,248,0,3792,3793,5,400,0,0,3793,495,1,0,0,0,3794,3797,5,83, + 0,0,3795,3797,3,536,268,0,3796,3794,1,0,0,0,3796,3795,1,0,0,0,3797, + 3807,1,0,0,0,3798,3801,5,397,0,0,3799,3802,5,83,0,0,3800,3802,3, + 536,268,0,3801,3799,1,0,0,0,3801,3800,1,0,0,0,3802,3804,1,0,0,0, + 3803,3798,1,0,0,0,3804,3805,1,0,0,0,3805,3803,1,0,0,0,3805,3806, + 1,0,0,0,3806,3808,1,0,0,0,3807,3803,1,0,0,0,3807,3808,1,0,0,0,3808, + 497,1,0,0,0,3809,3810,5,229,0,0,3810,3811,5,32,0,0,3811,3816,3,274, + 137,0,3812,3813,5,397,0,0,3813,3815,3,274,137,0,3814,3812,1,0,0, + 0,3815,3818,1,0,0,0,3816,3814,1,0,0,0,3816,3817,1,0,0,0,3817,499, + 1,0,0,0,3818,3816,1,0,0,0,3819,3820,5,237,0,0,3820,3821,5,32,0,0, + 3821,3822,3,492,246,0,3822,501,1,0,0,0,3823,3824,5,41,0,0,3824,3825, + 5,32,0,0,3825,3826,3,492,246,0,3826,503,1,0,0,0,3827,3828,5,97,0, + 0,3828,3829,5,32,0,0,3829,3830,3,492,246,0,3830,505,1,0,0,0,3831, + 3832,5,314,0,0,3832,3852,5,32,0,0,3833,3834,5,399,0,0,3834,3839, + 3,274,137,0,3835,3836,5,397,0,0,3836,3838,3,274,137,0,3837,3835, + 1,0,0,0,3838,3841,1,0,0,0,3839,3837,1,0,0,0,3839,3840,1,0,0,0,3840, + 3842,1,0,0,0,3841,3839,1,0,0,0,3842,3843,5,400,0,0,3843,3853,1,0, + 0,0,3844,3849,3,274,137,0,3845,3846,5,397,0,0,3846,3848,3,274,137, + 0,3847,3845,1,0,0,0,3848,3851,1,0,0,0,3849,3847,1,0,0,0,3849,3850, + 1,0,0,0,3850,3853,1,0,0,0,3851,3849,1,0,0,0,3852,3833,1,0,0,0,3852, + 3844,1,0,0,0,3853,507,1,0,0,0,3854,3855,5,349,0,0,3855,3859,5,399, + 0,0,3856,3860,5,179,0,0,3857,3860,5,343,0,0,3858,3860,5,29,0,0,3859, + 3856,1,0,0,0,3859,3857,1,0,0,0,3859,3858,1,0,0,0,3859,3860,1,0,0, + 0,3860,3862,1,0,0,0,3861,3863,3,466,233,0,3862,3861,1,0,0,0,3862, + 3863,1,0,0,0,3863,3864,1,0,0,0,3864,3865,5,139,0,0,3865,3866,3,466, + 233,0,3866,3867,5,400,0,0,3867,3910,1,0,0,0,3868,3869,3,514,257, + 0,3869,3884,5,399,0,0,3870,3885,5,415,0,0,3871,3873,7,26,0,0,3872, + 3871,1,0,0,0,3872,3873,1,0,0,0,3873,3882,1,0,0,0,3874,3879,3,466, + 233,0,3875,3876,5,397,0,0,3876,3878,3,466,233,0,3877,3875,1,0,0, + 0,3878,3881,1,0,0,0,3879,3877,1,0,0,0,3879,3880,1,0,0,0,3880,3883, + 1,0,0,0,3881,3879,1,0,0,0,3882,3874,1,0,0,0,3882,3883,1,0,0,0,3883, + 3885,1,0,0,0,3884,3870,1,0,0,0,3884,3872,1,0,0,0,3885,3907,1,0,0, + 0,3886,3887,5,400,0,0,3887,3888,5,388,0,0,3888,3889,5,144,0,0,3889, + 3890,5,399,0,0,3890,3891,3,498,249,0,3891,3892,5,400,0,0,3892,3908, + 1,0,0,0,3893,3896,5,400,0,0,3894,3895,7,39,0,0,3895,3897,5,220,0, + 0,3896,3894,1,0,0,0,3896,3897,1,0,0,0,3897,3898,1,0,0,0,3898,3899, + 5,234,0,0,3899,3908,3,472,236,0,3900,3901,7,39,0,0,3901,3902,5,220, + 0,0,3902,3903,1,0,0,0,3903,3904,5,400,0,0,3904,3905,5,234,0,0,3905, + 3908,3,472,236,0,3906,3908,5,400,0,0,3907,3886,1,0,0,0,3907,3893, + 1,0,0,0,3907,3900,1,0,0,0,3907,3906,1,0,0,0,3908,3910,1,0,0,0,3909, + 3854,1,0,0,0,3909,3868,1,0,0,0,3910,509,1,0,0,0,3911,3912,3,592, + 296,0,3912,511,1,0,0,0,3913,3916,3,592,296,0,3914,3916,5,426,0,0, + 3915,3913,1,0,0,0,3915,3914,1,0,0,0,3916,513,1,0,0,0,3917,3921,3, + 592,296,0,3918,3921,3,598,299,0,3919,3921,3,588,294,0,3920,3917, + 1,0,0,0,3920,3918,1,0,0,0,3920,3919,1,0,0,0,3921,515,1,0,0,0,3922, + 3923,5,36,0,0,3923,3924,5,399,0,0,3924,3925,3,536,268,0,3925,3926, + 5,17,0,0,3926,3929,3,302,151,0,3927,3928,5,137,0,0,3928,3930,5,426, + 0,0,3929,3927,1,0,0,0,3929,3930,1,0,0,0,3930,3931,1,0,0,0,3931,3932, + 5,400,0,0,3932,517,1,0,0,0,3933,3934,5,35,0,0,3934,3940,3,536,268, + 0,3935,3936,5,383,0,0,3936,3937,3,536,268,0,3937,3938,5,335,0,0, + 3938,3939,3,536,268,0,3939,3941,1,0,0,0,3940,3935,1,0,0,0,3941,3942, + 1,0,0,0,3942,3940,1,0,0,0,3942,3943,1,0,0,0,3943,3946,1,0,0,0,3944, + 3945,5,105,0,0,3945,3947,3,536,268,0,3946,3944,1,0,0,0,3946,3947, + 1,0,0,0,3947,3948,1,0,0,0,3948,3949,5,108,0,0,3949,519,1,0,0,0,3950, + 3956,5,35,0,0,3951,3952,5,383,0,0,3952,3953,3,536,268,0,3953,3954, + 5,335,0,0,3954,3955,3,536,268,0,3955,3957,1,0,0,0,3956,3951,1,0, + 0,0,3957,3958,1,0,0,0,3958,3956,1,0,0,0,3958,3959,1,0,0,0,3959,3962, + 1,0,0,0,3960,3961,5,105,0,0,3961,3963,3,536,268,0,3962,3960,1,0, + 0,0,3962,3963,1,0,0,0,3963,3964,1,0,0,0,3964,3965,5,108,0,0,3965, + 521,1,0,0,0,3966,3967,5,132,0,0,3967,3968,5,399,0,0,3968,3971,3, + 536,268,0,3969,3970,5,341,0,0,3970,3972,3,526,263,0,3971,3969,1, + 0,0,0,3971,3972,1,0,0,0,3972,3973,1,0,0,0,3973,3974,5,400,0,0,3974, + 523,1,0,0,0,3975,3976,5,124,0,0,3976,3977,5,399,0,0,3977,3978,3, + 526,263,0,3978,3979,5,139,0,0,3979,3980,3,536,268,0,3980,3981,5, + 400,0,0,3981,525,1,0,0,0,3982,3991,7,40,0,0,3983,3991,5,257,0,0, + 3984,3991,7,41,0,0,3985,3991,7,42,0,0,3986,3991,7,43,0,0,3987,3991, + 7,44,0,0,3988,3991,7,45,0,0,3989,3991,7,46,0,0,3990,3982,1,0,0,0, + 3990,3983,1,0,0,0,3990,3984,1,0,0,0,3990,3985,1,0,0,0,3990,3986, + 1,0,0,0,3990,3987,1,0,0,0,3990,3988,1,0,0,0,3990,3989,1,0,0,0,3991, + 527,1,0,0,0,3992,3993,3,530,265,0,3993,3994,3,534,267,0,3994,4021, + 1,0,0,0,3995,4021,5,431,0,0,3996,3997,5,71,0,0,3997,4021,5,426,0, + 0,3998,4021,5,63,0,0,3999,4000,5,337,0,0,4000,4021,5,426,0,0,4001, + 4021,5,64,0,0,4002,4003,5,338,0,0,4003,4021,5,426,0,0,4004,4008, + 5,426,0,0,4005,4007,5,426,0,0,4006,4005,1,0,0,0,4007,4010,1,0,0, + 0,4008,4006,1,0,0,0,4008,4009,1,0,0,0,4009,4021,1,0,0,0,4010,4008, + 1,0,0,0,4011,4021,5,428,0,0,4012,4021,5,429,0,0,4013,4014,5,433, + 0,0,4014,4021,5,427,0,0,4015,4021,5,350,0,0,4016,4021,5,125,0,0, + 4017,4021,5,219,0,0,4018,4021,5,424,0,0,4019,4021,3,224,112,0,4020, + 3992,1,0,0,0,4020,3995,1,0,0,0,4020,3996,1,0,0,0,4020,3998,1,0,0, + 0,4020,3999,1,0,0,0,4020,4001,1,0,0,0,4020,4002,1,0,0,0,4020,4004, + 1,0,0,0,4020,4011,1,0,0,0,4020,4012,1,0,0,0,4020,4013,1,0,0,0,4020, + 4015,1,0,0,0,4020,4016,1,0,0,0,4020,4017,1,0,0,0,4020,4018,1,0,0, + 0,4020,4019,1,0,0,0,4021,529,1,0,0,0,4022,4023,7,31,0,0,4023,531, + 1,0,0,0,4024,4025,5,399,0,0,4025,4026,3,530,265,0,4026,4027,5,400, + 0,0,4027,4028,3,534,267,0,4028,4040,1,0,0,0,4029,4035,5,165,0,0, + 4030,4036,3,530,265,0,4031,4032,5,399,0,0,4032,4033,3,536,268,0, + 4033,4034,5,400,0,0,4034,4036,1,0,0,0,4035,4030,1,0,0,0,4035,4031, + 1,0,0,0,4036,4037,1,0,0,0,4037,4038,3,534,267,0,4038,4040,1,0,0, + 0,4039,4024,1,0,0,0,4039,4029,1,0,0,0,4040,533,1,0,0,0,4041,4042, + 7,40,0,0,4042,4043,5,341,0,0,4043,4054,7,41,0,0,4044,4045,7,43,0, + 0,4045,4046,5,341,0,0,4046,4054,7,46,0,0,4047,4054,7,40,0,0,4048, + 4054,7,41,0,0,4049,4054,7,43,0,0,4050,4054,7,44,0,0,4051,4054,7, + 45,0,0,4052,4054,7,46,0,0,4053,4041,1,0,0,0,4053,4044,1,0,0,0,4053, + 4047,1,0,0,0,4053,4048,1,0,0,0,4053,4049,1,0,0,0,4053,4050,1,0,0, + 0,4053,4051,1,0,0,0,4053,4052,1,0,0,0,4054,535,1,0,0,0,4055,4060, + 3,574,287,0,4056,4057,5,228,0,0,4057,4059,3,574,287,0,4058,4056, + 1,0,0,0,4059,4062,1,0,0,0,4060,4058,1,0,0,0,4060,4061,1,0,0,0,4061, + 537,1,0,0,0,4062,4060,1,0,0,0,4063,4075,3,528,264,0,4064,4075,3, + 532,266,0,4065,4075,3,516,258,0,4066,4075,3,524,262,0,4067,4075, + 3,522,261,0,4068,4075,3,518,259,0,4069,4075,3,520,260,0,4070,4075, + 3,554,277,0,4071,4075,3,508,254,0,4072,4075,3,494,247,0,4073,4075, + 3,590,295,0,4074,4063,1,0,0,0,4074,4064,1,0,0,0,4074,4065,1,0,0, + 0,4074,4066,1,0,0,0,4074,4067,1,0,0,0,4074,4068,1,0,0,0,4074,4069, + 1,0,0,0,4074,4070,1,0,0,0,4074,4071,1,0,0,0,4074,4072,1,0,0,0,4074, + 4073,1,0,0,0,4075,539,1,0,0,0,4076,4078,7,47,0,0,4077,4076,1,0,0, + 0,4078,4081,1,0,0,0,4079,4077,1,0,0,0,4079,4080,1,0,0,0,4080,4082, + 1,0,0,0,4081,4079,1,0,0,0,4082,4091,3,538,269,0,4083,4084,5,401, + 0,0,4084,4085,3,536,268,0,4085,4086,5,402,0,0,4086,4090,1,0,0,0, + 4087,4088,5,395,0,0,4088,4090,3,590,295,0,4089,4083,1,0,0,0,4089, + 4087,1,0,0,0,4090,4093,1,0,0,0,4091,4089,1,0,0,0,4091,4092,1,0,0, + 0,4092,541,1,0,0,0,4093,4091,1,0,0,0,4094,4099,3,540,270,0,4095, + 4096,5,423,0,0,4096,4098,3,540,270,0,4097,4095,1,0,0,0,4098,4101, + 1,0,0,0,4099,4097,1,0,0,0,4099,4100,1,0,0,0,4100,543,1,0,0,0,4101, + 4099,1,0,0,0,4102,4107,3,542,271,0,4103,4104,7,48,0,0,4104,4106, + 3,542,271,0,4105,4103,1,0,0,0,4106,4109,1,0,0,0,4107,4105,1,0,0, + 0,4107,4108,1,0,0,0,4108,545,1,0,0,0,4109,4107,1,0,0,0,4110,4115, + 3,544,272,0,4111,4112,7,49,0,0,4112,4114,3,544,272,0,4113,4111,1, + 0,0,0,4114,4117,1,0,0,0,4115,4113,1,0,0,0,4115,4116,1,0,0,0,4116, + 547,1,0,0,0,4117,4115,1,0,0,0,4118,4123,3,546,273,0,4119,4120,5, + 422,0,0,4120,4122,3,546,273,0,4121,4119,1,0,0,0,4122,4125,1,0,0, + 0,4123,4121,1,0,0,0,4123,4124,1,0,0,0,4124,549,1,0,0,0,4125,4123, + 1,0,0,0,4126,4131,3,548,274,0,4127,4128,5,419,0,0,4128,4130,3,548, + 274,0,4129,4127,1,0,0,0,4130,4133,1,0,0,0,4131,4129,1,0,0,0,4131, + 4132,1,0,0,0,4132,551,1,0,0,0,4133,4131,1,0,0,0,4134,4139,3,550, + 275,0,4135,4136,5,421,0,0,4136,4138,3,550,275,0,4137,4135,1,0,0, + 0,4138,4141,1,0,0,0,4139,4137,1,0,0,0,4139,4140,1,0,0,0,4140,553, + 1,0,0,0,4141,4139,1,0,0,0,4142,4143,5,399,0,0,4143,4144,3,330,165, + 0,4144,4145,5,400,0,0,4145,555,1,0,0,0,4146,4147,7,50,0,0,4147,557, + 1,0,0,0,4148,4150,3,552,276,0,4149,4151,3,560,280,0,4150,4149,1, + 0,0,0,4150,4151,1,0,0,0,4151,4155,1,0,0,0,4152,4153,5,117,0,0,4153, + 4155,3,554,277,0,4154,4148,1,0,0,0,4154,4152,1,0,0,0,4155,559,1, + 0,0,0,4156,4157,3,556,278,0,4157,4158,3,552,276,0,4158,4167,1,0, + 0,0,4159,4167,3,562,281,0,4160,4164,5,216,0,0,4161,4162,7,51,0,0, + 4162,4165,3,552,276,0,4163,4165,3,562,281,0,4164,4161,1,0,0,0,4164, + 4163,1,0,0,0,4165,4167,1,0,0,0,4166,4156,1,0,0,0,4166,4159,1,0,0, + 0,4166,4160,1,0,0,0,4167,561,1,0,0,0,4168,4171,5,154,0,0,4169,4172, + 3,554,277,0,4170,4172,3,494,247,0,4171,4169,1,0,0,0,4171,4170,1, + 0,0,0,4172,4186,1,0,0,0,4173,4174,5,25,0,0,4174,4175,3,552,276,0, + 4175,4176,5,11,0,0,4176,4177,3,552,276,0,4177,4186,1,0,0,0,4178, + 4179,5,184,0,0,4179,4180,7,52,0,0,4180,4186,3,494,247,0,4181,4182, + 3,586,293,0,4182,4183,7,53,0,0,4183,4184,3,554,277,0,4184,4186,1, + 0,0,0,4185,4168,1,0,0,0,4185,4173,1,0,0,0,4185,4178,1,0,0,0,4185, + 4181,1,0,0,0,4186,563,1,0,0,0,4187,4188,5,167,0,0,4188,4189,5,96, + 0,0,4189,4190,5,139,0,0,4190,565,1,0,0,0,4191,4199,5,405,0,0,4192, + 4199,5,406,0,0,4193,4199,5,407,0,0,4194,4195,5,167,0,0,4195,4196, + 5,216,0,0,4196,4197,5,96,0,0,4197,4199,5,139,0,0,4198,4191,1,0,0, + 0,4198,4192,1,0,0,0,4198,4193,1,0,0,0,4198,4194,1,0,0,0,4199,567, + 1,0,0,0,4200,4209,3,558,279,0,4201,4202,3,566,283,0,4202,4203,3, + 558,279,0,4203,4208,1,0,0,0,4204,4205,3,564,282,0,4205,4206,3,558, + 279,0,4206,4208,1,0,0,0,4207,4201,1,0,0,0,4207,4204,1,0,0,0,4208, + 4211,1,0,0,0,4209,4207,1,0,0,0,4209,4210,1,0,0,0,4210,569,1,0,0, + 0,4211,4209,1,0,0,0,4212,4219,5,219,0,0,4213,4219,5,350,0,0,4214, + 4219,5,125,0,0,4215,4219,5,360,0,0,4216,4217,5,216,0,0,4217,4219, + 7,54,0,0,4218,4212,1,0,0,0,4218,4213,1,0,0,0,4218,4214,1,0,0,0,4218, + 4215,1,0,0,0,4218,4216,1,0,0,0,4219,571,1,0,0,0,4220,4222,5,216, + 0,0,4221,4220,1,0,0,0,4222,4225,1,0,0,0,4223,4221,1,0,0,0,4223,4224, + 1,0,0,0,4224,4226,1,0,0,0,4225,4223,1,0,0,0,4226,4229,3,568,284, + 0,4227,4228,5,167,0,0,4228,4230,3,570,285,0,4229,4227,1,0,0,0,4229, + 4230,1,0,0,0,4230,573,1,0,0,0,4231,4236,3,572,286,0,4232,4233,5, + 11,0,0,4233,4235,3,572,286,0,4234,4232,1,0,0,0,4235,4238,1,0,0,0, + 4236,4234,1,0,0,0,4236,4237,1,0,0,0,4237,575,1,0,0,0,4238,4236,1, + 0,0,0,4239,4241,3,426,213,0,4240,4242,3,578,289,0,4241,4240,1,0, + 0,0,4241,4242,1,0,0,0,4242,577,1,0,0,0,4243,4244,5,237,0,0,4244, + 4245,5,399,0,0,4245,4250,3,580,290,0,4246,4247,5,397,0,0,4247,4249, + 3,580,290,0,4248,4246,1,0,0,0,4249,4252,1,0,0,0,4250,4248,1,0,0, + 0,4250,4251,1,0,0,0,4251,4253,1,0,0,0,4252,4250,1,0,0,0,4253,4254, + 5,400,0,0,4254,579,1,0,0,0,4255,4258,3,590,295,0,4256,4257,5,405, + 0,0,4257,4259,3,528,264,0,4258,4256,1,0,0,0,4258,4259,1,0,0,0,4259, + 581,1,0,0,0,4260,4261,5,399,0,0,4261,4266,3,584,292,0,4262,4263, + 5,397,0,0,4263,4265,3,584,292,0,4264,4262,1,0,0,0,4265,4268,1,0, + 0,0,4266,4264,1,0,0,0,4266,4267,1,0,0,0,4267,4269,1,0,0,0,4268,4266, + 1,0,0,0,4269,4270,5,400,0,0,4270,583,1,0,0,0,4271,4274,3,590,295, + 0,4272,4275,5,184,0,0,4273,4275,3,586,293,0,4274,4272,1,0,0,0,4274, + 4273,1,0,0,0,4275,4276,1,0,0,0,4276,4277,3,528,264,0,4277,585,1, + 0,0,0,4278,4279,7,55,0,0,4279,587,1,0,0,0,4280,4281,7,56,0,0,4281, + 589,1,0,0,0,4282,4285,5,432,0,0,4283,4285,3,596,298,0,4284,4282, + 1,0,0,0,4284,4283,1,0,0,0,4285,591,1,0,0,0,4286,4289,3,590,295,0, + 4287,4288,5,395,0,0,4288,4290,3,590,295,0,4289,4287,1,0,0,0,4289, + 4290,1,0,0,0,4290,593,1,0,0,0,4291,4292,3,590,295,0,4292,595,1,0, + 0,0,4293,4294,7,57,0,0,4294,597,1,0,0,0,4295,4296,7,58,0,0,4296, + 599,1,0,0,0,4297,4349,3,590,295,0,4298,4349,5,299,0,0,4299,4349, + 5,171,0,0,4300,4349,5,237,0,0,4301,4349,5,198,0,0,4302,4349,5,268, + 0,0,4303,4349,5,369,0,0,4304,4349,5,241,0,0,4305,4349,5,165,0,0, + 4306,4349,5,292,0,0,4307,4349,5,356,0,0,4308,4349,5,144,0,0,4309, + 4349,5,203,0,0,4310,4349,5,219,0,0,4311,4349,5,126,0,0,4312,4349, + 5,188,0,0,4313,4349,5,101,0,0,4314,4349,5,329,0,0,4315,4349,5,224, + 0,0,4316,4349,5,291,0,0,4317,4349,5,145,0,0,4318,4349,5,304,0,0, + 4319,4349,5,135,0,0,4320,4349,5,318,0,0,4321,4349,5,161,0,0,4322, + 4349,5,54,0,0,4323,4349,5,166,0,0,4324,4349,5,358,0,0,4325,4349, + 5,45,0,0,4326,4349,5,347,0,0,4327,4349,5,96,0,0,4328,4349,5,154, + 0,0,4329,4349,5,269,0,0,4330,4349,5,337,0,0,4331,4349,5,225,0,0, + 4332,4349,5,108,0,0,4333,4349,5,141,0,0,4334,4349,5,365,0,0,4335, + 4349,5,21,0,0,4336,4349,5,78,0,0,4337,4349,5,374,0,0,4338,4349,5, + 336,0,0,4339,4349,5,167,0,0,4340,4349,5,134,0,0,4341,4349,5,216, + 0,0,4342,4349,5,27,0,0,4343,4349,5,370,0,0,4344,4349,5,263,0,0,4345, + 4349,5,25,0,0,4346,4349,5,62,0,0,4347,4349,5,17,0,0,4348,4297,1, + 0,0,0,4348,4298,1,0,0,0,4348,4299,1,0,0,0,4348,4300,1,0,0,0,4348, + 4301,1,0,0,0,4348,4302,1,0,0,0,4348,4303,1,0,0,0,4348,4304,1,0,0, + 0,4348,4305,1,0,0,0,4348,4306,1,0,0,0,4348,4307,1,0,0,0,4348,4308, + 1,0,0,0,4348,4309,1,0,0,0,4348,4310,1,0,0,0,4348,4311,1,0,0,0,4348, + 4312,1,0,0,0,4348,4313,1,0,0,0,4348,4314,1,0,0,0,4348,4315,1,0,0, + 0,4348,4316,1,0,0,0,4348,4317,1,0,0,0,4348,4318,1,0,0,0,4348,4319, + 1,0,0,0,4348,4320,1,0,0,0,4348,4321,1,0,0,0,4348,4322,1,0,0,0,4348, + 4323,1,0,0,0,4348,4324,1,0,0,0,4348,4325,1,0,0,0,4348,4326,1,0,0, + 0,4348,4327,1,0,0,0,4348,4328,1,0,0,0,4348,4329,1,0,0,0,4348,4330, + 1,0,0,0,4348,4331,1,0,0,0,4348,4332,1,0,0,0,4348,4333,1,0,0,0,4348, + 4334,1,0,0,0,4348,4335,1,0,0,0,4348,4336,1,0,0,0,4348,4337,1,0,0, + 0,4348,4338,1,0,0,0,4348,4339,1,0,0,0,4348,4340,1,0,0,0,4348,4341, + 1,0,0,0,4348,4342,1,0,0,0,4348,4343,1,0,0,0,4348,4344,1,0,0,0,4348, + 4345,1,0,0,0,4348,4346,1,0,0,0,4348,4347,1,0,0,0,4349,601,1,0,0, + 0,4350,4351,5,58,0,0,4351,4352,5,280,0,0,4352,4354,5,243,0,0,4353, + 4355,3,32,16,0,4354,4353,1,0,0,0,4354,4355,1,0,0,0,4355,4365,1,0, + 0,0,4356,4357,3,590,295,0,4357,4358,5,184,0,0,4358,4359,3,590,295, + 0,4359,4366,1,0,0,0,4360,4363,3,590,295,0,4361,4362,5,387,0,0,4362, + 4364,3,608,304,0,4363,4361,1,0,0,0,4363,4364,1,0,0,0,4364,4366,1, + 0,0,0,4365,4356,1,0,0,0,4365,4360,1,0,0,0,4366,4516,1,0,0,0,4367, + 4368,5,9,0,0,4368,4369,5,280,0,0,4369,4370,5,243,0,0,4370,4395,3, + 590,295,0,4371,4396,5,373,0,0,4372,4396,3,616,308,0,4373,4374,5, + 304,0,0,4374,4396,3,608,304,0,4375,4376,5,363,0,0,4376,4381,3,610, + 305,0,4377,4378,5,397,0,0,4378,4380,3,610,305,0,4379,4377,1,0,0, + 0,4380,4383,1,0,0,0,4381,4379,1,0,0,0,4381,4382,1,0,0,0,4382,4396, + 1,0,0,0,4383,4381,1,0,0,0,4384,4385,5,274,0,0,4385,4386,5,341,0, + 0,4386,4396,3,590,295,0,4387,4389,3,612,306,0,4388,4390,3,614,307, + 0,4389,4388,1,0,0,0,4389,4390,1,0,0,0,4390,4396,1,0,0,0,4391,4393, + 3,614,307,0,4392,4394,3,612,306,0,4393,4392,1,0,0,0,4393,4394,1, + 0,0,0,4394,4396,1,0,0,0,4395,4371,1,0,0,0,4395,4372,1,0,0,0,4395, + 4373,1,0,0,0,4395,4375,1,0,0,0,4395,4384,1,0,0,0,4395,4387,1,0,0, + 0,4395,4391,1,0,0,0,4396,4516,1,0,0,0,4397,4398,5,101,0,0,4398,4399, + 5,280,0,0,4399,4401,5,243,0,0,4400,4402,3,30,15,0,4401,4400,1,0, + 0,0,4401,4402,1,0,0,0,4402,4403,1,0,0,0,4403,4516,3,590,295,0,4404, + 4407,3,614,307,0,4405,4407,3,616,308,0,4406,4404,1,0,0,0,4406,4405, + 1,0,0,0,4407,4408,1,0,0,0,4408,4409,5,390,0,0,4409,4410,5,197,0, + 0,4410,4516,1,0,0,0,4411,4423,5,278,0,0,4412,4413,5,3,0,0,4413,4414, + 5,280,0,0,4414,4415,5,243,0,0,4415,4416,5,387,0,0,4416,4424,3,590, + 295,0,4417,4418,5,280,0,0,4418,4419,5,243,0,0,4419,4420,3,590,295, + 0,4420,4421,5,387,0,0,4421,4422,3,590,295,0,4422,4424,1,0,0,0,4423, + 4412,1,0,0,0,4423,4417,1,0,0,0,4424,4516,1,0,0,0,4425,4426,5,58, + 0,0,4426,4427,5,348,0,0,4427,4428,3,590,295,0,4428,4429,5,395,0, + 0,4429,4430,3,590,295,0,4430,4431,5,383,0,0,4431,4432,3,624,312, + 0,4432,4433,5,99,0,0,4433,4434,3,626,313,0,4434,4516,1,0,0,0,4435, + 4436,5,9,0,0,4436,4437,5,348,0,0,4437,4438,3,590,295,0,4438,4439, + 5,395,0,0,4439,4456,3,590,295,0,4440,4441,5,383,0,0,4441,4442,3, + 624,312,0,4442,4443,5,99,0,0,4443,4444,3,626,313,0,4444,4457,1,0, + 0,0,4445,4446,5,4,0,0,4446,4450,5,341,0,0,4447,4448,5,101,0,0,4448, + 4450,5,139,0,0,4449,4445,1,0,0,0,4449,4447,1,0,0,0,4450,4454,1,0, + 0,0,4451,4452,5,246,0,0,4452,4455,3,620,310,0,4453,4455,5,362,0, + 0,4454,4451,1,0,0,0,4454,4453,1,0,0,0,4455,4457,1,0,0,0,4456,4440, + 1,0,0,0,4456,4449,1,0,0,0,4457,4516,1,0,0,0,4458,4459,5,101,0,0, + 4459,4460,5,348,0,0,4460,4461,3,590,295,0,4461,4462,5,395,0,0,4462, + 4463,3,590,295,0,4463,4516,1,0,0,0,4464,4465,5,58,0,0,4465,4466, + 5,246,0,0,4466,4467,3,590,295,0,4467,4468,5,395,0,0,4468,4469,3, + 620,310,0,4469,4470,5,387,0,0,4470,4471,3,630,315,0,4471,4516,1, + 0,0,0,4472,4473,5,9,0,0,4473,4474,5,246,0,0,4474,4475,3,590,295, + 0,4475,4476,5,395,0,0,4476,4484,3,620,310,0,4477,4478,5,304,0,0, + 4478,4485,3,630,315,0,4479,4480,5,363,0,0,4480,4485,5,294,0,0,4481, + 4482,7,59,0,0,4482,4483,5,348,0,0,4483,4485,3,590,295,0,4484,4477, + 1,0,0,0,4484,4479,1,0,0,0,4484,4481,1,0,0,0,4485,4516,1,0,0,0,4486, + 4487,5,101,0,0,4487,4488,5,246,0,0,4488,4489,3,590,295,0,4489,4490, + 5,395,0,0,4490,4491,3,620,310,0,4491,4516,1,0,0,0,4492,4493,7,60, + 0,0,4493,4494,3,604,302,0,4494,4495,5,200,0,0,4495,4496,5,426,0, + 0,4496,4497,5,154,0,0,4497,4501,3,590,295,0,4498,4499,5,341,0,0, + 4499,4502,3,620,310,0,4500,4502,5,362,0,0,4501,4498,1,0,0,0,4501, + 4500,1,0,0,0,4502,4506,1,0,0,0,4503,4504,5,387,0,0,4504,4505,5,229, + 0,0,4505,4507,5,431,0,0,4506,4503,1,0,0,0,4506,4507,1,0,0,0,4507, + 4516,1,0,0,0,4508,4509,5,101,0,0,4509,4510,3,604,302,0,4510,4511, + 5,200,0,0,4511,4512,5,426,0,0,4512,4513,5,154,0,0,4513,4514,3,590, + 295,0,4514,4516,1,0,0,0,4515,4350,1,0,0,0,4515,4367,1,0,0,0,4515, + 4397,1,0,0,0,4515,4406,1,0,0,0,4515,4411,1,0,0,0,4515,4425,1,0,0, + 0,4515,4435,1,0,0,0,4515,4458,1,0,0,0,4515,4464,1,0,0,0,4515,4472, + 1,0,0,0,4515,4486,1,0,0,0,4515,4492,1,0,0,0,4515,4508,1,0,0,0,4516, + 603,1,0,0,0,4517,4518,7,61,0,0,4518,605,1,0,0,0,4519,4520,5,259, + 0,0,4520,4521,5,405,0,0,4521,4527,5,431,0,0,4522,4523,5,83,0,0,4523, + 4524,5,246,0,0,4524,4525,5,405,0,0,4525,4527,3,620,310,0,4526,4519, + 1,0,0,0,4526,4522,1,0,0,0,4527,607,1,0,0,0,4528,4533,3,606,303,0, + 4529,4530,5,397,0,0,4530,4532,3,606,303,0,4531,4529,1,0,0,0,4532, + 4535,1,0,0,0,4533,4531,1,0,0,0,4533,4534,1,0,0,0,4534,609,1,0,0, + 0,4535,4533,1,0,0,0,4536,4540,5,259,0,0,4537,4538,5,83,0,0,4538, + 4540,5,246,0,0,4539,4536,1,0,0,0,4539,4537,1,0,0,0,4540,611,1,0, + 0,0,4541,4544,5,2,0,0,4542,4543,5,387,0,0,4543,4545,5,278,0,0,4544, + 4542,1,0,0,0,4544,4545,1,0,0,0,4545,613,1,0,0,0,4546,4547,7,62,0, + 0,4547,615,1,0,0,0,4548,4549,7,63,0,0,4549,617,1,0,0,0,4550,4551, + 1,0,0,0,4551,619,1,0,0,0,4552,4557,3,590,295,0,4553,4554,5,395,0, + 0,4554,4556,3,590,295,0,4555,4553,1,0,0,0,4556,4559,1,0,0,0,4557, + 4555,1,0,0,0,4557,4558,1,0,0,0,4558,621,1,0,0,0,4559,4557,1,0,0, + 0,4560,4565,3,590,295,0,4561,4562,5,395,0,0,4562,4564,3,590,295, + 0,4563,4561,1,0,0,0,4564,4567,1,0,0,0,4565,4563,1,0,0,0,4565,4566, + 1,0,0,0,4566,4578,1,0,0,0,4567,4565,1,0,0,0,4568,4569,4,311,3,0, + 4569,4574,3,590,295,0,4570,4571,5,395,0,0,4571,4573,3,618,309,0, + 4572,4570,1,0,0,0,4573,4576,1,0,0,0,4574,4572,1,0,0,0,4574,4575, + 1,0,0,0,4575,4578,1,0,0,0,4576,4574,1,0,0,0,4577,4560,1,0,0,0,4577, + 4568,1,0,0,0,4578,623,1,0,0,0,4579,4580,3,590,295,0,4580,4581,5, + 411,0,0,4581,4582,7,31,0,0,4582,625,1,0,0,0,4583,4588,5,176,0,0, + 4584,4585,5,211,0,0,4585,4586,5,341,0,0,4586,4588,3,620,310,0,4587, + 4583,1,0,0,0,4587,4584,1,0,0,0,4588,627,1,0,0,0,4589,4590,5,8,0, + 0,4590,4591,5,405,0,0,4591,4602,5,431,0,0,4592,4593,5,259,0,0,4593, + 4594,5,405,0,0,4594,4602,5,431,0,0,4595,4596,5,294,0,0,4596,4597, + 5,405,0,0,4597,4602,5,426,0,0,4598,4599,5,240,0,0,4599,4600,5,405, + 0,0,4600,4602,3,620,310,0,4601,4589,1,0,0,0,4601,4592,1,0,0,0,4601, + 4595,1,0,0,0,4601,4598,1,0,0,0,4602,629,1,0,0,0,4603,4608,3,628, + 314,0,4604,4605,5,397,0,0,4605,4607,3,628,314,0,4606,4604,1,0,0, + 0,4607,4610,1,0,0,0,4608,4606,1,0,0,0,4608,4609,1,0,0,0,4609,631, + 1,0,0,0,4610,4608,1,0,0,0,606,635,642,645,651,657,664,674,677,681, + 696,703,709,714,719,722,746,753,756,761,766,775,779,792,796,800, + 805,812,816,821,828,832,837,881,888,893,916,920,925,928,932,937, + 943,948,955,957,965,969,973,981,984,989,993,996,1001,1009,1013,1016, + 1020,1024,1027,1032,1038,1043,1048,1052,1063,1065,1069,1079,1082, + 1088,1091,1097,1102,1109,1114,1117,1125,1130,1135,1140,1143,1146, + 1149,1157,1164,1169,1176,1182,1185,1188,1190,1200,1202,1206,1210, + 1214,1217,1220,1222,1231,1235,1243,1245,1255,1261,1267,1276,1283, + 1289,1293,1300,1307,1315,1321,1324,1331,1354,1359,1363,1371,1380, + 1387,1393,1400,1403,1409,1416,1424,1433,1442,1449,1453,1460,1462, + 1468,1483,1486,1490,1494,1507,1516,1532,1536,1541,1546,1549,1552, + 1555,1558,1561,1566,1575,1579,1586,1589,1592,1595,1607,1613,1638, + 1642,1650,1654,1657,1660,1663,1666,1669,1672,1675,1686,1689,1709, + 1715,1721,1724,1726,1733,1740,1753,1758,1767,1775,1791,1804,1820, + 1824,1833,1839,1842,1845,1848,1851,1866,1869,1880,1894,1928,1936, + 1941,1949,1954,1959,1966,1974,1982,1990,1996,2003,2013,2017,2025, + 2034,2037,2041,2046,2050,2054,2060,2064,2076,2085,2096,2100,2107, + 2119,2129,2132,2139,2145,2149,2152,2155,2161,2165,2169,2174,2178, + 2182,2186,2194,2198,2202,2210,2214,2219,2223,2230,2237,2245,2257, + 2275,2278,2284,2310,2313,2319,2327,2335,2348,2355,2358,2361,2364, + 2367,2370,2373,2376,2379,2382,2385,2390,2393,2396,2399,2402,2405, + 2408,2411,2414,2417,2420,2422,2428,2432,2435,2438,2441,2444,2447, + 2454,2458,2461,2464,2467,2470,2473,2480,2483,2491,2495,2502,2504, + 2507,2512,2515,2519,2524,2530,2538,2546,2556,2559,2563,2567,2572, + 2579,2583,2585,2589,2596,2601,2614,2622,2632,2642,2655,2665,2669, + 2673,2679,2686,2693,2702,2709,2729,2732,2746,2761,2765,2785,2797, + 2803,2806,2810,2816,2822,2829,2837,2843,2847,2852,2855,2859,2866, + 2871,2876,2879,2881,2889,2897,2901,2905,2909,2926,2943,2950,2959, + 2964,2967,2970,2974,2989,3003,3006,3017,3021,3024,3027,3030,3034, + 3039,3042,3045,3048,3051,3054,3060,3063,3066,3069,3072,3075,3078, + 3081,3084,3087,3091,3093,3098,3103,3107,3111,3116,3121,3130,3140, + 3148,3160,3163,3169,3176,3183,3190,3197,3207,3209,3213,3217,3224, + 3229,3233,3237,3240,3243,3254,3258,3260,3263,3276,3279,3282,3294, + 3297,3304,3313,3318,3320,3322,3339,3342,3350,3353,3357,3360,3363, + 3366,3369,3381,3389,3396,3399,3406,3409,3414,3421,3429,3435,3440, + 3444,3449,3453,3460,3474,3477,3484,3492,3502,3505,3514,3523,3526, + 3532,3535,3540,3543,3557,3563,3565,3576,3582,3585,3595,3600,3604, + 3621,3627,3629,3637,3644,3658,3664,3667,3670,3673,3682,3689,3695, + 3704,3708,3716,3726,3736,3741,3745,3751,3756,3761,3768,3771,3776, + 3779,3783,3788,3796,3801,3805,3807,3816,3839,3849,3852,3859,3862, + 3872,3879,3882,3884,3896,3907,3909,3915,3920,3929,3942,3946,3958, + 3962,3971,3990,4008,4020,4035,4039,4053,4060,4074,4079,4089,4091, + 4099,4107,4115,4123,4131,4139,4150,4154,4164,4166,4171,4185,4198, + 4207,4209,4218,4223,4229,4236,4241,4250,4258,4266,4274,4284,4289, + 4348,4354,4363,4365,4381,4389,4393,4395,4401,4406,4423,4449,4454, + 4456,4484,4501,4506,4515,4526,4533,4539,4544,4557,4565,4574,4577, + 4587,4601,4608 ]; private static __ATN: antlr.ATN; @@ -28767,6 +27336,8 @@ export class ExecStatementContext extends antlr.ParserRuleContext { export class LoadStatementContext extends antlr.ParserRuleContext { + public _inFmt?: Token | null; + public _serdeCls?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -28779,8 +27350,14 @@ export class LoadStatementContext extends antlr.ParserRuleContext { public KW_INPATH(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_INPATH, 0)!; } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_INTO(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_INTO, 0)!; @@ -28797,8 +27374,11 @@ export class LoadStatementContext extends antlr.ParserRuleContext { public KW_OVERWRITE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_OVERWRITE, 0); } - public inputFileFormat(): InputFileFormatContext | null { - return this.getRuleContext(0, InputFileFormatContext); + public KW_INPUTFORMAT(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_INPUTFORMAT, 0); + } + public KW_SERDE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SERDE, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_loadStatement; @@ -29198,9 +27778,6 @@ export class DdlStatementContext extends antlr.ParserRuleContext { public dropViewStatement(): DropViewStatementContext | null { return this.getRuleContext(0, DropViewStatementContext); } - public dropMaterializedViewStatement(): DropMaterializedViewStatementContext | null { - return this.getRuleContext(0, DropMaterializedViewStatementContext); - } public createFunctionStatement(): CreateFunctionStatementContext | null { return this.getRuleContext(0, CreateFunctionStatementContext); } @@ -29228,21 +27805,12 @@ export class DdlStatementContext extends antlr.ParserRuleContext { public lockStatement(): LockStatementContext | null { return this.getRuleContext(0, LockStatementContext); } - public unlockStatement(): UnlockStatementContext | null { - return this.getRuleContext(0, UnlockStatementContext); - } public lockDatabase(): LockDatabaseContext | null { return this.getRuleContext(0, LockDatabaseContext); } - public unlockDatabase(): UnlockDatabaseContext | null { - return this.getRuleContext(0, UnlockDatabaseContext); - } public createRoleStatement(): CreateRoleStatementContext | null { return this.getRuleContext(0, CreateRoleStatementContext); } - public dropRoleStatement(): DropRoleStatementContext | null { - return this.getRuleContext(0, DropRoleStatementContext); - } public grantPrivileges(): GrantPrivilegesContext | null { return this.getRuleContext(0, GrantPrivilegesContext); } @@ -29440,6 +28008,42 @@ export class RestrictOrCascadeContext extends antlr.ParserRuleContext { } +export class StoredAsDirsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_STORED(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_STORED, 0)!; + } + public KW_AS(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_AS, 0)!; + } + public KW_DIRECTORIES(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_DIRECTORIES, 0)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_storedAsDirs; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterStoredAsDirs) { + listener.enterStoredAsDirs(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitStoredAsDirs) { + listener.exitStoredAsDirs(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitStoredAsDirs) { + return visitor.visitStoredAsDirs(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class RewriteEnabledContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -29506,46 +28110,12 @@ export class RewriteDisabledContext extends antlr.ParserRuleContext { } -export class StoredAsDirsContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_STORED(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_STORED, 0)!; - } - public KW_AS(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_AS, 0)!; - } - public KW_DIRECTORIES(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_DIRECTORIES, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_storedAsDirs; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterStoredAsDirs) { - listener.enterStoredAsDirs(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitStoredAsDirs) { - listener.exitStoredAsDirs(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitStoredAsDirs) { - return visitor.visitStoredAsDirs(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { public _name?: DbSchemaNameCreateContext; + public _comment?: Token | null; public _locn?: Token | null; public _dbprops?: KeyValuePropertiesContext; + public _dcName?: DbSchemaNameContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -29564,8 +28134,8 @@ export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { public ifNotExists(): IfNotExistsContext | null { return this.getRuleContext(0, IfNotExistsContext); } - public databaseComment(): DatabaseCommentContext | null { - return this.getRuleContext(0, DatabaseCommentContext); + public KW_COMMENT(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_COMMENT, 0); } public locationPath(): LocationPathContext | null { return this.getRuleContext(0, LocationPathContext); @@ -29579,14 +28149,23 @@ export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { public KW_DBPROPERTIES(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_DBPROPERTIES, 0); } - public StringLiteral(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.StringLiteral, 0); + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public keyValueProperties(): KeyValuePropertiesContext | null { return this.getRuleContext(0, KeyValuePropertiesContext); } - public dbConnectorName(): DbConnectorNameContext | null { - return this.getRuleContext(0, DbConnectorNameContext); + public KW_USING(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_USING, 0); + } + public dbSchemaName(): DbSchemaNameContext | null { + return this.getRuleContext(0, DbSchemaNameContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_createDatabaseStatement; @@ -29611,40 +28190,6 @@ export class CreateDatabaseStatementContext extends antlr.ParserRuleContext { } -export class DbConnectorNameContext extends antlr.ParserRuleContext { - public _dcName?: DbSchemaNameContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_USING(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_USING, 0)!; - } - public dbSchemaName(): DbSchemaNameContext { - return this.getRuleContext(0, DbSchemaNameContext)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_dbConnectorName; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDbConnectorName) { - listener.enterDbConnectorName(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDbConnectorName) { - listener.exitDbConnectorName(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDbConnectorName) { - return visitor.visitDbConnectorName(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class SwitchDatabaseStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -29720,40 +28265,6 @@ export class DropDatabaseStatementContext extends antlr.ParserRuleContext { } -export class DatabaseCommentContext extends antlr.ParserRuleContext { - public _comment?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_COMMENT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_COMMENT, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_databaseComment; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDatabaseComment) { - listener.enterDatabaseComment(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDatabaseComment) { - listener.exitDatabaseComment(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDatabaseComment) { - return visitor.visitDatabaseComment(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TruncateTableStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -29850,50 +28361,6 @@ export class DropTableStatementContext extends antlr.ParserRuleContext { } -export class InputFileFormatContext extends antlr.ParserRuleContext { - public _inFmt?: Token | null; - public _serdeCls?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_INPUTFORMAT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_INPUTFORMAT, 0)!; - } - public KW_SERDE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_SERDE, 0)!; - } - public StringLiteral(): antlr.TerminalNode[]; - public StringLiteral(i: number): antlr.TerminalNode | null; - public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.StringLiteral); - } else { - return this.getToken(HiveSqlParser.StringLiteral, i); - } - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_inputFileFormat; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterInputFileFormat) { - listener.enterInputFileFormat(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitInputFileFormat) { - listener.exitInputFileFormat(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitInputFileFormat) { - return visitor.visitInputFileFormat(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TabTypeExprContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -30236,6 +28703,9 @@ export class ShowStatementContext extends antlr.ParserRuleContext { public _dbName?: DbSchemaNameContext; public _parttype?: PartTypeExprContext; public _compactId?: Token | null; + public _poolName?: Token | null; + public _compactType?: Token | null; + public _status?: Token | null; public _rp_name?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -30243,20 +28713,17 @@ export class ShowStatementContext extends antlr.ParserRuleContext { public KW_SHOW(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_SHOW, 0)!; } - public KW_DATABASES(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DATABASES, 0); - } - public KW_SCHEMAS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SCHEMAS, 0); + public KW_TABLES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_TABLES, 0); } - public KW_LIKE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_LIKE, 0); + public KW_VIEWS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_VIEWS, 0); } - public showStmtIdentifier(): ShowStmtIdentifierContext | null { - return this.getRuleContext(0, ShowStmtIdentifierContext); + public KW_MATERIALIZED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MATERIALIZED, 0); } - public KW_TABLES(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_TABLES, 0); + public KW_COLUMNS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_COLUMNS, 0); } public from_in(): From_inContext[]; public from_in(i: number): From_inContext | null; @@ -30267,135 +28734,144 @@ export class ShowStatementContext extends antlr.ParserRuleContext { return this.getRuleContext(i, From_inContext); } - public KW_EXTENDED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_EXTENDED, 0); - } - public dbSchemaName(): DbSchemaNameContext | null { - return this.getRuleContext(0, DbSchemaNameContext); - } - public showTablesFilterExpr(): ShowTablesFilterExprContext | null { - return this.getRuleContext(0, ShowTablesFilterExprContext); - } - public KW_VIEWS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_VIEWS, 0); - } - public KW_MATERIALIZED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MATERIALIZED, 0); - } - public KW_COLUMNS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_COLUMNS, 0); - } public tableOrView(): TableOrViewContext | null { return this.getRuleContext(0, TableOrViewContext); } - public KW_SORTED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SORTED, 0); - } public KW_FUNCTIONS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_FUNCTIONS, 0); } - public functionNameForDDL(): FunctionNameForDDLContext | null { - return this.getRuleContext(0, FunctionNameForDDLContext); - } public KW_PARTITIONS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_PARTITIONS, 0); } - public partitionSpec(): PartitionSpecContext | null { - return this.getRuleContext(0, PartitionSpecContext); - } - public whereClause(): WhereClauseContext | null { - return this.getRuleContext(0, WhereClauseContext); - } - public orderByClause(): OrderByClauseContext | null { - return this.getRuleContext(0, OrderByClauseContext); - } - public limitClause(): LimitClauseContext | null { - return this.getRuleContext(0, LimitClauseContext); - } public KW_CREATE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CREATE, 0); } - public db_schema(): Db_schemaContext | null { - return this.getRuleContext(0, Db_schemaContext); - } public KW_TABLE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TABLE, 0); } - public tableName(): TableNameContext | null { - return this.getRuleContext(0, TableNameContext); + public KW_EXTENDED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_EXTENDED, 0); } - public KW_TBLPROPERTIES(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_TBLPROPERTIES, 0); + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LIKE, 0); } - public LPAREN(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.LPAREN, 0); + public showStmtIdentifier(): ShowStmtIdentifierContext | null { + return this.getRuleContext(0, ShowStmtIdentifierContext); } - public RPAREN(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.RPAREN, 0); + public KW_TBLPROPERTIES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_TBLPROPERTIES, 0); } - public StringLiteral(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.StringLiteral, 0); + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); } public KW_LOCKS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_LOCKS, 0); } - public partTypeExpr(): PartTypeExprContext | null { - return this.getRuleContext(0, PartTypeExprContext); - } public KW_COMPACTIONS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_COMPACTIONS, 0); } - public KW_COMPACT_ID(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_COMPACT_ID, 0); - } - public EQUAL(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.EQUAL, 0); - } - public Number(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.Number, 0); - } - public compactionPool(): CompactionPoolContext | null { - return this.getRuleContext(0, CompactionPoolContext); - } - public compactionType(): CompactionTypeContext | null { - return this.getRuleContext(0, CompactionTypeContext); - } - public compactionStatus(): CompactionStatusContext | null { - return this.getRuleContext(0, CompactionStatusContext); - } public KW_TRANSACTIONS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TRANSACTIONS, 0); } public KW_CONF(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONF, 0); } + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } + } public KW_RESOURCE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_RESOURCE, 0); } - public KW_PLAN(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_PLAN, 0); - } - public KW_PLANS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_PLANS, 0); - } - public id_(): Id_Context | null { - return this.getRuleContext(0, Id_Context); - } public KW_DATACONNECTORS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_DATACONNECTORS, 0); } public KW_ON(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ON, 0); } + public KW_DATABASES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DATABASES, 0); + } + public KW_SCHEMAS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SCHEMAS, 0); + } public KW_INDEX(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_INDEX, 0); } public KW_INDEXES(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_INDEXES, 0); } + public db_schema(): Db_schemaContext | null { + return this.getRuleContext(0, Db_schemaContext); + } + public KW_COMPACT_ID(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_COMPACT_ID, 0); + } + public EQUAL(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.EQUAL, 0); + } + public KW_PLAN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_PLAN, 0); + } + public KW_PLANS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_PLANS, 0); + } + public KW_SORTED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SORTED, 0); + } + public functionNameForDDL(): FunctionNameForDDLContext | null { + return this.getRuleContext(0, FunctionNameForDDLContext); + } + public partitionSpec(): PartitionSpecContext | null { + return this.getRuleContext(0, PartitionSpecContext); + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public orderByClause(): OrderByClauseContext | null { + return this.getRuleContext(0, OrderByClauseContext); + } + public limitClause(): LimitClauseContext | null { + return this.getRuleContext(0, LimitClauseContext); + } + public dbSchemaName(): DbSchemaNameContext | null { + return this.getRuleContext(0, DbSchemaNameContext); + } + public LPAREN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.LPAREN, 0); + } + public RPAREN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.RPAREN, 0); + } + public Number(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.Number, 0); + } + public id_(): Id_Context | null { + return this.getRuleContext(0, Id_Context); + } public KW_FORMATTED(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_FORMATTED, 0); } + public showTablesFilterExpr(): ShowTablesFilterExprContext | null { + return this.getRuleContext(0, ShowTablesFilterExprContext); + } + public KW_POOL(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_POOL, 0); + } + public KW_TYPE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_TYPE, 0); + } + public KW_STATUS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_STATUS, 0); + } + public partTypeExpr(): PartTypeExprContext | null { + return this.getRuleContext(0, PartTypeExprContext); + } public override get ruleIndex(): number { return HiveSqlParser.RULE_showStatement; } @@ -30468,17 +28944,23 @@ export class LockStatementContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_LOCK(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_LOCK, 0)!; - } public KW_TABLE(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_TABLE, 0)!; } public tableOrPartition(): TableOrPartitionContext { return this.getRuleContext(0, TableOrPartitionContext)!; } - public lockMode(): LockModeContext { - return this.getRuleContext(0, LockModeContext)!; + public KW_LOCK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LOCK, 0); + } + public KW_UNLOCK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_UNLOCK, 0); + } + public KW_SHARED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SHARED, 0); + } + public KW_EXCLUSIVE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_EXCLUSIVE, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_lockStatement; @@ -30508,18 +28990,24 @@ export class LockDatabaseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_LOCK(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_LOCK, 0)!; - } public db_schema(): Db_schemaContext { return this.getRuleContext(0, Db_schemaContext)!; } - public lockMode(): LockModeContext { - return this.getRuleContext(0, LockModeContext)!; + public KW_LOCK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LOCK, 0); + } + public KW_UNLOCK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_UNLOCK, 0); } public dbSchemaName(): DbSchemaNameContext { return this.getRuleContext(0, DbSchemaNameContext)!; } + public KW_SHARED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SHARED, 0); + } + public KW_EXCLUSIVE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_EXCLUSIVE, 0); + } public override get ruleIndex(): number { return HiveSqlParser.RULE_lockDatabase; } @@ -30543,123 +29031,20 @@ export class LockDatabaseContext extends antlr.ParserRuleContext { } -export class LockModeContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_SHARED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SHARED, 0); - } - public KW_EXCLUSIVE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_EXCLUSIVE, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_lockMode; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterLockMode) { - listener.enterLockMode(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitLockMode) { - listener.exitLockMode(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitLockMode) { - return visitor.visitLockMode(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnlockStatementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_UNLOCK(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_UNLOCK, 0)!; - } - public KW_TABLE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_TABLE, 0)!; - } - public tableOrPartition(): TableOrPartitionContext { - return this.getRuleContext(0, TableOrPartitionContext)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_unlockStatement; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterUnlockStatement) { - listener.enterUnlockStatement(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitUnlockStatement) { - listener.exitUnlockStatement(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitUnlockStatement) { - return visitor.visitUnlockStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class UnlockDatabaseContext extends antlr.ParserRuleContext { - public _dbName?: DbSchemaNameContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_UNLOCK(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_UNLOCK, 0)!; - } - public db_schema(): Db_schemaContext { - return this.getRuleContext(0, Db_schemaContext)!; - } - public dbSchemaName(): DbSchemaNameContext { - return this.getRuleContext(0, DbSchemaNameContext)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_unlockDatabase; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterUnlockDatabase) { - listener.enterUnlockDatabase(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitUnlockDatabase) { - listener.exitUnlockDatabase(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitUnlockDatabase) { - return visitor.visitUnlockDatabase(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class CreateRoleStatementContext extends antlr.ParserRuleContext { public _roleName?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_CREATE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_CREATE, 0)!; - } public KW_ROLE(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_ROLE, 0)!; } + public KW_CREATE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_CREATE, 0); + } + public KW_DROP(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DROP, 0); + } public id_(): Id_Context { return this.getRuleContext(0, Id_Context)!; } @@ -30686,50 +29071,19 @@ export class CreateRoleStatementContext extends antlr.ParserRuleContext { } -export class DropRoleStatementContext extends antlr.ParserRuleContext { - public _roleName?: Id_Context; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DROP(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_DROP, 0)!; - } - public KW_ROLE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_ROLE, 0)!; - } - public id_(): Id_Context { - return this.getRuleContext(0, Id_Context)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_dropRoleStatement; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDropRoleStatement) { - listener.enterDropRoleStatement(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDropRoleStatement) { - listener.exitDropRoleStatement(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDropRoleStatement) { - return visitor.visitDropRoleStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class GrantPrivilegesContext extends antlr.ParserRuleContext { public _privList?: PrivilegeListContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_GRANT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_GRANT, 0)!; + public KW_GRANT(): antlr.TerminalNode[]; + public KW_GRANT(i: number): antlr.TerminalNode | null; + public KW_GRANT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.KW_GRANT); + } else { + return this.getToken(HiveSqlParser.KW_GRANT, i); + } } public KW_TO(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_TO, 0)!; @@ -30743,8 +29097,11 @@ export class GrantPrivilegesContext extends antlr.ParserRuleContext { public privilegeObject(): PrivilegeObjectContext | null { return this.getRuleContext(0, PrivilegeObjectContext); } - public withGrantOption(): WithGrantOptionContext | null { - return this.getRuleContext(0, WithGrantOptionContext); + public KW_WITH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_WITH, 0); + } + public KW_OPTION(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_OPTION, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_grantPrivileges; @@ -30785,8 +29142,14 @@ export class RevokePrivilegesContext extends antlr.ParserRuleContext { public principalSpecification(): PrincipalSpecificationContext { return this.getRuleContext(0, PrincipalSpecificationContext)!; } - public grantOptionFor(): GrantOptionForContext | null { - return this.getRuleContext(0, GrantOptionForContext); + public KW_GRANT(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_GRANT, 0); + } + public KW_OPTION(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_OPTION, 0); + } + public KW_FOR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_FOR, 0); } public privilegeObject(): PrivilegeObjectContext | null { return this.getRuleContext(0, PrivilegeObjectContext); @@ -30848,8 +29211,14 @@ export class GrantRoleContext extends antlr.ParserRuleContext { return this.getToken(HiveSqlParser.COMMA, i); } } - public withAdminOption(): WithAdminOptionContext | null { - return this.getRuleContext(0, WithAdminOptionContext); + public KW_WITH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_WITH, 0); + } + public KW_ADMIN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_ADMIN, 0); + } + public KW_OPTION(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_OPTION, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_grantRole; @@ -30896,8 +29265,14 @@ export class RevokeRoleContext extends antlr.ParserRuleContext { public principalSpecification(): PrincipalSpecificationContext { return this.getRuleContext(0, PrincipalSpecificationContext)!; } - public adminOptionFor(): AdminOptionForContext | null { - return this.getRuleContext(0, AdminOptionForContext); + public KW_ADMIN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_ADMIN, 0); + } + public KW_OPTION(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_OPTION, 0); + } + public KW_FOR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_FOR, 0); } public KW_ROLE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ROLE, 0); @@ -31619,150 +29994,6 @@ export class PrincipalAlterNameContext extends antlr.ParserRuleContext { } -export class WithGrantOptionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_WITH(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_WITH, 0)!; - } - public KW_GRANT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_GRANT, 0)!; - } - public KW_OPTION(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_OPTION, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_withGrantOption; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterWithGrantOption) { - listener.enterWithGrantOption(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitWithGrantOption) { - listener.exitWithGrantOption(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitWithGrantOption) { - return visitor.visitWithGrantOption(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class GrantOptionForContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_GRANT(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_GRANT, 0)!; - } - public KW_OPTION(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_OPTION, 0)!; - } - public KW_FOR(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_FOR, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_grantOptionFor; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterGrantOptionFor) { - listener.enterGrantOptionFor(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitGrantOptionFor) { - listener.exitGrantOptionFor(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitGrantOptionFor) { - return visitor.visitGrantOptionFor(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AdminOptionForContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_ADMIN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_ADMIN, 0)!; - } - public KW_OPTION(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_OPTION, 0)!; - } - public KW_FOR(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_FOR, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_adminOptionFor; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterAdminOptionFor) { - listener.enterAdminOptionFor(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitAdminOptionFor) { - listener.exitAdminOptionFor(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitAdminOptionFor) { - return visitor.visitAdminOptionFor(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WithAdminOptionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_WITH(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_WITH, 0)!; - } - public KW_ADMIN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_ADMIN, 0)!; - } - public KW_OPTION(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_OPTION, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_withAdminOption; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterWithAdminOption) { - listener.enterWithAdminOption(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitWithAdminOption) { - listener.exitWithAdminOption(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitWithAdminOption) { - return visitor.visitWithAdminOption(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class MetastoreCheckContext extends antlr.ParserRuleContext { public _repair?: Token | null; public _opt?: Token | null; @@ -31820,86 +30051,6 @@ export class MetastoreCheckContext extends antlr.ParserRuleContext { } -export class ResourceListContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public resource(): ResourceContext[]; - public resource(i: number): ResourceContext | null; - public resource(i?: number): ResourceContext[] | ResourceContext | null { - if (i === undefined) { - return this.getRuleContexts(ResourceContext); - } - - return this.getRuleContext(i, ResourceContext); - } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.COMMA); - } else { - return this.getToken(HiveSqlParser.COMMA, i); - } - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_resourceList; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterResourceList) { - listener.enterResourceList(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitResourceList) { - listener.exitResourceList(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitResourceList) { - return visitor.visitResourceList(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ResourceContext extends antlr.ParserRuleContext { - public _resType?: ResourceTypeContext; - public _resPath?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public resourceType(): ResourceTypeContext { - return this.getRuleContext(0, ResourceTypeContext)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_resource; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterResource) { - listener.enterResource(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitResource) { - listener.exitResource(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitResource) { - return visitor.visitResource(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class ResourceTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -31938,7 +30089,8 @@ export class ResourceTypeContext extends antlr.ParserRuleContext { export class CreateFunctionStatementContext extends antlr.ParserRuleContext { public _temp?: Token | null; - public _rList?: ResourceListContext; + public _resType?: ResourceTypeContext; + public _resPath?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -31954,8 +30106,14 @@ export class CreateFunctionStatementContext extends antlr.ParserRuleContext { public KW_AS(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_AS, 0)!; } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_USING(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_USING, 0); @@ -31963,8 +30121,23 @@ export class CreateFunctionStatementContext extends antlr.ParserRuleContext { public KW_TEMPORARY(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TEMPORARY, 0); } - public resourceList(): ResourceListContext | null { - return this.getRuleContext(0, ResourceListContext); + public resourceType(): ResourceTypeContext[]; + public resourceType(i: number): ResourceTypeContext | null; + public resourceType(i?: number): ResourceTypeContext[] | ResourceTypeContext | null { + if (i === undefined) { + return this.getRuleContexts(ResourceTypeContext); + } + + return this.getRuleContext(i, ResourceTypeContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.COMMA); + } else { + return this.getToken(HiveSqlParser.COMMA, i); + } } public override get ruleIndex(): number { return HiveSqlParser.RULE_createFunctionStatement; @@ -32247,8 +30420,8 @@ export class CreateIndexStatementContext extends antlr.ParserRuleContext { public tableComment(): TableCommentContext | null { return this.getRuleContext(0, TableCommentContext); } - public tableRowFormat(): TableRowFormatContext | null { - return this.getRuleContext(0, TableRowFormatContext); + public rowFormat(): RowFormatContext | null { + return this.getRuleContext(0, RowFormatContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_createIndexStatement; @@ -32644,6 +30817,9 @@ export class DropViewStatementContext extends antlr.ParserRuleContext { public viewName(): ViewNameContext { return this.getRuleContext(0, ViewNameContext)!; } + public KW_MATERIALIZED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MATERIALIZED, 0); + } public ifExists(): IfExistsContext | null { return this.getRuleContext(0, IfExistsContext); } @@ -32708,8 +30884,8 @@ export class CreateMaterializedViewStatementContext extends antlr.ParserRuleCont public viewOrganization(): ViewOrganizationContext | null { return this.getRuleContext(0, ViewOrganizationContext); } - public tableRowFormat(): TableRowFormatContext | null { - return this.getRuleContext(0, TableRowFormatContext); + public rowFormat(): RowFormatContext | null { + return this.getRuleContext(0, RowFormatContext); } public tableFileFormat(): TableFileFormatContext | null { return this.getRuleContext(0, TableFileFormatContext); @@ -32743,48 +30919,6 @@ export class CreateMaterializedViewStatementContext extends antlr.ParserRuleCont } -export class DropMaterializedViewStatementContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DROP(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_DROP, 0)!; - } - public KW_MATERIALIZED(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_MATERIALIZED, 0)!; - } - public KW_VIEW(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_VIEW, 0)!; - } - public viewName(): ViewNameContext { - return this.getRuleContext(0, ViewNameContext)!; - } - public ifExists(): IfExistsContext | null { - return this.getRuleContext(0, IfExistsContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_dropMaterializedViewStatement; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDropMaterializedViewStatement) { - listener.enterDropMaterializedViewStatement(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDropMaterializedViewStatement) { - listener.exitDropMaterializedViewStatement(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDropMaterializedViewStatement) { - return visitor.visitDropMaterializedViewStatement(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class CreateScheduledQueryStatementContext extends antlr.ParserRuleContext { public _name?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -33349,17 +31483,29 @@ export class PartitionTransformTypeContext extends antlr.ParserRuleContext { public RPAREN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.RPAREN, 0); } - public year(): YearContext | null { - return this.getRuleContext(0, YearContext); + public KW_YEAR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEAR, 0); + } + public KW_YEARS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEARS, 0); } - public month(): MonthContext | null { - return this.getRuleContext(0, MonthContext); + public KW_MONTH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTH, 0); } - public day(): DayContext | null { - return this.getRuleContext(0, DayContext); + public KW_MONTHS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTHS, 0); } - public hour(): HourContext | null { - return this.getRuleContext(0, HourContext); + public KW_DAY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAY, 0); + } + public KW_DAYS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAYS, 0); + } + public KW_HOUR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOUR, 0); + } + public KW_HOURS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOURS, 0); } public COMMA(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.COMMA, 0); @@ -33572,72 +31718,6 @@ export class RowFormatContext extends antlr.ParserRuleContext { } -export class RecordReaderContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_RECORDREADER(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_RECORDREADER, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_recordReader; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterRecordReader) { - listener.enterRecordReader(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitRecordReader) { - listener.exitRecordReader(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitRecordReader) { - return visitor.visitRecordReader(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class RecordWriterContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_RECORDWRITER(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_RECORDWRITER, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_recordWriter; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterRecordWriter) { - listener.enterRecordWriter(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitRecordWriter) { - listener.exitRecordWriter(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitRecordWriter) { - return visitor.visitRecordWriter(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class RowFormatSerdeContext extends antlr.ParserRuleContext { public _name?: Token | null; public _serderops?: TablePropertiesContext; @@ -33701,17 +31781,17 @@ export class RowFormatDelimitedContext extends antlr.ParserRuleContext { public KW_DELIMITED(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_DELIMITED, 0)!; } - public tableRowFormatFieldIdentifier(): TableRowFormatFieldIdentifierContext | null { - return this.getRuleContext(0, TableRowFormatFieldIdentifierContext); + public rowFormatFieldIdentifier(): RowFormatFieldIdentifierContext | null { + return this.getRuleContext(0, RowFormatFieldIdentifierContext); } - public tableRowFormatCollItemsIdentifier(): TableRowFormatCollItemsIdentifierContext | null { - return this.getRuleContext(0, TableRowFormatCollItemsIdentifierContext); + public rowFormatCollItemsIdentifier(): RowFormatCollItemsIdentifierContext | null { + return this.getRuleContext(0, RowFormatCollItemsIdentifierContext); } - public tableRowFormatMapKeysIdentifier(): TableRowFormatMapKeysIdentifierContext | null { - return this.getRuleContext(0, TableRowFormatMapKeysIdentifierContext); + public rowFormatMapKeysIdentifier(): RowFormatMapKeysIdentifierContext | null { + return this.getRuleContext(0, RowFormatMapKeysIdentifierContext); } - public tableRowFormatLinesIdentifier(): TableRowFormatLinesIdentifierContext | null { - return this.getRuleContext(0, TableRowFormatLinesIdentifierContext); + public rowFormatLinesIdentifier(): RowFormatLinesIdentifierContext | null { + return this.getRuleContext(0, RowFormatLinesIdentifierContext); } public tableRowNullFormat(): TableRowNullFormatContext | null { return this.getRuleContext(0, TableRowNullFormatContext); @@ -33739,39 +31819,6 @@ export class RowFormatDelimitedContext extends antlr.ParserRuleContext { } -export class TableRowFormatContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public rowFormatDelimited(): RowFormatDelimitedContext | null { - return this.getRuleContext(0, RowFormatDelimitedContext); - } - public rowFormatSerde(): RowFormatSerdeContext | null { - return this.getRuleContext(0, RowFormatSerdeContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormat; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormat) { - listener.enterTableRowFormat(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormat) { - listener.exitTableRowFormat(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormat) { - return visitor.visitTableRowFormat(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TablePropertiesPrefixedContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34012,7 +32059,7 @@ export class KeyValuePropertyContext extends antlr.ParserRuleContext { } -export class TableRowFormatFieldIdentifierContext extends antlr.ParserRuleContext { +export class RowFormatFieldIdentifierContext extends antlr.ParserRuleContext { public _fldIdnt?: Token | null; public _fldEscape?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -34046,21 +32093,21 @@ export class TableRowFormatFieldIdentifierContext extends antlr.ParserRuleContex return this.getToken(HiveSqlParser.KW_ESCAPED, 0); } public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormatFieldIdentifier; + return HiveSqlParser.RULE_rowFormatFieldIdentifier; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormatFieldIdentifier) { - listener.enterTableRowFormatFieldIdentifier(this); + if(listener.enterRowFormatFieldIdentifier) { + listener.enterRowFormatFieldIdentifier(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormatFieldIdentifier) { - listener.exitTableRowFormatFieldIdentifier(this); + if(listener.exitRowFormatFieldIdentifier) { + listener.exitRowFormatFieldIdentifier(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormatFieldIdentifier) { - return visitor.visitTableRowFormatFieldIdentifier(this); + if (visitor.visitRowFormatFieldIdentifier) { + return visitor.visitRowFormatFieldIdentifier(this); } else { return visitor.visitChildren(this); } @@ -34068,7 +32115,7 @@ export class TableRowFormatFieldIdentifierContext extends antlr.ParserRuleContex } -export class TableRowFormatCollItemsIdentifierContext extends antlr.ParserRuleContext { +export class RowFormatCollItemsIdentifierContext extends antlr.ParserRuleContext { public _collIdnt?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34089,21 +32136,21 @@ export class TableRowFormatCollItemsIdentifierContext extends antlr.ParserRuleCo return this.getToken(HiveSqlParser.StringLiteral, 0)!; } public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormatCollItemsIdentifier; + return HiveSqlParser.RULE_rowFormatCollItemsIdentifier; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormatCollItemsIdentifier) { - listener.enterTableRowFormatCollItemsIdentifier(this); + if(listener.enterRowFormatCollItemsIdentifier) { + listener.enterRowFormatCollItemsIdentifier(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormatCollItemsIdentifier) { - listener.exitTableRowFormatCollItemsIdentifier(this); + if(listener.exitRowFormatCollItemsIdentifier) { + listener.exitRowFormatCollItemsIdentifier(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormatCollItemsIdentifier) { - return visitor.visitTableRowFormatCollItemsIdentifier(this); + if (visitor.visitRowFormatCollItemsIdentifier) { + return visitor.visitRowFormatCollItemsIdentifier(this); } else { return visitor.visitChildren(this); } @@ -34111,7 +32158,7 @@ export class TableRowFormatCollItemsIdentifierContext extends antlr.ParserRuleCo } -export class TableRowFormatMapKeysIdentifierContext extends antlr.ParserRuleContext { +export class RowFormatMapKeysIdentifierContext extends antlr.ParserRuleContext { public _mapKeysIdnt?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34132,21 +32179,21 @@ export class TableRowFormatMapKeysIdentifierContext extends antlr.ParserRuleCont return this.getToken(HiveSqlParser.StringLiteral, 0)!; } public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormatMapKeysIdentifier; + return HiveSqlParser.RULE_rowFormatMapKeysIdentifier; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormatMapKeysIdentifier) { - listener.enterTableRowFormatMapKeysIdentifier(this); + if(listener.enterRowFormatMapKeysIdentifier) { + listener.enterRowFormatMapKeysIdentifier(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormatMapKeysIdentifier) { - listener.exitTableRowFormatMapKeysIdentifier(this); + if(listener.exitRowFormatMapKeysIdentifier) { + listener.exitRowFormatMapKeysIdentifier(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormatMapKeysIdentifier) { - return visitor.visitTableRowFormatMapKeysIdentifier(this); + if (visitor.visitRowFormatMapKeysIdentifier) { + return visitor.visitRowFormatMapKeysIdentifier(this); } else { return visitor.visitChildren(this); } @@ -34154,7 +32201,7 @@ export class TableRowFormatMapKeysIdentifierContext extends antlr.ParserRuleCont } -export class TableRowFormatLinesIdentifierContext extends antlr.ParserRuleContext { +export class RowFormatLinesIdentifierContext extends antlr.ParserRuleContext { public _linesIdnt?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34172,21 +32219,21 @@ export class TableRowFormatLinesIdentifierContext extends antlr.ParserRuleContex return this.getToken(HiveSqlParser.StringLiteral, 0)!; } public override get ruleIndex(): number { - return HiveSqlParser.RULE_tableRowFormatLinesIdentifier; + return HiveSqlParser.RULE_rowFormatLinesIdentifier; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterTableRowFormatLinesIdentifier) { - listener.enterTableRowFormatLinesIdentifier(this); + if(listener.enterRowFormatLinesIdentifier) { + listener.enterRowFormatLinesIdentifier(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitTableRowFormatLinesIdentifier) { - listener.exitTableRowFormatLinesIdentifier(this); + if(listener.exitRowFormatLinesIdentifier) { + listener.exitRowFormatLinesIdentifier(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitTableRowFormatLinesIdentifier) { - return visitor.visitTableRowFormatLinesIdentifier(this); + if (visitor.visitRowFormatLinesIdentifier) { + return visitor.visitRowFormatLinesIdentifier(this); } else { return visitor.visitChildren(this); } @@ -34792,8 +32839,11 @@ export class EnableValidateSpecificationContext extends antlr.ParserRuleContext public enableSpecification(): EnableSpecificationContext | null { return this.getRuleContext(0, EnableSpecificationContext); } - public validateSpecification(): ValidateSpecificationContext | null { - return this.getRuleContext(0, ValidateSpecificationContext); + public KW_VALIDATE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_VALIDATE, 0); + } + public KW_NOVALIDATE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_NOVALIDATE, 0); } public enforcedSpecification(): EnforcedSpecificationContext | null { return this.getRuleContext(0, EnforcedSpecificationContext); @@ -34854,39 +32904,6 @@ export class EnableSpecificationContext extends antlr.ParserRuleContext { } -export class ValidateSpecificationContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_VALIDATE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_VALIDATE, 0); - } - public KW_NOVALIDATE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_NOVALIDATE, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_validateSpecification; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterValidateSpecification) { - listener.enterValidateSpecification(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitValidateSpecification) { - listener.exitValidateSpecification(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitValidateSpecification) { - return visitor.visitValidateSpecification(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class EnforcedSpecificationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -34920,39 +32937,6 @@ export class EnforcedSpecificationContext extends antlr.ParserRuleContext { } -export class RelySpecificationContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_RELY(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_RELY, 0); - } - public KW_NORELY(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_NORELY, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_relySpecification; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterRelySpecification) { - listener.enterRelySpecification(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitRelySpecification) { - listener.exitRelySpecification(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitRelySpecification) { - return visitor.visitRelySpecification(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class CreateConstraintContext extends antlr.ParserRuleContext { public _constraintName?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -34964,8 +32948,8 @@ export class CreateConstraintContext extends antlr.ParserRuleContext { public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); } - public constraintOptsCreate(): ConstraintOptsCreateContext | null { - return this.getRuleContext(0, ConstraintOptsCreateContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public id_(): Id_Context | null { return this.getRuleContext(0, Id_Context); @@ -35007,8 +32991,8 @@ export class AlterConstraintWithNameContext extends antlr.ParserRuleContext { public id_(): Id_Context { return this.getRuleContext(0, Id_Context)!; } - public constraintOptsAlter(): ConstraintOptsAlterContext | null { - return this.getRuleContext(0, ConstraintOptsAlterContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_alterConstraintWithName; @@ -35171,8 +33155,8 @@ export class CreateForeignKeyContext extends antlr.ParserRuleContext { public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); } - public constraintOptsCreate(): ConstraintOptsCreateContext | null { - return this.getRuleContext(0, ConstraintOptsCreateContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public id_(): Id_Context | null { return this.getRuleContext(0, Id_Context); @@ -35235,8 +33219,8 @@ export class AlterForeignKeyWithNameContext extends antlr.ParserRuleContext { public tableName(): TableNameContext { return this.getRuleContext(0, TableNameContext)!; } - public constraintOptsAlter(): ConstraintOptsAlterContext | null { - return this.getRuleContext(0, ConstraintOptsAlterContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public override get ruleIndex(): number { return HiveSqlParser.RULE_alterForeignKeyWithName; @@ -35658,8 +33642,8 @@ export class ColumnNameTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnType(): ColumnTypeContext { - return this.getRuleContext(0, ColumnTypeContext)!; + public type(): TypeContext { + return this.getRuleContext(0, TypeContext)!; } public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; @@ -35761,7 +33745,7 @@ export class TableConstraintContext extends antlr.ParserRuleContext { export class ColumnNameTypeConstraintContext extends antlr.ParserRuleContext { public _colName?: ColumnNameCreateContext; - public _colType?: ColumnTypeContext; + public _colType?: TypeContext; public _comment?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -35769,8 +33753,8 @@ export class ColumnNameTypeConstraintContext extends antlr.ParserRuleContext { public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; } - public columnType(): ColumnTypeContext { - return this.getRuleContext(0, ColumnTypeContext)!; + public type(): TypeContext { + return this.getRuleContext(0, TypeContext)!; } public columnConstraint(): ColumnConstraintContext | null { return this.getRuleContext(0, ColumnConstraintContext); @@ -35862,8 +33846,8 @@ export class ForeignKeyConstraintContext extends antlr.ParserRuleContext { public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); } - public constraintOptsCreate(): ConstraintOptsCreateContext | null { - return this.getRuleContext(0, ConstraintOptsCreateContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public id_(): Id_Context | null { return this.getRuleContext(0, Id_Context); @@ -35902,8 +33886,8 @@ export class ColConstraintContext extends antlr.ParserRuleContext { public KW_CONSTRAINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); } - public constraintOptsCreate(): ConstraintOptsCreateContext | null { - return this.getRuleContext(0, ConstraintOptsCreateContext); + public constraintOpts(): ConstraintOptsContext | null { + return this.getRuleContext(0, ConstraintOptsContext); } public id_(): Id_Context | null { return this.getRuleContext(0, Id_Context); @@ -35931,133 +33915,6 @@ export class ColConstraintContext extends antlr.ParserRuleContext { } -export class AlterColumnConstraintContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public alterForeignKeyConstraint(): AlterForeignKeyConstraintContext | null { - return this.getRuleContext(0, AlterForeignKeyConstraintContext); - } - public alterColConstraint(): AlterColConstraintContext | null { - return this.getRuleContext(0, AlterColConstraintContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_alterColumnConstraint; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterAlterColumnConstraint) { - listener.enterAlterColumnConstraint(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitAlterColumnConstraint) { - listener.exitAlterColumnConstraint(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitAlterColumnConstraint) { - return visitor.visitAlterColumnConstraint(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AlterForeignKeyConstraintContext extends antlr.ParserRuleContext { - public _constraintName?: Id_Context; - public _tabName?: TableNameContext; - public _colName?: ColumnNameContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_REFERENCES(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_REFERENCES, 0)!; - } - public LPAREN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.LPAREN, 0)!; - } - public RPAREN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.RPAREN, 0)!; - } - public tableName(): TableNameContext { - return this.getRuleContext(0, TableNameContext)!; - } - public columnName(): ColumnNameContext { - return this.getRuleContext(0, ColumnNameContext)!; - } - public KW_CONSTRAINT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); - } - public constraintOptsAlter(): ConstraintOptsAlterContext | null { - return this.getRuleContext(0, ConstraintOptsAlterContext); - } - public id_(): Id_Context | null { - return this.getRuleContext(0, Id_Context); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_alterForeignKeyConstraint; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterAlterForeignKeyConstraint) { - listener.enterAlterForeignKeyConstraint(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitAlterForeignKeyConstraint) { - listener.exitAlterForeignKeyConstraint(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitAlterForeignKeyConstraint) { - return visitor.visitAlterForeignKeyConstraint(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class AlterColConstraintContext extends antlr.ParserRuleContext { - public _constraintName?: Id_Context; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public columnConstraintType(): ColumnConstraintTypeContext { - return this.getRuleContext(0, ColumnConstraintTypeContext)!; - } - public KW_CONSTRAINT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_CONSTRAINT, 0); - } - public constraintOptsAlter(): ConstraintOptsAlterContext | null { - return this.getRuleContext(0, ConstraintOptsAlterContext); - } - public id_(): Id_Context | null { - return this.getRuleContext(0, Id_Context); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_alterColConstraint; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterAlterColConstraint) { - listener.enterAlterColConstraint(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitAlterColConstraint) { - listener.exitAlterColConstraint(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitAlterColConstraint) { - return visitor.visitAlterColConstraint(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class ColumnConstraintTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -36071,8 +33928,14 @@ export class ColumnConstraintTypeContext extends antlr.ParserRuleContext { public KW_DEFAULT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_DEFAULT, 0); } - public defaultVal(): DefaultValContext | null { - return this.getRuleContext(0, DefaultValContext); + public constant(): ConstantContext | null { + return this.getRuleContext(0, ConstantContext); + } + public function_(): Function_Context | null { + return this.getRuleContext(0, Function_Context); + } + public castExpression(): CastExpressionContext | null { + return this.getRuleContext(0, CastExpressionContext); } public checkConstraint(): CheckConstraintContext | null { return this.getRuleContext(0, CheckConstraintContext); @@ -36103,42 +33966,6 @@ export class ColumnConstraintTypeContext extends antlr.ParserRuleContext { } -export class DefaultValContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public constant(): ConstantContext | null { - return this.getRuleContext(0, ConstantContext); - } - public function_(): Function_Context | null { - return this.getRuleContext(0, Function_Context); - } - public castExpression(): CastExpressionContext | null { - return this.getRuleContext(0, CastExpressionContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_defaultVal; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDefaultVal) { - listener.enterDefaultVal(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDefaultVal) { - listener.exitDefaultVal(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDefaultVal) { - return visitor.visitDefaultVal(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class TableConstraintTypeContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -36175,65 +34002,35 @@ export class TableConstraintTypeContext extends antlr.ParserRuleContext { } -export class ConstraintOptsCreateContext extends antlr.ParserRuleContext { +export class ConstraintOptsContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public enableValidateSpecification(): EnableValidateSpecificationContext { return this.getRuleContext(0, EnableValidateSpecificationContext)!; } - public relySpecification(): RelySpecificationContext | null { - return this.getRuleContext(0, RelySpecificationContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_constraintOptsCreate; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterConstraintOptsCreate) { - listener.enterConstraintOptsCreate(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitConstraintOptsCreate) { - listener.exitConstraintOptsCreate(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitConstraintOptsCreate) { - return visitor.visitConstraintOptsCreate(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ConstraintOptsAlterContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public enableValidateSpecification(): EnableValidateSpecificationContext { - return this.getRuleContext(0, EnableValidateSpecificationContext)!; + public KW_RELY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_RELY, 0); } - public relySpecification(): RelySpecificationContext | null { - return this.getRuleContext(0, RelySpecificationContext); + public KW_NORELY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_NORELY, 0); } public override get ruleIndex(): number { - return HiveSqlParser.RULE_constraintOptsAlter; + return HiveSqlParser.RULE_constraintOpts; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterConstraintOptsAlter) { - listener.enterConstraintOptsAlter(this); + if(listener.enterConstraintOpts) { + listener.enterConstraintOpts(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitConstraintOptsAlter) { - listener.exitConstraintOptsAlter(this); + if(listener.exitConstraintOpts) { + listener.exitConstraintOpts(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitConstraintOptsAlter) { - return visitor.visitConstraintOptsAlter(this); + if (visitor.visitConstraintOpts) { + return visitor.visitConstraintOpts(this); } else { return visitor.visitChildren(this); } @@ -36250,8 +34047,8 @@ export class ColumnNameColonTypeContext extends antlr.ParserRuleContext { public COLON(): antlr.TerminalNode { return this.getToken(HiveSqlParser.COLON, 0)!; } - public columnType(): ColumnTypeContext { - return this.getRuleContext(0, ColumnTypeContext)!; + public type(): TypeContext { + return this.getRuleContext(0, TypeContext)!; } public columnNameCreate(): ColumnNameCreateContext { return this.getRuleContext(0, ColumnNameCreateContext)!; @@ -36285,48 +34082,18 @@ export class ColumnNameColonTypeContext extends antlr.ParserRuleContext { } -export class ColumnTypeContext extends antlr.ParserRuleContext { +export class TypeListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public type(): TypeContext { - return this.getRuleContext(0, TypeContext)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_columnType; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterColumnType) { - listener.enterColumnType(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitColumnType) { - listener.exitColumnType(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitColumnType) { - return visitor.visitColumnType(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class ColumnTypeListContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public columnType(): ColumnTypeContext[]; - public columnType(i: number): ColumnTypeContext | null; - public columnType(i?: number): ColumnTypeContext[] | ColumnTypeContext | null { + public type_(): TypeContext[]; + public type_(i: number): TypeContext | null; + public type_(i?: number): TypeContext[] | TypeContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnTypeContext); + return this.getRuleContexts(TypeContext); } - return this.getRuleContext(i, ColumnTypeContext); + return this.getRuleContext(i, TypeContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -36338,21 +34105,21 @@ export class ColumnTypeListContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return HiveSqlParser.RULE_columnTypeList; + return HiveSqlParser.RULE_typeList; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterColumnTypeList) { - listener.enterColumnTypeList(this); + if(listener.enterTypeList) { + listener.enterTypeList(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitColumnTypeList) { - listener.exitColumnTypeList(this); + if(listener.exitTypeList) { + listener.exitTypeList(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitColumnTypeList) { - return visitor.visitColumnTypeList(this); + if (visitor.visitTypeList) { + return visitor.visitTypeList(this); } else { return visitor.visitChildren(this); } @@ -36469,8 +34236,14 @@ export class PrimitiveTypeContext extends antlr.ParserRuleContext { public KW_BINARY(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_BINARY, 0); } - public decimal(): DecimalContext | null { - return this.getRuleContext(0, DecimalContext); + public KW_DEC(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DEC, 0); + } + public KW_DECIMAL(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DECIMAL, 0); + } + public KW_NUMERIC(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_NUMERIC, 0); } public LPAREN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.LPAREN, 0); @@ -36654,8 +34427,8 @@ export class UnionTypeContext extends antlr.ParserRuleContext { public LESSTHAN(): antlr.TerminalNode { return this.getToken(HiveSqlParser.LESSTHAN, 0)!; } - public columnTypeList(): ColumnTypeListContext { - return this.getRuleContext(0, ColumnTypeListContext)!; + public typeList(): TypeListContext { + return this.getRuleContext(0, TypeListContext)!; } public GREATERTHAN(): antlr.TerminalNode { return this.getToken(HiveSqlParser.GREATERTHAN, 0)!; @@ -37430,8 +35203,8 @@ export class DestinationContext extends antlr.ParserRuleContext { public StringLiteral(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.StringLiteral, 0); } - public tableRowFormat(): TableRowFormatContext | null { - return this.getRuleContext(0, TableRowFormatContext); + public rowFormat(): RowFormatContext | null { + return this.getRuleContext(0, RowFormatContext); } public tableFileFormat(): TableFileFormatContext | null { return this.getRuleContext(0, TableFileFormatContext); @@ -37951,112 +35724,8 @@ export class WhenMatchedThenClauseContext extends antlr.ParserRuleContext { } -export class CompactionPoolContext extends antlr.ParserRuleContext { - public _poolName?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_POOL(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_POOL, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_compactionPool; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterCompactionPool) { - listener.enterCompactionPool(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitCompactionPool) { - listener.exitCompactionPool(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitCompactionPool) { - return visitor.visitCompactionPool(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CompactionTypeContext extends antlr.ParserRuleContext { - public _compactType?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_TYPE(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_TYPE, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_compactionType; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterCompactionType) { - listener.enterCompactionType(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitCompactionType) { - listener.exitCompactionType(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitCompactionType) { - return visitor.visitCompactionType(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class CompactionStatusContext extends antlr.ParserRuleContext { - public _status?: Token | null; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_STATUS(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_STATUS, 0)!; - } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_compactionStatus; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterCompactionStatus) { - listener.enterCompactionStatus(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitCompactionStatus) { - listener.exitCompactionStatus(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitCompactionStatus) { - return visitor.visitCompactionStatus(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class AlterStatementContext extends antlr.ParserRuleContext { public _tableNameTree?: ViewNameContext; - public _mvRewriteFlag?: RewriteEnabledContext; - public _mvRewriteFlag2?: RewriteDisabledContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -38111,15 +35780,15 @@ export class AlterStatementContext extends antlr.ParserRuleContext { public KW_REBUILD(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_REBUILD, 0); } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_AS, 0); - } public rewriteEnabled(): RewriteEnabledContext | null { return this.getRuleContext(0, RewriteEnabledContext); } public rewriteDisabled(): RewriteDisabledContext | null { return this.getRuleContext(0, RewriteDisabledContext); } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_AS, 0); + } public override get ruleIndex(): number { return HiveSqlParser.RULE_alterStatement; } @@ -38317,6 +35986,7 @@ export class AlterTblPartitionStatementSuffixContext extends antlr.ParserRuleCon public _serdeName?: Token | null; public _num?: Token | null; public _compactType?: Token | null; + public _poolName?: Token | null; public _colName?: ColumnNameContext; public _comment?: Token | null; public _oldName?: ColumnNameContext; @@ -38340,8 +36010,14 @@ export class AlterTblPartitionStatementSuffixContext extends antlr.ParserRuleCon public KW_LOCATION(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_LOCATION, 0); } - public StringLiteral(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.StringLiteral, 0); + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_CONCATENATE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CONCATENATE, 0); @@ -38430,8 +36106,8 @@ export class AlterTblPartitionStatementSuffixContext extends antlr.ParserRuleCon public orderByClause(): OrderByClauseContext | null { return this.getRuleContext(0, OrderByClauseContext); } - public compactionPool(): CompactionPoolContext | null { - return this.getRuleContext(0, CompactionPoolContext); + public KW_POOL(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_POOL, 0); } public KW_OVERWRITE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_OVERWRITE, 0); @@ -38460,14 +36136,14 @@ export class AlterTblPartitionStatementSuffixContext extends antlr.ParserRuleCon public KW_CHANGE(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_CHANGE, 0); } - public columnType(): ColumnTypeContext | null { - return this.getRuleContext(0, ColumnTypeContext); + public type(): TypeContext | null { + return this.getRuleContext(0, TypeContext); } public columnNameCreate(): ColumnNameCreateContext | null { return this.getRuleContext(0, ColumnNameCreateContext); } - public alterColumnConstraint(): AlterColumnConstraintContext | null { - return this.getRuleContext(0, AlterColumnConstraintContext); + public columnConstraint(): ColumnConstraintContext | null { + return this.getRuleContext(0, ColumnConstraintContext); } public KW_AFTER(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_AFTER, 0); @@ -39029,8 +36705,8 @@ export class CreateTableStatementContext extends antlr.ParserRuleContext { public _temp?: Token | null; public _trans?: Token | null; public _ext?: Token | null; - public _name?: TableNameCreateContext; public _mgd?: Token | null; + public _name?: TableNameCreateContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -39058,11 +36734,14 @@ export class CreateTableStatementContext extends antlr.ParserRuleContext { public KW_EXTERNAL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_EXTERNAL, 0); } + public KW_MANAGED(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MANAGED, 0); + } public createTablePartitionSpec(): CreateTablePartitionSpecContext | null { return this.getRuleContext(0, CreateTablePartitionSpecContext); } - public tableRowFormat(): TableRowFormatContext | null { - return this.getRuleContext(0, TableRowFormatContext); + public rowFormat(): RowFormatContext | null { + return this.getRuleContext(0, RowFormatContext); } public tableFileFormat(): TableFileFormatContext | null { return this.getRuleContext(0, TableFileFormatContext); @@ -39100,9 +36779,6 @@ export class CreateTableStatementContext extends antlr.ParserRuleContext { public selectStatementWithCTE(): SelectStatementWithCTEContext | null { return this.getRuleContext(0, SelectStatementWithCTEContext); } - public KW_MANAGED(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MANAGED, 0); - } public override get ruleIndex(): number { return HiveSqlParser.RULE_createTableStatement; } @@ -40879,17 +38555,23 @@ export class SelectTrfmClauseContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RowFormatContext); } - public recordWriter(): RecordWriterContext { - return this.getRuleContext(0, RecordWriterContext)!; + public KW_RECORDWRITER(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_RECORDWRITER, 0)!; + } + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_USING(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_USING, 0)!; } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public recordReader(): RecordReaderContext { - return this.getRuleContext(0, RecordReaderContext)!; + public KW_RECORDREADER(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_RECORDREADER, 0)!; } public KW_AS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_AS, 0); @@ -41111,17 +38793,23 @@ export class TrfmClauseContext extends antlr.ParserRuleContext { return this.getRuleContext(i, RowFormatContext); } - public recordWriter(): RecordWriterContext { - return this.getRuleContext(0, RecordWriterContext)!; + public KW_RECORDWRITER(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_RECORDWRITER, 0)!; + } + public StringLiteral(): antlr.TerminalNode[]; + public StringLiteral(i: number): antlr.TerminalNode | null; + public StringLiteral(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.StringLiteral); + } else { + return this.getToken(HiveSqlParser.StringLiteral, i); + } } public KW_USING(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_USING, 0)!; } - public StringLiteral(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.StringLiteral, 0)!; - } - public recordReader(): RecordReaderContext { - return this.getRuleContext(0, RecordReaderContext)!; + public KW_RECORDREADER(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.KW_RECORDREADER, 0)!; } public KW_MAP(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_MAP, 0); @@ -41761,39 +39449,6 @@ export class QualifyClauseContext extends antlr.ParserRuleContext { } -export class ExpressionOrDefaultContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DEFAULT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DEFAULT, 0); - } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_expressionOrDefault; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterExpressionOrDefault) { - listener.enterExpressionOrDefault(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitExpressionOrDefault) { - listener.exitExpressionOrDefault(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitExpressionOrDefault) { - return visitor.visitExpressionOrDefault(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class FirstExpressionsWithAliasContext extends antlr.ParserRuleContext { public _first?: ExpressionContext; public _colAlias?: Id_Context; @@ -41930,18 +39585,26 @@ export class ExpressionsInParenthesisContext extends antlr.ParserRuleContext { export class ExpressionsNotInParenthesisContext extends antlr.ParserRuleContext { - public _first?: ExpressionOrDefaultContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public expressionOrDefault(): ExpressionOrDefaultContext[]; - public expressionOrDefault(i: number): ExpressionOrDefaultContext | null; - public expressionOrDefault(i?: number): ExpressionOrDefaultContext[] | ExpressionOrDefaultContext | null { + public KW_DEFAULT(): antlr.TerminalNode[]; + public KW_DEFAULT(i: number): antlr.TerminalNode | null; + public KW_DEFAULT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.KW_DEFAULT); + } else { + return this.getToken(HiveSqlParser.KW_DEFAULT, i); + } + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { if (i === undefined) { - return this.getRuleContexts(ExpressionOrDefaultContext); + return this.getRuleContexts(ExpressionContext); } - return this.getRuleContext(i, ExpressionOrDefaultContext); + return this.getRuleContext(i, ExpressionContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -42200,7 +39863,6 @@ export class Function_Context extends antlr.ParserRuleContext { public _dist?: Token | null; public _within?: Token | null; public _ordBy?: OrderByClauseContext; - public _nt?: Null_treatmentContext; public _ws?: Window_specificationContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -42268,8 +39930,14 @@ export class Function_Context extends antlr.ParserRuleContext { public window_specification(): Window_specificationContext | null { return this.getRuleContext(0, Window_specificationContext); } - public null_treatment(): Null_treatmentContext | null { - return this.getRuleContext(0, Null_treatmentContext); + public KW_NULLS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_NULLS, 0); + } + public KW_RESPECT(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_RESPECT, 0); + } + public KW_IGNORE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_IGNORE, 0); } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ALL, 0); @@ -42309,42 +39977,6 @@ export class Function_Context extends antlr.ParserRuleContext { } -export class Null_treatmentContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_NULLS(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.KW_NULLS, 0)!; - } - public KW_RESPECT(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_RESPECT, 0); - } - public KW_IGNORE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_IGNORE, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_null_treatment; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterNull_treatment) { - listener.enterNull_treatment(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitNull_treatment) { - listener.exitNull_treatment(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitNull_treatment) { - return visitor.visitNull_treatment(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class FunctionNameCreateContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -42719,29 +40351,50 @@ export class TimeQualifiersContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public year(): YearContext | null { - return this.getRuleContext(0, YearContext); + public KW_YEAR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEAR, 0); + } + public KW_YEARS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEARS, 0); } public KW_QUARTER(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_QUARTER, 0); } - public month(): MonthContext | null { - return this.getRuleContext(0, MonthContext); + public KW_MONTH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTH, 0); + } + public KW_MONTHS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTHS, 0); + } + public KW_WEEK(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_WEEK, 0); + } + public KW_WEEKS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_WEEKS, 0); } - public week(): WeekContext | null { - return this.getRuleContext(0, WeekContext); + public KW_DAY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAY, 0); } - public day(): DayContext | null { - return this.getRuleContext(0, DayContext); + public KW_DAYS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAYS, 0); } - public hour(): HourContext | null { - return this.getRuleContext(0, HourContext); + public KW_HOUR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOUR, 0); } - public minute(): MinuteContext | null { - return this.getRuleContext(0, MinuteContext); + public KW_HOURS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOURS, 0); } - public second(): SecondContext | null { - return this.getRuleContext(0, SecondContext); + public KW_MINUTE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MINUTE, 0); + } + public KW_MINUTES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MINUTES, 0); + } + public KW_SECOND(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SECOND, 0); + } + public KW_SECONDS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SECONDS, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_timeQualifiers; @@ -42943,26 +40596,44 @@ export class IntervalQualifiersContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public year(): YearContext | null { - return this.getRuleContext(0, YearContext); - } public KW_TO(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TO, 0); } - public month(): MonthContext | null { - return this.getRuleContext(0, MonthContext); + public KW_YEAR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEAR, 0); + } + public KW_YEARS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_YEARS, 0); + } + public KW_MONTH(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTH, 0); + } + public KW_MONTHS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MONTHS, 0); + } + public KW_DAY(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAY, 0); + } + public KW_DAYS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_DAYS, 0); + } + public KW_SECOND(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SECOND, 0); + } + public KW_SECONDS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_SECONDS, 0); } - public day(): DayContext | null { - return this.getRuleContext(0, DayContext); + public KW_HOUR(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOUR, 0); } - public second(): SecondContext | null { - return this.getRuleContext(0, SecondContext); + public KW_HOURS(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_HOURS, 0); } - public hour(): HourContext | null { - return this.getRuleContext(0, HourContext); + public KW_MINUTE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MINUTE, 0); } - public minute(): MinuteContext | null { - return this.getRuleContext(0, MinuteContext); + public KW_MINUTES(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_MINUTES, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_intervalQualifiers; @@ -43510,6 +41181,42 @@ export class PrecedenceBitwiseOrExpressionContext extends antlr.ParserRuleContex } +export class SubQueryExpressionContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public LPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.LPAREN, 0)!; + } + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; + } + public RPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.RPAREN, 0)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_subQueryExpression; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSubQueryExpression) { + listener.enterSubQueryExpression(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSubQueryExpression) { + listener.exitSubQueryExpression(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSubQueryExpression) { + return visitor.visitSubQueryExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PrecedenceSimilarOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -43558,42 +41265,6 @@ export class PrecedenceSimilarOperatorContext extends antlr.ParserRuleContext { } -export class SubQueryExpressionContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public LPAREN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.LPAREN, 0)!; - } - public selectStatement(): SelectStatementContext { - return this.getRuleContext(0, SelectStatementContext)!; - } - public RPAREN(): antlr.TerminalNode { - return this.getToken(HiveSqlParser.RPAREN, 0)!; - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_subQueryExpression; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterSubQueryExpression) { - listener.enterSubQueryExpression(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitSubQueryExpression) { - listener.exitSubQueryExpression(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitSubQueryExpression) { - return visitor.visitSubQueryExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class PrecedenceSimilarExpressionContext extends antlr.ParserRuleContext { public _a?: PrecedenceBitwiseOrExpressionContext; public _part?: PrecedenceSimilarExpressionPartContext; @@ -43637,6 +41308,7 @@ export class PrecedenceSimilarExpressionContext extends antlr.ParserRuleContext export class PrecedenceSimilarExpressionPartContext extends antlr.ParserRuleContext { public _equalExpr?: PrecedenceBitwiseOrExpressionContext; + public _notExpr?: PrecedenceBitwiseOrExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -43652,8 +41324,14 @@ export class PrecedenceSimilarExpressionPartContext extends antlr.ParserRuleCont public KW_NOT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_NOT, 0); } - public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext | null { - return this.getRuleContext(0, PrecedenceSimilarExpressionPartNotContext); + public KW_LIKE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_LIKE, 0); + } + public KW_RLIKE(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_RLIKE, 0); + } + public KW_REGEXP(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.KW_REGEXP, 0); } public override get ruleIndex(): number { return HiveSqlParser.RULE_precedenceSimilarExpressionPart; @@ -43679,17 +41357,20 @@ export class PrecedenceSimilarExpressionPartContext extends antlr.ParserRuleCont export class PrecedenceSimilarExpressionAtomContext extends antlr.ParserRuleContext { + public _expr?: ExpressionsInParenthesisContext; public _min?: PrecedenceBitwiseOrExpressionContext; public _max?: PrecedenceBitwiseOrExpressionContext; - public _expr?: ExpressionsInParenthesisContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public KW_IN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_IN, 0); } - public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext | null { - return this.getRuleContext(0, PrecedenceSimilarExpressionInContext); + public subQueryExpression(): SubQueryExpressionContext | null { + return this.getRuleContext(0, SubQueryExpressionContext); + } + public expressionsInParenthesis(): ExpressionsInParenthesisContext | null { + return this.getRuleContext(0, ExpressionsInParenthesisContext); } public KW_BETWEEN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_BETWEEN, 0); @@ -43715,15 +41396,9 @@ export class PrecedenceSimilarExpressionAtomContext extends antlr.ParserRuleCont public KW_ALL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ALL, 0); } - public expressionsInParenthesis(): ExpressionsInParenthesisContext | null { - return this.getRuleContext(0, ExpressionsInParenthesisContext); - } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext | null { return this.getRuleContext(0, SubQuerySelectorOperatorContext); } - public subQueryExpression(): SubQueryExpressionContext | null { - return this.getRuleContext(0, SubQueryExpressionContext); - } public KW_SOME(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_SOME, 0); } @@ -43750,83 +41425,6 @@ export class PrecedenceSimilarExpressionAtomContext extends antlr.ParserRuleCont } -export class PrecedenceSimilarExpressionInContext extends antlr.ParserRuleContext { - public _expr?: ExpressionsInParenthesisContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public subQueryExpression(): SubQueryExpressionContext | null { - return this.getRuleContext(0, SubQueryExpressionContext); - } - public expressionsInParenthesis(): ExpressionsInParenthesisContext | null { - return this.getRuleContext(0, ExpressionsInParenthesisContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_precedenceSimilarExpressionIn; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterPrecedenceSimilarExpressionIn) { - listener.enterPrecedenceSimilarExpressionIn(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitPrecedenceSimilarExpressionIn) { - listener.exitPrecedenceSimilarExpressionIn(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitPrecedenceSimilarExpressionIn) { - return visitor.visitPrecedenceSimilarExpressionIn(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class PrecedenceSimilarExpressionPartNotContext extends antlr.ParserRuleContext { - public _notExpr?: PrecedenceBitwiseOrExpressionContext; - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_LIKE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_LIKE, 0); - } - public KW_RLIKE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_RLIKE, 0); - } - public KW_REGEXP(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_REGEXP, 0); - } - public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext | null { - return this.getRuleContext(0, PrecedenceBitwiseOrExpressionContext); - } - public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext | null { - return this.getRuleContext(0, PrecedenceSimilarExpressionAtomContext); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_precedenceSimilarExpressionPartNot; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterPrecedenceSimilarExpressionPartNot) { - listener.enterPrecedenceSimilarExpressionPartNot(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitPrecedenceSimilarExpressionPartNot) { - listener.exitPrecedenceSimilarExpressionPartNot(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitPrecedenceSimilarExpressionPartNot) { - return visitor.visitPrecedenceSimilarExpressionPartNot(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class PrecedenceDistinctOperatorContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -46079,273 +43677,6 @@ export class DisableContext extends antlr.ParserRuleContext { } -export class YearContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_YEAR(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_YEAR, 0); - } - public KW_YEARS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_YEARS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_year; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterYear) { - listener.enterYear(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitYear) { - listener.exitYear(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitYear) { - return visitor.visitYear(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MonthContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_MONTH(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MONTH, 0); - } - public KW_MONTHS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MONTHS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_month; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterMonth) { - listener.enterMonth(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitMonth) { - listener.exitMonth(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitMonth) { - return visitor.visitMonth(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class WeekContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_WEEK(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_WEEK, 0); - } - public KW_WEEKS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_WEEKS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_week; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterWeek) { - listener.enterWeek(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitWeek) { - listener.exitWeek(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitWeek) { - return visitor.visitWeek(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DayContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DAY(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DAY, 0); - } - public KW_DAYS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DAYS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_day; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDay) { - listener.enterDay(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDay) { - listener.exitDay(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDay) { - return visitor.visitDay(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class HourContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_HOUR(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_HOUR, 0); - } - public KW_HOURS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_HOURS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_hour; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterHour) { - listener.enterHour(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitHour) { - listener.exitHour(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitHour) { - return visitor.visitHour(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class MinuteContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_MINUTE(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MINUTE, 0); - } - public KW_MINUTES(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_MINUTES, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_minute; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterMinute) { - listener.enterMinute(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitMinute) { - listener.exitMinute(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitMinute) { - return visitor.visitMinute(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class SecondContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_SECOND(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SECOND, 0); - } - public KW_SECONDS(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_SECONDS, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_second; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterSecond) { - listener.enterSecond(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitSecond) { - listener.exitSecond(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitSecond) { - return visitor.visitSecond(this); - } else { - return visitor.visitChildren(this); - } - } -} - - -export class DecimalContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public KW_DEC(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DEC, 0); - } - public KW_DECIMAL(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_DECIMAL, 0); - } - public KW_NUMERIC(): antlr.TerminalNode | null { - return this.getToken(HiveSqlParser.KW_NUMERIC, 0); - } - public override get ruleIndex(): number { - return HiveSqlParser.RULE_decimal; - } - public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterDecimal) { - listener.enterDecimal(this); - } - } - public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitDecimal) { - listener.exitDecimal(this); - } - } - public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitDecimal) { - return visitor.visitDecimal(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class EmptyColumnContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index 1b056edba..e9ad021f4 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -26,17 +26,14 @@ import { DdlStatementContext } from "./HiveSqlParser.js"; import { IfExistsContext } from "./HiveSqlParser.js"; import { IfNotExistsContext } from "./HiveSqlParser.js"; import { RestrictOrCascadeContext } from "./HiveSqlParser.js"; +import { StoredAsDirsContext } from "./HiveSqlParser.js"; import { RewriteEnabledContext } from "./HiveSqlParser.js"; import { RewriteDisabledContext } from "./HiveSqlParser.js"; -import { StoredAsDirsContext } from "./HiveSqlParser.js"; import { CreateDatabaseStatementContext } from "./HiveSqlParser.js"; -import { DbConnectorNameContext } from "./HiveSqlParser.js"; import { SwitchDatabaseStatementContext } from "./HiveSqlParser.js"; import { DropDatabaseStatementContext } from "./HiveSqlParser.js"; -import { DatabaseCommentContext } from "./HiveSqlParser.js"; import { TruncateTableStatementContext } from "./HiveSqlParser.js"; import { DropTableStatementContext } from "./HiveSqlParser.js"; -import { InputFileFormatContext } from "./HiveSqlParser.js"; import { TabTypeExprContext } from "./HiveSqlParser.js"; import { PartTypeExprContext } from "./HiveSqlParser.js"; import { TabPartColTypeExprContext } from "./HiveSqlParser.js"; @@ -48,11 +45,7 @@ import { ShowStatementContext } from "./HiveSqlParser.js"; import { ShowTablesFilterExprContext } from "./HiveSqlParser.js"; import { LockStatementContext } from "./HiveSqlParser.js"; import { LockDatabaseContext } from "./HiveSqlParser.js"; -import { LockModeContext } from "./HiveSqlParser.js"; -import { UnlockStatementContext } from "./HiveSqlParser.js"; -import { UnlockDatabaseContext } from "./HiveSqlParser.js"; import { CreateRoleStatementContext } from "./HiveSqlParser.js"; -import { DropRoleStatementContext } from "./HiveSqlParser.js"; import { GrantPrivilegesContext } from "./HiveSqlParser.js"; import { RevokePrivilegesContext } from "./HiveSqlParser.js"; import { GrantRoleContext } from "./HiveSqlParser.js"; @@ -73,13 +66,7 @@ import { PrivilegeTypeContext } from "./HiveSqlParser.js"; import { PrincipalSpecificationContext } from "./HiveSqlParser.js"; import { PrincipalNameContext } from "./HiveSqlParser.js"; import { PrincipalAlterNameContext } from "./HiveSqlParser.js"; -import { WithGrantOptionContext } from "./HiveSqlParser.js"; -import { GrantOptionForContext } from "./HiveSqlParser.js"; -import { AdminOptionForContext } from "./HiveSqlParser.js"; -import { WithAdminOptionContext } from "./HiveSqlParser.js"; import { MetastoreCheckContext } from "./HiveSqlParser.js"; -import { ResourceListContext } from "./HiveSqlParser.js"; -import { ResourceContext } from "./HiveSqlParser.js"; import { ResourceTypeContext } from "./HiveSqlParser.js"; import { CreateFunctionStatementContext } from "./HiveSqlParser.js"; import { DropFunctionStatementContext } from "./HiveSqlParser.js"; @@ -97,7 +84,6 @@ import { ViewDistSpecContext } from "./HiveSqlParser.js"; import { ViewSortSpecContext } from "./HiveSqlParser.js"; import { DropViewStatementContext } from "./HiveSqlParser.js"; import { CreateMaterializedViewStatementContext } from "./HiveSqlParser.js"; -import { DropMaterializedViewStatementContext } from "./HiveSqlParser.js"; import { CreateScheduledQueryStatementContext } from "./HiveSqlParser.js"; import { DropScheduledQueryStatementContext } from "./HiveSqlParser.js"; import { AlterScheduledQueryStatementContext } from "./HiveSqlParser.js"; @@ -115,21 +101,18 @@ import { PartitionTransformTypeContext } from "./HiveSqlParser.js"; import { TableBucketsContext } from "./HiveSqlParser.js"; import { TableSkewedContext } from "./HiveSqlParser.js"; import { RowFormatContext } from "./HiveSqlParser.js"; -import { RecordReaderContext } from "./HiveSqlParser.js"; -import { RecordWriterContext } from "./HiveSqlParser.js"; import { RowFormatSerdeContext } from "./HiveSqlParser.js"; import { RowFormatDelimitedContext } from "./HiveSqlParser.js"; -import { TableRowFormatContext } from "./HiveSqlParser.js"; import { TablePropertiesPrefixedContext } from "./HiveSqlParser.js"; import { TablePropertiesContext } from "./HiveSqlParser.js"; import { TablePropertiesListContext } from "./HiveSqlParser.js"; import { KeyValuePropertiesContext } from "./HiveSqlParser.js"; import { KeyValuePropertyListContext } from "./HiveSqlParser.js"; import { KeyValuePropertyContext } from "./HiveSqlParser.js"; -import { TableRowFormatFieldIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatCollItemsIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatMapKeysIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatLinesIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatFieldIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatCollItemsIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatMapKeysIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatLinesIdentifierContext } from "./HiveSqlParser.js"; import { TableRowNullFormatContext } from "./HiveSqlParser.js"; import { TableFileFormatContext } from "./HiveSqlParser.js"; import { ColumnNameTypeListContext } from "./HiveSqlParser.js"; @@ -145,9 +128,7 @@ import { ColumnNameOrderListContext } from "./HiveSqlParser.js"; import { ColumnParenthesesListContext } from "./HiveSqlParser.js"; import { EnableValidateSpecificationContext } from "./HiveSqlParser.js"; import { EnableSpecificationContext } from "./HiveSqlParser.js"; -import { ValidateSpecificationContext } from "./HiveSqlParser.js"; import { EnforcedSpecificationContext } from "./HiveSqlParser.js"; -import { RelySpecificationContext } from "./HiveSqlParser.js"; import { CreateConstraintContext } from "./HiveSqlParser.js"; import { AlterConstraintWithNameContext } from "./HiveSqlParser.js"; import { TableLevelConstraintContext } from "./HiveSqlParser.js"; @@ -172,17 +153,11 @@ import { ColumnNameTypeConstraintContext } from "./HiveSqlParser.js"; import { ColumnConstraintContext } from "./HiveSqlParser.js"; import { ForeignKeyConstraintContext } from "./HiveSqlParser.js"; import { ColConstraintContext } from "./HiveSqlParser.js"; -import { AlterColumnConstraintContext } from "./HiveSqlParser.js"; -import { AlterForeignKeyConstraintContext } from "./HiveSqlParser.js"; -import { AlterColConstraintContext } from "./HiveSqlParser.js"; import { ColumnConstraintTypeContext } from "./HiveSqlParser.js"; -import { DefaultValContext } from "./HiveSqlParser.js"; import { TableConstraintTypeContext } from "./HiveSqlParser.js"; -import { ConstraintOptsCreateContext } from "./HiveSqlParser.js"; -import { ConstraintOptsAlterContext } from "./HiveSqlParser.js"; +import { ConstraintOptsContext } from "./HiveSqlParser.js"; import { ColumnNameColonTypeContext } from "./HiveSqlParser.js"; -import { ColumnTypeContext } from "./HiveSqlParser.js"; -import { ColumnTypeListContext } from "./HiveSqlParser.js"; +import { TypeListContext } from "./HiveSqlParser.js"; import { TypeContext } from "./HiveSqlParser.js"; import { PrimitiveTypeContext } from "./HiveSqlParser.js"; import { ListTypeContext } from "./HiveSqlParser.js"; @@ -215,9 +190,6 @@ import { WhenClausesContext } from "./HiveSqlParser.js"; import { WhenNotMatchedClauseContext } from "./HiveSqlParser.js"; import { WhenMatchedAndClauseContext } from "./HiveSqlParser.js"; import { WhenMatchedThenClauseContext } from "./HiveSqlParser.js"; -import { CompactionPoolContext } from "./HiveSqlParser.js"; -import { CompactionTypeContext } from "./HiveSqlParser.js"; -import { CompactionStatusContext } from "./HiveSqlParser.js"; import { AlterStatementContext } from "./HiveSqlParser.js"; import { AlterTableStatementSuffixContext } from "./HiveSqlParser.js"; import { AlterTblPartitionStatementSuffixContext } from "./HiveSqlParser.js"; @@ -283,7 +255,6 @@ import { RollupOldSyntaxContext } from "./HiveSqlParser.js"; import { GroupingSetExpressionContext } from "./HiveSqlParser.js"; import { HavingClauseContext } from "./HiveSqlParser.js"; import { QualifyClauseContext } from "./HiveSqlParser.js"; -import { ExpressionOrDefaultContext } from "./HiveSqlParser.js"; import { FirstExpressionsWithAliasContext } from "./HiveSqlParser.js"; import { ExpressionsContext } from "./HiveSqlParser.js"; import { ExpressionsInParenthesisContext } from "./HiveSqlParser.js"; @@ -294,7 +265,6 @@ import { ClusterByClauseContext } from "./HiveSqlParser.js"; import { DistributeByClauseContext } from "./HiveSqlParser.js"; import { SortByClauseContext } from "./HiveSqlParser.js"; import { Function_Context } from "./HiveSqlParser.js"; -import { Null_treatmentContext } from "./HiveSqlParser.js"; import { FunctionNameCreateContext } from "./HiveSqlParser.js"; import { FunctionNameForDDLContext } from "./HiveSqlParser.js"; import { FunctionNameForInvokeContext } from "./HiveSqlParser.js"; @@ -317,13 +287,11 @@ import { PrecedencePlusExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceConcatenateExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceAmpersandExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceBitwiseOrExpressionContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarOperatorContext } from "./HiveSqlParser.js"; import { SubQueryExpressionContext } from "./HiveSqlParser.js"; +import { PrecedenceSimilarOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionPartContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionAtomContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarExpressionInContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarExpressionPartNotContext } from "./HiveSqlParser.js"; import { PrecedenceDistinctOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceEqualOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceEqualExpressionContext } from "./HiveSqlParser.js"; @@ -351,14 +319,6 @@ import { RpUnassignContext } from "./HiveSqlParser.js"; import { ActivateContext } from "./HiveSqlParser.js"; import { EnableContext } from "./HiveSqlParser.js"; import { DisableContext } from "./HiveSqlParser.js"; -import { YearContext } from "./HiveSqlParser.js"; -import { MonthContext } from "./HiveSqlParser.js"; -import { WeekContext } from "./HiveSqlParser.js"; -import { DayContext } from "./HiveSqlParser.js"; -import { HourContext } from "./HiveSqlParser.js"; -import { MinuteContext } from "./HiveSqlParser.js"; -import { SecondContext } from "./HiveSqlParser.js"; -import { DecimalContext } from "./HiveSqlParser.js"; import { EmptyColumnContext } from "./HiveSqlParser.js"; import { PoolPathContext } from "./HiveSqlParser.js"; import { PoolPathAllowEmptyContext } from "./HiveSqlParser.js"; @@ -553,6 +513,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRestrictOrCascade?: (ctx: RestrictOrCascadeContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.storedAsDirs`. + * @param ctx the parse tree + */ + enterStoredAsDirs?: (ctx: StoredAsDirsContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.storedAsDirs`. + * @param ctx the parse tree + */ + exitStoredAsDirs?: (ctx: StoredAsDirsContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.rewriteEnabled`. * @param ctx the parse tree @@ -573,16 +543,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRewriteDisabled?: (ctx: RewriteDisabledContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.storedAsDirs`. - * @param ctx the parse tree - */ - enterStoredAsDirs?: (ctx: StoredAsDirsContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.storedAsDirs`. - * @param ctx the parse tree - */ - exitStoredAsDirs?: (ctx: StoredAsDirsContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createDatabaseStatement`. * @param ctx the parse tree @@ -593,16 +553,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitCreateDatabaseStatement?: (ctx: CreateDatabaseStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.dbConnectorName`. - * @param ctx the parse tree - */ - enterDbConnectorName?: (ctx: DbConnectorNameContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.dbConnectorName`. - * @param ctx the parse tree - */ - exitDbConnectorName?: (ctx: DbConnectorNameContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.switchDatabaseStatement`. * @param ctx the parse tree @@ -623,16 +573,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDropDatabaseStatement?: (ctx: DropDatabaseStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.databaseComment`. - * @param ctx the parse tree - */ - enterDatabaseComment?: (ctx: DatabaseCommentContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.databaseComment`. - * @param ctx the parse tree - */ - exitDatabaseComment?: (ctx: DatabaseCommentContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.truncateTableStatement`. * @param ctx the parse tree @@ -653,16 +593,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDropTableStatement?: (ctx: DropTableStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.inputFileFormat`. - * @param ctx the parse tree - */ - enterInputFileFormat?: (ctx: InputFileFormatContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.inputFileFormat`. - * @param ctx the parse tree - */ - exitInputFileFormat?: (ctx: InputFileFormatContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.tabTypeExpr`. * @param ctx the parse tree @@ -773,36 +703,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitLockDatabase?: (ctx: LockDatabaseContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.lockMode`. - * @param ctx the parse tree - */ - enterLockMode?: (ctx: LockModeContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.lockMode`. - * @param ctx the parse tree - */ - exitLockMode?: (ctx: LockModeContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.unlockStatement`. - * @param ctx the parse tree - */ - enterUnlockStatement?: (ctx: UnlockStatementContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.unlockStatement`. - * @param ctx the parse tree - */ - exitUnlockStatement?: (ctx: UnlockStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.unlockDatabase`. - * @param ctx the parse tree - */ - enterUnlockDatabase?: (ctx: UnlockDatabaseContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.unlockDatabase`. - * @param ctx the parse tree - */ - exitUnlockDatabase?: (ctx: UnlockDatabaseContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createRoleStatement`. * @param ctx the parse tree @@ -813,16 +713,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitCreateRoleStatement?: (ctx: CreateRoleStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.dropRoleStatement`. - * @param ctx the parse tree - */ - enterDropRoleStatement?: (ctx: DropRoleStatementContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.dropRoleStatement`. - * @param ctx the parse tree - */ - exitDropRoleStatement?: (ctx: DropRoleStatementContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.grantPrivileges`. * @param ctx the parse tree @@ -1023,46 +913,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPrincipalAlterName?: (ctx: PrincipalAlterNameContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.withGrantOption`. - * @param ctx the parse tree - */ - enterWithGrantOption?: (ctx: WithGrantOptionContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.withGrantOption`. - * @param ctx the parse tree - */ - exitWithGrantOption?: (ctx: WithGrantOptionContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.grantOptionFor`. - * @param ctx the parse tree - */ - enterGrantOptionFor?: (ctx: GrantOptionForContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.grantOptionFor`. - * @param ctx the parse tree - */ - exitGrantOptionFor?: (ctx: GrantOptionForContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.adminOptionFor`. - * @param ctx the parse tree - */ - enterAdminOptionFor?: (ctx: AdminOptionForContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.adminOptionFor`. - * @param ctx the parse tree - */ - exitAdminOptionFor?: (ctx: AdminOptionForContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.withAdminOption`. - * @param ctx the parse tree - */ - enterWithAdminOption?: (ctx: WithAdminOptionContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.withAdminOption`. - * @param ctx the parse tree - */ - exitWithAdminOption?: (ctx: WithAdminOptionContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.metastoreCheck`. * @param ctx the parse tree @@ -1073,26 +923,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitMetastoreCheck?: (ctx: MetastoreCheckContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.resourceList`. - * @param ctx the parse tree - */ - enterResourceList?: (ctx: ResourceListContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.resourceList`. - * @param ctx the parse tree - */ - exitResourceList?: (ctx: ResourceListContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.resource`. - * @param ctx the parse tree - */ - enterResource?: (ctx: ResourceContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.resource`. - * @param ctx the parse tree - */ - exitResource?: (ctx: ResourceContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.resourceType`. * @param ctx the parse tree @@ -1263,16 +1093,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitCreateMaterializedViewStatement?: (ctx: CreateMaterializedViewStatementContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.dropMaterializedViewStatement`. - * @param ctx the parse tree - */ - enterDropMaterializedViewStatement?: (ctx: DropMaterializedViewStatementContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.dropMaterializedViewStatement`. - * @param ctx the parse tree - */ - exitDropMaterializedViewStatement?: (ctx: DropMaterializedViewStatementContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createScheduledQueryStatement`. * @param ctx the parse tree @@ -1443,26 +1263,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRowFormat?: (ctx: RowFormatContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.recordReader`. - * @param ctx the parse tree - */ - enterRecordReader?: (ctx: RecordReaderContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.recordReader`. - * @param ctx the parse tree - */ - exitRecordReader?: (ctx: RecordReaderContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.recordWriter`. - * @param ctx the parse tree - */ - enterRecordWriter?: (ctx: RecordWriterContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.recordWriter`. - * @param ctx the parse tree - */ - exitRecordWriter?: (ctx: RecordWriterContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.rowFormatSerde`. * @param ctx the parse tree @@ -1483,16 +1283,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRowFormatDelimited?: (ctx: RowFormatDelimitedContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormat`. - * @param ctx the parse tree - */ - enterTableRowFormat?: (ctx: TableRowFormatContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormat`. - * @param ctx the parse tree - */ - exitTableRowFormat?: (ctx: TableRowFormatContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.tablePropertiesPrefixed`. * @param ctx the parse tree @@ -1554,45 +1344,45 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitKeyValueProperty?: (ctx: KeyValuePropertyContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormatFieldIdentifier`. + * Enter a parse tree produced by `HiveSqlParser.rowFormatFieldIdentifier`. * @param ctx the parse tree */ - enterTableRowFormatFieldIdentifier?: (ctx: TableRowFormatFieldIdentifierContext) => void; + enterRowFormatFieldIdentifier?: (ctx: RowFormatFieldIdentifierContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormatFieldIdentifier`. + * Exit a parse tree produced by `HiveSqlParser.rowFormatFieldIdentifier`. * @param ctx the parse tree */ - exitTableRowFormatFieldIdentifier?: (ctx: TableRowFormatFieldIdentifierContext) => void; + exitRowFormatFieldIdentifier?: (ctx: RowFormatFieldIdentifierContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormatCollItemsIdentifier`. + * Enter a parse tree produced by `HiveSqlParser.rowFormatCollItemsIdentifier`. * @param ctx the parse tree */ - enterTableRowFormatCollItemsIdentifier?: (ctx: TableRowFormatCollItemsIdentifierContext) => void; + enterRowFormatCollItemsIdentifier?: (ctx: RowFormatCollItemsIdentifierContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormatCollItemsIdentifier`. + * Exit a parse tree produced by `HiveSqlParser.rowFormatCollItemsIdentifier`. * @param ctx the parse tree */ - exitTableRowFormatCollItemsIdentifier?: (ctx: TableRowFormatCollItemsIdentifierContext) => void; + exitRowFormatCollItemsIdentifier?: (ctx: RowFormatCollItemsIdentifierContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormatMapKeysIdentifier`. + * Enter a parse tree produced by `HiveSqlParser.rowFormatMapKeysIdentifier`. * @param ctx the parse tree */ - enterTableRowFormatMapKeysIdentifier?: (ctx: TableRowFormatMapKeysIdentifierContext) => void; + enterRowFormatMapKeysIdentifier?: (ctx: RowFormatMapKeysIdentifierContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormatMapKeysIdentifier`. + * Exit a parse tree produced by `HiveSqlParser.rowFormatMapKeysIdentifier`. * @param ctx the parse tree */ - exitTableRowFormatMapKeysIdentifier?: (ctx: TableRowFormatMapKeysIdentifierContext) => void; + exitRowFormatMapKeysIdentifier?: (ctx: RowFormatMapKeysIdentifierContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.tableRowFormatLinesIdentifier`. + * Enter a parse tree produced by `HiveSqlParser.rowFormatLinesIdentifier`. * @param ctx the parse tree */ - enterTableRowFormatLinesIdentifier?: (ctx: TableRowFormatLinesIdentifierContext) => void; + enterRowFormatLinesIdentifier?: (ctx: RowFormatLinesIdentifierContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.tableRowFormatLinesIdentifier`. + * Exit a parse tree produced by `HiveSqlParser.rowFormatLinesIdentifier`. * @param ctx the parse tree */ - exitTableRowFormatLinesIdentifier?: (ctx: TableRowFormatLinesIdentifierContext) => void; + exitRowFormatLinesIdentifier?: (ctx: RowFormatLinesIdentifierContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.tableRowNullFormat`. * @param ctx the parse tree @@ -1743,16 +1533,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitEnableSpecification?: (ctx: EnableSpecificationContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.validateSpecification`. - * @param ctx the parse tree - */ - enterValidateSpecification?: (ctx: ValidateSpecificationContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.validateSpecification`. - * @param ctx the parse tree - */ - exitValidateSpecification?: (ctx: ValidateSpecificationContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.enforcedSpecification`. * @param ctx the parse tree @@ -1763,16 +1543,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitEnforcedSpecification?: (ctx: EnforcedSpecificationContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.relySpecification`. - * @param ctx the parse tree - */ - enterRelySpecification?: (ctx: RelySpecificationContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.relySpecification`. - * @param ctx the parse tree - */ - exitRelySpecification?: (ctx: RelySpecificationContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.createConstraint`. * @param ctx the parse tree @@ -2013,36 +1783,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColConstraint?: (ctx: ColConstraintContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.alterColumnConstraint`. - * @param ctx the parse tree - */ - enterAlterColumnConstraint?: (ctx: AlterColumnConstraintContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.alterColumnConstraint`. - * @param ctx the parse tree - */ - exitAlterColumnConstraint?: (ctx: AlterColumnConstraintContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.alterForeignKeyConstraint`. - * @param ctx the parse tree - */ - enterAlterForeignKeyConstraint?: (ctx: AlterForeignKeyConstraintContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.alterForeignKeyConstraint`. - * @param ctx the parse tree - */ - exitAlterForeignKeyConstraint?: (ctx: AlterForeignKeyConstraintContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.alterColConstraint`. - * @param ctx the parse tree - */ - enterAlterColConstraint?: (ctx: AlterColConstraintContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.alterColConstraint`. - * @param ctx the parse tree - */ - exitAlterColConstraint?: (ctx: AlterColConstraintContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.columnConstraintType`. * @param ctx the parse tree @@ -2053,16 +1793,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnConstraintType?: (ctx: ColumnConstraintTypeContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.defaultVal`. - * @param ctx the parse tree - */ - enterDefaultVal?: (ctx: DefaultValContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.defaultVal`. - * @param ctx the parse tree - */ - exitDefaultVal?: (ctx: DefaultValContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.tableConstraintType`. * @param ctx the parse tree @@ -2074,25 +1804,15 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitTableConstraintType?: (ctx: TableConstraintTypeContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.constraintOptsCreate`. + * Enter a parse tree produced by `HiveSqlParser.constraintOpts`. * @param ctx the parse tree */ - enterConstraintOptsCreate?: (ctx: ConstraintOptsCreateContext) => void; + enterConstraintOpts?: (ctx: ConstraintOptsContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.constraintOptsCreate`. + * Exit a parse tree produced by `HiveSqlParser.constraintOpts`. * @param ctx the parse tree */ - exitConstraintOptsCreate?: (ctx: ConstraintOptsCreateContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.constraintOptsAlter`. - * @param ctx the parse tree - */ - enterConstraintOptsAlter?: (ctx: ConstraintOptsAlterContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.constraintOptsAlter`. - * @param ctx the parse tree - */ - exitConstraintOptsAlter?: (ctx: ConstraintOptsAlterContext) => void; + exitConstraintOpts?: (ctx: ConstraintOptsContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.columnNameColonType`. * @param ctx the parse tree @@ -2104,25 +1824,15 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitColumnNameColonType?: (ctx: ColumnNameColonTypeContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.columnType`. - * @param ctx the parse tree - */ - enterColumnType?: (ctx: ColumnTypeContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.columnType`. + * Enter a parse tree produced by `HiveSqlParser.typeList`. * @param ctx the parse tree */ - exitColumnType?: (ctx: ColumnTypeContext) => void; + enterTypeList?: (ctx: TypeListContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.columnTypeList`. + * Exit a parse tree produced by `HiveSqlParser.typeList`. * @param ctx the parse tree */ - enterColumnTypeList?: (ctx: ColumnTypeListContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.columnTypeList`. - * @param ctx the parse tree - */ - exitColumnTypeList?: (ctx: ColumnTypeListContext) => void; + exitTypeList?: (ctx: TypeListContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.type`. * @param ctx the parse tree @@ -2451,36 +2161,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitWhenMatchedThenClause?: (ctx: WhenMatchedThenClauseContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.compactionPool`. - * @param ctx the parse tree - */ - enterCompactionPool?: (ctx: CompactionPoolContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.compactionPool`. - * @param ctx the parse tree - */ - exitCompactionPool?: (ctx: CompactionPoolContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.compactionType`. - * @param ctx the parse tree - */ - enterCompactionType?: (ctx: CompactionTypeContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.compactionType`. - * @param ctx the parse tree - */ - exitCompactionType?: (ctx: CompactionTypeContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.compactionStatus`. - * @param ctx the parse tree - */ - enterCompactionStatus?: (ctx: CompactionStatusContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.compactionStatus`. - * @param ctx the parse tree - */ - exitCompactionStatus?: (ctx: CompactionStatusContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.alterStatement`. * @param ctx the parse tree @@ -3131,16 +2811,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQualifyClause?: (ctx: QualifyClauseContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.expressionOrDefault`. - * @param ctx the parse tree - */ - enterExpressionOrDefault?: (ctx: ExpressionOrDefaultContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.expressionOrDefault`. - * @param ctx the parse tree - */ - exitExpressionOrDefault?: (ctx: ExpressionOrDefaultContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.firstExpressionsWithAlias`. * @param ctx the parse tree @@ -3241,16 +2911,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunction_?: (ctx: Function_Context) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.null_treatment`. - * @param ctx the parse tree - */ - enterNull_treatment?: (ctx: Null_treatmentContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.null_treatment`. - * @param ctx the parse tree - */ - exitNull_treatment?: (ctx: Null_treatmentContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.functionNameCreate`. * @param ctx the parse tree @@ -3472,25 +3132,25 @@ export class HiveSqlParserListener implements ParseTreeListener { */ exitPrecedenceBitwiseOrExpression?: (ctx: PrecedenceBitwiseOrExpressionContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. + * Enter a parse tree produced by `HiveSqlParser.subQueryExpression`. * @param ctx the parse tree */ - enterPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => void; + enterSubQueryExpression?: (ctx: SubQueryExpressionContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. + * Exit a parse tree produced by `HiveSqlParser.subQueryExpression`. * @param ctx the parse tree */ - exitPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => void; + exitSubQueryExpression?: (ctx: SubQueryExpressionContext) => void; /** - * Enter a parse tree produced by `HiveSqlParser.subQueryExpression`. + * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. * @param ctx the parse tree */ - enterSubQueryExpression?: (ctx: SubQueryExpressionContext) => void; + enterPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => void; /** - * Exit a parse tree produced by `HiveSqlParser.subQueryExpression`. + * Exit a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. * @param ctx the parse tree */ - exitSubQueryExpression?: (ctx: SubQueryExpressionContext) => void; + exitPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarExpression`. * @param ctx the parse tree @@ -3521,26 +3181,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPrecedenceSimilarExpressionAtom?: (ctx: PrecedenceSimilarExpressionAtomContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionIn`. - * @param ctx the parse tree - */ - enterPrecedenceSimilarExpressionIn?: (ctx: PrecedenceSimilarExpressionInContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionIn`. - * @param ctx the parse tree - */ - exitPrecedenceSimilarExpressionIn?: (ctx: PrecedenceSimilarExpressionInContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionPartNot`. - * @param ctx the parse tree - */ - enterPrecedenceSimilarExpressionPartNot?: (ctx: PrecedenceSimilarExpressionPartNotContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionPartNot`. - * @param ctx the parse tree - */ - exitPrecedenceSimilarExpressionPartNot?: (ctx: PrecedenceSimilarExpressionPartNotContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.precedenceDistinctOperator`. * @param ctx the parse tree @@ -3811,86 +3451,6 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDisable?: (ctx: DisableContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.year`. - * @param ctx the parse tree - */ - enterYear?: (ctx: YearContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.year`. - * @param ctx the parse tree - */ - exitYear?: (ctx: YearContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.month`. - * @param ctx the parse tree - */ - enterMonth?: (ctx: MonthContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.month`. - * @param ctx the parse tree - */ - exitMonth?: (ctx: MonthContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.week`. - * @param ctx the parse tree - */ - enterWeek?: (ctx: WeekContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.week`. - * @param ctx the parse tree - */ - exitWeek?: (ctx: WeekContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.day`. - * @param ctx the parse tree - */ - enterDay?: (ctx: DayContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.day`. - * @param ctx the parse tree - */ - exitDay?: (ctx: DayContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.hour`. - * @param ctx the parse tree - */ - enterHour?: (ctx: HourContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.hour`. - * @param ctx the parse tree - */ - exitHour?: (ctx: HourContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.minute`. - * @param ctx the parse tree - */ - enterMinute?: (ctx: MinuteContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.minute`. - * @param ctx the parse tree - */ - exitMinute?: (ctx: MinuteContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.second`. - * @param ctx the parse tree - */ - enterSecond?: (ctx: SecondContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.second`. - * @param ctx the parse tree - */ - exitSecond?: (ctx: SecondContext) => void; - /** - * Enter a parse tree produced by `HiveSqlParser.decimal`. - * @param ctx the parse tree - */ - enterDecimal?: (ctx: DecimalContext) => void; - /** - * Exit a parse tree produced by `HiveSqlParser.decimal`. - * @param ctx the parse tree - */ - exitDecimal?: (ctx: DecimalContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.emptyColumn`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index 4b3c1ed5e..46ba4ce75 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -26,17 +26,14 @@ import { DdlStatementContext } from "./HiveSqlParser.js"; import { IfExistsContext } from "./HiveSqlParser.js"; import { IfNotExistsContext } from "./HiveSqlParser.js"; import { RestrictOrCascadeContext } from "./HiveSqlParser.js"; +import { StoredAsDirsContext } from "./HiveSqlParser.js"; import { RewriteEnabledContext } from "./HiveSqlParser.js"; import { RewriteDisabledContext } from "./HiveSqlParser.js"; -import { StoredAsDirsContext } from "./HiveSqlParser.js"; import { CreateDatabaseStatementContext } from "./HiveSqlParser.js"; -import { DbConnectorNameContext } from "./HiveSqlParser.js"; import { SwitchDatabaseStatementContext } from "./HiveSqlParser.js"; import { DropDatabaseStatementContext } from "./HiveSqlParser.js"; -import { DatabaseCommentContext } from "./HiveSqlParser.js"; import { TruncateTableStatementContext } from "./HiveSqlParser.js"; import { DropTableStatementContext } from "./HiveSqlParser.js"; -import { InputFileFormatContext } from "./HiveSqlParser.js"; import { TabTypeExprContext } from "./HiveSqlParser.js"; import { PartTypeExprContext } from "./HiveSqlParser.js"; import { TabPartColTypeExprContext } from "./HiveSqlParser.js"; @@ -48,11 +45,7 @@ import { ShowStatementContext } from "./HiveSqlParser.js"; import { ShowTablesFilterExprContext } from "./HiveSqlParser.js"; import { LockStatementContext } from "./HiveSqlParser.js"; import { LockDatabaseContext } from "./HiveSqlParser.js"; -import { LockModeContext } from "./HiveSqlParser.js"; -import { UnlockStatementContext } from "./HiveSqlParser.js"; -import { UnlockDatabaseContext } from "./HiveSqlParser.js"; import { CreateRoleStatementContext } from "./HiveSqlParser.js"; -import { DropRoleStatementContext } from "./HiveSqlParser.js"; import { GrantPrivilegesContext } from "./HiveSqlParser.js"; import { RevokePrivilegesContext } from "./HiveSqlParser.js"; import { GrantRoleContext } from "./HiveSqlParser.js"; @@ -73,13 +66,7 @@ import { PrivilegeTypeContext } from "./HiveSqlParser.js"; import { PrincipalSpecificationContext } from "./HiveSqlParser.js"; import { PrincipalNameContext } from "./HiveSqlParser.js"; import { PrincipalAlterNameContext } from "./HiveSqlParser.js"; -import { WithGrantOptionContext } from "./HiveSqlParser.js"; -import { GrantOptionForContext } from "./HiveSqlParser.js"; -import { AdminOptionForContext } from "./HiveSqlParser.js"; -import { WithAdminOptionContext } from "./HiveSqlParser.js"; import { MetastoreCheckContext } from "./HiveSqlParser.js"; -import { ResourceListContext } from "./HiveSqlParser.js"; -import { ResourceContext } from "./HiveSqlParser.js"; import { ResourceTypeContext } from "./HiveSqlParser.js"; import { CreateFunctionStatementContext } from "./HiveSqlParser.js"; import { DropFunctionStatementContext } from "./HiveSqlParser.js"; @@ -97,7 +84,6 @@ import { ViewDistSpecContext } from "./HiveSqlParser.js"; import { ViewSortSpecContext } from "./HiveSqlParser.js"; import { DropViewStatementContext } from "./HiveSqlParser.js"; import { CreateMaterializedViewStatementContext } from "./HiveSqlParser.js"; -import { DropMaterializedViewStatementContext } from "./HiveSqlParser.js"; import { CreateScheduledQueryStatementContext } from "./HiveSqlParser.js"; import { DropScheduledQueryStatementContext } from "./HiveSqlParser.js"; import { AlterScheduledQueryStatementContext } from "./HiveSqlParser.js"; @@ -115,21 +101,18 @@ import { PartitionTransformTypeContext } from "./HiveSqlParser.js"; import { TableBucketsContext } from "./HiveSqlParser.js"; import { TableSkewedContext } from "./HiveSqlParser.js"; import { RowFormatContext } from "./HiveSqlParser.js"; -import { RecordReaderContext } from "./HiveSqlParser.js"; -import { RecordWriterContext } from "./HiveSqlParser.js"; import { RowFormatSerdeContext } from "./HiveSqlParser.js"; import { RowFormatDelimitedContext } from "./HiveSqlParser.js"; -import { TableRowFormatContext } from "./HiveSqlParser.js"; import { TablePropertiesPrefixedContext } from "./HiveSqlParser.js"; import { TablePropertiesContext } from "./HiveSqlParser.js"; import { TablePropertiesListContext } from "./HiveSqlParser.js"; import { KeyValuePropertiesContext } from "./HiveSqlParser.js"; import { KeyValuePropertyListContext } from "./HiveSqlParser.js"; import { KeyValuePropertyContext } from "./HiveSqlParser.js"; -import { TableRowFormatFieldIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatCollItemsIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatMapKeysIdentifierContext } from "./HiveSqlParser.js"; -import { TableRowFormatLinesIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatFieldIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatCollItemsIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatMapKeysIdentifierContext } from "./HiveSqlParser.js"; +import { RowFormatLinesIdentifierContext } from "./HiveSqlParser.js"; import { TableRowNullFormatContext } from "./HiveSqlParser.js"; import { TableFileFormatContext } from "./HiveSqlParser.js"; import { ColumnNameTypeListContext } from "./HiveSqlParser.js"; @@ -145,9 +128,7 @@ import { ColumnNameOrderListContext } from "./HiveSqlParser.js"; import { ColumnParenthesesListContext } from "./HiveSqlParser.js"; import { EnableValidateSpecificationContext } from "./HiveSqlParser.js"; import { EnableSpecificationContext } from "./HiveSqlParser.js"; -import { ValidateSpecificationContext } from "./HiveSqlParser.js"; import { EnforcedSpecificationContext } from "./HiveSqlParser.js"; -import { RelySpecificationContext } from "./HiveSqlParser.js"; import { CreateConstraintContext } from "./HiveSqlParser.js"; import { AlterConstraintWithNameContext } from "./HiveSqlParser.js"; import { TableLevelConstraintContext } from "./HiveSqlParser.js"; @@ -172,17 +153,11 @@ import { ColumnNameTypeConstraintContext } from "./HiveSqlParser.js"; import { ColumnConstraintContext } from "./HiveSqlParser.js"; import { ForeignKeyConstraintContext } from "./HiveSqlParser.js"; import { ColConstraintContext } from "./HiveSqlParser.js"; -import { AlterColumnConstraintContext } from "./HiveSqlParser.js"; -import { AlterForeignKeyConstraintContext } from "./HiveSqlParser.js"; -import { AlterColConstraintContext } from "./HiveSqlParser.js"; import { ColumnConstraintTypeContext } from "./HiveSqlParser.js"; -import { DefaultValContext } from "./HiveSqlParser.js"; import { TableConstraintTypeContext } from "./HiveSqlParser.js"; -import { ConstraintOptsCreateContext } from "./HiveSqlParser.js"; -import { ConstraintOptsAlterContext } from "./HiveSqlParser.js"; +import { ConstraintOptsContext } from "./HiveSqlParser.js"; import { ColumnNameColonTypeContext } from "./HiveSqlParser.js"; -import { ColumnTypeContext } from "./HiveSqlParser.js"; -import { ColumnTypeListContext } from "./HiveSqlParser.js"; +import { TypeListContext } from "./HiveSqlParser.js"; import { TypeContext } from "./HiveSqlParser.js"; import { PrimitiveTypeContext } from "./HiveSqlParser.js"; import { ListTypeContext } from "./HiveSqlParser.js"; @@ -215,9 +190,6 @@ import { WhenClausesContext } from "./HiveSqlParser.js"; import { WhenNotMatchedClauseContext } from "./HiveSqlParser.js"; import { WhenMatchedAndClauseContext } from "./HiveSqlParser.js"; import { WhenMatchedThenClauseContext } from "./HiveSqlParser.js"; -import { CompactionPoolContext } from "./HiveSqlParser.js"; -import { CompactionTypeContext } from "./HiveSqlParser.js"; -import { CompactionStatusContext } from "./HiveSqlParser.js"; import { AlterStatementContext } from "./HiveSqlParser.js"; import { AlterTableStatementSuffixContext } from "./HiveSqlParser.js"; import { AlterTblPartitionStatementSuffixContext } from "./HiveSqlParser.js"; @@ -283,7 +255,6 @@ import { RollupOldSyntaxContext } from "./HiveSqlParser.js"; import { GroupingSetExpressionContext } from "./HiveSqlParser.js"; import { HavingClauseContext } from "./HiveSqlParser.js"; import { QualifyClauseContext } from "./HiveSqlParser.js"; -import { ExpressionOrDefaultContext } from "./HiveSqlParser.js"; import { FirstExpressionsWithAliasContext } from "./HiveSqlParser.js"; import { ExpressionsContext } from "./HiveSqlParser.js"; import { ExpressionsInParenthesisContext } from "./HiveSqlParser.js"; @@ -294,7 +265,6 @@ import { ClusterByClauseContext } from "./HiveSqlParser.js"; import { DistributeByClauseContext } from "./HiveSqlParser.js"; import { SortByClauseContext } from "./HiveSqlParser.js"; import { Function_Context } from "./HiveSqlParser.js"; -import { Null_treatmentContext } from "./HiveSqlParser.js"; import { FunctionNameCreateContext } from "./HiveSqlParser.js"; import { FunctionNameForDDLContext } from "./HiveSqlParser.js"; import { FunctionNameForInvokeContext } from "./HiveSqlParser.js"; @@ -317,13 +287,11 @@ import { PrecedencePlusExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceConcatenateExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceAmpersandExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceBitwiseOrExpressionContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarOperatorContext } from "./HiveSqlParser.js"; import { SubQueryExpressionContext } from "./HiveSqlParser.js"; +import { PrecedenceSimilarOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionPartContext } from "./HiveSqlParser.js"; import { PrecedenceSimilarExpressionAtomContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarExpressionInContext } from "./HiveSqlParser.js"; -import { PrecedenceSimilarExpressionPartNotContext } from "./HiveSqlParser.js"; import { PrecedenceDistinctOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceEqualOperatorContext } from "./HiveSqlParser.js"; import { PrecedenceEqualExpressionContext } from "./HiveSqlParser.js"; @@ -351,14 +319,6 @@ import { RpUnassignContext } from "./HiveSqlParser.js"; import { ActivateContext } from "./HiveSqlParser.js"; import { EnableContext } from "./HiveSqlParser.js"; import { DisableContext } from "./HiveSqlParser.js"; -import { YearContext } from "./HiveSqlParser.js"; -import { MonthContext } from "./HiveSqlParser.js"; -import { WeekContext } from "./HiveSqlParser.js"; -import { DayContext } from "./HiveSqlParser.js"; -import { HourContext } from "./HiveSqlParser.js"; -import { MinuteContext } from "./HiveSqlParser.js"; -import { SecondContext } from "./HiveSqlParser.js"; -import { DecimalContext } from "./HiveSqlParser.js"; import { EmptyColumnContext } from "./HiveSqlParser.js"; import { PoolPathContext } from "./HiveSqlParser.js"; import { PoolPathAllowEmptyContext } from "./HiveSqlParser.js"; @@ -485,35 +445,29 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.rewriteEnabled`. + * Visit a parse tree produced by `HiveSqlParser.storedAsDirs`. * @param ctx the parse tree * @return the visitor result */ - visitRewriteEnabled?: (ctx: RewriteEnabledContext) => Result; + visitStoredAsDirs?: (ctx: StoredAsDirsContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.rewriteDisabled`. + * Visit a parse tree produced by `HiveSqlParser.rewriteEnabled`. * @param ctx the parse tree * @return the visitor result */ - visitRewriteDisabled?: (ctx: RewriteDisabledContext) => Result; + visitRewriteEnabled?: (ctx: RewriteEnabledContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.storedAsDirs`. + * Visit a parse tree produced by `HiveSqlParser.rewriteDisabled`. * @param ctx the parse tree * @return the visitor result */ - visitStoredAsDirs?: (ctx: StoredAsDirsContext) => Result; + visitRewriteDisabled?: (ctx: RewriteDisabledContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createDatabaseStatement`. * @param ctx the parse tree * @return the visitor result */ visitCreateDatabaseStatement?: (ctx: CreateDatabaseStatementContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.dbConnectorName`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDbConnectorName?: (ctx: DbConnectorNameContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.switchDatabaseStatement`. * @param ctx the parse tree @@ -526,12 +480,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.databaseComment`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDatabaseComment?: (ctx: DatabaseCommentContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.truncateTableStatement`. * @param ctx the parse tree @@ -544,12 +492,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.inputFileFormat`. - * @param ctx the parse tree - * @return the visitor result - */ - visitInputFileFormat?: (ctx: InputFileFormatContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.tabTypeExpr`. * @param ctx the parse tree @@ -616,36 +558,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.lockMode`. - * @param ctx the parse tree - * @return the visitor result - */ - visitLockMode?: (ctx: LockModeContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.unlockStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnlockStatement?: (ctx: UnlockStatementContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.unlockDatabase`. - * @param ctx the parse tree - * @return the visitor result - */ - visitUnlockDatabase?: (ctx: UnlockDatabaseContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createRoleStatement`. * @param ctx the parse tree * @return the visitor result */ visitCreateRoleStatement?: (ctx: CreateRoleStatementContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.dropRoleStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDropRoleStatement?: (ctx: DropRoleStatementContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.grantPrivileges`. * @param ctx the parse tree @@ -766,48 +684,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.withGrantOption`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWithGrantOption?: (ctx: WithGrantOptionContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.grantOptionFor`. - * @param ctx the parse tree - * @return the visitor result - */ - visitGrantOptionFor?: (ctx: GrantOptionForContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.adminOptionFor`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAdminOptionFor?: (ctx: AdminOptionForContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.withAdminOption`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWithAdminOption?: (ctx: WithAdminOptionContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.metastoreCheck`. * @param ctx the parse tree * @return the visitor result */ visitMetastoreCheck?: (ctx: MetastoreCheckContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.resourceList`. - * @param ctx the parse tree - * @return the visitor result - */ - visitResourceList?: (ctx: ResourceListContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.resource`. - * @param ctx the parse tree - * @return the visitor result - */ - visitResource?: (ctx: ResourceContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.resourceType`. * @param ctx the parse tree @@ -910,12 +792,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.dropMaterializedViewStatement`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDropMaterializedViewStatement?: (ctx: DropMaterializedViewStatementContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createScheduledQueryStatement`. * @param ctx the parse tree @@ -1018,18 +894,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.recordReader`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRecordReader?: (ctx: RecordReaderContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.recordWriter`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRecordWriter?: (ctx: RecordWriterContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.rowFormatSerde`. * @param ctx the parse tree @@ -1042,12 +906,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormat`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTableRowFormat?: (ctx: TableRowFormatContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.tablePropertiesPrefixed`. * @param ctx the parse tree @@ -1085,29 +943,29 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormatFieldIdentifier`. + * Visit a parse tree produced by `HiveSqlParser.rowFormatFieldIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitTableRowFormatFieldIdentifier?: (ctx: TableRowFormatFieldIdentifierContext) => Result; + visitRowFormatFieldIdentifier?: (ctx: RowFormatFieldIdentifierContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormatCollItemsIdentifier`. + * Visit a parse tree produced by `HiveSqlParser.rowFormatCollItemsIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitTableRowFormatCollItemsIdentifier?: (ctx: TableRowFormatCollItemsIdentifierContext) => Result; + visitRowFormatCollItemsIdentifier?: (ctx: RowFormatCollItemsIdentifierContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormatMapKeysIdentifier`. + * Visit a parse tree produced by `HiveSqlParser.rowFormatMapKeysIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitTableRowFormatMapKeysIdentifier?: (ctx: TableRowFormatMapKeysIdentifierContext) => Result; + visitRowFormatMapKeysIdentifier?: (ctx: RowFormatMapKeysIdentifierContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.tableRowFormatLinesIdentifier`. + * Visit a parse tree produced by `HiveSqlParser.rowFormatLinesIdentifier`. * @param ctx the parse tree * @return the visitor result */ - visitTableRowFormatLinesIdentifier?: (ctx: TableRowFormatLinesIdentifierContext) => Result; + visitRowFormatLinesIdentifier?: (ctx: RowFormatLinesIdentifierContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.tableRowNullFormat`. * @param ctx the parse tree @@ -1198,24 +1056,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.validateSpecification`. - * @param ctx the parse tree - * @return the visitor result - */ - visitValidateSpecification?: (ctx: ValidateSpecificationContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.enforcedSpecification`. * @param ctx the parse tree * @return the visitor result */ visitEnforcedSpecification?: (ctx: EnforcedSpecificationContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.relySpecification`. - * @param ctx the parse tree - * @return the visitor result - */ - visitRelySpecification?: (ctx: RelySpecificationContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.createConstraint`. * @param ctx the parse tree @@ -1360,36 +1206,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.alterColumnConstraint`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterColumnConstraint?: (ctx: AlterColumnConstraintContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.alterForeignKeyConstraint`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterForeignKeyConstraint?: (ctx: AlterForeignKeyConstraintContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.alterColConstraint`. - * @param ctx the parse tree - * @return the visitor result - */ - visitAlterColConstraint?: (ctx: AlterColConstraintContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.columnConstraintType`. * @param ctx the parse tree * @return the visitor result */ visitColumnConstraintType?: (ctx: ColumnConstraintTypeContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.defaultVal`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDefaultVal?: (ctx: DefaultValContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.tableConstraintType`. * @param ctx the parse tree @@ -1397,17 +1219,11 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.constraintOptsCreate`. + * Visit a parse tree produced by `HiveSqlParser.constraintOpts`. * @param ctx the parse tree * @return the visitor result */ - visitConstraintOptsCreate?: (ctx: ConstraintOptsCreateContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.constraintOptsAlter`. - * @param ctx the parse tree - * @return the visitor result - */ - visitConstraintOptsAlter?: (ctx: ConstraintOptsAlterContext) => Result; + visitConstraintOpts?: (ctx: ConstraintOptsContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.columnNameColonType`. * @param ctx the parse tree @@ -1415,17 +1231,11 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.columnType`. - * @param ctx the parse tree - * @return the visitor result - */ - visitColumnType?: (ctx: ColumnTypeContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.columnTypeList`. + * Visit a parse tree produced by `HiveSqlParser.typeList`. * @param ctx the parse tree * @return the visitor result */ - visitColumnTypeList?: (ctx: ColumnTypeListContext) => Result; + visitTypeList?: (ctx: TypeListContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.type`. * @param ctx the parse tree @@ -1622,24 +1432,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.compactionPool`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCompactionPool?: (ctx: CompactionPoolContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.compactionType`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCompactionType?: (ctx: CompactionTypeContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.compactionStatus`. - * @param ctx the parse tree - * @return the visitor result - */ - visitCompactionStatus?: (ctx: CompactionStatusContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.alterStatement`. * @param ctx the parse tree @@ -2030,12 +1822,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.expressionOrDefault`. - * @param ctx the parse tree - * @return the visitor result - */ - visitExpressionOrDefault?: (ctx: ExpressionOrDefaultContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.firstExpressionsWithAlias`. * @param ctx the parse tree @@ -2096,12 +1882,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.null_treatment`. - * @param ctx the parse tree - * @return the visitor result - */ - visitNull_treatment?: (ctx: Null_treatmentContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.functionNameCreate`. * @param ctx the parse tree @@ -2235,17 +2015,17 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. + * Visit a parse tree produced by `HiveSqlParser.subQueryExpression`. * @param ctx the parse tree * @return the visitor result */ - visitPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => Result; + visitSubQueryExpression?: (ctx: SubQueryExpressionContext) => Result; /** - * Visit a parse tree produced by `HiveSqlParser.subQueryExpression`. + * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarOperator`. * @param ctx the parse tree * @return the visitor result */ - visitSubQueryExpression?: (ctx: SubQueryExpressionContext) => Result; + visitPrecedenceSimilarOperator?: (ctx: PrecedenceSimilarOperatorContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarExpression`. * @param ctx the parse tree @@ -2264,18 +2044,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionIn`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPrecedenceSimilarExpressionIn?: (ctx: PrecedenceSimilarExpressionInContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.precedenceSimilarExpressionPartNot`. - * @param ctx the parse tree - * @return the visitor result - */ - visitPrecedenceSimilarExpressionPartNot?: (ctx: PrecedenceSimilarExpressionPartNotContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.precedenceDistinctOperator`. * @param ctx the parse tree @@ -2438,54 +2206,6 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by `HiveSqlParser.year`. - * @param ctx the parse tree - * @return the visitor result - */ - visitYear?: (ctx: YearContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.month`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMonth?: (ctx: MonthContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.week`. - * @param ctx the parse tree - * @return the visitor result - */ - visitWeek?: (ctx: WeekContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.day`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDay?: (ctx: DayContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.hour`. - * @param ctx the parse tree - * @return the visitor result - */ - visitHour?: (ctx: HourContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.minute`. - * @param ctx the parse tree - * @return the visitor result - */ - visitMinute?: (ctx: MinuteContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.second`. - * @param ctx the parse tree - * @return the visitor result - */ - visitSecond?: (ctx: SecondContext) => Result; - /** - * Visit a parse tree produced by `HiveSqlParser.decimal`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDecimal?: (ctx: DecimalContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.emptyColumn`. * @param ctx the parse tree diff --git a/test/parser/hive/suggestion/tokenSuggestion.test.ts b/test/parser/hive/suggestion/tokenSuggestion.test.ts index a8d65f7a8..5249350b2 100644 --- a/test/parser/hive/suggestion/tokenSuggestion.test.ts +++ b/test/parser/hive/suggestion/tokenSuggestion.test.ts @@ -75,7 +75,6 @@ describe('Hive SQL Token Suggestion', () => { 'SCHEDULED QUERY', 'MATERIALIZED VIEW', 'OR REPLACE', - 'MANAGED TABLE', ]); }); @@ -138,7 +137,6 @@ describe('Hive SQL Token Suggestion', () => { 'DATABASE', 'SCHEMA', 'RESOURCE PLAN', - 'MATERIALIZED VIEW', 'SCHEDULED QUERY', ]); }); diff --git a/test/parser/hive/syntax/fixtures/authorization.sql b/test/parser/hive/syntax/fixtures/authorization.sql index d4add123c..a020a73bb 100644 --- a/test/parser/hive/syntax/fixtures/authorization.sql +++ b/test/parser/hive/syntax/fixtures/authorization.sql @@ -32,3 +32,23 @@ REVOKE GRANT OPTION FOR ALL, ALTER, UPDATE, CREATE, DROP, INDEX, LOCK, SELECT, S ON table_or_view_name FROM USER `user`, ROLE `role`; +-- Lock and Unlock Statements +LOCK TABLE tbl1 SHARED; + +LOCK TABLE tbl2 EXCLUSIVE; + +LOCK TABLE tbl3 PARTITION (ds='2010-03-03') SHARED; + +UNLOCK TABLE tbl1; + +UNLOCK TABLE tbl2 PARTITION (ds='2010-03-03'); + +-- Lock and Unlock Database +LOCK DATABASE mydb SHARED; + +LOCK DATABASE mydb EXCLUSIVE; + +UNLOCK DATABASE mydb; + +UNLOCK SCHEMA myschema; + diff --git a/test/parser/hive/syntax/fixtures/createRole.sql b/test/parser/hive/syntax/fixtures/createRole.sql index 635081fc0..e41016ec3 100644 --- a/test/parser/hive/syntax/fixtures/createRole.sql +++ b/test/parser/hive/syntax/fixtures/createRole.sql @@ -1 +1,3 @@ -CREATE ROLE std_user; \ No newline at end of file +CREATE ROLE std_user; + +DROP ROLE admin_role; \ No newline at end of file diff --git a/test/parser/hive/syntax/fixtures/drop.sql b/test/parser/hive/syntax/fixtures/drop.sql index b84630cee..b8a035356 100644 --- a/test/parser/hive/syntax/fixtures/drop.sql +++ b/test/parser/hive/syntax/fixtures/drop.sql @@ -30,6 +30,8 @@ DROP TEMPORARY MACRO IF EXISTS macro2; -- Drop Role DROP ROLE `admin`; +DROP ROLE role_name; + -- Drop Index DROP INDEX table01_index ON table01; diff --git a/test/parser/hive/syntax/fixtures/select.sql b/test/parser/hive/syntax/fixtures/select.sql index 7f7d0ac8a..dffcaa5cf 100644 --- a/test/parser/hive/syntax/fixtures/select.sql +++ b/test/parser/hive/syntax/fixtures/select.sql @@ -247,4 +247,28 @@ FROM a JOIN b ON (a.id = b.id AND a.department = b.department) SELECT a.*; SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; -SELECT SUM(c.amount) AS total_amount FROM cust c; \ No newline at end of file +SELECT SUM(c.amount) AS total_amount FROM cust c; + +-- Interval Expressions with plural forms +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 3 YEARS; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 2 MONTHS; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 5 DAYS; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 24 HOURS; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 30 MINUTES; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 60 SECONDS; + +-- Interval with singular forms +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 YEAR; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 MONTH; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 DAY; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 HOUR; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 MINUTE; +SELECT * FROM t1 WHERE dt > CURRENT_DATE - INTERVAL 1 SECOND; + +-- Year to Month interval +SELECT INTERVAL '1-2' YEAR TO MONTH; +SELECT INTERVAL '3-6' YEARS TO MONTHS; + +-- Day to Second interval +SELECT INTERVAL '1 2:3:4' DAY TO SECOND; +SELECT INTERVAL '3 12:30:0' DAYS TO SECONDS; \ No newline at end of file